@charset "UTF-8";
@-webkit-keyframes mymove {
  0% {
    left: 50%;
  }
  16% {
    left: 45%;
  }
  33% {
    left: 40%;
  }
  49% {
    left: 50%;
  }
  66% {
    left: 60%;
  }
  82% {
    left: 55%;
  }
  100% {
    left: 50%;
  }
}
@keyframes mymove {
  0% {
    left: 50%;
  }
  16% {
    left: 45%;
  }
  33% {
    left: 40%;
  }
  49% {
    left: 50%;
  }
  66% {
    left: 60%;
  }
  82% {
    left: 55%;
  }
  100% {
    left: 50%;
  }
}

@-webkit-keyframes zoominout {
  0% {
    width: 180px;
  }
  50% {
    width: 178px;
  }
  100% {
    width: 180px;
  }
}

@keyframes zoominout {
  0% {
    width: 180px;
  }
  50% {
    width: 178px;
  }
  100% {
    width: 180px;
  }
}

@-webkit-keyframes buttonCollapse {
  0% {
    top: 50%;
  }
  50% {
    top: 60%;
  }
  100% {
    top: 50%;
  }
}

@keyframes buttonCollapse {
  0% {
    top: 50%;
  }
  50% {
    top: 60%;
  }
  100% {
    top: 50%;
  }
}

.menu ul {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .menu ul {
    padding-bottom: 10px;
  }
}

.menu ul li {
  list-style: none;
  position: relative;
}

@media (max-width: 991.98px) {
  .menu ul li {
    padding: 15px 0 5px 0;
    border-bottom: 2px solid #858585;
  }
}

.menu ul li a {
  font-family: 'Poppins';
  color: #000;
  font-weight: bold;
  font-size: 18px;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  text-decoration: none;
  display: block;
  width: 100%;
}

@media (max-width: 991.98px) {
  .menu ul li a {
    font-size: 25px;
  }
}

.menu ul li a:hover {
  color: #6EBB4A;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

@media (max-width: 991.98px) {
  .menu ul li.current_page_item {
    padding-left: 25px;
  }
}

.menu ul li.current_page_item a {
  color: #6EBB4A;
}

.menu ul li::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 13px;
  background: transparent;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.menu ul li:hover::after {
  width: 10px;
  height: 10px;
  border-radius: 13px;
  background: #6EBB4A;
  position: absolute;
  bottom: -10px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-animation: mymove 1s infinite;
          animation: mymove 1s infinite;
}

@media (max-width: 991.98px) {
  .menu ul li:hover::after {
    display: none;
  }
}

.menu ul li.current_page_item::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 13px;
  background: #6EBB4A;
  position: absolute;
  bottom: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 991.98px) {
  .menu ul li.current_page_item::after {
    bottom: 18px;
    left: 10px;
    -webkit-transform: translateY(unset);
            transform: translateY(unset);
  }
}

.menu_brand {
  padding: 15px 0;
  min-height: 110px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991.98px) {
  .menu_brand {
    padding: 0 15px;
  }
}

.menu_brand span {
  width: 20px;
  height: 3px;
  background-color: #509399;
  display: block;
  margin: 3px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger:hover {
  cursor: pointer;
}

button {
  border: none;
  background: transparent;
  height: 50px;
  width: 50px;
  position: relative;
}

button:focus {
  outline: 0px auto -webkit-focus-ring-color !important;
}

button svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  -webkit-animation: buttonCollapse .5s infinite;
          animation: buttonCollapse .5s infinite;
}

button svg path {
  fill: #6EBB4A;
}

@media (min-width: 992px) {
  button {
    display: none;
  }
}

button.active svg {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.genMen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

.desktop-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 75%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (max-width: 991.98px) {
  .desktop-menu {
    width: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 991.98px) {
  .desktop-menu .menu-menu2-container {
    display: none;
  }
}

.desktop-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  height: 100%;
  margin-bottom: 0;
}

.desktop-menu ul li {
  margin-left: 30px;
}

.home-slider__image {
  z-index: -5;
  height: 700px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991.89px) {
  .home-slider__image {
    height: 500px;
  }
}

@media (max-width: 757.89px) {
  .home-slider__image {
    height: 300px;
  }
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.55);
}

.home-slider__caption {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
}

.home-slider__caption h1 {
  color: #6EBB4A;
  font-size: 75px;
  margin: 0 auto;
  width: 743px;
  text-align: center;
  letter-spacing: 1px;
  font-family: 'Poppins';
}

@media (max-width: 991.89px) {
  .home-slider__caption h1 {
    font-size: 35px;
    width: 100%;
  }
}

@media (max-width: 767.89px) {
  .home-slider__caption h1 {
    font-size: 25px;
    width: 100%;
  }
}

.home-slider__caption p {
  font-family: 'Roboto-Light';
}

@media (max-width: 575.89px) {
  .home-slider__caption p {
    display: none;
  }
}

@media (max-width: 991.89px) {
  .home-slider__caption p {
    font-size: 13px;
  }
}

.conterup {
  font-family: 'Poppins';
  margin-top: -60px;
  position: relative;
}

@media (max-width: 991.89px) {
  .conterup {
    padding-top: 30px;
  }
}

@media (max-width: 767.89px) {
  .conterup {
    padding-top: 15px;
  }
}

.conterup svg {
  position: absolute;
  right: 0;
  top: 60px;
  width: 65%;
  height: 967px;
  z-index: -2;
}

.conterup img {
  position: absolute;
  right: 0;
  top: 0px;
  height: 934px;
  z-index: -1;
}

@media (max-width: 991.89px) {
  .conterup img {
    top: 00px;
  }
}

@media (max-width: 991.89px) {
  .conterup {
    margin-top: 0px;
  }
}

.conterup_box {
  min-height: 340px;
  background-color: #fff;
}

@media (max-width: 991.89px) {
  .conterup_box {
    min-height: 380px;
  }
}

.conterup_box p {
  font-size: 16px;
  color: #848D86;
}

.conterup_box h1 {
  font-size: 80px;
  color: #6EBB4A;
}

.conterup_box span {
  font-size: 30px;
  text-transform: uppercase;
  color: #848D86;
}

.home_aboutus {
  font-family: 'Poppins';
  position: relative;
  margin-top: 50px;
}

@media (max-width: 991.89px) {
  .home_aboutus {
    margin-top: 30px;
  }
}

.home_aboutus span.home_aboutus_title {
  font-size: 40px;
  font-weight: bold;
  line-height: 125%;
  margin-bottom: 20px;
  display: block;
}

.home_aboutus p {
  font-size: 1.125em;
  font-weight: 400;
  color: #848D86;
}

.home_aboutus_boxs {
  margin-top: 50px;
}

.home_aboutus_boxs a {
  display: inline-block;
  color: #187330;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.home_aboutus_boxs a::after {
  content: "";
  background: #187330;
  opacity: 0.3;
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0px;
  bottom: 2px;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.home_aboutus_boxs a:hover::after {
  width: 100%;
}

@media (max-width: 991.89px) {
  .home_aboutus_boxs {
    margin-top: 16px;
  }
}

@media (max-width: 767.89px) {
  .home_aboutus_boxs .col-12 {
    margin-bottom: 16px;
  }
}

.home_aboutus_boxs .minTitle {
  font-size: 1.125em;
  font-weight: 600;
  margin-bottom: 9px;
  display: block;
}

.home_aboutus_boxs p {
  color: #848D86;
  font-size: 0.925em;
  line-height: 1.75em;
  margin-bottom: 9px;
}

#projekte_projekte p {
  margin-bottom: 0 !important;
}

#projekte_projekte span.title {
  margin-bottom: 1rem;
  display: block;
}

.projektesection .all {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 101;
}

.projektesection .all .carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  color: #fff;
  text-align: center;
  top: 0;
}

.projektesection #projekte_projekte {
  margin-bottom: 30px;
  cursor: pointer;
}

.projektesection #projekte_projekte .img_thumbnail {
  position: relative;
  font-family: 'Poppins';
  border-radius: 20px !important;
  overflow: hidden;
}

.projektesection #projekte_projekte .img_thumbnail span {
  font-size: 1.125em;
  font-weight: bold;
  font-style: italic;
}

.projektesection #projekte_projekte .img_thumbnail .content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: unset;
  width: 100%;
  height: 0;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.projektesection #projekte_projekte .img_thumbnail:hover .content {
  bottom: 0;
  top: unset;
  height: 100%;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  padding: 32px;
}

.projektesection #projekte_projekte .img_thumbnail img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 991.98px) {
  .projektesection #projekte_projekte .img_thumbnail img {
    height: 200px;
  }
}

@media (max-width: 991.98px) {
  .projektesection #projekte_projekte .img_thumbnail img {
    height: 300px;
  }
}

.projektesection #projekte_projekte .carousel {
  width: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  width: calc(100% - 32px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 767.998px) {
  .projektesection #projekte_projekte .carousel {
    left: calc(50% - 9px);
  }
}

.projektesection #projekte_projekte .carousel .carousel-inner {
  text-align: center;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff !important;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close {
  position: fixed;
  top: 35px;
  right: 50px;
  color: #966386;
  z-index: 9999 !important;
  font-size: 79px !important;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  text-shadow: none !important;
  display: none;
}

.close:hover {
  color: white;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  cursor: pointer;
}

.projektesection {
  margin-top: 100px;
  font-family: 'Poppins';
}

@media (max-width: 991.98px) {
  .projektesection {
    margin-top: 50px;
  }
}

@media (max-width: 767.98px) {
  .projektesection {
    margin-top: 20px;
  }
}

.projektesection .title {
  font-weight: bold;
  font-size: 2.5rem;
}

.projektesection p {
  color: #848D86;
  font-size: 1.125rem;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  .projektesection p {
    margin-bottom: 20px;
  }
}

.projektesection a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

body {
  position: relative;
}

body .ourWorks_svg {
  position: absolute;
  right: 0;
  top: 0px;
  height: 100vh;
  z-index: -50;
}

body .ourWorks {
  margin-top: 50px;
}

body .ourWorks p {
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  body .ourWorks p {
    margin-bottom: 20px;
  }
}

body .ourWorks .pagination {
  margin: 0 auto;
}

body .ourWorks .pagination a {
  display: block;
  padding: 0 10px;
  border: 1px solid #6EBB4A;
  font-weight: bold;
  margin: 0 3px;
  text-decoration: none;
  border-radius: 4px;
  color: #6EBB4A;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

body .ourWorks .pagination a:hover {
  color: #fff;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  background-color: #6EBB4A;
}

body .ourWorks .pagination span {
  display: block;
  padding: 0 10px;
  border: 1px solid;
  margin: 0 3px;
  border-radius: 4px;
  border: 1px solid #6EBB4A;
  font-weight: bold;
  color: #6EBB4A;
}

body .ourWorks .pagination span.current {
  color: #fff;
  background-color: #6EBB4A;
}

body header {
  z-index: 9999;
}

#map1 {
  width: 100%;
  height: 400px;
}

@media (max-width: 991.98px) {
  #map1 {
    height: 300px;
  }
}

.contact {
  position: relative;
  padding-top: 100px;
}

@media (max-width: 991.98px) {
  .contact {
    padding-top: 50px;
  }
}

.contact .form-control {
  background-color: transparent;
}

.contact ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 0px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 50px;
}

@media (max-width: 991.98px) {
  .contact ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  .contact ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (max-width: 767.98px) {
  .contact ul li {
    text-align: center;
  }
}

.contact ul li .nav-link.active {
  color: #339264 !important;
}

.contact ul li a {
  border: 0 !important;
  color: #858585;
  font-weight: bold;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  font-family: 'Poppins';
  font-size: 35px;
  padding: 15px;
}

@media (max-width: 767.98px) {
  .contact ul li a {
    font-size: 25px;
    padding: 10px 0;
  }
}

.contact ul li a:hover {
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  color: #339264;
}

.contact h1 {
  font-family: 'Poppins';
  font-size: 2.5rem;
  display: block;
  font-weight: bold;
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  .contact h1 {
    margin-bottom: 20px;
  }
}

.contact h2 {
  font-family: 'Poppins';
  color: #339264;
  margin-bottom: 40px;
  display: block;
}

@media (max-width: 991.98px) {
  .contact h2 {
    margin-bottom: 10px;
  }
}

.contact_logo {
  text-align: center;
}

.contact_logo img {
  margin-top: 80px;
  min-width: 100px;
}

@media (max-width: 991.98px) {
  .contact_logo img {
    margin-top: 50px;
  }
}

.contact_content {
  margin-top: 100px;
  text-align: center;
}

@media (max-width: 991.98px) {
  .contact_content {
    margin-top: 50px;
  }
}

.contact_content p {
  font-family: 'Poppins';
  font-size: 30px;
  line-height: 50px;
}

@media (max-width: 991.98px) {
  .contact_content p {
    font-size: 25px;
    line-height: 35px;
  }
}

.contact_contactForm .col-12 .col-lg-6 {
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  .contact_contactForm .col-12 .col-lg-6 {
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

.contact_contactForm input, .contact_contactForm textarea {
  -webkit-box-shadow: 0;
          box-shadow: 0;
  outline: 0px;
  -webkit-box-shadow: 0 0 0 0rem rgba(0, 123, 255, 0.25) !important;
          box-shadow: 0 0 0 0rem rgba(0, 123, 255, 0.25) !important;
  border-top: 0px;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 2px solid #858585;
  border-radius: 0;
}

.contact_contactForm input:focus, .contact_contactForm textarea:focus {
  border-color: #339264;
}

.contact_contactForm input {
  padding-bottom: 30px;
  font-size: 20px;
  font-family: 'Poppins';
}

.contact_contactForm textarea {
  padding-top: 0;
  margin-top: -6px;
  min-height: 159px;
  font-size: 20px;
  font-size: 20px;
  font-family: 'Poppins';
}

@media (max-width: 767.98px) {
  .contact_contactForm textarea {
    min-height: 120px;
  }
}

.contact_contactForm select {
  padding-bottom: 30px;
  margin-bottom: 65px;
  font-size: 20px;
  font-family: 'Poppins';
  color: #858585;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 0px;
  border-bottom: 2px solid #858585;
}

@media (max-width: 767.98px) {
  .contact_contactForm select {
    margin-bottom: 30px;
  }
}

.contact_contactForm select:focus {
  outline: 0px;
}

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

.contact_contactForm .sendenBtn {
  padding: 20px 60px;
  margin: 40px auto;
  border: 2px solid #339264;
  border-radius: 50px;
  background-color: #fff;
  color: #339264;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  font-family: 'Poppins';
  font-size: 20px;
}

@media (max-width: 991.98px) {
  .contact_contactForm .sendenBtn {
    margin: 20px auto;
    padding: 15px 30px;
  }
}

@media (max-width: 767.98px) {
  .contact_contactForm .sendenBtn {
    padding: 10px 20px;
  }
}

.contact_contactForm .sendenBtn:hover {
  background-color: #339264;
  color: #fff;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

.contact_banner {
  margin-top: 150px;
  background-color: #EEEEEF;
  height: 450px;
}

@media (max-width: 991.98px) {
  .contact_banner {
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .contact_banner {
    min-height: 450px;
    height: auto;
  }
}

.contact_banner_image {
  position: relative;
  height: 100%;
}

@media (max-width: 991.98px) {
  .contact_banner_image {
    text-align: center;
  }
}

.contact_banner_image img {
  position: absolute;
  right: 0;
  top: -100px;
}

@media (max-width: 1199.98px) {
  .contact_banner_image img {
    max-width: 80%;
    top: 15px;
  }
}

@media (max-width: 991.98px) {
  .contact_banner_image img {
    position: relative;
    top: 40px;
    max-width: 90%;
    margin-top: 0;
  }
}

.contact_banner_newsletter {
  height: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 767.98px) {
  .contact_banner_newsletter {
    height: 280px;
  }
}

.contact_banner_newsletter h1 {
  font-size: 80px;
}

@media (max-width: 1199.98px) {
  .contact_banner_newsletter h1 {
    font-size: 50px;
  }
}

@media (max-width: 767.98px) {
  .contact_banner_newsletter h1 {
    font-size: 40px;
    text-align: center;
  }
}

.contact_banner_newsletter li {
  list-style: none;
}

.contact_banner_newsletter li form {
  max-width: 520px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 3px solid #000;
  border-radius: 50px;
  overflow: hidden;
  background-color: #eeeeef;
}

@media (max-width: 1199.98px) {
  .contact_banner_newsletter li form {
    max-width: 100%;
  }
}

.contact_banner_newsletter li form .tnp-email {
  padding: 20px;
  border: 0px;
  background-color: #eeeeef;
  font-size: 20px;
  font-family: 'Poppins';
}

.contact_banner_newsletter li form .tnp-email:focus {
  outline: 0px;
  padding: 20px;
}

.contact_banner_newsletter li form .tnp-submit {
  width: 80px;
  overflow: hidden;
  opacity: 0;
  background-color: #eeeeef;
  z-index: 3;
}

.contact_banner_newsletter li form .tnp-submit::after {
  display: inline-block;
  font-weight: 600;
  font-family: Font Awesome\ 5 Free !important;
  content: "" !important;
}

.actions {
  font-family: 'Poppins';
  position: fixed;
  z-index: 2;
  top: 50%;
  right: -15.5rem;
  text-align: center;
  width: 300px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 15px 0px 15px 50px;
  background-color: rgba(51, 146, 100, 0.8);
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  -webkit-transition: all .3s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  list-style: none;
}

.actions a {
  text-align: left;
  padding-left: 10px;
}

.actions .items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.actions .items i {
  font-size: 32px;
  padding: 9px 0;
}

@media (max-width: 767.98px) {
  .actions {
    right: -16.5rem;
  }
}

.actions a {
  opacity: .7;
  -webkit-transition: .2s;
  transition: .2s;
}

.actions a:hover {
  opacity: 1;
  -webkit-transition: .2s;
  transition: .2s;
}

.actions h2 {
  position: absolute;
  top: 50%;
  left: -1rem;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
  color: #fff;
  cursor: pointer;
  font-size: 25px;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
}

@media (max-width: 767.98px) {
  .actions h2 {
    font-size: 20px;
  }
}

.actions.active {
  background-color: rgba(51, 51, 51, 0.8);
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all .3s ease-in-out;
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  left: unset;
  border-top-left-radius: 9px;
  border-bottom-left-radius: 9px;
  right: -192px;
  list-style: none;
}

.actions span {
  color: #d7d6d6;
  font-size: 16px;
}

.actions a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
}

.footer {
  font-family: 'Poppins';
  position: relative;
  padding: 100px 0 20px 0;
  margin-top: 100px;
}

@media (max-width: 991.98px) {
  .footer {
    padding: 50px 0 20px 0;
    margin-top: 50px;
  }
}

.footer .contactinfo {
  border-bottom: 1px solid rgba(133, 133, 133, 0.2);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .footer .contactinfo {
    padding-left: 30%;
  }
}

@media (max-width: 767.98px) {
  .footer .contactinfo {
    padding-left: 22%;
  }
}

@media (max-width: 575.98px) {
  .footer .contactinfo {
    padding-left: 15%;
  }
}

@media (max-width: 400.98px) {
  .footer .contactinfo {
    padding-left: 0%;
  }
}

.footer svg.bg-grey {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -99;
}

.footer img {
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  .footer img {
    width: 100%;
    margin-bottom: 30px;
  }
}

.footer .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer .info svg {
  z-index: 9;
  position: relative;
}

@media (max-width: 991.98px) {
  .footer .info {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .footer .info {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 30px;
  }
}

.footer .info p {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.footer .info a {
  text-decoration: none;
  font-size: 1.25rem;
  color: #524459;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.footer .info a:hover {
  color: #6EBB4A;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.footer .info svg {
  margin-right: 1rem;
}

.footer .menufooter {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.footer .menufooter .menu-menu2-container {
  width: 100%;
}

.footer .menufooter .menu-menu2-container .navbar-nav {
  width: 70%;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  margin: 0 auto;
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  .footer .menufooter .menu-menu2-container .navbar-nav {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .footer .menufooter .menu-menu2-container .navbar-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .menufooter .menu-menu2-container .navbar-nav li {
    padding: 10px 0;
  }
}

.footer .menufooter .menu-menu2-container .navbar-nav a {
  text-decoration: none;
  font-size: 1.25rem;
  color: #524459;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.footer .menufooter .menu-menu2-container .navbar-nav a:hover {
  color: #6EBB4A;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.footer .copyrights p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 991.98px) {
  .footer .copyrights p {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.abotus {
  margin-top: 50px;
  font-family: 'Poppins';
}

.abotus_head {
  text-align: center;
}

.abotus_head span {
  font-weight: bold;
  font-size: 2.5rem;
}

.abotus_head p {
  color: #848D86;
  font-size: 1.125rem;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  .abotus_head p {
    margin-bottom: 50px;
  }
}

.abotus_profile {
  margin-bottom: 100px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 991.98px) {
  .abotus_profile {
    margin-bottom: 50px;
  }
}

@media (max-width: 767.98px) {
  .abotus_profile {
    margin-bottom: 30px;
  }
}

.abotus_profile img {
  border-radius: 50%;
  height: 350px;
  width: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}

.abotus_profile span {
  margin-bottom: 9px;
  display: block;
}

.abotus_profile span.name {
  font-size: 35px;
  font-weight: 600;
}

.abotus_profile span.positions {
  font-size: 1.125rem;
  font-weight: 600;
}

@media (max-width: 767.98px) {
  .abotus_profile span {
    margin-bottom: 0;
  }
}

.abotus_profile p {
  color: #848D86;
  font-size: 1.125em;
  line-height: 1.75em;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .abotus_profile p {
    text-align: justify;
  }
}

@media (max-width: 767.98px) {
  .abotus_profile .content {
    text-align: center;
  }
  .abotus_profile .content .name {
    margin-top: 20px;
  }
  .abotus_profile .content .positions {
    margin-bottom: 20px;
  }
}

.abotus_content img {
  border-radius: 20px !important;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 50px;
}

@media (max-width: 991.98px) {
  .abotus_content img {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .abotus_content img {
    margin-bottom: 20px;
    height: 300px;
  }
}

.abotus_content span {
  font-size: 1.125em;
  font-weight: 600;
  margin-bottom: 9px;
  display: block;
}

.abotus_content p {
  color: #848D86;
  font-size: 1.125em;
  line-height: 1.75em;
  margin-bottom: 1rem;
}

.abotus_content a {
  display: inline-block;
  color: #187330;
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

@media (max-width: 767.98px) {
  .abotus_content a {
    margin-bottom: 30px;
  }
}

.abotus_content a::after {
  content: "";
  background: #187330;
  opacity: 0.3;
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0px;
  bottom: 2px;
  -webkit-transition: 200ms;
  transition: 200ms;
}

.abotus_content a:hover::after {
  width: 100%;
}
/*# sourceMappingURL=main.css.map */