@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span,
h1, h2, h3, h4, h5, h6, p, blockquote,
a, img, ins, i, ul, li {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

a {
  color: inherit;
}

a:hover {
  text-decoration: underline;
  color: inherit;
}

/* HTML5 display-role reset for older browsers */
body {
  height: 100%;
  min-height: 100vh;
  line-height: 1;
  display: flex;
  flex-direction: column;
}
body .body-content {
  flex: 1 1 auto;
  z-index: 1;
}

/*
ol, ul {
  list-style: none;
}
*/

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/* box sizing reset           */
html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/************ VARIABLES ***************/
.text-red {
  color: #CF3502 !important;
}

html, body {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  color: #222223;
}
@media (max-width: 767px) {
  html, body {
    font-size: 14px;
  }
}

*:focus {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat";
  font-weight: 700;
  letter-spacing: 0.05rem;
}
h1.normal-weight, h2.normal-weight, h3.normal-weight, h4.normal-weight, h5.normal-weight, h6.normal-weight {
  font-weight: 400;
}

h1 {
  font-size: 2rem;
}
@media (max-width: 991px) {
  h1 {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 1.3rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  h2 {
    font-size: 1.2rem;
  }
}

h3 {
  font-size: 1rem;
}

a h3 {
  color: #222223;
  display: inline-block;
}

h4 {
  font-size: 1rem;
}

h5 {
  font-size: 0.9rem;
}

h6 {
  font-size: 0.8rem;
}

a.btn,
input.btn {
  border: none;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  outline: none;
  font-family: "Montserrat";
  font-size: 0.9rem;
  font-weight: bold;
  box-shadow: 0px 1px 7px 1px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.05rem;
  transition: all 0.3s;
  text-decoration: none !important;
  text-transform: uppercase;
  background: #357AE8;
  color:white;
}
a.btn span,
input.btn span {
  padding: 0 3px;
}
a.btn i,
input.btn i {
  font-weight: 700;
  margin-left: 25px;
}
a.btn:hover,
input.btn:hover {
  background: #EBF0F0;
  box-shadow: none;
}
a.btn:focus,
input.btn:focus {
  outline: none;
}
a.btn:focus span,
input.btn:focus span {
  border-left: 2px solid #222223;
  border-right: 2px solid #222223;
}
a.btn.blue,
input.btn.blue {
  background: #25618B;
  color: white;
}
a.btn.blue:hover,
input.btn.blue:hover {
  color: #222223;
  background-color: white;
}
a.btn.blue:focus,
input.btn.blue:focus {
  outline: none;
}
a.btn.blue:focus span,
input.btn.blue:focus span {
  border-left: 2px solid white;
  border-right: 2px solid white;
}

.select-wrap {
  position: relative;
  display: inline-block;
}
.select-wrap .select-arrows {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.select-wrap .select-arrows div:first-child {
  margin-bottom: -5px;
}
.select-wrap .select-arrows i {
  font-weight: 700;
  font-size: 1rem;
}

select {
  -webkit-appearance: none;
  border-radius: 500px;
  padding: 0.5rem 2rem 0.5rem 1rem;
  background: white;
  line-height: 1.2rem;
}

img {
  max-width: 100%;
}

p {
  line-height: 1.3rem;
}

.container-fluid {
  max-width: 1400px;
}

@media (max-width: 767px) {
  .padding-flushright-mobile {
    padding-right: 0;
  }
}

p.two-column {
  column-count: 2;
}

@media (max-width: 767px) {
  p.two-column {
    column-count: 1;
  }
}
form.default-form {
  width: 100%;
}
form.default-form label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05rem;
  margin-bottom: 0.3rem;
}
form.default-form input[type=text],
form.default-form input[type=password],
form.default-form input[type=email],
form.default-form textarea {
  width: 100%;
  border: 1px solid black;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
}
form.default-form input[type=text]:hover,
form.default-form input[type=password]:hover,
form.default-form input[type=email]:hover,
form.default-form textarea:hover {
  outline: 1px solid #25618B;
}
form.default-form input[type=text]:focus,
form.default-form input[type=password]:focus,
form.default-form input[type=email]:focus,
form.default-form textarea:focus {
  outline: 1px solid black;
}

header {
  z-index: 999;
  position: sticky;
  top: 0;
  background: white;
}

.main-header-wrap {
  display: flex;
  justify-content: space-between;
}

.logo-link {
  color: #222223;
}
.logo-link:hover {
  text-decoration: none;
  color: #222223;
}
.logo-link .logo-image {
  display: flex;
  align-items: center;
}
.logo-link .logo-image img {
  max-width: 145px;
  margin-bottom: 5px;
  margin-right: 5px;
}
.logo-link .logo-image h2 {
  font-size: 1.4rem;
}
.logo-link h3 {
  font-size: 1.1rem;
}

@media (max-width: 767px) {
  .logo-link .logo-image img {
    max-width: 115px;
  }

  .logo-link .logo-image h2 {
    font-size: 1.15rem;
  }
}
.header-details {
  text-align: right;
}
.header-details > div {
  margin-bottom: 4px;
}
.header-details a {
  display: inline-block;
}
.header-details a h5 {
  color: #222223;
}
.header-details .h-div {
  width: 100%;
  height: 1px;
  background: #222223;
  margin: 8px 0;
}
.header-details .search-input-wrap {
  position: relative;
  margin-top: 15px;
}
.header-details .search-input-wrap::before {
  /*
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  font-family: "FontAwesome";
  */
}
.header-details .searchbar {
  border: 1px solid #222223;
  padding: 0.3rem 1rem;
  border-radius: 500px;
  min-width: 300px;
  color: #222223;
  font-family: "Montserrat";
  width: 100%;
  padding-left: 30px;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.header-menu {
  background: #CF3502;
}
.header-menu ul.main-menu {
  display: flex;
  justify-content: flex-start;
}
.header-menu ul.main-menu > li a {
  color: white;
  padding: 0.8rem 2rem;
  font-size: 0.9rem;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
}
.header-menu ul.main-menu > li a:hover, .header-menu ul.main-menu > li a:focus {
  background: white;
  color: #CF3502;
  text-decoration: none;
}

.navbar-toggler:focus {
  outline: none;
}

.navbar-toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.7em;
  height: 1.4em;
}
.navbar-toggler-icon div {
  background: #CF3502;
  width: 100%;
  height: 3px;
}

.navbar {
  padding: 0;
}
.navbar .dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 2px 4px 8px 0px rgba(0, 0, 0, 0.4);
  top: 94%;
}
.navbar .dropdown-menu a.dropdown-item {
  display: block;
  color: #222223;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 2rem;
}
.navbar .dropdown-menu a.dropdown-item:hover, .navbar .dropdown-menu a.dropdown-item:focus {
  background: #25618B;
  color: white;
  outline: none;
}
.navbar .dropdown-menu .sub-menu-header {
  padding-bottom: 0.2rem !important;
}
.navbar .dropdown-menu .sub-menu-item {
  padding: 0.2rem 10px 0.2rem 2.5rem !important;
  font-weight: 500 !important;
}
.navbar .dropdown.show::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

@media (max-width: 991px) {
  .header-menu {
    background: white;
    border-top: 10px solid #CF3502;
  }
  .header-menu ul.main-menu > li a {
    color: #CF3502;
    font-weight: 700;
  }

  .navbar .dropdown-menu {
    box-shadow: none;
    border-top: 2px solid #CF3502;
  }

  .navbar .navbar-collapse.show {
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
}
footer {
  background: #25618B;
  color: white;
  padding: 2rem 0;
}
footer .footer-menu a {
  display: block;
  color: white;
  font-family: "Montserrat";
  font-size: 0.9rem;
  margin-bottom: 8px;
}
footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}
footer .footer-logo .footer-image-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
footer .footer-logo .footer-image-row img {
  max-width: 100px;
}
footer .footer-logo .footer-image-row a {
  color: white;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}
footer .footer-logo .hdiv {
  background: white;
  height: 1px;
  width: 100%;
  margin: 1rem 0;
  max-width: 500px;
}
footer .footer-logo h6 {
  font-weight: 500;
  line-height: 1.3rem;
}

.red-tag {
  text-transform: uppercase;
  font-size: 0.75rem;
  background-color: #CF3502;
  color: white;
  padding: 0.8rem;
  font-weight: 700;
  display: inline-block;
  letter-spacing: 0.05rem;
}

@media (max-width: 1400px) {
      .hero-slider {
        padding: 0 !important;
      }
    }
    .hero-slider .slider-hero-wrap {
      height: 350px;
      background-size: cover;
      background-position: center;
      position: relative;
      display: flex;
    }
    .hero-slider .slider-hero-wrap > div {
      background: linear-gradient(180deg, rgba(34, 34, 35, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
      display: flex;
      justify-content: center;
      align-items: center;
      flex: 1;
      flex-direction: column;
    }
    .hero-slider .slider-hero-wrap .slider-play {
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      flex-direction: column;
    }
    .hero-slider .slider-hero-wrap .slider-play img {
      max-width: 100px;
      display: block;
      margin-bottom: 20px;
    }

    .hero-slider .slider-hero-wrap .slider-message {
      display: flex;
      justify-content: center;
      align-items: center;
      color: white;
      flex-direction: column;
    }

@media (max-width: 1400px) {
  .hero-video {
    padding: 0 !important;
  }
}
.hero-video .video-hero-wrap {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
}
.hero-video .video-hero-wrap > div {
  background: linear-gradient(180deg, rgba(34, 34, 35, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  flex-direction: column;
}
.hero-video .video-hero-wrap .video-play {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  flex-direction: column;
}
.hero-video .video-hero-wrap .video-play img {
  max-width: 100px;
  display: block;
  margin-bottom: 20px;
}

.hero-buttons-mobile {
  display: flex;
  align-items: center;
  justify-content: space-around;
}
@media (max-width: 575px) {
  .hero-buttons-mobile {
    flex-direction: column;
    justify-content: space-between;
  }
}
.hero-buttons-mobile a {
  margin-bottom: 1rem;
}

.video-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: rgba(34, 34, 35, 0.8);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  display: none;
}

.home-slider {
  margin: 3rem 0;
}
.home-slider .slide-content {
  position: relative;
  min-height: 250px;
}
.home-slider .slide-content h1 {
  margin: 2rem 0;
}
.home-slider .slide-content p {
  font-family: "Aleo";
  margin-bottom: 2rem;
}
.home-slider .slide-content .links-row {
  display: flex;
  justify-content: flex-start;
}
.home-slider .slide-content .links-row a:hover {
  text-decoration: underline;
}
.home-slider .slide-content .links-row a:not(:first-child) {
  margin-left: 20px;
}
.home-slider .slide-content .content-slide {
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-slider .slide-content .content-slide.active {
  pointer-events: auto;
}
.home-slider .slide-images-wrap {
  display: flex;
  align-items: center;
  position: relative;
}
.home-slider .slider-controls {
  position: absolute;
  bottom: 247px;
  left: -65%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
}
.home-slider .slider-controls i {
  font-weight: 700;
  color: black;
  font-size: 2rem;
  padding: 0.5rem;
}
.home-slider .slider-controls .slider-dots i {
  font-size: 0.6rem;
}
.home-slider .slider-controls .slider-dots i.active {
  color: #CF3502;
}
@media (max-width: 757px) {
  .home-slider .slider-controls i {
    font-size: 1.3rem;
  }
  .home-slider .slider-controls .slider-dots i {
    font-size: 0.4rem;
  }
}
.home-slider .slider-controls.mobile {
  position: relative;
  transform: translateX(0);
}
.home-slider .slider-controls.mobile i {
  color: black;
}
.home-slider .slide-images {
  position: relative;
  flex: 1;
  height: 100%;
  min-height: 250px;
}
.home-slider .slide-images .image-slide {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}


.slider-hero-wrap {
  display: flex;
  align-items: center;
  position: relative;
}
.hero-slide-images {
  position: relative;
  flex: 1;
  height: 100%;
  min-height: 250px;
}
.hero-image-slide {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.featured-article {
  margin-top: 2rem;
}
.featured-article h1 {
  margin: 2rem 0;
}
.featured-article p {
  font-family: "Aleo", serif;
  margin-bottom: 2rem;
  line-height: 1.2rem;
}
.featured-article .links-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.featured-article .links-bar .read-more {
  font-weight: 700;
  font-size: 0.8rem;
}
.featured-article .links-bar .read-more i {
  font-size: 1rem;
  font-weight: 700;
  margin-left: 15px;
  vertical-align: text-bottom;
}
.featured-article .links-bar .social-links {
  color: #CF3502;
  font-size: 1.5rem;
}
.featured-article .links-bar .social-links a {
  margin-right: 10px;
}
.featured-article .featured-article-image {
  /*
  background-size: cover;
  */
  background-position: center;
  background-repeat: no-repeat;
  flex: 1 1 auto;
}

.home-article-grid {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.home-article-grid .article {
  margin-bottom: 2rem;
}
.home-article-grid .article a:hover {
  text-decoration: none;
}
.home-article-grid .article-image {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 250px;
}
.home-article-grid .article-image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 40%, rgba(34, 34, 35, 0.5) 100%);
}
.home-article-grid .article-image .article-tag {
  background: #222223;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05rem;
  padding: 0.5rem 1rem;
  min-width: 100px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  color: white;
}
.home-article-grid .article-image h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 1rem;
  color: white;
}
.home-article-grid .link-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1rem;
  font-size: 0.9rem;
  color: #222223;
}
.home-article-grid .link-row i {
  font-weight: 700;
  font-size: 1.1rem;
}

a.more-articles {
  background: #EBF0F0;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #222223;
  width: 100%;
}
a.more-articles:hover {
  text-decoration: none;
}

.details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
  width: 100%;
}
.details i {
  margin-left: 10px;
  color: #CF3502;
  font-weight: 700;
  font-size: 1.1rem;
}

.red-button {
  background: #CF3502;
  color: white;
  padding: 1rem;
  display: inline-block;
}
.red-button i {
  margin-left: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

/************ SIDEBAR **************/
.sidebar {
  padding-top: 2rem;
  padding-left: 60px;
}
@media (max-width: 1199px) {
  .sidebar {
    padding-left: 30px;
  }
}
.sidebar > div {
  margin-bottom: 3.5rem;
}

.join-kea-video {
  display: flex;
  align-items: center;
}
.join-kea-video > div {
  margin-left: 25px;
}
.join-kea-video img {
  max-width: 100px;
}
.join-kea-video h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #222223;
}
.join-kea-video p {
  font-family: "Montserrat";
}

a .join-kea-video h2 {
  text-decoration-line: none !important;
}

.quick-links h2 {
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.quick-links > div {
  margin-bottom: 1rem;
}
.quick-links a {
  color: #222223;
  font-family: "Montserrat";
  font-weight: 700;
  display: inline;
  letter-spacing: 0.05rem;
}
.quick-links a i {
  font-weight: 700;
  color: #CF3502;
  margin-left: 10px;
}
.quick-links a:focus {
  outline: 2px solid #25618B;
}

.sidebar-buttons a {
  width: 100%;
  display: flex;
  margin-bottom: 15px;
  max-width: 400px;
}

article .article-header {
  padding: 3rem 0;
  border-bottom: 1px solid #222223;
  font-family: "Aleo";
}
article .article-header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 575px) {
  article .article-header .container-fluid {
    flex-direction: column;
    align-items: flex-start;
  }
  article .article-header .container-fluid .header-button {
    margin-top: 1rem;
  }
}
article .article-header h1 {
  margin-bottom: 5px;
}
article .article-header .social-links a {
  display: inline-block;
  padding: 0.7rem;
  font-size: 1.7rem;
  color: #CF3502;
}
article .article-header .social-links a:first-child {
  padding-left: 0;
}
article .main-content {
  padding: 2rem 0;
  padding-right: 4rem;
}
@media (max-width: 767px) {
  article .main-content {
    padding-right: 0;
  }
}

article .main-content a {
  color: #CF3502;
  text-decoration: underline;
}
article .main-content a:hover {
  color: #A8C0D1;
}
article .main-content a:focus {
/*
  outline: 2px solid red;
*/
}

.table-wrap {
  overflow-x: auto;
}

table {
  font-family: "Montserrat";
  /*
  width: 100%;
  border: 1px solid #222223;
  */
}
table tr th:first-child {
  /*
  width: 70%;
  */
}
table th {
  /*
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid #222223;
  white-space: nowrap;
  */
}
@media (max-width: 575px) {
  table th {
    white-space: pre-wrap;
  }
}
table th, table td {
  /*
  padding: 1.5rem 2rem;
  border-left: 1px solid #222223;
  border-right: 1px solid #222223;
  */
}
@media (max-width: 767px) {
  table th, table td {
    padding: 1rem;
  }
}
table tr:not(:last-child) td {
  /*
  border-bottom: 1px solid #A8C0D1;
  */
}

.ui-loader {
  display: none !important;
}

.error-page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0 15px;
  height: 100%;
}
.error-page a {
  text-transform: uppercase;
}

article .main-content p {
	margin-bottom: 2rem;
	line-height: 1.5rem;
	/*font-family: "Aleo";*/
	font-family: 'Montserrat', sans-serif !important;
}
    
article .main-content ul {
	margin-bottom: 2rem !important;
	line-height: 1.5rem !important;
	font-family: 'Montserrat', sans-serif !important;
	padding: 0 0 0 40px;
}
    
article .main-content li {
	line-height: 1.5rem !important;
}

article .main-content span {
	font-family: 'Montserrat', sans-serif !important;
	font-size: 100% !important;
    }

/*# sourceMappingURL=style.css.map */
