@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src:
    local(""),
    url("../fonts/inter-v12-latin-regular.woff2") format("woff2"),
    url("../fonts/inter-v12-latin-regular.woff") format("woff");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  src:
    local(""),
    url("../fonts/inter-v12-latin-700.woff2") format("woff2"),
    url("../fonts/inter-v12-latin-700.woff") format("woff");
}

/* Mixins  */
/*!
 * Bootstrap v4.5.2 (https://getbootstrap.com/)
 * Copyright 2011-2020 The Bootstrap Authors
 * Copyright 2011-2020 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #dd7c0f;
  --yellow: #ffc107;
  --green: #48b54a;
  --teal: #20c997;
  --cyan: #55c4f9;
  --white: #fff;
  --gray: #82837f;
  --gray-dark: #333;
  --primary: #dd7c0f;
  --secondary: #404554;
  --success: #48b54a;
  --info: #55c4f9;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #eee;
  --dark: #333;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1360px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

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

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

footer {
  display: block;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #222;
  text-align: left;
  background-color: #fff;
}

img{
  max-width: 100%
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

h1 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ul {
  margin-top: 0;
  margin-bottom: 1rem;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

a {
  color: #404554;
  text-decoration: underline;
  background-color: transparent;
}

a:hover {
  color: #1f2129;
  text-decoration: none;
}

img {
  vertical-align: middle;
  border-style: none;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

h1 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.blockquote-footer {
  display: block;
  font-size: 70%;
  color: #888;
}

.blockquote-footer::before {
  content: "\2014\00A0";
}

.container,
.container-fluid {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1360px) {
  .container {
    max-width: 1320px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px;
}

.col-12,
.col-md-12,
.col-lg-2,
.col-lg-5,
.col-lg-10,
.col-xl-4,
.col-xl-8 {
  position: relative;
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

@media (min-width: 768px) {
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
}

@media (min-width: 1360px) {
  .col-xl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col-xl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #48b54a;
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before,
.custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #ad610c;
  border-color: #a15b0b;
}

.btn-primary:not(:disabled):not(.disabled):active:focus,
.btn-primary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(226, 144, 51, 0.5);
}

.btn-secondary:not(:disabled):not(.disabled):active,
.btn-secondary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #2a2d37;
  border-color: #242730;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus,
.btn-secondary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(93, 97, 110, 0.5);
}

.btn-success:not(:disabled):not(.disabled):active,
.btn-success:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #39913b;
  border-color: #368737;
}

.btn-success:not(:disabled):not(.disabled):active:focus,
.btn-success:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(99, 192, 101, 0.5);
}

.btn-info:not(:disabled):not(.disabled):active,
.btn-info:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #24b3f7;
  border-color: #17aff7;
}

.btn-info:not(:disabled):not(.disabled):active:focus,
.btn-info:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(111, 205, 250, 0.5);
}

.btn-warning:not(:disabled):not(.disabled):active,
.btn-warning:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus,
.btn-warning:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 202, 44, 0.5);
}

.btn-danger:not(:disabled):not(.disabled):active,
.btn-danger:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus,
.btn-danger:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light:not(:disabled):not(.disabled):active,
.btn-light:not(:disabled):not(.disabled).active {
  color: #222;
  background-color: #d5d5d5;
  border-color: #cecece;
}

.btn-light:not(:disabled):not(.disabled):active:focus,
.btn-light:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(207, 207, 207, 0.5);
}

.btn-dark:not(:disabled):not(.disabled):active,
.btn-dark:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #131313;
}

.btn-dark:not(:disabled):not(.disabled):active:focus,
.btn-dark:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(82, 82, 82, 0.5);
}

.btn-outline-primary:not(:disabled):not(.disabled):active,
.btn-outline-primary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #dd7c0f;
  border-color: #dd7c0f;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus,
.btn-outline-primary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(221, 124, 15, 0.5);
}

.btn-outline-secondary:not(:disabled):not(.disabled):active,
.btn-outline-secondary:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #404554;
  border-color: #404554;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus,
.btn-outline-secondary:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(64, 69, 84, 0.5);
}

.btn-outline-success:not(:disabled):not(.disabled):active,
.btn-outline-success:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #48b54a;
  border-color: #48b54a;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus,
.btn-outline-success:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(72, 181, 74, 0.5);
}

.btn-outline-info:not(:disabled):not(.disabled):active,
.btn-outline-info:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #55c4f9;
  border-color: #55c4f9;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus,
.btn-outline-info:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(85, 196, 249, 0.5);
}

.btn-outline-warning:not(:disabled):not(.disabled):active,
.btn-outline-warning:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus,
.btn-outline-warning:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger:not(:disabled):not(.disabled):active,
.btn-outline-danger:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus,
.btn-outline-danger:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light:not(:disabled):not(.disabled):active,
.btn-outline-light:not(:disabled):not(.disabled).active {
  color: #222;
  background-color: #eee;
  border-color: #eee;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus,
.btn-outline-light:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(238, 238, 238, 0.5);
}

.btn-outline-dark:not(:disabled):not(.disabled):active,
.btn-outline-dark:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #333;
  border-color: #333;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus,
.btn-outline-dark:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 0 0 0.2rem rgba(51, 51, 51, 0.5);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #f6b976;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #f9d2a6;
  border-color: #f9d2a6;
}

.close:not(:disabled):not(.disabled):hover,
.close:not(:disabled):not(.disabled):focus {
  opacity: 0.75;
}

.rounded {
  border-radius: 5px !important;
}

.d-none {
  display: none !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
}

.align-items-center {
  align-items: center !important;
}

@supports (position: sticky) {
}

.mb-4 {
  margin-bottom: 1.25rem !important;
}

@media (min-width: 992px) {
  .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}

.text-center {
  text-align: center !important;
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
}

@media (min-width: 992px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  blockquote {
    border: 1px solid #aaa;
    page-break-inside: avoid;
  }
  img {
    page-break-inside: avoid;
  }
  p {
    orphans: 3;
    widows: 3;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 992px !important;
  }
  .container {
    min-width: 992px !important;
  }
}

/* Mixins  */
html {
  position: relative;
  min-height: 100%;
}

body {
  font-size: 14px;
  overflow-x: hidden;
}

a {
  outline: none !important;
}

h1 {
  color: #222;
  margin-bottom: 30px;
  font-size: 30px;
  font-weight: 700;
  line-height: 36px;
  text-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
}

@media (max-width: 1359.98px) {
  h1 {
    font-size: 24px;
    line-height: 28px;
    margin-bottom: 20px;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 18px;
    line-height: 21px;
    margin-bottom: 10px;
  }
}

label.checkbox input:not(:checked).error + span {
  color: #dc3545;
}

label.checkbox input:not(:checked).error + span:before {
  border-color: #dc3545;
}

label.checkbox input:not(:checked).error + span a {
  color: #dc3545;
}

.header {
  height: 70px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 991.98px) {
  .header {
    height: 60px;
  }
}

@media (max-width: 767.98px) {
  .header {
    height: 40px;
  }
}

.header .container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-dark {
  background: #f4f4f4;
}

.content {
  position: relative;
  z-index: 2;
}

.footer {
  position: relative;
  z-index: 2;
  padding: 50px 0;
  font-size: 14px;
  line-height: 17px;
  background: #f4f4f4;
  color: #aaa;
  text-align: center;
}

@media (max-width: 1359.98px) {
  .footer {
    padding: 40px 0;
  }
}

@media (max-width: 767.98px) {
  .footer {
    padding: 30px 0;
  }
}

.footer a {
  color: #aaa;
  text-decoration: underline;
}

.footer a:hover {
  text-decoration: none;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-flow: row wrap;
  margin: 0;
}

@media (max-width: 1359.98px) {
  .footer-links {
    margin: 0;
    justify-content: center;
  }
}

.footer-link:before {
  content: "|";
  margin: 0 7px;
  color: #eee;
}

.footer-link:first-child:before {
  display: none;
}

/*.questionary-progress-item:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translate(0, -50%);
  background: #fff; }

.questionary-progress-item:after {
  display: none;
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transform: translate(4px, -50%);
  background: #fff; }*/

.blockquote {
  font-size: 25px;
  font-style: italic;
  font-weight: 600;
  line-height: 30px;
  color: #154b65;
  text-align: center;
  position: relative;
}

.blockquote.blogquote {
  line-height: 35px;
  padding: 50px 70px;
  border-left: 5px solid #54c4f9;
  background-color: #f4f4f4;
  color: #222;
}

@media (max-width: 991.98px) {
  .blockquote {
    font-size: 23px;
    line-height: 28px;
  }
  .blockquote.blogquote {
    padding: 40px 50px;
  }
}

@media (max-width: 767.98px) {
  .blockquote {
    font-size: 20px;
    line-height: 24px;
  }
  .blockquote.blogquote {
    padding: 30px;
  }
}

.blog {
  font-size: 20px;
  line-height: 28px;
  padding: 50px 0 40px;
  color: #222;
}

@media (max-width: 991.98px) {
  .blog {
    font-size: 19px;
    line-height: 26px;
    padding: 35px 0 32px;
  }
}

@media (max-width: 767.98px) {
  .blog {
    font-size: 18px;
    line-height: 24px;
    padding: 20px 0 25px;
  }
}

.blog h1 {
  font-size: 50px;
  font-weight: bold;
  line-height: 60px;
  text-align: center;
  margin-bottom: 30px;
  color: #111;
}

@media (max-width: 991.98px) {
  .blog h1 {
    font-size: 40px;
    line-height: 48px;
  }
}

@media (max-width: 767.98px) {
  .blog h1 {
    font-size: 30px;
    line-height: 35px;
  }
}

.blog p {
  margin: 0 0 28px;
}

@media (max-width: 991.98px) {
  .blog p {
    margin: 0 0 26px;
  }
}

@media (max-width: 767.98px) {
  .blog p {
    margin: 0 0 24px;
  }
}

.blog-info {
  font-size: 16px;
  line-height: 20px;
  color: #888;
  display: flex;
  white-space: nowrap;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  .blog-info {
    font-size: 15px;
    line-height: 18px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .blog-info {
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 20px;
  }
}

.blog-info .separator {
  color: #ddd;
  margin: 0 10px;
}

@media (max-width: 991.98px) {
  .blog-info .separator {
    margin: 0 12px;
  }
}

@media (max-width: 767.98px) {
  .blog-info .separator {
    margin: 0 10px;
  }
}

.blog-info img {
  margin-right: 10px;
  border-radius: 50%;
  object-fit: cover;
  width: 40px;
  height: 40px;
}

@media (max-width: 991.98px) {
  .blog-info img {
    margin-right: 8px;
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 767.98px) {
  .blog-info img {
    margin-right: 6px;
    width: 30px;
    height: 30px;
  }
}

.blog-image {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
}

@media (max-width: 991.98px) {
  .blog-image {
    margin-bottom: 30px;
  }
}

@media (max-width: 767.98px) {
  .blog-image {
    margin: 0 0 20px;
  }
}

@media (max-width: 575.98px) {
  .blog-image {
    margin: 0 -20px 50px;
  }
}

.blog-image img {
  width: 100%;
}

.blog-image-text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0 70px;
  color: #888;
  font-size: 14px;
  font-style: italic;
  line-height: 17px;
}

@media (max-width: 991.98px) {
  .blog-image-text {
    padding: 0 35px;
  }
}

@media (max-width: 767.98px) {
  .blog-image-text {
    padding: 0;
    bottom: -27px;
    text-align: center;
  }
}

.blog-text {
  padding: 0 70px;
}

@media (max-width: 991.98px) {
  .blog-text {
    padding: 0 35px;
  }
}

@media (max-width: 767.98px) {
  .blog-text {
    padding: 0;
  }
}

.blog-text img {
  width: 100%;
  display: block;
}

.blog-text-image,
.blog-video {
  margin: 0 0 30px;
}

@media (max-width: 991.98px) {
  .blog-text-image,
  .blog-video {
    margin: 0 0 25px;
  }
}

@media (max-width: 575.98px) {
  .blog-text-image,
  .blog-video {
    margin: 0 -20px 20px;
  }
}

.video,
.image {
  display: flex;
  align-items: center;
}

.media-description {
  color: #888;
  font-size: 14px;
  font-style: italic;
  line-height: 17px;
  margin-top: 15px;
}

@media (max-width: 991.98px) {
  .media-description {
    margin-top: 10px;
  }
}

@media (max-width: 575.98px) {
  .media-description {
    margin-left: 20px;
    margin-right: 20px;
  }
}

video::-webkit-media-controls {
  display: none;
}

.blog-list {
  background: #f4f4f4;
  padding: 35px 40px 30px;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .blog-list {
    padding: 30px 35px 35px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .blog-list {
    padding: 25px 20px 20px;
    margin-bottom: 20px;
  }
}

.blog-list.rounded {
  border-radius: 10px;
}

@media (max-width: 767.98px) {
  .blog-list.rounded {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.region-title {
  font-size: 25px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  border-bottom: 2px solid #ccc;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

@media (max-width: 991.98px) {
  .region-title {
    font-size: 21px;
    line-height: 25px;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
}

@media (max-width: 767.98px) {
  .region-title {
    font-size: 18px;
    line-height: 21px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}

.region-line {
  display: flex;
  flex: 0 auto;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 22px;
}

@media (max-width: 991.98px) {
  .region-line {
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 19px;
  }
}

@media (max-width: 767.98px) {
  .region-line {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 16px;
  }
}

.region-label {
  width: 71px;
  flex: 0 auto;
  color: #aaa;
}

@media (max-width: 991.98px) {
  .region-label {
    width: 67px;
  }
}

@media (max-width: 767.98px) {
  .region-label {
    width: 63px;
  }
}

.region-text {
  flex: 1;
}

.region-taps-wrap {
  text-align: right;
  margin-top: -30px;
  z-index: 3;
}

@media (max-width: 767.98px) {
  .region-taps-wrap {
    margin: 0;
    text-align: center;
  }
}

.region-taps {
  color: #aaa;
  font-size: 18px;
  font-style: italic;
  font-weight: bold;
  line-height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (max-width: 767.98px) {
  .region-taps {
    display: flex;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
  }
}

.region-taps img {
  width: auto;
  flex: 0 auto;
  height: 24px;
  margin: 0 0 6px;
}

@media (max-width: 767.98px) {
  .region-taps img {
    height: 20px;
  }
}

.map {
  display: block;
  position: relative;
}

@media (max-width: 767.98px) {
  .map {
    display: none;
  }
}

.map-sm {
  margin: 0 -5px 25px;
  display: none;
}

@media (max-width: 767.98px) {
  .map-sm {
    display: block;
  }
}

.nounderline {
  text-decoration: none;
}
.yearbuttons a {
  text-align: center;
  font-weight: 600;
  font-size: 1.3rem;
  color: #fff;
  background-color: #55c4f9;
  min-width: 104px;
  text-decoration: none;
  padding: 1.2rem 0.8rem;
  display: inline-block;
  margin: 0 1px 8px 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  box-sizing: border-box;
  border-radius: 5px;
}

.yearbuttons a:hover {
  background-color: #30b7f8;
}
.yearbuttons a.fullage {
  width: 100%;
  margin: 0 0 15px 0;
}
@media (max-width: 991.98px) {
  .yearbuttons a {
    min-width: 108px;
  }
}
@media (max-width: 767.98px) {
  .yearbuttons a {
    min-width: 110px;
    font-size: 1.05rem;
    padding: 0.8rem 0.8rem;
  }
}
@media (max-width: 591px) {
  .yearbuttons a {
    min-width: 90px;
  }
}
.header {
  background: #166fbd;
}
@media (max-width: 767.98px) {
  .header {
    height: 45px;
  }
}

/*SUCCESS*/
/* END SUCCESS*/
.logoleft {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
  background-color: #fff;
  border-radius: 10px;
  padding: 5px 10px 5px 10px;
}

.logoleft img {
  max-height: 40px;
  max-width: 393px;
}

@media (max-width: 767.98px) {
  .logoleft img {
    max-width: 300px;
    max-height: 30px;
  }
}
.docs-header {
  background-color: #fff;
}
h2, .h2 {
    font-weight: 700;
    color: #222;
    font-size: 50px;
    line-height: 60px;
    margin-bottom: 40px;
}
@media (max-width: 768px) {
    .docs-header {
        height: 60px;
    }
}
@media (max-width: 768px) {
    .logo img {
        height: 40px;
    }
}
@media (max-width: 768px) {
    h2, .h2 {
        font-size: 30px;
        line-height: 35px;
        margin-bottom: 20px;
    }
}
.docs-container {
  margin-top: 30px;
  max-width: 650px;
}
.docs-img {
  max-width: 100px;
  margin: 10px auto;
}