
  .a-arrow {
	display: flex;
	align-items: center;
	font-family: "WorkSans", sans-serif;
	color: #292e38;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1;
	text-decoration-line: underline;
	transition: 0.3s ease;
	width: max-content;
	cursor: pointer;
  }
  .a-arrow > img {
	height: 1.3rem;
	filter: invert(17%) sepia(8%) saturate(1237%) hue-rotate(182deg) brightness(94%) contrast(94%);
	margin-left: 1rem;
  }
  .a-arrow.white {
	color: #fff;
  }
  .a-arrow.white > img {
	filter: brightness(0) grayscale(1) invert(1);
  }
  .a-arrow:hover > img {
	-webkit-animation: swingH 1s ease;
	animation: swingH 1s ease;
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
  }
  .m-button {
	border: 0.1rem solid #fff;
	color: #fff;
	width: max-content;
	padding: 1rem 3rem;
	min-width: 16rem;
	box-sizing: border-box;
	cursor: pointer;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 5rem;
	overflow: hidden;
	font-family: "WorkSans", sans-serif;
	font-weight: 500;
	font-size: 1.4rem;
	line-height: 1;
	text-align: center;
  }
  .m-button::before,
  .m-button::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 0%;
	width: 100%;
	transition: all 0.25s ease;
	background: #fff;
	z-index: 0;
	opacity: 0;
	transition: 0.3s ease-in all;
  }
  .m-button::after {
	top: unset;
	bottom: 0;
  }
  .m-button span {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	position: relative;
  }
  .m-button img {
	filter: brightness(0) grayscale(1) invert(1);
	height: 2rem;
	margin-right: 1rem;
  }
  .m-button:hover {
	color: #292e38;
  }
  .m-button:hover img {
	filter: invert(17%) sepia(8%) saturate(1237%) hue-rotate(182deg) brightness(94%) contrast(94%);
  }
  .m-button:hover::before,
  .m-button:hover::after {
	opacity: 1;
	height: 50%;
  }
  .m-button.b-blue {
	border: 0.1rem solid #292e38;
	color: #292e38;
  }
  .m-button.b-blue::before,
  .m-button.b-blue::after {
	background: #292e38;
  }
  .m-button.b-blue img {
	filter: invert(17%) sepia(8%) saturate(1237%) hue-rotate(182deg) brightness(94%) contrast(94%);
  }
  .m-button.b-blue:hover {
	color: white;
  }
  .m-button.b-blue:hover img {
	filter: brightness(0) grayscale(1) invert(1);
  }
  /* Arrow without circle */
  .rsArrowLeft,
  .rsArrowRight,
  .arrowR,
  .arrowL {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	cursor: pointer;
	height: 5rem;
	width: 5rem;
	border-radius: 50%;
	background-color: #292e38;
	box-sizing: border-box;
	opacity: 0.7;
  }
  .rsArrowLeft:after,
  .rsArrowRight:after,
  .arrowR:after,
  .arrowL:after {
	content: "";
	position: absolute;
	height: 3rem;
	width: 3rem;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	filter: brightness(0) grayscale(1) invert(1);
	background-position: center center;
	background-size: 100% auto;
	background-repeat: no-repeat;
	pointer-events: none;
  }
  @media (max-width: 769px) {
	.rsArrowLeft,
	.rsArrowRight,
	.arrowR,
	.arrowL {
	  height: 4.5rem;
	  width: 4.5rem;
	}
	.rsArrowLeft:after,
	.rsArrowRight:after,
	.arrowR:after,
	.arrowL:after {
	  height: 2rem;
	  width: 2rem;
	}
  }
  .rsArrowLeft:hover,
  .rsArrowRight:hover,
  .arrowR:hover,
  .arrowL:hover {
	opacity: 1;
  }
  .rsArrowLeft.thin,
  .rsArrowRight.thin,
  .arrowR.thin,
  .arrowL.thin {
	background-color: unset;
	border-radius: 0%;
	opacity: 1;
	height: 1.6rem;
	width: 3.5rem;
  }
  .rsArrowLeft.thin:hover,
  .rsArrowRight.thin:hover,
  .arrowR.thin:hover,
  .arrowL.thin:hover {
	opacity: 0.7;
  }
  .rsArrowLeft.thin:after,
  .rsArrowRight.thin:after,
  .arrowR.thin:after,
  .arrowL.thin:after {
	filter: brightness(0) grayscale(1) invert(1);
  }
  .rsArrowLeft:after,
  .arrowL:after {
	background-image: url("../../icons/angleL.svg");
  }
  .rsArrowRight:after,
  .arrowR:after {
	background-image: url("../../icons/angleR.svg");
  }
  .rsArrowLeft.thin:after,
  .arrowL.thin:after {
	background-image: url("../../icons/arrowL.svg");
	height: 100%;
	width: 100%;
  }
  .rsArrowRight.thin:after,
  .arrowR.thin:after {
	background-image: url("../../icons/arrowR.svg");
	height: 100%;
	width: 100%;
  }
  .arrows {
	display: flex;
	justify-content: center;
	align-items: center;
	width: max-content;
  }
  .arrows .arrowL,
  .arrows .arrowR {
	cursor: pointer;
  }
  .arrows .arrowR {
	margin-left: 2rem;
  }
  .arrows .arrowR.thin {
	margin-left: 1rem;
  }
  .arrows.white .arrowR,
  .arrows.white .arrowL {
	height: 4.5rem;
	width: 4.5rem;
	background-color: white;
	opacity: 1;
  }
  .arrows.white .arrowR:after,
  .arrows.white .arrowL:after {
	height: 2rem;
	width: 2rem;
	filter: invert(17%) sepia(8%) saturate(1237%) hue-rotate(182deg) brightness(94%) contrast(94%);
  }
  .arrows.white .arrowR:hover,
  .arrows.white .arrowL:hover {
	opacity: 0.7;
  }
  .arrows.white .arrowL:after {
	background-image: url("../../icons/angleL.svg");
  }
  .arrows.white .arrowR {
	margin-left: 1rem;
  }
  .arrows.white .arrowR:after {
	background-image: url("../../icons/angleR.svg");
  }
  html {
	font-size: 62.5%;
	overflow-x: hidden;
  }
  html body {
	font: 14px "";
  }
  @media (min-width: 1921px) and (max-height: 600px) {
	html {
	  font-size: 55.5%;
	}
  }
  body,
  section {
	font-family: "WorkSans", sans-serif !important;
	font-family: "WorkSans", sans-serif;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.56;
  }
  @media (max-width: 769px) {
	body,
	section {
	  font-size: 1.5rem;
	  line-height: 1.47;
	}
  }
  section .mdl-container {
	width: 100%;
	max-width: 178rem;
	margin: 0 auto;
  }
  .m-play {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
  }
  .m-play .icon-play {
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	width: 10rem;
	height: 10rem;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.4);
	filter: drop-shadow(0 0.4rem 4rem rgba(0, 0, 0, 0.25));
  }
  .m-play .text-play {
	color: white;
	font-weight: 500;
	font-size: 2.4rem;
	line-height: 1.42;
	margin-top: 1.4rem;
	text-align: center;
  }
  @media (max-width: 769px) {
	.m-play .icon-play {
	  width: 7rem;
	  height: 7rem;
	}
	.m-play .text-play {
	  font-size: 1.8rem;
	  line-height: 1.44;
	}
  }
  .readmoreinit {
	overflow: hidden;
  }
  .readmoreinit {
	line-height: 1.6 !important;
  }
  @media screen and (max-width: 1200px) {
	.readmoreinit {
	  line-height: 1.6 !important;
	}
  }
  @media screen and (max-width: 600px) {
	.readmoreinit {
	  line-height: 1.6 !important;
	}
  }
  .m-readmore {
	display: flex;
	flex-direction: column;
	font-family: "WorkSans", sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	font-stretch: normal;
	font-style: normal;
	line-height: 1;
	letter-spacing: normal;
	color: #292e38;
	text-decoration: underline;
	cursor: pointer;
	margin-top: 1.4rem;
  }
  .m-readmore .less {
	display: none;
  }
  .w100 {
	font-weight: 100;
  }
  .w300 {
	font-weight: 300;
  }
  .w400 {
	font-weight: normal;
  }
  .w500 {
	font-weight: medium;
  }
  .w600 {
	font-weight: 600;
  }
  .w700 {
	font-weight: bold;
  }
  .w900 {
	font-weight: 900;
  }
  .italic {
	font-style: italic;
  }
  /* ----------------------------------------------------------------------------------------------------------------------- */
  html {
	overflow-x: hidden;
  }
  button,
  mark {
	background: none;
  }
  button,
  label {
	font-family: "WorkSans", sans-serif;
	cursor: pointer;
  }
  :focus {
	outline: none !important;
  }
  ::-moz-focus-inner {
	border: 0;
  }
  summary::-webkit-details-marker {
	display: none;
  }
  button,
  input[type="submit"],
  input[type="text"] {
	-webkit-appearance: none;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
	text-transform: none;
  }
  p {
	width: 100%;
  }
  img {
	width: auto;
	height: auto;
	object-fit: contain;
  }
  /* ----------------------------------------------------------------------------------------------------------------------- */
  @-webkit-keyframes swingV {
	15% {
	  -webkit-transform: translateY(0.5rem);
	  transform: translateY(0.5rem);
	}
	30% {
	  -webkit-transform: translateY(-0.5rem);
	  transform: translateY(-0.5rem);
	}
	50% {
	  -webkit-transform: translateY(0.3rem);
	  transform: translateY(0.3rem);
	}
	65% {
	  -webkit-transform: translateY(-0.3rem);
	  transform: translateY(-0.3rem);
	}
	80% {
	  -webkit-transform: translateY(0.2rem);
	  transform: translateY(0.2rem);
	}
	100% {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
  }
  @keyframes swingV {
	15% {
	  -webkit-transform: translateY(0.5rem);
	  transform: translateY(0.5rem);
	}
	30% {
	  -webkit-transform: translateY(-0.5rem);
	  transform: translateY(-0.5rem);
	}
	50% {
	  -webkit-transform: translateY(0.3rem);
	  transform: translateY(0.3rem);
	}
	65% {
	  -webkit-transform: translateY(-0.3rem);
	  transform: translateY(-0.3rem);
	}
	80% {
	  -webkit-transform: translateY(0.2rem);
	  transform: translateY(0.2rem);
	}
	100% {
	  -webkit-transform: translateY(0);
	  transform: translateY(0);
	}
  }
  @-webkit-keyframes swingH {
	15% {
	  -webkit-transform: translateX(0.5rem);
	  transform: translateX(0.5rem);
	}
	30% {
	  -webkit-transform: translateX(-0.5rem);
	  transform: translateX(-0.5rem);
	}
	50% {
	  -webkit-transform: translateX(0.3rem);
	  transform: translateX(0.3rem);
	}
	65% {
	  -webkit-transform: translateX(-0.3rem);
	  transform: translateX(-0.3rem);
	}
	80% {
	  -webkit-transform: translateX(0.2rem);
	  transform: translateX(0.2rem);
	}
	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  @keyframes swingH {
	15% {
	  -webkit-transform: translateX(0.5rem);
	  transform: translateX(0.5rem);
	}
	30% {
	  -webkit-transform: translateX(-0.5rem);
	  transform: translateX(-0.5rem);
	}
	50% {
	  -webkit-transform: translateX(0.3rem);
	  transform: translateX(0.3rem);
	}
	65% {
	  -webkit-transform: translateX(-0.3rem);
	  transform: translateX(-0.3rem);
	}
	80% {
	  -webkit-transform: translateX(0.2rem);
	  transform: translateX(0.2rem);
	}
	100% {
	  -webkit-transform: translateX(0);
	  transform: translateX(0);
	}
  }
  .mdl-cardsTeam {
	background: #f2eeeb;
	color: #000;
	padding: 10.2rem 0;
  }
  .mdl-cardsTeam .mdl-container {
	max-width: 126rem;
	margin: 0 auto;
	width: calc(100% - 12rem);
  }
  .mdl-cardsTeam .mdl-container .m-header {
	width: 100%;
	max-width: 126rem;
	margin: 0 auto 4.4rem;
  }
  .mdl-cardsTeam .mdl-container .m-header .m-title {
	display: flex;
	font-family: "WorkSans", sans-serif;
	font-size: 7rem;
	font-weight: 400;
	line-height: 1.06;
  }

  .mdl-cardsTeam .mdl-container .m-header .m-text {
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.47;
	margin-top: 15px;
  }

  @media (max-width: 769px) {
	.mdl-cardsTeam .mdl-container .m-header .m-title {
	  font-size: 3.4rem;
	  line-height: 1.24;
	}
  }
  .mdl-cardsTeam .mdl-container .m-header .m-title img {
	margin-top: -8rem;
	width: 6.1rem;
  }
  .mdl-cardsTeam .mdl-container > .m-title {
	display: none;
  }
  .mdl-cardsTeam .mdl-container .m-tabs {
	flex-wrap: wrap;
	display: flex;
	font-family: "WorkSans", sans-serif;
	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.42;
	margin: 0 -1.5rem 3.6rem;
  }
  @media (max-width: 769px) {
	.mdl-cardsTeam .mdl-container .m-tabs {
	  font-size: 2.2rem;
	  line-height: 1.45;
	}
  }
  .mdl-cardsTeam .mdl-container .m-tabs .m-tab {
	cursor: pointer;
    color: #202020;
	margin: 0 1.5rem;
  }
  .mdl-cardsTeam .mdl-container .m-tabs .m-tab:hover,
  .mdl-cardsTeam .mdl-container .m-tabs .m-tab.active {
	opacity: 1;
	color: #FB5E06;
  }
  .mdl-cardsTeam .mdl-container .m-cards {
	margin: -2rem;
	width: calc(100% + 4rem);
	display: none;
	justify-content: flex-start;
	flex-wrap: wrap;
  }
  .mdl-cardsTeam .mdl-container .m-cards#cards1 {
	display: flex;
  }
  .mdl-cardsTeam .mdl-container .m-cards .m-card {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin: 2rem;
	width: calc((100% - 12rem) / 3);
	padding: 4.4rem 3rem 4.4rem 4.1rem;
	min-height: 55rem;
	box-sizing: border-box;
	position: relative;
	color: white;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-direction: column;
	border-radius: 20px;
	overflow: hidden;

  }
  .mdl-cardsTeam .mdl-container .m-cards .m-card::after {
	content: "";
	height: 100%;
	width: 100%;
	z-index: 1;
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
  }
  .mdl-cardsTeam .mdl-container .m-cards .m-card .m-content {
	transition: all 0.3s ease-in;
	position: relative;
	z-index: 2;
	width: 100%;
  }
  .mdl-cardsTeam .mdl-container .m-cards .m-card .m-content .m-head {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  .mdl-cardsTeam .mdl-container .m-cards .m-card .m-content .m-head > .m-linkedin {
	display: block;
	height: 2.8rem;
  }
  .mdl-cardsTeam .mdl-container .m-cards .m-card .m-content .m-head > .m-linkedin > img {
	height: 100%;
	filter: brightness(0) grayscale(1) invert(1);
  }
  .mdl-cardsTeam .mdl-container .m-cards .m-card .m-content .m-title {
	font-weight: 500;
	font-size: 3rem;
	line-height: 1.27;
	max-width: calc(100% - 3rem);
  }

  .mdl-cardsTeam .mdl-container .m-cards .m-card .m-content .m-text {
	font-weight: 400;
	font-size: 1.5rem;
	line-height: 1.47;
  }
  .mdl-cardsTeam .mdl-container .m-cards .m-card .m-content .a-arrow {
	opacity: 0;
	max-height: 0;
	overflow: hidden;
	margin-top: 0;
	color: white;
  }
  .mdl-cardsTeam .mdl-container .m-cards .m-card .m-content .a-arrow img {
	filter: brightness(0) grayscale(1) invert(1);
	box-shadow: none;
  }
  @media (min-width: 769px) {
	.mdl-cardsTeam .mdl-container .m-cards .m-card:hover::after {
	  background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
	}
	.mdl-cardsTeam .mdl-container .m-cards .m-card:hover .m-content .a-arrow {
	  opacity: 1;
	  max-height: 100rem;
	  margin-top: 3rem;
	  cursor: pointer;
	}
  }
  @media (max-width: 1200px) {
	.mdl-cardsTeam {
	  padding: 7rem 0;
	}
	.mdl-cardsTeam .mdl-container .m-header .m-title {
	  font-size: 5rem;
	  font-weight: 400;
	  line-height: 1.1;
	}
	.mdl-cardsTeam .mdl-container .m-header .m-title img {
	  width: 4rem;
	  margin-right: -1rem;
	  margin-top: -5rem;
	}
	.mdl-cardsTeam .mdl-container > .m-title {
	  display: none;
	}
	.mdl-cardsTeam .mdl-container .m-cards {
	  margin: -1rem;
	  width: calc(100% + 2rem);
	}
	.mdl-cardsTeam .mdl-container .m-cards .m-card {
	  margin: 1rem;
	  width: calc((100% - 6rem) / 3);
	  padding: 4rem 3rem;
	  min-height: 44rem;
	}
  }
  @media (max-width: 769px) {
	.mdl-cardsTeam .mdl-container {
	  width: calc(100% - 6rem);
	}
	.mdl-cardsTeam .mdl-container .m-header .m-title {
	  font-size: 3.4rem;
	  line-height: 1.24;
	}
	.mdl-cardsTeam .mdl-container .m-header .m-title img {
	  width: 3rem;
	}
	.mdl-cardsTeam .mdl-container .m-cards {
	  margin: -1.5rem;
	  width: calc(100% + 3rem);
	}
	.mdl-cardsTeam .mdl-container .m-cards .m-card {
	  margin: 1.5rem;
	  width: calc(50% - 3rem);
	  padding: 4rem 2.4rem;
	  min-height: 44rem;
	}
	.mdl-cardsTeam .mdl-container .m-cards .m-card .m-content .a-arrow {
	  cursor: pointer;
	  opacity: 1;
	  max-height: unset;
	  margin-top: 3rem;
	}
  }
  @media (max-width: 551px) {
	.mdl-cardsTeam {
	  padding: 4rem 0;
	}
	.mdl-cardsTeam .mdl-container {
	  width: calc(100% - 4.8rem);
	}
	.mdl-cardsTeam .mdl-container .m-cards {
	  margin: -1.5rem 0;
	  width: 100%;
	}
	.mdl-cardsTeam .mdl-container .m-cards .m-card {
	  margin: 1.5rem 0;
	  width: 100%;
	  padding: 4rem 2.4rem;
	  min-height: 44rem;
	}
	.mdl-popupTeam .m-row .m-content .m-header{
		padding-left: 0!important;
	}
  }
  .mdl-popupTeam {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: #292e38;
	color: white;
	opacity: 0;
	pointer-events: none;
	z-index: -99;
	/* ===== Scrollbar CSS ===== */
	/* Firefox */
	/* Chrome, Edge, and Safari */
  }
  .mdl-popupTeam.active {
	opacity: 1;
	pointer-events: unset;
	z-index: 999999;
  }
  .mdl-popupTeam .icon-close {
	cursor: pointer;
	height: 4rem;
	position: absolute;
	top: 2.6rem;
	right: 2.7rem;
	background: none;
	z-index: 999;
  }
  .mdl-popupTeam .m-row {
	display: flex;
	height: 100%;
  }
  .mdl-popupTeam .m-row .m-img-box {
	position: relative;
	width: 50%;
  }
  .mdl-popupTeam .m-row .m-img-box .m-img {
	position: relative;
	z-index: 1;
	background-position: top;
	background-size: auto 100%;
	mix-blend-mode: lighten;
	background-repeat: no-repeat;
	height: 100%;
	width: 100%;
	background-color: white;
  }
  .mdl-popupTeam .m-row .m-img-box .m-img::after {
	content: "";
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
  }
  .mdl-popupTeam .m-row .m-img-box .m-quote {
	width: calc(100% - 4rem);
	max-width: 100%;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	font-weight: 300;
	font-size: 3rem;
	line-height: 1.5;
	position: absolute;
	bottom: 7.5rem;
	left: 2rem;
  }
  .mdl-popupTeam .m-row .m-img-box .m-quote .icon-quote {
	filter: invert(94%) sepia(6%) saturate(5541%) hue-rotate(309deg) brightness(111%) contrast(108%);
	width: 3rem;
	margin-right: 0.4rem;
	margin-top: 1rem;
  }
  .mdl-popupTeam .m-row .m-img-box .m-quote .text-quote {
	max-width: 54rem;
	width: calc(100% - 4rem);
  }
  .mdl-popupTeam .m-row .m-content {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	width: 50%;
	box-sizing: border-box;
	padding: 6rem 9.2rem 6rem 6rem;
	background-color: white;
    color: black;
  }
  .mdl-popupTeam .m-row .m-content .m-header {
	padding-left: 2rem;
	border-left: 0.1rem solid white;
  }
  .mdl-popupTeam .m-row .m-content .m-header .m-title {
	font-family: "WorkSans", sans-serif;
	font-size: 5rem;
	font-weight: 400;
	line-height: 1.1;
  }
  @media (max-width: 769px) {
	.mdl-popupTeam .m-row .m-content .m-header .m-title {
	  font-size: 3rem;
	  line-height: 1.33;
	}
  }
  .mdl-popupTeam .m-row .m-content .m-header .m-subtitle {
	font-family: "WorkSans", sans-serif;
	font-size: 1.8rem;
	font-weight: 400;
	line-height: 1.56;
  }
  @media (max-width: 769px) {
	.mdl-popupTeam .m-row .m-content .m-header .m-subtitle {
	  font-size: 1.5rem;
	  line-height: 1.47;
	}
  }
  .mdl-popupTeam .m-row .m-content .m-header .m-rrss {
	margin-top: 1.4rem;
	display: flex;
  }
  .mdl-popupTeam .m-row .m-content .m-header .m-rrss .m-rrss-item {
	display: block;
	height: 2.9rem;
  }
  .mdl-popupTeam .m-row .m-content .m-header .m-rrss .m-rrss-item:not(:first-child) {
	margin-left: 0.9rem;
  }
  .mdl-popupTeam .m-row .m-content .m-header .m-rrss .m-rrss-item img {
	filter: brightness(0) grayscale(1) invert(0);
	height: 100%;
	box-shadow: none;
  }
  .mdl-popupTeam .m-row .m-content .m-text-box {
	height: 50%;
	max-height: 40vh;
  }
  .mdl-popupTeam .m-row .m-content .m-text-box .m-text {
	max-height: 100%;
	overflow-y: auto;
	padding-right: 4rem;
  }
  @media (max-width: 1200px) {
	.mdl-popupTeam .m-row .m-img-box {
	  width: 50%;
	}
	.mdl-popupTeam .m-row .m-img-box .m-quote {
	  width: calc(100% - 8rem);
	}
	.mdl-popupTeam .m-row .m-content {
	  padding: 6rem 3rem;
	}
	.mdl-popupTeam .m-row .m-content .m-header .m-title {
	  font-family: "WorkSans", sans-serif;
	  font-size: 4rem;
	  font-weight: 400;
	  line-height: 1.38;
	}
	.mdl-popupTeam .m-row .m-content .m-text-box {
	  height: 60%;
	  max-height: 50vh;
	}
	.mdl-popupTeam .m-row .m-content .m-text-box .m-text {
	  padding-right: 2rem;
	}
  }
  @media (max-width: 1200px) and (max-width: 769px) {
	.mdl-popupTeam .m-row .m-content .m-header .m-title {
	  font-size: 2.6rem;
	  line-height: 1.31;
	}
  }
  @media (max-width: 769px) {
	.mdl-popupTeam .m-row .m-img-box .m-quote {
	  width: calc(100% - 4rem);
	  font-family: "WorkSans", sans-serif;
	  font-size: 2.4rem;
	  font-weight: 400;
	  line-height: 1.42;
	  font-weight: 300;
	  bottom: 12rem;
	  left: 3rem;
	}
	.mdl-popupTeam .m-row .m-img-box .m-quote .icon-quote {
	  width: 2rem;
	  margin-top: 0.8rem;
	}
	.mdl-popupTeam .m-row .m-img-box .m-quote .text-quote {
	  width: calc(100% - 2.8rem);
	}
	.mdl-popupTeam .m-row .m-content {
	  padding: 6rem 2rem;
	}
  }
  @media (max-width: 769px) and (max-width: 769px) {
	.mdl-popupTeam .m-row .m-img-box .m-quote {
	  font-size: 2.2rem;
	  line-height: 1.45;
	}
  }
  @media (max-width: 600px) {
	.mdl-popupTeam .m-row {
	  height: 100%;
	  overflow-y: auto;
	  max-height: 100vh;
	  flex-direction: column;
	}
	.mdl-popupTeam .m-row .m-img-box {
	  min-height: 51rem;
	  width: 100%;
	}
	.mdl-popupTeam .m-row .m-img-box .m-img {
	  background-size: cover;
	}
	.mdl-popupTeam .m-row .m-content {
	  width: 100%;
	  padding: 6rem 2.4rem;
	}
	.mdl-popupTeam .m-row .m-content .m-text-box {
	  margin-top: 3rem;
	  height: 30rem;
	  max-height: unset;
	}
	.mdl-popupTeam .m-row .m-content .m-text-box .m-text {
	  padding-right: 2rem;
	}
  }
  .mdl-popupTeam * {
	scrollbar-width: auto;
	scrollbar-color: #ffffff rgba(255, 255, 255, 0.2);
  }
  .mdl-popupTeam *::-webkit-scrollbar {
	width: 0.6rem;
	border-radius: 2rem;
  }
  .mdl-popupTeam *::-webkit-scrollbar-track {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 2rem;
  }
  .mdl-popupTeam *::-webkit-scrollbar-thumb {
	background-color: #ffffff;
	border-radius: 2rem;
	border: 0px solid #ffffff;
  }
  