  /*
Table Of Contents
 
 1.) Typography
 2.) Default Styles
 3.) Header - Main
 4.) Content - Main
 5.) Footer - Main
 6.) Inner - Pages
 7.) Modals
 8.) Text - Colors / Wordpress Cores

========================================*/
/*
 1.) Typography
----------------------------------------*/
/*
.montserrat { font-family: "Montserrat", sans-serif; }
*/
/*
 2.) Default Styles
----------------------------------------*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px; /* height of sticky header */
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, p, ol, ul, li {
  padding: 0;
  margin: 0;
}
body {
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #070936;
  line-height: 30px;
  background: #ffffff;
  margin: 0;
  padding: 0;
}
sub, sup {
  font-size: 60%;
}
sub {
  bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
}
small {
  font-size: 12px;
  line-height: 1.2em;
}
@media (max-width: 1199px) {
  body {
    font-size: 18px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 16px;
    line-height: 26px;
  }
}
/*= Links 
=======================================================*/
a {
  color: #eb6c0c;
  text-decoration: underline;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  cursor: pointer;
}
a:hover, a:focus, a:active {
  color: #eb6c1f;
  text-decoration: underline;
}
a:visited {
  outline: 0;
}
a[href^="tel:"], a[href^="fax:"] {
  color: #eb6c0c;
  text-decoration: underline;
}
a:hover[href^="tel:"], a:focus[href^="tel:"], a:hover[href^="fax:"], a:focus[href^="fax:"] {
  color: #eb6c1f;
  text-decoration: underline;
}
a[href^="mailto:"] {
  word-break: break-all;
}
/*= Headings: P, H1, H2, H3, H4, H5, H6 
=======================================================*/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 700;
  padding-bottom: 20px;
}
h1, .h1 {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}
h2, .h2 {
  font-weight: 500;
  font-size: 35px;
  line-height: 43px;
}
h3, .h3 {
  font-weight: 500;
  font-size: 28px;
  line-height: 36px;
}
h4, .h4, h5, .h5, h6, .h6 {
  font-size: 20px;
  line-height: 28px;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
}
h1:last-child, .h1:last-child, h2:last-child, .h2:last-child, h3:last-child, .h3:last-child, h4:last-child, .h4:last-child, h5:last-child, .h5:last-child, h6:last-child, .h6:last-child {
  padding-bottom: 0;
}
p {
  padding-bottom: 30px;
}
p:last-child {
  padding-bottom: 0;
}
.txt {
  padding-bottom: 60px;
}
.txt:last-child {
  padding-bottom: 0;
}
em {
  font-style: italic;
}
em.fal, em.far, em.fas, em.fab {
  font-style: normal;
}
strong {
  font-weight: 700;
}
@media (max-width: 1199px) {
  h1, .h1 {
    font-size: 34px;
    line-height: 42px;
  }
  h2, .h2 {
    font-size: 30px;
    line-height: 38px;
  }
  h3, .h3 {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (max-width: 767px) {
  h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    padding-bottom: 15px;
  }
  h1, .h1 {
    font-size: 26px;
    line-height: 34px;
  }
  h2, .h2 {
    font-size: 24px;
    line-height: 32px;
  }
  h3, .h3 {
    font-size: 22px;
    line-height: 30px;
  }
  h4, .h4, h5, .h5, h6, .h6 {
    font-size: 18px;
    line-height: 26px;
  }
  p {
    padding-bottom: 20px;
  }
  .txt {
    padding-bottom: 50px;
  }
}
/* Heading - Divider */
.h-divider h1, .h-divider .h1, .h-divider h2, .h-divider .h2 {
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 35px;
}
.h-divider h1:after, .h-divider .h1:after, .h-divider h2:after, .h-divider .h2:after {
  content: "";
  width: 108px;
  height: 1px;
  background: #eb6c0c;
  position: absolute;
  bottom: 0;
  left: 0;
}
.h-divider h1:last-child, .h-divider .h1:last-child, .h-divider h2:last-child, .h-divider .h2:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .h-divider h1, .h-divider .h1, .h-divider h2, .h-divider .h2 {
    padding-bottom: 20px;
    margin-bottom: 28px;
  }
}
/*= Unorder List 
=======================================================*/
ul, ol {
  list-style: none;
}
li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 15px;
}
li:last-child {
  padding-bottom: 30px;
}
ul:last-child li:last-child, ol:last-child li:last-child {
  padding-bottom: 0;
}
ul li ul, ol li ol {
  padding: 15px 0 0 0;
}
ul li:before {
  content: "\f061";
  font-family: "Font Awesome\ 5 Pro";
  font-weight: 900;
  font-size: 90%;
  color: #eb6c0c;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  li {
    padding-left: 27px;
    padding-bottom: 10px;
  }
  li:last-child {
    padding-bottom: 20px;
  }
  ul li ul, ol li ol {
    padding: 10px 0 0 0;
  }
}
/*= Order List 
=======================================================*/
ol {
  counter-reset: item;
}
ol > li {
  counter-increment: item;
}
ol > li:before {
  content: counter(item) ".";
  font-weight: 700;
  color: #eb6c0c;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
}
/* #Input Styles
================================================= */
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  outline: 0;
}
select, textarea, input {
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
}
label {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #070936;
  line-height: 26px;
  padding: 0 0 10px 0;
  margin: 0;
}
select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
  width: 100%;
  height: 59px;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #070936;
  line-height: 26px;
  white-space: nowrap;
  text-overflow: ellipsis;
  background: #ffffff;
  box-shadow: inset #707070 0 0 0 1px;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  overflow: hidden;
  position: relative;
  padding: 15px 28px;
  margin: 0;
}
textarea {
  height: 160px;
  line-height: 30px;
  white-space: normal;
  outline: none;
  resize: none;
  padding-top: 25px;
  padding-bottom: 25px;
}
select {
  background-image: url(/wp-content/themes/mestagtherapeutics/assets/img/chevron-down.svg);
  background-size: 22px auto;
  background-repeat: no-repeat;
  background-position: top 18px right 24px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-top: 0;
  padding-right: 70px;
  padding-bottom: 0;
}
select::-ms-expand {
  display: none;
}
select.colorize option:not([disabled]) {
  color: #070936;
}
select.colorize option.def:not([disabled]), select.colorize.empty:not([disabled]) {
  color: rgba(7, 9, 54, 0.3);
}
::-webkit-input-placeholder, ::-webkit-textarea-placeholder {
  color: rgba(7, 9, 54, 0.3);
}
input::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(7, 9, 54, 0.3);
}
::-moz-placeholder {
  color: rgba(7, 9, 54, 0.3);
}
::-ms-input-placeholder {
  color: rgba(7, 9, 54, 0.3);
}
select:focus, textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .uneditable-input:focus {
  box-shadow: inset #eb6c0c 0 0 0 1px;
  outline: 0;
}
@media (max-width: 1199px) {
  label {
    font-size: 18px;
    line-height: 24px;
  }
  select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
    font-size: 18px;
    line-height: 24px;
  }
  textarea {
    line-height: 26px;
  }
}
@media (max-width: 767px) {
  label {
    font-size: 16px;
    line-height: 22px;
  }
  select, textarea, input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"], .uneditable-input {
    height: 50px;
    font-size: 16px;
    line-height: 22px;
    padding: 12px 25px;
  }
  textarea {
    height: 130px;
    line-height: 24px;
  }
  select {
    background-size: 19px auto;
    background-position: top 15px right 22px;
    padding-right: 50px;
  }
}
/* Form - Check */
.form-check {
  width: 100%;
  min-height: 25px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0 0 0 38px;
  margin: 0;
}
.form-check .form-check-input {
  width: 25px;
  height: 25px;
  float: none;
  display: inline-block;
  vertical-align: top;
  background: #ffffff;
  border: 1px solid #707070;
  border-radius: 900px;
  box-shadow: none;
  outline: 0;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
}
.form-check .form-check-input[type="checkbox"] {
  border-radius: 0;
}
.form-check .form-check-input:focus, .form-check .form-check-input:active {
  filter: brightness(100%);
}
.form-check .form-check-input:checked {
  background-repeat: no-repeat;
  background-image: url(/wp-content/themes/mestagtherapeutics/assets/img/check.svg);
  background-position: center center;
  background-size: 15px auto;
}
.form-check .form-check-input:checked[type="radio"] {
  background-image: url(/wp-content/themes/mestagtherapeutics/assets/img/circle.svg);
  background-size: 13px auto;
}
.form-check .form-check-label {
  position: relative;
  z-index: 1;
  padding: 0;
  margin: 0;
}
@media (max-width: 1199px) {
  .form-check .form-check-input {
    top: -1px;
  }
}
/* #Buttons
================================================== */
/* Move */
@-moz-keyframes move {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -moz-transform: translateY(7px);
    transform: translateY(7px);
  }
}
@-webkit-keyframes move {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
  }
}
@keyframes move {
  0%, 20%, 50%, 80%, 100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(5px);
    -ms-transform: translateY(5px);
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }
  60% {
    -moz-transform: translateY(7px);
    -ms-transform: translateY(7px);
    -webkit-transform: translateY(7px);
    transform: translateY(7px);
  }
}
/* Arrow Right */
@keyframes arrowright {
  0% {
    margin-left: 20px;
    margin-right: 0;
  }
  75% {
    margin-left: 40px;
    margin-right: -20px;
  }
  100% {
    margin-left: 20px;
    margin-right: 0;
  }
}
@-webkit-keyframes arrowright {
  0% {
    margin-left: 20px;
    margin-right: 0;
  }
  75% {
    margin-left: 40px;
    margin-right: -20px;
  }
  100% {
    margin-left: 20px;
    margin-right: 0;
  }
}
/* Arrow Right2 */
@keyframes arrowright2 {
  0% {
    margin-left: 0;
    margin-right: 0;
  }
  75% {
    margin-left: 10px;
    margin-right: -10px;
  }
  100% {
    margin-left: 0;
    margin-right: 0;
  }
}
@-webkit-keyframes arrowright2 {
  0% {
    margin-left: 0;
    margin-right: 0;
  }
  75% {
    margin-left: 10px;
    margin-right: -10px;
  }
  100% {
    margin-left: 0;
    margin-right: 0;
  }
}
/* Custom - Select */
button {
  background: none;
  border: none;
  box-shadow: none;
  text-decoration: none;
  white-space: normal;
  cursor: pointer;
  outline: 0;
  padding: 0;
  margin: 0;
}
button:hover, button:focus, button:active, button:active:focus, button.active, button.active:focus {
  outline: 0;
}
.btn, .button, input[type="button"], input[type="submit"] {
  width: auto;
  height: auto;
  float: none;
  display: inline-block;
  vertical-align: middle;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #070936;
  line-height: 19px;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  white-space: normal;
  background: #ffffff;
  border-radius: 900px;
  box-shadow: inset #070936 0 0 0 1px;
  border: none;
  overflow: hidden;
  position: relative;
  z-index: 1;
  cursor: pointer;
  outline: 0;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  padding: 7px 130px 7px 30px;
  margin: 0;
}
.btn::after, .button::after {
  content: "";
  width: 67px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/long-arrow-right-orange.png) no-repeat right center;
  background-size: auto 100%;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: absolute;
  overflow: hidden;
  top: 50%;
  right: 40px;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin: 0.5px 0 0 20px;
}
.btn.btn-left::after {
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/long-arrow-left-orange.png) no-repeat left center;
  background-size: auto 100%;
}
.btn:hover, .btn:focus, .btn:active, .btn:active:focus, .btn.active, .btn.active:focus, .button:hover, .button:focus, .button:active, .button:active:focus, .button.active, .button.active:focus, input[type="button"]:hover, input[type="button"]:focus, input[type="button"]:active, input[type="button"]:active:focus, input[type="button"].active, input[type="button"].active:focus, input[type="submit"]:hover, input[type="submit"]:focus, input[type="submit"]:active, input[type="submit"]:active:focus, input[type="submit"].active, input[type="submit"].active:focus, .btn:not(:disabled):not(.disabled).active, .button:not(:disabled):not(.disabled):active {
  color: #070936;
  text-decoration: none;
  box-shadow: inset #070936 0 0 0 1px;
  outline: 0;
}
.btn:hover::after, .btn:focus::after, .btn:active::after, .btn:active:focus::after, .btn.active::after, .btn.active:focus::after, .button:hover::after, .button:focus::after, .button:active::after, .button:active:focus::after, .button.active::after, .button.active:focus::after {
  margin: 0.5px -15px 0 35px;
}
.btn.btn-left:hover::after, .btn.btn-left:focus::after, .btn.btn-left:active::after {
  margin: 0.5px 15px 0 35px;
}
.btn:focus, .button:focus, input[type="button"]:focus, input[type="submit"]:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: 2px;
}
.disabled {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  opacity: 0.65;
}
.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
  cursor: not-allowed;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.65;
}
a.btn.disabled, fieldset[disabled] a.btn {
  pointer-events: none;
}
.btn-out {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-top: 20px;
}
.btn-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 20px -10px -20px -10px;
}
.btn-wrap .btn {
  float: left;
  margin: 0 10px 20px 10px;
}
@media (max-width: 767px) {
  .btn, .button, input[type="button"], input[type="submit"] {
    font-size: 14px;
    line-height: 18px;
  }
  .btn-out, .btn-wrap {
    margin-top: 15px;
  }
}
/* Table */
table, tbody, thead, tr, th, td {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  padding: 0;
  margin: 0;
}
/* Figure */
figure, .figure {
  vertical-align: top;
}
.break-word {
  word-wrap: break-word;
}
/* #Owl-carousel
=======================================================*/
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
#animate-slider {
  background-repeat: no-repeat;
  background-size: cover;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper, .owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  width: 100%;
  display: inline-block;
  max-height: 450px;
  object-fit: cover;
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background: #fff;
  border-radius: 100%;
  padding: 5px 7px;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/* Owl Carousel - Animate Plugin */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .owl-carousel .owl-stage-outer .owl-item {
    padding: 0 40px;
  }
}
/* Owl Carousel - Auto Height Plugin */
.owl-height {
  transition: height 500ms ease-in-out;
}
/* Owl Carousel - Lazy Load Plugin */
.owl-carousel .owl-item {
  /**
This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
calculation of the height of the owl-item that breaks page layouts
*/
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/* Owl Carousel - Video Plugin */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  /*background: url("/wp-content/themes/mestagtherapeutics/assets/css/owl.video.play.png") no-repeat;*/
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn, .owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/* #Slider Controls
================================================== */
/* Previous and Next */
.owl-nav button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  font-weight: inherit;
  font-size: 24px;
  color: #070936;
  line-height: 1em;
  text-decoration: none;
  text-align: center;
  background: none;
  box-shadow: none;
  border-radius: 0;
  position: absolute;
  top: 50%;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  z-index: 2;
  outline: 0;
  padding: 0;
  margin: 0;
}
.owl-nav button:hover, .owl-nav button:focus, .owl-nav button:active {
  color: #eb6c0c;
  background: none;
  box-shadow: none;
  outline: 0;
}
.owl-nav button.owl-prev {
  left: 0;
}
.owl-nav button.owl-next {
  right: 0;
}
.owl-nav button.disabled {
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}
.owl-nav button.disabled:hover, .owl-nav button.disabled:focus, .owl-nav button.disabled:active {
  opacity: 0.2;
}
.owl-nav.disabled {
  display: none;
}
@media (max-width: 991px) {
  .owl-nav button {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .owl-nav button {
    top: 80%;
  }
}
/* Bullets */
.owl-dots {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  line-height: 0.5em;
  margin: 40px 0 0 0;
}
.owl-dots button.owl-dot {
  width: 16px;
  height: 16px;
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  background: none;
  box-shadow: inset #070936 0 0 0 2px;
  border-radius: 900px;
  border: none;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  cursor: pointer;
  padding: 0;
  margin: 0 7px;
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-dot, .owl-dots {
  margin: 10px;
}
.owl-dots button.owl-dot:hover, .owl-dots button.owl-dot:focus, .owl-dots button.owl-dot:active, .owl-dots button.owl-dot.active {
  background: #070936;
  box-shadow: inset #070936 0 0 0 1px;
  border: 2px solid #fff;
}
.owl-dots.disabled {
  display: none;
}
@media (max-width: 991px) {
  .owl-dots button.owl-dot {
    width: 13px;
    height: 13px;
    margin: 0 5px;
  }
}
/* OWL - Controls */
.owl-controls {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  line-height: 0.5em;
  text-align: center;
}
.owl-controls .controls-wrap {
  float: none;
  display: inline-block;
  vertical-align: top;
  line-height: 0.5em;
  position: relative;
  padding: 0 35px;
}
.owl-controls .owl-dots {
  width: auto;
  margin: 0;
}
@media (max-width: 991px) {
  .owl-controls .controls-wrap {
    padding: 0 30px;
  }
}
/* #Flying focus
================================================== */
#flying-focus {
  position: absolute;
  margin: 0;
  background: transparent;
  -webkit-transition-property: left, top, width, height, opacity;
  transition-property: left, top, width, height, opacity;
  -webkit-transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
  transition-timing-function: cubic-bezier(0, 0.2, 0, 1);
  visibility: hidden;
  pointer-events: none;
  box-shadow: -webkit-focus-ring-color 0 0 0 2px;
  border-radius: 0;
}
#flying-focus.flying-focus_visible {
  visibility: visible;
  z-index: 9999;
}
.flying-focus_target {
  outline: none !important; /* Doesn't work in Firefox :( */
}
/* http://stackoverflow.com/questions/71074/how-to-remove-firefoxs-dotted-outline-on-buttons-as-well-as-links/199319 */
.flying-focus_target::-moz-focus-inner {
  border: 0 !important;
}
/* Replace it with @supports rule when browsers catch up */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  #flying-focus {
    box-shadow: none;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -3px;
  }
}
/* Skip - Button */
.skip-btn {
  height: 40px;
  float: left;
  font-weight: 500;
  font-size: 16px;
  color: #ffffff;
  line-height: 40px;
  letter-spacing: 0.68px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  background: #eb6c0c;
  border-radius: 900px;
  -webkit-transition: top 1s ease-out, background 1s linear;
  transition: top 1s ease-out, background 1s linear;
  overflow: hidden;
  position: absolute;
  z-index: 1001;
  top: -40px;
  left: 5px;
  opacity: 0;
  padding: 0 35px;
  margin: 0;
}
.skip-btn:hover, .skip-btn:focus, .skip-btn:active {
  top: 0px;
  color: #ffffff;
  text-decoration: none;
  background: #eb6c0c;
  box-shadow: rgba(0, 0, 0, 0.2) 0 0 25px;
  -webkit-transition: top 0.1s ease-in, background 0.5s linear;
  transition: top 0.1s ease-in, background 0.5s linear;
  opacity: 1;
}
/*= Container - Main
=======================================================*/
.container-main {
  width: 100%;
  min-height: calc(100vh - 29px);
  float: left;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.container {
  width: 100%;
  max-width: 1370px;
  padding: 0 40px;
}
@media (min-width: 768px) {
  .container.max-1110 {
    max-width: 1190px;
  }
}
@media (max-width: 767px) {
  .container {
    max-width: 640px;
    padding: 0 25px;
  }
}
/*
 3.) Header - Main
----------------------------------------*/
.header-main {
  width: 100%;
  height: 123px;
  float: left;
  background: #070936;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
}
.header-main:before {
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/background-lines-vertical.png) no-repeat bottom center;
  background-size: 1920px auto;
  background-position: bottom -10px right 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.header-main.fixed {
  position: fixed;
}
.admin-bar .header-main {
  top: 32px;
}
@media (min-width: 768px) {
  .header-main .container {
    max-width: 2000px;
  }
}
@media (max-width: 1439px) {
  .header-main:before {
    background-size: 100% auto;
    opacity: 0.8;
  }
}
@media (max-width: 1199px) {
  .header-main:before {
    opacity: 0.5;
  }
}
@media (max-width: 767px) {
  .header-main {
    height: 75px;
  }
  .header-main:before {
    opacity: 0.3;
  }
}
@media (max-width: 782px) {
  .admin-bar .header-main {
    top: 46px;
  }
}
@media (max-width: 600px) {
  .admin-bar .header-main.fixed {
    top: 0;
  }
}
/* Site Brand */
.header-main .brand {
  height: 123px;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: relative;
  z-index: 10;
  padding: 0;
  margin: 0;
}
.header-main .brand img {
  width: 100%;
  max-width: 229px;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 767px) {
  .header-main .brand {
    height: 75px;
  }
  .header-main .brand img {
    max-width: 140px;
  }
}
@media (min-width: 992px) {
  .header-main .nav-bar {
    float: right;
  }
  .header-main .nav-bar .nav-max, .header-main .nav-bar .nav-inn {
    float: left;
  }
  /* Primary - Menu */
  .header-main .primary-menu {
    float: left;
  }
  .header-main .primary-menu ul {
    float: left;
    padding: 0;
    margin: 0 -20px;
  }
  .header-main .primary-menu ul li {
    height: 123px;
    float: left;
    padding: 0;
    margin: 0;
  }
  .header-main .primary-menu ul li:before {
    display: none;
  }
  .header-main .primary-menu ul li > a {
    height: 123px;
    float: left;
    font-weight: 600;
    font-size: 17px;
    color: #ffffff;
    line-height: 123px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    position: relative;
    padding: 0 20px;
  }
  .header-main .primary-menu ul li .submenu-lv1 {
    display: none;
  }
  .header-main .primary-menu ul li:hover > a, .header-main .primary-menu ul li > a:focus, .header-main .primary-menu ul li.nav-menu-open > a, .header-main .primary-menu ul li.current-menu-item > a, .header-main .primary-menu ul li.current-menu-parent > a, .header-main .primary-menu ul li.current-menu-ancestor > a {
    color: #eb6c0c;
  }
  .header-main .primary-menu ul li > ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background: rgba(7 9 54 / 90%);
    box-shadow: rgba(0, 0, 0, 0.2) 0 5px 15px;
    border-radius: 0 0 15px 15px;
    transition: all 0.2s ease-in-out;
    transform-origin: left top;
    transform: scaleY(0);
    visibility: hidden;
    opacity: 0;
    display: block !important;
    position: absolute;
    top: 123px;
    left: 0;
    padding: 10px 15px 20px 25px;
    margin: -25px 0 0 10px;
  }
  .header-main .primary-menu ul li > a:focus + ul, .header-main .primary-menu ul li:hover > ul, .header-main .primary-menu ul li.nav-menu-open > ul {
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
  }
  .header-main .primary-menu ul li > ul li {
    width: 100%;
    min-width: 180px;
    height: auto;
    float: left;
    padding: 0;
    margin: 0 0 20px 0;
  }
  .header-main .primary-menu ul li > ul li:last-child {
    margin-bottom: 0;
  }
  .header-main .primary-menu ul li > ul li:before {
    display: none;
  }
  .header-main .primary-menu ul li > ul li > a {
    width: 100%;
    height: auto;
    font-size: 16px;
    color: #ffffff;
    line-height: 22px;
    text-align: left;
    padding: 0;
    margin: 0;
    text-transform: none;
    font-weight: normal;
  }
  .header-main .primary-menu ul li > ul li > a:before {
    display: none;
  }
  .header-main .primary-menu ul li > ul li:hover > a, .header-main .primary-menu ul li > ul li > a:focus, .header-main .primary-menu ul li > ul li.nav-menu-open > a, .header-main .primary-menu ul li > ul li.current-menu-item > a, .header-main .primary-menu ul li > ul li.current-menu-parent > a, .header-main .primary-menu ul li > ul li.current-menu-ancestor > a {
    color: #eb6c0c;
    text-decoration: underline;
  }
}
@media (min-width: 1280px) {
  .header-main .primary-menu ul {
    margin: 0 -35px;
  }
  .header-main .primary-menu ul li > a {
    font-size: 20px;
    padding: 0 25px;
  }
  .header-main .primary-menu ul li > ul {
    /*padding: 10px 35px 30px 35px;
	margin: 0;*/
  }
  /*.header-main .primary-menu ul li > ul li > a {
	font-size: 18px;
	line-height: 24px;
}*/
}
@media (min-width: 1360px) {
  .header-main .primary-menu ul li > a {
    padding: 0 35px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1110px) {
  .header-main .primary-menu ul li > a {
    padding: 0 8px;
  }
}
@media (max-width: 991px) {
  .hiddenscroll-menu {
    overflow: hidden;
  }
  .header-main .overlay-menu {
    width: 100%;
    height: 100%;
    float: left;
    background: #070936;
    position: fixed;
    top: 123px;
    left: 0;
    z-index: 7;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: top 0.15s ease-out;
    -moz-transition: top 0.15s ease-out;
    transition: top 0.15s ease-out;
    overflow: hidden;
  }
  .header-main .overlay-menu.active {
    visibility: visible;
    opacity: 0.7;
    -webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
  }
  .header-main .nav-bar {
    width: 90%;
    max-width: 360px;
    height: 100%;
    float: right;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    overflow: hidden;
    visibility: hidden;
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 9;
    padding: 123px 0 0 0;
  }
  .header-main .nav-bar:before {
    content: "";
    width: 150%;
    height: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: absolute;
    top: 123px;
    left: -25%;
  }
  .header-main .nav-bar.active {
    visibility: visible;
    right: 0;
  }
  .header-main .nav-bar .nav-max {
    width: 100%;
    height: 100%;
    float: left;
    background: #070936;
    overflow: auto;
    overflow-x: hidden;
  }
  .header-main .nav-bar .nav-inn {
    width: 100%;
    float: left;
    position: relative;
    padding: 30px 40px 50px 40px;
  }
  /* Primary - Menu */
  .header-main .primary-menu {
    width: 100%;
    float: left;
    padding: 0 0 30px 0;
  }
  .header-main .primary-menu:last-child {
    padding-bottom: 0;
  }
  .header-main .primary-menu ul {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
  }
  .header-main .primary-menu ul li {
    width: 100%;
    float: left;
    position: relative;
    padding: 0;
    margin: 0;
  }
  .header-main .primary-menu ul li:last-child {
    border-bottom: none;
  }
  .header-main .primary-menu ul li:before {
    display: none;
  }
  .header-main .primary-menu ul li > a {
    width: 100%;
    float: left;
    font-weight: 600;
    font-size: 20px;
    color: #ffffff;
    line-height: 26px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding: 22px 0;
    margin: 0;
  }
  .header-main .primary-menu ul li.menu-item-has-children > a {
    padding-right: 40px;
  }
  .header-main .primary-menu ul li .submenu-lv1 {
    display: none;
  }
  .header-main .primary-menu ul li.menu-item-has-children > .submenu-lv1 {
    display: block;
    width: 100px;
    height: 70px;
    float: right;
    text-align: right;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
  }
  .header-main .primary-menu ul li.menu-item-has-children > .submenu-lv1:after {
    content: "\f078";
    font-family: "Font Awesome\ 5 Pro";
    font-weight: 700;
    font-size: 24px;
    color: #f4f4f4;
    line-height: 70px;
    -webkit-transition: opacity 0.2s ease-out;
    -moz-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    position: relative;
    top: 0;
  }
  .header-main .primary-menu ul li.menu-item-has-children > .submenu-lv1.active:after {
    content: "\f077";
  }
  .header-main .primary-menu ul li:hover > a, .header-main .primary-menu ul li > a:focus, .header-main .primary-menu ul li.nav-menu-open > a, .header-main .primary-menu ul li.current-menu-item > a, .header-main .primary-menu ul li.current-menu-parent > a, .header-main .primary-menu ul li.current-menu-ancestor > a {
    color: #eb6c0c;
  }
  .header-main .primary-menu ul li ul {
    display: none;
    padding: 0 0 0 20px;
    margin: 0;
  }
  .header-main .primary-menu ul li ul li > a {
    font-size: 18px;
    line-height: 24px;
    padding: 12px 0;
  }
}
@media (max-width: 767px) {
  .header-main .overlay-menu {
    top: 75px;
  }
  .header-main .nav-bar {
    padding: 75px 0 0 0;
  }
  .header-main .nav-bar:before {
    top: 75px;
  }
  .header-main .nav-bar .nav-inn {
    padding: 30px 40px 50px 40px;
  }
  .header-main .primary-menu ul li > a {
    font-size: 18px;
    line-height: 24px;
  }
  .header-main .primary-menu ul li.menu-item-has-children > .submenu-lv1 {
    height: 68px;
  }
  .header-main .primary-menu ul li.menu-item-has-children > .submenu-lv1:after {
    font-size: 20px;
    line-height: 68px;
  }
  .header-main .primary-menu ul li ul li > a {
    font-size: 16px;
    line-height: 22px;
  }
}
.header-main .primary-menu ul li > ul li.anchorlink.current-menu-item > a, .header-main .primary-menu ul li > ul li.anchorlink.current-menu-parent > a {
  color: #ffffff;
  text-decoration: none;
}
.header-main .primary-menu ul li > ul li.anchorlink.current-menu-item:hover > a, .header-main .primary-menu ul li > ul li.anchorlink.current-menu-item > a:focus, .header-main .primary-menu ul li > ul li.anchorlink.current-menu-parent:hover > a, .header-main .primary-menu ul li > ul li.anchorlink.current-menu-parent > a:focus {
  color: #eb6c0c;
  text-decoration: underline;
}
/* Menu - Button */
.header-main .menu-btn {
  min-width: inherit;
  height: 123px;
  float: right;
  flex-wrap: wrap;
  align-items: center;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  position: relative;
  z-index: 10;
  padding: 0;
  margin: 0 0 0 -500px;
  display: none;
}
.header-main .menu-btn .menu-bar {
  width: 35px;
  height: 3px;
  float: left;
  background: #f4f4f4;
  text-indent: -99999px;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: relative;
  margin: 11px 0;
}
.header-main .menu-btn .menu-bar:before, .header-main .menu-btn .menu-bar:after {
  content: "";
  width: 100%;
  height: 3px;
  float: left;
  background: #f4f4f4;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: absolute;
  left: 0;
}
.header-main .menu-btn .menu-bar:before {
  top: -11px;
}
.header-main .menu-btn .menu-bar:after {
  top: 11px;
}
.header-main .menu-btn.active .menu-bar {
  background: none;
}
.header-main .menu-btn.active .menu-bar:before, .header-main .menu-btn.active .menu-bar:after {
  top: 0;
}
.header-main .menu-btn.active .menu-bar:before {
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
}
.header-main .menu-btn.active .menu-bar:after {
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
}
@media (max-width: 991px) {
  .header-main .menu-btn {
    display: flex;
  }
}
@media (max-width: 767px) {
  .header-main .menu-btn {
    height: 75px;
  }
  .header-main .menu-btn .menu-bar {
    width: 32px;
    height: 2px;
    margin: 10px 0;
  }
  .header-main .menu-btn .menu-bar:before, .header-main .menu-btn .menu-bar:after {
    height: 2px;
  }
  .header-main .menu-btn .menu-bar:before {
    top: -10px;
  }
  .header-main .menu-btn .menu-bar:after {
    top: 10px;
  }
}
/*
 4.) Content - Main
----------------------------------------*/
.content-main {
  width: 100%;
  float: left;
  /*flex: 1 0 auto;*/
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 123px 0 0 0;
}
.content-main .container {
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .content-main {
    padding: 75px 0 0 0;
  }
}
/* Section - Wrap */
.section-wrap {
  width: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
/* Left Lines - Horizontal */
.left-lines-horizontal {
  width: 1300px;
  height: 2270px;
  float: left;
  position: absolute;
  bottom: -1300px;
  left: -950px;
}
.left-lines-horizontal.alt1 {
  bottom: -850px;
}
.left-lines-horizontal .inn {
  width: 100%;
  height: 100%;
  float: left;
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/background-lines-horizontal.png) no-repeat center center;
  background-size: auto 100%;
  position: absolute;
  /*top: 0;*/
  left: 0;
  bottom: -17%;
}
@media (max-width: 1699px) {
  .left-lines-horizontal {
    width: 1010px;
    height: 1760px;
    bottom: -950px;
    left: -840px;
  }
  .left-lines-horizontal.alt1 {
    bottom: -550px;
  }
}
@media (max-width: 767px) {
  .left-lines-horizontal {
    width: 340px;
    height: 550px;
    bottom: -300px;
    left: -200px;
  }
  .left-lines-horizontal.alt1 {
    bottom: -180px;
  }
}
/* Right Lines - Horizontal */
.right-lines-horizontal {
  width: 1300px;
  height: 2270px;
  float: left;
  position: absolute;
  /*bottom: -100px;*/
  right: -970px;
}
.right-lines-horizontal .inn {
  width: 100%;
  height: 100%;
  float: left;
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/background-lines-horizontal.png) no-repeat center center;
  background-size: auto 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1699px) {
  .right-lines-horizontal {
    width: 1010px;
    height: 1760px;
    /*bottom: -100px;*/
    right: -840px;
  }
}
@media (max-width: 767px) {
  .right-lines-horizontal {
    width: 340px;
    height: 550px;
    bottom: 250px;
    right: -200px;
  }
}
/* Left Lines - Vertical */
.left-lines-vertical {
  width: 2270px;
  height: 1270px;
  float: left;
  position: absolute;
  top: 50%;
  left: -1920px;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.left-lines-vertical .inn {
  width: 100%;
  height: 100%;
  float: left;
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/background-lines-vertical.png) no-repeat center center;
  background-size: auto 100%;
  text-indent: -99999px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1699px) {
  .left-lines-vertical {
    width: 1550px;
    height: 850px;
    left: -1290px;
  }
}
@media (max-width: 767px) {
  .left-lines-vertical {
    width: 550px;
    height: 300px;
    left: -470px;
  }
}
/* Right Lines - Vertical */
.right-lines-vertical {
  width: 2270px;
  height: 1270px;
  float: left;
  position: absolute;
  bottom: -990px;
  right: -900px;
}
.right-lines-vertical .inn {
  width: 100%;
  height: 100%;
  float: left;
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/background-lines-vertical.png) no-repeat center center;
  background-size: auto 100%;
  text-indent: -99999px;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 1699px) {
  .right-lines-vertical {
    width: 1550px;
    height: 850px;
    bottom: -700px;
    right: -750px;
  }
}
@media (max-width: 767px) {
  .right-lines-vertical {
    width: 550px;
    height: 300px;
    bottom: -220px;
    right: -300px;
  }
}
/* Row */
.row-out {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 120px;
}
.row-out:last-child {
  padding-bottom: 0;
}
.row {
  padding-bottom: 120px;
  margin: 0 -35px -70px -35px;
}
.row:last-child {
  padding-bottom: 0;
}
.row > div {
  padding: 0 35px 70px 35px;
}
.row.no-gutters {
  padding: 0;
  margin: 0;
}
.row.no-gutters > div {
  padding: 0;
}
@media (max-width: 1399px) {
  .row {
    margin: 0 -25px -60px -25px;
  }
  .row > div {
    padding: 0 25px 60px 25px;
  }
}
@media (max-width: 1199px) {
  .row-out {
    padding-bottom: 90px;
  }
  .row {
    padding-bottom: 90px;
    margin: 0 -20px -60px -20px;
  }
  .row > div {
    padding: 0 20px 60px 20px;
  }
  .row.no-gutters {
    padding: 0;
    margin: 0;
  }
  .row.no-gutters > div {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .row-out {
    padding-bottom: 60px;
  }
  .row {
    padding-bottom: 60px;
    margin: 0 -15px -50px -15px;
  }
  .row > div {
    padding: 0 15px 50px 15px;
  }
  .row.no-gutters {
    padding: 0;
    margin: 0;
  }
  .row.no-gutters > div {
    padding: 0;
  }
}
/* Figure */
.figure {
  margin-bottom: 50px;
}
.figure:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .figure {
    margin-bottom: 40px;
  }
}
/* Read - More */
.read-more {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-top: 20px;
}
.read-more a, .read-more span {
  float: none;
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  font-size: 15px;
  color: #070936;
  line-height: 19px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
.read-more a:after, .read-more span:after {
  content: "";
  width: 67px;
  height: 13px;
  display: inline-block;
  vertical-align: middle;
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/long-arrow-right-orange.png) no-repeat right center;
  background-size: auto 100%;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: relative;
  overflow: hidden;
  top: -0.5px;
  margin: 0 0 0 20px;
}
.read-more a:hover, .read-more a:focus, .read-more a:active, a.box:hover .read-more span, a.box:focus .read-more span, a.box:active .read-more span {
  text-decoration: none;
}
.read-more a:hover:after, .read-more a:focus:after, .read-more a:active:after, a.box:hover .read-more span:after, a.box:focus .read-more span:after, a.box:active .read-more span:after {
  margin: 0 -20px 0 40px;
}
@media (max-width: 767px) {
  .read-more {
    margin-top: 15px;
  }
  .read-more a, .read-more span {
    font-size: 14px;
    line-height: 18px;
  }
}
/* Read - More2 */
.read-more2 {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-top: 20px;
}
.read-more2 a {
  float: none;
  display: inline-block;
  vertical-align: top;
  font-weight: 400;
  font-size: 25px;
  color: #070936;
  line-height: 31px;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  cursor: pointer;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  padding: 0 0 33px 0;
}
.read-more2 a:before, .read-more2 a:after {
  content: "";
  width: 142px;
  height: 19px;
  display: inline-block;
  vertical-align: top;
  border-radius: 900px;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  margin: 0;
}
.read-more2 a:before {
  border: 1px solid #070936;
}
.read-more2 a:after {
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/long-arrow-right-orange.png) no-repeat center center;
  background-size: 67px auto;
}
.read-more2 a:hover:after, .read-more2 a:focus:after, .read-more2 a:active:after {
  animation: arrowright2 0.5s linear 1;
  -webkit-animation-name: arrowright2 0.5s linear 1;
}
@media (max-width: 1199px) {
  .read-more2 a {
    font-size: 22px;
    line-height: 28px;
    padding: 0 0 40px 0;
  }
}
@media (max-width: 767px) {
  .read-more2 {
    margin-top: 15px;
  }
  .read-more2 a {
    font-size: 20px;
    line-height: 26px;
    padding: 0 0 36px 0;
  }
  .read-more2 a:before, .read-more2 a:after {
    width: 120px;
    height: 19px;
  }
  .read-more2 a:after {
    background-size: 50px auto;
  }
}
/* Form - Block */
.form-block {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 120px;
}
.form-block:last-child {
  margin-bottom: 0;
}
.form-block h1, .form-block .h1, .form-block h2, .form-block .h2 {
  border-bottom: 1px solid #070936;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.form-block h1:last-child, .form-block .h1:last-child, .form-block h2:last-child, .form-block .h2:last-child {
  margin-bottom: 0;
}
.form-block .txt {
  padding-bottom: 45px;
}
.form-block .txt:last-child {
  padding-bottom: 0;
}
.form-block .form-wrap, .form-block form {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0;
}
.form-block ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -15px -30px -15px;
}
.form-block ul li {
  width: 50%;
  float: left;
  font-weight: inherit;
  line-height: 1em;
  padding: 0 15px 30px 15px;
  margin: 0;
}
.form-block ul li:last-child {
  padding-bottom: 30px;
}
.form-block ul li:before {
  display: none;
}
.form-block ul li.full-width {
  width: 100%;
}
.form-block .gform_footer, .form-block .btn-out {
  margin: 70px 0 0 0;
}
.form-block p ~ .gform_wrapper {
  margin-top: 15px;
}
.form-block .gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
.form-block .gform_ajax_spinner {
  margin-left: 12px;
}
@media (max-width: 1199px) {
  .form-block {
    margin-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .form-block {
    margin-bottom: 60px;
  }
  .form-block h1, .form-block .h1, .form-block h2, .form-block .h2 {
    padding-bottom: 20px;
    margin-bottom: 25px;
  }
  .form-block .txt {
    padding-bottom: 35px;
  }
  .form-block ul {
    margin: 0 -12px -24px -12px;
  }
  .form-block ul li {
    width: 100%;
    padding: 0 12px 24px 12px;
  }
  .form-block ul li:last-child {
    padding-bottom: 24px;
  }
  .form-block .gform_footer, .form-block .btn-out {
    margin: 45px 0 0 0;
  }
  .form-block .gform_wrapper.gravity-theme .gform_fields {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }
}
.form-block .gform_submission_error, .gform_submission_error {
  font-size: 20px;
  border: 0;
  color: #eb6c0c;
}
.gform_submission_error .gform-icon {
  display: none;
}
.gfield_description {
  font-size: smaller;
}
.gfield_validation_message {
  color: #eb6c0c;
}
/* Txt - Band */
.row-band {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 60px;
}
.graph-slider .row-band {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding-top: 60px;
  padding-bottom: 50px;
}
.row-band:last-child {
  padding-bottom: 0;
}
.row-band h1, .row-band .h1, .row-band h2, .row-band .h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  position: relative;
  padding-bottom: 28px;
  margin-bottom: 35px;
}
.row-band h1:after, .row-band .h1:after, .row-band h2:after, .row-band .h2:after {
  content: "";
  width: 108px;
  height: 1px;
  background: #eb6c0c;
  position: absolute;
  bottom: 0;
  left: 0;
}
.row-band h1:last-child, .row-band .h1:last-child, .row-band h2:last-child, .row-band .h2:last-child {
  margin-bottom: 0;
}
.row-band .max-470 {
  max-width: 470px;
}
@media (max-width: 1199px) {
  .row-band {
    padding-bottom: 90px;
  }
  .row-band h1, .row-band .h1, .row-band h2, .row-band .h2 {
    font-size: 34px;
    line-height: 42px;
  }
  .row-band .max-470 {
    max-width: 420px;
  }
}
@media (max-width: 767px) {
  .row-band {
    padding-bottom: 60px;
  }
  .row-band h1, .row-band .h1, .row-band h2, .row-band .h2 {
    font-size: 26px;
    line-height: 34px;
    padding-bottom: 20px;
    margin-bottom: 28px;
  }
  .row-band .row {
    margin-bottom: -20px;
  }
  .row-band .row > div {
    padding-bottom: 20px;
  }
}
/* Section - Scroll */
.section-scroll {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding-top: 123px;
  margin-top: -123px;
}
@media (max-width: 767px) {
  .section-scroll {
    padding-top: 75px;
    margin-top: -75px;
  }
}
/* Scroll - Buttons */
.scroll-btns {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 2;
  margin: 0 -15px -30px -15px;
}
.scroll-btns a {
  float: none;
  display: inline-block;
  vertical-align: top;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 900px;
  overflow: hidden;
  cursor: pointer;
  padding: 10px;
  margin: 0 15px 30px 15px;
}
.scroll-btns a .inn {
  width: 240px;
  height: 36px;
  float: left;
  background: rgba(255, 255, 255, 0.7) url(../img/arrow-down-orange.png) no-repeat center center;
  background-size: 38px auto;
  border-radius: 900px;
  text-indent: -99999px;
}
.scroll-btns a:hover .inn, .scroll-btns a:focus .inn, .scroll-btns a:active .inn {
  background-color: rgba(255, 255, 255, 1);
}
@media (max-width: 767px) {
  .scroll-btns {
    margin: 0 -10px -20px -10px;
  }
  .scroll-btns a {
    padding: 6px;
  }
  .scroll-btns a .inn {
    width: 150px;
    height: 30px;
    background-size: 32px auto;
  }
}
/* Hero - Main */
.hero-main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #ffffff;
  text-shadow: 0px 3px 6px #00000029;
  text-align: center;
  background: #203469 url(../img/hero-banner-home.jpg) no-repeat center center fixed;
  background-size: cover;
  position: relative;
  padding: 203px 0 220px 0;
  margin: -123px 0 0 0;
}
.hero-main:before {
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background: rgba(7, 9, 54, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.hero-main .container {
  position: static;
}
.hero-main .aside {
  width: 100%;
  max-width: 1100px;
  float: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 2;
}
.hero-main .aside h1, .hero-main .aside .h1 {
  font-size: 50px;
  line-height: 58px;
}
.hero-main .aside h1:last-child, .hero-main .aside .h1:last-child {
  padding-bottom: 0;
}
.hero-main .scroll-btns {
  width: 100%;
  position: absolute;
  bottom: 140px;
  left: 0;
  margin: 0;
  animation-delay: 0.7s;
}
.hero-main .scroll-btns a {
  -moz-animation: move 2s infinite;
  -webkit-animation: move 2s infinite;
  animation: move 2s infinite;
  margin: 0;
}
@media (max-width: 1599px) {
  .hero-main {
    padding: 203px 0 160px 0;
  }
  .hero-main .scroll-btns {
    bottom: 70px;
  }
}
@media (max-width: 1199px) {
  .hero-main .aside {
    max-width: 850px;
  }
  .hero-main .aside h1, .hero-main .aside .h1 {
    font-size: 40px;
    line-height: 48px;
  }
}
@media (max-width: 767px) {
  .hero-main {
    padding: 135px 0 160px 0;
    margin-top: -75px;
    min-height: 90vh;
  }
  .hero-main:before {
    content: "";
    width: 100%;
    height: 100%;
    float: left;
    background: rgba(7, 9, 54, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  .hero-main .aside {
    max-width: 850px;
  }
  .hero-main .aside h1, .hero-main .aside .h1 {
    font-size: 28px;
    line-height: 36px;
    margin: 0 -5px;
  }
  .hero-main .scroll-btns {
    bottom: 50px;
  }
}
/* Welcome - Content */
.welcome-cont {
  width: 100%;
  min-height: 80vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  padding: 130px 0;
}
.welcome-cont .aside {
  width: 100%;
  max-width: 1055px;
  float: none;
  display: inline-block;
  vertical-align: top;
}
.welcome-cont .aside h2, .welcome-cont .aside .h2 {
  padding-bottom: 50px;
}
.welcome-cont .aside h2:last-child, .welcome-cont .aside .h2:last-child {
  padding-bottom: 0;
}
.welcome-cont .aside .read-more2 {
  margin-top: 25px;
}
.welcome-cont .aside .read-more2 + .read-more2 {margin-top: 40px;}
@media (max-width: 1199px) {
  .welcome-cont {
    padding: 100px 0;
  }
  .welcome-cont .aside {
    max-width: 800px;
  }
  .welcome-cont .aside h2, .welcome-cont .aside .h2 {
    padding-bottom: 35px;
  }
}
@media (max-width: 991px) {
  .welcome-cont .aside h2, .welcome-cont .aside .h2 {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .welcome-cont {
    padding: 60px 10px;
  }
  .welcome-cont .aside h2, .welcome-cont .aside .h2 {
    padding-bottom: 25px;
  }
  .welcome-cont .aside .read-more2 {
    margin-top: 20px;
  }
}
/*
 5.) Footer - Main
----------------------------------------*/
.footer-main {
  width: 100%;
  float: left;
  flex-shrink: 0;
  font-size: 16px;
  color: #ffffff;
  line-height: 24px;
  background: #070936;
  overflow: hidden;
}
.footer-main .footer-inn {
  width: 100%;
  float: left;
  position: relative;
  z-index: 1;
  padding: 65px 0;
}
.footer-main .footer-inn:after {
  content: "";
  width: 1000px;
  height: 590px;
  float: left;
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/background-lines-vertical.png) no-repeat center center;
  background-size: 100% auto;
  position: absolute;
  top: 50%;
  right: -600px;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: -1;
  margin-top: -10px;
}
.footer-main .foot-links {
  width: 100%;
  float: left;
}
.footer-main .foot-links ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -20px -6px -20px;
}
.footer-main .foot-links ul li {
  width: 100%;
  float: left;
  padding: 0 20px;
  margin: 0 0 6px 0;
}
.footer-main .foot-links ul li:before {
  display: none;
}
.footer-main .foot-links ul li a {
  font-weight: 400;
  font-size: 18px;
  color: #ffffff;
  line-height: 24px;
  text-decoration: none;
}
.footer-main .foot-links ul li > a:hover, .footer-main .foot-links ul li > a:focus, .footer-main .foot-links ul li > a:active, .footer-main .foot-links ul li.current-menu-item > a, .footer-main .foot-links ul li.current-menu-parent > a, .footer-main .foot-links ul li.current-menu-ancestor > a {
  color: #eb6c0c;
  text-decoration: none;
}
.footer-main .social-links {
  width: 100%;
  float: left;
  text-align: right;
}
.footer-main .social-links ul {
  float: none;
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0 -20px -20px -20px;
}
.footer-main .social-links ul li {
  float: none;
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0 20px 20px 20px;
}
.footer-main .social-links ul li:before {
  display: none;
}
.footer-main .social-links ul li a {
  font-weight: inherit;
  font-size: 38px;
  color: #ffffff;
  line-height: 38px;
  text-decoration: none;
}
.footer-main .social-links ul li a:hover, .footer-main .social-links ul li a:focus, .footer-main .social-links ul li a:active {
  color: #eb6c0c;
  text-decoration: none;
}
.footer-main .brand {
  width: 100%;
  float: left;
}
.footer-main .brand img {
  width: 100%;
  max-width: 229px;
  display: inline-block;
  vertical-align: top;
}
.footer-main .logo {
  width: 100%;
  float: left;
}
.footer-main .logo img {
  width: 100%;
  max-width: 204px;
  display: inline-block;
  vertical-align: top;
}
.footer-main .pre-footer {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  margin: 0 -25px -50px -25px;
}
.footer-main .pre-footer .aside-cont {
  width: 100%;
  float: left;
  padding: 0 25px 50px 25px;
}
@media (min-width: 768px) {
  .footer-main .container {
    max-width: 2000px;
  }
}
@media (min-width: 992px) {
  .footer-main .pre-footer .aside-cont {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .footer-main .pre-footer .aside-cont:nth-child(1) {
    width: 23.5%;
  }
  .footer-main .pre-footer .aside-cont:nth-child(2) {
    width: 21.5%;
  }
  .footer-main .pre-footer .aside-cont:nth-child(3) {
    width: 35%;
  }
  .footer-main .pre-footer .aside-cont:nth-child(4) {
    width: 20%;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(1) {
    width: 55%;
    order: 1;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(2) {
    width: 55%;
    order: 3;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(3) {
    width: 55%;
    order: 5;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(4) {
    width: 45%;
    order: 2;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(5) {
    width: 45%;
    order: 4;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(6) {
    width: 45%;
    order: 6;
  }
}
@media (min-width: 1600px) {
  .footer-main .footer-inn:after {
    width: 1302px;
    height: 734px;
    right: -680px;
  }
  .footer-main .social-links {
    text-align: center;
  }
  .footer-main .pre-footer .aside-cont:nth-child(1) {
    width: 18.5%;
  }
  .footer-main .pre-footer .aside-cont:nth-child(2) {
    width: 16.5%;
  }
  .footer-main .pre-footer .aside-cont:nth-child(3) {
    width: 40%;
  }
  .footer-main .pre-footer .aside-cont:nth-child(4) {
    width: 25%;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(1) {
    width: 32.5%;
    order: 1;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(2) {
    width: 32.5%;
    order: 4;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(3) {
    width: 22.5%;
    order: 2;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(4) {
    width: 22.5%;
    order: 5;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(5) {
    width: 45%;
    order: 3;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(6) {
    width: 45%;
    order: 6;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer-main .footer-inn:after {
    width: 500px;
    height: 300px;
    right: -200px;
    margin-top: 60px;
  }
  .footer-main .logo {
    text-align: right;
  }
  .footer-main .pre-footer .aside-cont {
    width: 60%;
  }
  .footer-main .pre-footer .aside-cont:nth-child(even) {
    width: 40%;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(1) {
    width: 50%;
    order: 1;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(2) {
    width: 50%;
    order: 3;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(3) {
    width: 50%;
    order: 2;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(4) {
    width: 50%;
    order: 4;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(5) {
    width: 50%;
    order: 5;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(6) {
    width: 50%;
    order: 6;
  }
}
@media (max-width: 767px) {
  .footer-main .footer-inn {
    padding: 50px 0;
  }
  .footer-main .footer-inn:after {
    width: 100%;
    height: 250px;
    top: auto;
    right: auto;
    bottom: -55px;
    left: 50%;
    -ms-transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    margin: 0;
    opacity: 0.5;
  }
  .footer-main .foot-links {
    width: 100%;
    float: left;
  }
  .footer-main .foot-links ul {
    margin: 0 -20px -6px -20px;
  }
  .footer-main .foot-links ul li {
    padding: 0 20px;
    margin: 0 0 6px 0;
  }
  .footer-main .foot-links ul li a {
    font-size: 16px;
    line-height: 22px;
  }
  .footer-main .social-links {
    text-align: center;
  }
  .footer-main .social-links ul {
    margin: 0 -15px -20px -15px;
  }
  .footer-main .social-links ul li {
    margin: 0 15px 20px 15px;
  }
  .footer-main .social-links ul li a {
    font-size: 30px;
    line-height: 30px;
  }
  .footer-main .brand img {
    max-width: 140px;
  }
  .footer-main .logo {
    text-align: right;
  }
  .footer-main .logo img {
    max-width: 140px;
  }
  .footer-main .pre-footer {
    margin: 0 -20px -40px -20px;
  }
  .footer-main .pre-footer .aside-cont {
    width: 55%;
    padding: 0 20px 40px 20px;
  }
  .footer-main .pre-footer .aside-cont:nth-child(even) {
    width: 45%;
  }
  .footer-main .pre-footer .aside-cont:nth-child(3), .footer-main .pre-footer .aside-cont:nth-child(4) {
    width: 100%;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(1) {
    width: 55%;
    order: 1;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(2) {
    width: 55%;
    order: 3;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(3) {
    width: 45%;
    order: 2;
    text-align: right;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(4) {
    width: 45%;
    order: 4;
    text-align: right;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(5) {
    width: 55%;
    order: 5;
  }
  .footer-main .pre-footer .aside-cont .foot-links ul li:nth-child(6) {
    width: 45%;
    order: 6;
    text-align: right;
  }
}
/*
 6.) Inner - Pages
----------------------------------------*/
/* Hero - Inner */
.hero-inner {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.hero-inner .container {
  position: static;
}
.hero-inner .hero-cont {
  width: 100%;
  position: relative;
  overflow: hidden;
  z-index: 2;
  padding: 115px 0 0 0;
}
.hero-inner .hero-cont .aside {
  width: 100%;
  max-width: 690px;
  padding-bottom: 50px;
}
.hero-inner .hero-cont .aside:last-child {
  padding-bottom: 0;
}
.hero-inner .hero-cont .aside h1, .hero-inner .hero-cont .aside .h1 {
  padding-bottom: 65px;
}
.hero-inner.h-divider .hero-cont .aside h1 {
  padding-bottom: 28px;
}
.hero-inner .hero-cont .aside h1:last-child, .hero-inner .hero-cont .aside .h1:last-child {
  padding-bottom: 0;
}
.hero-inner .hero-cont .aside p {
  width: 100%;
  max-width: 630px;
}
.hero-inner .hero-cont .h-divider h1, .hero-inner .hero-cont .h-divider .h1 {
  padding-bottom: 43px;
  margin-bottom: 50px;
}
.hero-inner .hero-cont .h-divider h1:last-child, .hero-inner .hero-cont .h-divider .h1:last-child {
  margin-bottom: 0;
}
.hero-inner .hero-cont .aside-max {
  width: 100%;
  max-width: 940px;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 1;
  padding: 50px 0;
}
.hero-inner .hero-cont .aside-max:before {
  content: "";
  width: 10000px;
  height: 100%;
  float: left;
  background: rgba(255, 255, 255, 0.2);
  border-top: 1px solid #eb6c1f;
  border-bottom: 1px solid #eb6c1f;
  position: absolute;
  top: 0;
  left: -5000px;
  z-index: -1;
}
.hero-inner .figure {
  width: 100%;
  text-align: center;
  background: #070936;
  overflow: hidden;
  margin: 0;
}
.hero-inner .figure img {
  width: 100%;
  min-width: 1000px;
  margin: 0 -500px;
}
.hero-inner .figure-group {
  width: 100%;
  text-align: center;
  overflow: hidden;
}
.hero-inner .figure-group img {
  width: 100%;
}
@media (min-width: 768px) {
  .hero-inner .figure-group {
    width: 100%;
    height: 100%;
    float: left;
    background: none;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
  }
  .hero-inner .figure-group img {
    width: auto;
    max-width: none;
    min-width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
  }
  .hero-inner .figure-group .img-mobile {
    display: none;
  }
}
@media (max-width: 1199px) {
  .hero-inner .hero-cont {
    padding: 80px 0 0 0;
  }
  .hero-inner .hero-cont .aside {
    max-width: 590px;
  }
  .hero-inner .hero-cont .aside h1, .hero-inner .hero-cont .aside .h1 {
    padding-bottom: 50px;
  }
  .hero-inner .hero-cont .aside p {
    max-width: 500px;
  }
  .hero-inner .hero-cont .h-divider h1, .hero-inner .hero-cont .h-divider .h1 {
    padding-bottom: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .hero-inner .hero-cont {
    padding: 60px 0 0 0;
  }
  .hero-inner .hero-cont .aside {
    padding-bottom: 40px;
  }
  .hero-inner .hero-cont .aside h1, .hero-inner .hero-cont .aside .h1 {
    padding-bottom: 30px;
  }
  .hero-inner .hero-cont .h-divider h1, .hero-inner .hero-cont .h-divider .h1 {
    padding-bottom: 25px;
    margin-bottom: 35px;
  }
  .hero-inner .hero-cont .aside-max {
    padding: 40px 0;
  }
  .hero-inner .figure-group .img-desktop {
    display: none;
  }
}
/* Tab - Links */
.tab-links {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 95px;
}
.tab-links:last-child {
  margin-bottom: 0;
}
.tab-links h2, .tab-links .h2 {
  padding-bottom: 25px;
}
.tab-links h2:last-child, .tab-links .h2:last-child {
  margin-bottom: 0;
}
.tab-links .links-wrap {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  border-top: 2px solid #070936;
  position: relative;
  z-index: 3;
}
@media (min-width: 992px) {
  .tab-links .dropdown-toggle {
    display: none;
  }
  .tab-links .dropdown-menu {
    min-width: 100%;
    width: 100%;
    float: left;
    text-align: center;
    background: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    position: static !important;
    top: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    display: block !important;
    transform: translate3d(0, 0, 0) !important;
    padding: 0;
    margin: 0;
  }
  .tab-links .dropdown-menu ul {
    float: left;
    padding: 0;
    margin: 0 -40px 0 0;
  }
  .tab-links .dropdown-menu ul li {
    float: left;
    overflow: hidden;
    padding: 0;
    margin: -3px 40px 0 0;
  }
  .tab-links .dropdown-menu ul li:before {
    display: none;
  }
  .tab-links .dropdown-menu ul li a {
    height: 84px;
    float: left;
    font-weight: 500;
    font-size: 22px;
    color: #070936;
    line-height: 84px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    padding: 0;
  }
  .tab-links .dropdown-menu ul li a:before {
    content: "";
    width: 100%;
    height: 4px;
    float: left;
    background: #eb6c0c;
    -webkit-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    position: absolute;
    top: 0;
    left: -100%;
  }
  .tab-links .dropdown-menu ul li a:hover, .tab-links .dropdown-menu ul li a:focus, .tab-links .dropdown-menu ul li a:active, .tab-links .dropdown-menu ul li a.active {
    color: #eb6c0c;
  }
  .tab-links .dropdown-menu ul li a.active:before {
    left: 0;
  }
}
@media (min-width: 1200px) {
  .tab-links .dropdown-menu ul li a {
    font-size: 25px;
  }
}
@media (max-width: 991px) {
  .tab-links .dropdown-toggle {
    width: 100%;
    height: 60px;
    font-weight: 500;
    font-size: 22px;
    color: #070936;
    line-height: 60px;
    text-transform: uppercase;
    text-align: left;
    background: none;
    border-radius: 0;
    box-shadow: none;
    border: none;
    border-bottom: 2px solid #070936;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    position: relative;
    padding: 0 50px 0 0;
    margin: 0;
    z-index: 1;
  }
  .tab-links .dropdown-toggle:before {
    width: 45px;
    height: 36px;
    float: left;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 120%;
    line-height: 36px;
    text-align: right;
    position: absolute;
    top: 50%;
    right: 0;
    -ms-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  .tab-links .dropdown-toggle.show:before {
    content: "\f077";
  }
  .tab-links .dropdown-toggle:after {
    display: none;
  }
  .tab-links .dropdown-menu {
    min-width: 100%;
    width: 100%;
    float: left;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 30px 20px -30px;
    border: 1px solid #e2e2e2;
    border-left: none;
    border-right: none;
    border-radius: 0;
    padding: 25px 0;
    margin: -2px 0 2px 0 !important;
  }
  .tab-links .dropdown-menu ul {
    width: 100%;
    float: left;
    padding: 0;
    margin: 0;
  }
  .tab-links .dropdown-menu ul li {
    width: 100%;
    float: left;
    position: relative;
    padding: 0;
    margin: 0;
  }
  .tab-links .dropdown-menu ul li:before {
    display: none;
  }
  .tab-links .dropdown-menu ul li a {
    width: 100%;
    float: left;
    font-weight: 500;
    font-size: 22px;
    color: #333333;
    line-height: 28px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 0;
  }
  .tab-links .dropdown-menu ul li a:hover, .tab-links .dropdown-menu ul li a:focus, .tab-links .dropdown-menu ul li a:active, .tab-links .dropdown-menu ul li a.active {
    color: #c43f00;
  }
}
@media (max-width: 767px) {
  .tab-links {
    margin-bottom: 60px;
  }
  .tab-links .dropdown-toggle {
    font-size: 20px;
  }
  .tab-links .dropdown-menu ul li a {
    font-size: 20px;
    line-height: 26px;
  }
}
/* Team - Content */
.team-cont {
  width: 100%;
  min-height: 400px;
  overflow: hidden;
  padding: 160px 0;
}
.team-cont .row {
  padding: 0;
  margin: 0 -22px -50px -22px;
}
.team-cont .row > div {
  padding: 0 22px 50px 22px;
  margin: 0;
}
.team-cont .row > div .box {
  width: 100%;
  float: left;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}
.team-cont .row > div .box .name {
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
}
.team-cont .row > div .box .name strong {
  font-weight: 400;
  display: inline-block;
}
#tab-founders .box .name strong {
  clear: both;
  display: block;
}
.team-cont .row > div .box .position {
  font-size: 22px;
  line-height: 28px;
}
.team-cont .row > div .box .figure {
  width: 100%;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 0 25px 0;
}
.team-cont .row > div .box .figure:last-child {
  margin-bottom: 0;
}
.team-cont .row > div .box .figure img {
  width: 100%;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  max-height: 279px;
  object-fit: cover;
  object-position: right 0 top 20%;
  -webkit-filter: grayscale(100%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: grayscale(100%); /* FF 35+ */
}
.team-cont .row > div a.box:hover, /*.team-cont .row > div a.box:focus,*/ .team-cont .row > div a.box:active {
  color: #eb6c0c;
}
.team-cont .row > div .box:hover .figure img, .team-cont .row > div .box:focus .figure img, .team-cont .row > div .box:active .figure img {
  /*-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);*/
  -webkit-filter: none; /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: none; /* FF 35+ */
}
.team-cont .row > div .box:focus .figure img {
  -webkit-filter: grayscale(100%); /* Ch 23+, Saf 6.0+, BB 10.0+ */
  filter: grayscale(100%); /* FF 35+ */
}
@media (max-width: 1199px) {
  .team-cont {
    padding: 110px 0;
  }
  .team-cont .row {
    margin: 0 -20px -50px -20px;
  }
  .team-cont .row > div {
    padding: 0 20px 50px 20px;
  }
  .team-cont .row > div .box .name {
    font-size: 24px;
    line-height: 30px;
  }
  .team-cont .row > div .box .position {
    font-size: 22px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .team-cont {
    padding: 70px 0;
  }
  .team-cont .row {
    margin: 0 -15px -50px -15px;
  }
  .team-cont .row > div {
    padding: 0 15px 50px 15px;
  }
  .team-cont .row > div .box .name {
    font-size: 22px;
    line-height: 28px;
  }
  .team-cont .row > div .box .position {
    font-size: 20px;
    line-height: 26px;
  }
}
/* Investors - Content */
.investors-cont {
  width: 100%;
  overflow: hidden;
}
.investors-cont .logo-container {
  background: #f8f7f7;
}
.investors-cont .inner-cont {
  width: 100%;
  float: left;
  text-align: center;
  /*position: relative;*/
  z-index: 1;
  padding: 95px 45px 0 45px;
}
.investors-cont .inner-cont:before {
  content: "";
  width: 10000px;
  height: 100%;
  float: left;
  border-top: 1px solid #eb6c0c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.investors-cont .split-txt {
  width: 100%;
  max-width: 1190px;
  float: none;
  display: inline-block;
  vertical-align: top;
  text-align: left;
  padding: 0 40px 55px 40px;
}
.investors-cont .split-txt:last-child {
  padding-bottom: 0;
}
.investors-cont .split-txt h2 {
  width: 330px;
  float: left;
  padding: 0 40px 0 0;
  margin: 0 -330px 0 0;
}
.investors-cont .split-txt p {
  width: 100%;
  float: left;
  padding: 0 0 0 330px;
  margin: 0;
}
.investors-cont .items-wrap {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
  z-index: 1;
}
.investors-cont .items-wrap:before {
  content: "";
  width: 10000px;
  height: 100%;
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.investors-cont .items-out {
  width: 100%;
  max-width: 1190px;
  float: none;
  vertical-align: top;
  text-align: left;
  padding: 60px 40px 140px 40px;
  margin: 0 auto;
}
.investors-cont .items-inn {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 -35px -55px -35px;
}
.investors-cont .items-inn .item {
  float: left;
  margin: 0;
  min-width: 20%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.investors-cont .items-inn .item img {
  max-width: 200px;
  max-height: 100px;
  width: auto;
  height: auto;
  vertical-align: middle;
}
@media (min-width: 768px) {
  .investors-cont .container {
    max-width: 100%;
  }
}
@media (max-width: 1199px) {
  .investors-cont .inner-cont {
    padding: 80px 0 0 0px;
  }
  .investors-cont .inner-cont:before {
    border-radius: 70px 0 0 0;
  }
  .investors-cont .split-txt {
    padding: 0 0 55px 0px;
  }
  .investors-cont .split-txt h2 {
    width: 270px;
    margin: 0 -270px 0 0;
  }
  .investors-cont .split-txt p {
    padding: 0 0 0 270px;
  }
  .investors-cont .items-out {
    padding: 60px 0 110px 40px;
  }
  .investors-cont .items-inn {
    max-width: 910px;
    margin: 0 -30px -55px -30px;
  }
  .investors-cont .items-inn .item {
    padding: 0 30px 55px 30px;
  }
}
@media (max-width: 991px) {
  .investors-cont .items-inn .item.sv img {
    max-width: 300px;
  }
  .investors-cont .items-inn .item.fi img {
    max-width: 150px;
  }
  .investors-cont .items-inn .item.nv img {
    max-width: 150px;
  }
  .investors-cont .items-inn .item.jj img {
    max-width: 180px;
  }
  .investors-cont .items-inn .item.gv img {
    max-width: 100px;
  }
}
@media (max-width: 767px) {
  .investors-cont .inner-cont {
    padding: 50px 0 0 0px;
  }
  .investors-cont .inner-cont:before {
    border-width: 2px;
    border-radius: 40px 0 0 0;
  }
  .investors-cont .split-txt {
    padding: 0 0 45px 0px;
  }
  .investors-cont .split-txt h2 {
    width: 100%;
    margin: 0 0 20px 0;
    margin: 0;
  }
  .investors-cont .split-txt p {
    padding: 0;
  }
  .investors-cont .items-wrap:before {
    border-radius: 20px 0 0 0;
  }
  .investors-cont .items-out {
    padding: 50px 0 70px 25px;
  }
  .investors-cont .items-inn {
    max-width: inherit;
    margin: 0 -20px -40px -20px;
  }
  .investors-cont .items-inn .item {
    padding: 0 20px 40px 20px;
  }
  .investors-cont .items-inn .item.sv img {
    max-width: 190px;
  }
  .investors-cont .items-inn .item.fi img {
    max-width: 110px;
  }
  .investors-cont .items-inn .item.nv img {
    max-width: 110px;
  }
  .investors-cont .items-inn .item.jj img {
    max-width: 150px;
  }
  .investors-cont .items-inn .item.gv img {
    max-width: 80px;
  }
}
/* Row - Content */
.row-cont {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 20px;
}
.row-cont .row-band {
  padding-bottom: 65px;
}
.row-cont .row-band h2 {
  max-width: 462px;
}
.row-cont .row-band:last-child {
  padding-bottom: 0;
}
.row-cont .row > div .figure {
  width: 100%;
  text-align: center;
  margin: 0 0 30px 0;
}
.row-cont .row > div .figure:last-child {
  margin-bottom: 0;
}
.row-cont .row > div .figure img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
@media (max-width: 1399px) {}
@media (max-width: 1199px) {
  .row-cont {
    padding-bottom: 0;
  }
  .row-cont .row-band {
    max-width: 540px;
    padding-bottom: 55px;
  }
}
@media (max-width: 767px) {
  .row-cont {
    padding-bottom: 60px;
  }
  .row-cont .row-band {
    max-width: 540px;
    padding-bottom: 40px;
  }
  .row-cont .row > div .figure {
    margin: 0 0 20px 0;
  }
}
/* CTA - Info */
.cta-info {
  width: 100%;
  font-weight: 500;
  color: #ffffff;
  background: #070936;
  overflow: hidden;
  padding: 75px 0;
}
.cta-info .aside {
  width: 100%;
  max-width: 1230px;
  float: none;
  display: inline-block;
  vertical-align: top;
}
.cta-info .aside h2, .cta-info .aside .h2 {
  float: left;
  clear: left;
  display: block;
  border-bottom: 1px solid #eb6c0c;
  padding-bottom: 16px;
  margin-bottom: 25px;
}
.cta-info .aside h2:last-child, .cta-info .aside .h2:last-child {
  margin-bottom: 0;
}
.cta-info .aside p {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 767px) {
  .cta-info {
    padding: 60px 0;
  }
}
/* Graph - Slider */
.graph-slider {
  width: 100%;
  /*text-align: center;*/
  overflow: hidden;
}
.graph-slider .container {
  max-width: 1560px;
  /*padding: 0;*/
}
.graph-slider .row:before {
  content: "";
  width: 10000px;
  height: 100%;
  float: left;
  border-top: 1px solid #eb6c0c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.graph-slider .row:after {
  content: "";
  width: 10000px;
  height: 100%;
  float: left;
  border-bottom: 1px solid #eb6c0c;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.graph-slider .slide {
  width: 100%;
  max-width: 645px;
  float: none;
  display: inline-block;
  vertical-align: top;
  position: relative;
}
/*#animate-slider-heading .owl-item {width:100% !important;}*/
.graph-slider .item .lines {
  width: 100%;
  float: left;
  text-align: center;
  position: relative;
}
.graph-slider .item .lines img {
  width: 100%;
}
.graph-slider .item .lines:before {
  content: "";
  width: 100%;
  height: 100%;
  float: left;
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/b-cell-lines.png) no-repeat center center;
  background-size: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.graph-slider .item .icon {
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 21%;
  z-index: 1;
}
.graph-slider .item .icon img {
  width: 100%;
}
.graph-slider .item .icon-sub {
  width: 13%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.graph-slider .item .icon-sub img {
  width: 100%;
}
.graph-slider .item .icon-sub.sub1 {
  top: 50%;
  left: 60%;
}
.graph-slider .item .icon-sub.sub2 {
  top: 55.5%;
  left: 68%;
}
.graph-slider .item .icon-sub.sub3 {
  top: 60%;
  left: 60%;
}
.graph-slider .item .icon-sub.sub4 {
  top: 65.5%;
  left: 68%;
}
.graph-slider .item .icon-sub.sub5 {
  width: 25%;
  top: 58%;
  left: 45%;
}
.graph-slider .item .icon-sub.sub6 {
  width: 25%;
  top: 67%;
  left: 40%;
}
.graph-slider .item .icon-sub.sub7 {
  width: 25%;
  top: 65%;
  left: 53%;
}
.graph-slider .item .icon-dots {
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  z-index: 2;
}
.graph-slider .item .icon-dots img {
  width: 100%;
}
.graph-slider .item.item2 .icon {
  transform: scale(2.2);
}
.graph-slider .item.item4 .icon {
  padding: 15%;
}
.graph-slider .item.item5 .icon img {
  transform: scale(1.9);
}
.graph-slider #animate-slider .owl-item {
  padding: 100px 40px 130px 40px;
}
.graph-slider .owl-controls {
  position: absolute;
  bottom: 90px;
  left: 0;
  z-index: 2;
}
@media (max-width: 1199px) {
  .graph-slider #animate-slider .owl-item {
    padding: 70px 40px 100px 40px;
  }
  .graph-slider .owl-controls {
    bottom: 70px;
  }
}
@media (max-width: 991px) {
  .graph-slider .owl-controls {
    bottom: 60px;
  }
}
@media (max-width: 767px) {
  .graph-slider #animate-slider .owl-item {
    padding: 50px 25px 90px 25px;
  }
  .graph-slider .owl-controls {
    bottom: 50px;
  }
}
/* On Visible */
.graph-slider #animate-slider.on-visible {
  display: none;
}
/* Slider - Animation */
@keyframes zoom-out {
  0% {
    transform: scale(1.2, 1.2);
    opacity: 0.5;
  }
  50% {
    transform: scale(1, 1);
    opacity: 0.3;
  }
  100% {
    transform: scale(0, 0);
    opacity: 0;
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(0, 0);
  }
  50% {
    transform: scale(0.5, 0.5);
  }
  100% {
    transform: scale(1, 1);
    opacity: 1;
  }
}
.graph-slider .active .item .lines img {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoom-in;
}
.graph-slider .active .item .lines:before {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoom-out;
  animation-delay: 0.3s;
}
.graph-slider .active .icon img {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
}
.graph-slider .active .item2 .icon img {
  animation-name: rotateIn;
}
.graph-slider .active .icon-sub.sub1 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 0.7s;
}
.graph-slider .active .icon-sub.sub2 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 1.1s;
}
.graph-slider .active .icon-sub.sub3 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 1.5s;
}
.graph-slider .active .icon-sub.sub4 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 1.9s;
}
.graph-slider .active .icon-sub.sub5 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 2.3s;
}
.graph-slider .active .icon-sub.sub6 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 2.7s;
}
.graph-slider .active .icon-sub.sub7 {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: zoomIn;
  animation-delay: 3.1s;
}
.graph-slider .active .icon-dots {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeOut;
  animation-delay: 1.2s;
}
/* Feature - Content */
.feature-cont {
  width: 100%;
  text-align: center;
  /*background: #070936;
	color: #ffffff; */
  color: #070936;
  background: #ffffff;
  overflow: hidden;
  padding: 50px 0;
}
.feature-cont .heading-txt {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 60px;
}
.feature-cont .heading-txt:last-child {
  padding-bottom: 0;
}
.feature-cont .row {
  justify-content: center;
  padding: 0;
  margin: 0 -20px -60px -20px;
}
.feature-cont .row > div {
  width: 25%;
  padding: 0 20px 20px 20px;
  margin: 0;
}
.feature-cont .row > div .icon {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 45px;
}
.feature-cont .row > div .icon img {
  max-width: 130px;
}
.feature-cont .row > div .icon-title {
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #070936;
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
}
.feature-cont .row > div .icon:last-child {
  margin-bottom: 0;
}
/*@media (min-width: 768px) {
  .feature-cont .container {
    max-width: 1600px;
  }
}*/
@media (max-width: 1199px) {
  .feature-cont .row > div .icon {
    margin-bottom: 30px;
  }
  .feature-cont .row > div .icon img {
    max-height: 83px;
    width: auto;
  }
  .feature-cont .row > div .icon-title {
    font-size: 30px;
  }
}
@media (max-width: 991px) {
  .feature-cont {
    padding: 70px 0;
  }
  .feature-cont .heading-txt {
    padding-bottom: 40px;
  }
  .feature-cont .row > div .icon img {
    max-height: 75px;
  }
  .feature-cont .row > div .icon-title {
    font-size: 25px;
  }
}
@media (max-width: 767px) {
  .feature-cont {
    padding: 60px 0;
  }
  .feature-cont .heading-txt {
    padding-bottom: 40px;
  }
  .feature-cont .row {
    margin: 0 -20px -50px -20px;
  }
  .feature-cont .row > div {
    width: 100%;
    padding: 0 20px 50px 20px;
  }
  .feature-cont .row > div .icon {
    margin-bottom: 20px;
  }
}
/* Articles - List */
.split-title-wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: flex-end;
  padding-bottom: 30px;
}
.split-title-wrap:last-child {
  padding-bottom: 0;
}
.split-title-wrap h1 {
  width: 40%;
  float: left;
  padding: 0;
}
.split-title-wrap .right-links {
  width: 60%;
  float: left;
  text-align: right;
  padding: 0;
}
.split-title-wrap .right-links ul {
  float: right;
  padding: 0;
  margin: 0 -15px 0 -16px;
}
.split-title-wrap .right-links ul li {
  float: left;
  padding: 0 15px 0 16px;
  margin: 0;
}
.split-title-wrap .right-links ul li:before {
  content: "";
  width: 1px;
  height: 20px;
  background: #eb6c0c;
  top: 50%;
  left: 0;
  -ms-transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.split-title-wrap .right-links ul li:first-child:before {
  display: none;
}
.split-title-wrap .right-links ul li a {
  font-weight: 400;
  font-size: 20px;
  color: #070936;
  line-height: 28px;
  text-decoration: none;
}
.split-title-wrap .right-links ul li > a:hover, .split-title-wrap .right-links ul li > a:focus, .split-title-wrap .right-links ul li > a:active, .split-title-wrap .right-links ul li.current-menu-item > a, .split-title-wrap .right-links ul li.current-menu-parent > a, .split-title-wrap .right-links ul li.current-menu-ancestor > a {
  color: #eb6c0c;
  text-decoration: none;
}
.split-title-wrap .right-links ul li.current-menu-item > a, .split-title-wrap .right-links ul li.current-menu-parent > a, .split-title-wrap .right-links ul li.current-menu-ancestor > a {
  font-weight: 700;
}
@media (max-width: 767px) {
  .split-title-wrap h1 {
    width: 100%;
    text-align: center;
    padding: 0 0 25px 0;
  }
  .split-title-wrap .right-links {
    width: 100%;
    text-align: center;
  }
  .split-title-wrap .right-links ul {
    float: none;
    display: inline-block;
    vertical-align: top;
  }
  .split-title-wrap .right-links ul li a {
    font-size: 18px;
    line-height: 26px;
  }
}
/* Articles - List */
.open-positions-band {
  position: relative;
}
.open-positions-band:before {
  height: 1px;
  background-color: #eb6c1f;
  top: 120px;
  content: "";
  width: 100%;
  left: 0;
  position: absolute;
}
.articles-list {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 50px;
}
.content-inner3 > .container .articles-list {
  padding-top: 120px;
}
.row-band + .articles-list {
  padding-top: 0 !important;
}
.articles-list:last-child {
  padding-bottom: 0;
}
.articles-list h1, .articles-list .h1 {
  padding-bottom: 60px;
}
.articles-list h1:last-child, .articles-list .h1:last-child {
  padding-bottom: 0;
}
.articles-list .BambooHR-ATS-Jobs-List li, .articles-list .article {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  border-top: 1px solid #070936;
  padding-bottom: 40px;
}
.articles-list .article:last-child {
  padding-bottom: 0;
}
.articles-list .BambooHR-ATS-Jobs-List li, .articles-list .article .box {
  width: 100%;
  float: left;
  font-weight: inherit;
  font-size: 20px;
  color: inherit;
  line-height: 28px;
  text-decoration: none;
  position: relative;
  padding: 33px 300px 33px 0;
}
.articles-list .BambooHR-ATS-Jobs-List li {
  padding-right: 0;
}
.articles-list .article .box .post-title {
  width: 100%;
  max-width: 950px;
  font-weight: 700;
  padding-bottom: 25px;
}
.articles-list .article .box .post-title:last-child {
  padding-bottom: 0;
}
.articles-list .article .box .btn-out {
  width: auto;
  position: absolute;
  top: 45px;
  right: 0;
  margin: 0;
}
.articles-list .article .box:hover .post-title, .articles-list .article .box:focus .post-title, .articles-list .article .box:active .post-title {
  color: #eb6c0c;
}
.articles-list .article .box:hover .btn::after, .articles-list .article .box:focus .btn::after, .articles-list .article .box:active .btn::after {
  margin: 0.5px -15px 0 35px;
}
.articles-list .BambooHR-ATS-Department-Item, .articles-list .article-row {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding-bottom: 85px;
}
.articles-list .BambooHR-ATS-Department-Item:last-child, .articles-list .article-row:last-child {
  padding-bottom: 0;
}
.articles-list .BambooHR-ATS-Department-Header, .articles-list .article-row .row-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  padding-bottom: 15px;
  color: #070936;
}
.articles-list .article-row .row-title:last-child {
  padding-bottom: 0;
}
.articles-list .article-row .article-out {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
}
.articles-list .article-row .article {
  padding-bottom: 10px;
}
.articles-list .article-row .article:last-child {
  padding-bottom: 0;
}
@media (max-width: 1199px) {
  .articles-list {
    padding-bottom: 90px;
  }
  .articles-list h1, .articles-list .h1 {
    padding-bottom: 45px;
  }
  .articles-list .article-row {
    padding-bottom: 60px;
  }
}
@media (max-width: 991px) {
  .articles-list .article {
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .articles-list {
    padding-bottom: 60px;
  }
  .articles-list h1, .articles-list .h1 {
    padding-bottom: 35px;
  }
  .articles-list .article {
    padding-bottom: 0;
  }
  .articles-list .article .box {
    font-size: 18px;
    line-height: 26px;
    padding: 40px 0;
  }
  .articles-list .article .box .post-title {
    padding-bottom: 20px;
  }
  .articles-list .article .box .btn-out {
    width: 100%;
    position: static;
    top: 0;
    margin: 25px 0 0 0;
  }
  .articles-list .article-row {
    padding-bottom: 40px;
  }
  .articles-list .article-row .row-title {
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 15px;
  }
}
/* Job Listing */
.articles-list .BambooHR-ATS-Jobs-List li a {
  font-size: 20px;
  text-decoration: none;
  color: #070936;
}
.articles-list .BambooHR-ATS-Jobs-List li a:hover {
  color: #eb6c0c;
}
.articles-list .BambooHR-ATS-Jobs-List li .BambooHR-ATS-Location {
  display: block;
  float: none;
  font-size: 20px;
  color: #070936;
}
.articles-list #BambooHR {
  padding: 0 !important;
}
.articles-list #BambooHR h2 {
  font-weight: 500;
  font-size: 40px;
  line-height: 48px;
  border: 0 !important;
  padding-bottom: 60px;
  font-family: inherit;
  color: #070936;
}
.articles-list #BambooHR li {
  padding-left: 0;
}
.articles-list #BambooHR ul li:before {
  display: none;
}
.articles-list .BambooHR-ATS-board ul ul {
  padding: 0;
  border: 0;
}
@media (max-width: 1199px) {
  .articles-list #BambooHR h2 {
    padding-bottom: 45px;
    font-size: 34px;
    line-height: 42px;
  }
  .articles-list .BambooHR-ATS-Department-Item {
    padding-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .articles-list #BambooHR h2 {
    padding-bottom: 35px;
    font-size: 26px;
    line-height: 34px;
  }
  .articles-list .BambooHR-ATS-Jobs-List li a, .articles-list .BambooHR-ATS-Jobs-List li .BambooHR-ATS-Location {
    font-size: 18px;
    line-height: 26px;
  }
  .articles-list .BambooHR-ATS-Department-Header {
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 15px;
  }
}
/* Single Title - Wrap */
.single-title-wrap {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  font-size: 20px;
  line-height: 28px;
  border-bottom: 1px solid #070936;
  padding-bottom: 35px;
  margin-bottom: 50px;
}
.single-title-wrap:last-child {
  margin-bottom: 0;
}
.single-title-wrap h1, .single-title-wrap .h1 {
  padding-bottom: 25px;
}
.single-title-wrap h1:last-child, .single-title-wrap .h1:last-child {
  padding-bottom: 0;
}
.backtonews {
  margin-top: 50px;
  display: block;
}
@media (max-width: 767px) {
  .single-title-wrap {
    font-size: 18px;
    line-height: 26px;
    padding-bottom: 35px;
    margin-bottom: 40px;
  }
}
/* Content - Inner */
.content-inner {
  width: 100%;
  overflow: hidden;
  padding: 120px 0 150px 0;
}
@media (max-width: 1199px) {
  .content-inner {
    padding: 90px 0 120px 0;
  }
}
@media (max-width: 767px) {
  .content-inner {
    padding: 60px 0 70px 0;
  }
}
/* Content - Inner2 */
.content-inner2 {
  width: 100%;
  overflow: hidden;
  padding: 100px 0;
}
.content-inner2 + .content-inner2 {
  padding-top: 20px;
}
@media (max-width: 1199px) {
  .content-inner2 {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .content-inner2 {
    padding: 60px 0;
  }
}
/* Content - Inner3 */
.content-inner3 {
  width: 100%;
  overflow: hidden;
  padding: 120px 0 300px 0;
}
@media (max-width: 1199px) {
  .content-inner3 {
    padding: 90px 0 180px 0;
  }
}
@media (max-width: 767px) {
  .content-inner3 {
    padding: 60px 0 100px 0;
  }
  .open-positions-band:before {
    top: 60px;
  }
}
/* Bottom - Space */
.btm-space {
  padding-bottom: 120px;
}
@media (max-width: 1199px) {
  .btm-space {
    padding-bottom: 90px;
  }
}
@media (max-width: 767px) {
  .btm-space {
    padding-bottom: 60px;
  }
}
/* Landing - Page */
@keyframes lines-zoom {
  0% {
    transform: scale(0, 0);
  }
  85% {
    transform: scale(1.1, 1.1);
  }
  95% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes lines-zoom2 {
  0% {
    transform: scale(0, 0);
  }
  95% {
    transform: scale(1.6, 1.6);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes text-zoom {
  0% {
    transform: scale(0.3, 0.3);
  }
  79% {
    transform: scale(1, 1);
  }
  89% {
    transform: scale(1, 1);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes text-zoom2 {
  0% {
    transform: scale(0.3, 0.3);
  }
  95% {
    transform: scale(1.6, 1.6);
  }
  100% {
    transform: translateY(-100%);
  }
}
.landing-main {
  width: 100%;
  height: 100vh;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #070936;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
.landing-main.slide-up {
  top: -100%;
  opacity: 0;
  visibility: hidden;
}
.landing-main .brand {
  height: 123px;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 11;
}
.landing-main .brand img {
  width: 100%;
  max-width: 229px;
  display: inline-block;
  vertical-align: top;
}
.landing-main .animate-txt {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  padding: 1.1vw 0 0 0;
}
.landing-main .animate-txt {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-delay: 0.3s;
  animation-name: text-zoom;
}
.landing-main .animate-txt .inn-txt {
  width: 100%;
}
.landing-main .animate-txt img {
  width: 38%;
  margin-top: 1vw;
}
.landing-main .animate-txt .lrg-txt {
  font-weight: 700;
  font-size: 3vw;
  color: #eb6c0c;
  line-height: 3.7vw;
}
.landing-main .animate-txt .sml-txt {
  font-weight: 500;
  font-size: 2.3vw;
  color: #eb6c0c;
  line-height: 3vw;
}
.landing-main .animate-lines {
  width: 100%;
  height: 100%;
  float: left;
  background: url(/wp-content/themes/mestagtherapeutics/assets/img/landing-background-lines.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.landing-main .animate-lines {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: lines-zoom;
}
.landing-main video {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  -o-object-fit: cover;
  object-fit: cover;
}
.landing-main .animate-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .landing-main .brand {
    height: 75px;
    left: 25px;
  }
  .landing-main .brand img {
    max-width: 140px;
  }
  .landing-main .animate-txt {
    animation-name: text-zoom2;
  }
  .landing-main .animate-lines {
    animation-name: lines-zoom2;
  }
}
/* Landing - Page Animation */
.landing-page {
  overflow: hidden;
}
.landing-page .header-main, .landing-page .hero-main .container {
  display: none;
}
.header-main.show-land .brand {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInLeft;
}
.header-main.show-land .nav-bar {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  animation-name: fadeInRight;
}
/* Animation - Delay */
@media (min-width: 992px) {
  .delay-1 {
    animation-delay: 0.1s;
  }
  .delay-2 {
    animation-delay: 0.4s;
  }
  .delay-3 {
    animation-delay: 0.7s;
  }
  .delay-4 {
    animation-delay: 1.1s;
  }
  .delay-5 {
    animation-delay: 1.4s;
  }
  .delay-6 {
    animation-delay: 1.7s;
  }
  .delay-7 {
    animation-delay: 2s;
  }
  .delay-8 {
    animation-delay: 2.3s;
  }
  .delay-9 {
    animation-delay: 2.6s;
  }
  .delay-10 {
    animation-delay: 2.9s;
  }
}
/*
 7.) Modal
----------------------------------------*/
.fadeInUp, .fadeInDown, .fadeInLeft, .fadeInRight {
  visibility: hidden;
}
@media (max-width: 991px) {
  .fadeInUp, .fadeInDown, .fadeInLeft, .fadeInRight {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
  }
}
/* Bootstrap - Modal */
.modal-backdrop.show {
  background: #070936;
  opacity: 0.7;
}
.modal, .modal-open {
  padding-right: 0 !important;
}
@media (min-width: 576px) {
  .modal-dialog {
    max-width: 1363px;
  }
}
@media (max-width: 1499px) {
  .modal-dialog {
    margin-left: 40px;
    margin-right: 40px;
  }
}
@media (max-width: 767px) {
  .modal-dialog {
    margin-left: 10px;
    margin-right: 10px;
  }
}
/* Modal - Content */
.modal-content {
  background: #ffffff;
  border-radius: 0;
  border: none;
  padding: 60px;
  margin: 0;
}
.modal-content .icon-close {
  font-size: 25px;
  color: #eb6c0c;
  line-height: 1em;
  position: absolute;
  top: 25px;
  right: 25px;
}
.modal-content .col-wrap {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
}
.modal-content .col-wrap .author-wrap {
  font-weight: 400;
  font-size: 35px;
  line-height: 43px;
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 35px;
}
.modal-content .col-wrap .author-wrap:last-child {
  margin-bottom: 0;
}
.modal-content .col-wrap .author-wrap:after {
  content: "";
  width: 185px;
  height: 1px;
  background: #eb6c0c;
  position: absolute;
  bottom: 0;
  left: 0;
}
.modal-content .col-wrap .name {
  font-weight: 700;
}
.modal-content .col-wrap .name strong {
  font-weight: 400;
}
.modal-content .col-wrap .figure {
  width: 100%;
  text-align: center;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}
.modal-content .col-wrap .figure img {
  width: 100%;
}
.modal-content .col-wrap .left-wrap {
  width: 339px;
  float: left;
  margin: 0 -339px 0 0;
}
.modal-content .col-wrap .right-wrap {
  width: 100%;
  float: left;
  padding: 0 0 0 379px;
}
@media (max-width: 1199px) {
  .modal-content {
    padding: 40px;
  }
  .modal-content .icon-close {
    font-size: 22px;
    top: 20px;
    right: 20px;
  }
  .modal-content .col-wrap .author-wrap {
    font-size: 30px;
    line-height: 38px;
    padding-bottom: 30px;
    margin-bottom: 35px;
  }
  .modal-content .col-wrap .author-wrap:after {
    width: 160px;
  }
  .modal-content .col-wrap .left-wrap {
    width: 260px;
    margin: 0 -260px 0 0;
  }
  .modal-content .col-wrap .right-wrap {
    padding: 0 0 0 300px;
  }
}
@media (max-width: 991px) {
  .modal-content .col-wrap .left-wrap {
    width: 100%;
    margin: 0;
    display: none;
  }
  .modal-content .col-wrap .right-wrap {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .modal-content {
    padding: 30px;
  }
  .modal-content .icon-close {
    font-size: 20px;
    top: 15px;
    right: 15px;
  }
  .modal-content .col-wrap .author-wrap {
    font-size: 24px;
    line-height: 32px;
    padding-bottom: 25px;
    margin-bottom: 30px;
  }
}
/* Slide - Left */
.modal.slide-left .modal-dialog {
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
  -webkit-transition: opacity 0.3s linear, left 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, left 0.3s ease-out;
  -o-transition: opacity 0.3s linear, left 0.3s ease-out;
  transition: opacity 0.3s linear, left 0.3s ease-out;
  left: -100%;
}
.modal.slide-left.show .modal-dialog {
  left: 0;
}
/* Slide - Right */
.modal.slide-right .modal-dialog {
  -webkit-transform: translate3d(0%, 0, 0);
  -ms-transform: translate3d(0%, 0, 0);
  -o-transform: translate3d(0%, 0, 0);
  transform: translate3d(0%, 0, 0);
  -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
  -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
  -o-transition: opacity 0.3s linear, right 0.3s ease-out;
  transition: opacity 0.3s linear, right 0.3s ease-out;
  right: -100%;
}
.modal.slide-right.show .modal-dialog {
  right: 0;
}
/* Video - Modal */
.video-modal .modal-content {
  padding: 0;
}
.video-modal .modal-content .icon-close {
  width: 50px;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #b8084a;
  line-height: 26px;
  text-align: center;
  text-decoration: none;
  background: #ffffff;
  border: 2px solid #b8084a;
  border-radius: 360px;
  cursor: pointer;
  z-index: 2;
  position: absolute;
  top: -25px;
  right: -25px;
  padding: 1px 0 0 0;
  margin: 0;
}
.video-modal .modal-content .ratio {
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 1499px) {
  .video-modal .modal-content .icon-close {
    width: 40px;
    height: 40px;
    font-size: 22px;
    line-height: 22px;
    top: -20px;
    right: -20px;
    padding: 1px 0 0 0;
  }
}
@media (max-width: 1199px) {
  .video-modal .modal-content .ratio {
    border-radius: 10px;
  }
}
@media (max-width: 767px) {
  .video-modal .modal-content .ratio {
    border-radius: 8px;
  }
  .video-modal .modal-content .icon-close {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 18px;
    top: -15px;
    right: -15px;
    padding: 0;
  }
}
@media (max-width: 575px) {
  .video-modal .modal-dialog {
    margin: 0.5rem 1rem;
  }
}
/* Culture Text/Image Collage */
.grid-list {
  width: 100%;
  float: none;
  display: inline-block;
  vertical-align: top;
  padding: 120px 0 110px 0;
}
.grid-list:last-child {
  padding-bottom: 0;
}
.grid-list .heading-txt {
  font-weight: 500;
}
.grid-list .heading-txt .aside {
  max-width: 450px;
}
.grid-list .row {
  padding: 0;
  margin: 0 -10px -20px -10px;
}
.grid-list .row > div {
  padding: 0 10px 20px 10px;
  margin: 0;
}
.grid-list .row > div .figure {
  width: 100%;
  overflow: hidden;
}
.grid-list .row > div .figure img {
  width: 100%;
}
.grid-list .row > div .aside {
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.grid-list .row > div .aside .author-name strong {
  display: block;
}
.grid-list .row > div .aside .txt-max {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.grid-list .row > div .aside .txt-max.sml {
  max-width: 350px;
}
@media (max-width: 991px) {}
@media (max-width: 767px) {
  .grid-list {
    padding: 45px 0 80px 0;
  }
  .grid-list .row > div .aside {
    padding: 30px 0;
  }
}
h1 {
  scroll-margin-top: 130px;
}
/**[id]:before { 
  display: block; 
  content: " "; 
  margin-top: -125px; 
  height: 125px; 
  visibility: hidden; 
}*/
/*
 8.) Text - Colors / Wordpress Cores
------------------------------------------------------*/
/* Font - Weights */
.light {
  font-weight: 300 !important;
}
.regular {
  font-weight: 400 !important;
}
.medium {
  font-weight: 500 !important;
}
.semi-bold {
  font-weight: 600 !important;
}
.bold {
  font-weight: 700 !important;
}
.extra-bold {
  font-weight: 800 !important;
}
.black {
  font-weight: 900 !important;
}
/* Text - Positions */
.upper-case {
  text-transform: uppercase;
}
.lower-case {
  text-transform: none;
}
.underline {
  text-decoration: underline;
}
.center-align {
  text-align: center;
  justify-content: center;
}
.vertical-align {
  align-items: center;
}
.left-align {
  text-align: left;
}
.right-align {
  text-align: right;
}
.row.v-align-top {
  align-items: flex-start;
}
.row.v-align-middle {
  align-items: center;
}
.row.v-align-bottom {
  align-items: flex-end;
}
/* Padding/Margin - None */
.p-top-none {
  padding-top: 0 !important;
}
.p-bottom-none {
  padding-bottom: 0 !important;
}
.m-top-none {
  margin-top: 0 !important;
}
.m-bottom-none {
  margin-bottom: 0 !important;
}
/* Text - Colors */
.navy {
  color: #070936 !important;
}
.orange {
  color: #eb6c0c !important;
}
.gray {
  color: #707070 !important;
}
.gray-light {
  color: #00000029 !important;
}
.white-bg {
  background-color: #ffffff !important;
}
/* ---------------------------- Begin WordPress Core ---------------------------- */
.alignnone {
  margin: 10px 0;
}
.aligncenter, div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float: right;
  margin: 10px 0 10px 25px;
}
.alignleft {
  float: left;
  margin: 10px 25px 10px 0;
}
a img.alignright {
  float: right;
  margin: 10px 0 10px 25px;
}
a img.alignnone {
  margin: 10px 25px 10px 0;
}
a img.alignleft {
  float: left;
  margin: 10px 25px 10px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.figure img.alignnone, .figure img.alignleft, .figure img.alignright, .figure img.aligncenter {
  margin: 0;
}
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 96%;
  /* Image does not overflow the content area */
  padding: 5px 3px 10px;
  text-align: center;
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img {
  border: 0 none;
  height: auto;
  margin: 0;
  max-width: 98.5%;
  padding: 0;
  width: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .alignleft, .alignright, a img.alignright, a img.alignleft {
    max-width: 350px;
  }
}
@media (min-width: 601px) and (max-width: 767px) {
  .alignleft, .alignright, a img.alignright, a img.alignleft {
    max-width: 250px;
  }
}
@media (max-width: 600px) {
  .alignleft, .alignright, .aligncenter, .alignnone, a img.alignright, a img.alignleft, a img.alignnone, a img.aligncenter {
    float: none;
    margin: 0 auto;
    margin-top: 10px;
    margin-bottom: 20px;
    display: block;
  }
}
#searchform input {
  max-width: 60%;
  margin-right: 10px;
}
@media (min-width: 767.98px) {
  .search-form {
    display: flex;
    gap: 1rem;
  }
  .search-form label {
    padding-bottom: 0;
  }
}
/* ---------------------------- Text meant only for screen readers ---------------------------- */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
}
/* ---------------------------- End WordPress Core ---------------------------- */
/* ---------------------------- Print CSS Styling ---------------------------- */
@media print {
  @page {
    margin-top: 2cm;
    margin-bottom: 2cm;
    margin-left: 2cm;
    margin-right: 2cm;
  }
  header {
    box-shadow: none;
    padding: 0;
  }
  @page :first {
    header {
      display: block !important;
    }
  }
  .header-main.fixed {
    position: absolute;
  }
  body {
    color: #000000;
    font-size: 8pt;
    line-height: 150%;
    margin: 0px;
  }
  body * {
    -o-transition-property: none !important;
    -moz-transition-property: none !important;
    -ms-transition-property: none !important;
    -webkit-transition-property: none !important;
    transition-property: none !important;
    transition: none;
    -moz-transition: none;
    -webkit-transition: none;
  }
  hr {
    color: #ccc;
    background-color: #ccc;
  }
  h1, h2, h3, h4, h5, h6, code, pre, p, a:link, a:visited, blockquote {
    color: #000000 !important;
  }
  p {
    page-break-inside: avoid;
  }
  blockquote {
    background-image: none;
  }
  a:link, a:visited {
    text-decoration: underline;
  }
  .btn {
    border: 1px solid #000;
  }
  .collapse {
    display: block !important;
    height: auto !important;
  }
  .skip-btn, .nav-bar, #menu, #navigation, .NoPrint {
    display: none;
  }
}
/* ---------------------------- End Print CSS Styling ---------------------------- */
/* Temporarily hide categories on News page */
.split-title-wrap .right-links {
  display: none;
}
.hero-main {
  height: 100vh;
  padding: 0;
}
#background-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
/* Masonry Grid */
.masonry-grid {
  display: grid;
  gap: 15px;
  justify-items: stretch;
}
.masonry-grid .txt {
  font-size: 1rem !important;
  line-height: 1.4 !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.masonry-grid div {
  border-radius: 9px;
}
.div1 {
  grid-column: 1 / span 11;
  grid-row: 1 / 1;
}
.div2 {
  grid-column: 1 / span 4;
  grid-row: 2/2;
}
.div3 {
  grid-column: 5 / span 7;
  grid-row: 2/2;
}
.div4 {
  grid-column: 1 / span 5;
  grid-row: 3;
}
.small-img-stacked {
  grid-column: 6 / span 2;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.div6 {
  margin-top: 15px;
}
.div7 {
  grid-column: 8 / span 4;
  grid-row: 3;
  max-height: 315px;
}
.div8 {
  grid-column: 1 / span 5;
  max-height: 280px;
  grid-row: 5/5;
}
.div9 {
  grid-column: 6 / span 6;
  grid-row: 5/5;
  max-height: 280px;
}
.div10 {
  grid-column: 1 / span 2;
}
.div13 {
  grid-column: 5 / span 4;
}
.div14 {
  grid-column: 9 / span 3;
}
.div10, .div13, .div14, .small-img-stacked2 {
  grid-row: 6;
  max-height: 318px;
}
.small-img-stacked2 {
  grid-column: 3 / span 2;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.masonry-grid div.block.txt, .masonry-grid div.block.img img {
  border-radius: 9px;
}
.masonry-grid div.block {
  overflow: hidden;
}
.masonry-grid div.block.img img {
  width: 100%;
}
.masonry-grid div.block.txt {
  color: #ffffff;
  padding: 1em 1.5em;
}
.masonry-grid div.block.txt.div3 {
  background: #070936;
}
.masonry-grid div.block.txt.div4 {
  background: #eb6c0c;
}
.masonry-grid div.block.txt.div13 {
  background: #0e1566;
}
@media (max-width: 1024px) {
  .small-img-stacked2 {
    max-height: fit-content;
  }
}
@media (max-width: 991px) {
  .masonry-grid {
    display: block;
  }
  .masonry-grid div.block {
    margin: 15px 0;
  }
}
/* Testimonial sliders*/
/*slider navigation */
.testimonial-slider .owl-carousel .owl-nav {
  bottom: 0px;
  position: relative;
}
.testimonial-slider .owl-carousel .owl-nav .owl-prev, .testimonial-slider .owl-carousel .owl-nav .owl-next, .testimonial-slider .owl-carousel .owl-dots button {
  background: #070936;
  color: #fff;
}
.testimonial-slider .owl-carousel .owl-dots button.owl-dot.active {
  background: transparent;
  border: 1px solid #070936;
  box-shadow: inset #070936 0 0 0 1px;
}
.testimonial-slider .owl-carousel .owl-stage-outer .owl-item {
  padding: 0 4rem;
}
/*slider image*/
.citation .name {
  font-weight: bold;
}
.testimonial-slider figure {
  display: block;
  position: relative;
  float: left;
  overflow: hidden;
  margin: 0 20px 20px 0;
  border-radius: 9px;
}
.testimonial-slider figcaption {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 1.2;
  width: 100%;
  background: rgba(235, 108, 12, 1);
  color: white;
  padding: 10px 20px;
  opacity: 1;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
}
.testimonial-slider figure:before {
  bottom: 10px;
  left: 10px;
}
.testimonial-slider figure figcaption {
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 900px) {
  .testimonial-slider figure {
    display: block;
    position: relative;
    float: left;
    overflow: hidden;
    margin: 0 8rem 5rem 0;
  }
}
@media screen and (max-width: 991px) {
  .testimonial-slider .owl-carousel .owl-stage-outer .owl-item {
    padding: 0 1.75rem;
  }
}
/*Events & Presentations Update*/
.articles-list .article .box .btn-angles i {
  color: #eb6c0c;
  transition: all 0.25s ease-out;
}
.articles-list .article .box:hover .btn-angles i {
  margin-left: 1rem;
}
.section-wrap + .post-archive-band {
  padding-top: 3rem;
}
.section-wrap + .tabbed-post-categories {
  padding-top: 2rem;
}
.tabbed-post-categories .articles-list .article:first-child {
  border-top: 0px none
}
.tabbed-post-categories .tab-links {
  margin-bottom: 0;
}
.tabbed-post-categories .tab-links .dropdown-menu ul {
  border: 0px none;
}
.articles-list .article.events .box {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem
}
.articles-list .article.events .box .btn-out {
  top: auto;
}
.articles-list .article.events .box .post-title {
  padding-bottom: 0;
}
/*Events & Presentations Update Ends */