/*================================================
Default CSS
=================================================*/
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
body {
  padding: 0;
  margin: 0;
  font-family: "Catamaran", sans-serif;
  font-size: 16px;
}

a {
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  color: #1b0238;
}

a:hover, a:focus {
  color: #e65a3f;
  text-decoration: none;
}

button {
  outline: 0 !important;
}

p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: #6b6b84;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
}

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

i {
  line-height: normal;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}

.pb-70 {
  padding-bottom: 70px;
}

.ptb-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #1b0238;
  font-family: "Catamaran", sans-serif;
  font-weight: bold;
}

.h1:last-child, .h2:last-child, .h3:last-child, .h4:last-child, .h5:last-child, .h6:last-child, h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child {
  margin-bottom: 0;
}

/*================================================
Default btn CSS
=================================================*/
.default-btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: #e65a3f;
  color: #ffffff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.default-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0%;
  background-color: #f5890d;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
}

.default-btn:hover {
  color: #ffffff;
}

.default-btn:hover::before {
  height: 100%;
}

.optional-btn {
  display: inline-block;
  padding: 12px 35px;
  background-color: #f5890d;
  color: #ffffff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  z-index: 1;
  margin-left: 15px;
  overflow: hidden;
}

.optional-btn::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0%;
  background-color: #e65a3f;
  z-index: -1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px;
}

.optional-btn:hover {
  color: #ffffff;
}

.optional-btn:hover::before {
  height: 100%;
}

/*================================================
Section Title CSS
=================================================*/
.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title span {
  font-size: 20px;
  color: #e65a3f;
  font-weight: 600;
  font-family: "Sacramento", cursive;
}

.section-title h2 {
  font-size: 45px;
  margin-top: 15px;
  margin-bottom: 0;
  color: #f5890d;
}

/*================================================
Preloader Area CSS
=================================================*/
.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background-color: #e65a3f;
  z-index: 999999;
  height: 100%;
  overflow: hidden;
}

.preloader .loader {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  top: 45%;
  -webkit-transform: translateY(-45%);
          transform: translateY(-45%);
  height: 50px;
  width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.preloader .loader .wrapper {
  height: 50px;
  width: 180px;
}

.preloader .loader .circle {
  border-radius: 50%;
  border: 3px solid #ffffff;
  float: left;
  height: 50px;
  margin: 0 5px;
  width: 50px;
}

.preloader .loader .circle-1 {
  -webkit-animation: move 1s ease-in-out infinite;
          animation: move 1s ease-in-out infinite;
}

.preloader .loader .circle-1a {
  -webkit-animation: fade 1s ease-in-out infinite;
          animation: fade 1s ease-in-out infinite;
}

.preloader .loader .circle-2 {
  -webkit-animation: move 1s ease-in-out infinite;
          animation: move 1s ease-in-out infinite;
}

.preloader .loader .circle-1a {
  margin-left: -55px;
  opacity: 0;
}

.preloader .loader .circle-3 {
  -webkit-animation: circle-3 1s ease-in-out infinite;
          animation: circle-3 1s ease-in-out infinite;
  opacity: 1;
}

.preloader-area {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  text-align: center;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader-area .loader {
  position: absolute;
  top: 43%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-43%);
          transform: translateY(-43%);
  text-align: center;
  margin: 0 auto;
  width: 50px;
  height: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.preloader-area .box {
  width: 100%;
  height: 100%;
  background: #ffffff;
  -webkit-animation: animate .5s linear infinite;
          animation: animate .5s linear infinite;
  position: absolute;
  top: 0;
  left: 0;
}

.preloader-area .shadow {
  width: 100%;
  height: 5px;
  background: #000000;
  opacity: 0.1;
  position: absolute;
  top: 59px;
  left: 0;
  border-radius: 50%;
  -webkit-animation: shadow .5s linear infinite;
          animation: shadow .5s linear infinite;
}

.preloader-area::before, .preloader-area::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 60%;
  height: 100%;
  z-index: -1;
  background: #e65a3f;
  -webkit-transition: .9s;
  transition: .9s;
}

.preloader-area::after {
  left: auto;
  right: 0;
}

.preloader-area.preloader-deactivate {
  visibility: hidden;
}

.preloader-area.preloader-deactivate::after, .preloader-area.preloader-deactivate::before {
  width: 0;
}

.preloader-area.preloader-deactivate .loader {
  opacity: 0;
  visibility: hidden;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes move {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
}

@keyframes move {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(60px);
            transform: translateX(60px);
  }
}

@-webkit-keyframes circle-3 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes circle-3 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}

@keyframes loader {
  0% {
    left: -100px;
  }
  100% {
    left: 110%;
  }
}

@-webkit-keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
            transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
            transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
            transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
}

@keyframes animate {
  17% {
    border-bottom-right-radius: 3px;
  }
  25% {
    -webkit-transform: translateY(9px) rotate(22.5deg);
            transform: translateY(9px) rotate(22.5deg);
  }
  50% {
    -webkit-transform: translateY(18px) scale(1, 0.9) rotate(45deg);
            transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }
  75% {
    -webkit-transform: translateY(9px) rotate(67.5deg);
            transform: translateY(9px) rotate(67.5deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
}

@-webkit-keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
  }
}

@keyframes shadow {
  50% {
    -webkit-transform: scale(1.2, 1);
            transform: scale(1.2, 1);
  }
}

/*================================================
Navbar Area CSS
=================================================*/
.main-responsive-nav {
  display: none;
}

.main-navbar {
  padding-top: 0;
}

.main-navbar .navbar {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  padding: 15px 0; /** Additional CSS **/
}

.navbar-brand {
  margin: 0; /** Additional CSS **/
  padding: 0; /** Additional CSS **/
}

.navbar-brand img {
  max-width: 110px /** Additional CSS **/;
}

.navbar-area.is-sticky .navbar {
  padding: 8px 0 /** Additional CSS **/;
}

.main-navbar .navbar ul {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 0;
}

.main-navbar .navbar .navbar-nav {
  margin: auto;
}

.main-navbar .navbar .navbar-nav .nav-item {
  position: relative;
  margin-left: 15px;
  margin-right: 15px;
}

.main-navbar .navbar .navbar-nav .nav-item a {
  color: #1b0238;
  font-size: 16px;
  font-weight: 600;
  padding-left: 0;
  padding-right: 0;
  padding-top: 25px;
  padding-bottom: 25px;
  font-family: "Roboto", sans-serif;
}

.main-navbar .navbar .navbar-nav .nav-item a i {
  font-size: 20px;
  position: relative;
  top: 4px;
  display: inline-block;
  margin-left: -5px;
  margin-right: -2px;
}

.main-navbar .navbar .navbar-nav .nav-item a:hover, .main-navbar .navbar .navbar-nav .nav-item a:focus, .main-navbar .navbar .navbar-nav .nav-item a.active {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item:last-child {
  margin-right: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:first-child {
  margin-left: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:hover a, .main-navbar .navbar .navbar-nav .nav-item.active a {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu {
  border: none;
  top: 70px;
  left: 0;
  z-index: 99;
  opacity: 0;
  width: 280px;
  display: block;
  border-radius: 0;
  padding: 10px 0;
  margin-top: 15px;
  position: absolute;
  visibility: hidden;
  background: #ffffff;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li {
  margin: 0;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a {
  padding: 10px 20px;
  position: relative;
  display: block;
  color: #1b0238;
  font-size: 16px;
  font-weight: 600;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a i {
  margin: 0;
  position: absolute;
  top: 50%;
  font-size: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li a.active {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  right: -280px;
  left: auto;
  margin-top: 15px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: -280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu {
  top: 0;
  opacity: 0;
  left: 280px;
  visibility: hidden;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a {
  color: #1b0238;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:hover, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a:focus, .main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li a.active {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li.active a {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li.active a {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li.active a {
  color: #e65a3f;
}

.main-navbar .navbar .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-navbar .navbar .navbar-nav .nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 0;
}

.main-navbar .navbar .others-options .option-item {
  margin-right: 15px;
}

.main-navbar .navbar .others-options .option-item:last-child {
  margin-right: 0;
}

.main-navbar .navbar .others-options .option-item .language-switcher {
  position: relative;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #1b0238;
  cursor: pointer;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-toggle::after {
  display: none;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-toggle img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-toggle span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-toggle span i {
  position: relative;
  font-size: 20px;
  top: 4px;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu {
  padding: 15px;
  float: unset;
  border: none;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: block;
  margin-top: 12px;
  opacity: 0;
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  left: 0 !important;
  right: auto !important;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item {
  padding: 0;
  color: #1b0238;
  margin-bottom: 10px;
  font-weight: 600;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item::before {
  display: none;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item span {
  display: inline-block;
  margin-left: 8px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:hover, .main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:active, .main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu .dropdown-item.active {
  color: #1b0238;
  background-color: transparent;
}

.main-navbar .navbar .others-options .option-item .language-switcher .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.main-navbar .navbar .others-options .option-item .default-btn {
  display: block;
}

.navbar-area.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  background-color: #ffffff !important;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}

.others-option-for-responsive {
  display: none;
}

.others-option-for-responsive .dot-menu {
  padding: 0 10px;
  height: 30px;
  cursor: pointer;
  z-index: 9991;
  position: absolute;
  right: 60px;
  top: -28px;
}

.others-option-for-responsive .dot-menu .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.others-option-for-responsive .dot-menu .inner .circle {
  height: 5px;
  width: 5px;
  border-radius: 100%;
  margin: 0 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #1b0238;
}

.others-option-for-responsive .dot-menu:hover .inner .circle {
  background-color: #e65a3f;
}

.others-option-for-responsive .container {
  position: relative;
}

.others-option-for-responsive .container .container {
  position: absolute;
  right: 0;
  top: 10px;
  max-width: 260px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  z-index: 2;
  padding-left: 15px;
  padding-right: 15px;
}

.others-option-for-responsive .container .container.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.others-option-for-responsive .option-inner .others-options .option-item {
  margin-right: 15px;
}

.others-option-for-responsive .option-inner .others-options .option-item:last-child {
  margin-right: 0;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher {
  position: relative;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-toggle {
  padding: 0;
  border: none;
  background-color: transparent;
  color: #1b0238;
  cursor: pointer;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-toggle::after {
  display: none;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-toggle img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-toggle span {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-toggle span i {
  position: relative;
  font-size: 20px;
  top: 4px;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu {
  padding: 15px;
  float: unset;
  border: none;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  display: block;
  margin-top: 12px;
  opacity: 0;
  visibility: visible;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  left: 0 !important;
  right: auto !important;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item {
  padding: 0;
  color: #1b0238;
  margin-bottom: 10px;
  font-weight: 600;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item::before {
  display: none;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:last-child {
  margin-bottom: 0;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item img {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item span {
  display: inline-block;
  margin-left: 8px;
  font-size: 15px;
  font-weight: 500;
  margin-top: 4px;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:hover, .others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:focus {
  background-color: transparent !important;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item:active, .others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu .dropdown-item.active {
  color: #1b0238;
  background-color: transparent;
}

.others-option-for-responsive .option-inner .others-options .option-item .language-switcher .dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.others-option-for-responsive .option-inner .others-options .option-item .default-btn {
  display: block;
}

@media only screen and (max-width: 1199px) {
  .main-responsive-nav {
    display: block;
  }
  .main-responsive-nav .main-responsive-menu {
    position: relative;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul {
    font-size: 15px;
    top: 36px; /** Additional CSS **/
    position: relative; /** Additional CSS **/
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a.active {
    color: #f5890d;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li a i {
    display: none;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .mean-nav ul li li a {
    font-size: 14px;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .others-options {
    display: none !important;
  }
  .main-responsive-nav .main-responsive-menu.mean-container .navbar-nav {
    overflow-y: scroll;
    /* height: 300px; */
    min-height: 300px; /** Additional CSS **/
    background-color: #ffffff;
    -webkit-box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 7px 13px 0 rgba(0, 0, 0, 0.1);
  }
  .main-responsive-nav .mean-container a.meanmenu-reveal {
    color: #1b0238;
  }
  .main-responsive-nav .mean-container a.meanmenu-reveal span {
    background: #1b0238;
    position: relative;
  }
  .main-responsive-nav .logo {
    position: relative;
  }
  .main-responsive-nav .logo img {
    max-width: 100px !important;
  }
  .navbar-area {
    background-color: #ffffff;
    /* padding-top: 15px;
    padding-bottom: 15px; */
    padding: 8px 0;
  }
  .main-navbar {
    display: none;
  }
  .others-option-for-responsive {
    display: block;
  }
}

@media only screen and (max-width: 820px) {
  #our-programs .important-info {
    display: block!important;
  }
}

@media only screen and (max-width: 600px) {
  .main-responsive-nav .logo img {
    max-width: 75px!important;
  }
  #callout .container {
    background-image: none!important;
  }
  #callout .pre-school {
    width: 100%!important;
  }
  .school-activities {
    width: 100%!important;
  }
  .school-activities.activities-left {
      float: none!important;
  }
  .school-activities.activities-right {
    float: none!important;
  }
}

/*================================================
Main Banner Area CSS
=================================================*/
.main-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.main-banner-item {
  background-image: url(../img/main-banner/main-banner-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  height: 700px;
}

.main-banner-item .container-fluid {
  padding-right: 0;
}

.main-banner-item.banner-item-two {
  background-image: unset;
  background-color: #f5edec;
}

.main-banner-item.banner-item-three {
  background-image: url(../img/main-banner/main-banner-bg-2.jpg);
  background-attachment: fixed;
}

.main-banner-item.banner-item-three .main-banner-content {
  max-width: 630px;
  margin: auto;
  text-align: center;
}

.main-banner-item.banner-item-three .main-banner-content span {
  color: #ffffff;
}

.main-banner-item.banner-item-three .main-banner-content h1 {
  color: #ffffff;
}

.main-banner-item.banner-item-three .main-banner-content p {
  color: #ffffff;
}

.main-banner-item.banner-item-four {
  background-image: unset;
  background-color: #73548f;
}

.main-banner-item.banner-item-four .main-banner-content h1 {
  margin-top: 0;
  color: #ffffff;
}

.main-banner-item.banner-item-four .main-banner-content p {
  color: #ffffff;
}

.main-banner-content {
  max-width: 630px;
  margin-left: auto;
}

.main-banner-content span {
  font-size: 20px;
  color: #95c11f;
  font-weight: 600;
  /*font-family: "Roboto", sans-serif;*/
}

.main-banner-content h1 {
  font-size: 60px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.main-banner-content p {
  margin-bottom: 0;
}

.main-banner-content .banner-btn {
  margin-top: 25px;
}

.main-banner-image-wrap {
  position: relative;
  text-align: center;
  z-index: 1;
}

.main-banner-image-wrap .banner-image-wrap-shape {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  left: 0;
  right: 0;
}

.main-banner-shape .banner-bg-shape {
  position: absolute;
  bottom: -75px;
  left: 0;
  right: 0;
  z-index: 1;
}

.main-banner-shape .banner-bg-shape-2 {
  position: absolute;
  top: -75px;
  left: 0;
  right: 0;
  z-index: 1;
}

.main-banner-shape .shape-1 {
  position: absolute;
  top: 25px;
  -webkit-transform: translateY(-25px);
          transform: translateY(-25px);
  left: 25px;
  -webkit-transform: translateX(-25px);
          transform: translateX(-25px);
  z-index: 1;
  max-width: 100px;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.main-banner-shape .shape-2 {
  position: absolute;
  top: 50px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  max-width: 100px;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.main-banner-shape .shape-3 {
  position: absolute;
  bottom: 100px;
  left: 30px;
  z-index: 1;
  max-width: 100px;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

.main-banner-shape .shape-4 {
  position: absolute;
  bottom: 30px;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
  max-width: 100px;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

.main-banner-shape .shape-5 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 210px;
}

.main-banner-shape .shape-6 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  max-width: 230px;
}

.banner-child .child-1 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

.banner-child .child-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  -webkit-animation: moveBounce 5s linear infinite;
          animation: moveBounce 5s linear infinite;
}

@-webkit-keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotateMe {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes rotate3d {
  0% {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  100% {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@-webkit-keyframes moveScale {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@keyframes moveScale {
  0% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  50% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
}

@-webkit-keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes moveLeftBounce {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes moveBounce {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@-webkit-keyframes border-transform-default {
  0%, to {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

@keyframes border-transform-default {
  0%, to {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}

/*================================================
Who We Are Area CSS
=================================================*/
.who-we-are {
  position: relative;
  z-index: 1;
}

.who-we-are-image {
  text-align: center;
  position: relative;
  z-index: 1;
}

.who-we-are-image img {
  border-radius: 50%;
  padding: 20px;
}

.who-we-are-image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #e65a3f;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: border-transform-default 10s linear infinite alternate forwards;
          animation: border-transform-default 10s linear infinite alternate forwards;
}

.who-we-are-image::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #f5890d;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: border-transform-default 50s linear infinite alternate forwards;
          animation: border-transform-default 50s linear infinite alternate forwards;
}

.who-we-are-content span {
  font-size: 20px;
  color: #e65a3f;
  font-weight: 600;
  font-family: "Sacramento", cursive;
}

.who-we-are-content h3 {
  font-size: 45px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #f5890d;
}

.who-we-are-content p {
  margin-bottom: 0;
}

.who-we-are-content .who-we-are-list {
  padding-left: 0;
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.who-we-are-content .who-we-are-list li {
  list-style-type: none;
  position: relative;
  /*font-size: 16px;*/
  font-size: 14.50px;
  font-weight: 600;
  color: #1b0238;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
  margin-top: 20px;
  padding-left: 36px;
  padding-top: 5px;
}

.who-we-are-content .who-we-are-list li span {
  font-family: "Roboto", sans-serif;
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  font-size: 16px;
  color: #ffffff;
  background-color: #e65a3f;
  border-radius: 50px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.who-we-are-content .who-we-are-list li:hover span {
  background-color: #f5890d;
}

.who-we-are-content .who-we-are-btn {
  margin-top: 30px;
}

.who-we-are-shape {
  position: absolute;
  right: 5%;
  -webkit-transform: translateX(-5%);
          transform: translateX(-5%);
  top: 35px;
  max-width: 120px;
  -webkit-animation: moveLeftBounce 3s linear infinite;
          animation: moveLeftBounce 3s linear infinite;
}

/*================================================
Class Area CSS
=================================================*/
.class-area {
  position: relative;
  z-index: 1;
}

.class-area.bg-fdf6ed {
  background-color: #fdf6ed;
}

.single-class {
  margin-bottom: 30px;
}

.single-class .class-image {
  overflow: hidden;
}

.single-class .class-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 5px 5px 0 0;
}

.single-class .class-content {
  background-color: #ffffff;
  padding: 45px 30px 30px;
  position: relative;
  border-radius: 0 0 10px 10px;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  /*min-height: 198px;*/
}

.single-class .class-content .price {
  position: absolute;
  display: inline-block;
  padding: 10px;
  background-color: #e65a3f;
  right: 0;
  top: 0;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  border-radius: 0 0 0 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-class .class-content h3 {
  /*font-size: 25px;*/
  font-size: 20px;
  margin-bottom: 15px;
}

.single-class .class-content h3 a {
  color: #1b0238;
}

.single-class .class-content p {
  margin-bottom: 0;
}

.single-class .class-content .class-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #e65a3f;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.single-class .class-content .class-list li {
  list-style-type: none;
  display: inline-block;
  font-size: 15px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  margin-right: 15px;
}

.single-class .class-content .class-list li:last-child {
  margin-right: 0;
}

.single-class .class-content .class-list li span {
  color: #e65a3f;
  font-size: 15px;
  font-weight: 500;
}

.single-class .class-content .class-btn {
  margin-top: 25px;
}

.single-class .class-content .class-btn .default-btn {
  padding: 10px 30px;
}

.single-class:hover .class-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
          transform: rotate(2deg) scale(1.2);
}

.single-class:hover .class-content .price {
  background-color: #f5890d;
}

.single-class:hover .class-content h3 a {
  color: #e65a3f;
}

.class-shape .shape-1 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.class-shape .shape-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

/*================================================
Value Area CSS
=================================================*/
.value-area {
  position: relative;
  z-index: 1;
}

.value-item .value-content span {
  font-size: 20px;
  font-weight: 600;
  font-family: "Sacramento", cursive;
  color: #e65a3f;
}

.value-item .value-content h3 {
  font-size: 45px;
  margin-top: 15px;
  margin-bottom: 0;
}

.value-item .value-inner-content {
  position: relative;
  padding-left: 75px;
  margin-top: 30px;
}

.value-item .value-inner-content .number span {
  display: inline-block;
  height: 60px;
  width: 60px;
  line-height: 60px;
  background-color: #d3f5fe;
  text-align: center;
  font-size: 25px;
  color: #1b0238;
  border-radius: 50px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.value-item .value-inner-content .number span::before {
  position: absolute;
  content: "";
  height: 70px;
  width: 70px;
  line-height: 70px;
  border: 1px solid #d3f5fe;
  border-radius: 50px;
  top: -5px;
  left: -5px;
  right: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.value-item .value-inner-content .number .bg-2 {
  background-color: #fce0ad;
}

.value-item .value-inner-content .number .bg-2::before {
  border: 2px solid #fce0ad;
}

.value-item .value-inner-content .number .bg-3 {
  background-color: #fbc9d5;
}

.value-item .value-inner-content .number .bg-3::before {
  border: 2px solid #fbc9d5;
}

.value-item .value-inner-content h4 {
  font-size: 25px;
  margin-bottom: 10px;
}

.value-item .value-inner-content p {
  margin-bottom: 0;
}

.value-item .value-inner-content:hover .number span {
  background-color: #e65a3f;
  color: #ffffff;
}

.value-item .value-inner-content:hover .number span::before {
  border: 1px solid #e65a3f;
}

.value-shape .shape-1 {
  position: absolute;
  top: 30px;
  left: 20px;
  z-index: -1;
}

.value-shape .shape-2 {
  position: absolute;
  left: 20px;
  z-index: -1;
  bottom: 30px;
}

.value-shape .shape-3 {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
}

/*================================================
Teacher Area CSS
=================================================*/
.teacher-area.bg-ffffff {
  /* background-image: url(../img/teacher-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat; */
  background: #fdf6ed;
}

.teacher-area .container-fluid {
  max-width: 1920px;
}

.single-teacher {
  margin-bottom: 30px;
  text-align: center;
}

.single-teacher .image {
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  z-index: 1;
  padding: 5px;
}

.single-teacher .image img {
  border-radius: 50%;
}

.single-teacher .image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #e65a3f;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: border-transform-default 30s linear infinite alternate forwards;
          animation: border-transform-default 30s linear infinite alternate forwards;
}

.single-teacher .image .social {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.single-teacher .image .social li {
  display: inline-block;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  margin: 0 2px;
}

.single-teacher .image .social li a {
  display: block;
  width: 33px;
  height: 33px;
  background-color: #e65a3f;
  text-align: center;
  position: relative;
  font-size: 20px;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-teacher .image .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
}

.single-teacher .image .social li a:hover {
  color: #ffffff;
  background-color: #f5890d;
}

.single-teacher .content {
  margin-top: 25px;
}

.single-teacher .content h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.single-teacher .content span {
  display: block;
  color: #e65a3f;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
}

.single-teacher:hover .image .social li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.single-teacher-box {
  margin-bottom: 30px;
  text-align: center;
}

.single-teacher-box .image {
  position: relative;
}

.single-teacher-box .image .social {
  padding-left: 0;
  list-style-type: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.single-teacher-box .image .social li {
  display: inline-block;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  opacity: 0;
  visibility: hidden;
  margin: 0 2px;
}

.single-teacher-box .image .social li a {
  display: block;
  width: 33px;
  height: 33px;
  background-color: #e65a3f;
  text-align: center;
  position: relative;
  font-size: 20px;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-teacher-box .image .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
}

.single-teacher-box .image .social li a:hover {
  color: #ffffff;
  background-color: #f5890d;
}

.single-teacher-box .content {
  margin-top: 25px;
}

.single-teacher-box .content h3 {
  margin-bottom: 0;
  font-size: 25px;
}

.single-teacher-box .content span {
  display: block;
  color: #e65a3f;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
}

.single-teacher-box:hover .image .social li {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.single-teacher-content span {
  font-size: 16px;
  color: #e65a3f;
  font-weight: 600;
}

.single-teacher-content h3 {
  font-size: 35px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.single-teacher-content h3 a {
  color: #1b0238;
}

.single-teacher-content p {
  margin-bottom: 0;
}

.single-teacher-content .teacher-btn {
  margin-top: 25px;
}

.single-teacher-item {
  margin-bottom: 30px;
  text-align: center;
}

.single-teacher-item .image {
  position: relative;
}

.single-teacher-item .image::before {
  width: 100%;
  content: '';
  position: absolute;
  height: 100%;
  background-color: #000000;
  left: 0;
  top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  border-radius: 15px;
}

.single-teacher-item .image img {
  border-radius: 15px;
}

.single-teacher-item .image .content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  margin-top: 10px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-teacher-item .image .content h3 {
  margin-bottom: 0;
  font-size: 25px;
  color: #ffffff;
}

.single-teacher-item .image .content span {
  display: block;
  color: #ffffff;
  font-size: 16px;
  margin-top: 10px;
  font-weight: 600;
}

.single-teacher-item .image .content .social {
  padding-left: 0;
  margin-bottom: 0;
  text-align: center;
  margin-top: 15px;
}

.single-teacher-item .image .content .social li {
  display: inline-block;
  list-style: none;
  margin: 0 5px;
}

.single-teacher-item .image .content .social li a {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  text-align: center;
  position: relative;
  font-size: 20px;
  color: #e65a3f;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-teacher-item .image .content .social li a i {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin: auto;
}

.single-teacher-item .image .content .social li a:hover {
  color: #ffffff;
  background-color: #f5890d;
}

.single-teacher-item:hover .image::before {
  opacity: .70;
  visibility: visible;
}

.single-teacher-item:hover .content {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}

/*================================================
Testimonials Area CSS
=================================================*/
.testimonials-item .testimonials-item-box {
  text-align: center;
  background-color: #fee9ca;
  padding: 30px;
  border-radius: 50%;
}

.testimonials-item .testimonials-item-box .icon {
  margin-bottom: 20px;
}

.testimonials-item .testimonials-item-box .icon i {
  display: inline-block;
  height: 65px;
  width: 65px;
  line-height: 65px;
  background-color: #ffffff;
  color: #e65a3f;
  font-size: 30px;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.testimonials-item .testimonials-item-box p {
  margin-bottom: 0;
  font-size: 15px;
  font-style: italic;
}

.testimonials-item .testimonials-item-box .info-box {
  margin-top: 20px;
}

.testimonials-item .testimonials-item-box .info-box h3 {
  margin-bottom: 0;
  font-size: 25px;
}

.testimonials-item .testimonials-item-box .info-box span {
  display: block;
  color: #e65a3f;
  font-size: 15px;
  margin-top: 5px;
  font-weight: 600;
}

.testimonials-item .testimonials-item-box:hover .icon i {
  background-color: #e65a3f;
  color: #ffffff;
}

.testimonials-item .testimonials-image {
  margin-top: 20px;
}

.testimonials-item .testimonials-image img {
  width: auto;
  margin: auto;
}

.testimonials-slides.owl-theme .owl-nav {
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
  line-height: .01;
}

.testimonials-slides.owl-theme .owl-nav [class*=owl-] {
  margin: 0;
  position: absolute;
  left: -50px;
  top: 40%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  padding: 0;
  background: #e65a3f;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 50px;
  height: 50px;
  line-height: 65px;
  text-align: center;
  font-size: 45px;
}

.testimonials-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  left: auto;
  right: -50px;
}

.testimonials-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: #ffffff;
  background-color: #f5890d;
}

.testimonials-slides.owl-theme:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.testimonials-area.bg-color {
  background-color: #fef3e6;
}

.feedback-slides .feedback-item .feedback-image {
  position: relative;
  padding: 5px;
}

.feedback-slides .feedback-item .feedback-image img {
  border-radius: 50%;
}

.feedback-slides .feedback-item .feedback-image::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #e65a3f;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-animation: border-transform-default 30s linear infinite alternate forwards;
          animation: border-transform-default 30s linear infinite alternate forwards;
}

.feedback-slides .feedback-item .feedback-content p {
  font-size: 24px;
  margin-bottom: 0;
  font-style: italic;
}

.feedback-slides .feedback-item .feedback-content .feedback-info {
  margin-top: 25px;
}

.feedback-slides .feedback-item .feedback-content .feedback-info h4 {
  font-size: 25px;
  margin-bottom: 12px;
}

.feedback-slides .feedback-item .feedback-content .feedback-info span {
  font-size: 16px;
  color: #e65a3f;
  font-weight: 600;
}

.feedback-slides.owl-theme .owl-nav {
  margin-top: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: .01;
  position: absolute;
  right: 0;
  bottom: 0;
}

.feedback-slides.owl-theme .owl-nav [class*=owl-] {
  margin: 0;
  padding: 0;
  background: #e65a3f;
  color: #ffffff;
  border-radius: 50px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  width: 50px;
  height: 50px;
  line-height: 65px;
  text-align: center;
  font-size: 45px;
}

.feedback-slides.owl-theme .owl-nav [class*=owl-].owl-next {
  position: relative;
  left: 15px;
}

.feedback-slides.owl-theme .owl-nav [class*=owl-]:hover {
  color: #ffffff;
  background-color: #f5890d;
}

/*================================================
Event Area CSS
=================================================*/
.event-area.bg-ffffff {
  background-image: url(../img/event/event-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}

.event-area.bg-ffffff::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  opacity: .30;
  z-index: -1;
}

.event-area .section-title span {
  color: #ffffff;
}

.event-area .section-title h2 {
  color: #ffffff;
}

.event-area.bg-color .container-fluid {
  max-width: 1450px;
}

.event-area.bg-color .event-box-item {
  padding: 35px 15px;
}

.event-area.event-item-two .container-fluid {
  max-width: 1450px;
}

.event-area.event-item-two .section-title span {
  color: #e65a3f;
}

.event-area.event-item-two .section-title h2 {
  color: #1b0238;
}

.event-area.event-item-two .event-box-item {
  padding: 35px 15px;
  background-color: #fdeee9;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}

.event-area.event-item-two .event-box-item .event-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.event-area.event-item-two .event-box-item .event-content h3 a {
  display: inline-block;
  padding: 10px 35px;
  border-radius: 5px;
  background-color: #fcded3;
  color: #e65a3f;
}

.event-area.event-item-two .event-box-item .event-content p {
  margin-bottom: 10px;
}

.event-area.event-item-two .event-box-item .event-content span {
  color: #e65a3f;
  font-size: 16px;
  font-weight: 600;
}

.event-box-item {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 30px;
}

.event-box-item .event-content h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.event-box-item .event-content h3 a {
  color: #1b0238;
}

.event-box-item .event-content .event-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 20px;
}

.event-box-item .event-content .event-list li {
  list-style-type: none;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  margin-bottom: 12px;
  padding-left: 25px;
}

.event-box-item .event-content .event-list li:last-child {
  margin-bottom: 0;
}

.event-box-item .event-content .event-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #e65a3f;
}

.event-box-item .event-date {
  text-align: center;
}

.event-box-item .event-date h4 {
  font-size: 80px;
  color: #e65a3f;
  margin-bottom: 0;
}

.event-box-item .event-date span {
  font-size: 20px;
  color: #e65a3f;
  margin-top: 10px;
  font-weight: 500;
}

/*================================================
Blog Area CSS
=================================================*/
.single-blog-item {
  margin-bottom: 30px;
}

.single-blog-item .blog-image {
  overflow: hidden;
}

.single-blog-item .blog-image img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  border-radius: 10px 10px 0 0;
}

.single-blog-item .blog-content {
  background-color: #fdeee9;
  padding: 30px;
  border-radius: 0 0 10px 10px;
}

.single-blog-item .blog-content .post-meta {
  padding-left: 0;
  margin-bottom: 0;
}

.single-blog-item .blog-content .post-meta li {
  list-style-type: none;
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  color: #283d5e;
  margin-right: 15px;
}

.single-blog-item .blog-content .post-meta li:last-child {
  margin-right: 0;
}

.single-blog-item .blog-content .post-meta li span {
  color: #e65a3f;
}

.single-blog-item .blog-content .post-meta li a {
  color: #283d5e;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-blog-item .blog-content h3 {
  font-size: 22px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.single-blog-item .blog-content h3 a {
  color: #1b0238;
}

.single-blog-item .blog-content p {
  margin-bottom: 0;
}

.single-blog-item .blog-content .blog-btn {
  margin-top: 20px;
}

.single-blog-item:hover .blog-image img {
  -webkit-transform: rotate(2deg) scale(1.2);
          transform: rotate(2deg) scale(1.2);
}

.single-blog-item:hover .blog-content h3 a {
  color: #e65a3f;
}

/*================================================
Page Banner CSS
=================================================*/
.page-banner-area {
  position: relative;
  z-index: 1;
  background-image: url(../img/page-banner/page-banner-1.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 200px;
  padding-bottom: 200px;
  background-attachment: fixed;
}

.page-banner-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: .60;
}

.page-banner-area.item-bg1 {
  background-image: url(../img/page-banner/page-banner-2.jpg);
}

.page-banner-area.item-bg2 {
  background-image: url(../img/page-banner/page-banner-3.jpg);
}

.page-banner-area.item-bg3 {
  background-image: url(../img/page-banner/page-banner-4.jpg);
}

.page-banner-area.item-bg4 {
  background-image: url(../img/page-banner/page-banner-5.jpg);
}

.page-banner-content {
  text-align: center;
}

.page-banner-content h2 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 45px;
  line-height: 1;
}

.page-banner-content ul {
  text-align: center;
  padding-left: 0;
  margin-bottom: 0;
}

.page-banner-content ul li {
  display: inline-block;
  list-style-type: none;
  margin-left: 15px;
  font-weight: 600;
  color: #e65a3f;
  position: relative;
}

.page-banner-content ul li::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 6px;
  height: 12px;
  width: 1px;
  background: #e65a3f;
}

.page-banner-content ul li:first-child {
  margin-left: 0;
}

.page-banner-content ul li:first-child::before {
  display: none;
}

.page-banner-content ul li a {
  display: block;
  color: #ffffff;
}

/*================================================
Enrollment Area CSS
=================================================*/
.enrollment-accordion {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 30px;
}

.enrollment-accordion .content {
  margin-bottom: 25px;
}

.enrollment-accordion .content h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.enrollment-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.enrollment-accordion .accordion .accordion-item {
  display: block;
  border: 1px solid #f3f3f3;
  margin-bottom: 10px;
}

.enrollment-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.enrollment-accordion .accordion .accordion-title {
  padding: 25px 40px 20px 20px;
  color: #1b0238;
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.enrollment-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #1b0238;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.enrollment-accordion .accordion .accordion-title.active i::before {
  content: "\eace";
  color: #f5890d;
}

.enrollment-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid #f5890d;
  color: #6b6b84;
  font-size: 15px;
}

.enrollment-accordion .accordion .accordion-content.show {
  display: block;
}

.enrollment-image {
  background-image: url(../img/enrollment.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

/*================================================
FAQ Area CSS
=================================================*/
.faq-accordion {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.09);
  padding: 30px;
}

.faq-accordion .content {
  margin-bottom: 25px;
}

.faq-accordion .content h3 {
  font-size: 25px;
  margin-bottom: 0;
}

.faq-accordion .accordion {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-item {
  display: block;
  border: 1px solid #f3f3f3;
  margin-bottom: 10px;
}

.faq-accordion .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion .accordion-title {
  padding: 25px 40px 20px 20px;
  color: #1b0238;
  position: relative;
  display: block;
  font-size: 20px;
  font-weight: 500;
}

.faq-accordion .accordion .accordion-title i {
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #1b0238;
  font-size: 20px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-accordion .accordion .accordion-title.active i::before {
  content: "\eace";
  color: #f5890d;
}

.faq-accordion .accordion .accordion-content {
  display: none;
  position: relative;
  padding: 18px 20px;
  border-top: 1px solid #f5890d;
  color: #6b6b84;
  font-size: 15px;
}

.faq-accordion .accordion .accordion-content.show {
  display: block;
}

.faq-image {
  background-image: url(../img/faq.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.faq-contact-form {
  max-width: 850px;
  margin: auto;
}

.faq-contact-form #contact_form .form-group {
  margin-bottom: 15px;
}

.faq-contact-form #contact_form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #1b0238;
  background-color: transparent;
  border: 1px solid #f1f1f1;
  border-radius: 5px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
}

.faq-contact-form #contact_form .form-group .form-control:focus {
  border-color: #e65a3f;
}

.faq-contact-form #contact_form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.faq-contact-form #contact_form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.faq-contact-form #contact_form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.faq-contact-form #contact_form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.faq-contact-form #contact_form .form-group .form-control::-webkit-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-contact-form #contact_form .form-group .form-control:-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-contact-form #contact_form .form-group .form-control::-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-contact-form #contact_form .form-group .form-control::placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.faq-contact-form #contact_form .form-group textarea.form-control {
  height: auto;
  padding: 15px 0 0 15px;
}

.faq-contact-form #contact_form .form-group .help-block.with-errors ul {
  color: red;
  margin-bottom: 0;
  margin-top: 10px;
}

.faq-contact-form #contact_form #msgSubmit {
  margin: 0;
  font-size: 1.3rem;
}

.faq-contact-form #contact_form #msgSubmit.text-danger, .faq-contact-form #contact_form #msgSubmit.text-success {
  margin-top: 15px;
}

.faq-contact-form #contact_form .send-btn {
  margin-top: 15px;
}

.faq-contact-form #contact_form .send-btn .default-btn {
  border: none;
  position: relative;
  z-index: 1;
}

/*================================================
Contact Area CSS
=================================================*/
.contact-information h3 {
  margin-bottom: 25px;
  font-size: 25px;
}

.contact-information .contact-list {
  padding-left: 0;
  margin-bottom: 25px;
  list-style-type: none;
}

.contact-information .contact-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.contact-information .contact-list li i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #e65a3f;
  font-size: 20px;
}

.contact-information .contact-list li span {
  font-weight: 600;
  color: #1b0238;
}

.contact-information .contact-list li a {
  display: inline-block;
  font-weight: 600;
  position: relative;
}

.contact-information .contact-list li a:hover::before {
  width: 100%;
}

.contact-information .contact-list li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #e65a3f;
}

.contact-information .contact-list li:last-child {
  margin-bottom: 0;
}

.contact-information .opening-hours {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.contact-information .opening-hours li {
  margin-bottom: 10px;
}

.contact-information .opening-hours li:last-child {
  margin-bottom: 0;
}

.contact-form h3 {
  margin-bottom: 25px;
  font-size: 25px;
}

.contact-form #contact_form .form-group {
  margin-bottom: 15px;
}

.contact-form #contact_form .form-group .form-control {
  height: 60px;
  padding: 0 0 0 15px;
  line-height: initial;
  color: #1b0238;
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 5px;
  -webkit-box-shadow: unset !important;
          box-shadow: unset !important;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  font-size: 16px;
  font-weight: 400;
}

.contact-form #contact_form .form-group .form-control:focus {
  border-color: #e65a3f;
}

.contact-form #contact_form .form-group .form-control:focus::-webkit-input-placeholder {
  color: transparent;
}

.contact-form #contact_form .form-group .form-control:focus:-ms-input-placeholder {
  color: transparent;
}

.contact-form #contact_form .form-group .form-control:focus::-ms-input-placeholder {
  color: transparent;
}

.contact-form #contact_form .form-group .form-control:focus::placeholder {
  color: transparent;
}

.contact-form #contact_form .form-group .form-control::-webkit-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contact_form .form-group .form-control:-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contact_form .form-group .form-control::-ms-input-placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contact_form .form-group .form-control::placeholder {
  color: #6b6b84;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.contact-form #contact_form .form-group textarea.form-control {
  height: auto;
  padding: 15px 0 0 15px;
}

.contact-form #contact_form .form-group .help-block.with-errors ul {
  color: red;
  margin-bottom: 0;
  margin-top: 10px;
}

.contact-form #contact_form #msgSubmit {
  margin: 0;
  font-size: 1.3rem;
}

.contact-form #contact_form #msgSubmit.text-danger, .contact-form #contact_form #msgSubmit.text-success {
  margin-top: 15px;
}

.contact-form #contact_form .default-btn {
  border: none;
  position: relative;
  z-index: 1;
  border: none;
}

#map iframe {
  border: none;
  width: 100%;
  height: 450px;
  margin-bottom: -8px;
}

/*================================================
Teacher Details  Area CSS
=================================================*/
.teacher-details-desc .teacher-desc-content h3 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.teacher-details-desc .teacher-desc-content p {
  font-size: 15px;
  margin-bottom: 0;
}

.teacher-details-desc .teacher-desc-content .skill-bar {
  margin-top: 30px;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-title-holder {
  position: relative;
  margin-bottom: 10px;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-title {
  font-size: 16px;
  font-weight: 500;
  color: #1b0238;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-number-wrapper {
  width: 100%;
  z-index: 10;
  font-size: 11px;
  line-height: 24px;
  height: 24px;
  letter-spacing: 0px;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  color: #ffffff;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-number-mark {
  position: absolute;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 16px;
  color: #1b0238;
  font-weight: 500;
}

.teacher-details-desc .teacher-desc-content .skill-bar .down-arrow {
  display: none;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content-outter {
  height: 6px;
  background-color: #e4e4e4;
  border-radius: 4px;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content {
  height: 6px;
  background-color: #fdbb22;
  border-radius: 4px;
  width: 0%;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content.two {
  background-color: #ec471a;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content.three {
  background-color: #024982;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content.four {
  background-color: #5dba3b;
}

.teacher-details-desc .teacher-desc-content .skill-bar .progress-content.five {
  background-color: #ff0057;
}

.teacher-details-desc .teacher-desc-content .skill-bar-wrapper {
  margin-left: 30px;
  max-width: 510px;
}

.teacher-details-desc .teacher-desc-content .skill-bar-wrapper .section-title-left {
  margin-bottom: 50px;
}

.teacher-details-information {
  background-color: #ffffff;
  -webkit-box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border-top: 3px solid #e65a3f;
  padding: 40px 30px;
}

.teacher-details-information h3 {
  font-size: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
  position: relative;
}

.teacher-details-information h3::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 150px;
  height: 1px;
  background-color: #e65a3f;
}

.teacher-details-information ul {
  padding-left: 0;
  margin-bottom: 0;
}

.teacher-details-information ul li {
  list-style-type: none;
  color: #6b6b84;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.teacher-details-information ul li:last-child {
  margin-bottom: 0;
}

.teacher-details-information ul li span {
  color: #1b0238;
  font-size: 16px;
  font-weight: 600;
}

.teacher-details-information ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #6b6b84;
}

.teacher-details-information ul li a:hover {
  color: #e65a3f;
}

/*================================================
Event Details  Area CSS
=================================================*/
.event-details-desc .event-desc-content h3 {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.event-details-desc .event-desc-content p {
  font-size: 15px;
  margin-bottom: 0;
}

.event-details-desc .event-desc-content #map {
  margin-top: 30px;
}

.event-details-desc .event-desc-content #map iframe {
  border: none;
  width: 100%;
  height: 450px;
  margin-bottom: -8px;
}

.event-details-information {
  background-color: #ffffff;
  -webkit-box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border-top: 3px solid #e65a3f;
  padding: 40px 30px;
}

.event-details-information h3 {
  font-size: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
  position: relative;
}

.event-details-information h3::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 150px;
  height: 1px;
  background-color: #e65a3f;
}

.event-details-information ul {
  padding-left: 0;
  margin-bottom: 0;
}

.event-details-information ul li {
  list-style-type: none;
  color: #6b6b84;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.event-details-information ul li:last-child {
  margin-bottom: 0;
}

.event-details-information ul li span {
  color: #1b0238;
  font-size: 16px;
  font-weight: 600;
}

.event-details-information ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #6b6b84;
}

.event-details-information ul li a:hover {
  color: #e65a3f;
}

/*================================================
Class Details  Area CSS
=================================================*/
.class-details-desc .class-details-tab {
  margin-top: 30px;
}

.class-details-desc .class-details-tab .tabs {
  list-style-type: none;
  margin-bottom: -1px;
  padding-left: 0;
}

.class-details-desc .class-details-tab .tabs li {
  display: inline-block;
  line-height: initial;
  margin-right: 5px;
}

.class-details-desc .class-details-tab .tabs li a {
  display: inline-block;
  position: relative;
  color: #1b0238;
  text-decoration: none;
  background-color: #fcefea;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 35px;
  width: 100%;
}

.class-details-desc .class-details-tab .tabs li a:hover, .class-details-desc .class-details-tab .tabs li a:focus {
  color: #ffffff;
  background-color: #e65a3f;
}

.class-details-desc .class-details-tab .tabs li.current a {
  color: #ffffff;
  background-color: #e65a3f;
  border-color: #e65a3f;
}

.class-details-desc .class-details-tab .tabs li:last-child {
  margin-right: 0;
}

.class-details-desc .class-details-tab .tab_content .tabs_item {
  display: none;
}

.class-details-desc .class-details-tab .tab_content .tabs_item:first-child {
  display: block;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content h3 {
  font-size: 25px;
  margin-top: 30px;
  margin-bottom: 15px;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content p {
  font-size: 15px;
  margin-bottom: 0;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content .requirements-list {
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 30px;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content .requirements-list li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
  color: #6b6b84;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content .requirements-list li:last-child {
  margin-bottom: 0;
}

.class-details-desc .class-details-tab .tab_content .tabs_item .class-desc-content .requirements-list li i {
  color: #e65a3f;
}

.class-details-information {
  background-color: #ffffff;
  -webkit-box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px -10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border-top: 3px solid #e65a3f;
  padding: 40px 30px;
}

.class-details-information h3 {
  font-size: 25px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 15px;
  position: relative;
}

.class-details-information h3::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 150px;
  height: 1px;
  background-color: #e65a3f;
}

.class-details-information ul {
  padding-left: 0;
  margin-bottom: 0;
}

.class-details-information ul li {
  list-style-type: none;
  color: #6b6b84;
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Roboto", sans-serif;
}

.class-details-information ul li:last-child {
  margin-bottom: 0;
}

.class-details-information ul li span {
  color: #1b0238;
  font-size: 16px;
  font-weight: 600;
}

.class-details-information ul li a {
  font-size: 16px;
  font-weight: 400;
  color: #6b6b84;
}

.class-details-information ul li a:hover {
  color: #e65a3f;
}

.class-newsletter {
  background-color: #fcefea;
  padding: 25px;
  margin-top: 30px;
}

.class-newsletter .newsletter-content {
  text-align: center;
  margin-bottom: 25px;
}

.class-newsletter .newsletter-content h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.class-newsletter .newsletter-content p {
  font-size: 14px;
}

.class-newsletter .newsletter-form .input-newsletter {
  display: block;
  width: 100%;
  background-color: #ffffff;
  border: none;
  height: 55px;
  padding-left: 15px;
  border-radius: 0;
  outline: 0;
  color: #1b0238;
}

.class-newsletter .newsletter-form .input-newsletter:focus::-webkit-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.class-newsletter .newsletter-form .input-newsletter:focus:-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.class-newsletter .newsletter-form .input-newsletter:focus::-ms-input-placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.class-newsletter .newsletter-form .input-newsletter:focus::placeholder {
  color: transparent;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.class-newsletter .newsletter-form button {
  background: #e65a3f;
  color: #ffffff;
  border: none;
  height: 55px;
  padding: 0 60px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  line-height: 55px;
  font-weight: 500;
  border-radius: 0;
  transition: 0.5s;
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
  margin-top: 10px;
}

.class-newsletter .newsletter-form button:hover {
  background-color: #f5890d;
}

.class-newsletter .newsletter-form #validator-newsletter {
  color: red;
  margin-top: 15px;
  font-weight: 400;
  text-align: center;
  font-weight: 400;
}

.related-class {
  margin-top: 30px;
}

.related-class h3 {
  font-size: 25px;
  margin-bottom: 25px;
}

/*================================================
Pagination Area CSS
=================================================*/
.pagination-area {
  text-align: center;
  margin-top: 20px;
}

.pagination-area .page-numbers {
  width: 35px;
  height: 35px;
  margin: 0 3px;
  display: inline-block;
  background-color: #ffffff;
  line-height: 35px;
  color: #1b0238;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
}

.pagination-area .page-numbers.current, .pagination-area .page-numbers:hover, .pagination-area .page-numbers:focus {
  background: #f5890d;
  color: #ffffff;
  -webkit-box-shadow: 0 2px 10px 0 #d8dde6;
          box-shadow: 0 2px 10px 0 #d8dde6;
}

.pagination-area .page-numbers i {
  position: relative;
  top: 4px;
}

/*================================================
Footer Area CSS
=================================================*/
.footer-area {
  /* background-image: url(../img/footer-bg.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  z-index: 1; */
  background-color: #1b0238;
}

/* .footer-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: #000000;
  left: 0;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0.9;
} */

.single-footer-widget {
  /* margin-bottom: 30px; */
  margin-bottom: 10px;
}

.single-footer-widget .logo {
  margin-bottom: 25px;
}

.single-footer-widget .logo h2 {
  font-size: 50px;
}

.single-footer-widget .logo h2 a {
  color: #ffffff;
}

.single-footer-widget p {
  margin-bottom: 0;
  color: #ffffff;
}

.single-footer-widget .social {
  padding-left: 0;
  list-style-type: none;
  margin-top: 25px;
  margin-bottom: 0;
}

.single-footer-widget .social li {
  display: inline-block;
  margin-right: 10px;
}

.single-footer-widget .social li:last-child {
  margin-right: 0;
}

.single-footer-widget .social li a {
  display: block;
  width: 35px;
  height: 35px;
  line-height: 40px;
  border-radius: 50%;
  background-color: #e65a3f;
  color: #ffffff;
  text-align: center;
  font-size: 18px;
}

.single-footer-widget .social li a:hover, .single-footer-widget .social li a:focus {
  background-color: #f5890d;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.single-footer-widget h3 {
  font-size: 22px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 25px;
  color: #ffffff;
}

.single-footer-widget h3::before {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  height: 2px;
  width: 50px;
  background-color: #e65a3f;
}

.single-footer-widget .footer-contact-info {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .footer-contact-info li {
  /* margin-bottom: 20px; */
  margin-bottom: 10px;
  color: #ffffff;
  position: relative;
  padding-left: 35px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
}

.single-footer-widget .footer-contact-info li i {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 25px;
  color: #e65a3f;
}

.single-footer-widget .footer-contact-info li span {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #ffffff;
  font-size: 18px;
}

.single-footer-widget .footer-contact-info li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 400;
  position: relative;
  /* font-size: 14px; */
  font-size: 16px;
}

.single-footer-widget .footer-contact-info li a:hover {
  color: #e65a3f;
}

.single-footer-widget .footer-contact-info li a:hover::before {
  width: 100%;
}

.single-footer-widget .footer-contact-info li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #e65a3f;
}

.single-footer-widget .footer-contact-info li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .quick-links {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}

.single-footer-widget .quick-links li {
  margin-bottom: 18px;
  color: #ffffff;
  font-size: 16px;
}

.single-footer-widget .quick-links li a {
  display: inline-block;
  color: #ffffff;
  font-weight: 500;
  position: relative;
}

.single-footer-widget .quick-links li a:hover {
  color: #e65a3f;
}

.single-footer-widget .quick-links li a:hover::before {
  width: 100%;
}

.single-footer-widget .quick-links li a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #e65a3f;
}

.single-footer-widget .quick-links li:last-child {
  margin-bottom: 0;
}

.single-footer-widget .photo-gallery-list {
  padding-left: 0;
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 0;
  margin-left: -2px;
  margin-right: -2px;
  margin-top: -5px;
}

.single-footer-widget .photo-gallery-list li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.333333%;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
  text-align: center;
  padding-left: 2px;
  padding-right: 2px;
  padding-top: 5px;
}

.single-footer-widget .photo-gallery-list li .box {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.single-footer-widget .photo-gallery-list li .box .link-btn {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3;
}

.single-footer-widget .photo-gallery-list li .box img {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-footer-widget .photo-gallery-list li .box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: #e65a3f;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
  visibility: hidden;
}

.single-footer-widget .photo-gallery-list li .box:hover::before {
  opacity: 0.5;
  visibility: visible;
}

.single-footer-widget .photo-gallery-list li .box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.single-footer-widget .photo-gallery-list li .box:hover i {
  opacity: 1;
  visibility: visible;
}

.single-footer-widget .business-hours {
  color: #ffffff;
  font-size: 16px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
}

.single-footer-widget .business-hours .timings {
  display: inline-flex;
  align-items: center;
}
/*================================================
Copy Right Area CSS
=================================================*/
.copyright-area {
  /* padding-top: 30px;
  padding-bottom: 30px; */
  padding-top: 15px;
  padding-bottom: 15px;
  /* background-color: #1b0238; */
  background-color: #e65a3f;
}

.copyright-area .copyright-area-content {
  text-align: center;
}

.copyright-area .copyright-area-content p {
  color: #ffffff;
  font-size: 14px;
}

.copyright-area .copyright-area-content p a {
  display: inline-block;
  font-weight: 600;
  color: #e65a3f;
}

.copyright-area .copyright-area-content p a:hover {
  color: #ffffff;
}

/*================================================
Go Top CSS
=================================================*/
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 20px;
  color: #ffffff;
  background-color: #1b0238;
  z-index: 4;
  width: 45px;
  text-align: center;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  font-size: 22px;
  -webkit-transition: .9s;
  transition: .9s;
  overflow: hidden;
  -webkit-box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.1);
}

.go-top i {
  position: absolute;
  right: 0;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

.go-top:hover {
  background-color: #e65a3f;
  color: #ffffff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

/** Accordion CSS **/
.privacy-policy-accordion .accordion {
  list-style-type:none;
  padding-left:0;
  margin-bottom:0
}
.privacy-policy-accordion .accordion .accordion-item { 
  display:block;
  border:2px solid #f3f3f3;
  margin-bottom:10px
}
.privacy-policy-accordion .accordion .accordion-item:last-child {
  margin-bottom:0;
  overflow: hidden;
}
.privacy-policy-accordion .accordion .accordion-title{
  padding:25px 40px 20px 20px;
  color:#1b0238;
  position:relative;
  display:block;
  font-size:20px;
  font-weight:500
}
.privacy-policy-accordion .accordion .accordion-title i {
  position:absolute;
  right:20px;
  top:50%;
  -webkit-transform:translateY(-50%);
  transform:translateY(-50%);
  color:#1b0238;
  font-size:20px;
  -webkit-transition:.5s;
  transition:.5s
}
.privacy-policy-accordion .accordion .accordion-title.active i::before {
  content:"\eace";
  color:#f5890d
}
.privacy-policy-accordion .accordion .accordion-content {
  display:none;
  position:relative; 
  padding:18px 20px;
  border-top:1px solid #f5890d;
  color:#6b6b84;
  font-size:15px
}
.privacy-policy-accordion .accordion .accordion-content.show {
  display:block
}

/** Gallery CSS **/
.single-gallery-box {
  text-align:center;
  position:relative;
  margin-bottom:30px
}
.single-gallery-box::before {
  width:100%;
  content:'';
  position:absolute;
  height:100%;
  background-color:#000;
  left:0;
  top:0;
  -webkit-transition:.5s;
  transition:.5s;
  opacity:0;
  visibility:hidden;
  border-radius:15px
}
.single-gallery-box img { 
  border-radius:15px
}
.single-gallery-box .gallery-btn {
  position:absolute;
  left:50%;
  top:50%;
  -webkit-transform:translateY(-50%) translateX(-50%);
  transform:translateY(-50%) translateX(-50%);
  font-size:35px;
  color:#fff;
  margin-top:20px;
  opacity:0;
  visibility:hidden
}
.single-gallery-box:hover::before {
  opacity:.3;
  visibility:visible
}
.single-gallery-box:hover .gallery-btn {
  opacity:1;
  visibility:visible;
  margin-top:0
}
.view-btn { 
  text-align:center;
  margin-top:15px
}

/** Overview Area CSS **/
.overview-area {
    background-image: url(../img/overview-bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.overview-area .overview-content {
    background-color: #fff;
    -webkit-box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
    box-shadow: 0 2px 28px 0 rgb(0 0 0 / 9%);
    padding: 30px;
    max-width: 600px;
    margin-left: auto;
    border-radius: 15px;
    text-align: center;
}
.overview-area .overview-content h3 {
    font-size: 45px;
    margin-bottom: 15px;
}
.overview-area .overview-content p {
  margin-bottom: 0;
}
.overview-area .overview-content .overview-btn {
  margin-top: 30px;
}

/** Preschool Program **/
#callout {
  background-color: #59B2DC;
  position: relative;
  overflow: hidden;
  opacity: 0.90
}
#callout .container {
    position: relative;
    overflow: hidden;
    /* background-image: url(http://wildwoodchildcare.com/css/../img/schedule-visit.png); */
    background-image: url('../img/pre-school-2.png');
    background-position: bottom right;
    background-repeat: no-repeat;
    padding: 80px 0 80px 0;
}
.sun {
  float: left;
  z-index: 99;
  position: relative;
  margin: 30px;
  width: 80px;
  height: 80px;
}
.sun-face {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 80px;
  text-align: center;
  font-size: 1.5em;
  text-align: center;
  color: #4E0404;
}
.sun-hlight {
  position: absolute;
  top: 0.6em;
  right: 0.6em;
  width: 0.35em;
  height: 0.35em;
  opacity: 0.8;
  background: #fcf0a3;
  border-radius: 0.35em;
}
.sun-leye, .sun-reye {
  position: absolute;
  top: 1.45em;
  left: 0.75em;
  width: 0.4em;
  height: 0.9em;
  background: #565656;
  border-radius: 0.4em / 0.8em;
}
.sun-reye {
  left: auto;
  right: 0.75em;
}
.sun-leye:before, .sun-reye:before {
  position: absolute;
  bottom: 0.1em;
  right: -0.1em;
  width: 0.2em;
  height: 0.2em;
  background: #ffdf05;
  content: '';
  transform: rotate(45deg);
}
.sun-leye:after, .sun-reye:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 0.4em;
  height: 0.1em;
  background: #ffdf05;
  content: '';
}
.sun-lred, .sun-rred {
  position: absolute;
  top: 2em;
  left: -0.2em;
  width: 0.7em;
  height: 0.35em;
  opacity: 0.6;
  background: #ff5e00;
  border-radius: 0.7em / 0.35em;
}
.sun-rred {
  left: auto;
  right: -0.2em;
}
.sun-smile {
  position: absolute;
  bottom: 0.8em;
  left: 50%;
  margin-left: -0.2em;
  width: 0.4em;
  height: 0.2em;
  background: #565656;
}
.sun-smile:before {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -0.03125em;
  width: 0.0625em;
  height: 0.35em;
  background: #565656;
  content: '';
}
.sun-smile:after {
  position: absolute;
  bottom: -0.2em;
  left: 0;
  width: 0.4em;
  height: 0.2em;
  background: #565656;
  border-radius: 0 0 0.2em 0.2em;
  content: '';
}
.sun-anime {
  width: 100%;
  height: 100%;
  animation: sunrolling 30s infinite;
}
.sun-ball {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background: #ffcf11;
  background-image: radial-gradient(circle, #ffdf05, #ffdf05);
  box-shadow: 0 0 100px #ffdf05;
}
.sun-light {
  position: absolute;
  top: -30%;
  left: 50%;
  width: 2px;
  height: 160%;
}
.sun-light:nth-child(10n+2) {
  transform: rotate(18deg);
}
.sun-light:nth-child(10n+3) {
  transform: rotate(36deg);
}
.sun-light:nth-child(10n+4) {
  transform: rotate(54deg);
}
.sun-light:nth-child(10n+5) {
  transform: rotate(72deg);
}
.sun-light:nth-child(10n+6) {
  transform: rotate(90deg);
}
.sun-light:nth-child(10n+7) {
  transform: rotate(108deg);
}
.sun-light:nth-child(10n+8) {
  transform: rotate(126deg);
}
.sun-light:nth-child(10n+9) {
  transform: rotate(144deg);
}
.sun-light:nth-child(10n+10) {
  transform: rotate(162deg);
}
.sun-light b, .sun-light s {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 12%;
  background: #fed65b;
}
.sun-light s {
  top: auto;
  bottom: 0;
}
.well {
  border-radius: 20px;
  border: 0;
  background-color: #fff;
  padding: 20px 30px;
  box-shadow: 6px 6px 0px rgb(103 102 102 / 20%);
  margin-bottom: 0px;
  min-height: 20px;
}
.red-text {
  color: #e65a3f;
}
.mb-3 {
  margin-bottom: 1rem;
}

#our-programs .important-info {
  padding: 50px 0;
  clear: both;
  display: flex;
}
.alert {
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 225px 45px 325px 75px/15px 125px 35px 155px;
  font-size: 16px;
  box-shadow: 6px 6px 0px rgb(103 102 102 / 20%);
  margin-right: 15px;
}
.alert-info {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.school-activities {
  margin: 0;
  list-style: disc;
  color: #e65a3f;
  font-size: 15px;
  font-family: 'Roboto';
  font-weight: 400;
  width: 50%;
}
.school-activities li {
  margin: 0 5px;
  padding: 0 0 10px 0;
}
.school-activities.activities-left {
    float: left;
}
.school-activities.activities-right {
  float: right;
}

/*Map */
#map-canvas {
    width: 100%;
    overflow: hidden;
  max-width:100%;
  height: 300px;
  margin:20px 0 20px;
  border-radius:20px;
}

/* Leaflet styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
	max-width: none !important;
	max-height: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	/* Fallback for FF which doesn't support pinch-zoom */
	touch-action: none;
	touch-action: pinch-zoom;
}
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-container {
	-webkit-tap-highlight-color: transparent;
}
.leaflet-container a {
	-webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	     -o-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}
.leaflet-touch .leaflet-bar a:first-child {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	}
.leaflet-touch .leaflet-bar a:last-child {
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
	}

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out  {
	font-size: 22px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(images/layers.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(images/layers-2x.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	overflow-x: hidden;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(images/marker-icon.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
}
.team-img-wrap {
  border-radius: 12px;
  max-width: 96%;
}