@charset "UTF-8";
.checkbox {
  padding-left: 20px;
}
.checkbox label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.checkbox label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
  transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
}
.checkbox label::after {
  display: inline-block;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0;
  margin-left: -20px;
  padding-left: 3px;
  padding-top: 1px;
  font-size: 11px;
  color: #555555;
}
.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
  opacity: 0;
  z-index: 1;
}
.checkbox input[type="checkbox"]:focus + label::before,
.checkbox input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.checkbox input[type="checkbox"]:checked + label::after,
.checkbox input[type="radio"]:checked + label::after {
  font-family: "Font Awesome 5 Pro";
  content: "";
}
.checkbox input[type="checkbox"]:indeterminate + label::after,
.checkbox input[type="radio"]:indeterminate + label::after {
  display: block;
  content: "";
  width: 10px;
  height: 3px;
  background-color: #555555;
  border-radius: 2px;
  margin-left: -16.5px;
  margin-top: 7px;
}
.checkbox input[type="checkbox"]:disabled + label,
.checkbox input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="radio"]:disabled + label::before {
  background-color: #eeeeee;
  cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
  border-radius: 50%;
}
.checkbox.checkbox-inline {
  margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}
.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}
.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
  color: #fff;
}

.checkbox-primary input[type="checkbox"]:indeterminate + label::before,
.checkbox-primary input[type="radio"]:indeterminate + label::before {
  background-color: #337ab7;
  border-color: #337ab7;
}
.checkbox-primary input[type="checkbox"]:indeterminate + label::after,
.checkbox-primary input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-danger input[type="checkbox"]:indeterminate + label::before,
.checkbox-danger input[type="radio"]:indeterminate + label::before {
  background-color: #d9534f;
  border-color: #d9534f;
}
.checkbox-danger input[type="checkbox"]:indeterminate + label::after,
.checkbox-danger input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-info input[type="checkbox"]:indeterminate + label::before,
.checkbox-info input[type="radio"]:indeterminate + label::before {
  background-color: #5bc0de;
  border-color: #5bc0de;
}
.checkbox-info input[type="checkbox"]:indeterminate + label::after,
.checkbox-info input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-warning input[type="checkbox"]:indeterminate + label::before,
.checkbox-warning input[type="radio"]:indeterminate + label::before {
  background-color: #f0ad4e;
  border-color: #f0ad4e;
}
.checkbox-warning input[type="checkbox"]:indeterminate + label::after,
.checkbox-warning input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.checkbox-success input[type="checkbox"]:indeterminate + label::before,
.checkbox-success input[type="radio"]:indeterminate + label::before {
  background-color: #5cb85c;
  border-color: #5cb85c;
}
.checkbox-success input[type="checkbox"]:indeterminate + label::after,
.checkbox-success input[type="radio"]:indeterminate + label::after {
  background-color: #fff;
}

.radio {
  padding-left: 20px;
}
.radio label {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  padding-left: 5px;
}
.radio label::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  margin-left: -20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  transition: border 0.15s ease-in-out;
}
.radio label::after {
  display: inline-block;
  position: absolute;
  content: " ";
  width: 11px;
  height: 11px;
  left: 3px;
  top: 3px;
  margin-left: -20px;
  border-radius: 50%;
  background-color: #555555;
  -ms-transform: scale(0, 0);
  transform: scale(0, 0);
  transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
  opacity: 0;
  z-index: 1;
}
.radio input[type="radio"]:focus + label::before {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.radio input[type="radio"]:checked + label::after {
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label {
  opacity: 0.65;
}
.radio input[type="radio"]:disabled + label::before {
  cursor: not-allowed;
}
.radio.radio-inline {
  margin-top: 0;
}

.radio-primary input[type="radio"] + label::after {
  background-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::before {
  border-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::after {
  background-color: #337ab7;
}

.radio-danger input[type="radio"] + label::after {
  background-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::before {
  border-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::after {
  background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
  background-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::before {
  border-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::after {
  background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
  background-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::before {
  border-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::after {
  background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
  background-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::before {
  border-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::after {
  background-color: #5cb85c;
}

input[type="checkbox"].styled:checked + label:after,
input[type="radio"].styled:checked + label:after {
  font-family: "Font Awesome 5 Pro";
  content: "";
}
input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
  color: #fff;
}
input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
  color: #fff;
}

.cd-nav-trigger {
  display: none;
}

.cd-nav.navbar.navbar-default {
  background-color: transparent;
  border: 0 none transparent;
  margin-top: -30px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
}
.cd-nav.navbar.navbar-default .navbar-nav li {
  font-family: "Fira Sans", sans-serif;
  text-transform: uppercase;
}
.cd-nav.navbar.navbar-default .navbar-nav li > a {
  color: #fff;
}
.cd-nav.navbar.navbar-default .navbar-nav li > a:hover, .cd-nav.navbar.navbar-default .navbar-nav li > a:focus, .cd-nav.navbar.navbar-default .navbar-nav li > a:hover:before, .cd-nav.navbar.navbar-default .navbar-nav li > a:focus:before {
  color: #00AAAD;
}
.cd-nav.navbar.navbar-default .dropdown {
  padding-right: 20px;
  position: relative;
}
.cd-nav.navbar.navbar-default .dropdown li {
  text-transform: capitalize;
}
.cd-nav.navbar.navbar-default .dropdown.open > a, .cd-nav.navbar.navbar-default .dropdown.open a:hover, .cd-nav.navbar.navbar-default .dropdown.open a:focus {
  background-color: transparent;
}
.cd-nav.navbar.navbar-default .dropdown .dropdown-menu li a {
  color: #ffffff;
  padding: 7px 20px;
}
.cd-nav.navbar.navbar-default .dropdown > a::before {
  content: " ";
  background-image: url("../img/down-arrow.png");
  font-family: 'Font Awesome\ 5 Pro';
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 10px;
  float: right;
  margin-left: 7px;
  margin-top: 5px;
  height: 10px;
}

.navbar-brand {
  transition: all 0s;
  padding: 0;
  display: block;
  height: auto;
  position: relative;
  z-index: 10;
}
.navbar-brand img {
  max-height: 160px;
}

.your-brand {
  width: 200px;
  margin-top: 20px;
  max-width: 100%;
}

.header-search input,
.header-search .input-group-btn button {
  background-color: #f8f8f8;
  box-shadow: none;
  border: 0 none transparent;
  font-family: "Fira Sans", sans-serif;
}
.header-search .input-group-btn button {
  padding: 6px 12px;
  color: #666666;
}
.header-search ::-webkit-input-placeholder {
  color: #666666;
}

.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
  background: transparent;
}

.navbar {
  margin-bottom: 15px;
}

.header-links {
  float: left;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.header-links a {
  color: white;
}
.header-links .dash-link {
  float: left;
  margin-right: 30px;
}
.header-links .search-trigger {
  float: left;
  margin-right: 30px;
}
.header-links .social a {
  margin-left: 10px;
  padding: 15px 0;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.8em;
}
.header-links .social a:hover {
  color: #00AAAD;
}

@media (min-width: 480px) {
  .header-wrap .d-flex {
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
  }

  .cd-nav.navbar.navbar-default .dropdown .dropdown-menu li a {
    color: #777;
  }
}
@media (max-width: 480px) {
  .header-links {
    width: 100%;
    margin-top: 20px;
  }

  .cd-nav.navbar.navbar-default .dropdown .dropdown-menu li a {
    color: #ffffff;
    white-space: normal;
  }
}
@media (max-width: 992px) {
  .header-wrap {
    top: 50px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    border-bottom: 1px rgba(255, 255, 255, 0.25) solid;
  }
  .header-wrap .d-flex {
    -ms-flex-align: end;
        align-items: flex-end;
  }

  .your-brand {
    width: 200px;
  }
  .your-brand img {
    padding-bottom: 10px;
  }

  .cd-nav.navbar.navbar-default .dropdown {
    padding-right: 0;
  }

  .navbar-nav {
    float: none;
    margin: 0;
  }
  .navbar-nav > li {
    float: none;
  }
}
@media (min-width: 992px) {
  .header.home {
    position: absolute;
    z-index: 3;
    width: 100%;
  }

  .cd-nav.navbar.navbar-default .navbar-nav li:nth-last-child(1) {
    padding-right: 0;
  }
  .cd-nav.navbar.navbar-default .navbar-nav li:nth-last-child(1) > a {
    padding: 15px 0 15px 15px;
  }
  .cd-nav.navbar.navbar-default .navbar-nav .dropdown-menu li:nth-last-child(1) {
    padding-right: 0;
  }
  .cd-nav.navbar.navbar-default .navbar-nav .dropdown-menu li:nth-last-child(1) > a {
    padding: 7px 20px;
  }
}
#cd-nav-mobile{
  display: none;
}
@media (max-width: 992px) {
  #cd-nav-mobile{
    display: block;
  }
  .navigation-is-open {
    overflow: hidden;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .page-wrapper {
    position: relative;
    z-index: 2;
    background: #14333E;
  }

  .navigation-is-open .cd-nav-trigger {
    -ms-transform: rotate(180deg);
        transform: rotate(180deg);
  }
  .navigation-is-open .cd-nav {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s ease-in-out, opacity 0.2s ease-in-out;
  }

  .cd-nav.navbar.navbar-default {
    background-color: #14333E;
  }
  .cd-nav.navbar.navbar-default .navbar-nav li > a {
    color: #ffffff;
  }

  .cd-nav {
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 0;
    background-color: #fff;
    background-image: url(../assets/system/logo-white.png);
    background-position: 50px 25px;
    background-repeat: no-repeat;
    background-size: 100px;
    opacity: 0;
    visibility: hidden;
    min-height: 0;
    z-index: 3;
    transition: visibility 0.2s , opacity 0.2s ease-in-out;
  }
  .cd-nav .cd-navigation-wrapper {
    height: 100%;
    width: 100%;
    overflow-y: auto;
    padding: 55px 60px;
  }

  .cd-nav-trigger-new {
    position: fixed;
    z-index: 10;
    right: 5%;
    top: 0px;
    height: 54px;
    width: 54px;
    display: block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background-color: #f8f8f8;
  }
  .cd-nav-trigger-new svg {
    position: absolute;
    top: 0;
    left: 0;
  }
  .cd-nav-trigger-new .cd-nav-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -ms-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    width: 22px;
    height: 2px;
    background-color: #666666;
  }
  .cd-nav-trigger-new .cd-nav-icon:after, .cd-nav-trigger .cd-nav-icon:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #666666;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-nav-trigger-new .cd-nav-icon::before {
    -ms-transform-origin: right top;
        transform-origin: right top;
    -ms-transform: translateY(-6px);
        transform: translateY(-6px);
  }
  .cd-nav-trigger-new .cd-nav-icon::after {
    -ms-transform-origin: right bottom;
        transform-origin: right bottom;
    -ms-transform: translateY(6px);
        transform: translateY(6px);
  }

    .cd-nav-trigger {
    position: fixed;
    z-index: 10;
    right: 5%;
    top: 0px;
    height: 54px;
    width: 54px;
    display: block;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    background-color: #f8f8f8;
  }
  .cd-nav-trigger svg {
    position: absolute;
    top: 0;
    left: 0;
  }
  .cd-nav-trigger .cd-nav-icon {
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    right: auto;
    -ms-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    width: 22px;
    height: 2px;
    background-color: #666666;
  }
  .cd-nav-trigger .cd-nav-icon:after, .cd-nav-trigger .cd-nav-icon:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #666666;
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .cd-nav-trigger .cd-nav-icon::before {
    -ms-transform-origin: right top;
        transform-origin: right top;
    -ms-transform: translateY(-6px);
        transform: translateY(-6px);
  }
  .cd-nav-trigger .cd-nav-icon::after {
    -ms-transform-origin: right bottom;
        transform-origin: right bottom;
    -ms-transform: translateY(6px);
        transform: translateY(6px);
  }

  .header-wrap .top-bar {
    position: relative;
    z-index: 3;
  }
  .header-wrap .header-search {
    max-width: 100%;
    position: relative;
    right: 0;
    margin-top: 70px;
    margin-bottom: 60px;
  }
  .header-wrap .navbar-brand {
    margin-bottom: 0;
    margin-top: 0;
    max-width: 180px;
  }

  .top-login p {
    text-align: left;
    margin-right: 10px;
    float: left;
  }
  .top-login .greeting {
    padding-bottom: 0;
    display: none;
  }
  .top-login .navbar-toggle {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }
  .top-login .dash-link {
    display: block;
    float: none;
    font-family: "Fira Sans", sans-serif;
  }
  .top-login .dash-link a {
    margin: 0 10px 0 0;
  }

  .cd-nav.navbar.navbar-default {
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .your-brand {
    width: 180px;
    margin-top: 1em;
    margin-left: 0;
  }

  .navbar-brand {
    margin-top: 0;
    max-width: 150px;
    margin-bottom: 4em;
  }

  .navbar-header {
    font-size: 1.2em;
  }

  .dropdown-menu {
    font-size: 13px;
  }
  .dropdown-menu li a {
    font-size: 1.2em;
  }
}
@media (max-width: 1200px) {
  .nav-main li {
    font-size: 17px;
    padding-right: 1.3em;
  }
}
.search-bar {
  position: absolute;
  top: -220px;
  background-color: rgba(250, 250, 250, 0.8);
  padding: 78px 42px;
  -ms-flex-align: center;
      align-items: center;
  z-index: 50;
  transition: all 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  width: 100%;
}
.search-bar .form-control {
  margin: 0 auto;
  display: block;
  width: 80%;
  font-size: 20px;
  background-color: transparent;
  background-image: none;
  border: 0;
  border-bottom: #666666 2px solid;
  padding: 0.5em 0;
  color: #666666;
}
.search-open .search-bar {
  top: 0;
}
.search-bar .search-trigger {
  position: absolute;
  right: 30px;
  top: 30px;
}
.search-bar .search-trigger a {
  color: #14333E;
}
.search-bar .search-trigger a i {
  font-size: 25px;
}
.search-bar .search-btn {
  position: absolute;
  top: 60px;
  right: 159px;
  color: #14333E;
  border: 0;
  background: 0;
  font-size: 30px;
}

input:focus, textarea:focus, keygen:focus, select:focus, :focus {
  outline: 0;
}

.btn-search {
  background-color: transparent;
}

@media (max-width: 991px) {
  #search {
    display: none;
  }

  .header-links .search-trigger, .header-links .dash-link {
    margin-right: 10px;
  }

  .search-bar {
    padding: 66px 42px;
  }
  .search-bar .search-trigger:before {
    color: #00AAAD;
    content: "\f00d";
  }

  .search-trigger {
    z-index: 1;
    top: 0;
    text-align: center;
    height: 50px;
    width: 40px;
    display: block;
    overflow: hidden;
  }
  .search-trigger:before {
    content: "\f002";
    font-family: 'Font Awesome\ 5 Pro';
    display: block;
    margin-top: 10px;
    color: #00AAAD;
    font-size: 22px;
  }
}
@media (max-width: 1200px) {
  .search-trigger a {
    right: 130px;
  }
}
@media (max-width: 992px) {
  .search-trigger a {
    right: 150px;
  }
}
.breadcrumb {
  padding-left: 0;
}
.breadcrumb a {
  color: #fff;
}
.breadcrumb a:hover, .breadcrumb a:focus {
  color: #00AAAD;
}

.subnav-heading {
  padding: 0;
}

.subnav-container {
  padding: 1.5em 0;
  margin-bottom: 20px;
}

.subnav-title {
  margin-bottom: 4px;
  margin-top: -38px;
  position: relative;
  color: #00AAAD;
}
.subnav-title h5 {
  text-transform: uppercase;
  font-size: 1em;
  bottom: 0;
  position: absolute;
}

#side-nav {
  margin-bottom: 30px;
  padding: 0;
}
#side-nav a {
  color: #ffffff;
  display: block;
  font-size: 14px;
}
#side-nav a:hover {
  color: #00AAAD;
}
#side-nav a.active {
  color: #16acbd;
}
#side-nav ul {
  list-style: none;
}
#side-nav li {
  padding: 10px 0 0 20px;
  position: relative;
}
#side-nav .fa-ul > li {
  border-top: 1px rgba(255, 255, 255, 0.25) solid;
  padding-top: 15px;
  padding-bottom: 15px;
}
#side-nav .parent {
  font-weight: bold;
}
#side-nav .parent ul {
  top: inherit;
  left: 0px;
}
#side-nav .parent li {
  border: none;
  font-weight: 400;
}
#side-nav .parent li a {
  color: #fff;
}
#side-nav .parent li:last-child {
  padding-bottom: 15px !important;
}
#side-nav .parent i {
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  cursor: pointer;
  z-index: 2;
  cursor: pointer;
}
#side-nav .parent i:hover, #side-nav .parent i:focus {
  color: #00dce0;
}
#side-nav .parent .fa-li {
  left: 0;
}
#side-nav .parent .active a:hover,
#side-nav .parent .active a:focus {
  color: #969595;
}

#side-nav .active > a,
#side-nav li a:hover,
#side-nav li a:focus {
  color: #00AAAD;
}

#side-nav .fa-ul {
  margin-left: 0;
}
#side-nav .fa-ul .parent i {
  color: #00AAAD;
  cursor: pointer;
}
#side-nav .fa-ul .parent i:hover, #side-nav .fa-ul .parent i:focus {
  color: #00d2d6;
}
/*new side-nav-new*/

#side-nav-1 {
  margin-bottom: 30px;
  padding: 0;
}
#side-nav-1 a {
  color: #ffffff;
  display: block;
  font-size: 14px;
}
#side-nav-1 a:hover {
  color: #00AAAD;
}
#side-nav-1 a.active {
  color: #16acbd;
}
#side-nav-1 ul {
  list-style: none;
}
#side-nav-1 li {
  padding: 10px 0 0 20px;
  position: relative;
}
#side-nav-1 .fa-ul > li {
  border-top: 1px rgba(255, 255, 255, 0.25) solid;
  padding-top: 15px;
  padding-bottom: 15px;
}
#side-nav-1 .parent {
  font-weight: bold;
}
#side-nav-1 .parent ul {
  top: inherit;
  left: 0px;
}
#side-nav-1.parent li {
  border: none;
  font-weight: 400;
}
#side-nav-1 .parent li a {
  color: #fff;
}
#side-nav-1 .parent li:last-child {
  padding-bottom: 15px !important;
}
#side-nav-1 .parent i {
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -moz-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -o-transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  cursor: pointer;
  z-index: 2;
  cursor: pointer;
}
#side-nav-1 .parent i:hover, #side-nav-1 .parent i:focus {
  color: #00dce0;
}
#side-nav-1 .parent .fa-li {
  left: 0;
}
#side-nav-1 .parent .active a:hover,
#side-nav-1 .parent .active a:focus {
  color: #969595;
}

#side-nav-1 .active > a,
#side-nav-1 li a:hover,
#side-nav-1 li a:focus {
  color: #00AAAD;
}

#side-nav-1 .fa-ul {
  margin-left: 0;
}
#side-nav-1 .fa-ul .parent i {
  color: #00AAAD;
  cursor: pointer;
}
#side-nav-1 .fa-ul .parent i:hover, #side-nav-1 .fa-ul .parent i:focus {
  color: #00d2d6;
}


/*+++++++
aditional level
++++++++*/
.parent ul {
  padding-left: 0;
  padding-top: 0;
}

/*############
subnav Styles
############*/
.subnav-heading {
  color: #00AAAD;
  font-size: 16px;
  font-family: "Fira Sans", sans-serif;
  text-transform: capitalize;
}

.subnav-heading.navbar-toggle {
  margin-bottom: 10px;
  background-color: transparent !important;
}
.subnav-heading.navbar-toggle:hover
.subnav-heading.navbar-toggle:focus {
  color: #00dce0;
  background-color: transparent;
}

.side-menu .navbar-header {
  background-color: transparent;
}

@media (max-width: 991px) {
  #size-nav a {
    color: #14333E;
  }

  .subnav-container {
    padding: 1.5em 0;
    margin-bottom: 20px;
  }
  .subnav-container h5.subnav-heading.navbar-toggle.collapsed:after {
    content: " ";
    background-image: url("../img/left-arrow.png");
    font-family: 'Font Awesome\ 5 Pro';
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
    -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    -ms-transform-origin: center;
        transform-origin: center;
    float: right;
  }
  .subnav-container h5.subnav-heading.navbar-toggle:after {
    content: " ";
    background-image: url("../img/left-arrow.png");
    font-family: 'Font Awesome\ 5 Pro';
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Font Awesome\ 5 Pro';
    display: block;
    width: 20px;
    height: 20px;
    transition: transform 0.2s ease;
    -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
    -ms-transform-origin: center;
        transform-origin: center;
    float: right;
  }

  .subnav-title {
    margin-bottom: 0px;
    margin-top: 0px;
    height: 0 !important;
  }
  .subnav-title h5 {
    font-size: 1em;
    margin-left: 0px;
    z-index: 0;
  }

  .subnav-container {
    margin-bottom: 30px;
    overflow: hidden;
  }

  .subnav-heading.navbar-toggle {
    display: block;
    margin-top: 0;
    clear: both;
    float: none;
  }
}
/******
	/*earlier collapse
	********/
@media (max-width: 991px) {
  .side-menu .navbar-header {
    float: none;
    overflow: hidden;
  }

  .side-menu .navbar-toggle {
    display: block;
    border: 0;
    padding-top: 0;
  }

  .side-menu .subnav-heading {
    margin-top: 0;
    line-height: 30px;
  }

  .side-menu .navbar-collapse {
    border-top: 0px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    float: none;
  }

  .side-menu .navbar-collapse.collapse {
    display: none !important;
  }

  .side-menu .navbar-nav {
    float: none !important;
    margin: 7.5px -15px;
  }

  .side-menu .navbar-nav > li {
    float: none;
  }

  .side-menu .navbar-nav > li > a {
    padding-top: 10px;
  }

  .side-menu .navbar-text {
    float: none;
    margin: 15px 0;
  }

  .side-menu .collapsing {
    overflow: hidden !important;
    clear: both;
  }

  #side-nav {
    clear: both;
    margin-bottom: 0;
  }

  .subnav-heading.navbar-toggle {
    display: block;
    padding: 8px;
    border: 0 transparent none;
    padding-left: 0;
    margin-right: 0;
  }

  #side-nav.navbar-collapse.collapse {
    display: none !important;
  }

  #side-nav.navbar-collapse.collapse.in {
    display: block !important;
  }
}
.fa-arrow-down:before {
  font-family: 'Font Awesome\ 5 Pro';
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 12px;
  height: 12px;
}

.fa-arrow-up:before {
  font-family: 'Font Awesome\ 5 Pro';
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 12px;
  height: 12px;
}

/* Sub nav highlights  */
/*#side-nav .parent{
	background-color: #efefef;
}
#side-nav .parent.closed{
	background: transparent;
}
#side-nav .parent.opened .parent.opened{
	background: #999999;
	}
	.parent.opened{
		background-color: #fafafa;
		}*/
.carousel-fade .carousel-control {
  width: 10%;
  z-index: 3;
}
.carousel-fade .carousel-control span {
  top: 50%;
  display: block;
  position: absolute;
  z-index: 3;
}
.carousel-fade .carousel-control span.fa-chevron-left {
  left: 20px;
}
.carousel-fade .carousel-control span.fa-chevron-right {
  right: 20px;
}
.carousel-fade .carousel-inner .item {
  opacity: 0;
  transition: opacity .4s ease-in;
  width: 100%;
  height: 100%;
}
.carousel-fade .carousel-inner .item.active {
  opacity: 1;
}
.carousel-fade .carousel-inner .item.active.left, .carousel-fade .carousel-inner .item.active.right {
  left: 0;
  opacity: 0;
  z-index: 1;
}
.carousel-fade .carousel-inner .item > img {
  width: 100%;
  height: auto;
}
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .next.right {
  opacity: 0;
}

main .carousel {
  margin-bottom: 25px;
}
main .carousel .carousel-inner .item {
  height: 350px;
}
main .carousel .carousel-inner .item img {
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  position: absolute;
}

@media (max-width: 768px) {
  main .carousel .carousel-inner .item {
    height: 250px;
  }
}
@media all and (transform-3d), (-webkit-transform-3d) {
  .carousel-fade .carousel-inner .item.next,
  .carousel-fade .carousel-inner .item.active.right,
  .carousel-fade .carousel-inner .item.prev,
  .carousel-fade .carousel-inner .item.active.left {
    opacity: 0;
    transform: translate3d(0, 0, 0);
  }
  .carousel-fade .carousel-inner .item.next.left,
  .carousel-fade .carousel-inner .item.prev.right,
  .carousel-fade .carousel-inner .item.active {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.pagination-container {
  clear: both;
}

.pagination > .disabled > span,
.pagination > .disabled > span:hover,
.pagination > .disabled > span:focus,
.pagination > .disabled > a,
.pagination > .disabled > a:hover,
.pagination > .disabled > a:focus {
  color: #ffffff;
}
.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, .pagination > .active > span:focus {
  z-index: 3;
  color: #888888;
  background-color: #00AAAD;
  border-color: #00AAAD;
  cursor: default;
}
.pagination li a, .pagination li span {
  color: #00AAAD;
}
.pagination li a:hover, .pagination li a:focus, .pagination li span:hover, .pagination li span:focus {
  z-index: 2;
  color: #ffffff;
  background-color: #00dce0;
  border-color: #00dce0;
}
.pagination li i {
  font-size: 12px;
  line-height: 12px;
}

.pagination.alpha {
  margin: 0 auto;
}

.pagination.alpha > li > a,
.pagination.alpha > li > span {
  border: none;
  padding: 6px 10px;
  margin-top: 6px;
}

footer {
  padding: 20px 0 0 0;
  color: #ffffff;
  padding-bottom: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
footer .footer-logo {
  width: 200px;
  margin-bottom: 15px;
}
footer .footer-logo img {
  max-height: 160px;
}
footer .row:nth-child(1) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
footer .terms p, footer .terms a {
  color: #A3B5BC;
}
footer .terms p:hover, footer .terms a:hover {
  color: #00AAAD;
}
footer .terms li {
  color: #A3B5BC;
}
footer .pull-right {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
footer .footer-list {
  font-size: 18px;
  margin-top: 20px;
}
footer .footer-list li {
  padding-right: 40px;
}
footer .footer-list:nth-last-child(1) li {
  padding-right: 20px;
}
footer .footer-list:nth-last-child(1) li:nth-last-child(1) {
  padding-right: 0;
}
footer h5 {
  text-transform: capitalize;
  font-family: "Fira Sans", sans-serif;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  font-size: 1em;
}
footer p {
  margin-bottom: 0;
}
footer p,
footer li {
  font-size: 1em;
}
footer a {
  color: #ffffff;
}
footer a:hover {
  color: #00AAAD;
}
footer p {
  color: #ffffff;
}
footer i {
  font-size: 1.4em;
}
footer a:hover,
footer a:focus {
  color: #16acbd;
}
footer ul {
  list-style: none;
  padding-left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer ul li {
  display: inline-block;
}

@media screen and (max-width: 991px) {
  footer {
    margin-top: 2em;
  }
}
@media screen and (min-width: 768px) {
  footer {
    margin-top: 25px;
  }
  footer .flex-center {
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-list {
    margin-bottom: 20px;
  }
  footer .footer-logo img {
    width: 180px;
  }
  footer ul li {
    padding-right: 25px;
  }
}
.section.cta-banner {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.cta-banner .btn {
  margin-top: 2em;
}

@media screen and (min-width: 991px) {
  .section.cta-banner [class^="col-"] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .section.cta-banner {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
textarea {
  resize: vertical;
}

input,
.form-control {
  box-shadow: none;
}

#contact-us .input-group {
  width: 50%;
  padding-right: 10px;
}
#contact-us .input-group.textarea {
  padding-left: 10px;
  padding-right: 0;
}
#contact-us .textarea {
  float: right;
}

.input-group {
  margin: 0 0 15px;
  color: #333;
}

label {
  display: block;
}

@media (max-width: 991px) {
  #search-container {
    margin-bottom: 20px;
  }
  #search-container h4 {
    padding: 1em 1em 1em 2em;
    margin-top: 0;
    margin-bottom: 0;
    color: #777777;
    background-color: rgba(255, 255, 255, 0.1);
  }
  #search-container h4 a {
    overflow: hidden;
    display: block;
  }
  #search-container a::after {
    content: " ";
    background-image: url("../img/left-arrow.png");
    font-family: 'Font Awesome\ 5 Pro';
    background-size: 18px;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width: 25px;
    height: 25px;
    transition: transform 0.2s ease;
    -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    -ms-transform-origin: center;
        transform-origin: center;
    float: right;
  }
  #search-container.expanded a::after {
    -ms-transform: rotate(-90deg);
        transform: rotate(-90deg);
  }
}
#search-container .date .input-group-addon {
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
#search-container .date .input-group-addon:hover {
  background-color: #00AAAD;
  color: #ffffff;
}
#search-container .input-group.date .active {
  background: #00AAAD;
  text-shadow: none;
  font-family: "Fira Sans", sans-serif;
}

#keyword {
  width: 100%;
}

#side-search {
  background-color: rgba(240, 240, 241, 0.8);
  padding: 2em 2em;
  background-border: rgba(240, 240, 241, 0.8);
  margin-bottom: 20px;
}
#side-search h4 {
  border-bottom: 1px #d5d5d5 solid;
  color: #00a1b5;
  font-size: 16px;
  margin-top: 10px;
  padding-bottom: 1em;
  text-transform: capitalize;
}
#side-search .form-group,
#side-search select {
  width: 100%;
}
#side-search label {
  font-size: 0.9em;
  color: #00AAAD;
}
#side-search select,
#side-search input,
#side-search .input-group-addon:last-child {
  background: #ffffff;
  border: 0 transparent none;
  padding: 5px 8px;
  height: 40px;
  cursor: pointer;
  position: relative;
  font-size: 14px;
}
#side-search .input-group-addon:last-child {
  color: #00AAAD;
}
#side-search .btn {
  width: 100%;
  margin-top: 20px;
}

#logIn {
  margin: 80px 0 60px;
  overflow: hidden;
}
#logIn .well {
  padding: 30px;
}
#logIn img {
  margin: 0 auto 25px;
  display: block;
  width: 200px;
}
#logIn .btn-default {
  min-width: 292px;
  display: block;
  margin: 0 auto;
  margin-bottom: 8px;
  font-size: 16px;
}
#logIn .btn-default.googleP {
  background-color: #d73d32;
}
#logIn .btn-default.linkedIn {
  background-color: #287bbc;
}
#logIn .btn-default.fb {
  background-color: #3b5998;
}

.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  margin-left: 0;
}

.checkbox label::after {
  color: white;
}

.checkbox input:checked ~ label:before {
  background: #00AAAD;
}

.radio label::after {
  background: #00AAAD;
  top: 0;
  left: 0;
  height: 19px;
  width: 19px;
  border: 3px #14fbff solid;
}

.radio label::before {
  width: 18px;
  height: 18px;
}

.checkbox {
  position: relative;
}

input.required::after,
input[required]::after {
  content: '';
  font-family: 'Font Awesome\ 5 Pro';
  color: red;
  display: block;
  float: right;
}

.errmsg {
  font-family: "Fira Sans", sans-serif;
  color: #E6302F;
  padding: 10px 10px 8px;
  background: #EADFDF;
  margin-bottom: 15px;
}

.hero.home {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
}
.hero.home .text-container {
  position: relative;
  text-align: center;
  height: 100%;
}
.hero.home .text-container h1 {
  margin: 0 auto;
  font-weight: 500;
}
.hero.home .text-container .row:nth-child(1) {
  position: relative;
  z-index: 2;
}
.hero.home .text-container .row:nth-last-child(1) {
  position: relative;
  z-index: 2;
}
.hero.home .img-container {
  position: absolute;
  height: 100%;
  width: 100%;
  max-width: none;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  object-fit: cover;
}
.hero.home .img-container img, .hero.home .img-container iframe, .hero.home .img-container embed, .hero.home .img-container video {
  position: absolute;
  height: 100%;
  width: 100%;
  max-width: none;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  object-fit: cover;
}
.hero.home:after {
  content: "";
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 7%, #14333E 90%);
  position: absolute;
  z-index: 1;
  bottom: 0;
  height: 50%;
  width: 100%;
}
.hero.home:before {
  background-image: linear-gradient(180deg, #14333E 0%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0) 82%);
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  height: 50%;
  width: 100%;
}

.section {
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.socials {
  border-bottom: 1px #3d6271 solid;
}

.join-network-cta {
  padding-top: 30px;
}
.join-network-cta h2 {
  max-width: 188px;
  font-size: 1.3em;
  font-family: "Fira Sans", sans-serif;
  font-weight: 300;
  text-align: left;
  color: #00AAAD;
}
.join-network-cta a {
  color: #fff;
}
.join-network-cta a i {
  color: #00AAAD;
}
.join-network-cta ul {
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: bottom;
      align-items: bottom;
  list-style: none;
  padding-left: 0;
  float: left;
}
.join-network-cta ul li {
  display: inline-block;
  max-width: 110px;
  text-align: center;
}
.join-network-cta ul li i {
  font-size: 2em;
}
.join-network-cta ul li p {
  display: block;
  padding-top: 5px;
  font-size: 0.9em;
}

.feature-heading {
  font-weight: 300;
  color: #00AAAD;
}

.lSSlideOuter .lSPager.lSpg > li {
  cursor: pointer;
  display: inline-block;
  padding: 0 5px;
  width: 100%;
  height: 4px;
  background: #3d6271;
  margin-right: 5px;
  position: relative;
}
.lSSlideOuter .lSPager.lSpg > li a {
  background-color: transparent;
}
.lSSlideOuter .lSPager.lSpg > li.active:before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: #00AAAD;
  left: 0;
  position: absolute;
}

.lSSlideOuter .lSPager.lSpg {
  display: -ms-flexbox;
  display: flex;
}
.lSSlideOuter li:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0.1);
}
.lSSlideOuter li .card .card-block {
  padding: 20px;
}
.lSSlideOuter li .card .card-img {
  overflow: hidden;
}
.lSSlideOuter li .card .card-img img {
  transition: transform 0.3s ease-in-out;
  transform: scale(1.01);
}
.lSSlideOuter li .card .card-img:hover img {
  transform: scale(1.2);
}
.card.objectives .img-wrapper {
  overflow: hidden;
}
.card.objectives .img-wrapper img {
  transition: transform 0.3s ease-in-out;
  transform: scale(1.01);
}
.card.objectives .img-wrapper:hover img {
  transform: scale(1.2);
}

.lSAction {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 20px;
}
.lSAction > a {
  position: inherit;
  float: left;
  color: #fff;
  opacity: 1;
  display: block;
}
.lSAction > a:hover {
  color: #00AAAD;
}
.lSAction > a:nth-child(1) {
  margin-right: 15px;
}
.lSAction > a:nth-child(1):after {
  color: #00AAAD;
  content: '/';
  margin-left: 3px;
}

.twitter {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: block;
}
.twitter #twitter-widget-0 {
  border: none !important;
  background-color: rgba(25, 30, 35, 0.61);
}

.timeline-Widget {
  background-color: transparent !important;
  color: #ffffff !important;
  border-radius: 5px !important;
}

@media (min-width: 991px) {
  .hero.home {
    padding-top: 300px;
  }
}
@media (min-width: 767px) {
  .hero.home {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: -ms-flexbox;
    display: flex;
  }
  .hero.home .text-container h1 {
    margin: 0 auto;
    max-width: 70%;
    font-weight: 500;
  }
  .hero.home .text-container .row:nth-last-child(1) {
    width: 100%;
    position: absolute;
    bottom: 150px;
    z-index: 2;
  }
}
@media (max-width: 600px) {
  .join-network-cta ul li {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .home.hero .text-container h1 {
    margin-bottom: 2em;
  }

  .join-network-cta ul li {
    text-transform: capitalize;
  }
  .join-network-cta ul li span {
    display: none;
  }
}
@media (max-width: 991px) {
  .home.hero {
    padding-top: 80px;
  }

  .twitter {
    min-height: 400px;
    height: 400px;
    margin-top: 50px;
    overflow: hidden;
  }
  .twitter .twitter #twitter-widget-0 {
    overflow: hidden;
  }

  .join-network-cta ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .join-network-cta ul li:first-of-type {
    width: 100%;
    max-width: none;
  }
  .join-network-cta ul li:first-of-type h2 {
    max-width: none;
    padding-bottom: 10px;
  }
  .join-network-cta ul li {
    width: 100%;
  }
}
@media (max-height: 800px) and (min-width: 767px) {
  .hero.home {
    height: 1000px !important;
  }
}
.card {
  margin-bottom: 70px;
}
.card .date-img {
  background-image: url("../img/date-bg.png");
}
.card .profile-img {
  background-image: url("../img/profile-bg.png");
}
.card > a > div.date {
  height: 0;
  width: 100%;
  display: block;
  color: #ffffff;
  padding: 0 15px 56.7% 15px;
  font-size: 24px;
  position: relative;
  background-repeat: no-repeat;
  background-size: 130px;
  background-position: 90%;
  background-color: #00AAAD;
}
.card > a > div.date .date-pos {
  position: absolute;
  bottom: 10px;
}
.card .img-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.7%;
  position: relative;
  display: block;
  overflow: hidden;
}
.card dl {
  margin-bottom: 70px;
}
.card a {
  color: #fff;
}
.card a:hover, .card a:focus {
  opacity: 0.8;
}

.card-block {
  padding: 20px 0;
  position: relative;
}
.card-block .fa-ul {
  margin-top: 1em;
  margin-bottom: 5em;
  margin-left: 0;
}
.card-block .fa-ul li {
  font-family: "Fira Sans", sans-serif;
  margin-bottom: 15px;
  padding-left: 2em;
}
.card-block .fa-ul li i {
  color: #00AAAD;
  margin-left: -2em;
  width: 1.5em;
  text-align: center;
}
.card-block p.date {
  margin-bottom: 0.5em;
  font-size: 0.9em;
  color: #00AAAD;
}
.card-block div.date {
  background-color: #00AAAD;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  float: right;
  margin-left: 1em;
  margin-bottom: 1em;
  padding: 8px 10px;
  font-family: "Fira Sans", sans-serif;
  width: 60px;
}
.card-block div.date:hover {
  background-color: #00dce0;
}
.card-block .card-title {
  font-size: 1.35em;
  line-height: 1.3em;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  text-transform: capitalize;
  overflow: hidden;
  word-wrap: break-word;
}
.card-block a h2 {
  font-weight: 500;
  margin-top: 0;
}
.card-block a h2:hover, .card-block a h2:focus {
  color: #00AAAD;
}
.card-block .card-link {
  font-size: 1.4em;
}
.card-block .card-text {
  color: #fff;
  margin-bottom: 2em;
}

.card-social {
  position: absolute;
  bottom: 15px;
}
.card-social a {
  color: #fff !important;
  font-size: 0.9em;
}
.card-social .twitter:hover,
.card-social .twitter:focus {
  color: #2CAAE1 !important;
}
.card-social .linkedin:hover,
.card-social .linkedin:focus {
  color: #0077B5 !important;
}

.card-link {
  font-family: "Fira Sans", sans-serif;
  color: #00AAAD;
  display: block;
  margin-bottom: 15px;
}
.card-link img {
  height: 25px;
  width: 25px;
}
.card-link:hover {
  margin-left: 20px;
}

.grad-orange {
  background: #ee9530;
  background: -webkit-gradient(left bottom, right top, color-stop(0%, #ee9530), color-stop(46%, #ee652f), color-stop(100%, #ee652f));
  background: linear-gradient(45deg, #ee9530 0%, #ee652f 46%, #ee652f 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ee9530', endColorstr='#ee652f', GradientType=1 );
}

a:hover .grad-orange {
  opacity: 0.8;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.company-directory .card .img-wrapper .profile-img,
.summary-panel .card .img-wrapper .profile-img {
  display: block;
  position: absolute;
  text-align: center;
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
}
.company-directory .card .img-wrapper img,
.summary-panel .card .img-wrapper img {
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  display: block;
  position: relative;
}

.img-wrapper.company-logo .profile-img {
  display: block;
  position: absolute;
  padding: 20px;
  text-align: center;
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  position: absolute;
  background: #ffffff;
}
.img-wrapper.company-logo img {
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  display: block;
  position: relative;
  max-height: 100%;
}

.company-directory .card .img-wrapper img,
.company-profile .card .img-wrapper img {
  max-height: 100%;
}

#side-search {
  background-color: rgba(255, 255, 255, 0.1);
}

.summary-panel {
  margin-bottom: 0;
}
.summary-panel .card {
  float: right;
}
.summary-panel .list-contacts, .summary-panel dl {
  margin-top: 2em;
}

.presenters .media-list .media-object {
  max-width: 180px;
  float: right;
  margin-left: 2em;
}
.presenters .media-list .list-inline li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card .list-contacts,
.summary-panel .list-contacts {
  margin-left: 0;
  list-style: none;
}
.card .list-contacts li,
.summary-panel .list-contacts li {
  padding-left: 2.14285714em;
}
.card .list-contacts li .fa-li,
.summary-panel .list-contacts li .fa-li {
  left: 0;
  top: 10px;
  color: #aaaaaa;
}
.card .list-contacts li a:hover, .card .list-contacts li a:focus,
.summary-panel .list-contacts li a:hover,
.summary-panel .list-contacts li a:focus {
  color: #00dce0;
}
.card .list-contacts li,
.card dt,
.summary-panel .list-contacts li,
.summary-panel dt {
  display: block;
  border-top: solid 1px rgba(255, 255, 255, 0.1);
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.card dt,
.summary-panel dt {
  padding-top: 1em;
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #999;
}
.card dd,
.summary-panel dd {
  margin-bottom: 0.5em;
}

@media screen and (max-height: 800px) {
  .summary-panel .card {
    margin-bottom: 0;
  }
  .summary-panel h5 {
    margin-top: 0;
  }
  .summary-panel dl {
    margin-bottom: 0;
  }
  .summary-panel .list-contacts, .summary-panel dl {
    margin-top: 1em;
  }
}
@media screen and (max-width: 767px) {
  .summary-panel .card {
    float: none;
  }
}
@media screen and (max-width: 480px) {
  .presenters .media-list .media-object {
    max-width: 100%;
    float: none;
    margin-bottom: 2em;
    margin-left: 0;
  }
}
.list-mega a {
  color: #005f61;
}
.list-mega a:hover, .list-mega a:focus {
  color: #00dce0;
}

#dashboard-container .card {
  float: left;
  width: 33.33%;
  border: 0 none transparent;
  padding: 0 15px;
  margin-bottom: 30px;
}
#dashboard-container .card > .card-block {
  border-top: solid 5px #00AAAD;
}
#dashboard-container .card .card-block ~ .card-block {
  border: none 0 transparent;
}
#dashboard-container .card .card-link {
  margin-bottom: 10px;
}

.welcome {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-radius: 0;
  padding: 40px;
  margin-bottom: 30px;
}
.welcome a, .welcome p, .welcome h1, .welcome h2, .welcome h3, .welcome h4 {
  color: #fff;
}

@media (max-width: 991px) {
  #dashboard-container .card {
    float: left;
    width: 50%;
  }
}
.sector2 h1,
.sector2 h2,
.sector2 .fa-ul .parent i,
.sector2 #side-nav .active > a,
.sector2 #side-nav li a:hover,
.sector2 #side-nav li a:focus,
.sector2 .subnav-heading,
.sector2 .breadcrumb > .active,
.sector2 .active,
.sector2 .card-block .date a, .navbar-default .navbar-nav > .sector2.active > a, .navbar-default .navbar-nav > .sector2.active > a:focus,
.sector2 .meta a, .navbar.navbar-offcanvas.navbar-default .navbar-nav .sector2 > a:hover, .navbar.navbar-offcanvas.navbar-default .navbar-nav .sector2 > a:focus,
.sector2 p a,
.sector2 .card .card-link,
.sector2 #side-nav .fa-ul .parent i {
  color: #FF9D52;
}
.sector2 .btn-primary {
  background: #FF9D52;
}
.sector2 .btn-primary:hover, .sector2 .btn-primary:focus {
  background: #9eccd2;
}
.navbar-default .navbar-nav > .sector2.active > a:hover {
  color: #666666;
}
.sector2 a:hover, .sector2 a:focus,
.sector2 .subnav-heading:hover,
.sector2 .subnav-heading:focus,
.sector2 #side-nav .parent i:hover,
.sector2 #side-nav .parent i:focus,
.sector2 .card-block .date a:hover,
.sector2 .card-block .date a:focus,
.sector2 .card-title a:hover,
.sector2 .card-title a:focus,
.sector2 .meta a:hover,
.sector2 .meta a:focus,
.sector2 .card .card-link:hover,
.sector2 .card .card-link:focus,
.sector2 #side-nav .fa-ul .parent i:hover,
.sector2 #side-nav .fa-ul .parent i:focus {
  color: #9eccd2;
}
.sector2 .card-block {
  border-top: 5px solid #FF9D52;
}
.sector2 .card > a > div.date, .sector2.banner:after {
  background: #ff9d52;
  background: -webkit-gradient(left top, right bottom, color-stop(0%, #ff9d52), color-stop(42%, #ff9d52), color-stop(89%, #ffd2b0), color-stop(100%, #ffd2b0));
  background: linear-gradient(135deg, #ff9d52 0%, #ff9d52 42%, #ffd2b0 89%, #ffd2b0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff9d52', endColorstr='#ffd2b0', GradientType=1 );
}

.card-date .date.sector2 {
  background: #FF9D52;
}

.sector3 h1,
.sector3 h2,
.sector3 .fa-ul .parent i,
.sector3 #side-nav .active > a,
.sector3 #side-nav li a:hover,
.sector3 #side-nav li a:focus,
.sector3 .subnav-heading,
.sector3 .breadcrumb > .active,
.sector3 .active,
.sector3 .card-block .date a, .navbar-default .navbar-nav > .sector3.active > a, .navbar-default .navbar-nav > .sector3.active > a:focus,
.sector3 .card-title a:hover,
.sector3 .card-title a:focus,
.sector3 .meta a, .navbar.navbar-offcanvas.navbar-default .navbar-nav .sector3 > a:hover, .navbar.navbar-offcanvas.navbar-default .navbar-nav .sector3 > a:focus,
.sector3 #side-nav .fa-ul .parent i,
.sector3 p a,
.sector3 .card .card-link {
  color: #a65af2;
}
.sector3 a:hover, .sector3 a:focus,
.sector3 .subnav-heading:hover,
.sector3 .subnav-heading:focus,
.sector3 #side-nav .parent i:hover,
.sector3 #side-nav .parent i:focus,
.sector3 .card-block .date a:hover,
.sector3 .card-block .date a:focus,
.sector3 .meta a:hover,
.sector3 .meta a:focus,
.sector3 #side-nav .fa-ul .parent i:hover,
.sector3 #side-nav .fa-ul .parent i:focus,
.sector3 p a:hover,
.sector3 p a:focus,
.sector3 .card .card-link:hover,
.sector3 .card .card-link:focus {
  color: #9eccd2;
}
.sector3 .btn-primary {
  background: #a65af2;
}
.sector3 .btn-primary:hover, .sector3 .btn-primary:focus {
  background: #9eccd2;
}
.sector3 .card-block {
  border-top: 5px solid #a65af2;
}
.sector3 .card > a > div.date, .sector3.banner:after {
  background: #a65af2;
  background: -webkit-gradient(left top, right bottom, color-stop(0%, #a65af2), color-stop(26%, #a65af2), color-stop(82%, #d8b4fb), color-stop(100%, #d8b4fb));
  background: linear-gradient(135deg, #a65af2 0%, #a65af2 26%, #d8b4fb 82%, #d8b4fb 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a65af2', endColorstr='#d8b4fb', GradientType=1 );
}

.card-date .date.sector3 {
  background: #a65af2;
}

.sector4 h1,
.sector4 h2,
.sector4 .fa-ul .parent i,
.sector4 #side-nav .active > a,
.sector4 #side-nav li a:hover,
.sector4 #side-nav li a:focus,
.sector4 .subnav-heading,
.sector4 .breadcrumb > .active,
.sector4 .active,
.sector4 .card-block .date a, .navbar-default .navbar-nav > .sector4.active > a, .navbar-default .navbar-nav > .sector4.active > a:focus,
.sector4 .meta a, .navbar.navbar-offcanvas.navbar-default .navbar-nav .sector4 > a:hover, .navbar.navbar-offcanvas.navbar-default .navbar-nav .sector4 > a:focus,
.sector4 p a,
.sector4 #side-nav .fa-ul .parent i,
.sector4 .card .card-link {
  color: #FD5170;
}
.sector4 a:hover, .sector4 a:focus,
.sector4 .subnav-heading:hover,
.sector4 .subnav-heading:focus,
.sector4 #side-nav .parent i:hover,
.sector4 #side-nav .parent i:focus,
.sector4 .card-block .date a:hover,
.sector4 .card-block .date a:focus,
.sector4 .card-title a:hover,
.sector4 .card-title a:focus,
.sector4 .meta a:hover,
.sector4 .meta a:focus,
.sector4 p a:hover,
.sector4 p a:focus,
.sector4 #side-nav .fa-ul .parent i:hover,
.sector4 #side-nav .fa-ul .parent i:focus,
.sector4 .card .card-link:hover,
.sector4 .card .card-link:focus {
  color: #9eccd2;
}
.sector4 .btn-primary {
  background: #FD5170;
}
.sector4 .btn-primary:hover, .sector4 .btn-primary:focus {
  background: #9eccd2;
}
.sector4 .card-block {
  border-top: 5px solid #FD5170;
}
.sector4 .card > a > div.date, .sector4.banner:after {
  background: #fd5171;
  background: -webkit-gradient(left top, right bottom, color-stop(0%, #fd5171), color-stop(36%, #fd5171), color-stop(100%, #feb0bf));
  background: linear-gradient(135deg, #fd5171 0%, #fd5171 36%, #feb0bf 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fd5171', endColorstr='#feb0bf', GradientType=1 );
}

.card-date .date {
  background: #FD5170;
}

.sector1 h1,
.sector1 h2,
.sector1 .fa-ul .parent i,
.sector1 #side-nav .active > a,
.sector1 #side-nav li a:hover,
.sector1 #side-nav li a:focus,
.sector1 .subnav-heading,
.sector1 .breadcrumb > .active,
.sector1 .active,
.sector1 .card-block .date a, .navbar-default .navbar-nav > .sector1.active > a, .navbar-default .navbar-nav > .sector1.active > a:focus,
.sector1 .meta a {
  color: #00AAAD;
}
.navbar-default .navbar-nav > .sector1.active > a:hover {
  color: #666666;
}
.sector1 a:hover, .sector1 a:focus,
.sector1 .subnav-heading:hover,
.sector1 .subnav-heading:focus,
.sector1 #side-nav .parent i:hover,
.sector1 #side-nav .parent i:focus,
.sector1 .card-block .date a:hover,
.sector1 .card-block .date a:focus,
.sector1 .meta a:hover,
.sector1 .meta a:focus {
  color: #16acbd;
}
.sector1 .card-block {
  border-top: 5px solid #00AAAD;
}
.sector1 .card > a > div.date, .sector1.banner:after {
  background: #4b60e8;
  background: -webkit-gradient(left top, right bottom, color-stop(0%, #4b60e8), color-stop(20%, #4977eb), color-stop(100%, #82beff));
  background: linear-gradient(135deg, #4b60e8 0%, #4977eb 20%, #82beff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4b60e8', endColorstr='#82beff', GradientType=1 );
}

body, html {
  overflow-x: hidden;
}

html {
  min-height: 100%;
}

body {
  font-size: 16px;
  font-family: "Fira Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-family: "Fira Sans", sans-serif;
  background-color: #14333E;
  color: #fff;
}

.page-wrapper {
  background-repeat: no-repeat;
  background-size: cover;
}

header.clearfix {
  background-color: #ffffff;
}
header.clearfix .col-md-9 {
  min-height: 0;
}

p {
  font-family: "Fira Sans", sans-serif;
  margin-bottom: 1em;
  line-height: 25px;
}

img {
  max-width: 100%;
}

h3 {
  font-family: "Fira Sans", sans-serif;
  font-weight: bold;
  margin: 1em 0;
}

h4, h5, h6 {
  font-family: "Fira Sans", sans-serif;
  font-weight: bold;
  margin: 1em 0;
}

h1, h2 {
  color: #ffffff;
  line-height: 1.2;
}

h1 {
  font-weight: 500;
}

main h1,
main h2,
main h3,
main h4,
main h5,
main h6 {
  margin-top: 20px;
}

h3 {
  color: #ffffff;
  text-transform: capitalize;
}

h3 strong {
  color: #00AAAD;
}

strong {
  font-family: "Fira Sans", sans-serif;
}

.lead a {
  color: #8CE2EC;
}

a {
  color: #00AAAD;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
a:hover, a:focus {
  color: #16acbd;
  text-decoration: none;
}
a.linkedin:hover, a.linkedin:focus {
  color: #0077B5;
}
a.twitter:hover, a.twitter:focus {
  color: #2CAAE1;
}
a.see-more {
  font-family: "Fira Sans", sans-serif;
  color: #00AAAD;
}
main p a {
  font-family: "Fira Sans", sans-serif;
}

hr {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
  border-top: #9eccd2 1px solid;
}

@media (min-width: 480px) {
  .d-flex {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  .page-content {
    position: relative;
  }

  .banner .banner-title {
    width: 100%;
    padding: 25px 20px;
    min-height: 75px;
  }
  .banner .banner-title p {
    font-size: 17px;
  }
}
.linkedin + .twitter {
  margin-left: 15px;
}

.collapsing {
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.well {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
  border-radius: 0;
  border: none;
}
.well p, .well h1, .well h2, .well h3, .well h4 {
  color: #fff;
}

.clear-left {
  clear: left;
}

.clear-right {
  clear: right;
}

.inset-sm {
  padding: 0.5em;
}

.inset-md {
  padding: 1em;
}

.inset-lg {
  padding: 2em;
}

figcaption {
  margin-bottom: 1.5em;
  margin-top: 1.5em;
}

.figure-pull-right,
.caption-pull-right,
.figure-pull-left,
.caption-pull-left {
  margin-bottom: 1.5em;
  width: 48%;
  clear: both;
}
.figure-pull-right ~ p,
.caption-pull-right ~ p,
.figure-pull-left ~ p,
.caption-pull-left ~ p {
  overflow: hidden;
}

.figure-pull-right,
.caption-pull-right {
  float: right;
  margin-left: 2em;
}

.figure-pull-left,
.caption-pull-left {
  float: left;
  margin-right: 2em;
}

.caption-pull-left {
  clear: left;
}

.caption-pull-right {
  clear: right;
}

figcaption,
.caption,
.caption-pull-right,
.caption-pull-left {
  color: #999;
  font-size: 0.9em;
}

@media (max-width: 991px) {
  .sm-pull-right {
    float: right;
  }

  .sm-clear-left {
    clear: left;
  }
}
@media (max-width: 767px) {
  .figure-pull-right,
  .caption-pull-right,
  .figure-pull-left,
  .caption-pull-left {
    width: 100%;
    margin: 0 0 20px 0;
    float: none;
  }
}
.btn {
  font-family: "Fira Sans", sans-serif;
  padding: 8px 16px;
  border: 0 none transparent;
  font-size: 16px;
}
.btn:active {
  transform: scale(0.97);
  -ms-transform: scale(0.97);
}
.btn:hover, .btn:active, .btn:focus, .btn:active:hover, .btn:active:focus {
  outline: 0;
  box-shadow: none;
  border: 0 none transparent;
}

.btn-default,
.btn-primary {
  color: #14333E;
  background-color: #ffffff;
  padding: 8px 25px;
  border-radius: 20px;
  border: 0 none transparent;
  font-size: 16px;
  font-weight: 500;
}
.btn-default:hover, .btn-default:active, .btn-default:focus, .btn-default:active:hover, .btn-default:active:focus,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:active:hover,
.btn-primary:active:focus {
  color: #ffffff;
  background-color: #00d2d6;
}

.btn-linkedin {
  color: #ffffff;
  background-color: #555354;
}
.btn-linkedin:hover, .btn-linkedin:active, .btn-linkedin:focus, .btn-linkedin:active:hover {
  color: #ffffff;
  background-color: #6a6768;
}

.btn-twitter {
  color: #ffffff;
  background-color: #1da1f3;
}
.btn-twitter:hover, .btn-twitter:active, .btn-twitter:focus, .btn-twitter:active:hover {
  color: #ffffff;
  background-color: #44b1f5;
}

.figure-hero {
  margin-bottom: 2em;
}

img + .lead,
img + .intro {
  margin-top: 20px;
}

.lead,
.intro {
  font-size: 20px;
  font-family: "Fira Sans", sans-serif;
  margin: 1em 0 3em 0;
  font-size: 20px;
  line-height: 28px;
  color: #00AAAD;
}

blockquote {
  border-left: 0 none transparent;
  padding: 25px;
  position: relative;
  font-style: italic;
  overflow: hidden;
}
blockquote p {
  font-family: "Fira Sans", sans-serif;
  font-size: 18px;
}
blockquote:before {
  content: '';
  display: block;
  font-family: 'Font Awesome\ 5 Pro';
  margin-bottom: 5px;
  color: #00AAAD;
  position: absolute;
  top: 0;
  left: 0;
}
blockquote:after {
  content: '';
  display: block;
  font-family: 'Font Awesome\ 5 Pro';
  float: right;
  margin-top: 5px;
  color: #00AAAD;
  bottom: 0;
  right: 5px;
  position: absolute;
}

h1 + hr {
  margin-top: 25px;
  margin-bottom: 30px;
  border-top: 2px #00AAAD solid !important;
}

h2 + hr {
  margin-top: 25px;
  margin-bottom: 30px;
  border-top: 2px #00AAAD solid !important;
}

@media (min-width: 1600px) {
  .container {
    width: 1400px;
  }
}
.welcome {
  background-color: #f3f3f3;
  border-radius: 0;
  padding: 40px;
  margin-bottom: 30px;
}
.welcome h1 {
  color: #ffffff;
}

.img-container {
  max-width: 100%;
  overflow: hidden;
}
.img-container img {
  max-width: 100%;
}

.tick-list {
  list-style: none;
  padding-left: 0;
}
.tick-list li {
  padding-left: 20px;
  position: relative;
}
.tick-list li:before {
  content: '';
  display: block;
  font-family: 'Font Awesome\ 5 Pro';
  color: #00AAAD;
  position: absolute;
  left: 0;
}

.list-mega {
  margin-top: 2em;
  margin-bottom: 2em;
}
.list-mega li > i {
  font-size: 1.4em;
  margin-top: -0.2em;
}
.list-mega > li {
  margin: 0.5em auto;
}
.list-mega > li i {
  opacity: 0.2;
}
.list-mega .completed {
  color: #00AAAD;
}
.list-mega .completed i {
  color: #00AAAD;
  opacity: 1;
}

.attachments {
  margin-left: 0;
}

.attachments a {
  display: block;
  padding: 0.75em;
  font-size: 14px;
  color: #fff;
}
.attachments a:hover {
  color: #00AAAD;
}

.attachments li {
  border-top: solid 1px #ddd;
  margin: 0;
  padding-left: 2em;
}

.attachments li:first-of-type {
  border-top: none;
}

.attachments .details {
  display: block;
  font-size: 0.8em;
  line-height: 1.8em;
  color: #fff;
}

.attachments .details span {
  display: inline-block;
  margin-right: 1.5em;
}

.attachments i {
  color: #00AAAD;
  width: 1.25em;
  margin-left: -1.5em;
}

@media (min-width: 601px) {
  .attachments .details {
    float: right;
  }

  .attachments .details span {
    width: 100px;
  }
}
.meta {
  list-style: none;
  padding-left: 0;
  margin: 8px 0;
}
.meta li {
  display: inline-block;
  margin-right: 3px;
}
.meta li a {
  color: #00AAAD;
}
.meta li + li:before {
  content: '/';
  display: block;
  float: left;
  margin-right: 5px;
}

.media + .media {
  margin-top: 40px;
}

.media > a {
  color: #00AAAD;
  font-family: "Fira Sans", sans-serif;
}

.media-list .media {
  margin-top: 2em;
}
.media-list .media-heading,
.media-list .list-inline {
  margin-bottom: 0.75em;
}

.banner {
  position: relative;
  overflow: hidden;
  height: 300px;
}
.banner .container {
  height: 100%;
  position: relative;
}
.banner .banner-title {
  padding: 20px 30px 20px 100px;
  background-color: #00a1b5;
  position: absolute;
  bottom: 0;
  right: 0;
  min-width: 33%;
  max-width: 66%;
  z-index: 2;
}
.banner .banner-title p {
  color: #ffffff;
  margin-bottom: 0;
  text-align: right;
  font-size: 25px;
}
.banner > img {
  position: absolute;
  width: 100%;
  height: auto;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.banner::after {
  height: 120px;
  width: 140%;
  display: block;
  content: '';
  -ms-transform: rotate(5deg);
      transform: rotate(5deg);
  position: absolute;
  bottom: -100px;
  left: -50px;
}

@media (max-width: 540px) {
  .banner {
    max-height: 200px;
    overflow: hidden;
  }
}
@media (min-width: 768px) {
  .banner .overlay {
    bottom: -10%;
  }
}
.breadcrumb {
  margin-top: 1em;
  background: transparent;
  font-size: 15px;
}
.breadcrumb .active {
  color: #00AAAD;
}
.breadcrumb > li + li:before {
  content: "";
  font-family: 'Font Awesome\ 5 Pro';
  font-weight: 200;
  color: #3d6271;
  font-size: 10px;
  padding: 0 10px 0 5px;
  line-height: 0;
}

.breadcrumbs + h1 {
  font-size: 2.2em;
}

.video-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 56.7%;
  position: relative;
  display: block;
  overflow: hidden;
}
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  position: absolute;
}

.intro-area {
  overflow: hidden;
}
.intro-area .intro-text {
  padding-right: 25px;
}
.intro-area .intro-text h2 {
  margin-top: 0;
}
.intro-area .video-wrapper {
  width: 100%;
  float: right;
  padding-bottom: 61.9%;
  margin: 0 0 25px 25px;
}

@media (max-width: 991px) {
  .intro-area .video-wrapper {
    width: 100%;
    margin-bottom: 20px;
  }

  .breadcrumbs + h1 {
    font-size: 1.8em;
    line-height: 30px;
  }
}
.panel {
  border: 0;
  box-shadow: none;
  background: transparent;
}
.panel .panel-heading {
  background: #3d6271;
  border-bottom: 0;
  padding: 20px;
  display: block;
  font-size: 18px;
  color: #00AAAD;
}
.panel .panel-heading:after {
  content: '';
  font-family: 'Font Awesome\ 5 Pro';
  float: right;
}
.panel .panel-heading a {
  color: #333333;
}
.panel .panel-heading a:hover, .panel .panel-heading a:focus {
  color: #00AAAD;
}
.panel .panel-heading a .panel-title {
  font-family: "Fira Sans", sans-serif;
  font-size: 18px;
}

.panel .panel-body {
  background: #3d6271;
  padding: 2em;
}

@media (min-width: 992px) and (min-height: 801px) {
  .page-content {
    padding-top: 2em;
  }
}
@media screen and (max-width: 520px) {
  .col-xxs-12 {
    width: 100%;
    float: none;
    clear: both;
  }
}
@media screen and (max-width: 480px) {
  .footer-nav .legal {
    text-align: center;
  }
}
.sponsor-section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.sponsor {
  text-align: center;
}
.sponsor .sponsor-img {
  height: 100px;
  max-width: 100%;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.sponsor .sponsor-img img {
  margin-bottom: 10px;
  width: 80%;
  max-width: 200px;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.sponsor a {
  font-weight: 500;
  color: #fff;
}
.sponsor a span {
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.sponsor a:hover span {
  color: #00AAAD;
}
.sponsor a:hover .sponsor-img {
  -ms-transform: scale(1.2);
      transform: scale(1.2);
}
.sponsor a i {
  margin-left: 10px;
}

@media screen and (max-width: 991px) {
  .sponsor {
    margin-bottom: 30px;
    border-bottom: 1px rgba(255, 255, 255, 0.25) solid;
    padding-bottom: 30px;
  }
}
.promo {
  padding: 0;
  display: block;
  width: 100%;
  min-height: 250px;
  margin-bottom: 20px;
  color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right top;
  position: relative;
  background-color: #9eccd2;
  font-weight: bold;
}
.promo:nth-child(2) {
  background-color: #8c8c8d;
}
.promo:hover {
  background-color: #00a1b5;
  color: #ffffff;
}
.promo div {
  margin-bottom: 20px;
}
.promo hr {
  border: 0;
  max-width: 35px;
  background: #ffffff;
  height: 5px;
  margin: 0 0 16px;
  text-align: left;
}
.promo a {
  color: #ffffff;
}
.promo .text {
  padding: 25px 30px 5px 20px;
  z-index: 3;
  position: relative;
  height: 100%;
}
.promo img {
  height: 60px;
  width: 60px;
}
.promo .Pheadline p {
  font-family: "Fira Sans", sans-serif;
  font-size: 24px;
  line-height: 25px;
  margin-bottom: 0.3em;
  font-weight: 100;
}
.promo .Plink p {
  font-family: "Fira Sans", sans-serif;
  font-size: 15px;
  margin-bottom: 0;
}
.promo .Plink p:before {
  content: " ";
  background-image: url("../img/right-arrow.png");
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 10px;
  float: right;
  margin-right: 30px;
  margin-top: 10px;
  height: 10px;
}
.promo .Pimg {
  position: absolute;
  bottom: 0;
  left: 15px;
}

@media screen and (max-width: 767px) {
  .promo {
    min-height: 220px;
  }
  .promo .Pimg {
    left: inherit;
    right: 30px;
    top: 25px;
  }
  .promo .text {
    width: 80%;
  }
}
@media (min-width: 580px) and (max-width: 991px) {
  aside .promo {
    width: 48%;
    float: left;
    margin-top: 30px;
  }

  aside .promo:nth-child(even) {
    float: right;
    margin-left: 3.8%;
  }
}
#twitter-widget-0 {
  border: 1px #ededed solid !important;
  box-sizing: border-box;
  width: 100% !important;
}

.timeline-Widget {
  max-width: none !important;
  width: 100% !important;
}

.search1,
.search2,
.search3,
.search4,
.search5 {
  padding: 0.15em 0.25em;
  background: #f7e19d;
}

.pagination > li > a, .pagination > li > span {
  background-color: transparent !important;
  border: 0;
}

.social-media {
  margin: 1em 0 3em 0;
}

.content-social {
  margin: 3em 0;
}
.content-social a {
  color: #fff;
}
.content-social a:hover {
  color: #00AAAD;
}

.project-partners .card {
  background-color: #f6f6f6;
}

.content-heading h1 {
  color: #00AAAD;
  margin-bottom: 1em;
}

.card .card-block h1 {
  font-size: 29px;
}
