/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
---------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans&family=Inter:wght@400;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
  padding: 0;
}

a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.bg {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 2;
  color: #ffffff;
}
.bg:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #111;
  left: 0;
  top: 0;
  z-index: -1;
  opacity: 0.95;
}
.bg.bg-cta {
  background-image: url("../../assets/img/cta-bg.png");
}
.bg.bg-cta .section-title__sub {
  background-color: #2fa78f;
  color: #ffffff;
  padding: 5px 20px;
  border-radius: 7px;
  font-size: 16px;
}

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

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

.btn {
  display: inline-block;
  text-transform: capitalize;
  font-size: 18px;
  border-radius: 7px;
  color: #fff;
  position: relative;
  z-index: 2;
  overflow: hidden;
  font-weight: 700;
  font-family: "DM Sans", sans-serif;
}
.btn:hover:before {
  top: 0;
}
.btn:before {
  position: absolute;
  content: "";
  background-color: #eb5c5c;
  width: 100%;
  height: 100%;
  left: 0;
  top: -100%;
  transition: 0.3s;
  z-index: -1;
}
.btn.btn-primary {
  background-color: #2fa78f;
  padding: 15px 30px;
}
.btn.btn-secondary {
  border: 2px solid #2fa78f;
  padding: 13px 30px;
}
.btn.btn-secondary:hover {
  border-color: #eb5c5c;
}

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

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

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

.mb-10 {
  margin-bottom: 10px;
}

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

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

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

.mb-20 {
  margin-bottom: 20px;
}

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

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

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

.mb-30 {
  margin-bottom: 30px;
}

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

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

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

.mb-40 {
  margin-bottom: 40px;
}

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

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

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

.mb-50 {
  margin-bottom: 50px;
}

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

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

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

.mb-60 {
  margin-bottom: 60px;
}

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

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

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

.mb-70 {
  margin-bottom: 70px;
}

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

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

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

.mb-80 {
  margin-bottom: 80px;
}

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

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

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

.mb-90 {
  margin-bottom: 90px;
}

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

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

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

.mb-100 {
  margin-bottom: 100px;
}

.bg-white {
  background-color: #ffffff;
}

.border-top {
  border-top: 3px solid #2fa78f;
}

:root {
  --reflex-columns: 12;
  --reflex-grid-spacing: 15px;
  --reflex-xs: 576px;
  --reflex-sm: 768px;
  --reflex-md: 992px;
  --reflex-lg: 1198px;
  --reflex-xlg: 1470px;
  --reflex-xxs-max: 575px;
  --reflex-xs-max: 767px;
  --reflex-sm-max: 991px;
  --reflex-md-max: 1197px;
  --reflex-lg-max: 1469px;
}

.container,
.container-full {
  box-sizing: border-box;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 30px;
  padding-left: 30px;
}
.container .grid,
.container-full .grid {
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}
@media (min-width: 1198px) {
  .container {
    max-width: 1198px;
  }
}
@media (min-width: 1470px) {
  .container {
    max-width: 1198px;
  }
}

.grid {
  box-sizing: border-box;
  display: block;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 auto;
  position: relative;
  letter-spacing: -0.31em;
  *letter-spacing: normal;
  word-spacing: -0.43em;
  list-style-type: none;
}
.grid::before, .grid::after {
  box-sizing: border-box;
  letter-spacing: normal;
  word-spacing: normal;
  white-space: normal;
}

[class*=col-] {
  box-sizing: border-box;
  letter-spacing: normal;
  word-spacing: normal;
  white-space: normal;
  position: relative;
  width: 100%;
  vertical-align: top;
  padding: 15px;
  display: inline-block;
  *display: inline;
  zoom: 1;
}
[class*=col-]::before, [class*=col-]::after {
  box-sizing: border-box;
  letter-spacing: normal;
  word-spacing: normal;
  white-space: normal;
}
[class*=col-] .grid {
  flex: 1 1 auto;
  margin: -15px;
}

.col-12 {
  width: 100%;
  *width: 99.9%;
}

.col-11 {
  width: 91.6666666667%;
  *width: 91.5666666667%;
}

.col-10 {
  width: 83.3333333333%;
  *width: 83.2333333333%;
}

.col-9 {
  width: 75%;
  *width: 74.9%;
}

.col-8 {
  width: 66.6666666667%;
  *width: 66.5666666667%;
}

.col-7 {
  width: 58.3333333333%;
  *width: 58.2333333333%;
}

.col-6 {
  width: 50%;
  *width: 49.9%;
}

.col-5 {
  width: 41.6666666667%;
  *width: 41.5666666667%;
}

.col-4 {
  width: 33.3333333333%;
  *width: 33.2333333333%;
}

.col-3 {
  width: 25%;
  *width: 24.9%;
}

.col-2 {
  width: 16.6666666667%;
  *width: 16.5666666667%;
}

.col-1 {
  width: 8.3333333333%;
  *width: 8.2333333333%;
}

@media (min-width: 576px) {
  .col-xs-12 {
    width: 100%;
    *width: 99.9%;
  }
  .col-xs-11 {
    width: 91.6666666667%;
    *width: 91.5666666667%;
  }
  .col-xs-10 {
    width: 83.3333333333%;
    *width: 83.2333333333%;
  }
  .col-xs-9 {
    width: 75%;
    *width: 74.9%;
  }
  .col-xs-8 {
    width: 66.6666666667%;
    *width: 66.5666666667%;
  }
  .col-xs-7 {
    width: 58.3333333333%;
    *width: 58.2333333333%;
  }
  .col-xs-6 {
    width: 50%;
    *width: 49.9%;
  }
  .col-xs-5 {
    width: 41.6666666667%;
    *width: 41.5666666667%;
  }
  .col-xs-4 {
    width: 33.3333333333%;
    *width: 33.2333333333%;
  }
  .col-xs-3 {
    width: 25%;
    *width: 24.9%;
  }
  .col-xs-2 {
    width: 16.6666666667%;
    *width: 16.5666666667%;
  }
  .col-xs-1 {
    width: 8.3333333333%;
    *width: 8.2333333333%;
  }
}
@media (min-width: 768px) {
  .col-sm-12 {
    width: 100%;
    *width: 99.9%;
  }
  .col-sm-11 {
    width: 91.6666666667%;
    *width: 91.5666666667%;
  }
  .col-sm-10 {
    width: 83.3333333333%;
    *width: 83.2333333333%;
  }
  .col-sm-9 {
    width: 75%;
    *width: 74.9%;
  }
  .col-sm-8 {
    width: 66.6666666667%;
    *width: 66.5666666667%;
  }
  .col-sm-7 {
    width: 58.3333333333%;
    *width: 58.2333333333%;
  }
  .col-sm-6 {
    width: 50%;
    *width: 49.9%;
  }
  .col-sm-5 {
    width: 41.6666666667%;
    *width: 41.5666666667%;
  }
  .col-sm-4 {
    width: 33.3333333333%;
    *width: 33.2333333333%;
  }
  .col-sm-3 {
    width: 25%;
    *width: 24.9%;
  }
  .col-sm-2 {
    width: 16.6666666667%;
    *width: 16.5666666667%;
  }
  .col-sm-1 {
    width: 8.3333333333%;
    *width: 8.2333333333%;
  }
}
@media (min-width: 992px) {
  .col-md-12 {
    width: 100%;
    *width: 99.9%;
  }
  .col-md-11 {
    width: 91.6666666667%;
    *width: 91.5666666667%;
  }
  .col-md-10 {
    width: 83.3333333333%;
    *width: 83.2333333333%;
  }
  .col-md-9 {
    width: 75%;
    *width: 74.9%;
  }
  .col-md-8 {
    width: 66.6666666667%;
    *width: 66.5666666667%;
  }
  .col-md-7 {
    width: 58.3333333333%;
    *width: 58.2333333333%;
  }
  .col-md-6 {
    width: 50%;
    *width: 49.9%;
  }
  .col-md-5 {
    width: 41.6666666667%;
    *width: 41.5666666667%;
  }
  .col-md-4 {
    width: 33.3333333333%;
    *width: 33.2333333333%;
  }
  .col-md-3 {
    width: 25%;
    *width: 24.9%;
  }
  .col-md-2 {
    width: 16.6666666667%;
    *width: 16.5666666667%;
  }
  .col-md-1 {
    width: 8.3333333333%;
    *width: 8.2333333333%;
  }
}
@media (min-width: 1198px) {
  .col-lg-12 {
    width: 100%;
    *width: 99.9%;
  }
  .col-lg-11 {
    width: 91.6666666667%;
    *width: 91.5666666667%;
  }
  .col-lg-10 {
    width: 83.3333333333%;
    *width: 83.2333333333%;
  }
  .col-lg-9 {
    width: 75%;
    *width: 74.9%;
  }
  .col-lg-8 {
    width: 66.6666666667%;
    *width: 66.5666666667%;
  }
  .col-lg-7 {
    width: 58.3333333333%;
    *width: 58.2333333333%;
  }
  .col-lg-6 {
    width: 50%;
    *width: 49.9%;
  }
  .col-lg-5 {
    width: 41.6666666667%;
    *width: 41.5666666667%;
  }
  .col-lg-4 {
    width: 33.3333333333%;
    *width: 33.2333333333%;
  }
  .col-lg-3 {
    width: 25%;
    *width: 24.9%;
  }
  .col-lg-2 {
    width: 16.6666666667%;
    *width: 16.5666666667%;
  }
  .col-lg-1 {
    width: 8.3333333333%;
    *width: 8.2333333333%;
  }
}
@media (min-width: 1470px) {
  .col-xlg-12 {
    width: 100%;
    *width: 99.9%;
  }
  .col-xlg-11 {
    width: 91.6666666667%;
    *width: 91.5666666667%;
  }
  .col-xlg-10 {
    width: 83.3333333333%;
    *width: 83.2333333333%;
  }
  .col-xlg-9 {
    width: 75%;
    *width: 74.9%;
  }
  .col-xlg-8 {
    width: 66.6666666667%;
    *width: 66.5666666667%;
  }
  .col-xlg-7 {
    width: 58.3333333333%;
    *width: 58.2333333333%;
  }
  .col-xlg-6 {
    width: 50%;
    *width: 49.9%;
  }
  .col-xlg-5 {
    width: 41.6666666667%;
    *width: 41.5666666667%;
  }
  .col-xlg-4 {
    width: 33.3333333333%;
    *width: 33.2333333333%;
  }
  .col-xlg-3 {
    width: 25%;
    *width: 24.9%;
  }
  .col-xlg-2 {
    width: 16.6666666667%;
    *width: 16.5666666667%;
  }
  .col-xlg-1 {
    width: 8.3333333333%;
    *width: 8.2333333333%;
  }
}
.col-auto {
  flex: 1 0 0px;
  width: auto;
}

@media (min-width: 576px) {
  .col-xs-auto {
    flex: 1 0 0px;
    width: auto;
  }
}
@media (min-width: 768px) {
  .col-sm-auto {
    flex: 1 0 0px;
    width: auto;
  }
}
@media (min-width: 992px) {
  .col-md-auto {
    flex: 1 0 0px;
    width: auto;
  }
}
@media (min-width: 1198px) {
  .col-lg-auto {
    flex: 1 0 0px;
    width: auto;
  }
}
@media (min-width: 1470px) {
  .col-xlg-auto {
    flex: 1 0 0px;
    width: auto;
  }
}
.order-12 {
  order: 12;
}

.order-11 {
  order: 11;
}

.order-10 {
  order: 10;
}

.order-9 {
  order: 9;
}

.order-8 {
  order: 8;
}

.order-7 {
  order: 7;
}

.order-6 {
  order: 6;
}

.order-5 {
  order: 5;
}

.order-4 {
  order: 4;
}

.order-3 {
  order: 3;
}

.order-2 {
  order: 2;
}

.order-1 {
  order: 1;
}

.order-0 {
  order: 0;
}

@media only screen and (min-width: 576px) {
  .order-xs-12 {
    order: 12;
  }
  .order-xs-11 {
    order: 11;
  }
  .order-xs-10 {
    order: 10;
  }
  .order-xs-9 {
    order: 9;
  }
  .order-xs-8 {
    order: 8;
  }
  .order-xs-7 {
    order: 7;
  }
  .order-xs-6 {
    order: 6;
  }
  .order-xs-5 {
    order: 5;
  }
  .order-xs-4 {
    order: 4;
  }
  .order-xs-3 {
    order: 3;
  }
  .order-xs-2 {
    order: 2;
  }
  .order-xs-1 {
    order: 1;
  }
  .order-xs-0 {
    order: 0;
  }
}
@media only screen and (min-width: 768px) {
  .order-sm-12 {
    order: 12;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-0 {
    order: 0;
  }
}
@media only screen and (min-width: 992px) {
  .order-md-12 {
    order: 12;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-0 {
    order: 0;
  }
}
@media only screen and (min-width: 1198px) {
  .order-lg-12 {
    order: 12;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-0 {
    order: 0;
  }
}
@media only screen and (min-width: 1470px) {
  .order-xlg-12 {
    order: 12;
  }
  .order-xlg-11 {
    order: 11;
  }
  .order-xlg-10 {
    order: 10;
  }
  .order-xlg-9 {
    order: 9;
  }
  .order-xlg-8 {
    order: 8;
  }
  .order-xlg-7 {
    order: 7;
  }
  .order-xlg-6 {
    order: 6;
  }
  .order-xlg-5 {
    order: 5;
  }
  .order-xlg-4 {
    order: 4;
  }
  .order-xlg-3 {
    order: 3;
  }
  .order-xlg-2 {
    order: 2;
  }
  .order-xlg-1 {
    order: 1;
  }
  .order-xlg-0 {
    order: 0;
  }
}
.offset-11 {
  margin-left: 91.6666666667%;
  *margin-left: 91.5666666667%;
}

.offset-10 {
  margin-left: 83.3333333333%;
  *margin-left: 83.2333333333%;
}

.offset-9 {
  margin-left: 75%;
  *margin-left: 74.9%;
}

.offset-8 {
  margin-left: 66.6666666667%;
  *margin-left: 66.5666666667%;
}

.offset-7 {
  margin-left: 58.3333333333%;
  *margin-left: 58.2333333333%;
}

.offset-6 {
  margin-left: 50%;
  *margin-left: 49.9%;
}

.offset-5 {
  margin-left: 41.6666666667%;
  *margin-left: 41.5666666667%;
}

.offset-4 {
  margin-left: 33.3333333333%;
  *margin-left: 33.2333333333%;
}

.offset-3 {
  margin-left: 25%;
  *margin-left: 24.9%;
}

.offset-2 {
  margin-left: 16.6666666667%;
  *margin-left: 16.5666666667%;
}

.offset-1 {
  margin-left: 8.3333333333%;
  *margin-left: 8.2333333333%;
}

@media only screen and (min-width: 576px) {
  .offset-xs-11 {
    margin-left: 91.6666666667%;
    *margin-left: 91.5666666667%;
  }
  .offset-xs-10 {
    margin-left: 83.3333333333%;
    *margin-left: 83.2333333333%;
  }
  .offset-xs-9 {
    margin-left: 75%;
    *margin-left: 74.9%;
  }
  .offset-xs-8 {
    margin-left: 66.6666666667%;
    *margin-left: 66.5666666667%;
  }
  .offset-xs-7 {
    margin-left: 58.3333333333%;
    *margin-left: 58.2333333333%;
  }
  .offset-xs-6 {
    margin-left: 50%;
    *margin-left: 49.9%;
  }
  .offset-xs-5 {
    margin-left: 41.6666666667%;
    *margin-left: 41.5666666667%;
  }
  .offset-xs-4 {
    margin-left: 33.3333333333%;
    *margin-left: 33.2333333333%;
  }
  .offset-xs-3 {
    margin-left: 25%;
    *margin-left: 24.9%;
  }
  .offset-xs-2 {
    margin-left: 16.6666666667%;
    *margin-left: 16.5666666667%;
  }
  .offset-xs-1 {
    margin-left: 8.3333333333%;
    *margin-left: 8.2333333333%;
  }
  .offset-xs-0 {
    margin-left: 0;
    *margin-left: -0.1%;
  }
}
@media only screen and (min-width: 768px) {
  .offset-sm-11 {
    margin-left: 91.6666666667%;
    *margin-left: 91.5666666667%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
    *margin-left: 83.2333333333%;
  }
  .offset-sm-9 {
    margin-left: 75%;
    *margin-left: 74.9%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
    *margin-left: 66.5666666667%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
    *margin-left: 58.2333333333%;
  }
  .offset-sm-6 {
    margin-left: 50%;
    *margin-left: 49.9%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
    *margin-left: 41.5666666667%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
    *margin-left: 33.2333333333%;
  }
  .offset-sm-3 {
    margin-left: 25%;
    *margin-left: 24.9%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
    *margin-left: 16.5666666667%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
    *margin-left: 8.2333333333%;
  }
  .offset-sm-0 {
    margin-left: 0;
    *margin-left: -0.1%;
  }
}
@media only screen and (min-width: 992px) {
  .offset-md-11 {
    margin-left: 91.6666666667%;
    *margin-left: 91.5666666667%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
    *margin-left: 83.2333333333%;
  }
  .offset-md-9 {
    margin-left: 75%;
    *margin-left: 74.9%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
    *margin-left: 66.5666666667%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
    *margin-left: 58.2333333333%;
  }
  .offset-md-6 {
    margin-left: 50%;
    *margin-left: 49.9%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
    *margin-left: 41.5666666667%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
    *margin-left: 33.2333333333%;
  }
  .offset-md-3 {
    margin-left: 25%;
    *margin-left: 24.9%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
    *margin-left: 16.5666666667%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
    *margin-left: 8.2333333333%;
  }
  .offset-md-0 {
    margin-left: 0;
    *margin-left: -0.1%;
  }
}
@media only screen and (min-width: 1198px) {
  .offset-lg-11 {
    margin-left: 91.6666666667%;
    *margin-left: 91.5666666667%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
    *margin-left: 83.2333333333%;
  }
  .offset-lg-9 {
    margin-left: 75%;
    *margin-left: 74.9%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
    *margin-left: 66.5666666667%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
    *margin-left: 58.2333333333%;
  }
  .offset-lg-6 {
    margin-left: 50%;
    *margin-left: 49.9%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
    *margin-left: 41.5666666667%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
    *margin-left: 33.2333333333%;
  }
  .offset-lg-3 {
    margin-left: 25%;
    *margin-left: 24.9%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
    *margin-left: 16.5666666667%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
    *margin-left: 8.2333333333%;
  }
  .offset-lg-0 {
    margin-left: 0;
    *margin-left: -0.1%;
  }
}
@media only screen and (min-width: 1470px) {
  .offset-xlg-11 {
    margin-left: 91.6666666667%;
    *margin-left: 91.5666666667%;
  }
  .offset-xlg-10 {
    margin-left: 83.3333333333%;
    *margin-left: 83.2333333333%;
  }
  .offset-xlg-9 {
    margin-left: 75%;
    *margin-left: 74.9%;
  }
  .offset-xlg-8 {
    margin-left: 66.6666666667%;
    *margin-left: 66.5666666667%;
  }
  .offset-xlg-7 {
    margin-left: 58.3333333333%;
    *margin-left: 58.2333333333%;
  }
  .offset-xlg-6 {
    margin-left: 50%;
    *margin-left: 49.9%;
  }
  .offset-xlg-5 {
    margin-left: 41.6666666667%;
    *margin-left: 41.5666666667%;
  }
  .offset-xlg-4 {
    margin-left: 33.3333333333%;
    *margin-left: 33.2333333333%;
  }
  .offset-xlg-3 {
    margin-left: 25%;
    *margin-left: 24.9%;
  }
  .offset-xlg-2 {
    margin-left: 16.6666666667%;
    *margin-left: 16.5666666667%;
  }
  .offset-xlg-1 {
    margin-left: 8.3333333333%;
    *margin-left: 8.2333333333%;
  }
  .offset-xlg-0 {
    margin-left: 0;
    *margin-left: -0.1%;
  }
}
.wrap {
  flex-wrap: wrap;
}

.no-wrap {
  flex-wrap: nowrap;
}
.no-wrap [class*=col-] {
  flex-shrink: 1;
}

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

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

.direction-row-reverse {
  flex-direction: row-reverse;
}

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

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

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}
.align-end [class*=col-] {
  vertical-align: bottom;
}

.align-center {
  align-items: center;
}
.align-center [class*=col-] {
  vertical-align: middle;
}

.align-baseline {
  align-items: baseline;
}

.align-content-start {
  align-content: flex-start;
}

.align-content-end {
  align-content: flex-end;
}
.align-content-end [class*=col-] {
  vertical-align: bottom;
}

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

.align-content-space-between {
  align-content: space-between;
}

.align-content-space-around {
  align-content: space-around;
}

.align-self-stretch {
  align-self: stretch;
}

.align-self-start {
  align-self: flex-start;
}

.align-self-end {
  align-self: flex-end;
  vertical-align: bottom;
}

.align-self-center {
  align-self: center;
  vertical-align: middle;
}

.align-self-baseline {
  align-self: baseline;
  vertical-align: baseline;
}

.justify-start {
  justify-content: flex-start;
}
.justify-start.grid {
  text-align: left;
}

.justify-end {
  justify-content: flex-end;
}
.justify-end.grid {
  text-align: right;
  -moz-text-align-last: right;
  text-align-last: right;
}
.justify-end.grid [class*=col-] {
  text-align: left;
  text-align: start;
  -moz-text-align-last: left;
  -moz-text-align-last: start;
  text-align-last: left;
  text-align-last: start;
}

.justify-center {
  justify-content: center;
}
.justify-center.grid {
  text-align: center;
  -moz-text-align-last: center;
  text-align-last: center;
}
.justify-center.grid [class*=col-] {
  text-align: left;
  text-align: start;
  -moz-text-align-last: left;
  -moz-text-align-last: start;
  text-align-last: left;
  text-align-last: start;
}

.justify-space-between {
  justify-content: space-between;
}
.justify-space-between.grid {
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
}
.justify-space-between.grid [class*=col-] {
  text-align: left;
  text-align: start;
  -moz-text-align-last: left;
  -moz-text-align-last: start;
  text-align-last: left;
  text-align-last: start;
}

.justify-space-around {
  justify-content: space-around;
}
.justify-space-around.grid {
  text-align: justify;
  -moz-text-align-last: justify;
  text-align-last: justify;
}
.justify-space-around.grid [class*=col-] {
  text-align: left;
  text-align: start;
  -moz-text-align-last: left;
  -moz-text-align-last: start;
  text-align-last: left;
  text-align-last: start;
}

.grid-bleed [class*=col-] {
  padding: 0;
}

.col-grid {
  display: flex;
  flex-direction: column;
}
.col-grid.direction-row {
  flex-direction: row;
}

.col-bleed {
  padding: 0;
}

.col-bleed-x {
  padding: 15px 0;
}

.col-bleed-y {
  padding: 0 15px;
}

.flex-img {
  display: block;
  flex: 0 0 auto;
  max-width: 100%;
  height: auto;
  width: 100%;
  *width: auto;
}

.flex-footer {
  width: 100%;
  margin-top: auto;
  margin-bottom: 0;
}
.flex-footer > :last-child {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .hidden-xxs {
    display: none;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .hidden-xs {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1197px) {
  .hidden-md {
    display: none;
  }
}

@media (min-width: 1198px) and (max-width: 1469px) {
  .hidden-lg {
    display: none;
  }
}

@media (min-width: 1470px) {
  .hidden-xlg {
    display: none;
  }
}

body {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  color: #3c4049;
  font-size: 18px;
  line-height: 28px;
  background-color: #fef7f4;
}

a {
  color: #3c4049;
}

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

.header-top {
  background-color: #111;
  padding-top: 50px;
}
@media (min-width: 768px) {
  .header-top {
    padding-top: 0;
  }
}
.header-top__left {
  text-align: center;
}
@media (min-width: 768px) {
  .header-top__left {
    text-align: left;
  }
}
.header-top__left a {
  color: #fff;
  margin-right: 15px;
  font-size: 15px;
}
.header-top__social {
  text-align: center;
  margin-top: -20px;
}
@media (min-width: 768px) {
  .header-top__social {
    text-align: right;
    margin-top: 0;
  }
}
.header-top__social a {
  color: #fff;
  margin-left: 15px;
  display: inline-block;
  font-size: 14px;
}
.header-top__social a:hover {
  color: #2fa78f;
}

.header {
  position: absolute;
  z-index: 999;
  padding: 5px;
  top: 0;
  left: -20px;
}
@media (min-width: 768px) {
  .header {
    position: static;
  }
}
.header.sticky {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  background-color: #ffffff;
  transition: 0.3s;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  display: none;
}
@media (min-width: 768px) {
  .header.sticky {
    top: 0;
    display: block;
  }
}
.header__logo {
  text-transform: uppercase;
  font-size: 30px;
  font-weight: 700;
  color: #333;
}
@media (min-width: 768px) {
  .header__logo {
    color: #fff;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: flex;
    justify-content: flex-end;
  }
  .header__nav li {
    position: relative;
  }
  .header__nav li > a {
    display: block;
    margin-left: 25px;
    text-transform: capitalize;
    font-weight: 500;
    font-size: 20px;
    position: relative;
  }
  .header__nav li > a:before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    background-color: #2fa78f;
    bottom: 25px;
    transition: 0.3s;
  }
  .header__nav li > a:hover {
    color: #2fa78f;
  }
  .header__nav li > a:hover:before {
    width: 25px;
  }
  .header__nav li ul {
    position: absolute;
    background-color: #2fa78f;
    z-index: 9;
    width: 300px;
    padding: 20px;
    left: 15px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .header__nav li ul li {
    padding: 10px 0;
    color: #fff;
  }
  .header__nav li ul li a {
    color: #fff;
    padding: 0;
    font-size: 16px;
    text-transform: capitalize;
  }
  .header__nav li ul li a:hover {
    padding-left: 5px;
    color: #fff;
  }
  .header__nav li:hover ul {
    opacity: 1;
    visibility: visible;
  }
  .header__nav li.has-child {
    position: relative;
  }
  .header__nav li.has-child:before {
    content: "\f107" "";
    font-family: "Font Awesome 5 Free";
    font-weight: 700;
    position: absolute;
    right: 0;
    top: 35px;
    font-size: 12px;
  }
  .header__nav li.current_page_item a {
    color: #2fa78f;
  }
}
.header__right a {
  padding: 10px 35px !important;
  text-transform: uppercase;
  font-weight: 600;
}

.slicknav_menu {
  display: block;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: #2fa78f;
}
@media (min-width: 768px) {
  .slicknav_menu {
    display: none;
  }
}

.header__logo {
  display: block;
  max-width: 120px;
  text-align: left;
}

.bannar {
  color: #fff;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .bannar {
    padding: 90px 0 180px;
  }
}
.bannar__subtitle {
  position: relative;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 500;
  padding-left: 50px;
}
@media (min-width: 768px) {
  .bannar__subtitle {
    font-size: 20px;
  }
}
.bannar__subtitle:before {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: #2fa78f;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.bannar__title {
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 15px;
}
@media (min-width: 768px) {
  .bannar__title {
    font-size: 60px;
    line-height: 80px;
    margin-top: 0;
  }
}
.bannar__desc {
  margin: 20px 0;
  font-size: 26px;
  line-height: 40px;
}
.bannar__btn {
  margin-top: 30px;
  margin-right: 15px;
}
.bannar__form {
  background-color: #fff;
  color: #333;
  padding: 25px;
}
.bannar__input {
  position: relative;
  margin-bottom: 20px;
}
.bannar__input input, .bannar__input select, .bannar__input textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding: 10px;
  background-color: transparent;
  font-size: 15px;
  font-weight: 500;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "Lexend";
  color: #333;
}
.bannar__input input::-moz-placeholder, .bannar__input select::-moz-placeholder, .bannar__input textarea::-moz-placeholder {
  color: #333;
  opacity: 1;
}
.bannar__input input::placeholder, .bannar__input select::placeholder, .bannar__input textarea::placeholder {
  color: #333;
  opacity: 1;
}
.bannar__input i {
  position: absolute;
  right: 10px;
  top: 12PX;
  font-size: 15px;
  color: #2fa78f;
}
.bannar__form-title {
  text-align: center;
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 15px;
}
.bannar textarea {
  height: 80px;
  resize: none;
}
.bannar br {
  display: none;
}
.bannar__input-btn {
  background-color: #2fa78f;
  width: 100%;
  border: 0;
  padding: 10px;
  cursor: pointer;
  text-transform: capitalize;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}
.bannar__input-btn:hover {
  background-color: #333;
}

.about__subtitle {
  font-size: 20px;
  text-transform: capitalize;
  font-weight: 500;
  margin-top: 60px;
  margin-bottom: 10px;
  display: block;
}
.about__title {
  font-size: 35px;
  line-height: 45px;
  text-transform: capitalize;
}
.about__subtitle {
  color: #2fa78f;
}
.about__desc {
  margin: 20px 0;
}
.about__item {
  display: block;
  margin-bottom: 10px;
}
.about__item i {
  color: #2fa78f;
}
.about__btn {
  margin-top: 15px;
}
.about__top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
  margin-top: 0;
}
@media (min-width: 768px) {
  .about__top {
    flex-direction: row;
    margin-top: -100px;
  }
}
.about__text {
  position: absolute;
  background-color: #2fa78f;
  color: #fff;
  border-radius: 50%;
  line-height: 40px;
  text-align: center;
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 50px;
  border: 5px solid #ffffff;
  width: 200px;
  height: 200px;
  left: -10px;
  bottom: -25px;
}
@media (min-width: 768px) {
  .about__text {
    width: 250px;
    height: 250px;
    left: -50px;
    bottom: -100px;
    font-size: 60px;
    line-height: 60px;
    padding-top: 65px;
  }
}

.about-bottom {
  border-top: 1px solid #ddd;
  padding: 50px 0;
}
.about-bottom__single {
  text-align: center;
  box-shadow: 0px 0px 50px 11px rgba(95, 138, 236, 0.05);
  padding: 20px 15px;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}
.about-bottom__single i {
  border: 1px solid #2fa78f;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 18px;
  color: #2fa78f;
}
.about-bottom__single:hover {
  border-color: #2fa78f;
}
.about-bottom__title {
  text-transform: capitalize;
  font-size: 26px;
  font-weight: 500;
  margin: 10px 0;
}

.single_about {
  box-shadow: 10px 10px 120px 0 rgba(73, 74, 84, 0.1);
  background-color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  border-left: 3px solid #2fa78f;
}

.single_about i {
  color: #2fa78f;
  font-size: 25px;
  margin-right: 20px;
}

.single_about h4 {
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 600;
}

.single_about p {
  font-size: 16px;
  line-height: 24px;
  margin-top: 10px;
}

.about__right-img {
  position: relative;
  margin-left: 40px;
}

.about__right {
  position: relative;
}

.about__right span {
  background-color: #2fa78f;
  color: #fff;
  text-align: center;
  font-size: 50px;
  padding: 20px 30px;
  font-weight: 700;
  display: inline-block;
  position: absolute;
  z-index: 9;
  left: 0;
  top: -80px;
  line-height: 55px;
  border-radius: 25px;
}

.about__right-img img:nth-child(2) {
  position: absolute;
  right: -100px;
  bottom: -130px;
  display: none;
}
@media (min-width: 768px) {
  .about__right-img img:nth-child(2) {
    display: block;
  }
}

.about__right-img img {
  border: 3px solid #2fa78f;
  border-radius: 12px;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title__sub {
  font-size: 20px;
  line-height: 30px;
  color: #eb5c5c;
  font-weight: 500;
}
.section-title__title {
  margin: 20px 0 25px;
  font-size: 35px;
  line-height: 46px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .section-title__title {
    font-size: 35px;
    line-height: 46px;
  }
}
.section-title__desc {
  font-size: 20px;
  line-height: 30px;
}

.services {
  background-color: #fef7f4;
}
.services__single {
  box-shadow: 0px 0px 50px 11px rgba(95, 138, 236, 0.05);
  padding: 25px;
  border: 1px solid #f1f1f1;
  position: relative;
  transition: 0.3s;
  background-color: #ffffff;
}
.services__single:hover {
  border-color: #2fa78f;
}
.services__single:hover i {
  border-radius: 50%;
}
.services__number {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 50px;
  color: #84799f;
  transition: 0.3s;
  font-weight: 600;
  opacity: 0.3;
}
.services__icon {
  color: #2fa78f;
  text-align: center;
  font-size: 25px;
  background-color: #ccf4ef;
  width: 70px;
  height: 70px;
  line-height: 70px;
  transition: 0.3s;
}
.services__title {
  font-size: 24px;
  text-transform: capitalize;
  margin-top: 25px;
  margin-bottom: 20px;
  font-weight: 600;
  color: #3c4049;
}
.services__desc {
  font-size: 18px;
  line-height: 30px;
}

.counter {
  padding: 60px 0;
  background-color: #333;
  color: #ffffff;
  background-image: url("../assets/img/cta-bg.png");
}

.counter__single {
  text-align: center;
  background-color: #eb5c5c;
  padding: 40px 40px 30px;
  padding: 20px 20px 25px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .counter__single {
    padding: 40px 40px 30px;
  }
}

.counter__single h4 {
  font-size: 25px;
}

.counter__number {
  font-size: 25px;
}
@media (min-width: 768px) {
  .counter__number {
    font-size: 50px;
  }
}

.counter__title {
  font-size: 18px;
  margin-top: 0;
}
@media (min-width: 768px) {
  .counter__title {
    font-size: 22px;
    margin-top: 15px;
  }
}

.counter h4 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .counter h4 {
    margin-bottom: 15px;
  }
}

.team {
  background-position: center;
  background-size: cover;
  background-color: #fef7f4;
}
.team__single {
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 10px 10px 120px 0 rgba(73, 74, 84, 0.1);
}
.team__img {
  padding-top: 100%;
  background-size: cover;
  background-position: center;
}
.team__content {
  text-align: center;
  padding: 10px 16px 24px;
}
.team__desg {
  display: block;
  font-size: 14px;
  line-height: 14px;
  font-weight: 400;
  margin-top: 5px;
}
.team__title {
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
}

.testimonial {
  background-color: #fef7f4;
}
.testimonial__slider {
  background-color: #fff;
  padding: 24px 24px 110px;
  border-radius: 16px;
  box-shadow: 0px 0px 50px 11px rgba(95, 138, 236, 0.05);
  max-width: 1000px;
  margin: 0 auto;
}
.testimonial__slider .fas.fa-angle-left.slick-arrow {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2fa78f;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  display: none !important;
}
@media (min-width: 768px) {
  .testimonial__slider .fas.fa-angle-left.slick-arrow {
    display: block !important;
  }
}
.testimonial__slider .fas.fa-angle-left.slick-arrow:hover {
  background-color: #eb5c5c;
}
.testimonial__slider .fas.fa-angle-right.slick-arrow {
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2fa78f;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
  display: none !important;
}
@media (min-width: 768px) {
  .testimonial__slider .fas.fa-angle-right.slick-arrow {
    display: block !important;
  }
}
.testimonial__slider .fas.fa-angle-right.slick-arrow:hover {
  background-color: #eb5c5c;
}
.testimonial__slider .slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 40px;
}
.testimonial__slider .slick-dots li {
  display: inline-block;
}
.testimonial__slider .slick-dots li.slick-active button {
  background-color: #2fa78f;
}
.testimonial__slider .slick-dots li button {
  background-color: #eb5c5c;
  text-indent: -99999px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 0;
  margin: 0 5px;
  cursor: pointer;
}
.testimonial__single {
  text-align: center;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .testimonial__single {
    padding: 0 60px;
  }
}
.testimonial__single i {
  color: #eb5c5c;
  font-size: 40px;
}
.testimonial__single p {
  font-size: 20px;
  margin: 20px 0;
}
.testimonial__single-info h4 span {
  display: block;
  font-size: 15px;
  font-weight: 400;
}

.process__list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 0;
  flex-direction: column;
}
@media (min-width: 768px) {
  .process__list {
    flex-direction: row;
    margin-top: 60px;
  }
}
.process__single {
  position: relative;
  text-align: center;
}
.process__single:after {
  position: absolute;
  content: "";
  background-image: url("../img/process/arrow-1.png");
  width: 100%;
  height: 60px;
  right: -120px;
  top: -60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150px 30px;
  display: none;
}
@media (min-width: 768px) {
  .process__single:after {
    display: block;
  }
}
.process__img {
  max-width: 80px;
  background-color: #ccf4ef;
  padding: 15px;
  border-radius: 7px;
}
.process__number {
  position: absolute;
  right: -50px;
  display: block;
  top: -65px;
  background-color: #ec6464;
  width: 40px;
  height: 40px;
  z-index: 2;
  color: #fff;
  line-height: 40px;
  border-radius: 10px;
  display: none;
}
@media (min-width: 768px) {
  .process__number {
    display: block;
  }
}
.process__title {
  margin: 15px 0;
}

.process__single:last-child .process__number, .process__single:last-child:after {
  display: none;
}

.contact {
  background-color: #fef7f4;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.contact__form {
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0px 0px 50px 11px rgba(95, 138, 236, 0.05);
}
.contact__form br {
  display: none;
}

.contact__box {
  text-align: center;
  margin-bottom: 50px;
  box-shadow: 0px 0px 50px 11px rgba(95, 138, 236, 0.05);
  background-color: #fff;
  padding: 25px;
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .contact__box {
    flex-basis: 32%;
  }
}

.contact__box i {
  color: #eb5c5c;
  border: 2px solid #eb5c5c;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  border-radius: 50%;
}

.contact__box p {
  font-size: 18px;
}

.contact__iframe {
  width: 100%;
  border: 1px solid #ddd;
  height: 550px;
}

.contact__box h4 {
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 600;
  margin: 10px 0;
}

.contact__label {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}

.contact__input, .contact__message {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 3px;
  font-family: "DM Sans";
}

.contact__message {
  height: 160px;
  resize: none;
}

.contact__input[type=submit] {
  background-color: #2fa78f;
  border: 0;
  width: 300px;
  margin: 0 auto;
  display: block;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
.contact__input[type=submit]:hover {
  background-color: #eb5c5c;
}

.cta {
  position: relative;
  z-index: 2;
  padding: 70px 0;
  color: #fff;
  background-color: #111;
}
.cta h4 {
  font-size: 50px;
  text-transform: capitalize;
  line-height: 65px;
}

.cta a {
  margin: 0 20px;
}

.cta p {
  margin-top: 20px;
  font-size: 22px;
  line-height: 32px;
}

.single-project {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .single-project {
    padding: 100px 0;
  }
}
.single-project__featured {
  width: 100%;
  border: 1px solid #ddd;
  padding: 3px;
}
.single-project__list {
  margin: 20px 0;
}
.single-project__title {
  text-transform: capitalize;
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  .single-project__title {
    font-size: 28px;
  }
}
.single-project__gallery {
  margin-top: -25px;
}
.single-project__gallery img {
  width: 100%;
  border: 1px solid #ddd;
  padding: 3px;
}
.single-project iframe {
  width: 100%;
  border: 1px solid #ddd;
  padding: 3px;
}
.single-project__details li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 18px;
}
.single-project__sidebar {
  margin-bottom: 40px;
}
.single-project__list li {
  margin-bottom: 5px;
  font-weight: 500;
}
.single-project a {
  margin-top: 25px;
}

.content-area {
  background-color: #fef7f4;
}

input:focus, textarea:focus {
  outline: none !important;
  border-color: #2fa78f;
}

.about.mt-100 {
  margin-top: 0;
}
@media (min-width: 768px) {
  .about.mt-100 {
    margin-top: 100px;
  }
}

.error-404 {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.error-404 h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-choose {
  padding: 80px 0;
  background-size: cover;
  background-position: center;
}
.why-choose__single {
  text-align: center;
  box-shadow: 0px 0px 50px 11px rgba(95, 138, 236, 0.05);
  background-color: #ffffff;
  padding: 40px;
  border: 1px solid #f1f1f1;
}
.why-choose__icon {
  background-color: #2fa78f;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #ffffff;
  border-radius: 50%;
}
.why-choose__title {
  font-size: 26px;
  font-weight: 600;
  margin-top: 10px;
}

.footer {
  padding: 60px 0;
  color: #fff;
}
.footer__title {
  font-size: 26px;
  text-transform: capitalize;
  font-weight: 500;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .footer__title {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}
.footer__title:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 2px;
  background-color: #2fa78f;
  bottom: 0;
}
.footer__social {
  margin-top: 25px;
}
.footer__social a {
  color: #fff;
  border: 1px solid #fff;
  width: 30px;
  display: inline-block;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 14px;
  border-radius: 50%;
  margin-right: 10px;
}
.footer__social a:hover {
  background-color: #2fa78f;
  border-color: #2fa78f;
}
@media (min-width: 992px) {
  .footer__social a {
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 10px;
  }
}
@media (min-width: 1198px) {
  .footer__social a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
}
.footer ul li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #555;
  position: relative;
  font-size: 17px;
}
.footer ul li a {
  color: #fff;
  position: relative;
  padding-left: 25px;
  text-transform: capitalize;
  font-size: 17px;
}
.footer ul li a:before {
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  left: 0;
  position: absolute;
}
.footer ul li a:hover {
  color: #2fa78f;
}
.footer ul li a i {
  margin-right: 5px;
}
.footer ul li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.footer-bottom {
  background-color: #111;
  color: #fff;
  padding: 10px 0;
}
.footer-bottom__copy {
  text-align: center;
}

.footer-bottom__menu {
  display: flex;
  justify-content: flex-end;
}

.footer-bottom__menu li {
  margin-left: 35px;
  position: relative;
}

.footer-bottom__menu li a {
  color: #fff;
}

.footer-bottom__menu li a:hover {
  color: #2fa78f;
}

.footer-bottom__menu li:before {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #2fa78f;
  border-radius: 50%;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
}

.footer__single.footer__single--contact li {
  padding-left: 35px;
}

.footer__single.footer__single--contact i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.clients-area {
  background-color: #fff;
}

.single-clients img {
  max-width: 110px;
  margin: 0 auto;
}

.course__single {
  box-shadow: 10px 10px 120px 0 rgba(73, 74, 84, 0.1);
  background-color: #fff;
  border-radius: 16px;
}

.course__img {
  background-size: cover;
  background-position: center top;
  padding-top: 75%;
  border-bottom: 1px solid #f4f4f4;
}

.course__single {
  position: relative;
  overflow: hidden;
}

.course__price {
  font-weight: 700;
  font-size: 18px;
  padding: 5px 20px;
  background-color: #333;
  display: inline-block;
  color: #fff;
  border-radius: 7px;
  position: absolute;
  right: 10px;
  top: 10px;
}

.course__title {
  text-transform: capitalize;
  padding: 20px;
}

.course__title a {
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
.course__title a:hover {
  color: #2fa78f;
}

.course__author {
  display: flex;
  flex-direction: row;
  padding: 0 20px;
  align-items: center;
  font-weight: 600;
}

.course__author img {
  max-width: 40px;
  border-radius: 50%;
}

.course__author p {
  margin-left: 15px;
  font-size: 18px;
  font-weight: 600;
}

.course__author p span {
  display: block;
  font-size: 16px;
  font-weight: 500;
}

.course__info {
  border-top: 1px solid #f4f4f4;
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-evenly;
  padding-bottom: 20px;
}

.course__info span {
  display: inline-block;
  font-size: 16px;
  border-right: 1px solid #ddd;
  padding-right: 15px;
}

.course__info span:last-child {
  border-right: 0;
  padding-right: 0;
}

.course__info a {
  font-style: 16px;
  font-weight: 500;
}
.course__info a:hover {
  color: #2fa78f;
}

.course-single {
  background-color: #fef7f4;
}

.course__content h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .course__content h4 {
    font-size: 36px;
    line-height: 46px;
  }
}

.course__heading {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.course__heading:after {
  position: absolute;
  content: "";
  width: 80px;
  height: 2px;
  background-color: #333;
  left: 0;
  bottom: 0;
}

.course__content {
  background-color: #fff;
  padding: 20px;
}

.course__content ul li {
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.course__top {
  background-color: #fff;
  padding: 20px;
  text-align: center;
  margin-bottom: 30px;
}

.course__top span {
  display: block;
  font-size: 50px;
  font-weight: 900;
  margin-bottom: 5px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 30px;
}

.course__top a {
  background-color: transparent !important;
  color: #333;
  font-weight: 600;
  margin-top: 10px;
}

.course__list {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
}

.course__list ul li {
  margin-bottom: 10px;
}

.course__list ul li:last-child {
  margin-bottom: 0;
}

.course__requirements {
  background-color: #fff;
  padding: 20px;
}

.course__requirements li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.course__requirements li i {
  margin-right: 15px;
}

.course__requirements li:last-child {
  margin-bottom: 0;
}

.course__instructor {
  background-color: #fff;
  padding: 20px;
  margin-top: 30px;
}

.course__instructor img {
  max-width: 120px;
  border-radius: 50%;
  margin-top: 15px;
}

.course__instructor h4 {
  font-size: 20px;
  margin: 10px 0;
}

.course__top span i {
  font-size: 26px;
}

.course__top a {
  background-color: transparent !important;
  color: #333;
  font-weight: 500;
  margin-top: 10px;
  display: block;
}

.course__sum {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 30px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .course__sum {
    flex-direction: row;
  }
}

.course__sum li {
  border: 1px solid #ddd;
  padding: 5px 20px 15px;
  margin-bottom: 0;
  line-height: 35px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .course__sum li {
    padding: 5px 40px 15px;
  }
}/*# sourceMappingURL=style.css.map */