@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
header {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  header {
    padding-top: 80px;
  }
}
header .header {
  position: relative;
  padding-top: 1.66666667vh;
  height: auto;
  display: flex;
  height: 80px;
  background-color: #ffffff;
}
@media screen and (max-width: 1200px) {
  header .header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
  }
}
header .header-content {
  margin: 0 5%;
  padding: 0 5%;
  width: 100%;
  border-bottom: 2px solid #fafafd;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .header-content button.hamburger-nav {
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
  background: transparent;
  z-index: 99999;
  border: none;
  padding: 0;
}
@media screen and (min-width: 1200px) {
  header .header-content button.hamburger-nav {
    display: none;
  }
}
header .header-content button.hamburger-nav .bar1,
header .header-content button.hamburger-nav .bar2,
header .header-content button.hamburger-nav .bar3 {
  width: 25px;
  height: 3px;
  background-color: #4a84fc;
  margin: 4px 0;
  transition: transform 0.2s ease-in-out;
  opacity: 1;
}
header .header-content button.hamburger-nav.change .bar1 {
  -webkit-transform: rotate(-45deg) translate(-5px, 6px);
  transform: rotate(-45deg) translate(-5px, 6px);
  background-color: #4a84fc !important;
}
header .header-content button.hamburger-nav.change .bar2 {
  opacity: 0;
}
header .header-content button.hamburger-nav.change .bar3 {
  -webkit-transform: rotate(45deg) translate(-4px, -5px);
  transform: rotate(45deg) translate(-4px, -5px);
  background-color: #4a84fc !important;
}
header .header .header-logo {
  min-height: 100px;
}
header .header .header-logo img {
  width: 100%;
  height: 100%;
}
#layout-content {
  min-height: calc(90vh);
  padding: 30px 10%;
  position: relative;
}
.footer {
  padding: 30px 0;
  background: #4a84fc;
  color: #ffffff;
  position: relative;
  min-height: 5vh;
  padding: 20px 10vw;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (min-width: 2000px) {
  .footer {
    padding: 20px 10%;
  }
}
.footer p {
  font-size: 14px;
  margin: 0;
}
.footer a {
  color: #ffffff;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #D35400;
  background-color: #ECF0F1;
  border-radius: 4px;
}
h1,
.h1 {
  font-size: 41px;
}
h2,
.h2 {
  font-size: 34px;
  font-family: 'Playfair Display', serif;
}
h3,
.h3 {
  font-size: 26px;
}
h4,
.h4 {
  color: #93c021;
  font-size: 20px;
}
h4.subtitle,
.h4.subtitle {
  color: #4a84fc;
  font-weight: 400;
  font-size: 18px;
}
h5,
.h5 {
  font-size: 16px;
}
h6,
.h6 {
  font-size: 14px;
}
h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
  padding: 0;
  margin: 0;
  line-height: 1.1;
  font-weight: bold;
}
i {
  color: #4a84fc;
  font-size: 1.3rem;
}
.text-small {
  font-size: .8rem;
}
ul.list-with-ticks {
  padding: 0;
}
ul.list-with-ticks li {
  list-style: none;
  position: relative;
  padding-left: 23px;
}
ul.list-with-ticks li:before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  background: url('../themes/demo/assets/images/icon-tick.png') no-repeat 0 0;
  background-size: 15px 15px;
  position: absolute;
  left: 0;
  top: 6px;
}
.page-wrapper__nav {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  z-index: 10;
  background-color: #fafafd;
  padding: 3vh 0;
  width: 21vw;
  overflow-y: auto;
}
@media screen and (max-width: 1200px) {
  .page-wrapper__nav {
    display: none;
  }
  .page-wrapper__nav.show {
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow-y: auto;
  }
}
.page-wrapper__nav .nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 60%;
  margin: 0 auto 50px;
}
.page-wrapper__nav .nav-logo img {
  max-width: 60vw;
  max-height: 150px;
}
.page-wrapper__nav ul {
  padding: 0 7.5%;
  margin: 0;
}
.page-wrapper__nav ul li {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 25px;
}
.page-wrapper__nav ul li a.nav-link {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  border-radius: 15px;
  transition: all 0s linear;
  color: #494949;
  padding: 0;
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
.page-wrapper__nav ul li a.nav-link:hover {
  text-decoration: none;
  background-color: #ddecfe;
}
.page-wrapper__nav ul li a.nav-link:hover .nav-link__image {
  background-color: #ddecfe;
}
.page-wrapper__nav ul li a.nav-link .nav-link__image {
  color: #ffffff;
  background-color: #ddecfe;
  padding: 15px;
  border-radius: 15px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
}
.page-wrapper__nav ul li a.nav-link .nav-link__image img {
  margin: auto;
  max-width: 40px;
  max-height: 40px;
}
.page-wrapper__nav ul li a.nav-link .nav-link__text {
  padding: 15px 0 15px 15px;
}
.page-wrapper__nav ul li a.nav-link .nav-link__text .nav-link__counter {
  font-weight: 100;
  font-size: 12px;
  margin-bottom: 2px;
  margin-top: -2px;
}
.page-wrapper__nav ul li a.nav-link .nav-link__text .nav-link__title h4 {
  color: #494949;
  font-weight: 500;
}
.page-wrapper__nav ul li a.nav-link .nav-link__text .nav-link__title::first-letter {
  text-transform: uppercase;
}
.page-wrapper__nav ul li a.nav-link.active {
  background-color: #4a84fc;
  border-radius: 15px;
  color: #ffffff;
}
.page-wrapper__nav ul li a.nav-link.active .nav-link__title {
  font-weight: bold;
}
.page-wrapper__nav ul li a.nav-link.active .nav-link__title h4 {
  color: #ffffff;
}
.page-wrapper__nav ul li a.nav-link.active .nav-link__title::first-letter {
  text-transform: uppercase;
}
.page-wrapper__nav ul li a.nav-link.active .nav-link__image {
  background-color: transparent;
}
.page-wrapper__nav ul li a.nav-link.active .nav-link__image img {
  filter: brightness(0) invert(1);
}
.page-wrapper__content {
  padding: 0;
}
@media screen and (min-width: 1200px) {
  .page-wrapper__content {
    max-width: 79vw;
    margin-left: 21vw;
  }
}
.page-wrapper__content .breadcrumbs {
  margin-bottom: 2rem;
}
.page-wrapper__content .breadcrumbs a {
  text-transform: capitalize;
  color: #494949;
  opacity: .7;
}
.page-wrapper__content .breadcrumbs a:not(:last-of-type)::after {
  content: '>';
  display: inline-block;
  margin: 0 5px;
}
.page-wrapper__content .breadcrumbs a:hover {
  opacity: 1;
}
