:root {
  --primary-accent: rgba(0, 152, 185, 1.0);
  --primary-transparent: rgba(0, 152, 185, 0.30);
  --navbar-border-top: rgba(252, 49, 47, 1.0);
  --button-border: #4d8e5c;
  --link-focus: #488456;
  --form-shadow: rgba(0, 152, 185, 0.30);
  --pagination-bg: #cde4d2;
  --link-hover-bg: rgba(0, 152, 185, 0.30);
  --navbar-focus: #acd2b5;
  --grey-text: #3a4b5f;
  --main-text: #032d6d;
}

.icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  color: #fff;
  line-height: 80px;
  border-radius: 40px;
  border: solid 1px #fff;
  font-size: 20px;
}

.bar {
  padding: 60px 0;
}

.bar.background-white {
  background-color: #ffffff;
}

.bar.background-leaf-zoom {
  position: relative;
  background: url('../img/blatt1-crop-2.jpg') center center no-repeat;
  background-size: cover;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border-top: solid 1px #999999;
  border-bottom: solid 1px #999999;
} 

.bar.background-leaf-zoom .dark-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.80;
  filter: alpha(opacity=80);
}

.highlight-bar {
  position: relative;
  /* top: -4px; */
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--navbar-border-top);
}

.lead p {
  font-size: 22px;
  font-family: 'Mulish', sans-serif;
  /* padding: 0; */
  font-weight: 500;
}

.text p {
  font-size: 18px;
  font-family: 'Mulish', sans-serif;
  /* padding: 0; */
  font-weight: 400;
}


.heading h1,
.heading h2,
.heading h3,
.heading h4,
.heading h5,
.heading p,
.heading ul {
  color: #000;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
}

.plekton-title {
  position: relative;
  background: url('../img/blatt1-crop.jpg') center center no-repeat;
  background-size: cover;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.plekton-title .dark-mask-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: linear-gradient(to bottom, var(--primary-transparent), var(--primary-accent)); */
  background: var(--primary-accent);
  opacity: 0.80;
  /* filter: alpha(opacity=90); */
}
@media (max-width: 767px) {
  .plekton-title {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .plekton-title .right {
    text-align: right;
  }
}

.plekton-title .right .description {
  padding-left: 1%;
  padding-right: 1%;
}

.plekton-title h1,
.plekton-title h2,
.plekton-title h3,
.plekton-title p,
.plekton-title ul {
  color: #fff;
  font-family: 'Roboto Condensed', sans-serif;
  font-weight: 700;
  padding-bottom: 30px;
}
.plekton-title h1 {
  /* text-transform: uppercase; */
  font-family: 'Raleway', sans-serif;
  font-size: 64px;
  letter-spacing: 0.06em;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media (max-width: 991px) {
  .plekton-title h1 {
    font-size: 36px;
  }
}
.plekton-title h2 {
  text-transform: uppercase;
  font-size: 40px;
  letter-spacing: 0.02em;
  padding-bottom: 30px;
}
.plekton-title ul,
.plekton-title p {
  font-size: 22px;
  font-family: 'Mulish', sans-serif;
  /* padding: 0; */
  font-weight: 500;
  /* text-transform: uppercase; */
  /* letter-spacing: 0.10em; */
}
@media (max-width: 991px) {
  .plekton-title ul,
  .plekton-title p {
    font-size: 14px;
  }
}
.plekton-title ul li {
  margin-bottom: 10px;
}

.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 32px; /* vertical and horizontal gap between persons */
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.team .item .person {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 320px;
  box-sizing: border-box;
  border-radius: 160px 160px 16px 16px; /* only bottom corners rounded */
  background: #fff;
  /* box-shadow: 0 4px 16px rgba(0,0,0,0.08); */
  /* visually unify the whole element */
  overflow: hidden;
  margin: 0;
  padding: 0;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
  min-height: 800px; /* ensures all person elements have the same height */
}

.team .item.person .portrait {
  width: 320px;
  height: 320px;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  /* position: static; */
  margin: 0;
  /* background: #fff; */
  /* border-top-left-radius: 16px; */
  /* border-top-right-radius: 16px; */
  /* remove margin between portrait and info box */
  border-radius: 50%;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.team .item .person .portrait img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%; /* changed from top corners to full circle */
  box-shadow: none;
  /* display: block; */
}

.team .item .person .person-info {
  width: 320px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 20px;
  /* border-top: 1px solid #eee; subtle border to connect */
}

.team .item .person .person-info .name-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  /* margin-bottom: 8px; */
}

.team .item .person .person-info h4 {
  margin: 0;
  font-size: 3.00rem;
  font-weight: 700;
  color: var(--main-text);
  font-family: 'Roboto Condensed', sans-serif;
}

.team .item .person .person-info .icon-link {
  color: var(--primary-accent);
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.2s;
  margin-left: 4px;
}

.team .item .person .person-info .icon-link:hover {
  color: var(--navbar-border-top);
}

.team .item .person .person-info .title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.75rem;
  line-height: 1.5;
  color: #666666;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 4px;
}

.team .item .person .person-info .role {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.team .item .person .person-info .role h5 {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 2.25rem;
  font-family: 'Roboto Condensed', sans-serif;
  color: var(--grey-text);
}

/* .team .item .person .person-info .text p {
  margin: 0;
  font-size: 1rem;
  font-family: 'Mulish', sans-serif;
  font-weight: 400;
  color: #000;
} */

.testimonials .item .offer {
  list-style-type: none;
  background: var(--primary-transparent);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  /* padding: 32px 18px; */
  display: flex;
  flex-direction: column; /* ensure vertical stacking */
  padding-bottom: 25px;
}
.testimonials .item .offer:before,
.testimonials .item .offer:after {
  content: " ";
  display: table;
}
.testimonials .item .offer:after {
  clear: both;
}
.testimonials .item .offer:before,
.testimonials .item .offer:after {
  content: " ";
  display: table;
}

.testimonials .item .offer .bottom:before,
.testimonials .item .offer .bottom:after {
  content: " ";
  display: table;
}

.testimonials .item .offer .bottom {
  position: relative;
  width: 100%;
  padding: 15px 20px;
  /* background-color: var(--primary-transparent); */
}

.testimonials .item .offer .bottom p {
  font-family: 'Mulish', sans-serif;
  color: var(--gray-text);
  /* margin-top: 80px; */
}

.testimonials .item .offer .top {
  position: relative; /* changed from absolute to relative */
  width: 100%;
  /* height: 30%; */
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0px;
  /* height: 100px; */
  background-color: var(--primary-accent);
}

.testimonials .item .offer .top .icon {
  display: inline-block;
  width: 60px;
  height: 80px;
  line-height: 80px;
  border-radius: 40px;
  border: solid 0px #fff;
  font-size: 20px;
  color: var(--main-text);
  position: absolute;
  left: 4px;
  top: 4px;
  font-size: 40px;
  background-color: var(--primary-accent);
  padding-left: 10px;
}

.testimonials .item .offer .offer-title {
  width: 100%;
  text-align: left;
  padding-left: 80px;
  padding-top: 10px;
  margin-bottom: 10px;
}
.testimonials .item .offer .offer-title h5 {
  font-size: 28px;
  text-transform: none;
  padding: 0;
  color: var(--main-text);
}
.testimonials .item .offer .offer-title p {
  color: var(--grey-text);
  margin: 0;
  font-size: 18px;
  font-family: 'Mulish', sans-serif;
}
.testimonials .item .offer .offer-title i {
  float: right;
  /* margin-left: 10px; */
}