/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:focus {
  border: 0;
  outline: 0;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #1c8bca;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #1c8bca;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger-label {
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
  text-transform: uppercase;
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

body {
  padding-top: 90px;
  -webkit-transition: 0.3s -webkit-transform cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.3s -webkit-transform cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.3s transform cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: 0.3s transform cubic-bezier(0.075, 0.82, 0.165, 1), 0.3s -webkit-transform cubic-bezier(0.075, 0.82, 0.165, 1);
  color: #000;
  font-family: 'Open Sans';
  font-size: 16px;
}

body #content {
  opacity: 0;
}

@media (max-width: 991px) {
  body {
    padding-top: 0;
  }
}

@media (min-width: 992px) {
  body {
    padding-top: 0;
    -webkit-transform: translateX(0) !important;
            transform: translateX(0) !important;
  }
}

body .font-noto {
  font-family: "Noto Sans";
}

body .font-cond-300 {
  font-family: "Open Sans Condensed";
  font-weight: 300;
}

body .font-cond-700 {
  font-family: "Open Sans Condensed";
  font-weight: 700;
}

body .font-thin {
  font-weight: 100;
}

body .font-light {
  font-weight: 300;
}

body .font-normal {
  font-weight: 400;
}

body .font-bold {
  font-family: "Noto Sans";
  font-weight: 700;
}

body .font-extra-bold {
  font-family: "Noto Sans";
  font-weight: 700;
}

body img {
  max-width: 100%;
}

body.menu-open {
  -webkit-transform: translateX(-250px);
          transform: translateX(-250px);
}

body.menu-open #header nav:after {
  -webkit-transform: translateX(20px);
          transform: translateX(20px);
}

body.menu-open #header nav:before {
  -webkit-transform: translateX(10px);
          transform: translateX(10px);
}

body.menu-open #header nav ul li {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
  -webkit-transition: 0.4s all cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.4s all cubic-bezier(0.19, 1, 0.22, 1);
}

body.menu-open #header nav ul li:nth-child(1) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

body.menu-open #header nav ul li:nth-child(2) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

body.menu-open #header nav ul li:nth-child(3) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

body.menu-open #header nav ul li:nth-child(4) {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

body.menu-open #header nav ul li:nth-child(5) {
  -webkit-transition-delay: 0.7s;
          transition-delay: 0.7s;
}

body.menu-open #header nav ul li:nth-child(6) {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

@media (max-width: 991px) {
  body {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  body {
    font-size: 16px;
  }
}

body a {
  color: #444;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

body .button {
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  padding: 15px 60px;
  margin: 15px 0 0;
  display: inline-block;
  letter-spacing: 2px;
  font-weight: 300;
  outline: none;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  border: 2px solid #ccc;
  color: #333;
  border-radius: 50px;
  overflow: hidden;
}

body .button:after {
  content: '';
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50px;
}

body .button:hover, body .button:focus {
  text-decoration: none;
}

body .button:hover:after, body .button:focus:after {
  width: 0%;
}

body .button.full {
  background: #fff;
}

body .button.blue:hover, body .button.blue:focus {
  border: 2px solid #0da9e4;
}

body .button.green:hover, body .button.green:focus {
  border: 2px solid #b2d421;
}

body .button.yellow:hover, body .button.yellow:focus {
  border: 2px solid #f6a500;
}

body .button.white {
  color: #fff;
}

body .button.white:hover, body .button.white:focus {
  border: 2px solid #f6a500;
}

@media (max-width: 991px) {
  body .button {
    padding: 10px 40px;
  }
}

@media (max-width: 767px) {
  body .button {
    padding: 10px 30px;
  }
}

.top-bar {
  background: #ffffff;
  border-bottom: 1px solid #ccc;
}

.top-bar ul {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.top-bar ul li {
  padding: 10px 0;
  max-width: 50%;
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.top-bar ul li:first-child {
  border-right: 1px solid #ccc;
}

.top-bar a {
  color: #333;
  font-size: 18px;
  display: block;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 300;
}

@media (max-width: 991px) {
  .top-bar a {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .top-bar a {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .top-bar a {
    font-size: 14px;
  }
}

.top-bar a:hover, .top-bar a:focus {
  color: #0da9e4;
  text-decoration: none;
}

#header {
  background-color: #ffffff;
  border-bottom: 1px solid #ccc;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

@media (max-width: 991px) {
  #header {
    -webkit-box-shadow: none;
            box-shadow: none;
    border-bottom: 1px solid #ccc;
    position: relative;
  }
}

#header .hamburger {
  padding-right: 0;
}

#header .logo {
  padding: 10px 0;
  -ms-flex-preferred-size: 100px;
      flex-basis: 100px;
  max-width: 100px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media (max-width: 991px) {
  #header .logo {
    -ms-flex-preferred-size: 70px;
        flex-basis: 70px;
    max-width: 70px;
  }
}

#header .logo span {
  width: 25px;
  height: 70px;
  display: inline-block;
  border-radius: 0%;
  margin: 0;
}

#header .logo .yellow {
  background: #f6a500;
}

#header .logo .green {
  background: #b2d421;
}

#header .logo .blue {
  background: #0da9e4;
}

#header nav {
  padding: 0;
  position: static;
}

@media (max-width: 991px) {
  #header nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
    background: #b2d421;
    height: 100%;
    text-align: left;
  }
  #header nav:before, #header nav:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    -webkit-transform: translateX(250px);
            transform: translateX(250px);
  }
  #header nav:before {
    background: #ed1265;
    -webkit-transition: 0.3s -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: 0.3s -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: 0.3s transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: 0.3s transform cubic-bezier(0.175, 0.885, 0.32, 1.275), 0.3s -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
  #header nav:after {
    background: #072544;
    -webkit-transition: 0.6s -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: 0.6s -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: 0.6s transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition: 0.6s transform cubic-bezier(0.175, 0.885, 0.32, 1.275), 0.6s -webkit-transform cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }
}

#header nav > ul {
  position: static;
}

@media (max-width: 991px) {
  #header nav > ul {
    display: block;
    width: calc(100% - 20px);
    margin-left: auto;
  }
}

#header nav > ul > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
}

@media (max-width: 991px) {
  #header nav > ul > li {
    display: block;
    position: relative;
    z-index: 2;
    opacity: 0;
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
    -webkit-transition: 0.1s all cubic-bezier(0.19, 1, 0.22, 1);
    transition: 0.1s all cubic-bezier(0.19, 1, 0.22, 1);
  }
  #header nav > ul > li:nth-child(1) {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  #header nav > ul > li:nth-child(2) {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  #header nav > ul > li:nth-child(3) {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  #header nav > ul > li:nth-child(4) {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  #header nav > ul > li:nth-child(5) {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
  #header nav > ul > li:nth-child(6) {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}

#header nav > ul > li .submenu {
  z-index: -1;
  padding: 20px 20px;
  opacity: 0;
  -webkit-box-shadow: inset 0 10px 6px -7px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 10px 6px -7px rgba(0, 0, 0, 0.2);
  visibility: hidden;
  top: 100%;
  min-width: 100%;
  left: 0;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  position: absolute;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  background: #f9f9f9;
}

@media (max-width: 991px) {
  #header nav > ul > li .submenu {
    position: relative;
    display: none;
    min-width: none;
    max-width: 100%;
  }
}

#header nav > ul > li .submenu .sub-item {
  margin-left: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

#header nav > ul > li .submenu .sub-item a {
  color: #000;
  font-size: 16px;
  letter-spacing: 0;
  letter-spacing: 1px;
  display: block;
  text-transform: none;
  white-space: nowrap;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #e4e4e4;
  line-height: 1.2;
}

#header nav > ul > li .submenu .sub-item a:hover, #header nav > ul > li .submenu .sub-item a:focus {
  color: #f6a500;
  text-decoration: none;
}

@media (max-width: 991px) {
  #header nav > ul > li .submenu .sub-item a {
    font-size: 14px;
    white-space: normal;
  }
}

#header nav > ul > li .submenu .sub-item:last-child a {
  border-bottom: 0px solid #e4e4e4;
}

#header nav > ul > li > a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  outline: none;
  color: #000;
  text-decoration: none;
  text-transform: lowercase;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.3);
  font-size: 16px;
  padding: 0;
  margin: 0 10px;
  padding: 0 10px;
  letter-spacing: 1px;
}

@media (max-width: 991px) {
  #header nav > ul > li > a {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 15px 20px;
    color: #fff;
    margin: 0;
  }
}

#header nav > ul > li:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0px;
  background: #f6a500;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}

#header nav > ul > li:hover:after, #header nav > ul > li:focus:after {
  opacity: 1;
  height: 5px;
}

@media (max-width: 991px) {
  #header nav > ul > li:hover:after, #header nav > ul > li:focus:after {
    display: none;
  }
}

#header nav > ul > li:hover .submenu, #header nav > ul > li:focus .submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  z-index: 10;
}

@media (max-width: 991px) {
  #header nav > ul > li:hover .submenu, #header nav > ul > li:focus .submenu {
    display: block;
  }
}

#header nav > ul > li:hover .submenu > .sub-item a:after, #header nav > ul > li:focus .submenu > .sub-item a:after {
  display: none;
}

#intro {
  padding: 10vmin 0;
  background: #072544;
  position: relative;
  overflow: hidden;
  /*background-color: #032628;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25'%3E%3Cdefs%3E%3ClinearGradient id='a' gradientUnits='userSpaceOnUse' x1='0' x2='0' y1='0' y2='100%25' gradientTransform='rotate(250,942,531)'%3E%3Cstop offset='0' stop-color='%23032628'/%3E%3Cstop offset='1' stop-color='%23147933'/%3E%3C/linearGradient%3E%3Cpattern patternUnits='userSpaceOnUse' id='b' width='1473' height='1227.5' x='0' y='0' viewBox='0 0 1080 900'%3E%3Cg fill-opacity='0.05'%3E%3Cpolygon fill='%23444' points='90 150 0 300 180 300'/%3E%3Cpolygon points='90 150 180 0 0 0'/%3E%3Cpolygon fill='%23AAA' points='270 150 360 0 180 0'/%3E%3Cpolygon fill='%23DDD' points='450 150 360 300 540 300'/%3E%3Cpolygon fill='%23999' points='450 150 540 0 360 0'/%3E%3Cpolygon points='630 150 540 300 720 300'/%3E%3Cpolygon fill='%23DDD' points='630 150 720 0 540 0'/%3E%3Cpolygon fill='%23444' points='810 150 720 300 900 300'/%3E%3Cpolygon fill='%23FFF' points='810 150 900 0 720 0'/%3E%3Cpolygon fill='%23DDD' points='990 150 900 300 1080 300'/%3E%3Cpolygon fill='%23444' points='990 150 1080 0 900 0'/%3E%3Cpolygon fill='%23DDD' points='90 450 0 600 180 600'/%3E%3Cpolygon points='90 450 180 300 0 300'/%3E%3Cpolygon fill='%23666' points='270 450 180 600 360 600'/%3E%3Cpolygon fill='%23AAA' points='270 450 360 300 180 300'/%3E%3Cpolygon fill='%23DDD' points='450 450 360 600 540 600'/%3E%3Cpolygon fill='%23999' points='450 450 540 300 360 300'/%3E%3Cpolygon fill='%23999' points='630 450 540 600 720 600'/%3E%3Cpolygon fill='%23FFF' points='630 450 720 300 540 300'/%3E%3Cpolygon points='810 450 720 600 900 600'/%3E%3Cpolygon fill='%23DDD' points='810 450 900 300 720 300'/%3E%3Cpolygon fill='%23AAA' points='990 450 900 600 1080 600'/%3E%3Cpolygon fill='%23444' points='990 450 1080 300 900 300'/%3E%3Cpolygon fill='%23222' points='90 750 0 900 180 900'/%3E%3Cpolygon points='270 750 180 900 360 900'/%3E%3Cpolygon fill='%23DDD' points='270 750 360 600 180 600'/%3E%3Cpolygon points='450 750 540 600 360 600'/%3E%3Cpolygon points='630 750 540 900 720 900'/%3E%3Cpolygon fill='%23444' points='630 750 720 600 540 600'/%3E%3Cpolygon fill='%23AAA' points='810 750 720 900 900 900'/%3E%3Cpolygon fill='%23666' points='810 750 900 600 720 600'/%3E%3Cpolygon fill='%23999' points='990 750 900 900 1080 900'/%3E%3Cpolygon fill='%23999' points='180 0 90 150 270 150'/%3E%3Cpolygon fill='%23444' points='360 0 270 150 450 150'/%3E%3Cpolygon fill='%23FFF' points='540 0 450 150 630 150'/%3E%3Cpolygon points='900 0 810 150 990 150'/%3E%3Cpolygon fill='%23222' points='0 300 -90 450 90 450'/%3E%3Cpolygon fill='%23FFF' points='0 300 90 150 -90 150'/%3E%3Cpolygon fill='%23FFF' points='180 300 90 450 270 450'/%3E%3Cpolygon fill='%23666' points='180 300 270 150 90 150'/%3E%3Cpolygon fill='%23222' points='360 300 270 450 450 450'/%3E%3Cpolygon fill='%23FFF' points='360 300 450 150 270 150'/%3E%3Cpolygon fill='%23444' points='540 300 450 450 630 450'/%3E%3Cpolygon fill='%23222' points='540 300 630 150 450 150'/%3E%3Cpolygon fill='%23AAA' points='720 300 630 450 810 450'/%3E%3Cpolygon fill='%23666' points='720 300 810 150 630 150'/%3E%3Cpolygon fill='%23FFF' points='900 300 810 450 990 450'/%3E%3Cpolygon fill='%23999' points='900 300 990 150 810 150'/%3E%3Cpolygon points='0 600 -90 750 90 750'/%3E%3Cpolygon fill='%23666' points='0 600 90 450 -90 450'/%3E%3Cpolygon fill='%23AAA' points='180 600 90 750 270 750'/%3E%3Cpolygon fill='%23444' points='180 600 270 450 90 450'/%3E%3Cpolygon fill='%23444' points='360 600 270 750 450 750'/%3E%3Cpolygon fill='%23999' points='360 600 450 450 270 450'/%3E%3Cpolygon fill='%23666' points='540 600 630 450 450 450'/%3E%3Cpolygon fill='%23222' points='720 600 630 750 810 750'/%3E%3Cpolygon fill='%23FFF' points='900 600 810 750 990 750'/%3E%3Cpolygon fill='%23222' points='900 600 990 450 810 450'/%3E%3Cpolygon fill='%23DDD' points='0 900 90 750 -90 750'/%3E%3Cpolygon fill='%23444' points='180 900 270 750 90 750'/%3E%3Cpolygon fill='%23FFF' points='360 900 450 750 270 750'/%3E%3Cpolygon fill='%23AAA' points='540 900 630 750 450 750'/%3E%3Cpolygon fill='%23FFF' points='720 900 810 750 630 750'/%3E%3Cpolygon fill='%23222' points='900 900 990 750 810 750'/%3E%3Cpolygon fill='%23222' points='1080 300 990 450 1170 450'/%3E%3Cpolygon fill='%23FFF' points='1080 300 1170 150 990 150'/%3E%3Cpolygon points='1080 600 990 750 1170 750'/%3E%3Cpolygon fill='%23666' points='1080 600 1170 450 990 450'/%3E%3Cpolygon fill='%23DDD' points='1080 900 1170 750 990 750'/%3E%3C/g%3E%3C/pattern%3E%3C/defs%3E%3Crect x='0' y='0' fill='url(%23a)' width='100%25' height='100%25'/%3E%3Crect x='0' y='0' fill='url(%23b)' width='100%25' height='100%25'/%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
background-position: center;
/* background by SVGBackgrounds.com */
}

@media (max-width: 1199px) {
  #intro {
    padding: 8vmin 0;
  }
}

@media (max-width: 991px) {
  #intro {
    padding: 6vmin 0;
  }
}

@media (max-width: 767px) {
  #intro {
    text-align: center;
  }
  #intro:before {
    content: '';
    position: absolute;
    width: calc(50% + 5px);
    height: 200%;
    top: 0;
    right: 0;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(0deg);
    background: #11355f;
    z-index: 1;
  }
}

#intro .header-image {
  position: absolute;
  top: 0;
  height: 100%;
  right: 0;
}

@media (max-width: 767px) {
  #intro .header-image {
    display: none;
  }
}

#intro h1 {
  color: #a7e7ff;
  font-weight: 100;
  font-size: 25px;
  margin: 0;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  #intro h1 {
    font-size: 23px;
  }
}

@media (max-width: 991px) {
  #intro h1 {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  #intro h1 {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  #intro h1 {
    margin-top: 10px;
  }
}

#intro h1 .first-word {
  font-size: 60px;
  font-weight: 500;
  margin-bottom: 10px;
  display: inline-block;
  line-height: 1;
  color: #fff;
}

@media (max-width: 1199px) {
  #intro h1 .first-word {
    font-size: 50px;
  }
}

@media (max-width: 991px) {
  #intro h1 .first-word {
    font-size: 40px;
  }
}

#intro h1 a {
  color: #fff;
}

#intro h1 a.yellow {
  color: #f6a500;
  border-bottom: 1px dotted transparent;
}

#intro h1 a.green {
  color: #b2d421;
  border-bottom: 1px dotted transparent;
}

#intro h1 a.blue {
  color: #0da9e4;
  border-bottom: 1px dotted transparent;
}

#intro h1 a:hover, #intro h1:focus {
  border-bottom: 1px dashed #fff;
  text-decoration: none;
}

#intro h2 {
  font-weight: 300;
  color: #fff;
  margin: 0;
  font-weight: 300;
  display: inline-block;
  padding-top: 10px;
  font-size: 40px;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  #intro h2 {
    font-size: 30px;
  }
}

@media (max-width: 991px) {
  #intro h2 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  #intro h2 {
    margin-top: 20px;
  }
}

#intro p {
  color: #b2d421;
  font-size: 26px;
  position: relative;
  z-index: 2;
  font-weight: 300;
}

@media (max-width: 991px) {
  #intro p {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  #intro p {
    font-size: 16px;
  }
}

#rehabilitation {
  width: 55%;
}

.title {
  padding: 7vmin 0;
  text-align: center;
}

@media (max-width: 1199px) {
  .title {
    padding: 6vmin 0;
  }
}

@media (max-width: 991px) {
  .title {
    padding: 5vmin 0;
  }
}

.title h3 {
  font-weight: 900;
  font-size: 40px;
  color: #333;
}

@media (max-width: 1199px) {
  .title h3 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .title h3 {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .title h3 {
    font-size: 28px;
  }
}

.title p {
  font-weight: 300;
  font-size: 18px;
  padding: 0 100px;
  line-height: 1.6;
  margin-bottom: 0;
  color: #000;
}

@media (max-width: 1199px) {
  .title p {
    padding: 0 80px;
  }
}

@media (max-width: 991px) {
  .title p {
    padding: 0 60px;
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .title p {
    padding: 0 20px;
    font-size: 16px;
    line-height: 1.4;
  }
}

@media (max-width: 574px) {
  .title p {
    padding: 0 0px;
    font-size: 15px;
  }
}

.testimonials {
  padding: 7vmin 0;
  color: #fff;
  font-size: 27px;
  font-weight: 300;
  font-style: italic;
  background: #0da9e4;
  display: none;
  margin-top: 40px;
}

@media (max-width: 1199px) {
  .testimonials {
    font-size: 23px;
  }
}

@media (max-width: 991px) {
  .testimonials {
    margin-top: 22px;
    font-size: 20px;
    padding: 5vmin 0;
    line-height: 1.3;
    font-weight: 400;
  }
}

@media (max-width: 767px) {
  .testimonials {
    font-size: 18px;
    padding: 25px 0;
    line-height: 1.3;
  }
}

.testimonials .testimonial {
  position: relative;
}

.testimonials .testimonial .name {
  position: relative;
  padding-top: 20px;
  margin-top: 20px;
  display: block;
  font-weight: 400;
  font-size: 18px;
  font-style: normal;
}

@media (max-width: 991px) {
  .testimonials .testimonial .name {
    font-size: 17px;
  }
}

@media (max-width: 767px) {
  .testimonials .testimonial .name {
    font-size: 16px;
    padding-top: 15px;
    margin-top: 15px;
  }
}

.testimonials .testimonial .name:after {
  content: '';
  display: block;
  width: 200px;
  height: 1px;
  position: absolute;
  top: 0;
  left: calc(50% - 100px);
  background-color: #ccc;
}

@media (max-width: 991px) {
  .testimonials .testimonial .name:after {
    background-color: #fff;
  }
}

.services .service {
  padding: 100px 0;
  position: relative;
}

@media (max-width: 1199px) {
  .services .service {
    padding: 80px 0;
  }
}

@media (max-width: 991px) {
  .services .service {
    padding: 20px 0;
  }
}

@media (max-width: 767px) {
  .services .service {
    padding: 40px 0;
  }
}

.services .service:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23636363' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  .services .service:before {
    width: 100%;
  }
}

.services .service:nth-child(2) .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.services .service:nth-child(2) .row .inner {
  text-align: right;
}

@media (max-width: 767px) {
  .services .service:nth-child(2) .row .inner {
    text-align: center;
  }
}

.services .service:nth-child(2):before {
  display: none;
}

.services .service:nth-child(2):after {
  position: absolute;
  content: '';
  width: 50%;
  height: 100%;
  right: 0;
  z-index: 1;
  top: 0;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23636363' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  .services .service:nth-child(2):after {
    display: none;
  }
}

.services .service .svg-container {
  width: 45%;
  position: relative;
  z-index: 10;
  background: #fff;
  border: 2px solid #ccc;
  padding: 45px;
  border-radius: 50%;
}

@media (max-width: 991px) {
  .services .service .svg-container {
    width: 65%;
  }
}

@media (max-width: 767px) {
  .services .service .svg-container {
    width: 200px;
  }
}

@media (max-width: 575px) {
  .services .service .svg-container {
    width: 150px;
    padding: 30px;
  }
}

.services .service .inner {
  padding: 0 50px;
}

@media (max-width: 1199px) {
  .services .service .inner {
    padding: 0 40px;
  }
}

@media (max-width: 991px) {
  .services .service .inner {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .services .service .inner {
    padding: 0 0;
    text-align: center;
  }
}

.services .service .inner h3 {
  font-size: 35px;
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 15px;
  padding-bottom: 15px;
  color: #444;
}

@media (max-width: 1199px) {
  .services .service .inner h3 {
    font-size: 35px;
  }
}

@media (max-width: 991px) {
  .services .service .inner h3 {
    font-size: 25px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .services .service .inner h3 {
    font-size: 25px;
    margin-top: 25px;
  }
}

@media (max-width: 575px) {
  .services .service .inner h3 {
    margin-top: 15px;
  }
}

.services .service .inner h3.blue {
  border-bottom: 5px solid #0da9e4;
}

.services .service .inner h3.yellow {
  border-bottom: 5px solid #ed1265;
}

.services .service .inner h3.green {
  border-bottom: 5px solid #b2d421;
}

@media (max-width: 767px) {
  .services .service .inner h3 {
    border-width: 3px !important;
  }
}

.services .service .inner p {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #000;
}

@media (max-width: 991px) {
  .services .service .inner p {
    font-size: 15px;
  }
}

.call-now {
  background: #555;
  padding: 40px 0;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .call-now {
    margin-bottom: 0px;
  }
}

.call-now h3 {
  font-size: 25px;
  color: #fff;
  margin: 20px 0;
  margin-right: 50px;
}

@media (max-width: 1199px) {
  .call-now h3 {
    margin-right: 0px;
    font-size: 23px;
  }
}

@media (max-width: 991px) {
  .call-now h3 {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .call-now h3 {
    font-size: 18px;
  }
}

.call-now .button {
  margin: 20px 0;
}

@media (max-width: 767px) {
  .call-now .button {
    margin-bottom: 0px;
  }
}

.call-now svg {
  margin-right: 50px;
  fill: #fff;
}

.call-now svg #line-one {
  fill: #0da9e4;
}

.call-now svg #line-two {
  fill: #b2d421;
}

@media (max-width: 1199px) {
  .call-now svg {
    margin-right: 0px;
  }
}

@media (max-width: 767px) {
  .call-now svg {
    width: 65px;
    height: 65px;
  }
}

.three-parts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.three-parts div {
  height: 10px;
  -ms-flex-preferred-size: 33.333333%;
      flex-basis: 33.333333%;
  max-width: 33.3333333%;
}

.three-parts div:nth-child(1) {
  background: #ed1265;
}

.three-parts div:nth-child(2) {
  background: #b2d421;
}

.three-parts div:nth-child(3) {
  background: #0da9e4;
}

footer {
  background: #072544;
  padding: 50px 0;
  color: #fff;
}

@media (max-width: 767px) {
  footer {
    text-align: center;
  }
  footer h4 {
    margin-top: 30px;
    font-weight: 700 !important;
  }
}

footer .footer-logo {
  width: 60px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  padding: 0;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  footer .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
}

footer .footer-logo span {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 50%;
  margin: 2px;
}

footer .footer-logo .yellow {
  background: #fff;
}

footer .footer-logo .green {
  background: #fff;
}

footer .footer-logo .blue {
  background: #fff;
}

footer .footer-title {
  color: #fff;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 20px;
  display: block;
}

@media (max-width: 767px) {
  footer .footer-title br {
    display: none;
  }
}

footer .footer-title .first-word {
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 3px;
}

footer .footer-title .yellow {
  color: #f6a500;
}

footer .footer-title .green {
  color: #b2d421;
}

footer .footer-title .blue {
  color: #0da9e4;
}

footer .navbar-nav {
  padding-top: 10px;
  border-top: 1px solid #666;
}

@media (max-width: 767px) {
  footer .navbar-nav {
    border-top: 0px solid #666;
    text-align: center;
  }
}

footer .navbar-nav li a {
  color: #fff;
  font-weight: 300;
  padding: 0;
  font-size: 17px;
}

footer .navbar-nav li a:hover, footer .navbar-nav li a:focus {
  color: #0da9e4;
  text-decoration: none;
}

@media (max-width: 767px) {
  footer .contact-links li:first-child {
    max-width: 300px;
    margin: 0 auto;
  }
}

footer .contact-links li a {
  font-size: 17px;
  color: #fff;
  letter-spacing: 1px;
  padding: 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 767px) {
  footer .contact-links li a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 16px;
  }
}

footer .contact-links li a .circle {
  max-width: 30px;
  -ms-flex-preferred-size: 30px;
      flex-basis: 30px;
  height: 30px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
  margin-right: 20px;
  border: 1px solid #fff;
}

.copyright {
  background: #05182d;
  padding: 15px;
  color: #e4e4e4;
}

.copyright p {
  margin-bottom: 0;
}

.news {
  margin: 0 -15px;
}

.news .news-item-wrapper {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  padding: 15px;
  margin-bottom: 40px;
}

@media (max-width: 767px) {
  .news .news-item-wrapper {
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 0;
    padding-bottom: 30px;
  }
}

@media (max-width: 991px) {
  .news .news-item-wrapper {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
  }
}

.news .news-item-wrapper .news-item {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  position: relative;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23636363' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  padding: 0px;
  color: #333;
}

.news .news-item-wrapper .news-item .inner {
  z-index: 2;
  position: relative;
}

.news .news-item-wrapper .news-item .details {
  padding: 20px;
}

.news .news-item-wrapper .news-item .date {
  padding: 5px 20px;
  font-weight: 400;
  font-size: 16px;
  display: block;
  background: #b2d421;
  color: #fff;
  margin-bottom: 0px;
}

.news .news-item-wrapper .news-item .image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 767px) {
  .news .news-item-wrapper .news-item .image {
    height: 40vw;
  }
}

@media (max-width: 575px) {
  .news .news-item-wrapper .news-item .image {
    height: 50vw;
  }
}

.news .news-item-wrapper .news-item h4 {
  font-weight: 300;
  font-size: 20px;
  color: #333;
}

@media (max-width: 991px) {
  .news .news-item-wrapper .news-item h4 {
    font-size: 18px;
  }
}

.news .news-item-wrapper .news-item p {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}

@media (max-width: 991px) {
  .news .news-item-wrapper .news-item p {
    font-size: 15px;
    line-height: 1.4;
  }
}

.news .news-item-wrapper .news-item .button {
  padding: 10px 40px;
  background: #fff;
}

@media (max-width: 991px) {
  .news .news-item-wrapper .news-item .button {
    padding: 10px 30px;
  }
}

.page-header {
  background: #072544;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1199px) {
  .page-header {
    padding: 35px 0;
  }
}

@media (max-width: 991px) {
  .page-header {
    padding: 30px 0;
  }
}

@media (max-width: 767px) {
  .page-header {
    padding: 20px 0;
  }
}

.page-header .h1, .page-header h1 {
  font-size: 45px;
  color: #fff;
  margin: 0;
  margin-bottom: 5px;
}

@media (max-width: 1199px) {
  .page-header .h1, .page-header h1 {
    font-size: 40px;
  }
}

@media (max-width: 991px) {
  .page-header .h1, .page-header h1 {
    font-size: 35px;
  }
}

@media (max-width: 767px) {
  .page-header .h1, .page-header h1 {
    font-size: 25px;
  }
}

.page-header p {
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-style: italic;
  font-weight: 100;
}

@media (max-width: 1199px) {
  .page-header p {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .page-header p {
    font-size: 16px;
    line-height: 1.2;
  }
}

@media (max-width: 767px) {
  .page-header p {
    font-size: 14px;
  }
}

.page-header .header-image {
  background-size: cover;
  background-position: 50% 50%;
  width: 500px;
  height: 100%;
  position: absolute;
  right: -1px;
  top: 0;
}

@media (max-width: 991px) {
  .page-header .header-image {
    display: none;
  }
}

.page-header .header-image:before {
  content: '';
  width: 400px;
  position: absolute;
  top: 0;
  height: 100%;
  left: 0;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#555555+0,555555+18,000000+100 */
  background: #072544;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: -webkit-gradient(linear, left top, right top, from(#072544), color-stop(18%, #072544), to(transparent));
  background: linear-gradient(to right, #072544 0%, #072544 18%, transparent 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.breadcrumb-container {
  background: #fff;
  border-bottom: 1px solid #e4e4e4;
  margin-bottom: 30px;
}

@media (max-width: 991px) {
  .breadcrumb-container {
    display: none;
  }
}

.breadcrumb-container .breadcrumb {
  background: #fff;
  margin-bottom: 0;
  padding: 15px 0;
}

.breadcrumb-container .breadcrumb li {
  display: inline-block;
}

.breadcrumb-container .breadcrumb li a {
  font-size: 15px;
  color: #666;
}

.breadcrumb-container .breadcrumb li a:hover, .breadcrumb-container .breadcrumb li a:focus {
  color: #b2d421;
  text-decoration: none;
}

.breadcrumb-container .breadcrumb li + li:before {
  padding: 0 5px;
  color: #ccc;
  content: "/\00a0";
  margin-left: 5px;
}

.breadcrumb-container .breadcrumb > .active {
  color: #777;
}

.category-box {
  margin-bottom: 60px;
}

@media (max-width: 991px) {
  .category-box {
    margin-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .category-box {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .category-box {
    margin-bottom: 30px;
  }
}

.category-box ul {
  list-style: none;
  padding: 0;
}

.category-box ul li {
  position: relative;
  padding-left: 20px;
}

.category-box ul li:before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  background: #b2d421;
  top: 6px;
}

.category-box h2 {
  font-size: 30px;
  position: relative;
  margin-top: 0;
  line-height: 1;
  font-weight: bold;
  font-family: "Noto Sans";
  letter-spacing: 0px;
  font-weight: 100;
  margin-bottom: 15px;
  color: #072544;
}

@media (max-width: 991px) {
  .category-box h2 {
    font-size: 25px;
  }
}

@media (max-width: 767px) {
  .category-box h2 {
    margin-bottom: 10px;
  }
}

.category-box .text {
  color: #000;
}

#category-module {
  padding-left: 20px;
}

@media (max-width: 991px) {
  #category-module {
    padding-left: 0;
  }
}

#category-module h4 {
  color: #072544;
  margin: 0;
  padding: 11px 0 11px;
  margin-bottom: 10px;
  border-bottom: 2px solid #b2d421;
  font-weight: 700;
}

#category-module .list-group-item {
  background: #fff;
  border: 0;
  padding: 10px 0;
  position: relative;
  line-height: 1.3;
  font-size: 15px;
}

#category-module .list-group-item > div {
  color: #000;
}

#category-module .list-group-item:before {
  content: '\f105';
  font-family: "FontAwesome";
  position: absolute;
  left: -50px;
  width: 30px;
  height: 30px;
  opacity: 0;
  top: calc(50% - 14px);
  font-size: 20px;
  color: #444;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#category-module .list-group-item small {
  padding: 2px 6px;
  display: inline-block;
  background: #b2d421;
  border-radius: 20px;
  color: #fff;
  margin-top: 5px;
}

#category-module .list-group-item.active {
  color: #444;
}

#category-module .list-group-item.active:before {
  opacity: 1;
  left: -30px;
  color: #b2d421;
}

#category-module .list-group-item > div {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

#category-module .list-group-item:hover:before {
  opacity: 1;
  left: -30px;
  color: #b2d421;
}

#product-category {
  padding-bottom: 50px;
}

@media (max-width: 991px) {
  #product-category {
    margin-top: 15px;
  }
}

#product-category .main-image {
  margin-bottom: 30px;
}

#product-category .category-listing {
  margin-bottom: 30px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23636363' fill-opacity='0.2' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  padding: 20px;
  border: #e4e4e4;
  text-align: center;
  min-height: 200px;
  border: 1px solid #f9f9f9;
  -webkit-transition: 0.3s all cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s all cubic-bezier(0.19, 1, 0.22, 1);
  position: relative;
  z-index: 10;
}

#product-category .category-listing > div {
  max-width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

#product-category .category-listing > div h2 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  padding-bottom: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 12px;
  margin-bottom: 10px;
  display: block;
  border-bottom: 2px solid #b2d421;
  position: relative;
  z-index: 1;
  -webkit-transition: 0.3s all cubic-bezier(0.19, 1, 0.22, 1);
  transition: 0.3s all cubic-bezier(0.19, 1, 0.22, 1);
}

#product-category .category-listing > div .text {
  font-size: 14px;
  line-height: 1.2;
  color: #666;
}

#product-category .category-listing > div .text em.button {
  color: #333;
  border: 0;
  min-width: 0;
  margin-top: 0;
  padding: 5px 20px;
  font-size: 14px;
  letter-spacing: 1px;
}

#product-category .category-listing:hover, #product-category .category-listing:focus {
  text-decoration: none;
  border: 1px solid #ccc;
}

#product-category #content {
  padding-right: 50px;
  border-right: 1px solid #e4e4e4;
}

#product-category #content.no-padding {
  padding-right: 15px !important;
  border-right: 0 !important;
}

@media (max-width: 1199px) {
  #product-category #content {
    padding-right: 30px;
    border-right: 1px solid #e4e4e4;
  }
}

@media (max-width: 991px) {
  #product-category #content {
    padding-right: 15px;
    border-right: 0px solid #e4e4e4;
  }
}

.blog .blog_stats {
  margin-top: 12px !important;
  border-top: 1px solid #f1f1f1 !important;
}

.blog .blog_stats span {
  margin-top: 12px !important;
  margin-bottom: 8px !important;
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.blog .blog_stats span .text {
  margin-right: 5px;
}

.blog .blog_item .summary {
  border: 1px solid #e4e4e4;
  padding: 15px 25px;
}

.blog .blog_item .summary .blog_title {
  font-size: 22px;
}

.blog .blog_item .summary .short-desc p {
  font-size: 13px;
}

.blog .blog_item:hover .summary, .blog .blog_item:focus .summary {
  border: 1px solid #ccc;
}

.blog .blog_item:hover .summary .blog_title a, .blog .blog_item:focus .summary .blog_title a {
  color: #000;
}

#about {
  color: #777777;
}

@media (max-width: 575px) {
  #about > .container {
    padding: 0;
  }
}

#about .top-blocks .one, #about .top-blocks .two, #about .top-blocks .three {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
  max-width: 50%;
  background: #f8f8f8;
  padding: 60px 50px;
  font-size: 15px;
}

#about .top-blocks .one p, #about .top-blocks .two p, #about .top-blocks .three p {
  color: #000;
}

@media (max-width: 1199px) {
  #about .top-blocks .one, #about .top-blocks .two, #about .top-blocks .three {
    padding: 50px 30px;
  }
}

@media (max-width: 991px) {
  #about .top-blocks .one, #about .top-blocks .two, #about .top-blocks .three {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    max-width: 100%;
    padding: 40px 40px;
  }
}

@media (max-width: 575px) {
  #about .top-blocks .one, #about .top-blocks .two, #about .top-blocks .three {
    padding: 40px 15px;
  }
}

#about .top-blocks .one .block-title, #about .top-blocks .two .block-title, #about .top-blocks .three .block-title {
  position: relative;
  padding-top: 15px;
}

#about .top-blocks .one .block-title h2, #about .top-blocks .two .block-title h2, #about .top-blocks .three .block-title h2 {
  font-family: "Open Sans Condensed";
  font-weight: 300;
  margin-bottom: 30px;
  color: #333333;
}

@media (max-width: 1199px) {
  #about .top-blocks .one .block-title h2, #about .top-blocks .two .block-title h2, #about .top-blocks .three .block-title h2 {
    margin-bottom: 15px;
    font-size: 25px;
  }
}

@media (max-width: 991px) {
  #about .top-blocks .one .block-title h2, #about .top-blocks .two .block-title h2, #about .top-blocks .three .block-title h2 {
    font-size: 25px;
  }
}

#about .top-blocks .one .block-title:before, #about .top-blocks .two .block-title:before, #about .top-blocks .three .block-title:before {
  content: '';
  width: 40px;
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: #0da9e4;
}

#about .top-blocks .one .info, #about .top-blocks .two .info, #about .top-blocks .three .info {
  list-style: none;
  padding: 0;
  line-height: 2;
  margin: 0;
}

#about .top-blocks .one .info li span, #about .top-blocks .two .info li span, #about .top-blocks .three .info li span {
  font-weight: bold;
  color: #333333;
}

@media (max-width: 1199px) {
  #about .top-blocks .one .info li span, #about .top-blocks .two .info li span, #about .top-blocks .three .info li span {
    font-size: 14px;
  }
}

#about .top-blocks .one .info li i, #about .top-blocks .two .info li i, #about .top-blocks .three .info li i {
  width: 30px;
  font-size: 20px;
  color: #0da9e4;
  text-align: center;
}

#about .top-blocks .one .block-title:before {
  background: #0da9e4;
}

#about .top-blocks .two {
  background: #f0f0f0;
}

#about .top-blocks .two .block-title:before {
  background: #b2d421;
}

#about .top-blocks .three .block-title:before {
  background: #f6a500;
}

#resume {
  padding-top: 30px;
  padding-bottom: 30px;
}

@media (max-width: 991px) {
  #resume {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

#resume .block-title {
  position: relative;
  padding-top: 15px;
}

@media (max-width: 991px) {
  #resume .block-title {
    padding-bottom: 15px;
  }
}

#resume .block-title h2 {
  font-family: "Open Sans Condensed";
  font-weight: 300;
  margin-bottom: 20px;
  color: #333333;
}

#resume .block-title h3 {
  font-family: "Open Sans Condensed";
  font-weight: 300;
  color: #333333;
  margin-bottom: 0;
}

#resume .block-title:before {
  content: '';
  width: 40px;
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: #0da9e4;
}

@media (max-width: 991px) {
  #resume .block-title:before {
    top: auto;
    bottom: 0;
    width: 100%;
  }
}

#resume .block-title .resume-title {
  margin-bottom: 50px;
}

@media (max-width: 991px) {
  #resume .block-title .resume-title {
    margin-bottom: 0;
  }
}

#resume .resume-box {
  position: relative;
  padding: 40px 30px;
  border: 1px solid #e4e4e4;
  margin-bottom: 30px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  max-width: 100%;
}

@media (max-width: 991px) {
  #resume .resume-box {
    padding: 40px 0;
    border: 0px solid #e4e4e4;
  }
}

#resume .resume-box .text {
  font-size: 14px;
  margin-top: 30px;
}

#resume .resume-box .timeline {
  position: relative;
  margin-top: 30px;
}

#resume .resume-box .timeline:before {
  background: #eaeaea;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(1%, #eaeaea), color-stop(75%, #eaeaea), to(#ffffff));
  background: linear-gradient(to bottom, #eaeaea 1%, #eaeaea 75%, #ffffff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#eaeaea', endColorstr='#ffffff',GradientType=0 );
  bottom: 0;
  content: "";
  left: 1px;
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
}

#resume .resume-box .timeline .exp, #resume .resume-box .timeline .edu {
  margin-bottom: 10px;
  padding-left: 30px;
  padding-top: 30px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
}

#resume .resume-box .timeline .exp:after, #resume .resume-box .timeline .edu:after {
  background: #199cdb;
  border: 3px solid #ffffff;
  content: "";
  height: 14px;
  left: -5px;
  position: absolute;
  text-align: center;
  top: 32px;
  width: 14px;
  border-radius: 50%;
}

#resume .resume-box .timeline .exp .hgroup, #resume .resume-box .timeline .edu .hgroup {
  margin-bottom: 5px !important;
}

#resume .resume-box .timeline .exp .hgroup h4, #resume .resume-box .timeline .edu .hgroup h4 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: .5rem;
  color: #333;
}

#resume .resume-box .timeline .exp .hgroup h6, #resume .resume-box .timeline .edu .hgroup h6 {
  color: #666666;
  font-size: 12px;
  font-style: italic;
  margin-top: .5rem;
}

#content .blog.blog_post {
  padding-right: 50px;
  border-right: 1px solid #e4e4e4;
}

@media (max-width: 991px) {
  #content .blog.blog_post {
    padding-right: 0;
    border-right: 0px solid #e4e4e4;
  }
}

#content .blog .main_description {
  margin-bottom: 40px;
}

#content .blog .main_description ul {
  list-style: none;
  padding: 0;
}

#content .blog .main_description ul li {
  position: relative;
  padding-left: 20px;
}

#content .blog .main_description ul li:before {
  content: '';
  position: absolute;
  left: 0;
  width: 10px;
  height: 10px;
  background: #b2d421;
  top: 6px;
}

#content .blog .blog_stats {
  display: none;
}

#content .blog_post .main_thumb {
  height: 350px;
  background-size: cover;
  background-position: center;
}

@media (max-width: 991px) {
  #content .blog_post .main_thumb {
    height: 250px;
  }
}

@media (max-width: 767px) {
  #content .blog_post .main_thumb {
    height: 35vw;
  }
}

@media (max-width: 575px) {
  #content .blog_post .main_thumb {
    margin: 0 -15px;
  }
}

#content .blog_post .date {
  padding: 5px 20px;
  font-weight: 400;
  font-size: 16px;
  display: block;
  background: #b2d421;
  color: #fff;
  margin-bottom: 0;
  margin-bottom: 20px;
}

@media (max-width: 575px) {
  #content .blog_post .date {
    margin: 0 -15px;
  }
}

#content .blog_post h1 {
  font-size: 25px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 991px) {
  #content .blog_post h1 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  #content .blog_post h1 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  #content .blog_post h1 {
    font-size: 20px;
  }
}

#contact-form {
  display: block;
  margin-bottom: 120px;
}

#contact-form legend {
  font-weight: 300;
  font-size: 25px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 3px solid #b2d421;
}

#contact-form label {
  font-size: 17px;
  font-weight: 500;
}

#contact-form input.form-control {
  border: 3px solid #e4e4e4;
  border-radius: 0px;
  height: 45px;
}

#contact-form textarea {
  border: 3px solid #e4e4e4;
  border-radius: 0px;
}

#contact-form .contact-info {
  padding-left: 15px;
  border-left: 1px solid #e4e4e4;
}

#information-contact iframe {
  height: 450px;
}

@media (max-width: 991px) {
  #information-contact iframe {
    height: 350px;
  }
}

@media (max-width: 767px) {
  #information-contact iframe {
    height: 300px;
  }
}

@media (max-width: 575px) {
  #information-contact iframe {
    height: 250px;
  }
}

#information-contact h3 {
  font-weight: 300;
  font-size: 25px;
  padding-bottom: 10px;
  margin-bottom: 30px;
  border-bottom: 3px solid #b2d421;
  line-height: inherit;
}

#information-contact .info {
  margin-bottom: 40px;
}

#information-contact .info li {
  margin-bottom: 10px;
}

#information-contact .info i {
  font-size: 20px;
  width: 30px;
  text-align: center;
  color: #0da9e4;
}
/*# sourceMappingURL=main.css.map */