@import url("root.css");
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
}
.headerside {
  height: var(--header);
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 1rem;
  border-radius: 0 0 1rem 1rem;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
.headersideleft {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.headersideright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1rem;
}
.logo {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  width: 18rem;
}
@media (min-width: 576px) {
  .logo {
    width: 20rem;
  }
}
@media (min-width: 768px) {
  .logo {
    width: 25rem;
  }
}
.logo a {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.menulinks {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 1rem;
  column-gap: 2rem;
}
.menulinks a {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--textcolor);
  transition: all 300ms ease;
  position: relative;
  overflow: hidden;
  z-index: 0;
  padding: 0.3rem 0.8rem;
}
@media (min-width: 1500px) {
  .menulinks a {
    font-size: 1.6rem;
  }
}
.menulinks a::before {
  content: "";
  position: absolute;
  top: 0;
  z-index: 1;
  width: 136%;
  height: 100%;
  background-color: var(--colorgreen);
  -webkit-transform-origin: 200% 0;
  transform-origin: 200% 0;
  left: 0;
  -webkit-transform: skew(-23deg) translateX(-101%);
  transform: skew(-23deg) translateX(-101%);
  transition: all 300ms ease;
  z-index: -1;
}
.menulinks a:hover::before {
  -webkit-transform: skew(-23deg) translateX(0);
  transform: skew(-23deg) translateX(0);
}
.menulinks a:hover {
  color: var(--textcolor);
}
.menulinks a.active::before {
  -webkit-transform: skew(-23deg) translateX(0);
  transform: skew(-23deg) translateX(0);
}
.getstarted {
  background-color: var(--colorgreen);
  color: var(--textcolor);
  padding: 1rem 2rem;
  border-radius: 5rem;
  display: inline-block;
  font-weight: 500;
  font-size: 1.5rem;
  position: relative;
  z-index: 0;
  overflow: hidden;
  transition: all 300ms ease-in-out;
}
.getstarted i {
  margin-right: 0.5rem;
}
.getstarted::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--colorgreenhover);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.getstarted:hover::before {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.getstarted:hover {
  color: #fff;
}
.entry {
  position: relative;
  padding: 12rem 0 7rem 0;
  background-image: url("../images/bg.png");
  background-position: center center;
  background-repeat: repeat;
  background-size: 40% auto;
  background-attachment: fixed;
}
@media (min-width: 576px) {
  .entry {
    padding: 14rem 0 7rem 0;
  }
}
@media (min-width: 992px) {
  .entry {
    padding: 18rem 0 7rem 0;
  }
}
@media (min-width: 1600px) {
  .entry {
    padding: 25rem 0 15rem 0;
  }
}
.entryside {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .entryside {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.entrysideleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 4rem;
}
@media (min-width: 992px) {
  .entrysideleft {
    flex: 1.2;
    padding-right: 5rem;
    margin-bottom: 0;
  }
}
.entrysideleft h1 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .entrysideleft h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 768px) {
  .entrysideleft h1 {
    font-size: 4.5rem;
  }
}
@media (min-width: 992px) {
  .entrysideleft h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .entrysideleft h1 {
    font-size: 4rem;
  }
}
@media (min-width: 1400px) {
  .entrysideleft h1 {
    font-size: 5rem;
  }
}
.entrysideleftcontent {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 2rem;
}
.entrysideleftcontent figure {
  width: 5rem;
  height: 5rem;
  display: none;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1200px) {
  .entrysideleftcontent figure {
    display: flex;
  }
}
.entrysideleftcontent .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 1200px) {
  .entrysideleftcontent .content {
    width: calc(100% - 5rem);
    padding-left: 1rem;
  }
}
.entrysideleftcontent .content p {
  font-size: 1.6rem;
}
.entrysubtitle {
  font-size: 1.8rem;
  font-weight: 700;
  font-style: italic;
  margin-bottom: 0.5rem;
}
.entrysideright {
  display: flex;
  flex: 1;
  position: relative;
}
.entrymainimages {
  width: 100%;
  position: relative;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.entryimagesicons1 {
  width: 10rem;
  height: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
  border-bottom-right-radius: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.imageclass1 {
  width: 6rem;
  height: 6rem;
  background-color: var(--textcolor);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  padding: 1rem;
}
.entrybuttons {
  margin-top: 4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
}
.entrybuttons a {
  position: relative;
  color: var(--textcolor);
  font-size: 1.6rem;
  font-weight: 500;
  font-family: var(--titlefontfam);
  transition: all 300ms ease;
  z-index: 0;
}
.linkstyle1 {
  padding: 1.2rem 3rem;
  border-radius: 5rem;
  background-color: var(--colorgreen);
  overflow: hidden;
}
.linkstyle1::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--colorgreenhover);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.linkstyle1:hover::before {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.linkstyle1:hover {
  color: var(--textcolor);
}
.linkstyle2::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0.2rem;
  left: auto;
  right: 0;
  bottom: -0.5rem;
  background-color: var(--colorgreen);
  transition: width 400ms ease, color 400ms ease;
}
.linkstyle2:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.linkstyle2:hover {
  color: var(--colorgreen);
}
.marquee {
  background-color: var(--colorgreen);
  padding: 2rem 0;
  overflow: hidden;
}
.marqueewrapper {
  display: flex;
  column-gap: 3rem;
}
.marqueewrapper a {
  white-space: nowrap;
  font-size: 1.6rem;
  color: var(--textcolor);
}
.homeaboutcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 1200px) {
  .homeaboutcontent {
    height: 100%;
    padding-left: 5rem;
  }
}
.homeaboutcontent p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #eae7f3;
}
.homeaboutcontent blockquote {
  margin: 2rem 0;
  border-left: 0.5rem solid var(--colorgreen);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
}
.homeaboutcontent blockquote p {
  font-size: 1.6rem;
  color: #eae7f3;
  margin: 0;
}
.homeaboutcontent blockquote span {
  font-size: 1.6rem;
  color: var(--colorgreen);
}
.abouttitle {
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.abouttitle span {
  color: var(--colorgreen);
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .abouttitle span {
    font-size: 1.8rem;
  }
}
.abouttitle h2 {
  color: #eae7f3;
  font-size: 2.5rem;
  font-weight: 900;
}
@media (min-width: 768px) {
  .abouttitle h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .abouttitle h2 {
    font-size: 4.5rem;
  }
}

.homeaboutimages {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .homeaboutimages {
    margin-bottom: 0;
  }
}
.aboutlinks {
  padding: 1.2rem 3rem;
  background-color: var(--colorgreen);
  color: var(--textcolor);
  position: relative;
  overflow: hidden;
  transition: all 300ms ease;
  margin-top: 2rem;
  border-radius: 5rem;
  font-weight: 500;
  font-size: 1.6rem;
  z-index: 0;
  display: inline-block;
}
.aboutlinks::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--colorgreenhover);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.aboutlinks:hover::before {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.aboutlinks:hover {
  color: #fff;
}
.aboutlinks i {
  display: inline-block;
  transition: all 300ms ease;
}
.aboutlinks:hover i {
  transform: translateX(0.5rem);
}
.abouts {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.abouts::before {
  content: "";
  position: absolute;
  top: 10rem;
  left: -10rem;
  clip-path: polygon(0 0, 0% 100%, 43% 7%);
  background-color: var(--colorgreen);
  width: 30rem;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .abouts::before {
    left: -5rem;
  }
}
.abouts::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5rem;
  clip-path: polygon(100% 0, 100% 100%, 68% 86%);
  background-color: var(--colorgreen);
  width: 30rem;
  height: 100%;
  z-index: -1;
  opacity: 0.6;
}
@media (min-width: 768px) {
  .abouts::after {
    right: 0;
  }
}
.services .abouttitle h2 {
  color: var(--textcolor);
}
.serviceshometext {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (min-width: 1200px) {
  .serviceshometext {
    position: sticky;
    top: 18rem;
    margin-bottom: 0;
  }
}
.serviceshometext p {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.serviceshometext blockquote {
  padding: 1rem;
  border-left: 0.5rem solid var(--colorgreen);
  margin: 0;
}
.serviceshometext blockquote p {
  margin: 0;
}
.serviceboxes {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
@media (min-width: 1200px) {
  .serviceboxes {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
}
.serviceimages {
  width: 100%;
  height: 18rem;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .serviceimages {
    height: 25rem;
  }
}
@media (min-width: 768px) {
  .serviceimages {
    height: 20rem;
  }
}
@media (min-width: 1200px) {
  .serviceimages {
    width: 18rem;
    height: 18rem;
    margin-bottom: 0;
  }
}
.serviceimages img {
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease;
}
.serviceboxes .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .serviceboxes .content {
    flex: 1;
  }
}
@media (min-width: 1200px) {
  .serviceboxes .content {
    width: calc(100% - 18rem);
    height: 100%;
    padding-left: 2rem;
  }
}
.serviceboxes .content .contenttop {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.serviceboxes .content .contenttop h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.serviceboxes .content .contenttop h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.serviceboxes .content .contenttop p {
  font-size: 1.5rem;
}
.serviceboxes .content .contentbottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.serviceboxes .content .contentbottom a {
  color: var(--textcolor);
  font-weight: 500;
  font-size: 1.5rem;
  margin-top: 1rem;
  transition: all 300ms ease;
}
.serviceboxes .content .contentbottom a:hover {
  color: var(--colorgreen);
}
.serviceboxes .content .contentbottom .stripe-bar {
  height: 10px;
}
.serviceboxes:hover .serviceimages img {
  transform: scale(1.2);
  filter: brightness(0.5);
}
.serviceboxes:hover .content .contenttop h3 a {
  color: var(--colorgreen);
}
.aboutsend {
  width: 100%;
  height: 40rem;
  clip-path: polygon(100% 0, 89% 19%, 0 0);
  background-color: var(--darkBG);
  margin-top: -1px;
  margin-bottom: -35rem;
  overflow: hidden;
}
.commentboxes {
  border-radius: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #131315;
  position: relative;
  padding: 2rem;
  z-index: 0;
}
@media (min-width: 768px) {
  .commentboxes {
    padding: 5rem;
  }
}
.commentboxes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30%;
  right: 0;
  height: 30rem;
  clip-path: polygon(100% 0, 0 0, 87% 14%);
  background-color: var(--colorgreen);
  z-index: -1;
}
.commentboxestop {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2rem;
}
.commentboxestop .stars {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.1rem;
  margin-bottom: 1rem;
}
.commentboxestop .stars i {
  font-size: 1.6rem;
  color: #fff;
}
.commentboxestop .stars i.checked {
  color: var(--colorgreen);
}
.commentboxestop h3 {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.commentboxestop p {
  color: var(--colorgreen);
  font-size: 1.4rem;
}
.commenttext {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.commenttext p {
  color: #fff;
  font-size: 1.5rem;
}
.comments {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.comments::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 50rem;
  clip-path: polygon(100% 0, 0 0, 92% 14%);
  background-color: #fff;
}
.comments::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40rem;
  clip-path: polygon(5% 87%, 0% 100%, 100% 100%);
  background-color: #fff;
}
.faq .abouttitle h2 {
  color: var(--textcolor);
}
.faqcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 4rem;
}
@media (min-width: 1200px) {
  .faqcontent {
    margin-bottom: 0;
  }
}
.faqcontentitem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.faqcontentitemtitle {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  padding: 1rem;
  background-color: #f6f6f6;
  border-left: 0.5rem solid var(--colorgreen);
}
.faqcontentitemtitle h3 {
  font-family: var(--titlefontfam);
  font-size: 1.5rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .faqcontentitemtitle h3 {
    font-size: 1.6rem;
  }
}
.faqcontenttext {
  padding: 2rem;
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: flex-start;
}
.faqcontenttext p {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .faqcontenttext p {
    font-size: 1.6rem;
  }
}
.faqcontentitem.active .faqcontenttext {
  display: flex;
}
.faqimage {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
@media (min-width: 768px) {
  .faqimage {
    height: 100%;
  }
}
@media (min-width: 992px) {
  .faqimage {
    height: auto;
  }
}
.faqimage img {
  object-fit: cover;
  aspect-ratio: 5/4;
  height: 100%;
}
.faqimage .content {
  position: absolute;
  padding: 2rem;
  background: #000000;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  bottom: 0;
  left: 0;
  width: 100%;
}
.faqimage .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.faqimage .content p {
  font-size: 1.6rem;
  color: #fff;
  opacity: 0.8;
}
.faqlinks {
  background-color: #fff;
  padding: 1.1rem 3rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  border-radius: 5rem;
  margin-top: 2rem;
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 500;
}
.faqlinks:hover {
  color: #fff;
  background-color: var(--colorgreen);
}
.parallax {
  position: relative;
  z-index: 0;
  overflow: hidden;
  background-image: url("../images/parallax.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media (min-width: 1200px) {
  .parallax {
    background-attachment: fixed;
  }
}
.parallax::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  background-color: #fff;
  clip-path: polygon(100% 0, 0 0, 89% 9%);
  z-index: 1;
  height: 30rem;
}
.parallax::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  background-color: #fff;
  clip-path: polygon(100% 100%, 0 100%, 9% 79%);
  z-index: 1;
  height: 15rem;
}
.parallaxoverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 0;
}
.parallaxcontent {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
}
.parallaxcontent h2 {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 2rem;
}
@media (min-width: 576px) {
  .parallaxcontent h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .parallaxcontent h2 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .parallaxcontent h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .parallaxcontent h2 {
    font-size: 4rem;
  }
}
@media (min-width: 1500px) {
  .parallaxcontent h2 {
    font-size: 6rem;
  }
}
.parallaxcontent p {
  font-size: 1.5rem;
  color: #fff;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .parallaxcontent p {
    font-size: 1.6rem;
  }
}
.parallaxbuttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 1rem;
}
.parallaxbuttons a {
  padding: 1.1rem 2rem;
  border-radius: 5rem;
  display: inline-block;
  font-size: 1.5rem;
  transition: all 300ms ease;
  overflow: hidden;
  z-index: 0;
  position: relative;
  background-color: var(--colorgreen);
  color: var(--textcolor);
  font-weight: 500;
  transition: all 300ms ease;
}
@media (min-width: 768px) {
  .parallaxbuttons a {
    font-size: 1.6rem;
    padding: 1.1rem 3rem;
  }
}
.parallaxbuttons a:hover {
  color: #fff;
}
.parallaxbuttons a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--colorgreenhover);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.parallaxbuttons a:hover::before {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.homeblog .abouttitle h2 {
  color: var(--textcolor);
}
.blogbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
.blogboximage {
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.blogboximage img {
  transition: all 1.2s ease;
  object-fit: cover;
}
.blogbox:hover .blogboximage img {
  transform: scale(1.2);
  filter: brightness(50%);
}
.blogbox .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 2rem;
}
.blogbox .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 1500px) {
  .blogbox .content h3 {
    font-size: 1.7rem;
  }
}
.blogbox .content h3 a {
  color: var(--textcolor);
  transition: color 300ms ease;
}
.blogbox:hover .content h3 a {
  color: var(--colorgreen);
}
.blogbox .content p {
  font-size: 1.6rem;
  flex: 1;
}
.bloglinks {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  transition: all 300ms ease;
  color: var(--textcolor);
  margin-top: 1rem;
}
.bloglinks i {
  display: inline-block;
  transition: all 300ms ease;
}
.bloglinks:hover {
  color: var(--textcolor);
}
.bloglinks:hover i {
  transform: translateX(0.5rem);
  color: var(--colorgreen);
}
.blogdate {
  position: absolute;
  bottom: 0;
  right: 1rem;
  writing-mode: vertical-rl;
  font-size: 1.5rem;
  background-color: #fafafa;
  border-radius: 5rem 5rem 0 0;
  padding: 2rem 0.8rem;
  font-weight: 500;
  z-index: 1;
}
.footer {
  padding: 8rem 0 2rem 0;
  background-color: var(--darkBG);
  position: relative;
  z-index: 0;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  top: -1px;
  background-color: #fff;
  height: 30rem;
  clip-path: polygon(100% 0, 0 0, 88% 17%);
  z-index: 1;
}
.footerbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footerbox h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .footerbox h2 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1400px) {
  .footerbox h2 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}
.footercontact {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.footercontact span {
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  position: relative;
}
.footercontact span::after {
  content: "";
  position: absolute;
  right: -2.8rem;
  width: 2rem;
  top: 1.3rem;
  height: 0.2rem;
  background-color: var(--colorgreen);
  border-radius: 3rem;
}
.footercontact span i {
  font-weight: 300;
}
.footercontact a {
  color: #fff;
  transition: color 300ms ease;
}
.footercontact a:hover {
  color: var(--colorgreen);
}
.footerbox h3 {
  margin-bottom: 2rem;
  color: #fff;
  font-weight: 700;
}
.footerbox p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
}
.footerboxsocial {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
  margin-top: 2rem;
}
.footerboxsocial a {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.2rem solid var(--colorgreen);
  color: var(--colorgreen);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 300ms ease;
}
.footerboxsocial a:hover {
  background-color: var(--colorgreen);
  color: var(--darkBG);
}
.footerboxsocial a i {
  transition: all 300ms ease;
  display: inline-block;
}
.footerboxsocial a:hover i {
  transform: rotate(360deg);
}
@media (min-width: 1200px) {
  .fbleft5 {
    padding-left: 5rem;
  }
}
.deep {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 0.1rem dashed rgba(255, 255, 255, 0.1);
}
.deepleft {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .deepleft {
    flex-wrap: nowrap;
    justify-content: flex-start;
    text-align: left;
    row-gap: 0;
    column-gap: 2rem;
  }
}
.deepleft a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
  font-weight: 300;
  transition: all 300ms ease;
}
.deepleft a:hover {
  color: var(--colorgreen);
  text-decoration: underline;
}
.deepright {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .deepright {
    justify-content: flex-end;
    margin-top: 0;
  }
}
.deepright a {
  font-size: 2rem;
  font-family: "pill";
  color: #fff;
  transition: color 300ms ease;
}
.deepright a:hover {
  color: var(--colorgreen);
}
.banners {
  padding: 15rem 0 8rem 0;
  background: radial-gradient(
        circle,
        transparent 20%,
        #85ee00 20%,
        #85ee00 80%,
        transparent 80%,
        transparent
      )
      0% 0% / 52px 52px,
    radial-gradient(
        circle,
        transparent 20%,
        #85ee00 20%,
        #85ee00 80%,
        transparent 80%,
        transparent
      )
      26px 26px / 52px 52px,
    linear-gradient(#6bbd00 1.5px, transparent 1.5px) 0px -0.75px / 26px 26px,
    linear-gradient(90deg, #6bbd00 1.5px, #85ee00 1.5px) -0.75px 0px / 26px 26px
      #85ee00;
  background-size: 52px 52px, 52px 52px, 26px 26px, 26px 26px;
  background-color: #85ee00;
  position: relative;
  z-index: 0;
}
.banners::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  background-color: #fff;
  clip-path: polygon(65% 85%, 0 100%, 100% 100%);
  height: 25rem;
  z-index: -1;
}
.bannerscontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.bannerscontent h1 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .bannerscontent h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .bannerscontent h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .bannerscontent h1 {
    font-size: 4rem;
  }
}
.breadcrumbs {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .breadcrumbs {
    flex-wrap: nowrap;
  }
}
.breadcrumbs li {
  position: relative;
  font-weight: 500;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .breadcrumbs li {
    font-size: 1.6rem;
  }
}
.breadcrumbs li a {
  font-size: 1.4rem;
  color: var(--textcolor);
  font-weight: 500;
}
@media (min-width: 768px) {
  .breadcrumbs li a {
    font-size: 1.6rem;
  }
}
.breadcrumbs li.active {
  font-weight: 700;
  text-decoration: underline;
}
.breadcrumbs li:not(:last-child)::after {
  content: "\EA6E";
  position: absolute;
  font-family: "remixicon";
  right: -1.4rem;
  color: var(--textcolor);
  top: 0.5rem;
  font-size: 1rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .breadcrumbs li:not(:last-child)::after {
    right: -1.6rem;
    font-size: 1.2rem;
  }
}
.bloginlineimages {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .bloginlineimages img {
    aspect-ratio: 20 / 9;
    object-fit: cover;
  }
}
.blogarticles {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) {
  .blogarticles {
    width: 70rem;
    margin: 0 auto;
  }
}
@media (min-width: 1500px) {
  .blogarticles {
    width: 90rem;
  }
}
.blogarticletitle {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
}
.blogarticletitle h2 {
  font-size: 2rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .blogarticletitle h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .blogarticletitle h2 {
    font-size: 3rem;
  }
}
.contactform {
  width: 100%;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}
.contactform h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}
.contactform .form-group {
  margin-bottom: 1rem;
}
.contactform .form-group label {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.contactform .form-control {
  padding: 1rem;
  font-size: 1.6rem;
  border: 0.1rem solid #eaeaea;
  transition: all 300ms ease;
  background-color: #f1f1f1;
  outline: none;
  box-shadow: none;
}
.contactform .form-control:hover,
.contactform .form-control:focus {
  border: 0.1rem solid var(--colorgreen);
}
.contactform .form-control:focus {
  background-color: #fff;
}
.sendMail {
  padding: 1.1rem 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--textcolor);
  background-color: var(--colorgreen);
  border-radius: 0.3rem;
  transition: all 300ms ease;
}
.sendMail:hover {
  background-color: var(--colorgreenhover);
  color: #fff;
}
.contactbox h2 {
  margin-bottom: 1rem;
}
.contactlist {
  margin: 1rem 0;
}
.contactboxdivider {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.6rem;
}
.contactlist li {
  cursor: pointer;
}
.contactlist li:not(:last-child) {
  margin-bottom: 1rem;
}
.contactlist li a {
  color: var(--textcolor);
  font-size: 1.5rem;
  transition: color 300ms ease;
}
@media (min-width: 1200px) {
  .contactlist li a {
    font-size: 1.6rem;
  }
}
.contactlist li:hover a {
  color: var(--colorgreen);
}
.whatsappcontact {
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 0.3rem;
  background-color: var(--colorgreen);
  padding: 1rem;
  color: #fff;
  font-weight: 500;
  transition: all 300ms ease;
  margin-top: 2rem;
}
.whatsappcontact:hover {
  color: #fff;
  background-color: var(--colorgreenhover);
}
.homepopup {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
}
.homepopup.openpopup {
  display: flex;
}
.popupcontent {
  background-color: #fff;
  border-radius: 0.5rem;
  position: relative;
  width: 70rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  transition: all 800ms ease;
}
.popupcontentleft {
  position: relative;
}
.popupcontentleft::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  height: 100%;
  clip-path: polygon(100% 0, 75% 13%, 100% 100%);
  background-color: #fff;
  width: 100%;
}
.popupcontentleft figure {
  width: 25rem;
}
.popupcontentright {
  width: calc(100% - 25rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  padding-left: 5rem;
}
.popupcontentright h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.popupcontentright p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
.popupcontentright .parallaxbuttons {
  margin-top: 1rem;
}
.popupcontentright .parallaxbuttons a {
  font-size: 1.4rem;
  padding: 1.1rem 2rem;
}
#closePopup {
  position: absolute;
  z-index: 5;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  background-color: #eaeaea;
  border-radius: 50%;
  transition: all 300ms ease;
}
#closePopup:hover {
  transform: rotate(90deg);
  background-color: var(--colorgreen);
  color: var(--textcolor);
}
.mobilemenu {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 10rem 0 2rem 0;
  display: none;
}
.mobilemenucontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 1rem;
}
.mobilemenucontent a {
  font-size: 1.5rem;
  color: var(--textcolor);
  transition: all 300ms ease;
  border-radius: 0.3rem;
  padding: 1rem;
  transition: all 300ms ease;
  width: 100%;
}
@media (min-width: 576px) {
  .mobilemenucontent a {
    font-size: 1.6rem;
  }
}
.mobilemenucontent a:hover {
  background-color: var(--colorgreen);
  color: #fff;
}
.offshadow {
  box-shadow: none !important;
}
.postformcontent {
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  padding: 2rem;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .postformcontent {
    width: 90rem;
  }
}
.postformcontentside {
  margin-bottom: 2rem;
}
.postformcontentside h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.postformcontentside p {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .postformcontentside p {
    font-size: 1.6rem;
  }
}
