/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@font-face {
  font-family:'Manrope';
  src:url( '/fonts/Manrope-Regular.ttf') format('truetype');
}

body {
  font-family:'Manrope', sans-serif !important;
  color: #444444;

}

a {
  color: #D4892D;
  text-decoration: none;
  font-weight: 600;
}

a:hover {
  color: #D4892D;
  text-decoration: none;
}

a u{
  text-decoration-color: #D4892D;
}

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

.btn-full {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,.3);
  transition: all 125ms ease-out;
}
.btn-full:hover {
 color: #fff;
 transform: translate3d(0, -1px, 0);
}

.btn-transparant {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #d4892d;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,.3);
  transition: all 125ms ease-out;
  background-color: white;
}
.btn-transparant:hover {
  transform: translate3d(0, -1px, 0);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #37517e;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #37517e;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 15px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background-color: #152f30;
}
#header.header-scrolled, #header.header-inner-pages {
  background: rgba(21, 47, 48, 0.9);
}
#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
#header .logo a {
  color: #fff;
}
#header .logo img {
  max-height: 25px;
}

/*--------------------------------------------------------------
# Language switcher
--------------------------------------------------------------*/
.language-switcher {
  float: right;
  margin-left: 0px;
}
.language-dropdown{
  margin-top: 0;
  margin-bottom: auto;
}
.language-dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
  display: block;
}
.navbar-mobile .language-dropdown {
  display: none;
}

.nav-link {
  padding-right: 0px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active:focus, .navbar li:hover > a {
  color: #D4892D;
}
.navbar .active{
  color: #ffffff;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 15px;
  border-radius: 15px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #d4892d;
  margin-top: 0px;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  color: #fff;
  background: #d4892d;
}
.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  margin-top: 2px;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #D4892D;
}
.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}
.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}
.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
/**
* Mega-menu
*/
.navbar .dropdown .dropdown-menu {
  left: -400px;
}
.mega-menu{
  padding: 0px;
  width: max-content;
  max-width: 1000px;
}
.mega-menu p{
  margin-bottom: 5px;
}
.mega-menu .mega-title {
  font-size: 18px;
  margin-top: 0px;
  font-weight: bold;
}
.mega-menu .mega-subtitle {
  font-size: 14px;
  white-space: normal;
}
.mega-menu a {
  white-space: normal;
}
.mega-menu-item:hover {
  background-color: #d4892d1c;
  border-radius: 10px;
}
.mega-menu-img {
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
}
.navbar .dropdown .dropdown-menu .col-menu-item{
  padding-top: 20px;
  padding-bottom: 20px;
}
.col-menu-stories{
  padding-left: 0px;
  padding-right: 0px;
}
.mega-menu-stories a{
  display: block;
  padding: 0px !important;
}
.mega-menu-stories a:focus{
  display: block;
  padding: 0px !important;
  white-space: normal;
}
.mega-menu-stories-img-box{
  border-radius: 15px;
  position: relative;
}
.mega-menu-stories-img-box:hover {
  -webkit-filter: brightness(85%);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.mega-menu-stories-img-title{
  position: absolute;
  bottom: 0px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #0000008f;
  color: white;
  font-size: 14px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
.mega-menu-stories .mega-menu-stories-title a{
  font-size: 14px !important;
  padding-left: 10px !important;
  padding-top: 15px !important;
}
.mega-menu-stories-title img{
  margin-right: 10px;
  margin-left: 10px;
}
.mega-menu-stories .mega-menu-stories-text{
  font-size: 16px;
  padding-left: 20px;
}
.mega-menu-stories-img{
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  border-radius: 15px;
  border-radius: 15px;
  max-height: 200px;
  height: 200px;
  object-fit: cover;
}
.ul-intro-text {
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 13px;
  color: gray;
}
@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
  .navbar .dropdown .dropdown-menu {
    left: -150px;
  }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .btn_login {
    display: inherit;
    color: #37517e !important;
  }
  .navbar ul {
    display: none;
  }
  .mega-menu{
    width: auto;
  }
  .navbar .dropdown .dropdown-menu .col-menu-item{
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .mega-menu-stories-img-box {
    margin-top: 15px;
  }
  .mega-menu .navbar-mobile .dropdown ul a{
    padding: 10px 0px !important;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(21, 47, 48, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #D4892D;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 10px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #D4892D;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  /*height: 75vh;*/
  background: white;
}
#hero .container {
  padding-top: 72px;
}
#hero h1 {
  margin: 0 0 10px 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 58px;
  color: #444444;
}
#hero .hero-focus{
  color: #678a3c;
}
#hero h2 {
  color: #444444;
  margin-bottom: 40px;
  font-size: 22px;
}
#hero .subsubline{
  color: #678a3c;
  margin-bottom: 20px;
  font-size: 15px;
  text-transform: uppercase;
}
#hero .btn-get-started {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 28px 18px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
}
#hero .btn-get-started:hover {
  background: #ae7228;
}
#hero .hero-img {
  text-align: center;
  display: flex;
  justify-content: center;
}
#hero .img-hero {
  max-width: 90%;
  /*border-radius: 40px;*/
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}
#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}
#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .hercontactsub{
  font-size: small;
}

#hero .book-a-demo-mobile {
  display: none;
}

@media (max-width: 991px) {
  #hero {
    /*height: 100vh;*/
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
    display: flex;
    justify-content: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
  #hero .book-a-demo-mobile {
    display: block;
    background-color: white;
    color: #D4892D;
    border: 2px #D4892D solid;
  }
}
@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
    margin-bottom: 30px;
  }
  #hero .btn-get-started {
    font-size: 16px;
    padding: 10px 24px 11px 24px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  padding-bottom: 0px;
  overflow: hidden;
}

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

.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #5b5b5b;
}
/*.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #47b2e4;
  bottom: 0;
  left: calc(50% - 20px);
}*/
.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# landing page
--------------------------------------------------------------*/

.landing_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.8),rgba(21,47,48, 0.2));
}
#landing_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 60vh;
  object-fit: cover;
}
.landing_hero .btn-get-started {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
}
.landing_hero .btn-get-started:hover {
  background: #ae7228;
}
.landing_hero h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.landing_hero h2 {
  color: white;
  margin-bottom: 10px;
  font-size: 20px;
}
#main .clients {
  margin-top: 40px;
  padding-top: 0px;
  margin-bottom: 10px;
}
#why-us .header_line{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 50px;
  margin-top: 120px;
}
#why-us .sub_line{
  font-size: 18px;
  font-weight: 100;
  margin-top: 120px;
}
@media (max-width: 768px) {
  #why-us .header_line{
    text-align: center;
  }
  #why-us .sub_line{
    text-align: center;
    margin-top: 50px;
  }
}
#why-us .value_prop_box{
  border: 1px solid #0000002b;
  border-radius: 15px;
  padding:20px;
  min-height: 450px;
  transition: all 125ms ease-out;
}
#why-us .value_prop_box h4{
  font-weight: 600;
}
#why-us .main_box{
  background-color: #fac48359;
  min-height: 480px;
}
#main .why-us .value_prop_box img{
  margin-top: 20px;
  max-width: 100%;
  border: none;
}
#main .segments {
  margin-top: 0px;
  margin-bottom: 100px;
}
#main .segments h3{
  font-weight: 500;
}
#main .segments h5{
  margin-top: 20px;
  font-weight: 600;
  font-size: 18px;
}
#main .segments h5:hover{
  color:#d4892d;
}
#main .segments img{
  width: 100%;
  border-radius: 5px;
}
#main .segments img:hover{
  transform: scale(1.02);
}
#main .segments a{
  color:inherit;
  font-weight: inherit;
}
#main .segments .link_demo_garden {
  color: #D4892D;
  text-decoration: none;
  font-weight: 600;
}
#main .segments .link_demo_garden:hover {
  color: #D4892D;
  text-decoration: none;
}

/*--------------------------------------------------------------
# ArbNet banner
--------------------------------------------------------------*/
@media (max-width: 1024px) {
 	.arbnet-banner .arbnet-logo {
 		 text-align: left;
     margin-bottom: 30px;
 	}
  .arbnet-banner .content {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/*--------------------------------------------------------------
# Stories
--------------------------------------------------------------*/
.stories-bg{
}

.main_stories_wrapper{
  margin-top: 0px;
  margin-bottom: 10px;
}
.main_stories_wrapper .story_title{
  color: #D4892D;
  font-size: 1.1rem;
}
.main_stories_wrapper .hashtags a{
  font-size: 15px;
  color: #D4892D;
}
.main_stories_wrapper .publishdate{
  font-size: 12px;
  color: grey;
}

/*--------------------------------------------------------------
# Media kit
--------------------------------------------------------------*/
.media_kit_section{
  margin-top: 80px;
  margin-bottom: 80px;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
#services {
  padding-top: 80px;
  padding-bottom: 160px;
}
.card {
	 border: none;
	 transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
	 overflow: hidden;
	 border-radius: 0px;
	 min-height: 220px;
	 box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
}
 @media (max-width: 768px) {
	 .card {
		 min-height: 350px;
	}
}
 @media (max-width: 420px) {
	 .card {
		 min-height: 300px;
	}
}
.ecosystem1{
  background-image:url('../images/website_2/ecodomains/private_domains.jpg');
}
.ecosystem2{
  background-image:url('../images/website_2/ecodomains/public_domains.jpg');
}
.ecosystem3{
  background-image:url('../images/website_2/ecodomains/education.jpg');
}
.ecosystem4{
  background-image:url('../images/website_2/ecodomains/fruit_and_veg.jpg');
}
.ecosystem5{
  background-image:url('../images/website_2/ecodomains/business.jpg');
}
.ecosystem6{
  background-image:url('../images/website_2/ecodomains/professionals.jpg');
}
.card.card-has-bg {
	 transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
	 background-size: 145%;
	 background-repeat: no-repeat;
	 background-position: center center;
}
 .card.card-has-bg:before {
	 content: '';
	 position: absolute;
	 top: 0;
	 right: 0;
	 bottom: 0;
	 left: 0;
	 background: inherit;
	 -webkit-filter: grayscale(1);
	 -moz-filter: grayscale(100%);
	 -ms-filter: grayscale(100%);
	 -o-filter: grayscale(100%);
	 filter: grayscale(100%);
}
 .card.card-has-bg:hover {
	 transform: scale(0.98);
	 box-shadow: 0 0 5px -2px rgba(0, 0, 0, 0.3);
	 background-size: 160%;
	 transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
}
 .card.card-has-bg:hover .card-img-overlay {
	 transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
	 background: #234f6d;
	 background: linear-gradient(0deg, rgba(21, 47, 48, 0.5) 0%, rgba(0, 0, 0, 1) 100%);
}
 .card .card-footer {
	 background: none;
	 border-top: none;
}
 .card .card-footer .media img {
	 border: solid 3px rgba(255, 255, 255, 0.3);
}
 .card .card-meta {
	 color: #26bd75;
}
 .card .card-body {
	 transition: all 500ms cubic-bezier(0.19, 1, 0.22, 1);
   padding: 0px;
   padding-top: 20px;
}
 .card:hover {
	 cursor: pointer;
	 transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
 .card:hover .card-body {
	 margin-top: 10px;
	 transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.card:hover .card-title {
  background-color: #d4892d7a;
}
 .card .card-img-overlay {
	 transition: all 800ms cubic-bezier(0.19, 1, 0.22, 1);
	 background: #234f6d;
	 background: linear-gradient(0deg, rgba(21,47,48, 0.3785889355742297) 0%, rgba(21,47,48, 1) 100%);
   padding: 0px;
}
.card .card-title {
  background-color: #d4892d3b;
  padding-top: 10px;
  padding-bottom: 1px;
  padding-left: 20px;
  padding-right: 100px;
  width: fit-content;
}
.card .media-body a {
  background-color: white;
  margin-right: 5px;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 3px;
  padding-bottom: 3px;
  color: #3f3f3f;
  border-radius: 5px;
  margin-bottom: 5px;
  display: inline-block;
}
.card .media-body a:hover {
  background-color: white;
  padding-left: 8px;
  padding-right: 8px;
  padding-top: 3px;
  padding-bottom: 3px;
  color: white;
  background-color: #d4892d;
  display: inline-block;
}

/*--------------------------------------------------------------
# slogan
--------------------------------------------------------------*/
#slogan{
  display: block;
  margin-bottom: 50px;
  font-size: 35px;
  font-weight: 100;
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  padding: 30px 0;
  text-align: center;
  margin-top: 80px;
}
.clients img {
  max-width: 75%;
  max-height: 150px;
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  filter: grayscale(100);
  padding-top: 10px !important;
}
.clients img:hover {
  filter: none;
  transform: scale(1.1);
}
@media (max-width: 768px) {
  .clients img {
    max-width: 80%;
  }
}
.clientslogan {
    position: relative;
    margin-right: 0.5rem;
    z-index: 0;
}
.clientslogan:after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: -0.4rem;
    height: 15px;
    width: 103%;
    background-image: url("../images/website_2/misc/underline.svg");;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}
.clients .references .subslogan {
  color: #678A3C;
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 15px;
  padding-left: 35px;
  padding-right: 35px;
}
.clients .references .subslogan2 {
  font-size: 13px;
  padding-left: 10px;
  padding-right: 10px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}
.about .content ul {
  list-style: none;
  padding: 0;
}
.about .content ul li {
  padding-left: 28px;
  position: relative;
}
.about .content ul li + li {
  margin-top: 10px;
}
.about .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 20px;
  color: #47b2e4;
  line-height: 1;
}
.about .content p:last-child {
  margin-bottom: 0;
}
.about .content .btn-learn-more {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 32px;
  border-radius: 4px;
  transition: 0.3s;
  line-height: 1;
  color: #47b2e4;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  margin-top: 6px;
  border: 2px solid #47b2e4;
}
.about .content .btn-learn-more:hover {
  background: #47b2e4;
  color: #fff;
  text-decoration: none;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0px 0px;
}
.why-us .block{
  margin: 120px 0px;
}
.why-us .content {
  padding: 0px 20px 0 20px;
}
.why-us .content h2{
  text-transform: uppercase;
}
.why-us .content h3 {
  font-weight: 400;
  font-size: 18px;
  color: #678a3c;
}
.why-us .content h4 {
  font-size: 25px;
  font-weight: 700;
  margin-top: 5px;
}
.why-us .content p {
  font-size: 15px;
  color: #848484;
}
.why-us .img {
  border-radius: 10px;
  max-width: 80%
}
.why-us .icon {
  height: 100px;
}
#why-us .btn-labels {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,.3)
}
#why-us .btn-labels:hover {
  background: #ae7228;
}
.why-us .accordion-list {
  padding: 0 100px 60px 100px;
}
.why-us .accordion-list ul {
  padding: 0;
  list-style: none;
}
.why-us .accordion-list li + li {
  margin-top: 15px;
}
.why-us .accordion-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
}
.why-us .accordion-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding-right: 30px;
  outline: none;
  cursor: pointer;
}
.why-us .accordion-list span {
  color: #47b2e4;
  font-weight: 600;
  font-size: 18px;
  padding-right: 10px;
}
.why-us .accordion-list i {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.why-us .accordion-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.why-us .accordion-list .icon-show {
  display: none;
}
.why-us .accordion-list a.collapsed {
  color: #343a40;
}
.why-us .accordion-list a.collapsed:hover {
  color: #47b2e4;
}
.why-us .accordion-list a.collapsed .icon-show {
  display: inline-block;
}
.why-us .accordion-list a.collapsed .icon-close {
  display: none;
}
@media (max-width: 1024px) {
  .why-us .content, .why-us .accordion-list {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 992px) {
  .why-us .img {
    min-height: 300px;
  }
  .why-us .content {
    padding-top: 30px;
    text-align: center !Important;
  }
  .why-us .accordion-list {
    padding-bottom: 30px;
  }
}
@media (max-width: 575px) {
  .why-us .img {
    min-height: 150px;
  }
}

/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #37517e;
  font-family: "Poppins", sans-serif;
}
.skills .content ul {
  list-style: none;
  padding: 0;
}
.skills .content ul li {
  padding-bottom: 10px;
}
.skills .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #47b2e4;
}
.skills .content p:last-child {
  margin-bottom: 0;
}
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}
.skills .progress .skill {
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: #37517e;
}
.skills .progress .skill .val {
  float: right;
  font-style: normal;
}
.skills .progress-bar-wrap {
  background: #e8edf5;
  height: 10px;
}
.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: #4668a2;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  /*background: linear-gradient(rgb(147 112 52 / 52%), rgba(90, 63, 40, 0.9)), url(../images/website_2/cta.jpeg) fixed center center;*/
  background-size: cover;
  padding-bottom: 100px;
}
.cta h3 {
  /*color: #fff;*/
  font-size: 28px;
  font-weight: 700;
}
.cta p {
  /*color: #fff;*/
}
.cta-btn {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 15px;
  transition: 0.5s;
  margin: 0px;
  border: 2px solid #D4892D;
  color: #fff;
  background: #d4892d;
  width: auto;
}
.cta-btn:hover {
  background: #ae7228;
}
@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}
@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  list-style: none;
  margin-bottom: 20px;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  margin: 10px 5px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #444444;
  transition: all 0.3s;
  padding: 8px 20px;
  border-radius: 15px;
  font-family: "Poppins", sans-serif;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  background: #47b2e4;
  color: #fff;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-img {
  overflow: hidden;
}
.portfolio .portfolio-item .portfolio-img img {
  transition: all 0.6s;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 15px;
  bottom: 0;
  z-index: 3;
  right: 15px;
  transition: all 0.3s;
  background: rgba(29, 81, 9, 0.8);
  padding: 10px 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0px;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #f9fcfe;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #fff;
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #47b2e4;
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item:hover .portfolio-img img {
  transform: scale(1.15);
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
}
.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  background: rgba(255, 255, 255, 0.6);
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info::before {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  top: 35px;
  left: 35px;
  border-top: 3px solid #bdc6ca;
  border-left: 3px solid #bdc6ca;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info::after {
  display: block;
  content: "";
  width: 48px;
  height: 48px;
  position: absolute;
  bottom: 35px;
  right: 35px;
  border-bottom: 3px solid #bdc6ca;
  border-right: 3px solid #bdc6ca;
  transition: all 0.5s ease 0s;
  z-index: 9994;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: #d6d7d7;
  font-weight: 600;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: #d6d7d7;
  font-size: 14px;
  text-transform: uppercase;
  padding: 0;
  margin: 0;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  color: #8dd0f0;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-info::before {
  top: 15px;
  left: 15px;
}

.portfolio .portfolio-wrap:hover .portfolio-info::after {
  bottom: 15px;
  right: 15px;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #47b2e4;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #47b2e4;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(55, 81, 126, 0.08);
}
.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}
.portfolio-details .portfolio-description {
  padding-top: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.about_content{
  padding-top: 100px;
}
.team_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.9),rgba(21,47,48, 0.5));
}
#team_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 60vh;
  object-fit: cover;
}
.team_hero .btn-get-started {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 15px;
  transition: 0.5s;
  color: #fff;
  background: #d4892d;
}
.team_hero .btn-get-started:hover {
  background: #ae7228;
}
.team_hero h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.team_hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 20px;
}
.team{
  padding-bottom:100px;
}
.team .intro{
  margin-bottom: 100px;
}
.team-content{
    padding-top:0px;
}
.team .member {
  margin-top: 50px;
  position: relative;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}
.team .member .row {
  width: -webkit-fill-available;
}
.team .member .pic {
  overflow: hidden;
  width: 180px;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
}
.team .member .pic img {
  transition: ease-in-out 0.3s;
}
.team .member:hover {
  transform: translateY(-10px);
}
.team .member .member-info {
  padding-left: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.team .member .member-info-name {
  margin-bottom: 5px;
}
@media (max-width: 992px) {
  .team .member .member-info {
    padding-left: 0px;
  }
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #5b5b5b;
  display: contents;
}
.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  padding-top: 5px;
  position: relative;
  font-weight: 500;
}
.team .member span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}
.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
}
.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.team .member .social a {
  font-size: 18px;
  display: inline-block;
  background: #f8eace;
  color: #DBA366;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.team .member .social a:hover {
  background: #D4892D;
  color: #fff;
  text-decoration: none;
}
.team .member .social a + a {
  margin-left: 8px;
}
@media (max-width: 768px) {
  .team .member .member-info {
    text-align: center;
  }
  .team .member .social {
    justify-content: center;
  }
  .team .member span{
    padding-bottom: 0;
  }
  .team .member span::after{
    display: table;
    position: inherit;
    margin: 0 auto;
    margin-top: 10px;
  }
}
.team .slogan{
  margin-top: 100px;
}
.team .slogan h3{
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 10px;
  padding-left: 10px;
}
.team .mission{
  margin-top: 100px;
}
.team .picture_gallery{
  margin-top: 100px;
  margin-bottom: 0px;
}
.team .picture_gallery .gallery {
   line-height:0;
   -webkit-column-count:4;
   -webkit-column-gap:1px;
   -moz-column-count:4;
   -moz-column-gap:1px;
   column-count:4;
   column-gap:1px;
}
@media (max-width: 1000px) {
   .team .picture_gallery .gallery {
    -moz-column-count:    3;
    -webkit-column-count: 3;
    column-count:         3;
   }
}
@media (max-width: 800px) {
  .team .picture_gallery .gallery {
     line-height:0;
     -webkit-column-count:2;
     -moz-column-count:2;
     column-count:2;
  }
}
@media (max-width: 400px) {
  .team .picture_gallery .gallery {
     line-height:0;
     -webkit-column-count:1;
     -moz-column-count:1;
     column-count:1;
  }
}
.team .picture_gallery .gallery img {
   width: 100% !important;
   height: auto !important;
   margin-bottom:1px;
   filter: grayscale(100%);
}
.team .picture_gallery .gallery img:hover {
   filter:none;
}

/*--------------------------------------------------------------
# Advisery board
--------------------------------------------------------------*/

#adviseryboard .row {
  background: white;
}

.adviseryboard .member .linkedin {
  font-size: 18px;
  display: inline-block;
  background: #f8eace;
  color: #DBA366;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.adviseryboard .member .linkedin:hover {
  background: #D4892D;
  color: #fff;
  text-decoration: none;
}
.adviseryboard .member {
  padding: 50px;
}
@media (max-width: 767px) {
  .adviseryboard .member {
    padding: 25px;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .row {
  padding-top: 0px;
}
.pricing .box {
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(20, 45, 100, 0.1);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: 5px;
}
.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: #5b5a5a;
}
.pricing h4 {
  font-size: 48px;
  color: #37517e;
  font-weight: 400;
  font-family: "Manrope", sans-serif;
  margin-bottom: 25px;
}
.pricing h4 sup {
  font-size: 28px;
}
.pricing h4 span {
  color: #47b2e4;
  font-size: 18px;
  display: block;
}
.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #999;
  text-align: left;
  line-height: 20px;
}
.pricing ul li {
  padding: 10px 0 10px 20px;
  position: relative;
}
.pricing ul i {
  color: #28a745;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}
.pricing ul .na {
  color: #ccc;
}
.pricing ul .na i {
  color: #ccc;
}
.pricing ul .na span {
  text-decoration: line-through;
}
.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 15px;
  color: #47b2e4;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Manrope", sans-serif;
  transition: 0.3s;
  border: 1px solid #47b2e4;
}
.pricing .buy-btn:hover {
  background: #47b2e4;
  color: #fff;
}
.pricing .featured {
  border-top-color: #47b2e4;
}
.pricing .featured .buy-btn {
  background: #47b2e4;
  color: #fff;
}
.pricing .featured .buy-btn:hover {
  background: #23a3df;
}
@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}
@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}
#pricing_labels{
  padding-left: 0px;
  padding-right: 0px;
}
#pricing_labels .frame {
  background: #fff;
  padding: 30px 0;
  border: 1px solid #a4a2a2;
  min-height: 30px;
  border-radius: 15px;
  text-align: center;
}
#pricing_labels .inner-lign {
border-right: 1px solid #dbdbdb;
}
#pricing_labels .frame h5{
  font-size: 16px;
  font-weight: 600;
}
#pricing_labels .frame .label-img{
  min-height: 180px;
}
#pricing_labels .frame img{
  padding: 20px;
  max-width: 100%;
  max-height: 300px;
}
#pricing_labels .frame .small_tag{
  max-height: 180px;
}
#pricing_labels .frame .signs{
  max-height: 180px;
}
#pricing_labels .frame .icon{
    max-width: 20px;
    padding: 0px;
    margin-right: 5px;
}
#pricing_labels .amount{
    display: inline-block;
    font-size: 30px;
    color: #5a5a5a;
    position: relative;
    font-weight: 800;
}
#pricing_labels .currency{
    font-size: 14px;
}
#pricing_labels .tag-size{
    font-size: 14px;
}
#pricing_labels .popular{

  position:relative
}
@media (max-width: 1200px) {
  #pricing_labels .frame .label-2,.label-4{
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  #pricing_labels .frame .label-2,.label-3,.label-4{
    margin-top: 60px;
  }
  #pricing_labels .inner-lign {
    border-right: 0px;
  }
}
.badge-popular-pill{
  position:absolute;
  top:-25px;
  left:67%;
  transform:translateX(-50%);
  padding:4px 10px;
  border-radius:999px;
  background:linear-gradient(90deg,#ecffeb,#a5ffa0);
  color:#073047;
  font-weight:600;
  font-size:10px;
  box-shadow:0 6px 16px rgba(255,184,107,0.12);
  display:inline-flex;
  align-items:center;
  gap:8px;
  z-index:2;
}

/*----------
# Pricing modal
----------*/
.pricing .modal p {
  font-size: 15px;
}
.pricing .modal .modal-content{
  color: #444444
}
.pricing .modal .modal-body .img{
  width: 50%;
  border: 1px solid #d5d2d2;
  border-radius: 10px;
}
.pricing .modal-header{
  align-items: baseline;
}
.pricing .modal-header cc {
  font-size: 12px;
  margin-left: 8px;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0 100px;
}
.faq .faq-list ul {
  padding: 0;
  list-style: none;
}
.faq .faq-list li + li {
  margin-top: 15px;
}
.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}
.faq .faq-list a {
  display: block;
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
}
.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}
.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}
.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}
.faq .faq-list .icon-show {
  display: none;
}
.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}
.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}
.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}
.faq .faq-list a.collapsed .icon-close {
  display: none;
}
.faq .accordion-button:focus{
  border-color: #D4892D !important;
  box-shadow: none;
}
.faq .accordion-button:not(.collapsed) {
  color: #D4892D !important;
  background-color:#d4892d29;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.faq .accordion-body {
  background-color:#d4892d08;
}
@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact_hero{
  height: 50vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.9),rgba(21,47,48, 0.5));
}
#contact_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 50vh;
  object-fit: cover;
}
.contact_hero h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.contact_hero h2 {
  color: white;
  margin-bottom: 50px;
  font-size: 20px;
}
.contact_box{
  margin-top: 80px;
}
.contact .info {
  /*border-top: 3px solid #47b2e4;
  border-bottom: 3px solid #47b2e4;*/
  padding: 30px;
  /*background: #fff;*/
  width: 100%;
  /*box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.1);*/
}
.contact .info i {
  font-size: 20px;
  color: #D4892D;
  float: left;
  width: 44px;
  height: 44px;
  background: #fde0a4;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}
.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37517e;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #6182ba;
}
.contact .info .email p {
  padding-top: 5px;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #D4892D;
  color: #fff;
}
.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #D4892D;
  color: #fff;
}
.php-email-form {
  width: 100%;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.php-email-form .form-group {
  padding-bottom: 8px;
}
.php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}
.php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.php-email-form .error-message br + br {
  margin-top: 25px;
}
.php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #288B22;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.php-email-form .form-group {
  margin-bottom: 0px;
}
.php-email-form label {
  padding-bottom: 8px;
}
.php-email-form input, .php-email-form textarea, .php-email-form select{
  border-radius: 0;
  box-shadow: none;
  font-size: 16px;
  border-radius: 12px;
}
.php-email-form input:focus, .php-email-form textarea:focus, .php-email-form select:focus {
  border-color: #47b2e4;
}
.php-email-form select {
  color: #6C757D;
}
.php-email-form input, .php-email-form select{
  height: 50px;
}
.php-email-form textarea {
  padding: 10px 12px;
}
.php-email-form button[type=submit] {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,.3);
  transition: all 125ms ease-out;
  border: initial;
}
.php-email-form button[type=submit]:hover {
  color: #fff;
  transform: translate3d(0, -1px, 0);
}
.php-email-form .fa-asterisk {
    color: #e58282;
    font-size: 8px;
    position: absolute;
    right: 10px;
    margin-top: 8px;
    z-index: 1;
}
.php-email-form .footnote {
    color: #6c757d;
    font-size: 11px;
    margin-top: 2px;
    margin-left: 10px;
}
.php-email-form .use_cases_title{
  display: flex;
  margin-top: 25px;
}
.php-email-form .use_case_label {
  display: flex
}
.php-email-form .trial-text {
  font-size: 14px;
  margin-top: 20px;
}
.php-email-form .use_case_checkbox {
  width:20px;
  height:20px;
  margin-right: 10px;
  float: left;
}
.php-email-form .fg_use_cases {
    padding-bottom: 0px;
}
.php-email-form .checkbox-asterisk{
  margin-top: auto;
  margin-bottom: 15px;
  position: inherit;
  margin-left: 2px;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 575px) {
  .contact .php-email-form {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.contact .office-box {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}
.contact .office-box .office-box-detail {
  width: 100%;
  padding: 30px;
  min-height: 280px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0 0 0;
  min-height: 40px;
  margin-top: 20px;
  position: absolute;
}
@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 10px;
  }
}
.breadcrumbs a{
  color: #D4892D;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
  color: #37517e;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  color: white;
}
.breadcrumbs ol li + li {
  padding-left: 4px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #D4892D;
}

/*--------------------------------------------------------------
# Ecosystems
--------------------------------------------------------------*/
.ecosystem_content{
  background: white;
}
.ecosystem_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21, 47, 48, 0.8), rgba(21, 47, 48, 0.2));
}
.ecosystem_hero a{
  font-size: 14px;
}
#ecosystem_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 60vh;
  object-fit: cover;
}
.ecosystem .btn-get-started {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 15px;
  transition: 0.5s;
  color: #fff;
  background: #d4892d;
}
.ecosystem_hero .btn-get-started:hover {
  background: #ae7228;
}
.ecosystem_hero h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.ecosystem_hero h2 {
  color: white;
  margin-bottom: 10px;
  font-size: 20px;
}
.ecosystem_section_1{
  padding-top: 100px;
  padding-bottom: 50px;
}
.extension_icon{
  height: 35px;
  width: 35px;
}
.extension_box{
  position: relative;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  padding: 30px;
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
}
.extension_box h5{
  margin-top: 0.5rem;
}
.ecosystem_content a{
  color: #D4892D;
}
.ecosystem_section_2{
  padding-top: 50px;
  padding-bottom: 120px;
}
.ecosystem_section_3{
  height: 50vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.6),rgba(21,47,48, 0.6));
}
#ecosystem_section_3_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 50vh;
  object-fit: cover;
}
.ecosystem_stories_wrapper{
  margin-top: 100px;
  margin-bottom: 100px;
}
.ecosystem_stories_wrapper .story_title{
  color: #D4892D;
  font-size: 1.1rem;
}
.ecosystem_stories_wrapper .hashtags a{
  font-size: 15px;
  color: #D4892D;
}
.ecosystem_stories_wrapper .publishdate{
  font-size: 12px;
  color: grey;
}
.ecosystem .check {
  margin-right: 10px;
}
.ecosystem .why-us .block{
  padding-top: 0px;
  margin-top: 80px;
}
.ecosystem .clients {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .ecosystem_hero h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
  }
  .ecosystem_hero h2 {
    margin-bottom: 20px;
    font-size: 16px;
  }
}
.ecosystem .why-us .value_prop_box {
  min-height: 200px !important;
  align-items: inherit;
}
#school .why-us .value_prop_box {
  min-height: 240px !important;
}
#community .why-us .value_prop_box {
  min-height: 220px !important;
}
.ecosystem .why-us .value_prop_box h5{
  font-size: 18px;
}
.ecosystem .why-us .pillars{
  margin-top: 140px;
}
#agroecology .why-us .pillars{
  margin-top: 60px;
}
.ecosystem .arbnet-banner{
  margin-bottom: 80px;
}
.ecosytem_testimonial{
  margin-bottom: 100px;
}
.ecosytem_testimonial img{
  max-height: 180px;
  border-radius: 10px;
}
.ecosytem_testimonial .quotation-symbol{
  max-height: 50px;
  position: absolute;
  z-index: -99;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .breadcrumbs ol{
  color: black;
}
.pricing .pricing_section{
  margin-top: 100px;
}
.pricing .col-md-6 {
  margin-top: 20px;
}
.pricing .clients{
  margin-top: 0px;
  padding: 0px;
  margin-bottom: 100px;
  margin-top: 50px;
}
.clients .references .slogan{
  padding-left: 10px;
  padding-right: 10px;
}
.currency-selector{
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.currency-selector label{
  margin-right: 10px;
}
#currency-selector{
  width: auto;
}
.pricingTable{
    text-align: center;
    background: #fff;
    padding: 30px 0;
    border: 1px solid #a4a2a2;
    min-height: 300px;
    border-radius: 15px;
    padding-right: 0px;
}
.pricingTable .pricing-header{
    min-height: 260px;
    position: relative;
}
.pricingTable .subtitle{
    font-size: 16px;
    font-weight: 300;
    color: #2e282a;
    margin: 10px 15px 10px 15px;
    min-height: 45px;
}
.pricingTable .trial-button-subtitle{
    font-size: 12px;
    font-weight: 300;
    color: #2e282a;
    min-height: 43px;
    position: absolute;
    bottom: 0;
    left:0;
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
}
.pricingTable .trial-button-subtitle-bottom{
    font-size: 12px;
    font-weight: 300;
    color: #2e282a;
    min-height: 43px;
    position: relative;
    bottom: 0;
    left:0;
}
.pricingTable .price-value{
    padding: 30px 0;
    padding-bottom: 20px;
    margin-bottom: 10px;
    position: relative;
}
.pricingTable.plan_1 .price-value{
    padding-top: 45px;
    padding-bottom: 33px;
    min-height: 150px;
    border-top: 1px solid #dad8d8;
    border-bottom: 1px solid #dad8d8;
}
.pricingTable.plan_2 .price-value{
    min-height: 150px;
    border-top: 1px solid #dad8d8;
    border-bottom: 1px solid #dad8d8;
}
.pricingTable.plan_3 .price-value{
    min-height: 150px;
    border-top: 1px solid #dad8d8;
    border-bottom: 1px solid #dad8d8;
    color:#5a5a5a;
}
.pricingTable.plan_4 .price-value{
    min-height: 150px;
    border-top: 1px solid #dad8d8;
    border-bottom: 1px solid #dad8d8;
}
.pricingTable .pricing_icon{
  width: 20%;
  margin-bottom: 20px;
}
.pricingTable .price-value:before{
    content: "";
    border-top: 15px solid #fff;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    position: absolute;
    top: 0;
    left: 46%;
}
.pricingTable .month{
    display: block;
    font-size: 15px;
    color: #5a5a5a;
    text-transform: uppercase;
}
.pricingTable .yearly{
    display: block;
    font-size: 14px;
    color: #5a5a5a;
    text-transform: none;
    margin-top: 5px;
}
.pricingTable .amount{
    display: inline-block;
    font-size: 30px;
    color: #5a5a5a;
    position: relative;
    font-weight: 800;
}
.plan_3 .amount{
    margin-top: 5px;;
}
.pricingTable .currency{
    font-size: 14px;
}
.pricingTable .value{
    font-size: 20px;
    position: absolute;
    top: 21px;
    right: -27px;
}
.pricingTable .pricing-content{
    padding: 0;
    margin: 0 0 30px 0;
    list-style: none;
    min-height: 300px;
}
.pricingTable .pricing-content li{
    font-size: 14px;
    color: #868686;
    line-height: 20px;
}
.pricingTable .pricing-content li .list-icon img{
    margin-right: 5px;
    height: 13px;
}
.pricingTable .pricing-content li .list-icon-gem img{
    margin-right: 4px;
    height: 15px;
}
.pricingTable .pricing-content .list-item{
    flex-direction: row;
    padding-right: 5px;
}
.pricingTable .pricing-content li .list-icon,.list-icon-gem{
   order: 1;
}
.pricingTable .pricing-content li .list-text{
  order: 2;
  line-height: 20px;
}
.pricingTable .pricing-content li .list-footnote{
  font-size: 13px;
  margin-top: 5px;
  color: #678A3C;
}
.pricingTable .pricing-content li .list-footnote a{
  color: #678A3C;
}
.pricingTable .pricing-content .hero-items{
  margin-bottom: 10px;
}
.pricingTable .pricing-content .base-items{
  min-height: 220px;
}
.pricingTable .pricing-content .feature-items{
  min-height: 350px;
}
.pricingTable .pricing-content .service-items{
  min-height: 100px;
}
.pricingTable .pricing-content li a{
  display: contents;
}
.pricingTable .pricing-content .seperator{
  border-top: 1px solid #cecece;
  height: 0px;
  margin-left: 20px;
  margin-right: 20px;
}
.pricingTable .pricing-content .tooltip-button{
  order: 3;
  border-radius: 15px;
  background-color: white;
  border: 1px #e1e1e1 solid;
  margin-left: 5px;
  color: #e1e1e1;
  height: 18px;
  font-size: 11px;
  width: 18px;
  padding: 0px;
  font-weight: 600;
  line-height: 0px;
}
.pricingTable .pricingTable-contact{
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 10px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
  box-shadow: 0 1px 8px 0 rgba(0,0,0,.3);
  transition: all 125ms ease-out;
}
.pricingTable .pricingTable-contact:hover{
  color: #fff;
  transform: translate3d(0, -1px, 0);
}
.pricingTable .pricingTable-contact-clean{
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 10px 28px;
  border-radius: 15px;
  transition: 0.5s;
  color: #5b5a5a;
}
.pricingTable .pricingTable-contact-clean:hover{
  font-weight: 600;
}
.pricingTable .pricing-header .pricingTable-contact{
  margin-bottom: 10px;
}

.featureTable{
  margin-top: 100px;
  margin-bottom: 40px;
}
.featureTable th{
  font-weight: 300;
}
.featureTable a{
  color: #D4892D;
}
.featureTable .plan_1,.plan_2,.plan_3,.plan_4{
  text-align: center;
  color: white;
}
.featureTable .plan_1{
  background-color: #8ec274;
}
.featureTable .plan_2{
  background-color: #a69250;
}
.featureTable .plan_3{
  background-color: #6282b0;
}
.featureTable .plan_4{
  background-color: #af6573;
}
.featureTable .description{
  width: 28%;
  font-weight: bold;
}
.featureTable .plan{
  width: 18%;
}
.featureTable td{
  text-align: center;
}
.featureTable tr{
  border-bottom: 1px solid #dbdbdb;
}
.featureTable .ecosystem{
  text-transform: uppercase;
  font-weight: 600;
}
.featureTable .featureTable-contact{
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
}
.featureTable .featureTable-contact:hover{
  background: #ae7228;
}
.featureTable .tooltip-button{
  border-radius: 50px;
  width: 18px;
  border: 1px solid grey;
  margin-left: 5px;
  font-size: 9px;
}
.featureTable .feature_subline{
  font-size: 13px;
  margin-top: 5px;
}
@media only screen and (max-width: 990px){
    .pricingTable{
      margin-bottom: 30px;
    }
}
@media only screen and (max-width: 767px){
    .featureTable{
      display: none;
    }
}
.pricing_faq{
    margin-bottom: 100px;
}
.pricing_faq .accordion-button{
  color: white;
  background: rgba(21, 47, 48, 0.9);
}
.pricing_faq .accordion-button:focus{
  box-shadow: 0 0 0 0.15rem #d4892d;
}
.pricing_faq .accordion-button::after{
  background-image: url("../images/website_2/pricing/arrow_down.svg");
}

/*--------------------------------------------------------------
# Landing page references
--------------------------------------------------------------*/
#landing-references {
  border: 1px solid #0000002b;
  border-radius: 10px;
}
#landing-references .col-lg-3{
  border-right: 1px solid #0000002b;
  position: relative;
}
#landing-references .box-4{
  border-right: 0px;
}
#landing-references .client-logo{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
#landing-references .client-logo img{
  max-height: 80px;         /* prevent oversized logos */
  width: auto;
  object-fit: contain;
  max-width: 85%;
  padding: 0px;
  padding-top: 0px !important;
}
#landing-references .box-title{
  position: absolute;
  top: -2em;
  left: 50%;
  transform: translateX(-50%); /* centers horizontally */
  background: #fff;
  font-weight: 600;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 14px;
}
@media only screen and (max-width: 576px){
  #landing-references .box-2,
  #landing-references .box-4{
    border-right: 0px;
  }
  #landing-references .box-1,.box-2{
    margin-bottom: 30px;
  }
  #landing-references .box-3,.box-4{
    padding-top: 30px;
    border-top: 1px solid #0000002b;
  }
  #landing-references .box-3 .box-title,
  #landing-references .box-4 .box-title{
    top: -1em;
  }
  #landing-references .client-logo{
    margin-top: 0px;
    margin-bottom: 0px;
  }
  #landing-references .client-logo img{
    width: 60%
  }
}


/*--------------------------------------------------------------
# Jobs
--------------------------------------------------------------*/
.jobs_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.9),rgba(21,47,48, 0.5));
}
#jobs_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 60vh;
  object-fit: cover;
}
.jobs_hero h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  line-height: 56px;
  font-weight: 700;
  color: #fff;
}
.jobs_hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}
.jobs_wrapper h2 {
  font-size: 30px;
}
.jobs_wrapper h3 {
  font-size: 20px;
}
.jobs_wrapper h4 {
  font-size: 20px;
}
.jobs_hero .btn-get-started {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
}
.jobs_hero .btn-get-started:hover {
  background: #ae7228;
}
.jobs_wrapper {
  margin-top: 80px;
  margin-bottom: 80px;
}
.job_line h4{
  color: black;
}
.job_line p{
  color: black;
}
.jobs_cta{
  height: 50vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.6),rgba(21,47,48, 0.6));
}
.jobs_cta h3{
  font-size: 32px;
}
.jobs_cta h4{
  font-size: 20px;
}
#jobs_cta_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 50vh;
  object-fit: cover;
}
.job_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.9),rgba(21,47,48, 0.5));
}
#job_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 60vh;
  object-fit: cover;
}
.job_hero h1 {
  margin: 0 0 10px 0;
  font-size: 40px;
  line-height: 56px;
  font-weight: 700;
  color: #fff;
}
.job_hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 20px;
}
.job_content{
  margin-top: 80px;
  margin-bottom: 80px;
}
.job_content .description{
  font-size: 18px;
}
.job_content .description h1{
  font-size: 25px;
}
/*--------------------------------------------------------------
# Stories
--------------------------------------------------------------*/
#stories .stories_wrapper{
  margin-top: 150px;
  margin-bottom: 100px;
}
#story .content{
  margin-top: 100px;
  margin-bottom: 50px;
}
.stories_wrapper .publishdate{
  font-size: 12px;
  color: grey;
}
.stories_wrapper .story_title{
  color: #D4892D;
}
.stories_wrapper .hashtags a{
  font-size: 15px;
  color: #D4892D;
}
.stories_hero{
  height: 400px;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.9),rgba(21,47,48, 0.5));
}
#stories_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 400px;
  object-fit: cover;
}
.stories_hero h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  line-height: 56px;
  font-weight: 700;
  color: #fff;
}
.stories_hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}
.stories_hero .btn-get-started {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
}
.stories_hero .btn-get-started:hover {
  background: #ae7228;
}
.story-card-wrapper {
  padding: 10px;
}
.story-card {
  position: relative;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  border-radius: 5px;
  background: #ffffffa6;
  transition: 0.5s;
}
.story-card-wrapper .hero_image{
  height: 12rem;
  width: 100%;
  object-fit: cover;
  margin-bottom: 10px;
  border-top-left-radius:5px;
  border-top-right-radius:5px;
}
.story-card-wrapper .hero_image:hover{
  transform: scale(1.02);
}
.story-card-content{
  padding: 15px;
}
.story_quote{
  margin-bottom: 50px;
}
.stories .content_image{
  width: -moz-available;
  width: -webkit-fill-available;
  width: fill-available;
  margin-left: 80px;
  margin-right: 80px;
}
@media (max-width: 992px) {
  .stories .content_image{
    margin-top: 30px;
    margin-left: 0px;
    margin-right: 0px;
  }
}
.stories .content_image_caption {
  width: -webkit-fill-available;
  margin-left: 20px;
  margin-right: 20px;
  margin-top: 10px;
  text-align: center;
  font-style: italic;
}
.stories .content_2{
  margin-top: 100px;
}
.stories .content_3{
  margin-top: 100px;
}
.story_tags{
  margin-top: 30px;
}
.story_tags a{
  color: #D4892D;
}
.stories .youtube-video{
  aspect-ratio: 16 / 9;
  width: 100%;
  padding-left: 50px;
}
@media (max-width: 992px) {
  .stories_hero h1 {
    font-size: 24px;
    line-height: inherit;
    font-weight: 700;
    color: #fff;
  }
  .stories_hero h2 {
    font-size: 18px;
  }
  .stories .youtube-video{
    padding-left: 0px;
  }
}


/*--------------------------------------------------------------
# Digital Garden Experience
--------------------------------------------------------------*/
.experience_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.8),rgba(21,47,48, 0.2));
}
.experience_hero h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.experience_hero h2 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 20px;
}
.experience_hero .accordion{
  width: 60%;
}
@media only screen and (max-width: 767px){
  .experience_hero .accordion{
    width: 100%;}
}
.experience_hero .accordion-item {
  color: black;
  font-size: 12px;
}
.experience_hero .accordion-item h2 {
  margin-bottom: 0px;
}
.experience_hero .accordion-button {
  font-size: 12px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.experience_hero .accordion-body {
  padding-top: 10px;
  padding-bottom: 10px;
}
.experience_hero .accordion-button:focus{
  border-color: green;
  box-shadow: none;
}
.experience_hero .accordion-button:not(.collapsed){
  color: black;
  font-weight: 600;
  background-color: white;
}
#garden_experience .why-us{
  margin-top: 0px;
}
#garden_experience .header_line{
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 50px;
  margin-top: 30px;
}
#garden_experience .sub_line{
  font-size: 18px;
  font-weight: 100;
  margin-top: 30px;
}
#garden_experience .clients{
  margin-top: 0px;
  padding-top: 0px;
}
#garden_experience .faq{
  padding-top: 60px;
  margin-bottom: 50px
}
#garden_experience .slogan{
  padding-top: 0px;
}
#garden_experience .why-us .img{
  border: 1px solid #0000002b;
}

/*--------------------------------------------------------------
# Labels
--------------------------------------------------------------*/
.labels_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.9),rgba(21,47,48, 0.5));
}
#labels_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 60vh;
  object-fit: cover;
}
.labels_hero .btn-get-started {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
}
.labels_hero .btn-get-started:hover {
  background: #ae7228;
}
.labels_hero h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.labels_hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}
.labels_title{
  margin-top:80px;
  margin-bottom: 80px;
}
.labels_overview{
  margin-bottom: 80px;
}
.label_box{
  position: relative;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  min-height: 700px;
}
.label_box_2{
  min-height: 500px;
}
.label_box_content{
  padding: 10px;
}
#labels .plantsoon_dashboard {
  margin-top: 60px;
  margin-bottom: 100px;
}
#labels .btn-get-quote {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 18px 28px 18px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
}
#labels .btn-get-quote:hover {
  background: #ae7228;
}
#labels .slogan {
  margin-top: 20px;
  margin-bottom: 80px;
}
#labels .clients {
  margin-top: 0px;;
}
#labels .cta {
  margin-top: 0px;
  margin-bottom: 0px;
}
#labels .why-us{
  margin-top: 50px;
  margin-bottom: 0px;
}
#labels .why-us .value_prop_box{
  border: 1px solid #0000002b;
  border-radius: 15px;
  padding: 20px;
  min-height: 300px;
  transition: all 125ms ease-out;
}
#labels .how-it-works {
  padding-top: 0px;
}
#labels .how-it-works a{
  margin-top: 0px !important;
}
#labels .main_box{
  background-color: #fac48359;
}
#labels .why-us .img {
    border: 1px solid #0000002b;
}
#labels .why-us .value_prop_box img{
  margin-top: 20px;
  max-width: 100%;
  border: none;
}
#labels .why-us .header_line{
  margin-top: 0px;
  margin-bottom: 20px;
}
#labels .why-us .sub_line{
  margin-top: 0px;
  margin-bottom: 40px;
}

/*--------------------------------------------------------------
# Mission
--------------------------------------------------------------*/
.mission{
  padding-bottom: 0;
}
.mission_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.9),rgba(21,47,48, 0.5));
}
#mission_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 60vh;
  object-fit: cover;
}
.mission_hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.mission_hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}
.mission .statement {
  margin-top: 100px;
  margin-bottom: 100px;
}
.mission_box{
  position: relative;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 20px;
  padding-left: 20px;
  min-height: 300px;
}
.mission .core_values_title{
  margin-top: 150px;
  margin-bottom: 150px;
}
.mission_icon{
  width: 30px;
  height: 30px;
}
#mission .cta {
  background: linear-gradient(rgba(147, 112, 52, 0.9), rgba(90, 63, 40, 0.9)), url("../images/website_2/mission/cta.jpg") fixed center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 100px;
  padding-top: 100px;
  color: #fff;
}

/*--------------------------------------------------------------
# Partners
--------------------------------------------------------------*/
.partners_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.9),rgba(21,47,48, 0.5));
}
#partners_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 60vh;
  object-fit: cover;
}
.partners_hero h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.partners_hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}
.partners_content .section_partners{
  margin-top: 120px;
  margin-bottom: 50px;
}
.partners_content .section_project_partners{
  margin-top: 150px;
  margin-bottom: 120px;
}
.partners_content .section_partners img{
  max-height: 120px;
}
.partners_content .section_project_partners img{
  max-height: 120px;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #152F30;
}
#footer .treehatch_logo {
  width: 90px;
}
#footer .footer-newsletter {
  padding: 50px 0;
  background: #f3f5fa;
  text-align: center;
  font-size: 15px;
  color: #444444;
}
#footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #37517e;
}
#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 15px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.06);
  text-align: left;
}
#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #47b2e4;
  color: #fff;
  transition: 0.3s;
  border-radius: 15px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-newsletter form input[type=submit]:hover {
  background: #209dd8;
}
#footer .footer-top {
  padding: 60px 0 30px 0;
  background: white;
  border-top: 1px solid #dad7d7;
}
#footer .footer-top .footer-contact {
  margin-bottom: 30px;
  color: #5e5e5e;
}
#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #37517e;
}
#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #5e5e5e;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #525458;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #47b2e4;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: 100;
}
#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #D4892D;
}
#footer .footer-bottom .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #f8eace;
  color: #DBA366;
  line-height: 1;
  padding: 9px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-bottom .social-links a:hover {
  background: #D4892D;
  color: #fff;
  text-decoration: none;
}
#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}
#footer .copyright {
  font-size: 14px;
  text-align: center;
}
#footer .credits {
  float: right;
  font-size: 13px;
}
#footer .credits a {
  transition: 0.3s;
}
#footer .APGA {
  margin-top: 25px;
  color: #525458;
  font-weight: 600;
}
#footer .APGA-logo {
  width: 200px;
}

@media (max-width: 768px) {

  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
  #footer .footer-links {
    text-align: center;
  }
  #footer .footer-top .footer-links ul li {
    justify-content: center;
  }
}


/*--------------------------------------------------------------
# Mailerlite
--------------------------------------------------------------*/
#mlb2-28229230.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4, #mlb2-28229230.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody .ml-form-successContent h4{
  font-family:'Manrope', sans-serif !important;
  font-weight: bold !important;
}
#mlb2-28229230.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-fieldRow input {
  font-family:'Manrope', sans-serif !important;
}
#mlb2-28229230.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedPermissions .ml-form-embedPermissionsContent.privacy-policy p {
  font-family:'Manrope', sans-serif !important;
}
#mlb2-28229230.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody, #mlb2-28229230.ml-form-embedContainer .ml-form-embedWrapper .ml-form-successBody {
  padding: 0px !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
#mlb2-28229230.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit button {
  max-width: 50% !important;
  font-family: "Manrope", sans-serif !important;
}
#mlb2-28229230.ml-form-embedContainer .ml-form-align-center {
  text-align: left !important;
}
#mlb2-28229230.ml-form-embedContainer .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedSubmit: hover {
 color: #fff !important;
 transform: translate3d(0, -1px, 0) !important;
}

/*--------------------------------------------------------------
# Referral
--------------------------------------------------------------*/
.referral .breadcrumbs ol{
  color: black;
}
.referral .referral_section{
  margin-top: 100px;
}
.referral .headline{
  color:#D4892D;
  font-weight: 700;
  font-size:34px;
}
.referral .terms{
  font-size:12px;
  font-weight: 600;
}
.referral .subheadline{
  font-weight: 900;
  font-size:24px;
}
.referral .left-section {
  background-color: #fff5f8;
  padding: 50px;
}
@media only screen and (max-width: 767px){
    .referral .left-section{
      padding: 25px;
    }
}
.referral .how_it_works_title_1 {
  color:#D4892D;
  text-transform: uppercase;
  font-weight: 800;
}
.referral .how_it_works_title_2 {
  font-weight: 800;
  font-size: 25px;
}
.referral .how_it_works_subtitle {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}
.referral .how_it_works_icon {
  max-height: 80px;
  margin-bottom: 20px;
}
.referral .referral_hero{
  max-width: -webkit-fill-available;
  height: -webkit-fill-available;
}
.referral_terms_section {
  margin-top: 100px;
  margin-bottom: 100px;
}
.referral_terms_section .title{
  font-weight: 700;
  font-size: 35px;
}
.referral_terms_section .paragraph_title
{
  font-weight: 700;
  font-size: 25px;
}

/*--------------------------------------------------------------
# Partnerships
--------------------------------------------------------------*/
.partnerships_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.9),rgba(21,47,48, 0.5));
}
#partnerships_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 60vh;
  object-fit: cover;
}
.partnerships_hero h1 {
  margin: 0 0 10px 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.partnerships_hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}
#partnerships .content {
  margin-top: 100px;
  margin-bottom: 100px;
}
.partnerships_box{
  position: relative;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
  border-radius: 5px;
  background: #fff;
  transition: 0.5s;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 20px;
  padding-left: 20px;
}
#partnerships .cta-btn {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
}
#partnerships .cta-btn:hover {
  background: #ae7228;
}
@media (max-width: 992px) {
  .partnerships_hero h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 40px;
    color: #fff;
  }
  .partnerships_hero h2 {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 50px;
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# ArbNet
--------------------------------------------------------------*/
#arbnet .breadcrumbs ol{
  color: black;
}
#arbnet .hero_section{
  margin-top: 120px;
}
#arbnet .hero_section .img{
  width: 90%;
}
#arbnet h1 {
  font-size: 30px;
}
#arbnet .link {
  text-decoration: underline;
}
#arbnet h2 {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 15px;
}
#arbnet .arbnet-logo{
  margin-top: 20px;
  margin-bottom: 20px;
  max-width: 250px;
}
#arbnet .main{
  margin-top: 0px;
}
#arbnet .pricingTable ul li{
  padding-top: 8px;
  padding-bottom: 8px;
  padding-left: 20px;
}
#arbnet .pricingTable{
  padding-bottom: 0px;
}
#arbnet .pricingTable .pricing-content .base-items {
  min-height:0;
}
#arbnet .pricingTable .pricing-content .feature-items {
  min-height:0;
}
#arbnet .pricingTable .pricing-content .service-items {
  min-height:0;
}
#arbnet .explanation {
  padding-right: 60px;
}
#arbnet .explanation .cta-btn{
  margin-top: 20px;
}
#arbnet .clients{
  margin-top: 50px;
  margin-bottom: 50px;
}
#arbnet .owl-carousel .owl-item img {
  padding-bottom: 20px;
}
#arbnet .owl-carousel .owl-item {
  align-self: end;
}
#arbnet .owl-carousel .owl-item .ArbNet-name{
  font-size: 13px;
  color: black;
}
#arbnet .owl-carousel .owl-item .ArbNet-level{
  font-size: 12px;
  background-color: #79a12eab;
  color: white;
  font-weight: bold;
  margin-right: 3px;
}
#arbnet .owl-carousel .owl-item .ArbNet-accr{
  font-size: 12px;
  background-color: #076223ba;
  color: white;
  font-weight: bold;
  margin-right: 3px;
}
#arbnet .img{
  border-radius: 20px
}

@media (max-width: 992px) {
  #arbnet .arbnet_section{
    margin-top: 80px;
  }
  #arbnet .hero-img{
    margin-top: 80px;
  }
  #arbnet .hero_section .img{
    margin-top: 50px;
    width: 100%;
  }
  #arbnet .explanation {
    padding-right: 12px;
  }
}
/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials{
  margin-top: 80px;
}
.testimonials .slider-container {
  position: relative;
  overflow: hidden;
}
.testimonials .slider-track {
  display: flex;
  transition: transform 0.5s ease;
}
.testimonials .testimonial {
  flex: 0 0 calc((100% - 40px) / 3); /* 3 testimonials visible */
  box-sizing: border-box;
  padding: 15px;
  margin-right: 20px;
}
.testimonials .testimonial:last-child {
  margin-right: 0; /* no extra gap on the last item */
}
.testimonials .testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  height: 100%;
  transition: transform 0.3s ease;
}
.testimonials .testimonial-card .customer{
  font-size: 14px;
}
.testimonials .testimonial-card:hover {
  transform: translateY(-5px);
}
.testimonials .testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}
.testimonials .testimonial-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}
.testimonials .testimonial-card p {
  font-size: 0.95rem;
  color: #555;
}
.testimonials .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #d4892d6b;
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}
.testimonials .slider-btn:hover {
  background: rgba(0,0,0,0.7);
}
.testimonials .slider-btn.prev {
  left: 10px;
}
.testimonials .slider-btn.next {
  right: 10px;
}
@media (max-width: 768px) {
  .testimonials .testimonial {
    flex: 0 0 100%; /* 1 per row */
    margin-right: 0;
  }
  .testimonials .testimonial-card p {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Legal
--------------------------------------------------------------*/
.legal_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.9),rgba(21,47,48, 0.5));
}
.legal_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 60vh;
  object-fit: cover;
}
.legal_hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}
.legal_hero h2 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 56px;
  color: #fff;
}
.legal_body{
    margin-bottom: 50px;
    margin-top: 70px;
}
.legal_body h2{
  margin-top: 40px;
  font-size: 24px;
}
.legal_body h3{
  margin-top: 30px;
  font-size: 20px;
}
.legal_body h4{
  margin-top: 25px;
  font-size: 18px;
}
.legal_body h5{
  margin-top: 25px;
  font-size: 16px;
}
.legal_body .legal-box{
  height: 190px;
  padding: 50px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.legal_body .legal-box img{
  height: 10px;
  margin-left: 3px;
}
.legal_body table thead tr {
  border-bottom: 1px dashed #ccc;
}
.legal_body table tbody tr {
  border-bottom: 1px solid #ccc;
}
.legal_body table tbody tr td{
  padding-top: 10px;
  padding-bottom: 10px;
}
.legal_body .subprocessors th:nth-child(1), .legal_body .subprocessors td:nth-child(1) {
  width: 20%;
}
.legal_body .subprocessors th:nth-child(2), .legal_body .subprocessors td:nth-child(2) {
  width: 50%;
}
.legal_body .subprocessors th:nth-child(3), .legal_body .subprocessors td:nth-child(3) {
  width: 30%;
}
.legal_body .service-concepts th:nth-child(1), .legal_body .service-concepts td:nth-child(1) {
  width: 20%;
}
.legal_body .service-concepts th:nth-child(2), .legal_body .service-concepts td:nth-child(2) {
  width: 80%;
}


/*--------------------------------------------------------------
# Privacy policy
--------------------------------------------------------------*/
.privacy_policy_hero{
  height: 60vh;
  color: white;
  background: linear-gradient(rgba(21,47,48, 0.9),rgba(21,47,48, 0.5));
}
#privacy_policy_hero_bg_image{
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: -1;
  height: 60vh;
  object-fit: cover;
}
.privacy_policy_hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

/*--------------------------------------------------------------
# Cookie consent
--------------------------------------------------------------*/
.cookie-consent-wrapper {
  background-color: #d4892d;
  display: block;
  text-align: center;
  width: 100%;
  padding: 15px;
  opacity: 0.95;
}

.cookie-consent__btn {
  margin-top: 10px;
  display: block;
}

.cookie-consent__agree {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 15px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #d4892d;
  border-color: #fff;
}

.cookie-consent__readmore {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 10px 0 0 0;
  padding-top: 3px;
  padding-bottom: 3px;
  position: inherit;
  margin-left: 10px;
  color: #fff;
}

.cookie-consent__message {
  margin-right: 15px;
  font-size: 14px;
  color: white;
  padding: 20px;
}

@media (max-width: 900px){
  .cookie-consent__message {
    display: block;
  }

  .cookie-consent__readmore {
      margin-top: 0px;
      margin-left: 15px;
  }
}

@media (max-width: 376px) {
  .cookie-consent-wrapper {
    padding: 15px 25px;
  }

  .cookie-consent__readmore {
      margin-top: 15px;
      margin-left: 0px;
  }
}

/*--------------------------------------------------------------
# Select2 searchable dropdown
--------------------------------------------------------------*/
.select2-selection {
  height: 50px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  border: 1px solid #ced4da !important;
  border-radius: 12px !important;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out !important;
}

.select2-container--default .select2-selection--single{
  display: flex !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: grey !important;
  align-content: center !important;
  padding-left: 10px;
}
