* {
  margin: 0;
  padding: 0;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
body {
  width: 100%;
  background-color: #eee;
  font-family: Segoe UI, Frutiger, Dejavu Sans, Helvetica Neue, Arial,
    sans-serif;
  color: #222;
}
header {
  padding: 0;
  margin: 0;
  border-bottom: 1.5px solid var(--main-color);
}
.nav__container,
header {
  width: 100%;
  background: var(--main-gradient);
  padding: 5px 20px;
}
.nav__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  padding: 20px;
}
.nav__mobile .nav__btn {
  display: block;
}
.nav__mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav__logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #555;
}
.nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
}
.showing {
  max-height: 37rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.nav__menu li {
  list-style: none;
  position: relative;
  white-space: nowrap;
  padding: 1rem 0 0;
}
.nav__menu li a {
  display: block;
  font-size: 1rem;
  color: #222;
  text-decoration: none;
}
.nav-toggle {
  display: block;
  background-color: transparent;
  width: 40px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  position: relative;
  display: block;
  height: 4px;
  border-radius: 35px;
  width: 100%;
  margin-top: 0;
  background-color: #000;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.nav-toggle span.mrg {
  margin-top: 5px;
}
.nav-toggle.open span:first-child {
  -webkit-transform: rotate(45deg) translate(6.2px, 6.2px);
  transform: rotate(45deg) translate(6.2px, 6.2px);
}
.nav-toggle.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.nav-toggle.open span:last-child {
  -webkit-transform: rotate(-45deg) translate(6.2px, -6.2px);
  transform: rotate(-45deg) translate(6.2px, -6.2px);
}
.nav__menu .dropdown ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: static;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.nav__menu .dropdown ul.show {
  max-height: 20rem;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.nav__menu .dropdown li a {
  display: block;
  font-size: 0.875rem;
  text-transform: capitalize;
  color: #222;
  text-decoration: none;
}
.nav__menu li a:hover {
  color: #0062a3;
}
.nav__menu .dropdown > a:after {
  content: "\f107";
  font-family: Font Awesome\5 Free;
  font-weight: 900;
  font-size: 0.875rem;
  padding-left: 5px;
  color: #7e7e7e;
}
.nav__menu .active.dropdown > a:after {
/*  content: "\f106";*/
}
.nav__menu .dropdown .dropdown > a:after {
  content: "\f107";
  font-family: Font Awesome\5 Free;
  font-weight: 900;
  font-size: 0.875rem;
  padding-left: 5px;
  color: #7e7e7e;
}
.nav__menu .dropdown .active.dropdown > a:after {
  content: "\f106";
}
.menu-toggle {
  max-height: 0;
  overflow: hidden;
}
.menu-toggle,
.menu-toggle.active {
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.menu-toggle.active {
  max-height: 100vh;
}
.resize-animation-stopper * {
  -webkit-transition: none !important;
  transition: none !important;
  -webkit-animation: none !important;
  animation: none !important;
}
@media screen and (min-width: 800px) {
  .menu-toggle {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    max-height: 100vh;
    overflow: visible;
  }
  .nav__container {
    width: 100%;
/*    max-width: 1000px;*/
    margin: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0px;
  }
  .nav__container,
  .nav__mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .nav__mobile .nav__btn {
    display: none;
  }
  .nav__logo img {
    width: 100%;
    max-width: 160px;
  }
  .nav__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-height: 100%;
    overflow: visible;
    margin-bottom: 0;
  }
  .nav__menu li {
    list-style: none;
    position: relative;
    white-space: nowrap;
    padding: 1rem;
  }
  .nav__menu li a {
    font-size: 1rem;
    color: white;
    text-decoration: none;
  }
  .nav__menu li a:hover {
    color: #0062a3;
  }
  .nav__menu .dropdown {
    position: relative;
  }
  .nav__menu .dropdown ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: -30px;
    opacity: 0;
    visibility: hidden;
    overflow: visible;
    padding: 0 1rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: 500;
  }
  .nav__menu .dropdown:hover > ul {
    top: 100%;
    left: 0;
    opacity: 1;
    visibility: visible;
    overflow: visible;
    padding: 0 1rem;
    width: 100%;
  }
  .nav__menu .dropdown ul li {
    padding: 0.7rem;
    background-color: white;
    position: relative;
  }
  .nav__menu .dropdown ul li:hover {
    background-color: var(--main-color);
  }
  .nav__menu .dropdown ul li a {
    display: block;
    color: black;
    text-transform: capitalize;
  }
  .nav__menu .dropdown ul li a:hover {
    display: block;
    color: #c7e0f5;
  }
  .nav__menu .dropdown > a:after {
    content: "\F282";
  }
  .nav__menu .dropdown:hover > a:after,
  .nav__menu .dropdown > a:after {
    font-family: bootstrap-icons!important;
    font-weight: 900;
    font-size: 0.875rem;
    padding-left: 5px;
    color: white;
  }
  .nav__menu .dropdown:hover > a:after {
    content: "\F282";
  }
  .nav__menu .dropdown .dropdown > a:after {
    content: "\F282";
  }
  .nav__menu .dropdown .dropdown:hover > a:after,
  .nav__menu .dropdown .dropdown > a:after {
    font-family: Font Awesome\5 Free;
    font-weight: 900;
    font-size: 0.875rem;
    padding-left: 10px;
    color: #fff;
  }
  .nav__menu .dropdown .dropdown:hover > a:after {
    content: "\f104";
  }
  .nav__menu .dropdown .dropdown:hover > ul {
    position: absolute;
    top: 0;
    right: calc(100% - 17px);
    left: auto;
    opacity: 1;
    visibility: visible;
  }
  .nav__menu .dropdown .dropdown ul {
    position: absolute;
    top: 0;
    right: calc(100% - 17px);
    left: auto;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
  }
}
#css-script-menu {
  position: absolute;
  height: 90px;
  width: 100%;
  top: 0;
  left: 0;
  border-top: 5px solid #16a1e7;
  background: #fff;
  -moz-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16);
  z-index: 999999;
  padding: 10px 0;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
.css-script-center {
  max-width: 960px;
  margin: 0 auto;
}
.css-script-center ul {
  width: 212px;
  float: left;
  line-height: 45px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.css-script-center a {
  text-decoration: none;
}
.css-script-ads {
  max-width: 728px;
  height: 90px;
  float: right;
}
.css-script-clear {
  clear: both;
  height: 0;
}
#carbonads {
  font-family: -apple-system, BlinkMacSystemFont, segoe ui, Roboto, Oxygen-Sans,
    Ubuntu, Cantarell, helvetica neue, Helvetica, Arial, sans-serif;
}
#carbonads {
  display: block;
  overflow: hidden;
  max-width: 728px;
  position: relative;
  font-size: 22px;
  box-sizing: content-box;
}
#carbonads > span {
  display: block;
}
#carbonads a {
  color: #111;
  text-decoration: none;
}
#carbonads a:hover {
  color: #000;
}
.carbon-wrap {
  display: flex;
  align-items: center;
}
.carbon-img {
  display: block;
  margin: 0;
  line-height: 1;
}
.carbon-img img {
  display: block;
  height: 90px;
  width: auto;
}
.carbon-text {
  display: block;
  padding: 0 1em;
  line-height: 1.35;
  text-align: left;
}
.carbon-poweredby {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 6px 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  font-size: 8px;
  border-top-left-radius: 4px;
  line-height: 1;
  color: #ccc !important;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .carbon-text {
    font-size: 14px;
  }
}
