@import url("root.css");
:root {
  --header: 8rem;
}
@media (min-width: 992px) {
  :root {
    --header: 10rem;
  }
}
.cleanhead {
  height: var(--header);
}
.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: all 300ms ease;
}
.headerside {
  height: var(--header);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 8rem;
}
@media (min-width: 576px) {
  .logo {
    width: 10rem;
  }
}
@media (min-width: 1200px) {
  .logo {
    width: 12rem;
  }
}
@media (min-width: 1400px) {
  .logo {
    width: 14rem;
  }
}
.headersidecontent {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.menulist {
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 2.5rem;
}
@media (min-width: 1500px) {
  .menulist {
    column-gap: 3rem;
  }
}
.menulist li {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
}
.mainlink {
  font-size: 1.5rem;
  color: var(--colorblack);
  font-weight: 500;
  position: relative;
}
@media (min-width: 1600px) {
  .mainlink {
    font-size: 1.6rem;
  }
}
.mainlink::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0.22rem;
  left: auto;
  right: 0;
  bottom: -0.6rem;
  background-color: var(--colorgreen);
  transition:
    width 400ms ease,
    color 400ms ease;
}
.menulist li:hover .mainlink::after {
  width: 100%;
  left: 0;
  right: auto;
}
.menulist li:hover .mainlink {
  color: var(--colorgreen);
}
.mainlink i {
  display: inline-block;
  margin-left: 0.3rem;
  font-size: 1.2rem;
  transition: all 300ms ease;
}
.menulist li:hover .mainlink i {
  transform: rotate(-45deg);
}
.dropdownmenu {
  position: absolute;
  z-index: 5;
  top: 100%;
  left: -5rem;
  background-color: #fff;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 25rem;
  transition: transform 0.3s ease-in-out;
  transform-origin: top right;
  transform: perspective(600px) rotateX(-90deg);
  border-radius: 0 0 0.5rem 0.5rem;
}
.menulist li:hover .dropdownmenu {
  display: block;
  transform: perspective(600px) rotateX(0deg);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.droplink {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  font-size: 1.4rem;
  border-radius: 0.3rem;
  color: var(--colorblack);
  transition: all 300ms ease;
}
.droplink:not(:last-child) {
  margin-bottom: 0.3rem;
}
.droplink:hover {
  color: #fff;
  background-color: var(--colorgreen);
}
.droplink i {
  display: inline-block;
  transition: all 300ms ease;
}
.droplink:hover i {
  transform: translateX(0.5rem);
}
.entry {
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .entry {
    padding: 4rem 0 0.5rem 0;
  }
}
.entryleft {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .entryleft {
    margin-bottom: 0;
  }
}
.entryleft h1 {
  font-size: clamp(1.8rem, 1.4444rem + 1.7778vw, 3rem);
  font-weight: 700;
}
.entryright {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.entryrightbuttons {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
  margin-top: 2rem;
}
.entryrightbuttons1 {
  border-radius: 0.3rem;
  overflow: hidden;
  position: relative;
  z-index: 0;
  color: #fff;
  background-color: var(--colorgreen);
  border: 0.2rem solid transparent;
  display: inline-block;
  transition: all 300ms ease;
}
.entryrightbuttons1:hover {
  color: #fff;
}
.entryrightbuttons1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 100%;
  transition: all 500ms ease-in-out;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}
.entryrightbuttons1:hover::before {
  right: 0;
}
.entryrightbuttons1 i {
  display: inline-block;
  transition: all 300ms ease;
}
.entryrightbuttons1:hover i {
  transform: translateX(0.5rem);
}
.entryrightbuttons2 {
  background-color: transparent;
  color: var(--colorblack);
  border: 0.2rem solid #f1f1f1;
  display: inline-block;
  border-radius: 0.3rem;
  transition: all 300ms ease;
  font-weight: 500;
}
.entryrightbuttons2:hover {
  background-color: #f1f1f1;
  color: var(--colorblack);
}
.entryrightbuttons2 i {
  margin-right: 0.5rem;
}
.entryrightbuttons1,
.entryrightbuttons2 {
  padding: 1rem;
  font-size: 1.2rem;
}
@media (min-width: 992px) {
  .entryrightbuttons1,
  .entryrightbuttons2 {
    padding: 1rem 2rem;
    font-size: 1.4rem;
  }
}
.slideside {
  overflow: hidden;
  height: 30rem;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .slideside {
    height: 40rem;
  }
}
@media (min-width: 992px) {
  .slideside {
    height: 45rem;
  }
}
@media (min-width: 1200px) {
  .slideside {
    height: 50rem;
  }
}
@media (min-width: 1400px) {
  .slideside {
    height: 55rem;
  }
}
.slidefilter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.slidevideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slideside img {
  height: 100%;
  object-fit: cover;
}
.containerab {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
}
.slidesidecontent {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  z-index: 2;
  position: relative;
}
@media (min-width: 576px) {
  .slidesidecontent {
    width: 45rem;
  }
}
@media (min-width: 992px) {
  .slidesidecontent {
    width: 55rem;
  }
}
@media (min-width: 1500px) {
  .slidesidecontent {
    width: 60rem;
  }
}
.slidesidecontent h1 {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .slidesidecontent h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 768px) {
  .slidesidecontent h1 {
    font-size: 3rem;
  }
}
@media (min-width: 992px) {
  .slidesidecontent h1 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .slidesidecontent h1 {
    font-size: 4rem;
  }
}
.slidesidecontent p {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 1500px) {
  .slidesidecontent p {
    font-size: 1.5rem;
  }
}
.slidelink {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  color: #fff;
  background-color: var(--colorgreen);
  border-radius: 0.3rem;
  transition: all 300ms ease;
  display: inline-block;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .slidelink {
    font-size: 1.4rem;
  }
}
.slidelink:hover {
  background-color: var(--colorgreenhover);
  color: #fff;
}
.slidelink i {
  display: inline-block;
  transition: all 300ms ease;
}
.slidelink:hover i {
  transform: translateX(0.5rem);
}
.homeaboutalls {
  position: relative;
}
.homeaboutbox {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 20rem;
  justify-content: space-between;
}
@media (min-width: 576px) {
  .homeaboutbox {
    height: 25rem;
  }
}
@media (min-width: 1200px) {
  .homeaboutbox {
    height: 30rem;
  }
}
.homeaboutbox p {
  color: var(--colorgreen);
  font-size: 1.4rem;
}
@media (min-width: 1500px) {
  .homeaboutbox p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .homeaboutbox p {
    font-size: 1.6rem;
  }
}
.homeaboutbox h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--colorgreen);
}
@media (min-width: 992px) {
  .homeaboutbox h2 {
    font-size: 1.8rem;
  }
}
.homeaboutbox img {
  height: 100%;
  object-fit: cover;
}
.homeaboutboxBG {
  background-color: #fff;
  padding: 1rem;
}
@media (min-width: 992px) {
  .homeaboutboxBG {
    padding: 2rem;
  }
}
.homeaboutcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .homeaboutcontent {
    padding-left: 2rem;
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .homeaboutcontent {
    padding-left: 5rem;
  }
}
.homeaboutcontenttitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.homeaboutcontenttitle span {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (min-width: 1500px) {
  .homeaboutcontenttitle span {
    font-size: 1.5rem;
  }
}
@media (min-width: 1600px) {
  .homeaboutcontenttitle span {
    font-size: 1.6rem;
  }
}
.homeaboutcontenttitle h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
}
@media (min-width: 576px) {
  .homeaboutcontenttitle h2 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .homeaboutcontenttitle h2 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992) {
  .homeaboutcontenttitle h2 {
    font-size: 3rem;
  }
}
@media (min-width: 1500px) {
  .homeaboutcontenttitle h2 {
    font-size: 3.5rem;
  }
}
.homecountergrid {
  width: 100%;
  display: flex;
  border-radius: 0.5rem;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  margin-bottom: 2rem;
}
.homecountergriditem {
  width: calc(100% / 3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}
@media (min-width: 576px) {
  .homecountergriditem {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .homecountergriditem {
    padding: 1rem 0;
  }
}
@media (min-width: 992px) {
  .homecountergriditem {
    padding: 2rem 1rem;
  }
}
@media (min-width: 1200px) {
  .homecountergriditem {
    padding: 2rem;
  }
}
.homecountergriditem:not(:last-child) {
  border-right: 0.1rem solid var(--colorgreenhover);
}
.homecountergriditem p {
  color: var(--colorgreen);
  font-size: 1rem;
  font-weight: 500;
}
@media (min-width: 576px) {
  .homecountergriditem p {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) {
  .homecountergriditem p {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .homecountergriditem p {
    font-size: 1.4rem;
  }
}
.homecountergriditem h4 {
  font-size: 2rem;
  font-weight: 900;
  color: var(--colorgreen);
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
}
@media (min-width: 992px) {
  .homecountergriditem h4 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .homecountergriditem h4 {
    font-size: 2.5rem;
  }
}
.homecountergriditem h4 span {
  font-size: 1.6rem;
}
.homeabouttext {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.homeabouttext p {
  color: #fff;
}
.homeaboutlist {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 2rem;
}
.homeaboutlistitems {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.homeaboutlistitems:not(:last-child) {
  margin-bottom: 2rem;
}
.homeaboutlistitems figure {
  width: 4.5rem;
  height: 4.5rem;
  padding: 1rem;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.homeaboutlistitems figure img {
  height: 100%;
  object-fit: contain;
}
.homeaboutlistitems .content {
  width: calc(100% - 4.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1rem;
}
.homeaboutlistitems .content h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}
.homeaboutlistitems .content p {
  font-size: 1.4rem;
  color: #fff;
}
.homeaboutbuttons {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.1rem dashed rgba(255, 255, 255, 0.1);
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
}
.homelinks {
  border-radius: 0.3rem;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  color: #fff;
  background-color: #fff;
  color: var(--colorgreen);
  transition: all 300ms ease;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.homelinks:hover {
  color: var(--colorgreen);
}
.homelinks i {
  display: inline-block;
  transition: all 300ms ease;
}
.homelinks:hover i {
  transform: translateX(0.5rem);
}
.homelinks::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: all 500ms ease;
  z-index: -1;
}
.homelinks:hover::before {
  right: 0;
}
.footer {
  background-color: var(--colorgreen);
  padding: 5rem 0 2rem 0;
}
.footerbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 1200px) {
  .footerbox {
    margin-bottom: 0;
  }
}
.footerlogo {
  width: 12rem;
  margin-bottom: 1rem;
}
@media (min-width: 1400px) {
  .footerlogo {
    width: 14rem;
  }
}
.footerboxtext {
  width: 100%;
  margin-bottom: 1rem;
}
.footerboxtext p {
  font-size: 1.4rem;
  color: #fff;
}
.footerboxsocial {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footerboxsocial p {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.fsocialicons {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.3rem;
}
.fsocialicons a {
  width: 3rem;
  height: 3rem;
  font-size: 1.4rem;
  border-radius: 0.3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: all 300ms ease;
}
.fsocialicons a:hover {
  background-color: var(--colorgreen);
  color: #fff;
}
.footerbox h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}
.footerbox h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  height: 0.1rem;
  background-color: #fff;
  width: 2rem;
  border-radius: 5rem;
}
.footerbox h4::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  height: 0.1rem;
  width: 1rem;
  border-radius: 50%;
  background-color: #fff;
  left: 2.2rem;
}
.footerbox ul li {
  padding: 0.3rem 0;
}
.footerbox ul li a {
  color: #fff;
  transition: all 300ms ease;
  font-size: 1.4rem;
  display: inline-block;
}
.footerbox ul li:hover a {
  color: #fff;
  transform: translateX(0.5rem);
}
@media (min-width: 1200px) {
  .footerboxfirst {
    padding-right: 2rem;
  }
}
.footercontactitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.contacticon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  overflow: hidden;
  position: relative;
  margin-top: 0.2rem;
  z-index: 0;
}
.contacticon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 100%;
  color: #fff;
  z-index: -1;
  transition: all 300ms ease;
}
.footercontactitem .content {
  width: calc(100% - 3rem);
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footercontactitem .content p {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: #fff;
}
.footercontactitem .content a {
  color: #fff;
  transition: all 300ms ease;
  font-size: 1.4rem;
}
.footercontactitem .content a:hover {
  color: #fff;
}
.footercontactitem:not(:last-child) {
  margin-bottom: 1rem;
}
.footercontactitem:hover .contacticon::before {
  bottom: 0;
}
.references {
  padding: 2rem 0;
}
.swiperref .swiper-slide figure {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10rem;
}
.swiperref .swiper-slide figure img {
  object-fit: contain;
  filter: grayscale(100%);
  transition: all 300ms ease;
}
.swiperref .swiper-slide figure:hover img {
  filter: grayscale(0);
}
.parallax {
  background-image: url("../images/parallax.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  padding: 5rem 0;
  position: relative;
  z-index: 0;
}
@media (min-width: 768px) {
  .parallax {
    background-attachment: fixed;
    padding: 8rem 0;
  }
}
.parallax::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.parallaxcontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 576px) {
  .parallaxcontent {
    width: 40rem;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .parallaxcontent {
    width: 50rem;
  }
}
@media (min-width: 992px) {
  .parallaxcontent {
    width: 60rem;
  }
}
@media (min-width: 1200px) {
  .parallaxcontent {
    width: 70rem;
  }
}
.parallaxcontent h3 {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
}
@media (min-width: 576px) {
  .parallaxcontent h3 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .parallaxcontent h3 {
    font-size: 2.5rem;
  }
}
@media (min-width: 992px) {
  .parallaxcontent h3 {
    font-size: 3rem;
  }
}
@media (min-width: 1200px) {
  .parallaxcontent h3 {
    font-size: 3.5rem;
  }
}
@media (min-width: 1500px) {
  .parallaxcontent h3 {
    font-size: 4rem;
  }
}
.parallaxcontentbuttons {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5rem;
  margin-top: 2rem;
}
.parallaxcontentbuttons a {
  border: 0.2rem solid #fff;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  color: #fff;
  transition: all 300ms ease;
  border-radius: 0.3rem;
}
@media (min-width: 350px) {
  .parallaxcontentbuttons a {
    font-size: 1.4rem;
  }
}
.parallaxcontentbuttons a:hover {
  background-color: #fff;
  color: var(--colorblack);
}
.parallaxcontentbuttons a i {
  margin-right: 0.5rem;
}
.generaltitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .generaltitle {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .generaltitle {
    margin-bottom: 4rem;
  }
}
.generaltitleleft {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .generaltitleleft {
    margin-bottom: 0;
  }
}
.maintitlebadge {
  border-radius: 5rem;
  padding: 0.5rem 1rem;
  border: 0.1rem solid #f1f1f1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.6rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .maintitlebadge {
    padding: 0.8rem 2rem;
  }
}
.maintitlebadge span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: var(--colorgreen);
  display: inline-block;
}
.maintitlebadge p {
  font-weight: 500;
}
.generaltitleleft h2 {
  font-size: 1.8rem;
  font-weight: 900;
}
@media (min-width: 576px) {
  .generaltitleleft h2 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .generaltitleleft h2 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .generaltitleleft h2 {
    font-size: 2.5rem;
  }
}
.blogbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 0;
  margin-bottom: 2rem;
}
.blogboximage {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
.blogboximage img {
  object-fit: cover;
  transition: all 1.2s ease-in-out;
  aspect-ratio: 1.8;
}
.blogbox:hover .blogboximage img {
  transform: scale(1.2);
  filter: brightness(0.8);
}
.blogbox .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  flex: 1;
}
.blogbox .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.blogbox .content h3 a {
  color: var(--colorblack);
  transition: color 300ms ease;
}
.blogbox:hover .content h3 a {
  color: var(--colorgreen);
}
.blogbox .content p {
  font-size: 1.4rem;
  flex: 1;
}
@media (min-width: 1500px) {
  .blogbox .content p {
    font-size: 1.5rem;
  }
}
.bloglink {
  font-size: 1.4rem;
  position: relative;
  display: inline-block;
  transition: all 300ms ease;
  color: var(--colorblack);
  margin-top: 1rem;
  font-weight: 500;
  align-self: flex-start;
}
@media (min-width: 1500px) {
  .bloglink {
    font-size: 1.5rem;
  }
}
.bloglink::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  height: 0.2rem;
  background-color: var(--colorgreen);
  left: 0;
  right: 100%;
  transition: all 300ms ease;
}
.bloglink:hover::after {
  right: 0;
}
.bloglink:hover {
  color: var(--colorgreen);
}
.bloglink i {
  display: inline-block;
  transition: all 300ms ease;
}
.bloglink:hover i {
  transform: translateX(0.5rem);
}
.commentsection {
  background-color: #effded;
}
.comments {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
}
@media (min-width: 992px) {
  .comments {
    margin-bottom: 0;
  }
}
.commentstext {
  width: 100%;
  border-radius: 0.5rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  padding: 2rem;
  flex: 1;
}
.commentstext p {
  font-size: 1.4rem;
}
@media (min-width: 1500px) {
  .commentstext p {
    font-size: 1.5rem;
  }
}
.writers {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.writers p {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.writers span {
  font-size: 1.4rem;
}
.writers span em {
  font-weight: 600;
  color: var(--colorgreen);
}
.commentimages {
  border-radius: 0.5rem;
  overflow: hidden;
}
.commentimages img {
  object-fit: cover;
  height: 100%;
}
.commentratingbox {
  width: 100%;
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  padding: 2rem;
  flex: 1;
}
.rating {
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.rating i {
  font-size: 1.4rem;
}
.rating i.checked {
  color: orange;
}
.clientimages {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.clientimagesitem {
  border-radius: 50%;
  width: 5rem;
  height: 5rem;
  border: 0.3rem solid #f1f1f1;
  overflow: hidden;
  position: relative;
  transition: all 300ms ease;
}
.clientimagesitem:not(:first-child) {
  margin-left: -2rem;
}
.clientimagesitem:hover {
  border: 0.3rem solid var(--colorgreen);
  transform: translateY(-0.5rem);
  z-index: 1;
}
.clientimagesitem img {
  height: 100%;
  object-fit: cover;
}
.commetratingboxbottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.commetratingboxbottom h4 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
.commetratingboxbottom p {
  font-size: 1.4rem;
}
@media (min-width: 1500px) {
  .commetratingboxbottom p {
    font-size: 1.5rem;
  }
}
.commentratingbox2 {
  background-color: var(--colorgreen);
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 2rem;
  flex: 1;
  border-radius: 0.5rem;
}
.reverse {
  width: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.commentratingbox2bottom {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.commentratingbox2bottom p {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 1500px) {
  .commentratingbox2bottom p {
    font-size: 1.5rem;
  }
}
.commentratingbox2bottom a {
  padding: 1rem 2rem;
  border-radius: 0.3rem;
  background-color: #fff;
  border: 0.2rem solid #fff;
  transition: all 300ms ease;
  color: var(--colorgreen);
  font-size: 1.4rem;
}
.commentratingbox2bottom a:hover {
  background-color: transparent;
  color: #fff;
}
.commentratingbox2bottom a i {
  margin-right: 0.5rem;
}
.commentratingbox2top h4 {
  font-size: 3.5rem;
  color: #fff;
  font-weight: 900;
  margin-bottom: 1rem;
}
.commentratingbox2top {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.commentratingbox2top p {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 500;
}
@media (min-width: 1500px) {
  .commentratingbox2top p {
    font-size: 1.5rem;
  }
}
.commentsection .maintitlebadge {
  border: 0.2rem solid #fff;
  background-color: #fff;
}
.servicesmainbox {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 992px) {
  .servicesmainbox {
    padding-right: 2rem;
    height: 100%;
  }
}
.servicesmainbox h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .servicesmainbox h2 {
    font-size: 2rem;
  }
}
@media (min-width: 768px) {
  .servicesmainbox h2 {
    font-size: 2.2rem;
  }
}
@media (min-width: 1200px) {
  .servicesmainbox h2 {
    font-size: 2.5rem;
  }
}
.servicesmainbox p {
  font-size: 1.4rem;
}
@media (min-width: 1500px) {
  .servicesmainbox p {
    font-size: 1.5rem;
  }
}
.servicebox {
  width: 100%;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.servicebox .content {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.servicebox .content h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.servicebox .content p {
  font-size: 1.4rem;
  flex: 1;
}
@media (min-width: 1500px) {
  .servicebox .content p {
    font-size: 1.5rem;
  }
}
.serviceboxicon {
  width: 5rem;
  height: 5rem;
  padding: 1rem;
  border-radius: 0.3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  background-color: #effded;
}
.swiper-services {
  padding: 0 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .swiper-services {
    margin-top: 0;
  }
}
.swiper-services .swiper-slide {
  display: flex;
  height: auto;
}
.swiper-services .swiper-wrapper {
  padding: 1rem;
  margin-left: -1rem;
  margin-right: -1rem;
}
.servicelink {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--colorgreen);
  transition: all 300ms ease;
  margin-top: 1rem;
  display: inline-block;
}
.servicelink:hover {
  color: var(--colorgreenhover);
}
@media (min-width: 1500px) {
  .servicelink {
    font-size: 1.5rem;
  }
}
.productbox {
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  margin-bottom: 2rem;
}
.productimage {
  width: 100%;
  position: relative;
}
.productimage::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.2;
  transition: all 800ms ease;
  z-index: 1;
}
.productbox .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  justify-content: center;
}
.productbox:hover .productimage::before {
  opacity: 0.8;
}
.productbox .content h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}
.productbox .content h3 a {
  color: #fff;
  transition: all 300ms ease;
}
.productbox:hover .content h3 a {
  color: #fff;
}
.productbox .content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1rem;
  right: 100%;
  height: 0.2rem;
  background-color: var(--colorgreen);
  transition: all 800ms ease;
}
.productbox:hover .content h3::after {
  right: 0;
}
.productbox .content p {
  font-size: 1.4rem;
  color: #fff;
  line-height: 0;
  opacity: 0;
  transition: all 300ms ease;
  visibility: hidden;
}
@media (min-width: 1500px) {
  .productbox .content p {
    font-size: 1.5rem;
  }
}
.productbox:hover .content p {
  visibility: visible;
  line-height: inherit;
  opacity: 0.8;
}
.pagemaps {
  background-color: var(--colorgreen);
}
.pagemapscontent {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem 0;
}
@media (min-width: 768px) {
  .pagemapscontent {
    padding: 4rem 0;
  }
}
.pagemapscontent h1 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 768px) {
  .pagemapscontent h1 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .pagemapscontent h1 {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  .pagemapscontent h1 {
    font-size: 2.5rem;
  }
}
.pagemapscontent p {
  font-size: 1.4rem;
  color: #fff;
  opacity: 0.8;
  margin-top: 0.5rem;
}
@media (min-width: 1400px) {
  .pagemapscontent p {
    font-size: 1.5rem;
  }
}
.breads {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 2rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 0.8rem 1rem;
}
@media (min-width: 992px) {
  .breads {
    flex-wrap: nowrap;
  }
}
.breads li {
  position: relative;
  font-size: 1.4rem;
}
.breads li:not(:last-child)::after {
  content: "\F3C0";
  position: absolute;
  font-family: "remixicon";
  right: -1.2rem;
  top: 0.9rem;
  color: var(--colorgreen);
  font-size: 0.4rem;
}
.breads li a {
  font-size: 1.4rem;
  color: var(--colorblack);
  transition: color 300ms ease;
}
.breads li.active {
  font-weight: 700;
  color: var(--colorgreen);
}
.breads li:hover a {
  color: var(--colorgreen);
  text-decoration: underline;
}
.contactboxes {
  background-color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2rem;
  row-gap: 2rem;
}
.contactboxesitem {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mapiframe {
  width: 100%;
  border-radius: 0.3rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.contactboxesitem .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.contactboxesitem .content h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contactboxesitem .content p {
  font-size: 1.4rem;
}
@media (min-width: 1500px) {
  .contactboxesitem .content p {
    font-size: 1.5rem;
  }
}
.contactboxesitem .content a {
  color: var(--colorblack);
  font-size: 1.4rem;
  transition: all 300ms ease;
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
}
@media (min-width: 1500px) {
  .contactboxesitem .content a {
    font-size: 1.5rem;
  }
}
.contactboxesitem .content a:hover {
  color: var(--colorgreen);
}
.contactboxesitemflex {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
  row-gap: 1rem;
  flex-wrap: wrap;
  border-top: 0.1rem dashed #f1f1f1;
  padding-top: 1rem;
  width: 100%;
}
.contactboxesitemflex a {
  font-size: 1.4rem;
  color: var(--colorblack);
  transition: all 300ms ease;
}
@media (min-width: 1500px) {
  .contactboxesitemflex a {
    font-size: 1.5rem;
  }
}
.contactboxesitemflex a:hover {
  color: var(--colorgreen);
}
.contactform {
  border-radius: 0.5rem;
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .contactform {
    margin-top: 0;
  }
}
.contactformtitle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.1rem dashed #f1f1f1;
}
.contactformtitle h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.contactformtitle p {
  font-size: 1.4rem;
  opacity: 0.8;
}
@media (min-width: 1500px) {
  .contactformtitle p {
    font-size: 1.5rem;
  }
}
.inlinecontent {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 992px) {
  .inlinecontent {
    padding-left: 2rem;
  }
}
@media (min-width: 1500px) {
  .inlinecontent {
    padding-left: 5rem;
  }
}
.inlineimages {
  border-radius: 0.5rem;
  padding: 1rem;
  background-color: #fff;
  width: 100%;
}
.inlineimages img {
  height: 100%;
  object-fit: cover;
  border-radius: 0.3rem;
}
.inlinecontenttitle {
  margin-bottom: 2rem;
  width: 100%;
}
.inlinecontenttitle h2 {
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .inlinecontenttitle h2 {
    font-size: 1.8rem;
  }
}
@media (min-width: 1200px) {
  .inlinecontenttitle h1 {
    font-size: 2rem;
  }
}
.affixitems {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .affixitems {
    margin-top: 0;
    position: sticky;
    top: calc(var(--header) + 1rem);
  }
}
.others {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  margin-top: 2rem;
}
.otherstitle {
  width: 100%;
  border-bottom: 0.1rem solid #f1f1f1;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.otherstitle h3 {
  font-size: 1.4rem;
  font-weight: 600;
}
.others .content {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.others .content a {
  width: 100%;
  font-size: 1.4rem;
  transition: all 300ms ease;
  padding: 1rem;
  color: var(--colorblack);
  border-radius: 0.3rem;
}
.others .content a:hover {
  background-color: var(--colorgreen);
  color: #fff;
}
.others .content a:not(:last-child) {
  margin-bottom: 0.5rem;
}
.categorytags {
  background-color: var(--colorgreenhover);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 0.3rem;
  display: inline-block;
  padding: 0.6rem 1rem;
  margin-bottom: 1rem;
  align-self: flex-start;
}
.refboxes {
  margin-bottom: 2rem;
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.3rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  transition: all 300ms ease;
}
.refboxes:hover {
  box-shadow: rgba(99, 99, 99, 0.1) 0px 2px 8px 0px;
}
.refboxes figure {
  width: 6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 450px) {
  .refboxes figure {
    width: 8rem;
  }
}
@media (min-width: 992px) {
  .refboxes figure {
    width: 10rem;
  }
}
.refboxes figure img {
  height: 100%;
  object-fit: contain;
}
.refboxes .content {
  width: calc(100% - 6rem);
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  justify-content: space-between;
  border-left: 0.2rem solid #f1f1f1;
}
@media (min-width: 450px) {
  .refboxes .content {
    width: calc(100% - 8rem);
  }
}
@media (min-width: 992px) {
  .refboxes .content {
    width: calc(100% - 10rem);
  }
}
.refboxes .content .contenttop {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 1rem;
}
.refboxes .content .contenttop h3 {
  font-size: 1.4rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .refboxes .content .contenttop h3 {
    font-size: 1.5rem;
  }
}
.refboxes .content .contenttop p {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .refboxes .content .contenttop p {
    font-size: 1.4rem;
  }
}
.refboxes .content .contentbottom {
  width: 100%;
  text-align: left;
}
.refboxes .content .contentbottom a {
  font-size: 1.2rem;
  color: var(--colorblack);
  font-weight: 500;
  transition: all 300ms ease;
}
@media (min-width: 768px) {
  .refboxes .content .contentbottom a {
    font-size: 1.4rem;
  }
}
.refboxes .content .contentbottom a:hover {
  color: var(--colorgreen);
}
.refboxes:hover .content {
  border-left: 0.2rem solid var(--colorgreen);
}
.probox {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-bottom: 2rem;
  border-radius: 0.5rem;
  overflow: hidden;
  background-color: #fff;
  transition: all 300ms ease;
}
.probox:hover {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transform: translateY(-0.5rem);
}
.probox figure {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 22rem;
}
.probox figure a {
  height: 100%;
}
.probox figure img {
  height: 100%;
  object-fit: contain;
}
.probox .content {
  padding: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}
.probox .content h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.probox .content h3 a {
  color: var(--colorblack);
  transition: color 300ms ease;
}
.probox:hover .content h3 a {
  color: var(--colorgreen);
}
.prowpcontact {
  width: 100%;
  border-radius: 0.3rem;
  padding: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #fff;
}
.prowpcontact p {
  margin-bottom: 1rem;
  font-size: 1.4rem;
}
.prowplink {
  background-color: var(--wp);
  color: #fff;
  font-size: 1.4rem;
  border-radius: 0.3rem;
  padding: 0.6rem 1.2rem;
  transition: all 300ms ease;
}
.prowplink:hover {
  background-color: var(--wp2);
  color: #fff;
}
.prowplink i {
  margin-right: 0.5rem;
}
.deep {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 0.1rem dashed rgba(255, 255, 255, 0.2);
}
.deepleft {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 1rem;
}
.deepleft a {
  font-size: 1.4rem;
  color: #fff;
  transition: all 300ms ease;
}
.deepleft a:hover {
  opacity: 0.8;
  color: #fff;
}
.deepright {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.deepright a {
  color: #fff;
  font-family: "pill";
  font-size: 2rem;
  transition: all 300ms ease;
}
.deepright a:hover {
  opacity: 0.8;
}
.inlinepagesicons {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.inlinepagesiconsitem {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
}
.inlinepagesiconsitem figure {
  width: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--softBG);
  border-radius: 50%;
  padding: 0.8rem;
}
.inlinepagesiconsitem .content {
  width: calc(100% - 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2rem;
}
.inlinepagesiconsitem .content h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
@media (min-width: 1500px) {
  .inlinepagesiconsitem .content h3 {
    font-size: 1.5rem;
  }
}
.inlinepagesiconsitem .content p {
  font-size: 1.4rem;
}
@media (min-width: 1500px) {
  .inlinepagesiconsitem .content p {
    font-size: 1.5rem;
  }
}
.inlinepagesdocs {
  margin-top: 1rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.inlinepagesdocs h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
#table {
  width: 100%;
  border-collapse: collapse;
}
#table th,
#table td {
  font-size: 1.4rem;
  padding: 1rem;
  border: 0.1rem solid #f1f1f1;
}
@media (min-width: 1500px) {
  #table th,
  #table td {
    font-size: 1.5rem;
  }
}
#table .centered {
  text-align: center;
}
.inlinepagetablelink {
  font-size: 1.4rem;
  color: var(--colorblack);
  transition: color 300ms ease;
}
@media (min-width: 1500px) {
  .inlinepagetablelink {
    font-size: 1.5rem;
  }
}
.inlinepagetablelink:hover {
  color: var(--colorgreen);
}
.flexitcol {
  display: flex;
  column-gap: 1rem;
}
@media (min-width: 768px) {
  .flexitcol {
    flex-direction: column;
    column-gap: 0;
    row-gap: 1rem;
  }
}
.pageinlinephotos {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.3rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .pageinlinephotos {
    height: 100%;
    margin-bottom: 0;
  }
}
.pageinlinephotos a {
  height: 100%;
  width: 100%;
}
.pageinlinephotos img {
  height: 100%;
  object-fit: cover;
  transition: all 1.2s ease;
}
.pageinlinephotos:hover img {
  transform: scale(1.2);
  filter: brightness(0.5);
}
.sbibig {
  width: 8rem;
  height: 8rem;
}
.matimages {
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 1rem;
  background-color: #fff;
  transition: all 300ms ease;
  margin-bottom: 2rem;
}
.matimages img {
  height: 100%;
  object-fit: cover;
  transition: all 900ms ease-in-out;
  border-radius: 0.3rem;
}
.matimages:hover {
  transform: translateY(-0.5rem);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.contactboxessocial {
  border-top: 0.1rem dashed #f1f1f1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 1rem;
  margin-top: 1rem;
}
.contactboxessocial p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
@media (min-width: 1500px) {
  .contactboxessocial p {
    font-size: 1.5rem;
  }
}
.contactboxessocialcontent {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
}
.contactboxessocialcontent a {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.3rem;
  color: var(--colorblack);
  background-color: #fbfbfb;
  transition: all 300ms ease;
}
.contactboxessocialcontent a:hover {
  color: #fff;
  background-color: var(--colorgreen);
}
.footerbulten {
  width: 100%;
  margin-top: 2rem;
  border-top: 0.1rem dashed rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  margin-bottom: 2rem;
}
.footerbulten p {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.8);
}
.footerflexkvkk {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
}
.footerflexkvkk label {
  color: #fff;
  font-size: 1.4rem;
  margin: 0;
  width: calc(100% - 2rem);
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 400;
  padding-left: 1rem;
}
.footerbulten button[type="submit"] {
  margin-top: 1rem;
  background-color: #fff;
  color: var(--colorgreen);
}
.footerflexkvkk label span {
  color: #fff;
  text-decoration: underline;
  font-size: 1.4rem;
  cursor: pointer;
}
.mobilemenu {
  background-color: #fff;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.mobilemenucontent {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.mobilemenutop {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 0.1rem solid #f1f1f1;
}
.mobilemenulogo {
  width: 10rem;
}
.closemenu {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: none;
  color: var(--colorblack);
  background-color: #f1f1f1;
  border-radius: 0.3rem;
  transition: all 300ms ease;
}
.closemenu:hover {
  background-color: var(--colorgreen);
  color: #fff;
}
.mobilemenucontent .content {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.dropmainlink {
  width: 100%;
  border-radius: 0.3rem;
  padding: 1rem;
  font-size: 1.4rem;
  color: var(--colorblack);
  transition: all 300ms ease;
}
.dropmainlink:hover {
  background-color: var(--colorgreen);
  color: #fff;
}
.mobiledropdownitem {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--colorblack);
  padding: 1rem;
  transition: all 300ms ease;
  border-radius: 0.3rem;
}
.mobiledropdownitem p {
  font-size: 1.4rem;
  color: var(--colorblack);
  transition: all 300ms ease;
}
.mobiledropdownitem i {
  color: var(--colorblack);
  font-size: 1.4rem;
  display: inline-block;
  transition: all 300ms ease;
}
.mobiledropdownitem:hover {
  background-color: var(--colorgreen);
}
.mobiledropdownitem:hover p,
.mobiledropdownitem:hover i {
  color: #fff;
}
.mobiledropdownitem:hover i {
  transform: rotate(-45deg);
}
.mobiledropdowncontent {
  background-color: #f1f1f1;
  padding: 1rem;
  border-radius: 0.3rem;
  display: none;
}
.mobiledropdowncontent a {
  width: 100%;
  padding: 1rem 0;
  border-radius: 0.3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  color: var(--colorblack);
  transition: all 300ms ease;
}
.mobiledropdowncontent a:hover {
  color: var(--colorgreen);
}
.mobiledropdowncontent a:not(:last-child) {
  margin-bottom: 0.5rem;
}
.gtranslate_wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 14rem;
  column-gap: 0.5rem;
}
.subbar {
  border-radius: 0.3rem;
  padding: 1rem;
  background: #f1f1f1;
  margin-bottom: 2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5rem;
  font-weight: 500;
}
.subbaritem {
  border-radius: 0.2rem;
  background-color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  color: var(--colorblack);
  transition: all 300ms ease;
}
.subbaritem:hover {
  background-color: var(--colorgreenhover);
  color: #fff;
}
.subbaritem.active,
.subbaritem.active:hover,
.subbaritem.active:focus {
  background-color: var(--colorgreen);
  color: #fff;
}
