[data-rmiz-wrap="visible"],
[data-rmiz-wrap="hidden"] {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
}
[data-rmiz-wrap="hidden"] {
  visibility: hidden;
}
[data-rmiz-overlay] {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition-property: background-color;
}
[data-rmiz-btn-open],
[data-rmiz-btn-close] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;

  /* reset styles */
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  font: inherit;
  color: inherit;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
[data-rmiz-btn-open] {
  cursor: zoom-in;
}
[data-rmiz-btn-close] {
  cursor: zoom-out;
}
[data-rmiz-modal-content] {
  position: absolute;
  transition-property: transform;
  transform-origin: center center;
}

/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #29d;

  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;

  width: 100%;
  height: 2px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1;

  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;

  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;

  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.Toastify__toast-container {
  z-index: 9999;
  -webkit-transform: translate3d(0, 0, 9999px);
  position: fixed;
  padding: 4px;
  width: 320px;
  box-sizing: border-box;
  color: #fff; }
  .Toastify__toast-container--top-left {
    top: 1em;
    left: 1em; }
  .Toastify__toast-container--top-center {
    top: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--top-right {
    top: 1em;
    right: 1em; }
  .Toastify__toast-container--bottom-left {
    bottom: 1em;
    left: 1em; }
  .Toastify__toast-container--bottom-center {
    bottom: 1em;
    left: 50%;
    margin-left: -160px; }
  .Toastify__toast-container--bottom-right {
    bottom: 1em;
    right: 1em; }

@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: 0;
    margin: 0; }
    .Toastify__toast-container--top-left, .Toastify__toast-container--top-center, .Toastify__toast-container--top-right {
      top: 0; }
    .Toastify__toast-container--bottom-left, .Toastify__toast-container--bottom-center, .Toastify__toast-container--bottom-right {
      bottom: 0; }
    .Toastify__toast-container--rtl {
      right: 0;
      left: initial; } }

.Toastify__toast {
  position: relative;
  min-height: 64px;
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: 1px;
  box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1), 0 2px 15px 0 rgba(0, 0, 0, 0.05);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  max-height: 800px;
  overflow: hidden;
  font-family: sans-serif;
  cursor: pointer;
  direction: ltr; }
  .Toastify__toast--rtl {
    direction: rtl; }
  .Toastify__toast--default {
    background: #fff;
    color: #aaa; }
  .Toastify__toast--info {
    background: #3498db; }
  .Toastify__toast--success {
    background: #07bc0c; }
  .Toastify__toast--warning {
    background: #f1c40f; }
  .Toastify__toast--error {
    background: #e74c3c; }
  .Toastify__toast-body {
    margin: auto 0;
    -ms-flex: 1;
        flex: 1; }

@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0; } }

.Toastify__close-button {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
      align-self: flex-start; }
  .Toastify__close-button--default {
    color: #000;
    opacity: 0.3; }
  .Toastify__close-button:hover, .Toastify__close-button:focus {
    opacity: 1; }

@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1); }
  100% {
    transform: scaleX(0); } }

.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  z-index: 9999;
  opacity: 0.7;
  background-color: rgba(255, 255, 255, 0.7);
  transform-origin: left; }
  .Toastify__progress-bar--animated {
    animation: Toastify__trackProgress linear 1 forwards; }
  .Toastify__progress-bar--controlled {
    transition: transform .2s; }
  .Toastify__progress-bar--rtl {
    right: 0;
    left: initial;
    transform-origin: right; }
  .Toastify__progress-bar--default {
    background: linear-gradient(to right, #4cd964, #5ac8fa, #007aff, #34aadc, #5856d6, #ff2d55); }

@keyframes Toastify__bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

@keyframes Toastify__bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

@keyframes Toastify__bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

@keyframes Toastify__bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

.Toastify__bounce-enter--top-left, .Toastify__bounce-enter--bottom-left {
  animation-name: Toastify__bounceInLeft; }

.Toastify__bounce-enter--top-right, .Toastify__bounce-enter--bottom-right {
  animation-name: Toastify__bounceInRight; }

.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown; }

.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp; }

.Toastify__bounce-exit--top-left, .Toastify__bounce-exit--bottom-left {
  animation-name: Toastify__bounceOutLeft; }

.Toastify__bounce-exit--top-right, .Toastify__bounce-exit--bottom-right {
  animation-name: Toastify__bounceOutRight; }

.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp; }

.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown; }

@keyframes Toastify__zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes Toastify__zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn; }

.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut; }

@keyframes Toastify__flipIn {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in; }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    transform: perspective(400px); } }

@keyframes Toastify__flipOut {
  from {
    transform: perspective(400px); }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.Toastify__flip-enter {
  animation-name: Toastify__flipIn; }

.Toastify__flip-exit {
  animation-name: Toastify__flipOut; }

@keyframes Toastify__slideInRight {
  from {
    transform: translate3d(110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInLeft {
  from {
    transform: translate3d(-110%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInUp {
  from {
    transform: translate3d(0, 110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideInDown {
  from {
    transform: translate3d(0, -110%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

@keyframes Toastify__slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(110%, 0, 0); } }

@keyframes Toastify__slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-110%, 0, 0); } }

@keyframes Toastify__slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0); } }

@keyframes Toastify__slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0); } }

.Toastify__slide-enter--top-left, .Toastify__slide-enter--bottom-left {
  animation-name: Toastify__slideInLeft; }

.Toastify__slide-enter--top-right, .Toastify__slide-enter--bottom-right {
  animation-name: Toastify__slideInRight; }

.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown; }

.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp; }

.Toastify__slide-exit--top-left, .Toastify__slide-exit--bottom-left {
  animation-name: Toastify__slideOutLeft; }

.Toastify__slide-exit--top-right, .Toastify__slide-exit--bottom-right {
  animation-name: Toastify__slideOutRight; }

.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp; }

.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown; }
.contact-form .MuiTextField-root .MuiInputLabel-formControl {
  background-color: white; }
  .contact-form .MuiTextField-root .MuiInputLabel-formControl.Mui-focused {
    color: #f58220; }

.contact-form .MuiTextField-root .MuiInputBase-formControl {
  border: 1px solid #f2edf8; }
  .contact-form .MuiTextField-root .MuiInputBase-formControl.Mui-focused {
    border: 2px solid #f58220; }

.contact-form fieldset {
  display: none; }

.contact-form button {
  background-color: #5e2e86;
  color: white;
  padding-left: 28px;
  padding-right: 28px; }
  .contact-form button:hover {
    background-color: #f58220; }

.slider {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden; }
  .slider a.previousButton, .slider a.nextButton {
    font-size: 22px;
    line-height: 0;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s linear;
    z-index: 1;
    padding: 10px;
    text-decoration: none;
    backface-visibility: hidden;
    /* prevent jump effect when scaling */ }
    .slider a.previousButton:not(.disabled):hover, .slider a.nextButton:not(.disabled):hover {
      transform: translateY(-50%) scale(1.25);
      cursor: pointer; }
    .slider a.previousButton svg polygon, .slider a.nextButton svg polygon {
      fill: #fff; }
  .slider a.previousButton {
    left: 20px; }
  .slider a.nextButton {
    right: 20px; }

.sliderContent {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  text-align: center;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-position: center center; }
  .sliderContent:before {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0; }
  .sliderContent.hidden {
    visibility: hidden; }
  .sliderContent.previous {
    left: -100%; }
  .sliderContent.current {
    left: 0; }
  .sliderContent.next {
    left: 100%; }
  .sliderContent.animateIn, .sliderContent.animateOut {
    transition: all 1.5s ease; }
  .sliderContent.animateIn.previous, .sliderContent.animateIn.next {
    left: 0;
    visibility: visible; }
    .sliderContent.animateIn.previous p, .sliderContent.animateIn.next p {
      transition-delay: 1.1s; }
    .sliderContent.animateIn.previous button, .sliderContent.animateIn.next button {
      transition-delay: 1.3s; }
    .sliderContent.animateIn.previous section img, .sliderContent.animateIn.next section img {
      transition-delay: 1.3s; }
    .sliderContent.animateIn.previous section span, .sliderContent.animateIn.next section span {
      transition-delay: 1.4s; }
    .sliderContent.animateIn.previous section span strong, .sliderContent.animateIn.next section span strong {
      transition-delay: 1.5s; }
  .sliderContent.animateOut.previous {
    left: 100%; }
  .sliderContent.animateOut.next {
    left: -100%; }
  .sliderContent.animateOut h1 {
    transition-delay: 0.3s; }
  .sliderContent.animateOut p {
    transition-delay: 0.2s; }
  .sliderContent.animateOut section span {
    transition-delay: 0.1s; }
  .sliderContent.animateOut section span strong {
    transition-delay: 0s; }
  .sliderContent.current h1,
  .sliderContent.current button,
  .sliderContent.current p,
  .sliderContent.current section *, .sliderContent.animateIn h1,
  .sliderContent.animateIn button,
  .sliderContent.animateIn p,
  .sliderContent.animateIn section * {
    transform: translateX(0);
    transition-delay: 0.9s;
    opacity: 1; }
  .sliderContent .inner {
    padding: 0 70px;
    box-sizing: border-box;
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .sliderContent h1 {
    font-weight: 900;
    margin: 0 auto;
    max-width: 840px;
    color: #ffffff;
    font-size: 64px;
    line-height: 1;
    transition: all 0.3s ease;
    transform: translateY(-20px);
    opacity: 0; }
  .sliderContent p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    margin: 20px auto 30px;
    max-width: 640px;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0; }
  .sliderContent button {
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0; }
  .sliderContent section {
    position: absolute;
    bottom: 20px;
    left: 20px; }
    .sliderContent section * {
      transition: all 0.3s ease; }
    .sliderContent section span {
      color: rgba(255, 255, 255, 0.5);
      font-size: 12px;
      display: inline-block;
      text-align: left;
      line-height: 1.4;
      vertical-align: middle;
      margin-left: 10px;
      transform: translateX(-10px);
      opacity: 0; }
      .sliderContent section span strong {
        color: #ffffff;
        font-size: 14px;
        display: block;
        transform: translateY(10px);
        opacity: 0; }
    .sliderContent section img {
      width: 40px;
      height: 40px;
      border: solid 2px rgba(255, 255, 255, 0.5);
      border-radius: 100%;
      vertical-align: middle;
      transition: all 0.5s ease;
      transform: translateX(-20px);
      opacity: 0; }

@media screen and (max-width: 959px) {
  .slider {
    height: 300px !important; }
    .slider h1 {
      font-size: 36px; }
    .slider p {
      font-size: 14px; } }

@media screen and (max-width: 720px) {
  .slider {
    height: 220px !important; }
    .slider h1 {
      font-size: 24px; }
    .slider p {
      font-size: 14px; } }

@media screen and (max-width: 480px) {
  .slider {
    height: 160px !important; }
    .slider h1 {
      font-size: 18px; }
    .slider p {
      font-size: 12px; } }

.noSlides {
  width: 100%;
  height: 300px;
  background-color: #ececec;
  text-align: center;
  line-height: 300px; }
  .noSlides p {
    display: inline-block;
    line-height: normal; }

.slider {
	position: relative;
	width: 100%;
	height: 400px;
	overflow: hidden
}

.slider a.previousButton, .slider a.nextButton {
	font-size: 22px;
	line-height: 0;
	display: block;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transition: all .3s linear;
	transition: all .3s linear;
	z-index: 1;
	color: #333;
	padding: 10px;
	text-decoration: none;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden
	/* prevent jump effect when scaling */
}

.slider a.previousButton:not(.disabled):hover, .slider a.nextButton:not(.disabled):hover {
	-webkit-transform: translateY(-50%) scale(1.25);
	        transform: translateY(-50%) scale(1.25);
	cursor: pointer;
}

.slider a.previousButton {
	left: 20px;
}

.slider a.nextButton {
	right: 20px;
}

.slide {
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden
}

.slide.hidden {
	visibility: hidden;
}

.slide.previous {
	left: -100%;
}

.slide.current {
	left: 0;
}

.slide.next {
	left: 100%;
}

.slide.animateIn,
	.slide.animateOut {
	-webkit-transition: all 2s ease;
	transition: all 2s ease;
}

.slide.animateIn.previous,
		.slide.animateIn.next {
	left: 0;
	visibility: visible;
}

.slide.animateOut.previous {
	left: 100%;
}

.slide.animateOut.next {
	left: -100%;
}


.page-subnav {
  margin: 0;
  padding: 0;
  list-style-type: none;
  padding: 22px 20px 10px;
  text-align: center;
  min-width: max-content; }
  .page-subnav li {
    display: inline-block;
    margin: 0 10px; }

.pageAppBar {
  width: 100%;
  position: fixed;
  top: 84px;
  z-index: 8;
  background-color: #fff;
  box-shadow: 0 3px 7px #ccc; }

@media screen and (max-width: 959px) {
  .pageAppBar {
    top: 61px; } }

.item {
  font-family: "tpb_neo_sansbold";
  font-size: 14px;
  color: #5e2e86;
  text-transform: uppercase;
  text-decoration: none;
  position: relative; }
  .item:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background-color: #f58220;
    transform: scaleX(0); }
  .item:hover {
    color: #f58220; }
    .item:hover:after {
      color: #f58220; }

.activeItem {
  font-family: "tpb_neo_sansbold";
  font-size: 14px;
  color: #5e2e86;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  color: #f58220; }
  .activeItem:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 2px;
    background-color: #f58220;
    transform: scaleX(0); }
  .activeItem:hover {
    color: #f58220; }
    .activeItem:hover:after {
      color: #f58220; }
  .activeItem:after {
    color: #f58220; }

.profile {
  margin-bottom: 40px; }
  .profile img {
    margin-bottom: 10px;
    width: 220px; }
  .profile h4 {
    font-family: "tpb_neo_sansregular";
    font-size: 20px;
    font-weight: normal;
    position: relative; }
    .profile h4 span {
      display: block;
      margin-top: 5px;
      font-size: 14px;
      color: #9b9b9b; }
    .profile h4 strong {
      text-transform: uppercase;
      color: #f58220;
      font-family: "tpb_neo_sansbold";
      letter-spacing: 0.02em; }
  .profile p {
    text-align: left; }

img.noImg {
  border-radius: 100%;
  opacity: 0.5;
  margin-bottom: 20px; }

@media screen and (max-width: 600px) {
  .profile {
    text-align: center; }
    .profile h4:before {
      content: "";
      position: absolute;
      left: 0;
      width: 0;
      height: 0;
      top: 50%;
      bottom: 0;
      border-width: 10px;
      border-style: solid;
      border-color: transparent transparent transparent #f58220;
      margin-top: -10px;
      transition: all 0.3s; }
  .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s; }
  .expanded {
    max-height: 1000px; }
  h4.clicked:before {
    transform: translateX(0) translateY(5px) rotate(90deg); } }

@media screen and (min-width: 600px) {
  .profile img {
    margin-top: -10px;
    max-width: 180px;
    height: auto;
    width: 100%; } }

.roller {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
  margin: 50px auto 0;
  display: block; }

.roller div {
  animation: roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 32px 32px; }

.roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9255c5;
  margin: -3px 0 0 -3px; }

.roller div:nth-child(1) {
  animation-delay: -0.036s; }

.roller div:nth-child(1):after {
  top: 50px;
  left: 50px; }

.roller div:nth-child(2) {
  animation-delay: -0.072s; }

.roller div:nth-child(2):after {
  top: 54px;
  left: 45px; }

.roller div:nth-child(3) {
  animation-delay: -0.108s; }

.roller div:nth-child(3):after {
  top: 57px;
  left: 39px; }

.roller div:nth-child(4) {
  animation-delay: -0.144s; }

.roller div:nth-child(4):after {
  top: 58px;
  left: 32px; }

.roller div:nth-child(5) {
  animation-delay: -0.18s; }

.roller div:nth-child(5):after {
  top: 57px;
  left: 25px; }

.roller div:nth-child(6) {
  animation-delay: -0.216s; }

.roller div:nth-child(6):after {
  top: 54px;
  left: 19px; }

.roller div:nth-child(7) {
  animation-delay: -0.252s; }

.roller div:nth-child(7):after {
  top: 50px;
  left: 14px; }

.roller div:nth-child(8) {
  animation-delay: -0.288s; }

.roller div:nth-child(8):after {
  top: 45px;
  left: 10px; }

@keyframes roller {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.quickLinkItemWrapper a {
  text-align: center;
  text-decoration: none;
  letter-spacing: 0.05em;
  position: relative;
  display: block; }
  .quickLinkItemWrapper a:first-child {
    content: "";
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    position: absolute; }
  .quickLinkItemWrapper a:link {
    color: white; }
  .quickLinkItemWrapper a:visited {
    color: white; }

.quickLinkItem {
  position: relative;
  width: 100%;
  display: flex;
  height: 300px;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 2;
  cursor: pointer;
  flex-direction: column; }
  .quickLinkItem:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: #652d89;
    opacity: 0.7;
    width: 100%;
    height: 100%; }
  .quickLinkItem h3 {
    font-family: "tpb_neo_sansregular";
    position: relative;
    margin-bottom: 0;
    transition: all 0.3s; }
    .quickLinkItem h3:visited {
      color: white; }
  .quickLinkItem svg {
    position: relative;
    transition: all 0.3s; }
    .quickLinkItem svg:visited {
      color: white; }
  .quickLinkItem:hover h3 {
    transform: scaleX(0.6) scaleY(0.6) translateY(-5px); }
  .quickLinkItem:hover svg {
    transform: scaleX(3) scaleY(2) translateY(-5px); }

@media screen and (min-width: 960px) {
  .homepageQuicklinks {
    margin-bottom: 80px; } }

.list-table td {
  width: 100%;
  padding: 10px;
  border: none; }

.list-table td:first-child {
  padding-left: 16px; }

.list-table td i {
  display: block;
  font-size: 12px;
  color: #a4a4a4;
  font-style: normal; }

.list-table tr:nth-child(2n + 1) {
  background-color: #f2edf8; }

.list-table a {
  color: #652d89;
  text-decoration: none;
  font-family: "tpb_neo_sansregular"; }

.list-table a:hover {
  color: #f58220; }

.itemRow {
  padding: 7px 10px; }
  .itemRow:nth-child(2n + 1) {
    background-color: #f2edf8; }
  .itemRow a {
    text-decoration: none;
    color: #5e2e86; }
    .itemRow a:hover {
      color: #f58220; }

a.activeItemRow {
  pointer-events: none;
  color: #f58220 !important; }

.searchForm form {
  margin-bottom: 0; }

.searchForm input {
  width: 100%;
  padding: 4px 30px 4px 30px;
  border: 0;
  border-bottom: 1px solid #5e2e86; }
  .searchForm input:focus {
    outline: none; }

.searchIcon {
  position: relative;
  top: 4px;
  margin-right: -24px;
  z-index: 1; }
  .searchIcon svg {
    font-size: 24px;
    color: #f58220; }

.closeButton {
  cursor: pointer;
  position: relative;
  top: 4px;
  margin-left: -24px;
  z-index: 1; }
  .closeButton svg {
    font-size: 24px;
    color: #f58220; }

@media screen and (min-width: 960px) {
  .searchFormContainer {
    margin-bottom: 24px;
    z-index: 1; }
  .searchForm {
    display: flex;
    flex-direction: row; } }

@media screen and (max-width: 959px) {
  .closeButton {
    display: none; }
  .searchForm {
    position: fixed !important;
    display: flex;
    bottom: 30px;
    height: 42px;
    border-radius: 100%;
    overflow: hidden;
    width: 42px;
    transition: all 0.3s;
    padding: 5px 0 0 10px;
    border: 1px solid #cfcfcf;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    background-color: #fff;
    z-index: 1; }
    .searchForm form {
      flex: 1; }
    .searchForm input {
      border: 0;
      width: 100%;
      padding-right: 10px; }
  .searchFormExpanded {
    width: 300px;
    border-radius: 5px; }
    .searchFormExpanded .closeButton {
      display: inline !important;
      top: 6px;
      right: 4px; }
  .searchIcon {
    margin-top: 0px;
    cursor: pointer; }
    .searchIcon svg {
      font-size: 28px; }
  .closeButton {
    margin-top: 0px;
    margin-left: 0px;
    top: 3px !important; } }

.pagination {
  text-align: center;
  list-style-type: none;
  margin: 0;
  padding: 0; }
  .pagination li,
  .pagination .previous,
  .pagination .next {
    margin: 0 5px;
    display: inline-block; }
    .pagination li.break a,
    .pagination .previous.break a,
    .pagination .next.break a {
      color: #333; }
    .pagination li.activePageItem a.pageItem,
    .pagination .previous.activePageItem a.pageItem,
    .pagination .next.activePageItem a.pageItem {
      color: #f58220; }
    .pagination li a,
    .pagination li a.pageItem,
    .pagination .previous a,
    .pagination .previous a.pageItem,
    .pagination .next a,
    .pagination .next a.pageItem {
      padding: 10px;
      color: #333;
      display: block;
      cursor: pointer;
      text-transform: uppercase; }
      .pagination li a:focus,
      .pagination li a.pageItem:focus,
      .pagination .previous a:focus,
      .pagination .previous a.pageItem:focus,
      .pagination .next a:focus,
      .pagination .next a.pageItem:focus {
        outline: none; }

@media screen and (max-width: 959px) {
  .jobList .name {
    width: 25% !important;
    padding: 5px 10px !important; }
  .jobList .location {
    padding: 5px 10px !important; }
  .jobList .department {
    padding: 5px 10px !important; }
  .jobList .apply {
    width: 15% !important; } }

.job-table td {
  width: 100%;
  padding: 10px;
  border: none; }

.job-table thead {
  padding: 10px;
  font-size: 12px;
  border: none; }

.job-table td:first-child {
  padding-left: 16px; }

.job-table td i {
  display: block;
  font-size: 12px;
  color: #a4a4a4;
  font-style: normal; }

.job-table tr:nth-child(2n + 1) {
  background-color: #f2edf8; }

.job-table a {
  color: #652d89;
  text-decoration: none;
  font-family: "tpb_neo_sansregular"; }

.job-table a:hover {
  color: #f58220; }

.search-table table {
  width: 100% !important; }
  .search-table table.list-table {
    max-width: 100% !important; }

.search-table .MuiRadio-colorSecondary.Mui-checked {
  color: #f58220; }

.search-table .searchIcon {
  color: #f58220; }

.search-radio-button {
  display: block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  font-size: 16px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Hide the browser's default radio button */
  /* Create a custom radio button */
  /* When the radio button is checked, add a blue background */
  /* Create the indicator (the dot/circle - hidden when not checked) */
  /* Show the indicator (dot/circle) when checked */
  /* Style the indicator (dot/circle) */ }
  .search-radio-button input {
    position: absolute;
    opacity: 0;
    cursor: pointer; }
  .search-radio-button .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%; }
  .search-radio-button:hover input ~ .checkmark {
    background-color: #ccc; }
  .search-radio-button input:checked ~ .checkmark {
    background-color: #f58220; }
  .search-radio-button .checkmark::after {
    content: "";
    position: absolute;
    display: none; }
  .search-radio-button input:checked ~ .checkmark:after {
    display: block; }
  .search-radio-button .checkmark::after {
    top: 6px;
    left: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white; }

.tabContainer {
  padding-top: 75px;
  padding-bottom: 50px;
  min-height: calc(100vh - 180px);
  overflow: auto; }

@media screen and (max-width: 959px) {
  .tabContainer {
    padding-top: 110px; }
  .noTabNav {
    padding-top: 80px; } }

