/* -------------------------- *
* COLORS
* -------------------------- */
/* STATUS */
/* GRAYS */
/* GENERAL */
/* ----- USE CASE  ----- */
/* -------------------------- *
* RADIUS
* -------------------------- */
/* -------------------------- *
* BORDERS
* -------------------------- */
/* -------------------------- *
* BUTTONS
* -------------------------- */
/* -------------------------- *
* FONTS
* -------------------------- */
/* -------------------------- *
* GRID & SPACING
* -------------------------- */
/* -------------------------- *
* BREAKPOINTS
* -------------------------- */
/* -------------------------- *
* CONTENT WIDTHS
* -------------------------- */
/* -------------------------- *
* RESET
* -------------------------- */
*:focus {
  outline: 0 !important;
}

* {
  -webkit-tap-highlight-color: transparent;
}

textarea, select, input.form-input {
  -webkit-appearance: none;
  border-radius: 0;
  -webkit-border-radius: 0;
}

/* -------------------------- *
* STYLES
* -------------------------- */
body {
  background: #fff;
  color: #2c2c2c;
  font-family: "ariana-pro", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

.wrapper_margins {
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
@media (max-width: 1199px) {
  .container {
    padding: 0 15px;
  }
}

img {
  display: block;
}

a {
  color: #940a7c;
  transition: all 0.3s;
}
a:hover {
  color: #940a7c;
  text-decoration: underline;
}

p {
  margin: 15px 0;
}

blockquote {
  border: 0;
  font-style: italic;
  font-size: 12px;
  margin: 7.5px 0;
  padding: 0;
}

hr {
  color: #000;
  margin: 30px 0;
}

strong {
  font-weight: 700;
}

h1 {
  color: #3d1061;
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0 30px;
}
@media (max-width: 767px) {
  h1 {
    margin: 15px 0;
  }
}
h2 {
  color: #3d1061;
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0 30px;
}
@media (max-width: 767px) {
  h2 {
    margin: 15px 0;
  }
}
h3 {
  color: #3d1061;
  font-size: 20px;
  font-weight: 700;
  margin: 15px 0;
}
h4 {
  color: #3d1061;
  font-size: 18px;
  font-weight: 700;
  margin: 15px 0;
}
h5 {
  color: #3d1061;
  font-size: 16px;
  font-weight: 700;
  margin: 15px 0;
}

.btn {
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  padding: 3.75px 18px 8.25px;
  position: relative;
  transition: all 0.3s;
  white-space: normal;
}
.btn i {
  font-size: 14px;
  position: relative;
  top: 0;
}
.btn-group {
  background: transparent;
}
.btn-sm {
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  padding: 1.5px 15px 3.51px;
}
.btn-sm i {
  font-size: 12px;
  position: relative;
  top: 0;
}
.btn-lg {
  border-radius: 3px;
  font-size: 18px;
  padding: 7.755px 30px 11.25px;
}
.btn-primary {
  background: #940a7c;
  border: 2px solid #940a7c;
  color: #fff !important;
}
.btn-primary:hover {
  background: #ac0c90;
  border: 2px solid #ac0c90;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2) !important;
}
.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .btn-primary .show > .btn-primary.dropdown-toggle {
  background: #ac0c90;
  border: 2px solid #ac0c90;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2) !important;
}
.btn-primary.disabled, .btn-primary:disabled {
  background: #640754;
  border: 2px solid #640754;
}
.btn-primary.focus, .btn-primary:focus {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2) !important;
}
.btn-secondary {
  background: #3d1061;
  border: 2px solid #3d1061;
  color: #fff !important;
}
.btn-secondary:hover {
  background: #4b1477;
  border: 2px solid #4b1477;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2) !important;
}
.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary .show > .btn-primary.dropdown-toggle {
  background: #4b1477;
  border: 2px solid #4b1477;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2) !important;
}
.btn-secondary.disabled, .btn-secondary:disabled {
  background: #210935;
  border: 2px solid #210935;
}
.btn-secondary.focus, .btn-secondary:focus {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2) !important;
}

.card {
  border: none;
  border-radius: 0;
  transition: all 0.3s;
}
.card-image {
  margin-bottom: -30px;
  position: relative;
  z-index: 1;
}
.card-image-wrapper {
  background: rgba(61, 16, 97, 0.2);
  display: block;
  margin-left: 30px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .card-image-wrapper {
    margin-left: 15px;
  }
}
.card-image img {
  transition: all 0.3s;
  width: 100%;
}
.card-body {
  background: rgba(234, 234, 228, 0.9);
  margin-right: 30px;
  padding: 30px;
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .card-body {
    margin-right: 15px;
    padding: 15px;
  }
}
.card-title {
  color: #3d1061;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 15px;
}

a.card:hover {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2) !important;
}
a.card-image-wrapper:hover img {
  transform: scale(1.1);
}

.modal-content {
  border: none;
  border-radius: 0;
}
.modal-header {
  border-bottom: 1px solid #eaeae4;
  display: block;
  padding: 15px 30px;
  position: relative;
}
@media (max-width: 767px) {
  .modal-header {
    padding: 15px;
  }
}
.modal-header .close {
  background: #940a7c;
  color: #fff;
  margin: 0;
  opacity: 1;
  padding: 15px;
  position: absolute;
  right: 0;
  text-shadow: none;
  top: 0;
}
.modal-header .close:hover {
  background: #ac0c90;
  opacity: 1 !important;
}
.modal-header-image {
  background-position: center center;
  background-size: cover;
  height: 250px;
  margin: -15px -30px;
}
@media (max-width: 767px) {
  .modal-header-image {
    height: 200px;
    margin: -15px;
  }
}
.modal-header-image .btn {
  bottom: -15px;
  left: 50%;
  margin-left: -68px;
  position: absolute;
  z-index: 2000;
}
.modal-body {
  padding: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .modal-body {
    padding: 15px;
  }
}
.modal-footer {
  background: #eaeae4;
  border-top: none;
}

.accordion-header h2 {
  color: #fff;
  font-size: 26px;
  margin: 0;
}
.accordion-header a {
  background: #940a7c;
  color: #fff;
  display: block;
  padding: 15px 30px;
}
.accordion-header a:hover {
  text-decoration: none;
  background: #ac0c90;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2) !important;
}
.accordion-body {
  padding-top: 30px;
}
.accordion-icon {
  font-size: 30px;
  line-height: 1;
  transform: rotate(180deg);
  transition: all 0.3s;
}
.accordion .collapsed .accordion-icon {
  transform: rotate(0deg);
}

.announcement {
  background: #3d1061;
  color: #fff;
  padding: 10.5px 0;
  position: relative;
  z-index: 10;
}
@media (max-width: 575px) {
  .announcement {
    font-size: 10px;
  }
}

.contact {
  background: rgba(234, 234, 228, 0.9);
  padding: 45px 0;
}
@media (max-width: 767px) {
  .contact {
    padding: 45px 0;
  }
}
.contact-headline {
  color: #3d1061;
  font-size: 36px;
  margin: 0;
}
@media (max-width: 991px) {
  .contact-headline {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .contact-headline {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.contact-general-card {
  background: rgba(234, 234, 228, 0.9);
  margin-bottom: 90px;
  padding: 75px 30px;
}
@media (max-width: 767px) {
  .contact-general-card {
    margin-top: 75px;
    padding: 45px 15px 15px;
  }
}
.contact-general-map {
  background-size: cover;
  background-position: center;
  height: 370px;
  position: relative;
  width: 100%;
  z-index: 10;
}
@media (max-width: 767px) {
  .contact-general-map {
    height: 300px;
    margin: 30px 0 -45px;
  }
}
@media (max-width: 575px) {
  .contact-general-map {
    height: 450px;
  }
}
.contact-general-background-overlay {
  background: #fff;
  bottom: 0;
  left: 85%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .contact-general-background-overlay {
    display: none;
  }
}
.contact-general-background-overlay-left {
  left: 0;
  right: 85%;
}

.downloads-item {
  background: rgba(234, 234, 228, 0.9);
  margin: 30px 0;
  padding: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .downloads-item {
    padding: 15px;
  }
}
.downloads-item:first-child {
  margin-top: 0;
}
.downloads-icon {
  color: #74745b;
  font-size: 26px;
  position: absolute;
}
.downloads-title {
  margin: 0;
  padding-left: 60px;
}
@media (max-width: 767px) {
  .downloads-title {
    padding-left: 37.5px;
  }
}
@media (max-width: 767px) {
  .downloads .btn {
    margin-top: 15px;
  }
}

.figures-content {
  background: rgba(234, 234, 228, 0.9);
  padding: 75px 30px;
}
@media (max-width: 767px) {
  .figures-content {
    padding: 45px 15px;
  }
}
.figures-list {
  list-style: none;
  margin: 52.5px 0 0;
  max-width: 470px;
  padding: 0;
}
.figures-list li {
  margin: 30px 0;
  padding-left: 52.5px;
  position: relative;
}
@media (max-width: 767px) {
  .figures-list li {
    margin: 22.5px 0;
  }
}
.figures-list strong {
  font-size: 30px;
  left: 0;
  position: absolute;
  top: -15px;
}
.figures-list strong span {
  font-size: 12px;
  font-weight: 500;
  position: relative;
  top: -10px;
}
.figures-image {
  width: 100%;
}
.figures-image-wrapper {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .figures-image-wrapper {
    margin-top: 15px;
  }
}
.figures-image-text {
  bottom: 185px;
  color: rgba(148, 10, 124, 0.5);
  font-size: 80px;
  position: absolute;
  right: -210px;
  text-transform: uppercase;
  transform: rotate(270deg);
}
@media (max-width: 575px) {
  .figures-image-text {
    bottom: 95px;
    font-size: 40px;
    right: -105px;
  }
}
.figures-background-overlay {
  background: #fff;
  bottom: 0;
  left: 85%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .figures-background-overlay {
    left: 0;
    top: 85%;
  }
}
.figures .section-title-headline {
  margin-left: 0;
}
@media (max-width: 991px) {
  .figures .section-title-headline {
    margin-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .figures .section-title-headline {
    margin-left: 0;
    padding-left: 0;
  }
}

.footer {
  padding: 30px 0;
}
.footer a {
  color: #3d1061;
}
.footer-logo {
  max-width: 120px;
  width: 100%;
}
@media (max-width: 575px) {
  .footer-logo {
    margin: 15px 0;
  }
}
.footer-icon {
  font-size: 26px;
}
.footer-icon:hover {
  color: rgba(61, 16, 97, 0.8);
}

.header {
  background: #fff;
  padding: 40px 0;
  position: relative;
  z-index: 10;
}

.hero {
  position: relative;
}
.hero-content {
  background-size: cover;
  background-position: center;
  margin: 22.5px 0 75px;
  padding: 120px 0;
}
@media (max-width: 991px) {
  .hero-content {
    margin: 22.5px 0;
  }
}
@media (max-width: 767px) {
  .hero-content {
    padding: 60px 0;
  }
}
.hero-content-card {
  background: rgba(234, 234, 228, 0.9);
  padding: 75px 30px;
  position: relative;
  z-index: 10;
}
@media (max-width: 991px) {
  .hero-content-card {
    margin-right: 15px;
  }
}
@media (max-width: 767px) {
  .hero-content-card {
    padding: 30px 15px;
  }
}
.hero-content-overlay {
  background: #fff;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 85%;
  top: 0;
  z-index: 1;
}
.hero-headline {
  color: #3d1061;
  font-size: 36px;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .hero-headline {
    font-size: 30px;
  }
}
.hero-subline {
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4;
  margin-top: 45px;
}
@media (max-width: 767px) {
  .hero-subline {
    font-size: 16px;
    margin-top: 22.5px;
  }
}
.hero-sm .hero-content {
  padding: 90px 0;
}
@media (max-width: 767px) {
  .hero-sm .hero-content {
    padding: 60px 0;
  }
}
.hero-sm .hero-content-card {
  padding: 45px 30px;
}
@media (max-width: 767px) {
  .hero-sm .hero-content-card {
    padding: 30px 15px;
  }
}
.hero-simple .hero-content {
  margin-bottom: 0;
  padding: 60px 0 0;
}
@media (max-width: 767px) {
  .hero-simple .hero-content {
    padding: 15px 0 30px;
  }
}
@media (max-width: 767px) {
  .hero-simple .hero-content {
    margin: 0;
    padding: 0;
  }
}
.hero-simple .hero-headline {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .hero-simple .hero-headline {
    margin-left: 15px;
  }
}
.hero-simple .hero-subline {
  margin-left: 30px;
}
@media (max-width: 767px) {
  .hero-simple .hero-subline {
    margin-left: 15px;
  }
}

.nav-item {
  margin: 0 4.95px;
}
@media (max-width: 991px) {
  .nav-item {
    border-top: 1px solid #eaeae4;
    margin: 7.5px 0;
  }
  .nav-item:last-child {
    border-top: none;
  }
}
.nav-item.active .nav-link {
  color: #940a7c;
  border-bottom: 2px solid #940a7c;
}
@media (max-width: 991px) {
  .nav-item.active .nav-link {
    border-bottom: none;
  }
}
.nav-item .btn {
  margin-left: 7.5px;
}
@media (max-width: 991px) {
  .nav-item .btn {
    display: block;
    margin: 15px 0;
    padding: 7.5px 22.5px;
  }
}
.nav-link {
  color: #3d1061;
  padding: 4.95px !important;
}
@media (max-width: 991px) {
  .nav-link {
    padding: 7.5px 0 !important;
  }
}
.nav-link:hover {
  color: #940a7c;
}
.nav-link .icon-external {
  font-size: 12px;
  position: relative;
  top: 0;
}

.navbar {
  padding: 0;
}
.navbar-brand {
  padding: 0;
}
.navbar-brand:hover {
  opacity: 0.8;
}
.navbar-brand img {
  max-height: 35px;
}
.navbar-toggler {
  transition: all 0.2s;
}
.navbar-toggler.collapsed .icon-bar {
  background: #3d1061;
}
.navbar-toggler .icon-bar {
  background: #940a7c;
  border-radius: 1px;
  display: block;
  height: 2px;
  width: 30px;
}
.navbar-toggler .icon-bar + .icon-bar {
  margin-top: 7px;
}
@media (max-width: 991px) {
  .navbar-nav {
    display: block;
    margin: 37.5px 0 0 !important;
    padding-bottom: 1px;
  }
}

.news .medium-widget-article__column .medium-widget-article__image img {
  margin: 0;
  transition: all 0.3s;
}
.news .medium-widget-article__image {
  overflow: hidden;
  margin-left: 30px;
}
@media (max-width: 767px) {
  .news .medium-widget-article__image {
    margin-left: 15px;
  }
}
.news .medium-widget-article__image:hover img {
  transform: scale(1.1);
}
.news .medium-widget-article__image + .medium-widget-article__content {
  margin-top: -30px;
}
.news .medium-widget-article__content {
  background: rgba(234, 234, 228, 0.9);
  margin-right: 30px;
  padding: 30px;
  position: relative;
}
@media (max-width: 767px) {
  .news .medium-widget-article__content {
    margin-right: 15px;
    padding: 15px;
  }
}
.news .medium-widget-article__title {
  color: #940a7c;
}
.news .medium-widget-article__description {
  color: #2c2c2c;
  font-size: 16px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .news .medium-widget-article__row {
    display: block;
    margin: 0;
  }
}
.news .medium-widget-article__row .medium-widget-article__item {
  max-width: 33.333%;
}
@media (max-width: 767px) {
  .news .medium-widget-article__row .medium-widget-article__item {
    padding: 15px 0;
    max-width: none;
  }
}
.news .medium-widget-article__info {
  padding-top: 8px;
  position: relative;
  margin-top: 7.5px;
}
.news .medium-widget-article__clap {
  color: rgba(44, 44, 44, 0.5);
  font-size: 12px;
  padding-right: 18px;
}
.news .medium-widget-article__clap:before {
  background-image: url("../../img/clap.svg");
  opacity: 0.5;
}
.news .medium-widget-article__clap:after {
  background: rgba(44, 44, 44, 0.5);
  border-radius: 50%;
  display: inline-block;
  content: "";
  height: 5px;
  right: 4px;
  position: absolute;
  top: 13px;
  width: 5px;
}
.news .medium-widget-article__date {
  color: rgba(44, 44, 44, 0.5);
  font-size: 12px;
}

.portfolio-row .card {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .portfolio-row .card {
    margin-bottom: 30px;
  }
}
.portfolio-small img {
  margin-bottom: 30px;
  width: 100%;
}
.portfolio-all {
  padding: 0 30px 15px;
}
@media (max-width: 767px) {
  .portfolio-all {
    padding: 0;
  }
}
.portfolio-all-headline {
  color: #3d1061;
  font-size: 30px;
  margin: 0;
}
@media (max-width: 767px) {
  .portfolio-all-headline {
    font-size: 26px;
    margin-bottom: 22.5px;
  }
}
.portfolio-highlight {
  background: rgba(234, 234, 228, 0.9);
  margin: 15px 0 60px 0;
  padding: 45px 30px;
}
@media (max-width: 767px) {
  .portfolio-highlight {
    margin: 15px 0 45px 0;
    padding: 45px 15px;
  }
}
.portfolio-highlight-headline {
  font-size: 48px;
  margin-top: 0;
}
@media (max-width: 767px) {
  .portfolio-highlight-headline {
    font-size: 30px;
  }
}
.portfolio-highlight-subline {
  font-size: 20px;
  font-weight: 500;
}
@media (max-width: 767px) {
  .portfolio-highlight-subline {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .portfolio .card-body br {
    display: none;
  }
}
.portfolio-image {
  background: #eaeae4;
}

.press .card {
  margin: 15px 0;
}
.press .card:hover {
  text-decoration: none;
}
.press-item {
  text-align: center;
}
.press-item:after {
  bottom: -45px;
  color: #d4d4c7;
  content: '"';
  display: block;
  font-size: 90px;
  font-style: italic;
  position: absolute;
  right: 22.5px;
  z-index: 1;
}
.press-img {
  display: inline-block;
  height: 40px;
  margin: 15px 0;
  max-width: 100%;
  transition: all 0.3s;
}
.press-text {
  font-style: italic;
  margin: 15px 0;
  position: relative;
  z-index: 10;
}

.section {
  margin: 120px 0 120px;
}
@media (max-width: 767px) {
  .section {
    margin: 60px 0;
  }
}
.section + .section {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .section + .section {
    margin-bottom: 60px;
  }
}
.section-title {
  margin-bottom: 30px;
}
.section-title-indented {
  margin-left: 30px !important;
}
@media (max-width: 767px) {
  .section-title-indented {
    margin-left: 15px !important;
  }
}
.section-title-headline {
  color: #3d1061;
  font-size: 36px;
  margin: 0 0 30px 30px;
  padding-bottom: 0;
  position: relative;
}
@media (max-width: 991px) {
  .section-title-headline {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .section-title-headline {
    font-size: 30px;
  }
}
.section-title-headline:after {
  background: #940a7c;
  bottom: -26.25px;
  content: "";
  display: inline-block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 90px;
}
.section-title-link {
  font-size: 14px;
  text-align: right;
}
@media (max-width: 991px) {
  .section-title-link {
    margin-top: 15px;
    text-align: left;
  }
}
.section-title-link i {
  position: relative;
  top: 2px;
}

.switch {
  overflow: hidden;
  position: relative;
}
.switch-content {
  background: rgba(234, 234, 228, 0.9);
  padding: 60px 45px 60px 30px;
  position: relative;
}
@media (max-width: 767px) {
  .switch-content {
    padding: 45px 15px;
  }
}
@media (max-width: 991px) {
  .switch-content-right {
    margin-top: 15px;
  }
}
.switch-highlight {
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 60px;
}
@media (max-width: 767px) {
  .switch-highlight {
    display: inline-block;
    position: relative;
    margin-top: -45px;
    top: -30px;
  }
}
.switch-highlight-content {
  background: #3d1061;
  color: #fff;
  font-size: 12px;
  padding: 7.5px 15px;
  text-transform: uppercase;
}
.switch-headline {
  color: #3d1061;
  font-size: 26px;
  font-weight: 500;
  line-height: 0.9;
  margin: 0 0 45px;
  position: relative;
}
@media (max-width: 767px) {
  .switch-headline {
    font-size: 16px;
  }
}
.switch-headline:after {
  background: #940a7c;
  bottom: -26.25px;
  content: "";
  display: inline-block;
  height: 2px;
  left: 0;
  position: absolute;
  width: 90px;
}
.switch-headline span {
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 767px) {
  .switch-headline span {
    font-size: 30px;
  }
}
.switch-buttons {
  margin-top: 22.5px;
}
.switch-buttons-more {
  font-size: 14px;
  margin-top: 7.5px;
}
.switch-buttons-more a {
  color: #ac0c90;
}
.switch-buttons-more a i {
  position: relative;
  top: 2px;
}
.switch-navreport {
  color: #3d1061;
  margin-top: 15px;
  text-align: right;
}
@media (max-width: 575px) {
  .switch-navreport {
    text-align: left;
  }
}
@media (max-width: 575px) {
  .switch-navreport br {
    display: none;
  }
}
.switch-navreport i {
  position: relative;
  top: 2px;
}
.switch-background {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 991px) {
  .switch-background {
    display: none;
  }
}
.switch-background-left {
  background: #4b1477;
  bottom: 0;
  left: 0;
  position: absolute;
  right: 50%;
  top: 0;
}
.switch-background-right {
  background: #561688;
  bottom: 0;
  left: 50%;
  position: absolute;
  right: 0;
  top: 0;
}
.switch .container {
  position: relative;
  z-index: 10;
}
@media (max-width: 767px) {
  .switch-footer {
    margin-top: 16px;
  }
}

@media (max-width: 767px) {
  .team p br {
    display: none;
  }
}
.team-card {
  background: rgba(234, 234, 228, 0.9);
  margin-bottom: 90px;
  padding: 75px 30px;
  position: relative;
}
@media (max-width: 767px) {
  .team-card {
    margin-top: 75px;
    padding: 45px 15px 15px;
  }
}
.team-card:last-child {
  margin-bottom: 0;
}
.team-position {
  color: #940a7c;
  margin-top: 52.5px;
}
.team-title {
  color: #929292;
  font-size: 14px;
  margin-top: 15px;
}
.team-social {
  display: flex;
  left: 0;
  position: absolute;
  top: 0;
}
@media (max-width: 767px) {
  .team-social {
    left: auto;
    right: 0;
  }
}
.team-social-right {
  left: auto;
  right: 0;
}
.team-social-link {
  display: inline-block;
  padding: 15px;
  width: 50px;
}
.team-social-link:hover {
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.2);
}
.team-social-linkedin {
  background: #007bb5;
}
.team-social-linkedin:hover {
  background: #008ccf;
}
.team-social-icon {
  width: 100%;
}
.team-image {
  background-size: cover;
  background-position: center;
  height: 370px;
  position: relative;
  width: 100%;
  z-index: 10;
}
@media (max-width: 767px) {
  .team-image {
    height: 300px;
    margin: -75px 0 30px;
  }
}
@media (max-width: 575px) {
  .team-image {
    height: 250px;
  }
}
.team-background-overlay {
  background: #fff;
  bottom: 0;
  left: 85%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .team-background-overlay {
    display: none;
  }
}
.team-background-overlay-left {
  left: 0;
  right: 85%;
}
.team-row {
  margin-top: 45px;
}
.team-row .card {
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .team-row .card {
    margin-bottom: 30px;
  }
}
.team .section-title-headline {
  margin-left: 0;
}
@media (max-width: 991px) {
  .team .section-title-headline {
    margin-left: 0;
    padding-left: 0;
  }
}
@media (max-width: 767px) {
  .team .section-title-headline {
    margin-left: 0;
    padding-left: 0;
  }
}
