@import url(../lib/bootstrap/bootstrap.min.css);
@import url(../lib/fontawsome/css/font-awesome.min.css);
@import url(../lib/slick/slick.css);
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
@import url("https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900");
@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,900");
.hamburger {
  padding: 0px 0px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
  .hamburger:hover {
    opacity: 1; }

.hamburger-box {
  width: 16px;
  height: 12px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 16px;
    height: 2px;
    background-color: #454149;
    border-radius: 0px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -5px; }
  .hamburger-inner::after {
    bottom: -5px; }

/*
 * 3DX
 */
.hamburger--3dx .hamburger-box {
  perspective: 32px; }
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg); }
  .hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 32px; }
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 32px; }
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg); }
  .hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 32px; }
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 32px; }
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg); }
  .hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 32px; }
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
  .hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -5px, 0) rotate(-45deg); }

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-3.2px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-3.2px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
 * Arrow Right
 */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(3.2px, 0, 0) rotate(45deg) scale(0.7, 1); }
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(3.2px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Alt
 */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-3.2px, -4px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-3.2px, 4px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Arrow Alt Right
 */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(3.2px, -4px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(3.2px, 4px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }

/*
 * Arrow Turn
 */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
  .hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }

/*
 * Arrow Turn Right
 */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
  .hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }

/*
 * Boring
 */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
  .hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

/*
 * Collapse
 */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse .hamburger-inner::after {
    top: -10px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Collapse Reverse
 */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--collapse-r .hamburger-inner::after {
    top: -10px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
  .hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -5px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Elastic
 */
.hamburger--elastic .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 5px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 10px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

/*
 * Elastic Reverse
 */
.hamburger--elastic-r .hamburger-inner {
  top: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic-r .hamburger-inner::before {
    top: 5px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic-r .hamburger-inner::after {
    top: 10px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(270deg);
    transition-delay: 0.075s; }

/*
 * Emphatic
 */
.hamburger--emphatic {
  overflow: hidden; }
  .hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic .hamburger-inner::after {
      top: 5px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic.is-active .hamburger-inner::before {
      left: -32px;
      top: -32px;
      transform: translate3d(32px, 32px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic.is-active .hamburger-inner::after {
      right: -32px;
      top: -32px;
      transform: translate3d(-32px, 32px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Emphatic Reverse
 */
.hamburger--emphatic-r {
  overflow: hidden; }
  .hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
    .hamburger--emphatic-r .hamburger-inner::after {
      top: 5px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
  .hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent; }
    .hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -32px;
      top: 32px;
      transform: translate3d(32px, -32px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -32px;
      top: 32px;
      transform: translate3d(-32px, -32px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }

/*
 * Minus
 */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }

/*
 * Slider
 */
.hamburger--slider .hamburger-inner {
  top: 1px; }
  .hamburger--slider .hamburger-inner::before {
    top: 5px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider .hamburger-inner::after {
    top: 10px; }
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-2.2857142857px, -3px, 0);
    opacity: 0; }
  .hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-90deg); }

/*
 * Slider Reverse
 */
.hamburger--slider-r .hamburger-inner {
  top: 1px; }
  .hamburger--slider-r .hamburger-inner::before {
    top: 5px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
  .hamburger--slider-r .hamburger-inner::after {
    top: 10px; }
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 5px, 0) rotate(-45deg); }
  .hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(2.2857142857px, -3px, 0);
    opacity: 0; }
  .hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(90deg); }

/*
 * Spin
 */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spin Reverse
 */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
  .hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
  .hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Spring
 */
.hamburger--spring .hamburger-inner {
  top: 1px;
  transition: background-color 0s 0.13s linear; }
  .hamburger--spring .hamburger-inner::before {
    top: 5px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring .hamburger-inner::after {
    top: 10px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent; }
  .hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 5px, 0) rotate(45deg); }
  .hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 5px, 0) rotate(-45deg); }

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--spring-r .hamburger-inner::after {
    top: -10px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
  .hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
  .hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
  .hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
  .hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
  .hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
  .hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
  .hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
  .hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
  .hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }

@font-face {
  font-family: 'bebas_neuebold';
  src: url("../fonts/bebasneue_bold-webfont.woff2") format("woff2"), url("../fonts/bebasneue_bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'bebas_neuebook';
  src: url("../fonts/bebasneue_book-webfont.woff2") format("woff2"), url("../fonts/bebasneue_book-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'bebas_neuelight';
  src: url("../fonts/bebasneue_light-webfont.woff2") format("woff2"), url("../fonts/bebasneue_light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'bebas_neue_regular';
  src: url("../fonts/bebasneue_regular-webfont.woff2") format("woff2"), url("../fonts/bebasneue_regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'bebas_neuethin';
  src: url("../fonts/bebasneue_thin-webfont.woff2") format("woff2"), url("../fonts/bebasneue_thin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
.relative {
  position: relative;
  z-index: 0; }

.overflow {
  overflow: hidden; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.valign {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%); }

.halign {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%); }

.vhalign {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto; }

/* responsive iframe wrapper */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0; }

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100%; }

.typography .alignnone {
  margin: 0px 0px 1.4em 0px; }
.typography .aligncenter,
.typography div.aligncenter {
  display: block;
  margin: 0px auto 1.4em auto; }
.typography .alignright {
  float: right;
  margin: 0px 0px 1.4em 1.4em; }
.typography .alignleft {
  float: left;
  margin: 0px 1.4em 1.4em 0px; }
.typography a img.alignright {
  float: right;
  margin: 0px 0px 1.4em 1.4em; }
.typography a img.alignnone {
  margin: 0px 0px 1.4em 0px; }
.typography a img.alignleft {
  float: left;
  margin: 0px 1.4em 1.4em 0px; }
.typography a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto; }
.typography img {
  height: auto; }
.typography ul, .typography ol {
  margin: 0px 0px 1.4em 0px;
  padding: 0px 0px 0px 20px;
  overflow: hidden; }
.typography a {
  color: #000000;
  text-decoration: underline; }
.typography a:hover {
  text-decoration: none; }
.typography p {
  margin: 0px 0px 1.4em 0px; }
.typography blockquote {
  /* margin:0px 0px $content-margin 0px;
  p:last-child{
  	margin-bottom:0px;
  } */ }

.the-button {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  height: 65px;
  line-height: 65px;
  padding: 0px 20px;
  font-size: 18px;
  color: #fff !important;
  text-decoration: none !important;
  background-color: #48979a;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box; }
  .the-button:focus {
    outline: 0; }
  .the-button:hover {
    background-color: #387577;
    color: #fff !important; }
  .the-button.btn-facebook {
    background-color: #475993; }
  .the-button.btn-twitter {
    background-color: #73a8ea; }
  .the-button.btn-pinterest {
    background-color: #b33b31; }
  .the-button.btn-email {
    background-color: #7c7c7c; }
  .the-button.btn-sms {
    background-color: #f0bf3b; }
  .the-button.btn-share {
    background-color: #a3cc51; }

.btn-pill {
  padding: 0px;
  border: none;
  background: none;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  text-align: center;
  cursor: pointer;
  display: inline-block;
  height: 45px;
  line-height: 47px;
  padding: 0px 30px;
  -webkit-border-radius: 22px;
  -moz-border-radius: 22px;
  -ms-border-radius: 22px;
  -o-border-radius: 22px;
  border-radius: 22px;
  background-clip: padding-box;
  font-family: 'bebas_neuebold';
  font-size: 24px;
  text-transform: uppercase;
  color: #fff !important;
  text-decoration: none !important;
  background-color: #68b7cf; }
  .btn-pill:focus {
    outline: 0; }
  .btn-pill:hover {
    background-color: #41a5c3;
    color: #fff !important; }

.ad-banner {
  margin-bottom: 70px;
  margin-top:70px;
  padding: 0px 30px; 
  position:relative;
  z-index:10000;
}
/*.ad-banner.search-banner{*/
/*  margin-top:-20px;*/
    
/*}*/
  @media only screen and (max-width: 575px) {
      .ad-banner.search-banner{
          margin-top:20px;
            
        }
    .ad-banner {
      padding: 0px 15px;
      margin-top:40px;
      margin-bottom: 40px; } }

.custom-control {
  position: relative; }

.custom-radio .custom-control-input ~ .custom-control-label {
  position: relative;
  padding-left: 40px;
  height: 26px;
  line-height: 26px; }

.custom-radio .custom-control-input ~ .custom-control-label::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0px;
  z-index: -1;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  width: 26px;
  height: 26px;
  background-color: #f5f2f2;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
  border-radius: 13px;
  background-clip: padding-box;
  -webkit-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.41);
  -moz-box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.41);
  box-shadow: 1px 1px 10px 0px rgba(0, 0, 0, 0.41); }

.custom-radio .custom-control-input ~ .custom-control-label::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  left: 0px;
  z-index: -1;
  width: 26px;
  height: 26px;
  -webkit-border-radius: 13px;
  -moz-border-radius: 13px;
  -ms-border-radius: 13px;
  -o-border-radius: 13px;
  border-radius: 13px;
  background-clip: padding-box;
  display: none; }

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #f5f2f2; }

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  display: block;
  background: none;
  background-color: #226d76;
  border: 4px solid #f5f2f2; }

ul.pagination li a.page-link {
  text-decoration: none !important;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  border: none;
  padding: 8px 15px;
  color: #6a6a6a !important; }
ul.pagination li:first-child a.page-link, ul.pagination li:last-child a.page-link {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  border: none; }
ul.pagination li.active a.page-link {
  background-color: #48979a;
  color: #fff !important; }
ul.pagination li.showmore {
  margin-left: 50px; }
  ul.pagination li.showmore a.page-link {
    padding: 8px 30px;
    background-color: #48979a;
    color: #fff !important; }
@media only screen and (max-width: 575px) {
  ul.pagination {
    margin: 0px;
    padding: 0px;
    display: block;
    display: block;
    text-align: center;
    margin: 0px !important;
    padding: 0px !important; }
    ul.pagination li {
      list-style: none; }
    ul.pagination li {
      display: inline-block; }
      ul.pagination li a.page-link {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        background-clip: padding-box; }
      ul.pagination li.showmore {
        margin-left: 0px;
        margin-top: 20px;
        width: 100%;
        clear: left; }
        ul.pagination li.showmore a.page-link {
          -webkit-border-radius: 5px;
          -moz-border-radius: 5px;
          -ms-border-radius: 5px;
          -o-border-radius: 5px;
          border-radius: 5px;
          background-clip: padding-box; }
      ul.pagination li.active a.page-link {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        background-clip: padding-box; } }

.text-red {
  color: #f60302; }

body, * {
  font-family: "Poppins", sans-serif;
  color: #000000; }

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased; }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Poppins", sans-serif; }

input, button, select, textarea, .form-control {
  font-family: "Poppins", sans-serif;
  line-height: normal; }

*:focus,
a:focus,
a:active {
  outline: none;
  color: inherit;
  text-decoration: inherit; }

br {
  font-size: inherit;
  line-height: inherit; }

section {
  display: block; }

img {
  max-width: 100%;
  height: auto; }

a {
  text-decoration: none;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

i {
  color: inherit;
  font-size: inherit; }

strong {
  font-size: inherit;
  line-height: inherit; }

button, input[type=submit] {
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out; }

.form-control {
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  background-clip: padding-box;
  height: 40px;
  border: none;
  border: 1px solid #ccc; }
  .form-control:focus {
    border-color: #000;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none; }
  .form-control::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #000000; }
  .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #000000; }
  .form-control:-ms-input-placeholder {
    /* IE 10+ */
    color: #000000; }
  .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #000000; }

textarea.form-control {
  height: auto; }

select.form-control {
  height: auto; }

.form-group {
  margin-bottom: 25px; }

iframe {
  max-width: 100%; }

svg {
  display: inline-block; }

/* $gutter:8px;
.container {
	padding-right: $gutter;
	padding-left: $gutter;
	.row{
		margin-left:-$gutter;
		margin-right:-$gutter;
		.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto{
			padding-left: $gutter;
			padding-right: $gutter;
		}
	}

	@include mq_up($sm){
		max-width:100%;
	}
	// mq_down_sm

	@include mq_up($md){
		width:100%; max-width:1170px;

		$gutter:11px;
		padding-right: 22px;
		padding-left: 22px;
		.row{
			margin-left:-$gutter;
			margin-right:-$gutter;
			.col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-auto{
				padding-left: $gutter;
				padding-right: $gutter;
			}
		}
	}
	// mq_down_md
} */
.the-carousel {
  display: none; }
  .the-carousel.slick-initialized {
    display: block; }

#mobile-menu-wrapper {
  position: fixed;
  z-index: 200;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100vh;
  background-color: #48979a;
  /* display: none; */
  width: 0px;
  overflow: hidden;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  /* @include hidden; */
  width: 210px;
  left: -100%;
  padding: 0px 15px; }
  #mobile-menu-wrapper h3 {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 30px; }
  #mobile-menu-wrapper ul.main-menu,
  #mobile-menu-wrapper ul.secondary-menu {
    margin: 0px;
    padding: 0px;
    display: block;
    text-align: left;
    margin-bottom: 30px; }
    #mobile-menu-wrapper ul.main-menu li,
    #mobile-menu-wrapper ul.secondary-menu li {
      list-style: none; }
    #mobile-menu-wrapper ul.main-menu li,
    #mobile-menu-wrapper ul.secondary-menu li {
      margin-bottom: 10px; }
      #mobile-menu-wrapper ul.main-menu li a,
      #mobile-menu-wrapper ul.secondary-menu li a {
        color: #fff;
        text-decoration: none;
        text-transform: uppercase;
        font-size: 16px; }
  #mobile-menu-wrapper ul.secondary-menu {
    margin-top: 0px; }
  #mobile-menu-wrapper h4 {
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px; }
  #mobile-menu-wrapper.active {
    width: 210px;
    opacity: 1;
    visibility: visible;
    left: 0px; }

#header {
  height: 107px;
  background-color: rgba(255, 255, 255, 0.55);
  z-index: 100000;
  top: 0;
  position: fixed;
  width: 100%;
  -moz-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  -webkit-transition: all 0.25s ease-in-out;
  -ms-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  backface-visibility: hidden; }
  #header a.logo {
    display: block;
    float: left;
    margin-top: 10px; 
      
  }
  #header ul.main-menu,
  #header ul.secondary-menu {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -ms-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    margin-top: 40px; }
    #header ul.main-menu li,
    #header ul.secondary-menu li {
      list-style: none; }
    #header ul.main-menu li,
    #header ul.secondary-menu li {
      padding: 0px 20px;
      position: relative; }
      #header ul.main-menu li a,
      #header ul.secondary-menu li a {
        font-family: "Roboto", sans-serif;
        font-weight: 900;
        font-size: 18px;
        text-transform: uppercase;
        color: #000;
        text-decoration: none; }
        #header ul.main-menu li a:hover,
        #header ul.secondary-menu li a:hover {
          opacity: .7; }
      #header ul.main-menu li::after,
      #header ul.secondary-menu li::after {
        content: "";
        display: block;
        width: 2px;
        height: 16px;
        background-color: #000;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        right: -1px; }
      #header ul.main-menu li:last-child::after,
      #header ul.secondary-menu li:last-child::after {
        display: none; }
      #header ul.main-menu li.has-submenu,
      #header ul.secondary-menu li.has-submenu {
        position: relative;
        background: url(../img/dropdown-icon.png) right 7px no-repeat; }
        #header ul.main-menu li.has-submenu ul.submenu,
        #header ul.secondary-menu li.has-submenu ul.submenu {
          position: absolute;
          top: 30px;
          right: 0px;
          margin: 0px;
          padding: 0px;
          display: block;
          width: 160px;
          background-color: rgba(255, 255, 255, 0.66);
          opacity: 0;
          visibility: hidden;
          -moz-transition: all 0.25s ease-in-out;
          -o-transition: all 0.25s ease-in-out;
          -webkit-transition: all 0.25s ease-in-out;
          -ms-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out; }
          #header ul.main-menu li.has-submenu ul.submenu li,
          #header ul.secondary-menu li.has-submenu ul.submenu li {
            list-style: none; }
          #header ul.main-menu li.has-submenu ul.submenu li,
          #header ul.secondary-menu li.has-submenu ul.submenu li {
            padding: 10px; }
            #header ul.main-menu li.has-submenu ul.submenu li::after,
            #header ul.secondary-menu li.has-submenu ul.submenu li::after {
              display: none; }
            #header ul.main-menu li.has-submenu ul.submenu li a,
            #header ul.secondary-menu li.has-submenu ul.submenu li a {
              font-size: 16px;
              display: block; }
        #header ul.main-menu li.has-submenu:hover ul.submenu,
        #header ul.secondary-menu li.has-submenu:hover ul.submenu {
          opacity: 1;
          visibility: visible; }
  #header ul.main-menu {
    float: left;
    margin-left: 30px; }
  #header ul.secondary-menu {
    float: right; }
    #header ul.secondary-menu li.has-submenu {
      position: relative;
      background: url(../img/dropdown-icon.png) right 7px no-repeat; }
      #header ul.secondary-menu li.has-submenu ul.submenu {
        position: absolute;
        top: 30px;
        right: 0px;
        margin: 0px;
        padding: 0px;
        display: block;
        width: 150px;
        background-color: rgba(255, 255, 255, 0.66);
        padding-left: 10px;
        opacity: 0;
        visibility: hidden;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
        #header ul.secondary-menu li.has-submenu ul.submenu li {
          list-style: none; }
        #header ul.secondary-menu li.has-submenu ul.submenu li {
          padding: 10px; }
          #header ul.secondary-menu li.has-submenu ul.submenu li::after {
            display: none; }
          #header ul.secondary-menu li.has-submenu ul.submenu li a {
            font-size: 16px;
            display: block; }
      #header ul.secondary-menu li.has-submenu:hover ul.submenu {
        opacity: 1;
        visibility: visible; }
  #header button.btn-menu-open {
    padding: 0px;
    border: none;
    background: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
    background-clip: padding-box;
    text-align: center;
    cursor: pointer;
    /* border:2px solid $red;
    @include border-radius(5px);  */
    padding: 0px;
    /*  width:30px; */
    font-size: 20px;
    font-weight: 600;
    color: #f60302;
    text-transform: uppercase;
    float: right;
    margin-top: 25px;
    display: none; }
    #header button.btn-menu-open:focus {
      outline: 0; }
    #header button.btn-menu-open i.fa.fa-times {
      display: none; }
    #header button.btn-menu-open.active i.fa.fa-bars {
      display: none; }
    #header button.btn-menu-open.active i.fa.fa-times {
      display: inline-block; }
  #header.shrink {
    height: 80px; }
    #header.shrink a.logo {
      margin-top: 5px; }
    #header.shrink ul.main-menu,
    #header.shrink ul.secondary-menu {
      margin-top: 25px; }
  @media only screen and (max-width: 1024px) {
    #header {
      height: 80px; }
      #header a.logo {
        /*margin-top: 25px;*/
        width: 200px; }
      #header ul.main-menu,
      #header ul.secondary-menu {
        margin-top: 25px; }
      #header.shrink a.logo {
        margin-top: 25px; } }
  @media only screen and (max-width: 768px) {

    #header ul.main-menu,
    #header ul.secondary-menu {
      display: none; }
    #header button.btn-menu-open {
      display: block; } }
      
  @media only screen and (max-width: 575px) {
    #header a.logo {
      margin-top:12px!important;
      width: 200px; } }

#banner {
  position: relative;
  overflow: hidden; }
  #banner img.bg {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto; }
  #banner .search-wrapper {
    /* @include vertical-align;  */
    position: absolute;
    top: 60%;
    left: 0px;
    width: 100%;
    z-index: 2;
    backface-visibility: hidden; }
    #banner .search-wrapper .form-control {
      width: 100%;
      height: 46px;
      border: 1px solid #000;
      margin-bottom: 20px;
      padding-right: 210px; }
      #banner .search-wrapper .form-control::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #a9a9a9; }
      #banner .search-wrapper .form-control::-moz-placeholder {
        /* Firefox 19+ */
        color: #a9a9a9; }
      #banner .search-wrapper .form-control:-ms-input-placeholder {
        /* IE 10+ */
        color: #a9a9a9; }
      #banner .search-wrapper .form-control:-moz-placeholder {
        /* Firefox 18- */
        color: #a9a9a9; }
    #banner .search-wrapper .search-button {
      position: absolute;
      right: 16px;
      top: 1px;
      padding: 0px;
      border: none;
      background: none;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      -o-border-radius: 0px;
      border-radius: 0px;
      background-clip: padding-box;
      text-align: center;
      cursor: pointer;
      width: 194px;
      height: 44px;
      background-color: #68b7cf;
      font-family: 'bebas_neuebold';
      font-size: 24px;
      text-transform: uppercase; }
      #banner .search-wrapper .search-button:focus {
        outline: 0; }
      #banner .search-wrapper .search-button::after {
        content: "";
        position: absolute;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        left: -11px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 11px 11px 11px 0;
        border-color: transparent #68b7cf transparent transparent;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
      #banner .search-wrapper .search-button:hover {
        background-color: #41a5c3; }
        #banner .search-wrapper .search-button:hover::after {
          border-color: transparent #41a5c3 transparent transparent; }
    #banner .search-wrapper .search-footer {
      position: relative;
      padding-right: 194px; }
      #banner .search-wrapper .search-footer button.more-options {
        padding: 0px;
        border: none;
        background: none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0px;
        background-clip: padding-box;
        text-align: center;
        cursor: pointer;
        height: 49px;
        padding: 0px 30px;
        background-color: rgba(0, 0, 0, 0.66);
        font-family: "Roboto", sans-serif;
        font-weight: 900;
        font-size: 14px;
        color: #fff;
        text-transform: uppercase;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        background-clip: padding-box; }
        #banner .search-wrapper .search-footer button.more-options:focus {
          outline: 0; }
        #banner .search-wrapper .search-footer button.more-options:hover {
          background-color: rgba(0, 0, 0, 0.88); }
      #banner .search-wrapper .search-footer .more-options-box {
        background-color: rgba(0, 0, 0, 0.66);
        -webkit-border-radius: 5px 5px 5px 0px;
        -moz-border-radius: 5px 5px 5px 0px;
        -ms-border-radius: 5px 5px 5px 0px;
        -o-border-radius: 5px 5px 5px 0px;
        border-radius: 5px 5px 5px 0px;
        background-clip: padding-box;
        padding: 10px 25px 5px 25px;
        display: none; }
        #banner .search-wrapper .search-footer .more-options-box label {
          font-family: "Roboto", sans-serif;
          font-size: 14px;
          color: #fff; }
        #banner .search-wrapper .search-footer .more-options-box .form-control {
          background-color: rgba(0, 0, 0, 0.14);
          border-color: #fff;
          color: #fff; }
        #banner .search-wrapper .search-footer .more-options-box button.fewer-options {
          padding: 0px;
          border: none;
          background: none;
          -webkit-border-radius: 0px;
          -moz-border-radius: 0px;
          -ms-border-radius: 0px;
          -o-border-radius: 0px;
          border-radius: 0px;
          background-clip: padding-box;
          text-align: center;
          cursor: pointer;
          height: 49px;
          padding: 0px 30px;
          background-color: rgba(0, 0, 0, 0.66);
          font-family: "Roboto", sans-serif;
          font-weight: 900;
          font-size: 14px;
          color: #fff;
          text-transform: uppercase;
          -webkit-border-radius: 0px 0px 5px 5px;
          -moz-border-radius: 0px 0px 5px 5px;
          -ms-border-radius: 0px 0px 5px 5px;
          -o-border-radius: 0px 0px 5px 5px;
          border-radius: 0px 0px 5px 5px;
          background-clip: padding-box;
          position: absolute;
          bottom: -49px;
          left: 0px; }
          #banner .search-wrapper .search-footer .more-options-box button.fewer-options:focus {
            outline: 0; }
    #banner .search-wrapper .search-button-2 {
      margin-bottom:20px;
      padding: 0px;
      border: none;
      background: none;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      -o-border-radius: 0px;
      border-radius: 0px;
      background-clip: padding-box;
      text-align: center;
      cursor: pointer;
      width: 100%;
      height: 48px;
      background-color: #48979a;
      font-family: 'bebas_neuebold';
      font-size: 24px;
      text-transform: uppercase;
      position: relative;
      color: #fff; }
      #banner .search-wrapper .search-button-2:focus {
        outline: 0; }
      #banner .search-wrapper .search-button-2::after {
        content: "";
        position: absolute;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        left: -11px;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 11px 11px 11px 0;
        border-color: transparent #48979a transparent transparent;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
      #banner .search-wrapper .search-button-2:hover {
        background-color: #387577; }
        #banner .search-wrapper .search-button-2:hover::after {
          border-color: transparent #387577 transparent transparent; }
  /*#banner::after {*/
  /*  content: "";*/
  /*  width: 100%;*/
  /*  height: 250px;*/
  /*  position: absolute;*/
  /*  bottom: 0px;*/
  /*  left: 0px;*/
  /*  width: 100%;*/
  /*  background: url(../img/frag-white.png) center bottom no-repeat;*/
  /*  background-size: 100% 100%; }*/
  #banner.inner {
    /*height: 400px;*/
    height:357px;
    position: relative; 
    margin-bottom:50px;
  }
    #banner.inner .overlay {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      left: 0px;
      width: 100%;
      z-index: 2; }
      #banner.inner .overlay h1 {
        font-family: 'bebas_neuebold';
        font-size: 107px;
        color: rgba(255, 255, 255, 0.6);
        position: relative; }
        #banner.inner .overlay h1.darker {
          color: rgba(204, 204, 204, 0.6); }
        #banner.inner .overlay h1 span {
          font-family: "Roboto", sans-serif;
          font-weight: 300;
          font-size: 30px;
          color: #000;
          display: block;
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          -webkit-transform: translateY(-50%);
          left: 0px;
          right: 0px;
          margin-left: auto;
          margin-right: auto;
          z-index: 1;
          padding-left: 15px; }
        #banner.inner .overlay h1.alt-style {
          font-family: "Poppins", sans-serif;
          font-size: 36px;
          font-weight: 500;
          color: #000; }
      #banner.inner .overlay h2 {
        font-family: "Poppins", sans-serif;
        font-size: 18px;
        font-weight: 400;
        color: #000;
        background: url(../img/arrow-right-white.png) left center no-repeat;
        padding-left: 30px; }
    #banner.inner::after {
      height: 200px; }
  #banner.no-frag::after {
    display: none; }
  @media only screen and (max-width: 1024px) {
    #banner .search-wrapper {
      top: 45%; }
    /*#banner::after {*/
    /*  height: 150px; }*/
    #banner.inner {
      height: 280px; }
      #banner.inner img.bg {
        height: 280px;
        width: 100%;
        max-width: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%); }
      #banner.inner .overlay h1 {
        font-size: 80px; }
        #banner.inner .overlay h1.alt-style {
          font-size: 26px; }
      #banner.inner::after {
        height: 100px; } }
  @media only screen and (max-width: 575px) {
    #banner {
      height: 400px; }
      #banner img.bg {
        height: 400px;
        width: auto;
        max-width: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%); }
      #banner .search-wrapper {
        top: 35%; }
        #banner .search-wrapper .form-control {
          height: 35px;
          font-size: 14px;
          margin-bottom: 5px;
          padding-right: 0px; }
        #banner .search-wrapper .search-button {
          position: relative;
          right: auto;
          top: auto;
          margin-bottom: 10px;
          width: 100%;
          height: 40px;
          font-size: 22px; }
          #banner .search-wrapper .search-button::after {
            display: none; }
        #banner .search-wrapper .search-footer {
          padding-right: 0px; }
          #banner .search-wrapper .search-footer button.more-options {
            width: 100%;
            height: 40px;
            padding: 0px 30px;
            font-weight: 600;
            font-size: 13px; }
          #banner .search-wrapper .search-footer .more-options-box {
            background-color: rgba(0, 0, 0, 0.66);
            padding: 10px 15px 5px 15px; }
            #banner .search-wrapper .search-footer .more-options-box label {
              font-size: 13px; }
            #banner .search-wrapper .search-footer .more-options-box .form-control {
              background-color: rgba(0, 0, 0, 0.14);
              border-color: #fff;
              color: #fff; }
            #banner .search-wrapper .search-footer .more-options-box button.fewer-options {
              width: 100%;
              height: 40px;
              padding: 0px 30px;
              font-weight: 600;
              font-size: 13px;
              bottom: -40px; }
        #banner .search-wrapper .search-button-2 {
          padding: 0px;
          border: none;
          background: none;
          -webkit-border-radius: 0px;
          -moz-border-radius: 0px;
          -ms-border-radius: 0px;
          -o-border-radius: 0px;
          border-radius: 0px;
          background-clip: padding-box;
          text-align: center;
          cursor: pointer;
          width: 100%;
          height: 38px;
          background-color: #48979a;
          font-family: 'bebas_neuebold';
          font-size: 24px;
          text-transform: uppercase;
          position: relative;
          color: #fff; }
          #banner .search-wrapper .search-button-2:focus {
            outline: 0; }
          #banner .search-wrapper .search-button-2::after {
            display: none; }
          #banner .search-wrapper .search-button-2:hover {
            background-color: #387577; }
            #banner .search-wrapper .search-button-2:hover::after {
              border-color: transparent #387577 transparent transparent; }
              
          #searchForm.search-page{
              max-width:300px;
              display:flex;
              justify-self:center;
              margin-top:24px;
          }
      #banner.inner {
        height: 280px; }
        #banner.inner img.bg {
          width: auto; }
        #banner.inner .overlay h1 {
          font-size: 50px; }
          #banner.inner .overlay h1 span {
            font-size: 20px;
            padding-left: 5px; }
          #banner.inner .overlay h1.alt-style {
            font-size: 22px; }
        #banner.inner::after {
          height: 100px; } }

#top-employer {
  padding-bottom: 80px; }
  #top-employer h3.section-header {
    margin-bottom: 30px;
    text-align: center;
    font-family: 'bebas_neuebold';
    font-size: 107px;
    color: #f6f5f5;
    position: relative; }
    #top-employer h3.section-header span {
      font-family: "Roboto", sans-serif;
      font-weight: 300;
      font-size: 30px;
      color: #68b7cf;
      display: block;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      left: 0px;
      right: 0px;
      margin-left: auto;
      margin-right: auto;
      z-index: 1; }
  #top-employer .the-carousel {
    /* the parent */ }
    #top-employer .the-carousel .slick-slide {
      margin: 0 10px; }
    #top-employer .the-carousel .slick-list {
      margin: 0 -10px; }
    #top-employer .the-carousel .the-slide a {
      display: block;
      text-decoration: none;
      position: relative;
      text-align: center; }
      #top-employer .the-carousel .the-slide a span {
        display: block;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
        #top-employer .the-carousel .the-slide a span.overlay {
          position: absolute;
          z-index: 0;
          top: 0px;
          left: 0px;
          right: 0px;
          bottom: 0px; }
          #top-employer .the-carousel .the-slide a span.overlay::before {
            content: "";
            display: block;
            width: 14px;
            height: 14px;
            position: absolute;
            top: 10px;
            right: 10px;
            border-top: 2px solid #68b7cf;
            border-right: 2px solid #68b7cf;
            -moz-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            -webkit-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
          #top-employer .the-carousel .the-slide a span.overlay::after {
            content: "";
            display: block;
            width: 14px;
            height: 14px;
            position: absolute;
            bottom: 10px;
            left: 10px;
            border-bottom: 2px solid #68b7cf;
            border-left: 2px solid #68b7cf;
            -moz-transition: all 0.25s ease-in-out;
            -o-transition: all 0.25s ease-in-out;
            -webkit-transition: all 0.25s ease-in-out;
            -ms-transition: all 0.25s ease-in-out;
            transition: all 0.25s ease-in-out; }
        #top-employer .the-carousel .the-slide a span.the-thumb {
          position: relative;
          z-index: 2;
          height: 208px;
          background-color: #f2f1f1;
          margin-bottom: 10px; }
          #top-employer .the-carousel .the-slide a span.the-thumb img {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            -webkit-transform: translateY(-50%);
            left: 0px;
            right: 0px;
            margin-left: auto;
            margin-right: auto;
            max-width: 80%; }
        #top-employer .the-carousel .the-slide a span.the-title {
          font-family: "Roboto", sans-serif;
          font-size: 14px;
          font-weight: 700;
          color: #dadada;
          text-transform: uppercase; }
      #top-employer .the-carousel .the-slide a:hover span.the-title {
        color: #056aa4; }
      #top-employer .the-carousel .the-slide a:hover span.overlay {
        background-color: #c4c4c4; }
        #top-employer .the-carousel .the-slide a:hover span.overlay::before {
          border-color: #fff; }
        #top-employer .the-carousel .the-slide a:hover span.overlay::after {
          border-color: #fff; }
  @media only screen and (max-width: 768px) {
    #top-employer h3.section-header {
      margin-bottom: 50px;
      font-size: 80px; }
      #top-employer h3.section-header span {
        font-size: 26px; } }
  @media only screen and (max-width: 575px) {
    #top-employer h3.section-header {
      margin-bottom: 30px;
      font-size: 50px; }
      #top-employer h3.section-header span {
        font-size: 22px; } }

#equality-diversity {
  padding-top: 70px;
  padding-bottom: 70px;
  position: relative; }
  #equality-diversity h3 {
    text-align: center;
    font-family: 'bebas_neuebold';
    font-size: 48px;
    color: #ffffff;
    text-transform: uppercase; }
  #equality-diversity p {
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
    }
  #equality-diversity .job-of-the-week .the-thumb {
    position: relative;
    padding-left: 60px;
    height: 100%; }
    #equality-diversity .job-of-the-week .the-thumb span.vertical-text {
      display: block;
      font-family: 'bebas_neuebold';
      font-size: 54px;
      color: #ffcc00;
      text-transform: uppercase;
      position: absolute;
      bottom: 0px;
      left: 0px;
      -webkit-transform: translateY(100%) rotate(-90deg);
      /* Safari */
      -moz-transform: translateY(100%) rotate(-90deg);
      /* Firefox 3.6 Firefox 4 */
      -ms-transform: translateY(100%) rotate(-90deg);
      /* IE9 */
      -o-transform: translateY(100%) rotate(-90deg);
      /* Opera */
      transform: translateY(100%) rotate(-90deg);
      /* W3C */
      -webkit-transform-origin: left top;
      -moz-transform-origin: left top;
      -ms-transform-origin: left top;
      -o-transform-origin: left top;
      transform-origin: left top; }
    #equality-diversity .job-of-the-week .the-thumb img {
      width: 100%;
      height: 100%; }
  #equality-diversity .job-of-the-week .the-content {
    background-color: #ffcc00;
    height: 100%;
    padding: 20px; }
    #equality-diversity .job-of-the-week .the-content h4 {
      font-family: "Roboto", sans-serif;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 20px; }
    #equality-diversity .job-of-the-week .the-content img.the-logo {
      width: 270px;
      height: 150px;
      margin-bottom: 15px; }
    #equality-diversity .job-of-the-week .the-content .job-desc {
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 30px; }
    #equality-diversity .job-of-the-week .the-content .job-salary {
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-weight: 400;
      line-height: 30px;
      margin-bottom: 10px; }
  #equality-diversity::before {
    content: "";
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    background: url(../img/frag-blue.png) center bottom no-repeat;
    background-size: 100% 100%; 
      background-color:#68b7cf;
  }
  @media only screen and (max-width: 575px) {
    #equality-diversity {
      padding-top: 50px;
      padding-bottom: 50px; }
      #equality-diversity h3 {
        font-size: 34px; }
      #equality-diversity p {
        font-size: 14px; }
      #equality-diversity .job-of-the-week .the-thumb {
        padding-left: 0px; }
        #equality-diversity .job-of-the-week .the-thumb span.vertical-text {
          display: block;
          text-align: center;
          font-size: 34px;
          position: relative;
          bottom: auto;
          left: auto;
          -webkit-transform: none;
          -moz-transform: none;
          -ms-transform: none;
          -o-transform: none;
          transform: none;
          -webkit-transform-origin: none;
          -moz-transform-origin: none;
          -ms-transform-origin: none;
          -o-transform-origin: none;
          transform-origin: none; }
        #equality-diversity .job-of-the-week .the-thumb img {
          width: 100%;
          height: 100%; }
      #equality-diversity .job-of-the-week .the-content {
        background-color: #ffcc00;
        height: 100%;
        padding: 20px; }
        #equality-diversity .job-of-the-week .the-content h4 {
          font-family: "Roboto", sans-serif;
          font-size: 18px;
          font-weight: 700;
          margin-bottom: 20px; }
        #equality-diversity .job-of-the-week .the-content img.the-logo {
          width: auto;
          height: auto;
          margin-bottom: 15px; }
        #equality-diversity .job-of-the-week .the-content .job-desc {
          font-family: "Roboto", sans-serif;
          font-size: 16px;
          font-weight: 400;
          line-height: 30px;
          margin-bottom: 10px; } }

#employer-of-the-week {
  background: url(../img/frag-yellow.png) center bottom no-repeat;
  background-size: 100% 100%;
  padding: 130px 0px 190px 0px; }
  #employer-of-the-week h3 {
    text-align: center;
    font-family: 'bebas_neuebold';
    font-size: 48px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 30px; }
  #employer-of-the-week a.the-logo {
    display: block;
    text-decoration: none;
    padding: 0px 20px; }
    #employer-of-the-week a.the-logo img {
      max-width: 200px; }
  #employer-of-the-week .slick-track {
    display: flex; }
    #employer-of-the-week .slick-track .slick-slide {
      display: flex;
      height: auto;
      align-items: center;
      justify-content: center; }
  @media only screen and (max-width: 575px) {
    #employer-of-the-week h3 {
      font-size: 34px; } }

#home-services {
  padding: 50px 0px;
  text-align: center; }
  #home-services i.fa {
    margin-bottom: 20px; }
  #home-services .the-title {
    font-family: 'bebas_neue_regular';
    font-size: 30px;
    color: #3d454c;
    text-transform: uppercase;
    margin-bottom: 5px; }
  #home-services .the-desc {
    font-family: "Roboto", sans-serif;
    font-size: 16px; }
  @media only screen and (max-width: 768px) {
    #home-services {
      padding: 40px 0px 0px 0px; }
      #home-services .col-md-6 {
        margin-bottom: 40px; } }

#get-job-alerts {
  background: url(../img/frag-brown.png) center bottom no-repeat;
  background-size: 100% 100%;
  padding: 200px 0px 220px 0px; }
  #get-job-alerts .job-alert-box {
    height: 100%;
    background: url(../img/job-alerts-bg.jpg) left center no-repeat;
    position: relative;
    background-size: cover; }
    #get-job-alerts .job-alert-box .the-form {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      left: 55%;
      right: 15px;
      padding-right: 30px;
      text-align: center; }
      #get-job-alerts .job-alert-box .the-form h3 {
        font-family: "Roboto", sans-serif;
        font-size: 24px;
        font-weight: 400;
        margin-bottom: 10px; }
      #get-job-alerts .job-alert-box .the-form .form-control {
        height: 30px;
        -webkit-border-radius: 15px;
        -moz-border-radius: 15px;
        -ms-border-radius: 15px;
        -o-border-radius: 15px;
        border-radius: 15px;
        background-clip: padding-box;
        font-size: 13px;
        font-family: "Roboto", sans-serif;
        font-weight: 300; }
        #get-job-alerts .job-alert-box .the-form .form-control::-webkit-input-placeholder {
          /* Chrome/Opera/Safari */
          color: #8c8c8c;
          font-style: italic; }
        #get-job-alerts .job-alert-box .the-form .form-control::-moz-placeholder {
          /* Firefox 19+ */
          color: #8c8c8c;
          font-style: italic; }
        #get-job-alerts .job-alert-box .the-form .form-control:-ms-input-placeholder {
          /* IE 10+ */
          color: #8c8c8c;
          font-style: italic; }
        #get-job-alerts .job-alert-box .the-form .form-control:-moz-placeholder {
          /* Firefox 18- */
          color: #8c8c8c;
          font-style: italic; }
      #get-job-alerts .job-alert-box .the-form .btn-subscribe {
        float: right;
        padding: 0px;
        border: none;
        background: none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        -ms-border-radius: 0px;
        -o-border-radius: 0px;
        border-radius: 0px;
        background-clip: padding-box;
        text-align: center;
        cursor: pointer;
        text-indent: -9999px;
        width: 10px;
        height: 14px;
        background: url(../img/subscribe-btn.png) center center no-repeat;
        margin-top: -22px;
        margin-right: 12px; }
        #get-job-alerts .job-alert-box .the-form .btn-subscribe:focus {
          outline: 0; }
  @media only screen and (max-width: 768px) {
    #get-job-alerts .col-lg-6 {
      height: 300px;
      margin-bottom: 30px; }
    #get-job-alerts .job-alert-box {
      max-width: 560px;
      margin: 0px auto; }
    #get-job-alerts .video-wrapper iframe {
      margin: 0px auto;
      display: block; } }
  @media only screen and (max-width: 575px) {
    #get-job-alerts {
      margin-bottom: -100px; }
      #get-job-alerts .col-lg-6 {
        height: 260px; }
      #get-job-alerts .job-alert-box .the-form {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        left: 15px;
        right: 15px;
        padding-right: 0px; }
      #get-job-alerts .video-wrapper iframe {
        height: 260px; } }

#locations {
  padding: 70px 0px 90px 0px;
  background: url(../img/locations-bg.jpg) center center no-repeat;
  background-size: cover; }
  #locations h3.section-header {
    margin-bottom: 100px;
    text-align: center;
    font-family: 'bebas_neuebold';
    font-size: 107px;
    color: #89d5ec;
    position: relative; }
    #locations h3.section-header span {
      font-family: "Roboto", sans-serif;
      font-weight: 300;
      font-size: 30px;
      color: #000;
      display: block;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      left: 0px;
      right: 0px;
      margin-left: auto;
      margin-right: auto;
      z-index: 1; }
  #locations .the-location {
    margin-bottom: 30px; }
    #locations .the-location a {
      display: block;
      text-decoration: none;
      width: 280px;
      height: 42px;
      background-color: #fff;
      -webkit-border-radius: 21px;
      -moz-border-radius: 21px;
      -ms-border-radius: 21px;
      -o-border-radius: 21px;
      border-radius: 21px;
      background-clip: padding-box;
      font-family: "Roboto", sans-serif;
      font-size: 16px;
      font-weight: 400;
      color: #000;
      line-height: 42px;
      padding: 0px 30px; }
      #locations .the-location a i.fa {
        font-size: 20px;
        color: #ffcc00;
        margin-right: 10px;
        display: inline-block;
        vertical-align: middle;
        margin-top: -2px; }
      #locations .the-location a:hover {
        background-color: #056aa4;
        color: #fff; }
  @media only screen and (max-width: 768px) {
    #locations {
      padding-bottom: 50px; }
      #locations h3.section-header {
        margin-bottom: 50px;
        font-size: 80px; }
        #locations h3.section-header span {
          font-size: 26px; }
      #locations .the-location a {
        width: 100%;
        padding: 0px 10px;
        font-size: 14px; }
        #locations .the-location a i.fa {
          margin-right: 5px; } }
  @media only screen and (max-width: 575px) {
    #locations h3.section-header {
      margin-bottom: 30px;
      font-size: 50px; }
      #locations h3.section-header span {
        font-size: 22px; } }

#request-callback {
  position: relative;
  overflow: hidden; }
  #request-callback img.bg {
    position: relative;
    z-index: 0;
    width: 100%;
    height: auto; }
  #request-callback .overlay {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0px;
    width: 100%;
    text-align: center; }
    #request-callback .overlay h3 {
      font-family: "Roboto", sans-serif;
      font-size: 30px;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase; }
    #request-callback .overlay a.btn-red {
      display: inline-block;
      text-decoration: none;
      width: 330px;
      height: 72px;
      line-height: 72px;
      background-color: #d80706;
      -webkit-border-radius: 5px;
      -moz-border-radius: 5px;
      -ms-border-radius: 5px;
      -o-border-radius: 5px;
      border-radius: 5px;
      background-clip: padding-box;
      font-size: 24px;
      font-family: "Roboto", sans-serif;
      color: #fff; }
      #request-callback .overlay a.btn-red:hover {
        background-color: #a60505; }
  @media only screen and (max-width: 768px) {
    #request-callback .overlay {
      margin-top: -30px; }
      #request-callback .overlay h3 {
        font-size: 20px; }
      #request-callback .overlay a.btn-red {
        width: 280px;
        height: 62px;
        line-height: 62px;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        -ms-border-radius: 5px;
        -o-border-radius: 5px;
        border-radius: 5px;
        background-clip: padding-box;
        font-size: 20px; } }
  @media only screen and (max-width: 575px) {
    #request-callback {
      height: 300px; }
      #request-callback img.bg {
        width: auto;
        height: 300px;
        max-width: none;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%); }
      #request-callback .overlay h3 {
        font-size: 16px; }
      #request-callback .overlay a.btn-red {
        width: 200px;
        height: 50px;
        line-height: 50px;
        font-size: 16px; } }

#content {
  position: relative;
  z-index: 3;
  font-size: 15px;
  line-height: 22px;
  color: #545454; }
  #content .alignnone {
    margin: 0px 0px 1.4em 0px; }
  #content .aligncenter,
  #content div.aligncenter {
    display: block;
    margin: 0px auto 1.4em auto; }
  #content .alignright {
    float: right;
    margin: 0px 0px 1.4em 1.4em; }
  #content .alignleft {
    float: left;
    margin: 0px 1.4em 1.4em 0px; }
  #content a img.alignright {
    float: right;
    margin: 0px 0px 1.4em 1.4em; }
  #content a img.alignnone {
    margin: 0px 0px 1.4em 0px; }
  #content a img.alignleft {
    float: left;
    margin: 0px 1.4em 1.4em 0px; }
  #content a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  #content img {
    height: auto; }
  #content img.company-img{
    height:100%;
    object-fit:cover;
    }
  #content ul, #content ol {
    margin: 0px 0px 1.4em 0px;
    padding: 0px 0px 0px 20px;
    overflow: hidden; }
  #content a {
    color: #000000;
    text-decoration: underline; }
  #content a:hover {
    text-decoration: none; }
  #content p {
    margin: 0px 0px 1.4em 0px; }
  #content blockquote {
    /* margin:0px 0px $content-margin 0px;
    p:last-child{
    	margin-bottom:0px;
    } */ }
  #content p, #content ul, #content ol {
    font-size: 15px;
    line-height: 22px;
    color: #545454;
    margin-bottom: 30px; }
  #content p a {
    color: #48979a;
    text-decoration: none; }
  #content li {
    color: #545454; }
  #content h2 {
    font-size: 18px;
    /*line-height: 22px;*/
    color: #48979a; }
  #content h3 {
    font-size: 28px;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    margin-bottom: 20px; }
  #content h4 {
    font-size: 30px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    margin-bottom: 20px; }
  #content hr {
    margin: 40px 0px;
    border-color: #999999; }
  #content .form-group {
    margin-bottom: 50px; }
  #content .form-control {
    border: none;
    background-color: #f1f3f4;
    -webkit-box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
    box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.15); }
    #content .form-control::-webkit-input-placeholder {
      /* Chrome/Opera/Safari */
      color: #c6c6c6;
      font-style: italic; }
    #content .form-control::-moz-placeholder {
      /* Firefox 19+ */
      color: #c6c6c6;
      font-style: italic; }
    #content .form-control:-ms-input-placeholder {
      /* IE 10+ */
      color: #c6c6c6;
      font-style: italic; }
    #content .form-control:-moz-placeholder {
      /* Firefox 18- */
      color: #c6c6c6;
      font-style: italic; }
    #content .form-control.the-name {
      background: url(../img/icon-name.png) 15px center no-repeat #f1f3f4;
      padding-left: 45px; }
    #content .form-control.the-email {
      background: url(../img/icon-email.png) 15px center no-repeat #f1f3f4;
      padding-left: 45px; }
    #content .form-control.the-username {
      background: url(../img/icon-email2.png) 15px center no-repeat #f1f3f4;
      padding-left: 45px; }
    #content .form-control.the-password {
      background: url(../img/icon-password.png) 15px center no-repeat #f1f3f4;
      padding-left: 45px; }
  #content input.form-control {
    height: 45px; }
  #content textarea.form-control {
    padding: 20px;
    line-height: 40px; }
  #content .small-divider {
    height: 1px;
    background-color: #48979a;
    width: 86px;
    margin-top: 50px;
    margin-bottom: 20px; }
  @media only screen and (max-width: 1024px) {
    #content h3 {
      font-size: 22px; }
    #content h4 {
      font-size: 20px; } }
  @media only screen and (max-width: 575px) {
    #content .form-group {
      margin-bottom: 30px; }
    #content h4 {
      font-size: 20px; } }

#content ul.clients {
  /* @include reset_ul_block; */
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-top: 40px;
  margin-bottom: 40px; }
  #content ul.clients li {
    list-style: none; }
  #content ul.clients li {
    /* width:20%; float:left; */
    width: 200px;
    margin-bottom: 30px; }
    #content ul.clients li a {
      position: relative;
      display: block;
      height: 185px;
      text-decoration: none;
      margin: 0px auto; }
      #content ul.clients li a::before {
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 0px;
        left: 0px;
        border-top: 1px solid #ccc;
        border-left: 1px solid #ccc;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
      #content ul.clients li a::after {
        content: "";
        display: block;
        width: 30px;
        height: 30px;
        position: absolute;
        bottom: 0px;
        right: 0px;
        border-bottom: 1px solid #ccc;
        border-right: 1px solid #ccc;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
      #content ul.clients li a img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        left: 0px;
        right: 0px;
        margin-left: auto;
        margin-right: auto;
        z-index: 0;
        max-width: 150px; }
      #content ul.clients li a .overlay {
        display: block;
        position: absolute;
        z-index: 1;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px; }
        #content ul.clients li a .overlay::before {
          content: "";
          display: block;
          width: 30px;
          height: 30px;
          position: absolute;
          top: 0px;
          right: 0px;
          border-top: 1px solid #ccc;
          border-right: 1px solid #ccc;
          -moz-transition: all 0.25s ease-in-out;
          -o-transition: all 0.25s ease-in-out;
          -webkit-transition: all 0.25s ease-in-out;
          -ms-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out; }
        #content ul.clients li a .overlay::after {
          content: "";
          display: block;
          width: 30px;
          height: 30px;
          position: absolute;
          bottom: 0px;
          left: 0px;
          border-bottom: 1px solid #ccc;
          border-left: 1px solid #ccc;
          -moz-transition: all 0.25s ease-in-out;
          -o-transition: all 0.25s ease-in-out;
          -webkit-transition: all 0.25s ease-in-out;
          -ms-transition: all 0.25s ease-in-out;
          transition: all 0.25s ease-in-out; }
      #content ul.clients li a:hover::before {
        border-color: #48979a; }
      #content ul.clients li a:hover::after {
        border-color: #48979a; }
      #content ul.clients li a:hover .overlay::before {
        border-color: #48979a; }
      #content ul.clients li a:hover .overlay::after {
        border-color: #48979a; }
@media only screen and (max-width: 768px) {
  #content ul.clients li {
    width: 48%; } }
@media only screen and (max-width: 575px) {
  #content ul.clients li {
    width: 100%; } }

#content .partnerships .the-block {
  margin-bottom: 78px; }
  #content .partnerships .the-block .the-quote {
    width: 40%;
    float: left;
    text-align: center;
    font-size: 18px;
    line-height: 22px;
    font-weight: 600;
    color: #48979a;
    background: url(../img/quote.png) center top no-repeat;
    padding: 100px 15px 80px 15px;
    border-right: 1px solid rgba(72, 151, 154, 0.3); }
  #content .partnerships .the-block .the-list {
    width: 60%;
    float: left;
    padding: 0px 40px; }
    #content .partnerships .the-block .the-list ul {
      margin: 0px;
      padding: 0px;
      display: block;
      margin-top: 40px; }
      #content .partnerships .the-block .the-list ul li {
        list-style: none; }
      #content .partnerships .the-block .the-list ul li {
        background: url(../img/icon-check.png) left 7px no-repeat;
        margin-bottom: 30px;
        padding-left: 25px; }
        #content .partnerships .the-block .the-list ul li:last-child {
          margin-bottom: 0px; }
  #content .partnerships .the-block:nth-child(even) .the-quote {
    border-right: none;
    border-left: 1px solid rgba(72, 151, 154, 0.3); }
@media only screen and (max-width: 768px) {
  #content .partnerships .the-block .the-list {
    padding: 0px 20px; } }
@media only screen and (max-width: 575px) {
  #content .partnerships .the-block .the-quote, #content .partnerships .the-block .the-list {
    width: 100%;
    float: none;
    border: none !important;
    margin-bottom: 30px; }
  #content .partnerships .the-block .the-quote {
    padding: 80px 15px 0px 15px; } }

#content .cv-advice ul.the-menu {
  height: 60px;
  background-color: #48979a;
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-evenly;
  column-gap:30px;
  padding: 0px 60px;
  margin-bottom: 60px; }
  #content .cv-advice ul.the-menu li {
    list-style: none; }
  #content .cv-advice ul.the-menu li a {
    font-family: "Roboto", sans-serif;
    font-size: 20px;
    color: #fff;
    text-decoration: none;
    line-height: 60px; }
    #content .cv-advice ul.the-menu li a:hover {
      opacity: .8; }
@media only screen and (max-width: 1024px) {
  #content .cv-advice ul.the-menu li a {
    font-size: 16px; } }
@media only screen and (max-width: 575px) {
  #content .cv-advice ul.the-menu {
    height: auto;
    padding: 10px 15px;
    margin-bottom: 30px; }
    #content .cv-advice ul.the-menu li {
      /*width: 50%; */
        
    }
      #content .cv-advice ul.the-menu li a {
        line-height: 40px; } }

#content .employers .toolbar {
  margin-bottom: 60px; }
  #content .employers .toolbar ul {
    height: 60px;
    background-color: #48979a;
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center; }
    #content .employers .toolbar ul li {
      list-style: none; }
    #content .employers .toolbar ul li {
      position: relative;
      padding: 0px 15px; }
      #content .employers .toolbar ul li a {
        font-family: "Roboto", sans-serif;
        font-size: 14px;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        line-height: 60px; }
        #content .employers .toolbar ul li a:hover {
          opacity: .8; }
      #content .employers .toolbar ul li::after {
        content: "";
        display: block;
        width: 2px;
        height: 20px;
        background-color: #7fc3c6;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        right: -1px; }
      #content .employers .toolbar ul li:last-child::after {
        display: none; }
#content .employers .col-lg-3 {
  margin-bottom: 70px;
  position: relative; }
  #content .employers .col-lg-3 h3 {
    position: absolute;
    left: 15px;
    top: -4px;
    font-family: 'bebas_neuebold';
    font-size: 30px;
    color: #ffcc00;
    width: 35px;
    text-align: right; }
  #content .employers .col-lg-3 .wrapper {
    height: 100%;
    border-left: 1px solid #ffcc00;
    margin-left: 45px; }
    #content .employers .col-lg-3 .wrapper ul {
      margin: 0px;
      padding: 0px;
      display: block;
      padding-left: 15px; }
      #content .employers .col-lg-3 .wrapper ul li {
        list-style: none; }
      #content .employers .col-lg-3 .wrapper ul li {
        margin-bottom: 7px; }
        #content .employers .col-lg-3 .wrapper ul li a {
          font-size: 16px;
          line-height: 20px;
          font-weight: 500;
          color: #6d6e71;
          text-decoration: none; }
          #content .employers .col-lg-3 .wrapper ul li a:hover {
            color: #000; }
        #content .employers .col-lg-3 .wrapper ul li:last-child {
          margin-bottom: 0px; }
@media only screen and (max-width: 1024px) {
  #content .employers .toolbar {
    margin-bottom: 50px; }
    #content .employers .toolbar ul {
      height: 60px; }
      #content .employers .toolbar ul li {
        padding: 0px 12px; }
        #content .employers .toolbar ul li a {
          font-size: 13px;
          line-height: 60px; }
  #content .employers .col-lg-3 .wrapper ul li {
    margin-bottom: 7px; }
    #content .employers .col-lg-3 .wrapper ul li a {
      font-size: 14px;
      line-height: 18px; } }
@media only screen and (max-width: 768px) {
  #content .employers .toolbar {
    margin-bottom: 50px; }
    #content .employers .toolbar ul {
      height: auto; }
      #content .employers .toolbar ul li {
        width: 10%;
        text-align: center;
        padding: 0px; }
        #content .employers .toolbar ul li a {
          font-size: 13px;
          line-height: 60px; }
  #content .employers .col-lg-3 .wrapper ul li {
    margin-bottom: 7px; }
    #content .employers .col-lg-3 .wrapper ul li a {
      font-size: 14px;
      line-height: 18px; } }
@media only screen and (max-width: 575px) {
  #content .employers .toolbar {
    margin-bottom: 50px; }
    #content .employers .toolbar ul li {
      width: 15%;
      text-align: center; }
      #content .employers .toolbar ul li a {
        font-size: 13px;
        line-height: 50px; }
      #content .employers .toolbar ul li:nth-child(6n)::after {
        display: none; } }

#content.login {
  /* height:100vh; */
  padding-bottom: 250px;
  background: url(../img/login-bg.jpg) center top -100px no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  margin-bottom: -300px; }
  #content.login .login-form {
    overflow: hidden;
    margin: 50px auto 0px auto;
    width: 940px;
    height: 775px;
    background: url(../img/login-fragged.png) center center no-repeat;
    background-size: 100% auto; }
    #content.login .login-form .the-form {
      width: 500px;
      margin: 50px auto 0px auto;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      -webkit-transform: translateY(-50%);
      left: 0px;
      right: 0px;
      margin-left: auto;
      margin-right: auto; }
    #content.login .login-form .form-group {
      margin-bottom: 20px; }
    #content.login .login-form .captcha {
      margin-bottom: 20px; }
    #content.login .login-form .btn-wrapper .the-button {
      width: 248px;
      margin-bottom: 15px; }
    #content.login .login-form .btn-wrapper a.forgot-password {
      font-size: 18px;
      font-weight: 500;
      color: #48979a;
      text-decoration: none; }
      #content.login .login-form .btn-wrapper a.forgot-password:hover {
        color: #387577; }
  @media only screen and (max-width: 768px) {
    #content.login .login-form {
      width: 100%;
      margin: 0px auto; }
      #content.login .login-form .the-form {
        width: 400px;
        margin: 30px auto 0px auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        left: 0px;
        right: 0px;
        margin-left: auto;
        margin-right: auto; } }
  @media only screen and (max-width: 575px) {
    #content.login .login-form {
      height: 500px;
      background-size: 310px 530px; }
      #content.login .login-form .the-form {
        width: 100%;
        padding: 0px 30px;
        margin: 30px auto 0px auto;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        left: 0px;
        right: 0px;
        margin-left: auto;
        margin-right: auto; } }

#forgotPasswordModal .modal-lg {
  max-width: 700px;
  margin: 0px auto; }
  #forgotPasswordModal .modal-lg .modal-content {
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    background-clip: padding-box;
    padding: 90px 70px; }
    #forgotPasswordModal .modal-lg .modal-content h3 {
      font-family: "Roboto", sans-serif;
      font-size: 30px;
      font-weight: 300;
      color: #fff;
      position: absolute;
      top: -100px;
      left: 0px;
      width: 100%;
      text-align: center; }
    #forgotPasswordModal .modal-lg .modal-content button.close {
      position: absolute;
      top: -20px;
      right: -20px;
      padding: 0px;
      border: none;
      background: none;
      -webkit-border-radius: 0px;
      -moz-border-radius: 0px;
      -ms-border-radius: 0px;
      -o-border-radius: 0px;
      border-radius: 0px;
      background-clip: padding-box;
      text-align: center;
      cursor: pointer;
      width: 46px;
      height: 46px;
      background-color: #f60302;
      -webkit-border-radius: 23px;
      -moz-border-radius: 23px;
      -ms-border-radius: 23px;
      -o-border-radius: 23px;
      border-radius: 23px;
      background-clip: padding-box;
      color: #fff;
      opacity: 1; }
      #forgotPasswordModal .modal-lg .modal-content button.close:focus {
        outline: 0; }
      #forgotPasswordModal .modal-lg .modal-content button.close img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        left: 0px;
        right: 0px;
        margin-left: auto;
        margin-right: auto; }
    #forgotPasswordModal .modal-lg .modal-content .form-group {
      margin-bottom: 50px; }
    #forgotPasswordModal .modal-lg .modal-content .form-control {
      border: none;
      background-color: #f1f3f4;
      -webkit-box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
      -moz-box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.15);
      box-shadow: inset 1px 1px 3px 1px rgba(0, 0, 0, 0.15); }
      #forgotPasswordModal .modal-lg .modal-content .form-control::-webkit-input-placeholder {
        /* Chrome/Opera/Safari */
        color: #c6c6c6;
        font-style: italic; }
      #forgotPasswordModal .modal-lg .modal-content .form-control::-moz-placeholder {
        /* Firefox 19+ */
        color: #c6c6c6;
        font-style: italic; }
      #forgotPasswordModal .modal-lg .modal-content .form-control:-ms-input-placeholder {
        /* IE 10+ */
        color: #c6c6c6;
        font-style: italic; }
      #forgotPasswordModal .modal-lg .modal-content .form-control:-moz-placeholder {
        /* Firefox 18- */
        color: #c6c6c6;
        font-style: italic; }
      #forgotPasswordModal .modal-lg .modal-content .form-control.the-name {
        background: url(../img/icon-name.png) 15px center no-repeat #f1f3f4;
        padding-left: 45px; }
      #forgotPasswordModal .modal-lg .modal-content .form-control.the-email {
        background: url(../img/icon-email.png) 15px center no-repeat #f1f3f4;
        padding-left: 45px; }
      #forgotPasswordModal .modal-lg .modal-content .form-control.the-username {
        background: url(../img/icon-email2.png) 15px center no-repeat #f1f3f4;
        padding-left: 45px; }
      #forgotPasswordModal .modal-lg .modal-content .form-control.the-password {
        background: url(../img/icon-password.png) 15px center no-repeat #f1f3f4;
        padding-left: 45px; }
    #forgotPasswordModal .modal-lg .modal-content input.form-control {
      height: 45px; }
    #forgotPasswordModal .modal-lg .modal-content textarea.form-control {
      padding: 20px;
      line-height: 40px; }
    #forgotPasswordModal .modal-lg .modal-content .btn-wrapper img.captcha {
      float: left; }
    #forgotPasswordModal .modal-lg .modal-content .btn-wrapper .the-button {
      width: 210px;
      float: right;
      height: 74px;
      line-height: 74px; }
@media only screen and (max-width: 575px) {
  #forgotPasswordModal .modal-lg {
    max-width: 280px; }
    #forgotPasswordModal .modal-lg .modal-content {
      padding: 0px; }
      #forgotPasswordModal .modal-lg .modal-content h3 {
        font-size: 24px;
        top: -60px; }
      #forgotPasswordModal .modal-lg .modal-content .form-group {
        margin-bottom: 30px; }
      #forgotPasswordModal .modal-lg .modal-content .btn-wrapper img.captcha {
        float: none;
        margin: 0px 0px 20px 0px; }
      #forgotPasswordModal .modal-lg .modal-content .btn-wrapper .the-button {
        float: none;
        width: 100%; } }

#content.register {
  background: url(../img/register-bg.jpg) center top -100px no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  margin-bottom: 0px;
  padding-top: 180px;
  padding-bottom: 50px; }
  #content.register .register-form .the-button {
    width: 200px;
    height: 75px; }
  @media only screen and (max-width: 575px) {
    #content.register {
      padding-top: 130px; }
      #content.register .register-form .the-button {
        width: 100%;
        margin-top: 30px; } }

#content .search-result .the-filters {
  border-right: 1px solid #ccc; }
  #content .search-result .the-filters h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 30px; }
  #content .search-result .the-filters .jobs-by-email {
    margin-bottom: 40px; }
    #content .search-result .the-filters .jobs-by-email .form-control {
      margin-bottom: 20px; }
    #content .search-result .the-filters .jobs-by-email .the-button {
      height: 53px;
      line-height: 53px; }
  #content .search-result .the-filters ul {
    margin: 0px;
    padding: 0px;
    display: block;
    margin-bottom: 50px; }
    #content .search-result .the-filters ul li {
      list-style: none; }
    #content .search-result .the-filters ul li {
      margin-bottom: 3px; }
      #content .search-result .the-filters ul li a {
        text-decoration: none;
        font-size: 16px;
        line-height: 30px;
        display: block; }
        #content .search-result .the-filters ul li a:hover {
          color: #48979a; }
#content .search-result .the-results .wrapper {
  padding-left: 20px; }
#content .search-result .the-results .results-header {
  margin-bottom: 30px; }
  #content .search-result .the-results .results-header .stats {
    float: left; }
  #content .search-result .the-results .results-header .counts {
    float: right;
    color: #bebec0; }
    #content .search-result .the-results .results-header .counts strong {
      color: #000;
      font-weight: 500; }
#content .search-result .the-results .the-vacancy {
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.44);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.44);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.44);
  margin-bottom: 30px;
  padding: 20px; }
  
  #content .search-result .the-results .the-vacancy.top-role{
      position:relative;
      background-color: rgba(120, 193, 233, .15);
      border: 3px solid #34c0c2;
      padding-top:40px;
  }
  #content .search-result .the-results .the-vacancy.top-role .tag{
      position:absolute;
      padding: 5px 20px;
      right:0px;
      top:0px;
      background-color:#34c0c2;
      font-weight: 600;
      text-transform: uppercase;
  }
  #content .search-result .the-results .the-vacancy .the-title {
    text-decoration: none;
    display: block;
    font-size: 22px;
    color: #48979a;
    font-weight: 500; }
    #content .search-result .the-results .the-vacancy .the-title:hover {
      color: #387577; }
  #content .search-result .the-results .the-vacancy .the-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #bfbfbf;
    margin-bottom: 10px; }
    #content .search-result .the-results .the-vacancy .the-subtitle strong {
      font-weight: 500;
      color: #000; }
  #content .search-result .the-results .the-vacancy .the-desc {
    font-size: 14px;
    color: #6a6a6a; }
#content .search-result .the-results ul.pagination {
  margin-top: 80px; }
@media only screen and (max-width: 768px) {
  #content .search-result .the-filters {
    border: none; }
  #content .search-result .the-results .wrapper {
    padding: 0px; } }
@media only screen and (max-width: 575px) {
  #content .search-result .the-filters h2 {
    font-size: 16px;
    margin-bottom: 10px; }
  #content .search-result .the-filters .jobs-by-email {
    margin-bottom: 30px; }
    #content .search-result .the-filters .jobs-by-email .form-control {
      margin-bottom: 20px; }
    #content .search-result .the-filters .jobs-by-email .the-button {
      height: 45px;
      line-height: 45px;
      font-size: 16px; }
  #content .search-result .the-filters ul {
    margin-bottom: 20px; }
    #content .search-result .the-filters ul li {
      margin-bottom: 10px; }
      #content .search-result .the-filters ul li a {
        font-size: 14px;
        line-height: 18px; }
  #content .search-result .the-results .results-header .stats,
  #content .search-result .the-results .results-header .counts {
    float: none;
    width: 100%;
    margin-bottom: 10px; }
  #content .search-result .the-results .wrapper {
    padding: 0px; }
  #content .search-result .the-results .the-vacancy a.the-thumb {
    display: block;
    text-decoration: none;
    margin-bottom: 20px; }
  #content .search-result .the-results .the-vacancy .the-title {
    margin-bottom: 10px; } }

#content.company .the-carousel {
  margin-bottom: 100px; }
  #content.company .the-carousel .slick-track {
    display: flex; }
    #content.company .the-carousel .slick-track .slick-slide {
      display: flex;
      height: auto;
      align-items: center;
      justify-content: center; }
  #content.company .the-carousel .the-slide a {
    text-decoration: none;
    display: block;
    margin: 0px 25px; }
#content.company h3.section-header {
  margin-bottom: 80px;
  text-align: center;
  font-family: 'bebas_neuebold';
  font-size: 107px;
  color: rgba(227, 246, 250, 0.65);
  position: relative; }
  #content.company h3.section-header span {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-size: 30px;
    color: #000;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 0px;
    right: 0px;
    margin-left: auto;
    margin-right: auto;
    z-index: 1; }
@media only screen and (max-width: 768px) {
  #content.company h3.section-header {
    margin-bottom: 50px;
    font-size: 80px; }
    #content.company h3.section-header span {
      font-size: 26px; } }
@media only screen and (max-width: 575px) {
  #content.company h3.section-header {
    margin-bottom: 30px;
    font-size: 50px; }
    #content.company h3.section-header span {
      font-size: 22px; } }

#content.recruiters .service-box {
  margin-bottom: 30px;
  background: url(../img/the-service-bg.jpg) center top no-repeat;
  background-size: cover;
  -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden; }
  #content.recruiters .service-box .the-title {
    height: 70px;
    line-height: 70px;
    padding: 0px 25px;
    font-family: 'bebas_neuebold';
    font-size: 30px;
    text-transform: uppercase;
    color: #48979a;
    background-color: rgba(255, 255, 255, 0.87);
    -webkit-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2); }
  #content.recruiters .service-box .the-content {
    padding: 50px 25px; }
    #content.recruiters .service-box .the-content ul {
      margin: 0px;
      padding: 0px;
      display: block; }
      #content.recruiters .service-box .the-content ul li {
        list-style: none; }
      #content.recruiters .service-box .the-content ul li {
        font-size: 18px;
        color: #494444;
        background: url(../img/icon-check.png) left 7px no-repeat;
        padding-left: 30px;
        margin-bottom: 25px; }
        #content.recruiters .service-box .the-content ul li:last-child {
          margin-bottom: 0px; }
    #content.recruiters .service-box .the-content .the-price {
      font-size: 48px;
      color: #f60302;
      font-weight: 200;
      margin-bottom: 25px; }
      #content.recruiters .service-box .the-content .the-price span {
        font-size: 24px;
        color: inherit;
        display: inline-block;
        vertical-align: middle;
        margin-right: 5px; }
      #content.recruiters .service-box .the-content .the-price.small-text {
        font-size: 24px;
        font-weight: 400; }
    #content.recruiters .service-box .the-content a.the-button {
      width: 100%; }
      #content.recruiters .service-box .the-content a.the-button.small-text {
        font-size: 14px; }
#content.recruiters .equality-networks {
  background: url(../img/frag-grey.png) center center no-repeat;
  background-size: 100% 100%;
  padding: 150px 0px 100px 0px; }
  #content.recruiters .equality-networks h3 {
    font-family: 'bebas_neuebold';
    font-size: 48px;
    text-transform: uppercase;
    color: #48979a;
    margin-bottom: 50px;
    text-align: center; }
  #content.recruiters .equality-networks .the-carousel {
    margin-bottom: 100px; }
    #content.recruiters .equality-networks .the-carousel .the-slide a {
      text-decoration: none;
      display: block;
      margin: 0px 25px; }
  #content.recruiters .equality-networks .slick-track {
    display: flex; }
    #content.recruiters .equality-networks .slick-track .slick-slide {
      display: flex;
      height: auto;
      align-items: center;
      justify-content: center; }
#content.recruiters ul.ccs-logos {
  margin: 0px;
  padding: 0px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-top: 40px; }
  #content.recruiters ul.ccs-logos li {
    list-style: none; }
  #content.recruiters ul.ccs-logos a {
    text-decoration: none;
    display: block; }
@media only screen and (max-width: 1024px) {
  #content.recruiters .service-box .the-content {
    padding: 30px 25px; }
    #content.recruiters .service-box .the-content ul li {
      font-size: 16px;
      margin-bottom: 15px; }
    #content.recruiters .service-box .the-content .the-price {
      font-size: 40px; } }
@media only screen and (max-width: 768px) {
  #content.recruiters .service-box .the-title {
    font-size: 24px; }
  #content.recruiters .service-box .the-content {
    padding: 30px 25px; }
    #content.recruiters .service-box .the-content ul {
      margin-bottom: 15px; }
      #content.recruiters .service-box .the-content ul li {
        font-size: 16px;
        margin-bottom: 15px; }
    #content.recruiters .service-box .the-content .the-price {
      font-size: 40px;
      padding-top: 30px; }
  #content.recruiters .equality-networks h3 {
    font-size: 38px; } }
@media only screen and (max-width: 575px) {
  #content.recruiters .equality-networks h3 {
    font-size: 32px; }
  #content.recruiters ul.ccs-logos {
    margin-bottom: 50px; } }

#content .job-display img.the-logo {
  margin-bottom: 20px;
  margin-top: -160px; }
#content .job-display h1.the-title {
  font-size: 36px;
  font-weight: 500;
  color: #48979a;
  margin-bottom: 10px; }
#content .job-display h2.the-subtitle {
  font-size: 18px;
  font-weight: 400;
  color: #545454;
  margin-bottom: 46px;
  position: relative;
  padding-left: 20px;
  background: url(../img/icon-triangle-right.png) left center no-repeat; }
#content .job-display .job-meta {
  padding: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box;
  background-color: #48979a;
  margin-bottom: 45px; }
  #content .job-display .job-meta * {
    color: #fff; }
  #content .job-display .job-meta ul {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    #content .job-display .job-meta ul li {
      list-style: none; }
    #content .job-display .job-meta ul li .the-label {
      font-family: 'bebas_neue_regular';
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: .04em;
      margin-bottom: 10px; }
      #content .job-display .job-meta ul li .the-label i.fa {
        font-size: 16px;
        color: #000;
        margin-right: 5px; }
    #content .job-display .job-meta ul li .the-value {
      font-size: 16px;
      font-weight: 300; }
  #content .job-display .job-meta a.btn-black {
    display: block;
    height: 52px;
    line-height: 52px;
    background-color: #000;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    background-clip: padding-box;
    text-decoration: none;
    padding: 0px 45px 0px 20px;
    text-transform: uppercase; }
    #content .job-display .job-meta a.btn-black.btn-apply {
      background: url(../img/icon-arrow-right.png) right 20px center no-repeat #000; }
    #content .job-display .job-meta a.btn-black.btn-share {
      background: url(../img/icon-social.png) right 20px center no-repeat #000; }
    #content .job-display .job-meta a.btn-black:hover {
      opacity: .8; }
#content .job-display .job-content {
  margin-bottom: 46px; }
#content .job-display .the-warning {
  position: relative;
  padding-left: 60px;
  font-size: 15px;
  line-height: 22px;
  color: #ff8400;
  padding: 20px 20px 20px 80px;
  margin-bottom: 46px;
  -webkit-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3); }
  #content .job-display .the-warning img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 20px; }
#content .job-display .share-buttons {
  margin-bottom: 40px; }
  #content .job-display .share-buttons ul {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between; }
    #content .job-display .share-buttons ul li {
      list-style: none; }
    #content .job-display .share-buttons ul li a.the-button {
      width: 150px;
      padding: 0px;
      height: 50px;
      line-height: 50px;
      font-size: 16px; }
      #content .job-display .share-buttons ul li a.the-button i.fa {
        margin-right: 5px; }
      #content .job-display .share-buttons ul li a.the-button:hover {
        opacity: .8; }
#content .job-display .translate-box {
  margin-bottom: 30px; }
#content .job-display .translate-box, #content .job-display .download-box {
  position: relative;
  background-color: #ffcc00; }
  #content .job-display .translate-box:last-child, #content .job-display .download-box:last-child {
    margin-bottom: 0px; }
  #content .job-display .translate-box img.bg, #content .job-display .download-box img.bg {
    position: relative;
    z-index: 0;
    width: auto;
    height: 260px; }
  #content .job-display .translate-box .the-content, #content .job-display .download-box .the-content {
    z-index: 1;
    width: 100%;
    position: absolute;
    top: 20px;
    right: 0px;
    padding-left: 400px;
    /* @include vertical-align; left:0px; */ }
    #content .job-display .translate-box .the-content h4, #content .job-display .download-box .the-content h4 {
      font-size: 16px;
      font-weight: 600;
      color: #000;
      text-transform: uppercase;
      margin-bottom: 10px; }
    #content .job-display .translate-box .the-content ul, #content .job-display .download-box .the-content ul {
      margin: 0px;
      padding: 0px;
      display: block; }
      #content .job-display .translate-box .the-content ul li, #content .job-display .download-box .the-content ul li {
        list-style: none; }
      #content .job-display .translate-box .the-content ul li a, #content .job-display .download-box .the-content ul li a {
        font-size: 16px;
        line-height: 30px;
        text-decoration: none; }
        #content .job-display .translate-box .the-content ul li a i.fa, #content .job-display .download-box .the-content ul li a i.fa {
          color: #fff;
          margin-right: 5px; }
        #content .job-display .translate-box .the-content ul li a:hover, #content .job-display .download-box .the-content ul li a:hover {
          opacity: .7; }
@media only screen and (max-width: 1024px) {
  #content .job-display h1.the-title {
    font-size: 30px; }
  #content .job-display img.the-logo {
    margin-top: -80px; }
  #content .job-display .job-meta {
    padding: 15px;
    margin-bottom: 45px; }
    #content .job-display .job-meta ul {
      margin: 0px;
      padding: 0px;
      display: block; }
      #content .job-display .job-meta ul li {
        list-style: none; }
      #content .job-display .job-meta ul li {
        width: 25%;
        float: left; }
    #content .job-display .job-meta a.btn-black {
      margin-top: 20px;
      margin-right: 20px; }
  #content .job-display .the-warning {
    font-size: 14px;
    line-height: 30px;
    padding: 20px 20px 20px 80px; }
  #content .job-display .share-buttons ul li a.the-button {
    width: 110px;
    font-size: 14px; }
  #content .job-display .translate-box .the-content, #content .job-display .download-box .the-content {
    padding-left: 350px; } }
@media only screen and (max-width: 768px) {
  #content .job-display img.the-logo {
    margin-bottom: 10px;
    width: 200px; }
  #content .job-display h2.the-subtitle {
    margin-bottom: 30px; }
  #content .job-display .job-meta {
    margin-bottom: 35px; }
    #content .job-display .job-meta ul {
      margin: 0px;
      padding: 0px;
      display: block; }
      #content .job-display .job-meta ul li {
        list-style: none; }
      #content .job-display .job-meta ul li {
        width: 25%;
        float: left; }
        #content .job-display .job-meta ul li:nth-child(5), #content .job-display .job-meta ul li:nth-child(6) {
          width: 50%; }
  #content .job-display .the-warning {
    font-size: 14px;
    line-height: 30px;
    padding: 20px 20px 20px 80px; }
  #content .job-display .share-buttons ul li {
    width: 50%;
    padding: 0px 10px;
    margin-bottom: 15px; }
    #content .job-display .share-buttons ul li a.the-button {
      width: 100%;
      font-size: 14px; }
  #content .job-display .translate-box, #content .job-display .download-box {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    background-clip: padding-box;
    overflow: hidden; }
    #content .job-display .translate-box img.bg, #content .job-display .download-box img.bg {
      display: none; }
    #content .job-display .translate-box .the-content, #content .job-display .download-box .the-content {
      position: relative;
      padding-bottom: 40px;
      padding-left: 30px;
      min-height: 200px; }
      #content .job-display .translate-box .the-content h4, #content .job-display .download-box .the-content h4 {
        font-size: 14px;
        margin-bottom: 10px; }
      #content .job-display .translate-box .the-content ul li a, #content .job-display .download-box .the-content ul li a {
        font-size: 14px;
        line-height: 24px; } }
@media only screen and (max-width: 575px) {
  #content .job-display h1.the-title {
    font-size: 22px; }
  #content .job-display h2.the-subtitle {
    margin-bottom: 30px; }
  #content .job-display .job-meta {
    margin-bottom: 35px; }
    #content .job-display .job-meta ul li {
      width: 100%;
      float: none;
      margin-bottom: 15px; }
      #content .job-display .job-meta ul{
          padding:20px;
          padding-bottom:10px;
      }
      #content .job-display .job-meta ul li:not(:last-child) {
      margin-bottom: 30px; 
    }
      #content .job-display .job-meta ul li:nth-child(5), #content .job-display .job-meta ul li:nth-child(6) {
        width: 100%; }
    #content .job-display .job-meta a.btn-black {
      margin: 0px; }
  #content .job-display .the-warning {
    font-size: 14px;
    line-height: 30px;
    padding: 20px; }
    #content .job-display .the-warning img {
      position: relative;
      left: auto;
      top: auto;
      transform: none;
      -webkit-transform: none;
      display: block;
      margin: 0px auto 15px auto; }
  #content .job-display .translate-box, #content .job-display .download-box {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border-radius: 5px;
    background-clip: padding-box;
    overflow: hidden; }
    #content .job-display .translate-box img.bg, #content .job-display .download-box img.bg {
      display: none; }
    #content .job-display .translate-box .the-content, #content .job-display .download-box .the-content {
      position: relative;
      padding-bottom: 40px; }
      #content .job-display .translate-box .the-content h4, #content .job-display .download-box .the-content h4 {
        font-size: 14px;
        margin-bottom: 10px; }
      #content .job-display .translate-box .the-content ul li a, #content .job-display .download-box .the-content ul li a {
        font-size: 14px;
        line-height: 24px; } }

#content {
  /* The actual timeline (the vertical ruler) */ }
  #content .timeline {
    position: relative;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px 0px;
    /* The actual timeline (the vertical ruler) */
    /* Container around content */ }
    #content .timeline::after {
      content: "";
      position: absolute;
      width: 15px;
      -webkit-border-radius: 10px;
      -moz-border-radius: 10px;
      -ms-border-radius: 10px;
      -o-border-radius: 10px;
      border-radius: 10px;
      background-clip: padding-box;
      background-color: #68b7cf;
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -3px; }
    #content .timeline .tl-container {
      padding: 10px 40px;
      position: relative;
      background-color: inherit;
      width: 50%;
      /* The circles on the timeline */
      /* The actual content */
      /* Place the container to the left */
      /* Place the container to the right */ }
      #content .timeline .tl-container::after {
        content: "";
        position: absolute;
        width: 30px;
        height: 30px;
        right: -19px;
        background-color: #ffcc00;
        border: 7px solid #056aa4;
        top: 15px;
        border-radius: 50%;
        z-index: 1;
        opacity: .7; }
      #content .timeline .tl-container .content {
        padding: 30px;
        background-color: white;
        position: relative;
        border-radius: 6px;
        /* @include box-shadow(2px, 2px, 5px, rgba(#000, .5)); */
        border: 3px solid #ffcc00; }
        #content .timeline .tl-container .content h2 {
          font-family: 'bebas_neuebold';
          font-size: 50px;
          color: #68b7cf;
          margin-bottom: 20px; }
        #content .timeline .tl-container .content h3 {
          font-family: 'bebas_neuebold';
          font-size: 20px;
          color: #48979a;
          margin-bottom: 10px; }
        #content .timeline .tl-container .content p:last-child {
          margin-bottom: 0px; }
      #content .timeline .tl-container.left {
        left: 0;
        padding-left: 0px;
        /* Add arrows to the left container (pointing right) */ }
        #content .timeline .tl-container.left::before {
          content: " ";
          height: 0;
          position: absolute;
          top: 22px;
          width: 0;
          z-index: 1;
          right: 20px;
          border: medium solid #ffcc00;
          border-width: 10px 0 10px 20px;
          border-color: transparent transparent transparent #ffcc00; }
        #content .timeline .tl-container.left .content {
          text-align: right; }
      #content .timeline .tl-container.right {
        left: 50%;
        padding-right: 0px;
        /* Add arrows to the right container (pointing left) */
        /* Fix the circle for containers on the right side */ }
        #content .timeline .tl-container.right::before {
          content: " ";
          height: 0;
          position: absolute;
          top: 22px;
          width: 0;
          z-index: 1;
          left: 20px;
          border: medium solid #ffcc00;
          border-width: 10px 20px 10px 0;
          border-color: transparent #ffcc00 transparent transparent; }
        #content .timeline .tl-container.right::after {
          left: -11px; }
  @media only screen and (max-width: 768px) {
    #content .timeline {
      padding: 30px 0px;
      /* Place the timelime to the left */ }
      #content .timeline::after {
        left: 20px; }
      #content .timeline .tl-container,
      #content .timeline .tl-container.right {
        /* width:100%; */
        width: auto;
        right: 0px;
        left: 0px;
        padding: 0px;
        margin-bottom: 30px;
        margin-left: 30px; }
      #content .timeline .tl-container::after,
      #content .timeline .tl-container.right::after {
        left: -20px;
        right: auto; }
      #content .timeline .tl-container.left .content,
      #content .timeline .tl-container.right .content {
        text-align: left; }
      #content .timeline .tl-container .content {
        width: auto;
        margin-left: 30px;
        padding: 25px 20px; }
        #content .timeline .tl-container .content h2 {
          font-size: 40px;
          margin-bottom: 15px; }
        #content .timeline .tl-container .content p {
          font-size: 14px; }
      #content .timeline .tl-container.right::before {
        left: 12px; }
      #content .timeline .tl-container.left::before {
        transform: rotate(180deg);
        right: auto;
        left: 12px; } }

#content.diversity-champions .accordion .card {
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  border: none; }
  #content.diversity-champions .accordion .card .card-header {
    background-color: #edfafc;
    border: none;
    padding: 15px 20px; }
    #content.diversity-champions .accordion .card .card-header .btn {
      font-family: "bebas_neuebold";
      font-size: 24px;
      line-height: 1.2em;
      text-transform: uppercase;
      color: #545454;
      text-decoration: none;
      position: relative;
      white-space: unset;
      display: block;
      width: 100%;
      text-align: left;
      height: auto;
      padding: 0px 20px 0px 50px; }
      #content.diversity-champions .accordion .card .card-header .btn img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        left: 0px; }
      #content.diversity-champions .accordion .card .card-header .btn i.fa {
        position: absolute;
        right: 0px;
        top: 1px;
        color: #f60302;
        -moz-transition: all 0.25s ease-in-out;
        -o-transition: all 0.25s ease-in-out;
        -webkit-transition: all 0.25s ease-in-out;
        -ms-transition: all 0.25s ease-in-out;
        transition: all 0.25s ease-in-out; }
      #content.diversity-champions .accordion .card .card-header .btn.collapsed i.fa {
        transform: rotate(180deg); }
  #content.diversity-champions .accordion .card .card-body {
    padding: 30px; }
    #content.diversity-champions .accordion .card .card-body ul.check {
      margin: 0px;
      padding: 0px;
      display: block; }
      #content.diversity-champions .accordion .card .card-body ul.check li {
        list-style: none; }
      #content.diversity-champions .accordion .card .card-body ul.check li {
        margin-bottom: 20px;
        position: relative;
        padding-left: 30px; }
        #content.diversity-champions .accordion .card .card-body ul.check li i.fa {
          color: #48979a;
          position: absolute;
          left: 0px;
          top: 3px; }
    #content.diversity-champions .accordion .card .card-body ul.logos {
      margin: 0px;
      padding: 0px;
      display: -webkit-box;
      display: -moz-box;
      display: -ms-flexbox;
      display: -webkit-flex;
      display: flex;
      flex-wrap: wrap;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
      -webkit-justify-content: flex-start;
      -moz-justify-content: flex-start;
      -ms-justify-content: flex-start;
      -webkit-justify-content: flex-start;
      justify-content: flex-start;
      padding-top: 30px; }
      #content.diversity-champions .accordion .card .card-body ul.logos li {
        list-style: none; }
      #content.diversity-champions .accordion .card .card-body ul.logos li {
        margin-right: 50px; }
        #content.diversity-champions .accordion .card .card-body ul.logos li a {
          display: block;
          text-decoration: nonel; }
        #content.diversity-champions .accordion .card .card-body ul.logos li:last-child {
          margin-right: 0px; }
@media only screen and (max-width: 575px) {
  #content.diversity-champions .accordion .card .card-header {
    padding: 0px 20px; }
    #content.diversity-champions .accordion .card .card-header .btn {
      font-size: 20px;
      line-height: 1.2em;
      padding: 10px 10px 10px 40px; }
      #content.diversity-champions .accordion .card .card-header .btn img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        left: 0px;
        width: 25px; }
  #content.diversity-champions .accordion .card .card-body {
    padding: 15px; } }

#footer-frag {
  margin-top: -250px;
  height: 250px;
  width: 100%;
  position: relative;
  z-index: 1; }
  #footer-frag img {
    width: 100%;
    height: 100%; }
  @media only screen and (max-width: 1024px) {
    #footer-frag {
      margin-top: -150px;
      height: 150px; } }
  @media only screen and (max-width: 768px) {
    #footer-frag {
      margin-top: -100px;
      height: 100px; } }
  #footer-frag.inner {
    margin-top: 0px; }

#footer {
  position: relative;
  z-index: 1;
  padding: 0px 0px 50px 0px;
  overflow: hidden;
  background-color: #64b0c7; }
  #footer ul.socialmedia-menu {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 30px; }
    #footer ul.socialmedia-menu li {
      list-style: none; }
    #footer ul.socialmedia-menu li {
      margin: 0px 8px; }
      #footer ul.socialmedia-menu li a {
        display: block;
        text-decoration: none;
        font-size: 32px;
        color: #fff;
        width: 56px;
        height: 56px;
        line-height: 50px;
        -webkit-border-radius: 28px;
        -moz-border-radius: 28px;
        -ms-border-radius: 28px;
        -o-border-radius: 28px;
        border-radius: 28px;
        background-clip: padding-box;
        border: 3px solid #fff; }
        #footer ul.socialmedia-menu li a:hover {
          color: #056aa4;
          border-color: #056aa4; }
  #footer .copyright {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    color: #000;
    margin-bottom: 20px; }
  #footer ul.footer-menu {
    margin: 0px;
    padding: 0px;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center; }
    #footer ul.footer-menu li {
      list-style: none; }
    #footer ul.footer-menu li {
      padding: 0px 10px;
      position: relative; }
      #footer ul.footer-menu li a {
        font-family: "Roboto", sans-serif;
        font-weight: 400;
        color: #000;
        text-decoration: none;
        text-transform: uppercase; }
      #footer ul.footer-menu li::after {
        content: "";
        display: block;
        width: 1px;
        height: 16px;
        background-color: #000;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        right: -1px; }
      #footer ul.footer-menu li:last-child::after {
        display: none; }
  #footer.inner {
    background-color: #48979a; }
  @media only screen and (max-width: 768px) {
    #footer ul.socialmedia-menu {
      margin-bottom: 30px; }
      #footer ul.socialmedia-menu li {
        margin: 0px 8px; }
        #footer ul.socialmedia-menu li a {
          font-size: 24px;
          width: 46px;
          height: 46px;
          line-height: 42px;
          -webkit-border-radius: 23px;
          -moz-border-radius: 23px;
          -ms-border-radius: 23px;
          -o-border-radius: 23px;
          border-radius: 23px;
          background-clip: padding-box;
          border: 2px solid #fff; }
    #footer .copyright {
      font-size: 14px;
      margin-bottom: 20px; }
    #footer ul.footer-menu li a {
      font-size: 14px; } }

#content.employer-profile {
  /* p{
  	font-size:12px; line-height: 21px;
  } */ }
  #content.employer-profile .employer-profile-header {
    position: relative;
    margin-bottom: 40px; }
    #content.employer-profile .employer-profile-header h1 {
      font-family: 'bebas_neuebold';
      color: #363939;
      font-size: 48px;
      margin-bottom: 30px; }
    #content.employer-profile .employer-profile-header img.the-logo {
      margin-bottom: 0px; }
    #content.employer-profile .employer-profile-header a.visit-site {
      position: absolute;
      right: 15px;
      top: 5px;
      height: 35px;
      line-height: 35px;
      width: 142px;
      font-size: 12px;
      text-transform: uppercase; }
  #content.employer-profile h4 {
    color: #000;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px; }
  #content.employer-profile img.employer-content-img {
    margin-bottom: 0px;
    height: 100%;
    -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5); }
  #content.employer-profile .video-container {
    height: 100%;
    -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5); }
  #content.employer-profile .employer-footer {
    position: relative; }
    #content.employer-profile .employer-footer img {
      width: 100%;
      margin-bottom: 0px;
      -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
      -moz-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5); }
  @media only screen and (max-width: 768px) {
    #content.employer-profile .employer-profile-header h1 {
      font-size: 38px; } }
  @media only screen and (max-width: 575px) {
    #content.employer-profile .employer-profile-header {
      margin-bottom: 40px; }
      #content.employer-profile .employer-profile-header h1 {
        font-size: 30px; }
      #content.employer-profile .employer-profile-header img.the-logo {
        margin-bottom: 0px; }
      #content.employer-profile .employer-profile-header a.visit-site {
        position: relative;
        right: auto;
        top: 0px;
        margin-top: 30px; }
    #content.employer-profile img.employer-content-img {
      margin-bottom: 30px;
      height: auto;
      -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
      -moz-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5); }
    #content.employer-profile .video-container {
      margin-bottom: 30px;
      height: auto;
      -webkit-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
      -moz-box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5);
      box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.5); } }

#content .search-result .the-results .the-vacancy a.the-thumb1 {
    text-decoration:none;
}
/*# sourceMappingURL=app.css.map */
