*, :after, :before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased!important;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'barlow', sans-serif;
  overflow: hidden;
  height: 100vh;
}
.wrapper {
  position: relative;
  height: 100%;
  padding: 4vw;
}
.list {
  display: flex;
  list-style: none;
}
/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 50vw;
  height: 100vh;
  background-color: #1C12E3;
  color: #FFFFFF;
  z-index: 555;
}
.header-container {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.header h1 {
  font-size: calc(16px + 1.6vw);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-counter {
  padding: 1vw 0;
}
.nav-counter h4 {
  text-transform: uppercase;
  font-size: calc(14px + 1vw);
}
.nav-counter p {
  text-transform: uppercase;
  font-size: calc(18px + 4vw);
}
.nav-btn {
  position: relative;
  display: block;
  cursor: pointer;
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: calc(8px + 1vw);
  height: calc(40px + 1.8vw);
  line-height: calc(40px + 1.8vw);
  margin-right: 10px;
}
.nav-btn:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #FFFFFF;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.nav-btn.nuxt-link-exact-active:after {
  width: 100%
}
.nav-btn.primary {
  font-size: calc(10px + 1.4vw);
  -webkit-box-shadow: inset 0px 0px 0px 4px #FFFFFF;
  box-shadow: inset 0px 0px 0px 4px #FFFFFF;
  margin-right: 20px;
}
@media screen and (max-width: 900px) {
  .header {
    width: 100vw;
    height: 70px;
  }
  .header h1 {
    display: none;
  }
  .nav-counter {
    display: none;
  }
  .wrapper {
    padding: 25px;
  }
  .header .wrapper {
    padding: 15px 25px;
  }
  .nav-list {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #1C12E3;
    color: #FFFFFF;
    z-index: 5555;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 80px 20px;
    text-align: center;
    transform: translateX(100%);
    -webkit-transform: translateX(100%);
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
  }
  .nav-list li {
    margin: 10px 0;
  }
  .nav-list.open {
    transform: translateX(0);
    -webkit-transform: translateX(0);
  }
  .nav-btn {
    display: inline-block;
    font-size: 28px;
    height: auto;
  }
  .nav-btn.primary {
    font-size: 16px;
    height: 40px;
    line-height: 40px;
    -webkit-box-shadow: inset 0px 0px 0px 4px #FFFFFF;
    box-shadow: inset 0px 0px 0px 4px #FFFFFF;
    margin-right: 0;
  }
}
.menu-link {
  position: absolute;
  top: 20px;
  right: 25px;
  display: none;
  z-index: 55555;
}
.menu-link span {
  display: block;
  font-size: 16px;
  line-height: 30px;
  height: 30px;
  font-weight: 500;
  text-transform: uppercase;
}
.menu-link i {
  position: relative;
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
.menu-link .bar,
.menu-link .bar:before,
.menu-link .bar:after {
  width: 20px;
  height: 1px;
  background: #FFFFFF;
}
.menu-link .bar {
  position: absolute;
  top: 14px;
  left: 5px;
  width: 20px;
  transition: all 0ms 300ms;
}
.menu-link .bar:before,
.menu-link .bar:after {
  content: "";
  position: absolute;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-link .bar:before {
  left: 0;
  bottom: 6px;
  transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-link .bar:after {
    left: 0;
    top: 6px;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1), background 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-link.open .bar {
  background: rgba(255, 255, 255, 0);
}
.menu-link.open .bar:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.menu-link.open .bar:before {
  bottom: 0;
  transform: rotate(-45deg);
  transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (max-width: 900px) {
  .menu-link {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}



/* Main */
.main {
  position: relative;
  display: block;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.main-container {
  padding-left: 50vw;
}
.mobile-counter {
  display: none;
}
@media screen and (max-width: 900px) {
  .main-container {
    padding-left: 0;
    padding-top: 70px;
  }
}
.section {
  margin-bottom: 4vw;
}
.section-header {
  margin-bottom: 2vw;
}
.section-header  h2 {
  font-size: calc(16px + 1.6vw);
  text-transform: uppercase;
  color: #1C12E3;
}
.question,
.resource {
  margin-bottom: 2vw;
}
.question h3 {
  font-size: calc(16px + 0.8vw);
  margin-bottom: 1vw;
}
.section p {
  font-size: calc(10px + 0.6vw);
  font-weight: 400;
}
.section h4 {
  font-size: calc(18px + 0.4vw);
}
.section a {
  color: #1C12E3;
}
.title-mobile {
  display: none;
  background-color: #1C12E3;
  color: #FFFFFF;
  padding: 25px;
}
.title-mobile h2 {
  font-size: calc(28px + 1.6vw);
  text-transform: uppercase;

}
.error {


}
.error h2 {
  font-size: calc(30px + 15vw);
  font-weight: 300;
  color: #1C12E3;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.error a {
  display: inline-block;
  text-transform: uppercase;
  font-size: calc(10px + 1.4vw);
  color: #1C12E3;
  text-decoration: none;
  margin-top: 2vw;
}
@media screen and (max-width: 900px) {
  .question,
  .resource,
  .section {
    margin-bottom: 50px;
  }
  .section p {
    font-size: calc(16px + 0.2vw);
    font-weight: 300;
  }
  .title-mobile {
    display: block;
  }
  .section-header h2 {
    font-size: calc(20px + 1.6vw);
  }
  p.mobile-counter {
    display: block;
    font-weight: bold;
  }
}
/* Grid */
.row {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: -10px;
}
.col-1 {
  padding: 10px;
  width: 100%;
}
.col-2 {
  padding: 10px;
  width: 50%;
}
@media screen and (max-width: 900px) {
  .col-1,
  .col-2 {
    width: 100%;
  }
}
/* Panel */
.panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100vh;
  color: #000000;
  background-color: #FFFFFF;
  z-index: 5555555;
  overflow: hidden;
}
.panel-header {
  display: block;
  position: relative;
}
.panel-title {
  font-size: calc(24px + 1vw);
  text-transform: uppercase;
  color: #1C12E3;
  line-height: 1;
  margin: 0;
  padding: 0;
}
.panel-container {
  height: 100%;
  overflow-y: auto;
}
.panel-content {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}
.panel-content a {
  color: #1C12E3;
}
.panel-footer {
  margin: 2vw 0;
}
.panel-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 5555558;
}
.panel-close:before, .panel-close:after {
  position: absolute;
  left: 15px;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #1C12E3;
}
.panel-close:before {
  transform: rotate(45deg);
}
.panel-close:after {
  transform: rotate(-45deg);
}
.panel-show-enter-active, .panel-show-leave-active {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.panel-show-enter, .panel-show-leave-to {
  transform: translateX(100%);
  -webkit-transform: translateX(100%);
}
@media screen and (max-width: 900px) {
  .panel {
    width: 100vw;
  }
  .panel-header {
    margin-top: 25px;
  }
  .panel-footer {
    margin: 25px 0;
  }
  .panel .wrapper {
    padding: 15px 25px;
  }
}
/* Form */
.form {
  padding: 2vw 0;
}
.form-message {
  padding: 4vw 0;
}
.form-message h4 {
  font-size: calc(16px + 2vw);
  text-transform: uppercase;
  color: #1C12E3;
}
.form-message .btn {
  margin-top: 2vw;
}
.form-show-enter-active, .form-show-leave-active {
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.form-show-enter-active {
  position: absolute;
  top: 0;
  left: 0;
  width: 42vw;
}
.form-show-enter {
  opacity: 0;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}
.form-show-leave-to {
  opacity: 0;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
}

@media screen and (max-width: 900px) {
  .form-message {
    padding: 4vh 0;
  }
  .form-message h4 {
    font-size: calc(16px + 2vh);

  }
  .form-message .btn {
    margin-top: 2vh;
  }
  .form-show-enter-active {
    width: calc(100vw - 50px);
  }
}


.paginator {
  margin: 15px 0;
}
.paginator-list a {
  position: relative;
  display: block;
  font-size: 16px;
  padding: 8px 16px;
  text-decoration: none;
  color: #000000;
}
.paginator-list a.nuxt-link-active {
  color: #1C12E3;
}
.paginator-list a:after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: #1C12E3;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
.paginator-list a.nuxt-link-active:after,
.paginator-list a.active:after {
  width: 100%;
}
table {
	width: 100%;
	border-collapse: collapse;
}

th {
  padding: 10px;
	text-align: left;
	font-size: 18px;
	font-weight: bold;
  line-height: 1;
}

td {
	padding: 10px;
	border: 1px solid #ccc;
	text-align: left;
	font-size: 18px;
  line-height: 1;
}

@media screen and (max-width: 900px) {
  table {
	  	width: 100%;
	}
	table, thead, tbody, th, td, tr {
		display: block;
	}
	thead tr {
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	tr { border: 1px solid #ccc; }
	td {
		border: none;
		border-bottom: 1px solid #eee;
		position: relative;
		padding-left: 45%;
    min-height: 30px;
	}
	td:before {
		position: absolute;
		top: 0px;
		left: 0px;
		width: 40%;
		padding: 10px;

		white-space: nowrap;
		content: attr(data-column);
		color: #000;
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
	}
  th,
  td {
  	font-size: 16px;

  }
}

.footer {

}
.footer a {
  text-decoration: none;
  color: #000000;
}
.footer-box p {
  margin: 2vw 0;
  font-size: 20px;
}
.footer-counter {
  display: none;
  color: #1C12E3;
  padding: 1vh 0;
}
.footer-counter h4 {
  text-transform: uppercase;
  font-size: calc(14px + 1vh);
  font-weight: 700;
}
.footer-counter p {
  text-transform: uppercase;
  font-size: calc(18px + 4vh);
  font-weight: 700;
}
a.contact-link {
  text-decoration: none;
  font-size: calc(14px + 2vw);
  color: #1C12E3;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .footer-counter {
    display: block;
  }
  .footer-box p {
    margin: 2vh 0;
    font-size: 16px;
  }
  a.contact-link {
    text-decoration: none;
    font-size: calc(14px + 2vh);
    color: #1C12E3;
  }
}
.page-enter-active, .page-leave-active {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}
.page-enter,
.page-leave-to {
  opacity: 0;
}
