:root {
  --border: 20px;
}
@media (max-width: 992px) {
  :root {
    --border: 10px;
  }
}

a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

p {
  font-size: 1.8rem;
  line-height: 3.4rem;
}
p.large {
  font-size: 2rem;
}
p.small {
  font-size: 1.6rem;
}
@media (max-width: 992px) {
  p {
    font-size: 2rem;
  }
  p.small {
    font-size: 1.8rem;
  }
}

h1 {
  font-size: 6rem;
  font-weight: 300;
}
@media (max-width: 992px) {
  h1 {
    font-size: calc(4rem + 2 * (100vw - 200px) / 792);
  }
}

h2 {
  font-size: 4.4rem;
  line-height: 6rem;
}
@media (max-width: 992px) {
  h2 {
    font-size: calc(3rem + 1.4 * (100vw - 200px) / 792);
    line-height: calc(4.6rem + 1.4 * (100vw - 200px) / 792);
  }
}

h3 {
  font-size: 3rem;
  line-height: 4.4rem;
}

h4 {
  font-size: 2rem;
  line-height: 3.4rem;
}

.c-primary {
  color: #7dc37d;
}
.c-grey {
  color: #656f75;
}
.c-light {
  color: #bcc7d0;
}
.c-dark {
  color: #32373a;
}
.c-dark-2 {
  color: #24282a;
}
.c-white {
  color: #fff;
}

.b-primary {
  background-color: #7dc37d;
}
.b-primary-light-2 {
  background-color: #bbe7bb;
}

.txt-upper {
  text-transform: uppercase;
}

.mg-center {
  margin-left: auto;
  margin-right: auto;
}

.txt-sm {
  font-size: 1.4rem;
  line-height: 3rem;
}
.txt-sm-1 {
  font-size: 1.8rem;
  line-height: 4rem;
}

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

.heading-lg {
  font-size: 4.4rem;
  line-height: 5.8rem;
}
.heading-lg-1 {
  font-size: 5rem;
}
.heading-sm {
  font-size: 2.4rem;
  line-height: 3.4rem;
}
.heading-40 {
  width: 40%;
}
.heading-50 {
  width: 50%;
}
.heading-60 {
  width: 60%;
}
@media (max-width: 992px) {
  .heading-40, .heading-50 {
    width: 80%;
  }
}

.paragraph-lg {
  font-size: 2rem;
}
.paragraph-sm {
  font-size: 1.4rem;
  line-height: 4rem;
}

.image img {
  max-width: 100%;
  width: 100%;
}

.vertical-txt {
  font-size: 22.6rem;
  font-weight: 900;
  transform: rotate(90deg);
}
.vertical-txt-wrapper.right-align {
  max-width: 100%;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
}
@media (max-width: 992px) {
  .vertical-txt {
    display: none;
  }
  .vertical-txt-wrapper.right-align {
    margin-left: 0;
  }
}
@supports (-webkit-text-stroke: 0.3rem #7dc37d) {
  .vertical-txt {
    -webkit-text-stroke: 0.3rem #7dc37d;
    -webkit-text-fill-color: white;
  }
}

.f-w-400 {
  font-weight: 400;
}

.f-w-500 {
  font-weight: 500;
}

.ln-ht-auto {
  line-height: auto;
}

.ln-ht-3 {
  line-height: 3rem;
}

.ln-ht-34 {
  line-height: 3.4rem;
}

.ln-ht-44 {
  line-height: 4.4rem;
}

.lt-1 {
  letter-spacing: 0.1rem;
}

.social-list li a i {
  width: 2rem;
  margin-right: 0.7rem;
  text-align: center;
}

/********************
preloader
********************/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  transition: all 0.25s ease;
  transition-delay: 1s;
  background-color: #7dc37d;
  display: flex;
  justify-content: center;
  align-items: center;
}
.preloader .sk-folding-cube {
  width: 8rem;
  height: 8rem;
  position: relative;
  margin: auto;
  transform: rotateZ(45deg);
}
.preloader .sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  transform: scale(1.1);
}
.preloader .sk-folding-cube .sk-cube:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: sk-folding-cube-angle 2.4s infinite linear both;
  transform-origin: 100% 100%;
}
.preloader .sk-folding-cube .sk-cube-2 {
  transform: scale(1.1) rotateZ(90deg);
}
.preloader .sk-folding-cube .sk-cube-3 {
  transform: scale(1.1) rotateZ(180deg);
}
.preloader .sk-folding-cube .sk-cube-4 {
  transform: scale(1.1) rotateZ(270deg);
}
.preloader .sk-folding-cube .sk-cube-2:before {
  animation-delay: 0.3s;
}
.preloader .sk-folding-cube .sk-cube-3:before {
  animation-delay: 0.6s;
}
.preloader .sk-folding-cube .sk-cube-4:before {
  animation-delay: 0.9s;
}
@keyframes sk-folding-cube-angle {
  0%, 10% {
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

body.loaded .preloader {
  transform: translateY(-100%);
}

/****************************************
icon circle
****************************************/
.icon-circle {
  width: -moz-max-content;
  width: max-content;
  position: relative;
  height: 6rem;
}
.icon-circle::before {
  content: "";
  width: 7.5rem;
  height: 7.5rem;
  background-color: #a6d1a6;
  border-radius: 50%;
  position: absolute;
}
.icon-circle img {
  position: relative;
  z-index: 1;
}
.icon-circle-xl {
  height: auto;
}
.icon-circle-xl::before {
  width: 18.5rem;
  height: 18.5rem;
  top: -0.7rem;
  left: 1rem;
}
.icon-circle-lg {
  height: 100px;
}
.icon-circle-lg::before {
  top: 0;
  left: 0;
}
.icon-circle-lg-1 {
  height: 100px;
}
.icon-circle-lg-1::before {
  top: -1rem;
  left: -1.6rem;
}
.icon-circle-sm::before {
  top: -2.1rem;
  left: -2.1rem;
}

/****************************************
icon box
****************************************/
.icon-box {
  padding: 4rem 8rem;
}
.icon-box h4 {
  margin: 4.5rem 0 2.9rem 0;
}
@media (max-width: 992px) {
  .icon-box h4 {
    margin: 3rem 0 1rem 0;
  }
}

/****************************************
icon text box
****************************************/
.icon-text-box:not(.icon-text-box-large) h3 {
  margin: 3.5rem 0 4rem 0;
}
.icon-text-box-large h4 {
  margin: 6rem 0 2.4rem 0;
}
.icon-text-box .link {
  margin-top: 3rem;
}

/****************************************
testimonial box slider
****************************************/
.box-slider .box-slide {
  max-width: 80%;
  padding: 0.4rem 0 50px 0;
}
.box-slider .box-slide-inner {
  height: -moz-max-content;
  height: max-content;
  background-color: #fff;
  outline: #e9eef1 solid 0.1rem;
  padding: 3.7rem 6.2rem;
  margin: 0 0.4rem;
  transition: all 0.25s ease;
}
.box-slider .box-slide-inner h5 {
  margin-top: 3.6rem;
}
@media (max-width: 992px) {
  .box-slider .box-slide {
    max-width: 100%;
  }
}

/****************************************
icon box slider
****************************************/
.icon-box-slider .icon-box-slide {
  max-width: 80%;
  height: 100%;
  padding: 0.4rem 0 50px 0;
}
.icon-box-slider .icon-box-slide a {
  color: inherit;
}
.icon-box-slider .icon-box-slide-inner {
  height: 100%;
  background-color: #fff;
  padding-top: 4.8rem;
  padding-bottom: 4.8rem;
  margin: 0 0.4rem;
  outline: transparent solid 0.1rem;
  transition: all 0.25s ease;
}
.icon-box-slider .icon-box-slide-inner:hover {
  outline: #7dc37d solid 0.4rem;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 992px) {
  .icon-box-slider .icon-box-slide {
    max-width: 100%;
  }
}

/****************************************
bullet pagination
****************************************/
.bullet-pagination {
  display: flex;
  align-items: center;
}
.bullet-pagination .bullet {
  display: inline-block;
  width: 0.8rem;
  height: 0.8rem;
  background-color: #e9eef1;
  border-radius: 50%;
  transition: all 0.25s ease;
}
.bullet-pagination .bullet:nth-child(n+2) {
  margin-left: 0.5rem;
}
.bullet-pagination .bullet-active {
  width: 1.2rem;
  height: 1.2rem;
  background-color: #7dc37d;
}

/****************************************
footer
****************************************/
.footer-wrapper {
  padding-top: 14.1rem;
  padding-bottom: 15.6rem;
}
@media (max-width: 992px) {
  .footer-wrapper {
    padding: 5rem 2rem;
  }
}
.footer .footer-content + .footer-content {
  margin-top: 3.1rem;
}
.footer .footer-content h6 {
  margin-bottom: 1.9rem;
}
.footer .footer-content ul {
  list-style: none;
}
.footer .footer-content ul li {
  line-height: 3rem;
}
.footer .footer-content ul li + li {
  margin-top: 1rem;
}
.footer .footer-content ul.social-list a i {
  transition: all 0.25s ease;
}
.footer .footer-content ul.social-list a:hover i {
  color: #7dc37d;
}
.footer .footer-content ul.number-list li a {
  margin-left: 0.9rem;
}
.footer .footer-content ul.number-list li + li {
  margin-top: 0;
}
@media (max-width: 992px) {
  .footer div[class*=col]:nth-child(n+2) {
    margin-top: 3rem;
  }
}
.footer .copyright {
  margin-top: -1.9rem;
}
@media (max-width: 992px) {
  .footer .copyright {
    margin-top: 3rem;
  }
}

/****************************************
button
****************************************/
.button {
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding: 1.7rem 3.7rem 1.8rem 3.7rem;
  font-size: 1.4rem;
  transition: all 0.4s ease;
  margin-left: 1.2rem;
}
.button-group {
  display: block;
  margin-left: -1.2rem;
}
@media (max-width: 992px) {
  .button {
    margin-top: 1rem;
  }
  .button-group {
    margin-top: -1rem;
  }
}
.button div {
  display: flex;
  align-items: center;
  z-index: 2;
  position: relative;
}
.button span {
  font-weight: 600;
  letter-spacing: 0.1rem;
  margin-left: 0.9rem;
}
.button::after {
  content: "";
  position: absolute;
  height: 100%;
  left: -45%;
  top: 0;
  transform: skew(50deg);
  transform-origin: top left;
  width: 0;
  z-index: 1;
  transition: all 0.4s ease;
}
.button:hover::after {
  height: 100%;
  width: 145%;
}
.button-bg::after {
  left: -100%;
}
.button-bg:hover::after {
  width: 200%;
}
.button-1 {
  background-color: #fff;
  border: 0.1rem solid transparent;
  color: #656f75;
}
.button-1::after {
  background-color: #7dc37d;
}
.button-1:hover {
  color: #fff;
  border-color: #fff;
}
.button-2 {
  background-color: transparent;
  border: 0.1rem solid #fff;
  color: #fff;
}
.button-2::after {
  background-color: #fff;
}
.button-2:hover {
  color: #656f75;
}
.button-3 {
  background-color: #7dc37d;
  border: none;
  color: #fff;
}
.button-3::after {
  background-color: #32373a;
}
.button-3:hover {
  color: #fff;
}
.button-4 {
  background-color: #bcc7d0;
  padding: 1.3rem 2.5rem 1.4rem 2.5rem;
  border: none;
  color: #fff;
  font-size: 1rem;
}
@media (max-width: 992px) {
  .button-4 {
    font-size: 1.2rem;
  }
}
.button-4::after {
  background-color: #7dc37d;
}
.button-4:hover {
  color: #fff;
}

button.button {
  border: none;
}

/****************************************
link
****************************************/
.link {
  --line: #646B8C;
  --color: #2B3044;
  text-decoration: none;
  color: var(--color);
  position: relative;
  display: inline-block;
}
.link > span {
  font-size: 1.4rem;
  line-height: 3.4rem;
  letter-spacing: 0.04rem;
  color: #3d623d;
  position: relative;
  transition: all 0.25s ease;
}
.link > span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0rem;
  bottom: -0.25rem;
  height: 0.1rem;
  background-color: #7dc37d;
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.3s ease;
}
.link:hover > span {
  text-decoration: none;
}
.link:hover > span::before {
  transform-origin: left center;
  transform: scale(1, 1);
}
.link-1 {
  --stroke-delay: .0s;
}
.link-1 span {
  background-image: none;
}
.link-inherit span {
  font-size: inherit;
  line-height: inherit;
}
.link-grey span {
  color: #656f75;
}
.link-grey > span::before {
  background-color: #656f75;
}
.link-sm span {
  font-size: 1.2rem;
}
.link-md span {
  font-size: 1.8rem;
}
.link-lg span {
  font-size: 2rem;
}
.link-ls svg {
  left: -1rem;
}
.link.active > span::before {
  transform-origin: left center;
  transform: scale(1, 1);
}

/****************************************
team member
****************************************/
.team-member {
  text-align: center;
}
.team-member figure {
  position: relative;
  overflow: hidden;
}
.team-member figure img {
  width: 100%;
}
.team-member figure .team-social {
  background-color: #7dc37d;
  display: flex;
  justify-content: center;
  padding: 1.5rem 0;
  position: absolute;
  bottom: -6.7rem;
  width: 100%;
  transition: all 0.25s ease;
}
.team-member figure .team-social ul {
  margin: 0;
}
.team-member figure .team-social ul li {
  list-style: none;
  display: inline-block;
}
.team-member figure .team-social ul li a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  background-color: transparent;
  border: 0.2rem solid #fff;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  transition: all 0.25s ease;
}
.team-member figure .team-social ul li a:hover {
  background-color: #fff;
  color: #7dc37d;
}
.team-member figure .team-social ul li + li {
  margin-left: 2rem;
}
.team-member figure:hover .team-social {
  bottom: 0;
}
.team-member figcaption h4 {
  margin-top: 2.3rem;
}
.team-member figcaption p {
  margin: 0;
}
.team-member figcaption a span {
  font-size: 1.8rem;
  line-height: 3.4rem;
  color: #7dc37d;
}

/****************************************
career accordion
****************************************/
.career-accordion-item {
  border: none;
  position: relative;
  padding: 7rem 0 5rem 0;
}
.career-accordion-item:not(:last-child) {
  border-bottom: 0.1rem solid #d9e1e7;
}
@media (max-width: 992px) {
  .career-accordion-item {
    padding: 5rem 0;
  }
}
.career-accordion-item-header {
  cursor: pointer;
  position: relative;
}
.career-accordion-item-header > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.career-accordion-item-header > div .content {
  width: 70%;
}
.career-accordion-item-header > div .content .paragraph {
  margin: -0.7rem 0 1rem 0;
}
.career-accordion-item-header > div .content .teaser span {
  transition: all 0.25s ease;
}
.career-accordion-item-header > div .content .teaser .dots {
  opacity: 1;
  visibility: visible;
  display: inline-block;
}
.career-accordion-item-header > div .content .teaser .remaining {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
}
.career-accordion-item-header > div .button-group {
  transition: all 1s ease;
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
}
.career-accordion-item-header > div .button-group:not(.collapsed) {
  top: 40%;
}
@media (max-width: 992px) {
  .career-accordion-item-header > div {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }
  .career-accordion-item-header > div .content {
    width: 100%;
  }
  .career-accordion-item-header > div .button-group {
    width: 100%;
    position: relative;
    top: initial;
    right: initial;
    transform: none;
    margin: 0 auto;
    transition: all 0.25s ease;
  }
  .career-accordion-item-header > div .button-group .button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
}
.career-accordion-item.shown div[data-bs-toggle=collapse] span {
  width: 0;
  overflow: hidden;
  margin: 0;
}
.career-accordion-item .accordion-body {
  padding: 0 0 8rem 0;
}
@media (max-width: 992px) {
  .career-accordion-item .accordion-body {
    padding: 0;
  }
}
.career-accordion-item .accordion-body h3 {
  margin: 2rem 0 1.5rem 0;
}
.career-accordion-item .accordion-body .form-heading {
  margin: 3.5rem 0 4.6rem 0;
}
.career-accordion-item .accordion-body ul {
  list-style: none;
}
.career-accordion-item .accordion-body ul li {
  font-size: 2rem;
  color: #656f75;
}
.career-accordion-item .accordion-body ul.dotted {
  margin: 3rem 0 0 0;
}
.career-accordion-item .accordion-body ul.dotted li::before {
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  color: #7dc37d;
  font-weight: 900;
  margin-right: 1.2rem;
}
.career-accordion-item .accordion-body form .input-group {
  display: flex;
}
.career-accordion-item .accordion-body form .input-group input {
  max-width: calc(50% - 1rem);
}
.career-accordion-item .accordion-body form .input-group > *:last-child {
  margin-left: 1rem !important;
}
.career-accordion-item .accordion-body form .input-group > *:first-child {
  margin-left: 0 !important;
}
.career-accordion-item .accordion-body form .input-group:nth-child(n+2) {
  margin-top: 1rem;
}
.career-accordion-item .accordion-body form .input-group .file-upload {
  width: calc(50% - 1rem);
}
.career-accordion-item .accordion-body form .input-group .file-upload input {
  width: 100%;
}
.career-accordion-item .accordion-body form button {
  width: calc(50% - 1rem);
  text-align: center;
  margin: 0;
}
.career-accordion-item .accordion-body form button div {
  text-align: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .career-accordion-item .accordion-body form .input-group input {
    max-width: 100%;
  }
  .career-accordion-item .accordion-body form .input-group input:nth-child(n+2) {
    margin-top: 0;
  }
  .career-accordion-item .accordion-body form .input-group > *:last-child {
    margin-left: 0 !important;
    margin-top: 1rem !important;
  }
  .career-accordion-item .accordion-body form .input-group .file-upload {
    width: 100%;
    height: 6.3rem;
  }
  .career-accordion-item .accordion-body form .input-group .button {
    width: 100%;
  }
}

/****************************************
blog single
****************************************/
.blog-single {
  display: flex;
  justify-content: space-between;
}
.blog-single + .blog-single {
  margin-top: 8.8rem;
}
@media (max-width: 992px) {
  .blog-single + .blog-single {
    margin-top: 4rem;
  }
}
.blog-single .date {
  margin-right: 4.3rem;
}
.blog-single .date h4 {
  font-size: 3rem;
  line-height: 4.4rem;
  font-weight: 300;
  color: #bcc7d0;
}
.blog-single .date h4 span {
  font-size: 5rem;
}
@media (max-width: 768px) {
  .blog-single .date {
    display: none;
  }
}
.blog-single .post figure {
  position: relative;
  overflow: hidden;
}
.blog-single .post figure img {
  width: 100%;
}
.blog-single .post figure .hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 0;
  opacity: 0;
  background-color: rgba(125, 195, 125, 0.6);
  transition: all 0.25s ease;
}
.blog-single .post figure .hover .circle {
  width: 8rem;
  height: 8rem;
  border: 0.2rem solid #fff;
  border-radius: 50%;
  background-color: transparent;
  transition: all 0.25s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-single .post figure .hover .circle i {
  font-size: 2rem;
  color: #fff;
  transition: all 0.25s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.blog-single .post figure .hover .circle:hover {
  background-color: #fff;
}
.blog-single .post figure .hover .circle:hover i {
  color: #7dc37d;
}
@media (max-width: 992px) {
  .blog-single .post figure {
    height: 30rem;
  }
  .blog-single .post figure img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.blog-single .post .title {
  display: block;
  font-size: 4rem;
  line-height: 5.4rem;
  margin: 1.7rem 0 3rem 0;
  width: 80%;
}
.blog-single .post .title:hover, .blog-single .post .title:focus, .blog-single .post .title:active {
  color: initial;
}
@media (max-width: 768px) {
  .blog-single .post .title {
    width: 90%;
  }
}
.blog-single .post .excerpt {
  font-size: 2rem;
  line-height: 3.4rem;
  color: #656f75;
  width: 86%;
}
@media (max-width: 768px) {
  .blog-single .post .excerpt {
    width: 95%;
  }
}
.blog-single .post .read-more {
  display: block;
  margin-top: 3rem;
}
.blog-single .post .read-more span {
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  color: #7dc37d;
}
.blog-single .post:hover .hover {
  top: 0;
  opacity: 1;
}

/****************************************
blog detail
****************************************/
.blog-detail-wrapper {
  padding-top: 8.4rem;
}
@media (max-width: 992px) {
  .blog-detail-wrapper {
    padding-top: 3rem;
  }
}
@media (max-width: 992px) {
  .blog-detail-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.blog-detail-content .date h4 {
  font-size: 3rem;
  line-height: 4.4rem;
  font-weight: 300;
  color: #bcc7d0;
}
.blog-detail-content .date h4 span {
  display: block;
  font-size: 5rem;
}
@media (max-width: 992px) {
  .blog-detail-content .date {
    display: none;
  }
}
.blog-detail-content .content figure img {
  width: 100%;
}
.blog-detail-content .content .title {
  font-size: 4rem;
  line-height: 5.4rem;
  margin-top: 4rem;
}
.blog-detail-content .content .sub-title {
  font-size: 3rem;
  line-height: 3.4rem;
  margin-top: 3rem;
}
.blog-detail-content .content p {
  font-size: 2rem;
  line-height: 3.4rem;
  color: #656f75;
  margin-top: 3rem;
}
.blog-detail-content .content .post-social {
  margin: 3.4rem 0 14rem 0;
}
@media (max-width: 992px) {
  .blog-detail-content .content .post-social {
    margin-bottom: 5rem;
  }
}
.blog-detail-content .content .post-social ul {
  list-style: none;
  margin-top: -0.2rem;
  margin-left: -0.2rem;
}
@media (max-width: 992px) {
  .blog-detail-content .content .post-social ul {
    display: flex;
    width: 100%;
  }
}
.blog-detail-content .content .post-social ul li {
  display: inline-block;
}
@media (max-width: 992px) {
  .blog-detail-content .content .post-social ul li {
    flex: 1;
  }
}
.blog-detail-content .content .post-social ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 11.5rem;
  height: 4rem;
  color: #fff;
  margin-top: 0.2rem;
  margin-left: 0.2rem;
  transition: all 0.25s ease;
}
.blog-detail-content .content .post-social ul li a i {
  font-size: 2rem;
}
@media (max-width: 992px) {
  .blog-detail-content .content .post-social ul li a {
    width: auto;
    flex: 1;
  }
}
.blog-detail-content .content .post-social ul li.facebook a {
  background-color: #45619c;
}
.blog-detail-content .content .post-social ul li.twitter a {
  background-color: #00acee;
}
.blog-detail-content .content .post-social ul li.pinterest a {
  background-color: #de252a;
}
.blog-detail-content .content .post-social ul li.linkedin a {
  background-color: #1d87bd;
}
.blog-detail-content .content .post-social ul li.share a {
  background-color: #bcc7d0;
}
.blog-detail-content .content .post-social ul li a:hover {
  background-color: #7dc37d;
}

/****************************************
comment
****************************************/
.blog-detail-comment-wrapper {
  background-color: #bbe7bb;
  padding: 11.9rem 0 15rem 0;
}
@media (max-width: 992px) {
  .blog-detail-comment-wrapper {
    padding: 5rem 2rem;
  }
}
.blog-detail-comment-heading {
  font-size: 4rem;
  line-height: 5.4rem;
  margin-bottom: 3.8rem;
}
.blog-detail-comment-single-wrapper {
  width: 100%;
  display: flex;
  position: relative;
  background-color: #fff;
  padding: 4rem 4.2rem 3.2rem 4.2rem;
}
@media (max-width: 992px) {
  .blog-detail-comment-single-wrapper {
    padding: 4rem 2rem 3.2rem 2rem;
  }
}
.blog-detail-comment-single:not(:first-child) {
  margin-top: 1rem;
}
.blog-detail-comment-single .comment-author {
  width: 10.9rem;
  height: 10.9rem;
  border-radius: 50%;
  margin-right: 2.3rem;
}
.blog-detail-comment-single .comment-author img {
  max-width: 100%;
}
@media (max-width: 992px) {
  .blog-detail-comment-single .comment-author {
    width: 8rem;
    height: 8rem;
  }
}
.blog-detail-comment-single .comment-content {
  width: 77%;
}
@media (max-width: 992px) {
  .blog-detail-comment-single .comment-content {
    width: 100%;
  }
}
.blog-detail-comment-single .comment-content h4 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 3rem;
  color: #24282a;
}
.blog-detail-comment-single .comment-content h5 {
  font-size: 1.2rem;
  line-height: 2rem;
  color: #656f75;
  margin-top: -0.6rem;
}
.blog-detail-comment-single .comment-content p {
  line-height: 3rem;
  color: #656f75;
}
.blog-detail-comment-single .reply {
  position: absolute;
  top: 0;
  right: 0;
}
.blog-detail-comment-single-reply .blog-detail-comment-single-wrapper {
  position: relative;
  padding-left: 14.2rem;
}
.blog-detail-comment-single-reply .blog-detail-comment-single-wrapper .thread {
  width: 0.2rem;
  background-color: #7dc37d;
  display: block;
  position: absolute;
  top: -50%;
  left: 9.3rem;
  transform: translateY(40%);
}
@media (max-width: 992px) {
  .blog-detail-comment-single-reply .blog-detail-comment-single-wrapper .thread {
    left: 8.3rem;
  }
}
@media (max-width: 500px) {
  .blog-detail-comment-single-wrapper {
    flex-direction: column;
  }
  .blog-detail-comment-single .comment-author .thread {
    display: none;
  }
  .blog-detail-comment-single .comment-content {
    margin-top: 2rem;
  }
  .blog-detail-comment-single-reply .blog-detail-comment-single-wrapper {
    padding-left: 7rem;
  }
}

/****************************************
form
****************************************/
.blog-detail-form-wrapper {
  padding: 13.7rem 0 15rem 0;
}
@media (max-width: 992px) {
  .blog-detail-form-wrapper {
    padding: 5rem 2rem;
  }
}
.blog-detail-form h2 {
  font-size: 4rem;
  line-height: 5.4rem;
  margin-bottom: 4rem;
}
@media (max-width: 992px) {
  .blog-detail-form h2 {
    margin-bottom: 2rem;
  }
}

/****************************************
blog pagination
****************************************/
.blog-pagination {
  margin-top: 7rem;
}
@media (max-width: 992px) {
  .blog-pagination {
    margin-top: 3rem;
  }
}
.blog-pagination ul {
  list-style: none;
}
.blog-pagination ul li {
  display: inline-block;
  font-size: 5rem;
  font-weight: 300;
  color: #bcc7d0;
  transition: all 0.25s ease;
}
.blog-pagination ul li.active, .blog-pagination ul li:hover {
  color: #7dc37d;
}
.blog-pagination ul li a {
  color: inherit;
}
.blog-pagination ul li i {
  -webkit-text-stroke: 2px #fff;
}
.blog-pagination ul li + li {
  margin-left: 4.5rem;
}
@media (max-width: 992px) {
  .blog-pagination ul li {
    font-size: 3rem;
  }
  .blog-pagination ul li + li {
    margin-left: 2.5rem;
  }
}

/****************************************
input
****************************************/
input:not([type=checkbox]):not([type=radio]):not([type=range]) {
  background-color: #f0f4f7;
  border: none;
  width: 100%;
  max-width: 100%;
  height: 6.3rem;
  padding: 0 2.9rem;
  outline: none;
  font-size: 1.6rem;
  color: #656f75;
}

/****************************************
textarea
****************************************/
textarea {
  background-color: #f0f4f7;
  border: none;
  width: 100%;
  max-width: 100%;
  height: 16.7rem;
  resize: none;
  padding: 2.2rem 2.9rem;
  outline: none;
  font-size: 1.6rem;
  color: #656f75;
}

/****************************************
checkbox
****************************************/
input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
input[type=checkbox] + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  font-size: 1.4rem;
  color: #656f75;
  display: flex;
  align-items: center;
}
input[type=checkbox] + label::before {
  content: "";
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 2.4rem;
  height: 2.4rem;
  background: #f0f4f7;
  transition: all 0.25s ease;
}
input[type=checkbox]:checked + label:before {
  background: #7dc37d;
}
input[type=checkbox]:disabled + label {
  color: #656f75;
  cursor: auto;
}
input[type=checkbox]:disabled + label:before {
  box-shadow: none;
  background: #656f75;
}
input[type=checkbox]:checked + label::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.5rem;
  position: absolute;
  top: 0.2rem;
  left: 0.4rem;
  color: #fff;
  display: block;
}

/****************************************
form
****************************************/
form .row + .row {
  margin-top: 1rem;
}
@media (max-width: 992px) {
  form .row + .row {
    margin-top: 0;
  }
  form .row input:not([type=checkbox]):not([type=radio]):not([type=range]),
  form .row textarea,
  form .row button {
    margin-top: 1rem;
  }
}
form .button {
  margin-left: 0;
}

/****************************************
file upload
****************************************/
.file-upload {
  cursor: pointer;
  background-color: #f0f4f7;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.file-upload input {
  display: none;
}
.file-upload .label {
  font-size: 1.6rem;
  color: #656f75;
  margin-left: 2.9rem;
}
.file-upload .file {
  font-size: 1.4rem;
  color: #656f75;
  margin-right: 1rem;
}
.file-upload .select {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  height: 100%;
  background-color: #bcc7d0;
  padding: 0 3rem;
  transition: all 0.25s ease;
}
.file-upload .select-wrapper {
  height: 100%;
  display: inline-flex;
  align-items: center;
}
.file-upload:hover .select {
  background-color: #7dc37d;
}

/****************************************
form page
****************************************/
.form-page {
  width: 100%;
  min-height: calc(100vh - var(--border) * 2);
}
.form-page-wrapper {
  width: 100%;
  min-height: calc(100vh - var(--border) * 2);
  display: flex;
}
.form-page-image {
  flex: 0.6;
  height: calc(100vh - 4rem);
}
.form-page-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1600px) {
  .form-page-image {
    flex: 0.5;
  }
}
@media (max-width: 1300px) {
  .form-page-image {
    flex: 0.4;
  }
}
@media (max-width: 992px) {
  .form-page-image {
    display: none;
  }
}
.form-page-content {
  flex: 0.4;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - var(--border) * 2);
  position: relative;
}
.form-page-content-wrapper {
  width: 50%;
}
.form-page-content .logo {
  position: absolute;
  width: 50%;
  top: 10rem;
  left: 50%;
  transform: translateX(-50%);
}
.form-page-content h1 {
  font-size: 3rem;
  font-weight: 500;
  color: #24282a;
  margin-bottom: 5.4rem;
}
.form-page-content form > *:nth-child(n+2) {
  margin-top: 1rem;
}
.form-page-content form .button {
  width: 100%;
}
.form-page-content form .button div {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.form-page-content .link-group {
  margin-top: 0.9rem;
}
.form-page-content .link-group h5 {
  font-size: 1.4rem;
  color: #656f75;
}
@media (max-width: 1600px) {
  .form-page-content {
    flex: 0.5;
  }
}
@media (max-width: 1300px) {
  .form-page-content {
    flex: 0.6;
  }
  .form-page-content-wrapper {
    width: 60%;
  }
}
@media (max-width: 992px) {
  .form-page-content {
    flex: 1;
  }
  .form-page-content .logo {
    text-align: center;
  }
}
@media (max-width: 992px) {
  .form-page-content-wrapper {
    width: 70%;
  }
}

/****************************************
sidebar
****************************************/
@media (max-width: 992px) {
  .sidebar {
    margin-top: 5rem;
  }
}
.sidebar > *:nth-child(n+2) {
  margin-top: 3rem;
}

/****************************************
search
****************************************/
.sidebar .search {
  position: relative;
}
.sidebar .search input:not([type=checkbox]):not([type=radio]):not([type=range]) {
  width: 100%;
  height: 5.5rem;
  background-color: #bbe7bb;
  border: none;
  outline-color: transparent;
  font-size: 1.6rem;
  color: #32373a;
  padding: 0 5rem 0 2.8rem;
}
.sidebar .search button {
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  right: 2.8rem;
  transform: translateY(-50%);
}
.sidebar .search button i {
  font-size: 1.6rem;
  color: #7dc37d;
}

/****************************************
category
****************************************/
.sidebar .category-wrapper {
  background-color: #bbe7bb;
  padding: 3.7rem 5rem;
}
.sidebar .category h4 {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 4rem;
  text-transform: uppercase;
  color: #7dc37d;
  margin-bottom: 2.3rem;
}
.sidebar .category ul {
  list-style: none;
}
.sidebar .category ul li a {
  font-size: 2rem;
  line-height: 4rem;
  font-weight: 500;
  color: #656f75;
  transition: all 0.25s ease;
}
.sidebar .category ul li a::before {
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-size: 1.4rem;
  font-weight: 900;
  margin-right: 1rem;
  transition: all 0.25s ease;
}
.sidebar .category ul li a:hover {
  color: #7dc37d;
}

/****************************************
sidebar page
****************************************/
.sidebar-page-wrapper {
  padding: 8.3rem 0 12rem 0;
}
@media (max-width: 992px) {
  .sidebar-page-wrapper {
    padding: 5rem 2rem;
  }
}

/****************************************
service
****************************************/
.service-header {
  margin: 7rem 0 9rem 0;
}
.service-header h2 {
  margin-bottom: 3rem;
}
@media (max-width: 992px) {
  .service-header {
    margin: 5rem 0;
    padding: 0 2rem;
  }
}
.service-single {
  width: 68%;
}
.service-single h3 {
  margin-top: 4.1rem;
}
.service-single p {
  margin: 3.9rem 0 3.6rem 0;
}
.service-list > div[class*=col] {
  padding: 10.2rem 0 9rem 0;
}
.service-list > div[class*=col]:nth-child(even) {
  border-left: 0.1rem solid #dbe3e8;
}
.service-list > div[class*=col]:nth-child(n+3) {
  border-top: 0.1rem solid #dbe3e8;
}
@media (max-width: 992px) {
  .service-list > div[class*=col] {
    padding: 5rem 0 5rem 0;
  }
  .service-list > div[class*=col]:nth-child(even) {
    border-left: none;
  }
  .service-list > div[class*=col]:nth-child(n+3) {
    border-top: none;
  }
  .service-list > div[class*=col]:not(:first-child) {
    border-top: 0.1rem solid #dbe3e8;
  }
}

/****************************************
service detail
****************************************/
.service-detail-wrapper {
  padding-top: 7.8rem;
}
@media (max-width: 992px) {
  .service-detail-wrapper {
    padding: 5rem 2rem 0 2rem;
  }
}
.service-detail-content h2 {
  margin-bottom: 3.8rem;
}
.service-detail-content p + p {
  margin-top: 3.2rem;
}
@media (max-width: 992px) {
  .service-detail-icon {
    margin-bottom: 5rem;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 5rem auto;
    text-align: center;
  }
  .service-detail-icon img {
    width: 60%;
    margin: 0 auto;
  }
  .service-detail-content {
    text-align: center;
  }
}

/****************************************
service feature
****************************************/
.service-feature-wrapper {
  padding: 14rem 0 13rem 0;
}
@media (max-width: 992px) {
  .service-feature-wrapper {
    padding: 5rem 2rem;
  }
}
.service-feature-single {
  width: 79%;
}
.service-feature-single h3 {
  margin-bottom: 3.3rem;
}
@media (max-width: 992px) {
  .service-feature-single {
    width: 100%;
  }
  .service-feature-single h3 {
    margin-bottom: 2rem;
  }
}
.service-feature-list > div[class*=col]:nth-child(n+3) {
  margin-top: 4.8rem;
}
@media (max-width: 992px) {
  .service-feature-list > div[class*=col]:nth-child(n+3) {
    margin-top: 0;
  }
  .service-feature-list > div[class*=col]:nth-child(n+2) {
    margin-top: 3rem;
  }
}

/****************************************
navigation
****************************************/
.navigation-inner {
  position: fixed;
  top: 10.6rem;
  left: 0;
  z-index: 500;
  width: 100%;
  padding: 0 5rem 0 5rem;
  border-left: var(--border) solid #7dc37d;
  border-right: var(--border) solid #7dc37d;
  display: flex;
  justify-content: space-between;
  background-color: transparent;
  transition: all 0.25s ease;
}
.navigation-menu .parent {
  list-style: none;
}
.navigation-menu .parent > li {
  display: inline-block;
  position: relative;
}
.navigation-menu .parent > li > a {
  position: relative;
  z-index: 50;
}
.navigation-menu .parent > li > a > span {
  font-size: 1.8rem;
  color: #32373a;
}
.navigation-menu .parent > li + li {
  margin-left: 4.5rem;
}
.navigation-menu .parent > li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  z-index: 1;
}
.navigation-menu .parent > li .child {
  position: absolute;
  top: 8rem;
  opacity: 0;
  visibility: hidden;
  list-style: none;
  min-width: 25rem;
  background-color: #fff;
  border: 0.2rem solid #7dc37d;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.25s ease;
  padding: 1rem 2rem;
}
.navigation-menu .parent > li .child li a {
  display: block;
  width: 100%;
  padding: 1.5rem 0 1.5rem 2rem;
  transition: all 0.25s ease;
}
.navigation-menu .parent > li .child li a span {
  font-size: 1.6rem;
  color: #32373a;
  transition: all 0.25s ease;
}
.navigation-menu .parent > li .child li a:hover {
  background-color: #fff;
}
.navigation-menu .parent > li .child li a:hover span {
  color: #7dc37d;
}
.navigation-menu .parent > li:hover .child {
  top: 4rem;
  opacity: 1;
  visibility: visible;
}
.navigation-menu .mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
  margin: 21px 0 24px 0;
}
.navigation-menu .mobile-header ul {
  list-style: none;
  margin: 0;
}
.navigation-menu .mobile-header ul li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  width: 35px;
  height: 35px;
  background-color: #fff;
  border-radius: 50%;
}
.navigation-menu .mobile-header ul li i {
  font-size: 14px;
  color: #7dc37d;
}
.navigation-menu .mobile-header ul li:nth-child(n+2) {
  margin-left: 0.5rem;
}
.navigation-menu .search {
  display: none;
  position: relative;
}
.navigation-menu .search input {
  width: 100%;
  height: 5.5rem;
  background-color: #bbe7bb;
  border: none;
  outline-color: transparent;
  font-size: 1.6rem;
  color: #32373a;
  padding: 0 5rem 0 2.8rem;
}
.navigation-menu .search button {
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  right: 2.8rem;
  transform: translateY(-50%);
}
.navigation-menu .search button i {
  font-size: 1.6rem;
  color: #7dc37d;
}
.navigation-menu .tagline {
  width: 35%;
  font-size: 14px;
  font-weight: 500;
  line-height: 2rem;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 2.3rem;
  display: none;
}
@media (max-width: 992px) {
  .navigation-menu {
    position: absolute;
    top: calc(var(--border) * -1 - 5.8rem);
    left: calc(-100% - 6rem);
    width: calc(100% + 4rem);
    height: 100vh;
    background-color: #7dc37d;
    background-image: url("../images/patterns/pattern-5.png");
    background-repeat: no-repeat;
    background-size: 200%;
    background-position: center center;
    transition: all 0.25s ease;
  }
  .navigation-menu .close-button {
    display: none;
    position: relative;
    z-index: 500;
  }
  .navigation-menu .mobile-header {
    display: flex;
  }
  .navigation-menu .tagline {
    display: block;
  }
  .navigation-menu .parent > li {
    display: block;
  }
  .navigation-menu .parent > li::after {
    display: none;
  }
  .navigation-menu .parent > li > a {
    display: block;
  }
  .navigation-menu .parent > li > a > span {
    display: block;
    color: #fff;
    width: 100%;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: 500;
  }
  .navigation-menu .parent > li span::before {
    display: none;
  }
  .navigation-menu .parent > li.main-search {
    display: none;
  }
  .navigation-menu .parent > li.has-child a {
    position: relative;
  }
  .navigation-menu .parent > li.has-child a::after {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    transition: all 0.25s ease;
  }
  .navigation-menu .parent > li.has-child .child {
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    border: none;
  }
  .navigation-menu .parent > li.has-child .child a::after {
    content: "\f105";
    color: #7dc37d;
  }
  .navigation-menu .parent > li .child {
    position: relative;
    top: 0 !important;
    opacity: 1 !important;
    visibility: visible;
    display: none;
    padding: 0;
    background-color: #fff;
  }
  .navigation-menu .parent > li .child li a {
    padding: 0;
  }
  .navigation-menu .parent > li .child li a span {
    display: inline-block;
    color: #656f75;
    font-size: 20px;
    font-weight: 500;
    padding: 11.5px 40px;
  }
  .navigation-menu .parent > li .child li:first-child {
    padding-top: 19.75px;
  }
  .navigation-menu .parent > li .child li:last-child {
    padding-bottom: 19.75px;
  }
  .navigation-menu .parent > li + li {
    margin-left: 0;
  }
  .navigation-menu .parent > li.has-child.dropped > a::after {
    transform: translateY(-50%) rotate(180deg);
  }
}
@media (max-width: 768px) {
  .navigation-menu .tagline {
    width: 46%;
  }
}
@media (max-width: 730px) {
  .navigation-menu {
    top: calc(var(--border) * -1 - 3.7rem);
  }
}
@media (max-width: 350px) {
  .navigation-menu .mobile-header {
    flex-direction: column;
  }
  .navigation-menu .mobile-header ul {
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  .navigation-menu .has-child .child {
    position: absolute !important;
    max-height: initial !important;
    transition: all 0.25s ease !important;
  }
}
.navigation.scrolled .navigation-inner {
  top: 0;
  padding: 3.1rem 5rem 2rem 5rem;
  background-color: #fff;
}
@media (max-width: 992px) {
  .navigation.scrolled .navigation-inner {
    padding: 3.1rem 2rem 3.1rem 2rem;
  }
}
@media (max-width: 992px) {
  .navigation.scrolled .navigation-menu {
    top: 0;
  }
}
.navigation.scrolled .navigation-menu .parent li:hover .child {
  top: 5.7rem;
}
.navigation-bar {
  width: 4rem;
  height: 16px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.25s ease;
}
.navigation-bar div {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #7dc37d;
}
@media (max-width: 992px) {
  .navigation-bar {
    display: flex;
  }
}
@media (max-width: 992px) {
  .navigation-inner {
    top: 8rem;
    align-items: center;
    padding: 0 2rem 0 2rem;
  }
  .navigation-inner .search {
    display: block;
  }
}
@media (max-width: 730px) {
  .navigation-inner {
    top: 5rem;
  }
}
.navigation.shown .navigation-menu {
  left: -2rem;
}

/****************************************
top menu
****************************************/
.top-menu-wrapper {
  position: relative;
  left: 0;
  z-index: 500;
  width: 100%;
  padding: 0.8rem 5rem 0.8rem 5rem;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 992px) {
  .top-menu-wrapper {
    padding: 0.8rem 2rem 0.8rem 2rem;
  }
}
.top-menu .tagline p {
  font-size: 1.3rem;
  font-weight: 500;
  color: #656f75;
  margin: 0;
}
.top-menu .menu ul {
  list-style: none;
  margin: 0;
}
.top-menu .menu ul li {
  display: inline-block;
}
.top-menu .menu ul li + li {
  margin-left: 3.3rem;
}
.top-menu .menu ul li.phone {
  font-size: 1.2rem;
  font-weight: 500;
  color: #7dc37d;
  transition: all 0.25s ease;
}
.top-menu .menu ul li.phone:hover {
  color: #32373a;
}
@media (max-width: 730px) {
  .top-menu {
    display: none;
  }
}

/****************************************
search
****************************************/
.main-search {
  cursor: pointer;
}
.main-search-lightbox .gprev,
.main-search-lightbox .gnext {
  display: none;
}
.main-search-content {
  position: relative;
}
.main-search-content input:not([type=checkbox]):not([type=radio]):not([type=range]) {
  padding-right: 6rem;
}
.main-search-content button {
  background: transparent;
  border: none;
  position: absolute;
  top: 50%;
  right: 2.8rem;
  transform: translateY(-50%);
}
.main-search-content button i {
  font-size: 1.6rem;
  color: #7dc37d;
}

/****************************************
general
****************************************/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  margin-top: 0;
  padding: 0;
}
@media (max-width: 992px) {
  html {
    font-size: 57.5%;
  }
}
@media (max-width: 800px) {
  html {
    font-size: 55.5%;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 52.5%;
  }
}
@media (max-width: 600px) {
  html {
    font-size: 50.5%;
  }
}

body {
  font-family: "Libre Franklin", sans-serif;
  box-sizing: border-box;
  overflow-x: hidden;
}

.main-wrapper {
  width: 100%;
  padding: 0;
  border: var(--border) solid #7dc37d;
}
.main-wrapper > div {
  width: 100%;
}

/****************************************
cta section
****************************************/
.cta-section-wrapper {
  padding: 17.2rem 0 20rem 0;
  background-repeat: no-repeat;
  background-position: center center;
}
.cta-section .button-group {
  margin-top: 4.3rem;
}
@media (max-width: 992px) {
  .cta-section .button-group {
    margin-top: 1rem;
  }
}
.cta-section-1 .cta-section-wrapper .button-group {
  margin-top: 3.4rem;
}
@media (max-width: 992px) {
  .cta-section-1 .cta-section-wrapper {
    padding-bottom: 5.7rem;
  }
}
.cta-section-signature img {
  margin-top: 6.5rem;
}

/****************************************
testimonial section
****************************************/
.testimonial-wrapper {
  padding: 13.7rem 0 15rem 0;
  position: relative;
}
.testimonial-wrapper::after {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  z-index: 1;
}
.testimonial-1 .testimonial-wrapper::after {
  background-image: url("../images/testimonial-bg-1.jpg");
}
.testimonial-2 .testimonial-wrapper::after {
  background-image: url("../images/testimonial-bg-2.jpg");
}
.testimonial-3 .testimonial-wrapper::after {
  background-image: url("../images/testimonial-bg-3.jpg");
}
.testimonial .box-slider {
  margin-top: 3.9rem;
  position: relative;
  z-index: 2;
}
.testimonial-heading-content {
  position: relative;
  z-index: 2;
}
@media (max-width: 992px) {
  .testimonial-wrapper {
    padding-top: 5rem;
    padding-bottom: 0;
  }
  .testimonial-wrapper .row {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .testimonial-wrapper::after {
    display: block;
    position: relative;
    width: 100%;
    height: 50rem;
    margin-top: 5rem;
    background-position: top center;
  }
}

/****************************************
video lightbox
****************************************/
.video-lightbox .gprev,
.video-lightbox .gnext {
  display: none;
}

/****************************************
page bg
****************************************/
.page-bg-wrapper {
  position: relative;
}
.page-bg-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  top: -2.5%;
  right: 0;
  z-index: 1;
  width: 30%;
  height: 100%;
  background-image: url("../images/patterns/pattern-4rp.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.page-bg-content {
  position: relative;
  z-index: 2;
}

/****************************************
icon box slider section
****************************************/
.icon-box-section-wrapper {
  padding: 13.7rem 0 15rem 0;
  background-color: #bbe7bb;
}
.icon-box-section-inner {
  position: relative;
  z-index: 2;
}
.icon-box-section .icon-box-slider {
  margin-top: 3.9rem;
}

.pattern-bg {
  position: relative;
}
.pattern-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url("../images/patterns/pattern-2rp.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  z-index: 1;
}
.pattern-bg-content {
  position: relative;
  z-index: 2;
}

/****************************************
intro section
****************************************/
.intro {
  padding-top: 13.7rem;
}
@media (max-width: 992px) {
  .intro {
    padding-top: 5rem;
  }
}
.intro-content {
  width: 92%;
}
.intro-content p:not(:last-child) {
  margin-top: 2.5rem;
}
.intro-content img {
  margin-top: 3.6rem;
}
@media (max-width: 992px) {
  .intro-content {
    width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media (min-width: 1400px) {
  .intro .vertical-txt {
    margin-top: 8.6rem;
  }
}
@media (max-width: 1399px) {
  .intro .vertical-txt {
    margin-top: 5.6rem;
  }
}
.intro-bg {
  margin-top: 10rem;
}
@media (max-width: 992px) {
  .intro-bg {
    margin-top: 0rem;
  }
}

/****************************************
hero section
****************************************/
.hero {
  position: relative;
}
.hero-slide {
  width: 100%;
}
@media (max-width: 992px) {
  .hero-slide {
    min-height: 100%;
  }
}
.hero-slide-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-slide-content {
  text-align: center;
  width: 48%;
  margin: 27.7rem auto 50.5rem auto;
}
@media (max-width: 992px) {
  .hero-slide-content {
    width: 80%;
    margin: 20rem auto 30rem auto;
  }
}
.hero-slide-content .button-group {
  display: flex;
  align-items: center;
  margin: 5rem auto 0 auto;
  width: -moz-max-content;
  width: max-content;
}
.hero-slide-content .button-group p {
  font-size: 1.6rem;
  color: #32373a;
  margin: 0 0 0 3rem;
}
.hero-slide-content .button-group p > a {
  font-size: inherit;
  color: #7dc37d;
}
@media (max-width: 992px) {
  .hero-slide-content .button-group {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
  }
  .hero-slide-content .button-group .button {
    margin: 0;
  }
  .hero-slide-content .button-group p {
    display: block;
    width: 100%;
    margin: 1rem 0 0 1.4rem;
  }
}
.hero-pagination {
  margin-top: -25rem;
  z-index: 100;
  position: absolute;
  width: 100%;
}
.hero-pagination-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .hero-pagination {
    justify-content: space-between;
  }
}
.hero-pagination .visible-bullet {
  transition: all 0.25s ease;
}
.hero-pagination .swiper-slide {
  height: auto;
}
@media (max-width: 992px) {
  .hero-pagination-wrapper {
    max-width: 100%;
    padding: 0;
  }
}
.hero-pagination-bullet {
  background-color: transparent;
  height: -moz-max-content;
  height: max-content;
  padding-top: 6.8rem;
  cursor: pointer;
  transition: all 0.25s ease;
}
.hero-pagination-bullet p {
  font-size: 1.6rem;
}
@media (max-width: 992px) {
  .hero-pagination-bullet p {
    font-size: 1.8rem;
  }
}
.hero-pagination-bullet > div {
  display: inline-block;
  background-color: #fff;
  max-height: 100%;
  padding-left: 5rem;
  padding-right: 5rem;
  margin: 0 0.8rem;
  outline: transparent solid 0.4rem;
  transition: all 0.25s ease;
}
.hero-pagination-bullet-active > div {
  transform: translateY(-5rem);
  outline: #7dc37d solid 0.4rem;
}
@media (max-width: 992px) {
  .hero-pagination-bullet > div {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

/****************************************
hero 2 section
****************************************/
.hero-2-wrapper {
  position: relative;
  padding-top: 8.4rem;
  background-color: #bbe7bb;
  overflow: hidden;
}
@media (max-width: 992px) {
  .hero-2-wrapper {
    padding-top: 12rem;
  }
}
.hero-2-content {
  position: relative;
  z-index: 2;
}
.hero-2-content .button-group {
  margin-top: 3.6rem;
}
.hero-2-content .button-group p {
  margin: 1.5rem 0 0 1.2rem;
}
@media (max-width: 992px) {
  .hero-2-content {
    text-align: center;
  }
  .hero-2-content h1 {
    width: 70%;
    margin: 0 auto;
  }
}
.hero-2 .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-2-image {
  position: relative;
  max-width: 100%;
}
.hero-2-image .main {
  transform: translateX(6rem);
  max-width: 100%;
  position: relative;
  z-index: 2;
}
.hero-2-image .circle {
  width: 58rem;
  height: 58rem;
  border-radius: 50%;
  background-color: #cee7ce;
  position: absolute;
  top: 0;
  z-index: 1;
}
.hero-2-image .circle img {
  position: absolute;
  top: 8rem;
  left: 11.6rem;
  max-width: 100%;
}
@media (max-width: 992px) {
  .hero-2-image {
    text-align: center;
    margin-top: 3rem;
  }
  .hero-2-image .main {
    transform: none;
    max-width: 80%;
  }
  .hero-2-image .circle {
    left: 50%;
    transform: translateX(-70%);
    width: 60%;
    height: 60%;
  }
}
@media (max-width: 992px) {
  .hero-2 .container {
    max-width: 96%;
  }
}
.hero-2-absolute-img {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media (max-width: 992px) {
  .hero-2-absolute-img {
    display: none;
  }
}
.hero-2-pagination {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/****************************************
icon text section
****************************************/
.icon-text-wrapper {
  padding: 15rem 0;
}
@media (max-width: 992px) {
  .icon-text-wrapper {
    padding: 7rem 0 0 0;
  }
}
.icon-text-box-large {
  width: 52%;
  margin: 0 auto 10rem auto;
}
@media (max-width: 992px) {
  .icon-text-box-large {
    width: 80%;
    margin: 0 auto 5rem auto;
  }
}
.icon-text-row > div[class*=col] {
  padding: 14rem 0;
  border-top: 0.1rem solid #dbe3e8;
}
.icon-text-row > div[class*=col]:nth-child(odd) {
  border-right: 0.1rem solid #dbe3e8;
}
.icon-text-row > div[class*=col]:nth-child(even) .icon-text-box {
  margin-left: auto;
}
@media (max-width: 992px) {
  .icon-text-row > div[class*=col] {
    padding: 5rem 0;
  }
  .icon-text-row > div[class*=col]:nth-child(even) .icon-text-box {
    margin-left: initial;
  }
  .icon-text-row > div[class*=col]:nth-child(odd) {
    border-right: none;
  }
  .icon-text-row > div[class*=col] .icon-text-box {
    margin: 0 auto !important;
  }
}
.icon-text-row .icon-text-box {
  width: 53%;
}

/****************************************
tabs section
****************************************/
.tab-section-wrapper {
  padding: 15rem 0;
  background-color: #bbe7bb;
}
@media (max-width: 992px) {
  .tab-section-wrapper {
    padding: 5rem 0;
  }
}
.tab-section .nav {
  display: flex;
  border: none;
  flex-wrap: initial;
}
.tab-section .nav .nav-link {
  position: relative;
}
@media (max-width: 992px) {
  .tab-section .nav {
    padding: 0 2rem;
  }
}
.tab-section .nav .nav-link {
  width: -moz-max-content;
  width: max-content;
  height: -moz-max-content;
  height: max-content;
  border: none;
  text-align: center;
  color: unset;
  background-color: transparent;
}
.tab-section .nav .nav-link-placeholder {
  display: none;
}
@media (max-width: 992px) {
  .tab-section .nav .nav-link-placeholder {
    display: block;
  }
}
.tab-section .nav .nav-link div {
  background-color: #fff;
  padding: 7.3rem 4rem 6.7rem 4rem;
  outline: transparent solid 0.4rem;
}
.tab-section .nav .nav-link h3 {
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  line-height: 2.4rem;
  color: #7dc37d;
  margin-bottom: 1.9rem;
}
.tab-section .nav .nav-link p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #656f75;
}
.tab-section .nav .nav-link.active div {
  outline: #7dc37d solid 0.4rem;
}
@media (min-width: 992px) {
  .tab-section .nav .nav-link:nth-child(n+3) {
    margin-top: 1.5rem;
  }
}
@media (min-width: 992px) {
  .tab-section .nav {
    display: grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    transform: none !important;
  }
}
.tab-section .tab-content .tab-pane > p {
  margin: 2.4rem 0 3.4rem 0;
}
.tab-section .tab-content .button-group {
  display: flex;
  align-items: center;
  margin-left: 0;
}
.tab-section .tab-content .button-group .button {
  margin: 0 2rem 0 0;
}
.tab-section .tab-content .button-group p {
  margin: 0;
}
@media (max-width: 992px) {
  .tab-section .tab-content {
    margin-top: 5rem;
    padding: 0 2rem;
  }
  .tab-section .tab-content .button-group {
    flex-wrap: wrap;
  }
  .tab-section .tab-content .button-group .button-group {
    margin-top: 0;
  }
  .tab-section .tab-content .button-group p {
    margin: 2rem 0 0 0;
  }
}

/****************************************
icon text 2 section
****************************************/
.icon-text-2-wrapper {
  padding-top: 7rem;
}
.icon-text-2-header {
  margin-bottom: 4.2rem;
}
.icon-text-2-header .paragraph {
  margin: 2.5rem 0;
}
@media (max-width: 992px) {
  .icon-text-2-header {
    margin-bottom: 2rem;
  }
}
@media (max-width: 992px) {
  .icon-text-2 .row {
    padding: 0 2rem;
  }
}
.icon-text-2-row div[class*=col] {
  padding: 9rem 0 6rem 0;
}
.icon-text-2-row div[class*=col]:nth-child(3n+2) {
  border-left: 0.1rem solid #dbe3e8;
  border-right: 0.1rem solid #dbe3e8;
  display: flex;
  justify-content: center;
}
.icon-text-2-row div[class*=col]:nth-child(n+4) {
  border-top: 0.1rem solid #dbe3e8;
}
.icon-text-2-row div[class*=col]:nth-child(3n+3) {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .icon-text-2-row div[class*=col] {
    display: flex;
    padding: 5rem 0 4rem 0;
  }
  .icon-text-2-row div[class*=col]:nth-child(3n+2) {
    border: none;
    justify-content: flex-start;
  }
  .icon-text-2-row div[class*=col]:nth-child(3n+3) {
    justify-content: flex-start;
  }
  .icon-text-2-row div[class*=col]:nth-child(n+4) {
    border-top: none;
  }
  .icon-text-2-row div[class*=col]:not(last-child):not(:first-child) {
    border-top: 0.1rem solid #dbe3e8 !important;
  }
}
@media (max-width: 992px) {
  .icon-text-2-row.row {
    padding: 0 2rem 0 4rem;
  }
}
.icon-text-2-single {
  width: 66%;
}
.icon-text-2-single h4 {
  margin: 4rem 0 1rem 0;
}
@media (max-width: 992px) {
  .icon-text-2-single {
    text-align: center;
    margin: 0 auto;
  }
  .icon-text-2-single .icon-circle {
    margin: 0 auto;
  }
}

/****************************************
team
****************************************/
.team-wrapper {
  padding: 6rem 0 14rem 0;
}
@media (max-width: 992px) {
  .team-wrapper {
    padding: 5rem 0;
  }
}
.team-header {
  margin-bottom: 9.2rem;
}
.team-header p {
  margin: 2.5rem 0 0 0;
}
@media (max-width: 992px) {
  .team-header {
    margin-bottom: 5rem;
  }
  .team-header p {
    margin: 1.5rem 0 0 0;
  }
}
.team-member-row {
  margin-top: -9.5rem;
}
.team-member-row > div[class*=col] {
  margin-top: 9.5rem;
}
@media (max-width: 992px) {
  .team-member-row {
    margin-top: -3rem;
  }
  .team-member-row > div[class*=col] {
    margin-top: 3rem;
  }
}
@media (max-width: 992px) {
  .team .row {
    padding: 0 2rem;
  }
}

/****************************************
page header
****************************************/
.page-header-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  padding: 26.2rem 0 9.2rem 0;
}
@media (max-width: 992px) {
  .page-header-wrapper {
    padding: 15rem 0 5rem 0;
  }
}
@media (max-width: 992px) {
  .page-header-content {
    padding: 0 2rem 0 2rem;
  }
}
.page-header-content p {
  margin-top: 24rem;
}
@media (max-width: 992px) {
  .page-header-content p {
    margin-top: 5rem;
  }
}
.page-header-list {
  margin-top: 9rem;
}
.page-header-list-1 {
  margin-top: 19.5rem;
}
.page-header-list-content ul {
  list-style: none;
}
.page-header-list-content ul li {
  display: inline-block;
}
.page-header-list-content ul li:not(:last-child) {
  margin-right: 3.8rem;
}
@media (max-width: 992px) {
  .page-header-list-content {
    padding: 0 2rem;
  }
  .page-header-list-1 {
    margin-top: 12rem;
  }
}

/****************************************
contact
****************************************/
.contact-wrapper {
  padding: 9.5rem 0 15rem 0;
}
@media (max-width: 992px) {
  .contact-wrapper {
    padding: 5rem 2rem;
  }
}
.contact-header p {
  margin-top: 3.2rem;
}
.contact-detail-row {
  margin-top: 5rem;
}
.contact-detail-row > div[class*=col]:not(:last-child) {
  position: relative;
}
.contact-detail-row > div[class*=col]:not(:last-child)::after {
  content: "";
  width: 0.1rem;
  height: 130%;
  background-color: #d9e1e7;
  position: absolute;
  top: -30%;
  right: 20%;
  display: block;
}
@media (max-width: 1200px) {
  .contact-detail-row > div[class*=col]:not(:last-child)::after {
    right: 10%;
  }
}
@media (max-width: 576px) {
  .contact-detail-row > div[class*=col]:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 992px) {
  .contact-detail-row > div[class*=col]:nth-child(n+3) {
    border-top: 0.1rem solid #d9e1e7;
    padding-top: 5rem;
  }
}
@media (max-width: 992px) {
  .contact-detail-row > div[class*=col]:nth-child(even)::after {
    display: none;
  }
}
@media (max-width: 992px) {
  .contact-detail-row {
    margin-top: 0;
  }
  .contact-detail-row > div[class*=col] {
    margin-top: 5rem;
  }
}
@media (max-width: 575px) {
  .contact-detail-row {
    display: flex;
    justify-content: flex-start;
  }
  .contact-detail-row > div[class*=col] {
    width: 100%;
  }
  .contact-detail-row > div[class*=col]:not(:first-child) {
    border-top: 0.1rem solid #dbe3e8;
    padding-top: 5rem;
    margin-top: 2.5rem;
  }
}
@media (max-width: 400px) {
  .contact-detail-row {
    justify-content: flex-start;
  }
}
.contact-detail-single .icon-circle {
  margin-left: 2.1rem;
}
.contact-detail-single h6 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.01rem;
  margin-top: 3.6rem;
}
@media (max-width: 992px) {
  .contact-detail-single h6 {
    font-size: 1.3rem;
  }
}
.contact-detail-single .social {
  list-style: none;
}
.contact-detail-single .social li {
  display: inline-block;
}
.contact-detail-single .social li a {
  font-size: 2rem;
  line-height: 3.4rem;
  color: #bcc7d0;
  transition: all 0.25s ease;
}
.contact-detail-single .social li a:hover {
  color: #7dc37d;
}
@media (max-width: 992px) {
  .contact-detail-single .social li a {
    font-size: 2.2rem;
  }
}
.contact-detail-single .social li + li {
  margin-left: 1.4rem;
}
@media (max-width: 575px) {
  .contact-detail-single {
    display: flex;
  }
  .contact-detail-single h6 {
    margin-top: 0;
  }
  .contact-detail-single > div {
    margin-left: 3rem;
  }
}
.contact-location-row {
  margin-top: 5.3rem;
}
.contact-location-row > h3 {
  font-size: 2.4rem;
  font-weight: 500;
  color: #32373a;
  margin-bottom: 3.7rem;
}
.contact-location-row > div[class*=col]:nth-of-type(n+3) {
  margin-top: 3rem;
}
@media (max-width: 992px) {
  .contact-location-row {
    margin-top: 5rem;
  }
  .contact-location-row > h3 {
    margin-bottom: 0;
  }
  .contact-location-row > div[class*=col]:nth-child(n+2) {
    margin-top: 3rem;
  }
}
.contact-location-single {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 600px) {
  .contact-location-single {
    grid-template-columns: 1fr;
    grid-template-rows: 30rem 1fr;
  }
}
.contact-location-single figure {
  width: 100%;
  height: 100%;
}
.contact-location-single figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.contact-location-single-content {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #bbe7bb;
}
.contact-location-single-content h5 {
  font-size: 2rem;
  margin-bottom: 1.4rem;
}
.contact-location-single-content a {
  display: block;
}
.contact-location-single-content p {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .contact-location-single-content {
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem;
  }
}
.contact-form-wrapper {
  background-color: #bbe7bb;
  padding: 14.5rem 0 15rem 0;
}
@media (max-width: 992px) {
  .contact-form-wrapper {
    padding: 5rem 2rem;
  }
}
.contact-form-header {
  margin-bottom: 3.3rem;
}
.contact-form-header h2 {
  margin-bottom: 3.3rem;
}
.contact-form form input:not([type=checkbox]):not([type=radio]), .contact-form form textarea {
  background-color: #fff;
}

/****************************************
career
****************************************/
.career-wrapper {
  padding: 14rem 0 15rem 0;
}
@media (max-width: 992px) {
  .career-wrapper {
    padding: 5rem 2rem;
  }
}

/****************************************
section wrapper
****************************************/
@media (max-width: 992px) {
  .section-wrapper {
    padding-top: 5rem;
    padding-bottom: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .section-wrapper-1 {
    padding-top: 5rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}