* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
  font-family: "Plus Jakarta Sans", sans-serif;
  scrollbar-color: #38cc71 transparent;
  scrollbar-width: thin;
}
/*Page Loader*/
.no-js #loader {
  display: none;
}
.js #loader {
  display: block;
  position: absolute;
  left: 100px;
  top: 0;
}
.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url("../images/loading.gif") center no-repeat #fff;
  overflow-y: hidden !important;
}
.cookie-banner {
  z-index: 99999999999999999999999;
  position: fixed;
  bottom: 10px;
  left: 1%;
  right: 1%;
  width: 98%;
  height: auto;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  color: #38cc71;
  border: 2px solid #38cc71;
}
.cookie-banner p {
  padding-top: 0 !important;
}
.modal-content {
  border-radius: 1em !important;
}
/* Loader start */
#loader {
  display: none;
  position: fixed;
  z-index: 9999;
  height: 2em;
  width: 2em;
  overflow: show;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* Transparent Overlay */
#loader:before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(20, 20, 20, 0.8), rgba(0, 0, 0, 0.8));

  background: -webkit-radial-gradient(
    rgba(20, 20, 20, 0.8),
    rgba(0, 0, 0, 0.8)
  );
}

/* :not(:required) hides these rules from IE9 and below */
#loader:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

#loader:not(:required):after {
  content: "";
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 150ms infinite linear;
  -moz-animation: spinner 150ms infinite linear;
  -ms-animation: spinner 150ms infinite linear;
  -o-animation: spinner 150ms infinite linear;
  animation: spinner 150ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
    rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
    rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(255, 255, 255, 0.75) 1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) 1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 1.5em 0 0,
    rgba(255, 255, 255, 0.75) -1.1em 1.1em 0 0,
    rgba(255, 255, 255, 0.75) -1.5em 0 0 0,
    rgba(255, 255, 255, 0.75) -1.1em -1.1em 0 0,
    rgba(255, 255, 255, 0.75) 0 -1.5em 0 0,
    rgba(255, 255, 255, 0.75) 1.1em -1.1em 0 0;
}

/* Animation */

@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*Loader End*/
section {
  position: relative;
}
::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #38cc71;
  -webkit-border-radius: 1ex;
}
::-webkit-scrollbar-corner {
  background: transparent;
}
.checkout {
  width: auto;
  height: auto;
}
.green {
  color: #38cc71 !important;
}
.skeleton-container {
  margin-top: 9em;
}
a {
  text-decoration: none;
}
.navbar {
  background: #fff;
}
.logo {
  height: 60px;
}
.nav-link {
  font-size: 1em;
  font-weight: 600;
  margin: 0.5em;
  color: #18181b;
  transition: all 0.5s !important;
}
.nav-link:hover {
  color: #38cc71;
}
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
}
.shop-btn {
  background-color: #38cc71;
  border-radius: 5px;
  padding: 0.5em 3em;
  margin-left: 1em;
  color: #fff;
  border: 2px solid #38cc71;
  transition: all 0.5s !important;
  font-weight: 600;
  text-decoration: none !important ;
}
.shop-btn:hover {
  background-color: #fff;
  color: #38cc71;
}
.banner {
  padding: 6em 0;
  min-height: auto;
  position: relative;
}
.banner h1 {
  font-size: 4em;
  font-weight: 800;
  color: #18181b;
  z-index: 2;
}
.banner p {
  font-size: 16px;
  font-weight: 500;
  color: #707070;
  margin: 1em 0;
  line-height: 2em;
}
.banner label {
  font-weight: 700;
  font-size: 18px;
  color: #18181b;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1em;
}
.banner-text {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 5em;
}
.banner-search {
  padding: 1.5em;
  background: #fff;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 50px #ccc;
  width: 150%;
  margin-top: 2em;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.search-page {
  padding: 1em;
  background: #fff;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 50px #ccc;
  width: 100%;
  margin-top: 0em;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.search-btn {
  background-color: #38cc71;
  border-radius: 5px;
  padding: 1em 3em;
  margin-left: 1em;
  color: #fff;
  border: 2px solid #38cc71;
  transition: all 0.5s !important;
  font-weight: 600;
  text-decoration: none !important ;
}
.search-btn:hover {
  background-color: #fff;
  color: #38cc71;
}
.form-field {
  border-right: 1px solid #ccc;
  padding-right: 5em;
  padding-left: 1em;
  display: block;
}
.form-field select {
  font-size: 16px;
  color: #707070;
  border: none;
  padding: 1em;
  padding-left: 0;
  background: #fff;
  width: 100%;
}
.banner-stats {
  display: flex;
  margin-top: 1.5em;
}
.stats-group {
  padding-right: 3em;
}
.stats-group h2 {
  font-weight: 600;
  font-size: 4em;
}
.stats-group h3 {
  font-size: 16px;
}
.banner-green {
  color: #38cc71;
  border-bottom: 10px solid transparent;
  padding-bottom: 15px;
  border-image: url("../images/banner-dash.svg");
}
.banner-dash {
  position: absolute;
  bottom: 0em;
}
.banner-waves {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}
.about {
  padding: 5em 0;
  background: #f8fafc;
}
.about-text {
  width: 100%;
  height: auto;
  position: relative;
  margin-top: 5em;
}
.about-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}
.about h1 {
  font-size: 4em;
  font-weight: 700;
  margin-bottom: 0.5em;
}
.about h2 {
  font-family: "Courgette", cursive;
  font-size: 1.5em;
  margin: 0.5em 0;
}
.about p {
  font-size: 16px;
  font-weight: 500;
  color: #707070;
  margin: 1em 0;
  line-height: 2em;
}
.resources {
  padding: 5em 0;
  background: #fff;
}

.resources h1 {
  font-size: 4em;
  font-weight: 700;
  margin-bottom: 1em;
}
.resources h2 {
  font-family: "Courgette", cursive;
  font-size: 1.5em;
  margin: 0.5em 0;
}
.resource-card {
  border-top-left-radius: 13em;
  border-top-right-radius: 13em;
  overflow: hidden;
  margin-bottom: 2em;
  position: relative;
  z-index: 2;
}
.resource-btn-container {
  width: 100%;
  height: auto;
  position: relative;
  text-align: center;
}
.resource-btn {
  border: 2px solid #38cc71;
  padding: 0.5em 2em;
  color: #fff;
  background: #38cc71;
  border-radius: 5px;
  font-weight: 600;
  margin: 1em auto;
  display: inline-block;
  transition: all 0.5s !important;
}
.resource-btn:hover {
  color: #38cc71;
  background: #fff;
}
.resources-img {
  position: absolute;
  top: 4em;
  left: 10%;
  width: 25%;
  height: auto;
  z-index: 1;
}
.how-it-works {
  padding: 5em 0;
}
.how-it-works h1 {
  font-size: 4em;
  font-weight: 700;
  margin-bottom: 1em;
}
.how-it-works h2 {
  font-family: "Courgette", cursive;
  font-size: 1.5em;
  margin: 0.5em 0;
}
.how-it-works h4 {
  font-size: 3em;
  font-weight: 700;
  color: #18181b;
}
.how-it-works p {
  font-size: 16px;
  font-weight: 500;
  color: #707070;
  line-height: 1.7em;
  padding-left: 1em;
}
.how-icon {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100%;
}
.steps-container {
  width: 100%;
  margin: auto;
  display: block;
  position: relative;
}

.steps-container ul.steps {
  margin: 0;
  padding: 0;
  display: inline-block;
}

.steps-container ul.steps li {
  list-style: none;
  margin: auto;
  margin-left: 3em;
  margin-top: -1em;
  min-height: 50px;
  border-left: 3px solid #38cc71;
  padding: 0 0 50px 30px;
  position: relative;
}

.steps-container ul.steps li:last-child {
  border-left: 0;
}

.steps-container ul.steps li::before {
  position: absolute;
  left: -25px;
  top: -5px;
  content: " ";
  border: 8px solid #38cc71;
  border-radius: 50%;
  background: #fff;
  height: 50px;
  width: 50px;
  transition: all 0.5s ease-in-out;
}

.steps-container ul.steps li:hover::before {
  border-color: #38cc71;
  background: #38cc71;
  transition: all 0.5s ease-in-out;
}

ul.steps li .step {
  color: #50d890;
  position: relative;
  width: 100%;
  font-size: 12px;
  padding-left: 1em;
}

.item-title p {
  font-size: 16px;
  font-weight: 500;
  color: #707070;
  margin: 1em 0;
  line-height: 2em;
  padding-left: 1em;
}
.disclaimer {
  padding: 3em;
}
.disclaimer-content {
  background: #38cc71;
  color: #fff;
  border-radius: 2em;
  padding: 3em 0;
  position: relative;
}
.disclaimer h1 {
  font-size: 2em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1em;
  position: relative;
}
.disclaimer p {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 2em;
  position: relative;
}
.disclaimer-waves {
  position: absolute;
  top: 3em;
  left: 3em;
  width: 15%;
  z-index: 1;
}
.disclaimer-mic {
  position: absolute;
  bottom: 2em;
  right: 2em;
  width: 13%;
  z-index: 1;
}
.footer {
  padding: 5em 0;
  padding-bottom: 1em;
}
.footer-logo {
  height: 60px;
  margin-bottom: 1em;
}
.footer h3 {
  font-size: 1.25em;
  font-weight: 800;
  color: #38cc71;
  text-transform: uppercase;
  margin-bottom: 2em;
}
.footer p {
  font-weight: 500;
  font-size: 16px;
  color: #707070;
  line-height: 2em;
}
.footer ul {
  font-weight: 500;
  font-size: 16px;
  color: #707070;
  list-style: none;
  margin-left: -2em;
}
.footer ul li {
  line-height: 3em;
}
.footer ul li a {
  color: #707070;
  transition: all 0.5s !important;
}
.footer ul li a:hover {
  color: #38cc71;
}
.copyright {
  font-size: 14em;
  color: #707070;
  text-align: center;
  padding-top: 2em;
  margin-top: 2em;
  border-top: 1px solid #ccc;
  font-weight: 500;
}
.copyright a {
  color: #38cc71;
  font-weight: 700;
  text-decoration: none !important;
}
.contact {
  padding: 5em 0;
  background: #fff;
}

.contact h1 {
  font-size: 4em;
  font-weight: 700;
  margin-bottom: 1em;
}
.contact h2 {
  font-family: "Courgette", cursive;
  font-size: 1.5em;
  margin: 0.5em 0;
  margin-top: 3em;
}
.contact h3 {
  font-size: 1.25em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1em;
  color: #38cc71;
}
.contact p {
  color: #000000;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 1em;
}
.contact p i {
  margin-right: 2em;
}
.contact h3 i {
  margin-right: 1em;
  color: #38cc71;
}
.contact i {
  color: #9ee6ba;
}
.contact-details {
  background: #e5f8ed;
  border-radius: 1em;
  padding: 2em;
  margin-bottom: 2em;
}
.contact label {
  font-size: 16px;
  font-weight: 700;
  display: block;
  margin: 0.5em;
}
.contact input,
.contact textarea {
  font-size: 16px;
  width: 100%;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 1em;
}
.contact button {
  padding: 1em 2em;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  background: #38cc71;
  border: 2px solid #38cc71;
  color: #fff !important;
  transition: all 0.5s !important;
  margin-top: 1em;
  width: 100%;
}
.contact button:hover {
  background: #fff;
  color: #38cc71 !important;
}
.search {
  padding: 5em 0;
  background: #fff;
}

.search h1 {
  font-size: 4em;
  font-weight: 700;
  margin-bottom: 1em;
}
.search h2 {
  font-family: "Courgette", cursive;
  font-size: 1.5em;
  margin: 0.5em 0;
  margin-top: 3em;
}
.search h3 {
  font-size: 1.25em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1em;
  color: #38cc71;
}
.search p {
  font-size: 16px;
  font-weight: 500;
  color: #707070;
  margin: 1em 0;
  line-height: 2em;
}
.search ul {
  font-size: 16px;
  font-weight: 500;
  color: #707070;
  margin: 1em 0;
  line-height: 2em;
}
.full-width {
  width: 100%;
}
.qr-img {
  width: 10em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
  margin-bottom: 1em;
}
.how-bold {
  font-weight: 900;
  color: #18181b;
}
.swal-title:not(:first-child) {
  padding-bottom: 1em;
}
.alert a {
  float: right;
  color: #171717 !important;
}
.mobile {
  display: none;
}
.search-page.collapse:not(.show) {
  display: flex;
}
.single-teacher {
  border-radius: 2em;
  border: 2px solid #efefef;
  transition: all 0.5s !important;
  padding: 1em;
}
.single-teacher:hover {
  border: 2px solid #38cc71;
}
.pages {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.active > .page-link,
.page-link.active {
  background-color: #38cc71;
  border-color: #38cc71;
}
.page-link {
  color: #38cc71;
}
.page-link:hover {
  color: #38cc71;
}
@media screen and (max-width: 820px) {
  .mobile-centered {
    text-align: center !important;
  }
  .mobile-row-reverse {
    flex-direction: column-reverse;
  }
  .mobile {
    display: block;
  }
  .search-page.collapse:not(.show) {
    display: none;
  }
  .logo {
    height: 30px;
  }
  .nav-link,
  .dropdown-item {
    text-align: center;
  }
  .shop-btn {
    margin-left: auto;
    margin-right: auto;
  }
  .banner {
    padding: 4em 0;
    min-height: 100vh;
    position: relative;
  }
  .banner h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: #18181b;
    z-index: 2;
  }
  .banner p {
    font-size: 12px;
    font-weight: 500;
    color: #707070;
    margin: 1em 0;
    line-height: 2em;
  }
  .banner label {
    font-weight: 700;
    font-size: 16px;
    color: #18181b;
    text-transform: uppercase;
    display: block;
    margin-top: 1em;
    margin-bottom: 0;
  }
  .banner-text {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 4em;
  }
  .banner-search {
    padding: 1em;
    background: #fff;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 50px #ccc;
    width: 100%;
    margin-top: 2em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .search-page {
    padding: 1em;
    background: #fff;
    position: relative;
    z-index: 3;
    box-shadow: 0 0 50px #ccc;
    width: 100%;
    margin-top: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .search-btn {
    background-color: #38cc71;
    border-radius: 5px;
    padding: 1em 3em;
    margin-left: 0em;
    color: #fff;
    border: 2px solid #38cc71;
    transition: all 0.5s !important;
    font-weight: 600;
    text-decoration: none !important ;
    width: 100%;
    margin-top: 1em;
  }
  .search-btn:hover {
    background-color: #fff;
    color: #38cc71;
  }
  .form-field {
    border-right: none;
    padding-right: 0em;
    display: block;
    width: 100%;
  }
  .form-field select {
    font-size: 12px;
    color: #707070;
    border: none;
    padding: 1em;
    padding-left: 0;
    background: #fff;
    width: 100%;
  }
  .banner-stats {
    display: flex;
    margin-top: 1em;
    justify-content: center;
    align-items: center;
  }
  .stats-group {
    padding: 1em;
  }
  .stats-group h2 {
    font-weight: 600;
    font-size: 2.5em;
  }
  .stats-group h3 {
    font-size: 12px;
  }
  .banner-green {
    color: #38cc71;
    border-bottom: 10px solid transparent;
    padding-bottom: 15px;
    border-image: url("../images/banner-dash.svg");
  }
  .banner-dash {
    position: absolute;
    bottom: 0em;
  }
  .banner-waves {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
  }
  .about {
    padding: 4em 0;
    background: #f8fafc;
  }
  .about-text {
    width: 100%;
    height: auto;
    position: relative;
    margin-top: 2em;
  }
  .about-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
  }
  .about-img {
    margin-top: 6em;
  }
  .about h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 1em;
  }
  .about h2 {
    font-family: "Courgette", cursive;
    font-size: 1.2em;
    margin: 0.5em 0;
  }
  .about p {
    font-size: 12px;
    font-weight: 500;
    color: #707070;
    margin: 1em 0;
    line-height: 2em;
  }
  .resources {
    padding: 5em 0;
    background: #fff;
  }
  .resources h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 1em;
  }
  .resources h2 {
    font-family: "Courgette", cursive;
    font-size: 1.2em;
    margin: 0.5em 0;
  }
  .resources h4 {
    font-size: 2em;
  }
  .resource-card {
    border-top-left-radius: 13em;
    border-top-right-radius: 13em;
    overflow: hidden;
    margin-bottom: 2em;
  }
  .how-it-works h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 2em;
  }
  .how-it-works h2 {
    font-family: "Courgette", cursive;
    font-size: 1.2em;
    margin: 0.5em 0;
  }
  .how-it-works h4 {
    font-size: 2.5em;
    font-weight: 700;
    color: #18181b;
  }
  .how-it-works p {
    font-size: 12px;
    font-weight: 500;
    color: #707070;
    line-height: 1.5em;
    padding-left: 1em;
  }
  .disclaimer {
    padding: 1em;
  }
  .disclaimer-content {
    background: #38cc71;
    color: #fff;
    border-radius: 1em;
    padding: 1em 0;
    overflow: hidden;
  }
  .disclaimer h1 {
    font-size: 1.3em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1em;
  }
  .disclaimer p {
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    line-height: 2em;
  }
  .disclaimer-waves {
    position: absolute;
    top: 3em;
    left: 3em;
    width: 30%;
    z-index: 1;
  }
  .disclaimer-mic {
    position: absolute;
    bottom: 2em;
    right: 3em;
    width: 45%;
    z-index: 1;
  }
  .footer-logo {
    height: 30px;
    margin-bottom: 1em;
  }
  .footer h3 {
    font-size: 1em;
    font-weight: 800;
    color: #38cc71;
    text-transform: uppercase;
    margin-bottom: 2em;
    margin-top: 1em;
  }
  .footer p {
    font-weight: 500;
    font-size: 12px;
    color: #707070;
    line-height: 2em;
  }
  .footer ul {
    font-weight: 500;
    font-size: 12px;
    color: #707070;
    list-style: none;
    margin-left: -2em;
  }
  .footer ul li {
    line-height: 2em;
  }
  .copyright {
    font-size: 12em;
    color: #707070;
    text-align: center;
    padding-top: 2em;
    margin-top: 2em;
    border-top: 1px solid #ccc;
    font-weight: 500;
  }
  .contact {
    padding: 5em 0;
    background: #fff;
  }

  .contact h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 1em;
  }
  .contact h2 {
    font-family: "Courgette", cursive;
    font-size: 1.2em;
    margin: 0.5em 0;
    margin-top: 0.5em;
  }
  .contact h3 {
    font-size: 1em;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 1em;
    color: #38cc71;
  }
  .contact p {
    color: #000000;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 1em;
  }
  .contact p i {
    margin-right: 2em;
  }
  .contact h3 i {
    margin-right: 1em;
    color: #38cc71;
  }
  .contact i {
    color: #9ee6ba;
  }
  .contact-details {
    background: #e5f8ed;
    border-radius: 1em;
    padding: 1em;
    margin-bottom: 2em;
  }
  .contact label {
    font-size: 12px;
    font-weight: 700;
    display: block;
    margin: 0.5em;
  }
  .contact input,
  .contact textarea {
    font-size: 12px;
    width: 100%;
    padding: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 1em;
  }
  .contact button {
    padding: 1em 2em;
    font-size: 12px;
    font-weight: 600;
    border-radius: 5px;
    background: #38cc71;
    border: 2px solid #38cc71;
    color: #fff !important;
    transition: all 0.5s !important;
    margin-top: 1em;
    margin-bottom: 4em;
    width: 100%;
  }
  .contact button:hover {
    background: #fff;
    color: #38cc71 !important;
  }
  .contact .row {
    flex-direction: column-reverse;
  }
  .search {
    padding: 5em 0;
    background: #fff;
  }

  .search h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 1em;
  }
  .search h2 {
    font-family: "Courgette", cursive;
    font-size: 1.2em;
    margin: 0.5em 0;
    margin-top: 0.5em;
  }
  .search h3 {
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1em;
    color: #38cc71;
  }
  .search p {
    font-size: 12px;
    font-weight: 500;
    color: #707070;
    margin: 1em 0;
    line-height: 2em;
  }
  .search ul {
    font-size: 12px;
    font-weight: 500;
    color: #707070;
    margin: 1em 0;
    line-height: 2em;
  }
}
