@-webkit-keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}

.fade-in {
  -webkit-animation: fade-in 300ms ease-in-out forwards;
          animation: fade-in 300ms ease-in-out forwards;
}

@-webkit-keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}

.fade-out {
  -webkit-animation: fade-out 300ms ease-in-out forwards;
          animation: fade-out 300ms ease-in-out forwards;
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *::before, *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  min-height: 62.5rem;
  overflow-x: hidden;
}

body.noscroll {
  overflow: hidden;
}

@media (min-width: 64em) {
  body {
    font-size: 1.125rem;
  }
}

p {
  font-weight: 300;
  color: #111;
}

section {
  padding: 6.25rem;
}

@media (max-width: 63.9375em) {
  section {
    padding: 1.25rem;
  }
}

.row {
  position: relative;
  width: 63.9375em;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 87.4375em) {
  .row {
    width: 100%;
  }
}

@media (max-width: 63.9375em) {
  .row {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .row .col50 {
    width: 100% !important;
  }
}

.row .col50 {
  position: relative;
  width: 48%;
}

.imgBx {
  position: relative;
  width: 100%;
  min-height: 18.75rem;
  height: 100%;
}

@media (max-width: 63.9375em) {
  .imgBx {
    height: 18.75rem;
    margin-top: 1.25rem;
  }
}

.imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn {
  font-size: 1rem;
  color: white;
  background: #ac53ed;
  display: inline-block;
  padding: 0.625rem 1.875rem;
  margin-top: 1.25rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.125rem;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn:hover {
  letter-spacing: 0.75rem;
}

.title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 63.9375em) {
  .title {
    text-align: center;
  }
}

.titleText {
  color: #111;
  font-weight: 300;
  font-size: 2rem;
  position: relative;
  margin-bottom: 2rem;
  text-align: center;
}

.titleText:after {
  content: "";
  position: absolute;
  margin-left: -60px;
  width: 120px;
  bottom: -2px;
  height: 1px;
  left: 50%;
  border-bottom: 4px solid #ac53ed;
}

.titleText .white {
  color: white;
}

@media (max-width: 63.9375em) {
  .titleText {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
  }
}

.titleText span {
  color: #14572f;
  font-weight: 700;
  font-size: 3rem;
}

.white {
  position: relative;
  z-index: 2;
}

.white .titleText, .white p {
  color: white;
}

.opacity {
  opacity: 0;
}

video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}

div.error {
  color: #ac53ed;
  font-size: 1rem;
}

.divider {
  height: 18.75rem;
  background: url(/images/divider_image_1.jpg);
  background-size: cover;
  background-attachment: fixed;
  border-bottom: 5px solid #ac53ed;
}

.divider_secondary {
  background: url(/images/divider_image_2.jpg);
  background-size: cover;
  background-attachment: fixed;
}

@media (max-width: 63.9375em) {
  .divider {
    margin-top: 50px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.5rem 6.25rem;
  z-index: 100;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 63.9375em) {
  header {
    padding: 0.625rem 1.25rem;
  }
  header.sticky {
    padding: 0.625rem 1.25rem !important;
  }
  header.sticky .menuToggle {
    -webkit-filter: invert(1);
            filter: invert(1);
  }
}

header .inner {
  width: 63.9375em;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 87.4375em) {
  header .inner {
    width: 100%;
  }
}

header.sticky {
  background: white;
  padding: 0.625rem 6.25rem;
  -webkit-box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.5);
          box-shadow: 0 0.3125rem 1.25rem rgba(0, 0, 0, 0.5);
}

header.sticky .logo {
  color: #111;
}

header.sticky .navigation li a {
  color: #111;
}

header .logo {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
}

header .logo span {
  color: #14572f;
}

@media (max-width: 63.9375em) {
  header .logo img {
    width: 80%;
  }
}

@media (max-width: 63.9375em) {
  header .menuToggle {
    position: relative;
    width: 40px;
    height: 40px;
    background: url("/images/menu.png");
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }
  header .menuToggle.active {
    background: url("/images/close.png");
    background-size: 25px;
    background-repeat: no-repeat;
    background-position: center;
  }
}

header .navigation {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header .navigation li {
  list-style: none;
  margin-left: 1.875rem;
}

header .navigation li a {
  text-decoration: none;
  color: white;
  font-weight: 300;
}

header .navigation li a:hover {
  color: #ac53ed;
}

@media (max-width: 63.9375em) {
  header .navigation {
    display: none;
  }
  header .navigation.active {
    width: 100%;
    height: calc(100% - 5rem);
    position: fixed;
    top: 5rem;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: white;
  }
  header .navigation li {
    margin-left: 0;
  }
  header .navigation li a {
    font-size: 1.6rem;
    color: #111;
  }
}

.banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  border-bottom: 5px solid #ac53ed;
}

.banner .content {
  max-width: 900px;
  text-align: center;
}

.banner .content h2 {
  font-size: 5rem;
  color: white;
}

@media (max-width: 63.9375em) {
  .banner .content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 39.9375em) {
  .banner .content h2 {
    font-size: 2.2rem;
  }
}

.banner .content h3 {
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.435rem;
  font-size: 1.5rem;
}

@media (max-width: 63.9375em) {
  .banner .content h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 39.9375em) {
  .banner .content h3 {
    font-size: 0.875rem;
    letter-spacing: 0.3125rem;
  }
}

.banner .content p {
  font-size: 1rem;
  color: white;
  margin-top: 2rem;
  text-shadow: 0px 5px 5px black;
}

@media (max-width: 63.9375em) {
  .banner .links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 2rem;
  }
  .banner .links a {
    width: 20rem;
    margin: 1rem auto;
  }
}

.menu .inner {
  width: 63.9375em;
  margin: 0 auto;
}

@media (max-width: 87.4375em) {
  .menu .inner {
    width: 100%;
  }
}

.menu .text {
  padding-left: 0;
}

.menu .text h3 {
  font-weight: 600;
  color: #ac53ed;
}

.menu .text ul {
  list-style: none;
  margin: 1rem 2rem;
  font-weight: 300;
}

.menu .text ul li {
  line-height: 1.8;
  list-style: disc;
}

@media (max-width: 63.9375em) {
  .menu .text {
    padding: 0;
  }
  .menu .text h3 {
    margin: 1rem 0;
    text-align: center;
  }
  .menu .text p {
    text-align: center;
  }
}

.expert .inner {
  width: 63.9375em;
  margin: 0 auto;
}

@media (max-width: 87.4375em) {
  .expert .inner {
    width: 100%;
  }
}

.expert .text {
  padding-left: 0;
}

.expert .text h3 {
  font-weight: 600;
  color: #ac53ed;
}

.expert .text ul {
  list-style: none;
  margin: 1rem 2rem;
  font-weight: 300;
}

.expert .text ul li {
  line-height: 1.8;
  list-style: disc;
}

@media (max-width: 63.9375em) {
  .expert .text {
    padding: 0;
  }
  .expert .text h3 {
    margin: 1rem 0;
    text-align: center;
  }
  .expert .text p {
    text-align: center;
  }
}

.testimonials {
  position: relative;
  background-size: cover;
}

.testimonials .titleText {
  -webkit-text-stroke: 1px black;
  font-weight: 500;
}

.testimonials::after {
  content: "";
  background: url("/images/bg2.jpg");
  background-attachment: fixed;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.testimonials .inner {
  width: 63.9375em;
  margin: 0 auto;
}

@media (max-width: 87.4375em) {
  .testimonials .inner {
    width: 100%;
  }
}

.testimonials .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 2.5rem;
  z-index: 2;
  position: relative;
}

.testimonials .content .box {
  position: relative;
  width: 100%;
  margin: 1.25rem 0;
  padding: 2.5rem;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

@media (max-width: 63.9375em) {
  .testimonials .content .box {
    margin: 0.625rem;
    padding: 1.25rem;
  }
}

.testimonials .content .box .imgBx {
  position: absolute;
  width: 30%;
  height: 100%;
  right: 0;
}

.testimonials .content .box .imgBx img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 63.9375em) {
  .testimonials .content .box .imgBx {
    display: none;
  }
}

.testimonials .content .box .text {
  text-align: center;
  width: 70%;
}

@media (max-width: 63.9375em) {
  .testimonials .content .box .text {
    width: 100%;
    padding: 0 2rem;
  }
}

.testimonials .content .box .text p {
  color: #666;
  font-style: italic;
  text-align: justify;
  margin-bottom: 1rem;
}

.testimonials .content .box .text h3 {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ac53ed;
}

.testimonials .content .box .text ul {
  list-style: none;
  margin: 1rem 0 1rem 1.5rem;
  text-align: left;
}

.testimonials .content .box .text ul li {
  list-style: disc;
}

.testimonials .content .box.emp1 {
  background: url("/images/emp1.jpg");
  background-position: right;
  background-repeat: no-repeat;
  background-color: white;
}

.contact {
  background-size: cover;
}

.contact .inner {
  width: 63.9375em;
  margin: 0 auto;
}

@media (max-width: 87.4375em) {
  .contact .inner {
    width: 100%;
  }
}

.contact_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: justify;
      align-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 63.9375em) {
  .contact_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact .contactForm {
  padding: 4.6875rem 3.125rem;
  background: white;
  -webkit-box-shadow: 0 0.9375rem 3.125rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.9375rem 3.125rem rgba(0, 0, 0, 0.1);
  width: 50%;
  margin-top: 3.125rem;
}

@media (max-width: 63.9375em) {
  .contact .contactForm {
    padding: 2.1875rem 2.5rem;
    margin-top: 1.25rem;
    margin-bottom: 1.875rem;
    width: 100%;
  }
}

.contact .contactForm h3 {
  color: #111;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.contact .contactForm .inputBox {
  position: relative;
  width: 100%;
  margin-bottom: 1.25rem;
}

.contact .contactForm .inputBox input, .contact .contactForm .inputBox textarea {
  width: 100%;
  border: 1px solid #666;
  padding: 0.625rem;
  color: #111;
  outline: none;
  font-size: 1rem;
  font-weight: 300;
  resize: none;
}

.contact .contactForm .inputBox input[type="submit"], .contact .contactForm .inputBox textarea[type="submit"] {
  font-size: 1rem;
  color: white;
  background: #ac53ed;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 2px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  max-width: 6.25rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
}

.contact .contactForm .inputBox input.error, .contact .contactForm .inputBox textarea.error {
  border-bottom: 3px solid #ac53ed;
}

.contact .contactData {
  width: 50%;
  text-align: center;
}

@media (max-width: 63.9375em) {
  .contact .contactData {
    width: 100%;
  }
}

.contact .contactData h3 {
  font-weight: 600;
  color: #ac53ed;
}

.contact .contactData a {
  text-decoration: none;
  color: #111;
  font-weight: 300;
}

.contact .contactData a:hover {
  color: #ac53ed;
}

.copyrightText {
  padding: 0.5rem 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: center;
}

.copyrightText p {
  color: #333;
}

.copyrightText a {
  color: #14572f;
  font-weight: 500;
  text-decoration: none;
}
/*# sourceMappingURL=style.css.map */