/*=====================================
Base colors should not be documented.
Only document color use.

Colors -----------------------------*/
/* Specialty Gradient -----------------*/
/* Interface colors -------------------*/
/* Main colors ------------------------*/
/*=====================================

Background colors ------------------*/
/* Card colors ------------------*/
/* Active colors ----------------------*/
/* Hover colors -----------------------*/
/* Focus colors -----------------------*/
/* Border colors ----------------------*/
/* Shadow colors ----------------------*/
/* Text colors ------------------------*/
/* Data colors ------------------------*/
/* Status colors ----------------------*/
/* Link colors ------------------------*/
/* Product colors ---------------------*/
/* Category colors ---------------------*/
/* CLEAN UP AND REMOVE */
/* Headings */
/* Standard Font Weights */
/* Non_Standard Font Weights */
.caption {
  color: #687887;
  font-size: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

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

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  height: 100vh;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-size: 16px;
  line-height: 1.5;
  background-color: #FFFFFF;
  height: 100%;
  letter-spacing: 0;
  font-weight: 500;
  font-style: normal;
  text-rendering: optimizeLegibility;
  -moz-font-feature-settings: "liga" on;
  color: #242B42;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  min-height: 100vh;
  padding: 50px;
  padding-top: 71px !important;
}

a {
  text-decoration: none;
  color: #0400FF;
}

@font-face {
  font-family: "jasonicon";
  src: url("/fonts/jasonicon.eot");
  src: url("/fonts/jasonicon.eot?#iefix") format("embedded-opentype"), url("/fonts/jasonicon.woff") format("woff"), url("/fonts/jasonicon.ttf") format("truetype"), url("/fonts/jasonicon.svg#jasonicon") format("svg");
  font-weight: normal;
  font-style: normal;
}
[data-icon], [class^=icon-], [class*=" icon-"] {
  vertical-align: middle;
}

[data-icon]:before {
  font-family: "jasonicon" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

[class^=icon-]:before,
[class*=" icon-"]:before {
  font-family: "jasonicon" !important;
  font-style: normal !important;
  font-weight: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-angle-left:before {
  content: "a";
}

.icon-dribbble:before {
  content: "c";
}

.icon-pintrest:before {
  content: "e";
}

.icon-github:before {
  content: "b";
}

.icon-arrow-down:before {
  content: "d";
}

.icon-arrow-right:before {
  content: "f";
}

.icon-block-question:before {
  content: "g";
}

.icon-arrow-left:before {
  content: "t";
}

.icon-arrow-up-right-from-square:before {
  content: "u";
}

.icon-book-sparkles:before {
  content: "h";
}

.icon-charging-station:before {
  content: "v";
}

.icon-cloud-arrow-down:before {
  content: "w";
}

.icon-cubes:before {
  content: "x";
}

.icon-display-chart-up:before {
  content: "i";
}

.icon-figma:before {
  content: "j";
}

.icon-handshake-angle:before {
  content: "o";
}

.icon-html-5:before {
  content: "p";
}

.icon-laptop-code:before {
  content: "k";
}

.icon-laptop-mobile:before {
  content: "l";
}

.icon-rails:before {
  content: "s";
}

.icon-react:before {
  content: "r";
}

.icon-swap-arrows:before {
  content: "m";
}

.icon-swift:before {
  content: "q";
}

.icon-wand-magic-sparkles:before {
  content: "n";
}

.icon-calendar-alt:before {
  content: "y";
}

.icon-download:before {
  content: "z";
}

.icon-tag:before {
  content: "A";
}

.icon-jc-logo:before {
  content: "B";
}

.icon-linkedin:before {
  content: "C";
}

.icon-x-twitter:before {
  content: "D";
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(20px) saturate(180%) contrast(120%);
  -webkit-backdrop-filter: blur(20px) saturate(180%) contrast(120%);
  border-bottom: 1px solid rgba(228, 232, 240, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}
.nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
  backdrop-filter: blur(25px) brightness(110%);
  -webkit-backdrop-filter: blur(25px) brightness(110%);
  pointer-events: none;
  z-index: -1;
}
.nav-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
@media screen and (max-width: 575px) {
  .nav-container.nav-open .nav-menu {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #242B42;
  font-weight: 700;
  transition: all 0.3s ease;
  width: 141px;
}
.nav-logo:hover {
  color: #0400FF;
}
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 32px;
}
.nav-menu.social {
  gap: 0;
}
@media screen and (max-width: 575px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(25px) saturate(180%) contrast(120%);
    -webkit-backdrop-filter: blur(25px) saturate(180%) contrast(120%);
    border-bottom: 1px solid rgba(228, 232, 240, 0.3);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  }
  .nav-menu::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(30px) brightness(115%);
    -webkit-backdrop-filter: blur(30px) brightness(115%);
    pointer-events: none;
    z-index: -1;
  }
  .nav-menu.social {
    position: static;
    flex-direction: row;
    justify-content: center;
    background: none;
    border: none;
    box-shadow: none;
    padding: 16px 0 0 0;
    margin-top: 16px;
    border-top: 1px solid #E4E8F0;
    opacity: 1;
    display: none !important;
    transform: none;
  }
}
.nav-menu-item {
  margin: 0;
}
@media screen and (max-width: 575px) {
  .nav-menu-item {
    width: 100%;
    text-align: center;
  }
}
.nav-link {
  text-decoration: none;
  color: #242B42;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.nav-link:hover {
  color: #0400FF;
  background: rgba(4, 0, 255, 0.1);
}
@media screen and (max-width: 575px) {
  .nav-link {
    display: block;
    padding: 16px 24px;
    font-size: 20px;
    border-radius: 16px;
  }
}
.nav-social {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-social-link {
  color: #242B42;
  font-size: 24px;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 47px;
  height: 47px;
  line-height: 47px;
  text-align: center;
}
.nav-social-link:hover {
  color: #0400FF;
  background: rgba(4, 0, 255, 0.1);
  transform: translateY(-2px);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  z-index: 1001;
}
@media screen and (max-width: 575px) {
  .nav-toggle {
    display: flex;
  }
}
.nav-toggle span {
  width: 25px;
  height: 2px;
  background: #242B42;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: none;
  background: rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.lightbox-content {
  position: relative;
  z-index: 1002;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  cursor: default;
  pointer-events: none;
}
.lightbox-media-container {
  max-width: 100%;
  max-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
}
.lightbox-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}
.lightbox-video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 14px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
.lightbox-caption {
  color: white;
  max-width: 600px;
}
.lightbox-caption-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .lightbox-caption-title {
    font-size: 18px;
  }
}
.lightbox-caption-description {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
@media (max-width: 768px) {
  .lightbox-caption-description {
    font-size: 14px;
  }
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100px;
  height: 100px;
  appearance: none;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 1px 11px black;
  font-size: 20px;
  transition: background 0.3s ease;
  pointer-events: all;
  border-radius: 200px;
  z-index: 1003;
}
.lightbox-nav i {
  display: block;
  transition: all 0.3s ease;
}
.lightbox-nav:hover {
  background: rgba(44, 0, 219, 0.3);
}
.lightbox-nav:hover i {
  transform: scale(1.1);
}
.lightbox-nav.prev {
  left: 10px;
}
.lightbox-nav.next {
  right: 10px;
}
.lightbox-close {
  position: absolute;
  top: 10px;
  left: 10px;
  appearance: none;
  border: 0;
  background: none;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 1px 11px black;
  font-size: 20px;
  transition: all 0.3s ease;
  display: block;
  background: transparent;
  padding: 10px;
  border-radius: 200px;
  width: 40px;
  height: 40px;
  text-align: center;
  pointer-events: all;
  z-index: 1003;
}
.lightbox-close:hover {
  background: rgba(44, 0, 219, 0.3);
  transform: scale(1.1);
}

body.index {
  color: #FFFFFF;
}
body.index a.avatar {
  visibility: hidden;
}
body.index section.hero {
  padding-top: 0;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  body.index section.hero {
    padding-top: 0;
    padding-bottom: 32px;
  }
}
body.index section.hero .hero-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
}
body.index section.hero .hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 60vh;
}
@media (max-width: 932px) {
  body.index section.hero .hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-top: 32px;
  }
}
body.index section.hero .hero-text {
  max-width: 600px;
}
@media (max-width: 932px) {
  body.index section.hero .hero-text {
    order: 2;
    margin: auto;
  }
}
body.index section.hero .hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.1;
  color: #242B42;
  margin: 0 0 32px 0;
  letter-spacing: -0.01em;
}
@media (max-width: 1080px) {
  body.index section.hero .hero-title {
    font-size: 54px;
  }
}
@media screen and (max-width: 575px) {
  body.index section.hero .hero-title {
    font-size: 48px;
  }
}
body.index section.hero .hero-accent {
  color: #0400FF;
  position: relative;
}
body.index section.hero .hero-accent::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0400FF, #003DB2);
  border-radius: 2px;
  opacity: 0.3;
}
body.index section.hero .hero-description {
  font-size: 32px;
  line-height: 1.2;
  color: #242B42;
  margin: 0 0 40px 0;
  font-weight: 700;
  letter-spacing: 0.03em;
}
@media (max-width: 1080px) {
  body.index section.hero .hero-description {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  body.index section.hero .hero-description {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
  }
}
body.index section.hero .hero-tags {
  display: flex;
  gap: 16px;
  margin: 0 0 40px 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 575px) {
  body.index section.hero .hero-tags {
    justify-content: center;
  }
}
body.index section.hero .hero-tag {
  color: #242B42;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 575px) {
  body.index section.hero .hero-tag {
    display: none;
  }
}
body.index section.hero .hero-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 575px) {
  body.index section.hero .hero-actions {
    flex-direction: column;
    gap: 16px;
  }
}
body.index section.hero .hero-cta {
  border-radius: 1000px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  line-height: 30px;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
body.index section.hero .hero-cta.full {
  display: block;
  width: 100%;
}
body.index section.hero .hero-cta.square {
  border-radius: 0;
}
body.index section.hero .hero-cta.rounded {
  border-radius: 80px;
}
body.index section.hero .hero-cta.large, body.index section.hero .hero-cta.lg {
  padding: 18px 18px;
  font-size: 19px;
  line-height: 80%;
}
body.index section.hero .hero-cta.small, body.index section.hero .hero-cta .sm {
  padding: 9px 15px;
  font-size: 16px;
  line-height: 80%;
  font-weight: 700;
}
body.index section.hero .hero-cta.x-small, body.index section.hero .hero-cta .xs {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1em;
  font-weight: 700;
}
body.index section.hero .hero-cta.white {
  color: white !important;
}
body.index section.hero .hero-cta.white:hover {
  color: white;
}
body.index section.hero .hero-cta.black {
  color: #333333 !important;
}
body.index section.hero .hero-cta.black:hover {
  color: #333333;
}
body.index section.hero .hero-cta.no-shadow:hover {
  box-shadow: none;
}
body.index section.hero .hero-cta {
  border-radius: 1000px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  line-height: 30px;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
body.index section.hero .hero-cta.full {
  display: block;
  width: 100%;
}
body.index section.hero .hero-cta.square {
  border-radius: 0;
}
body.index section.hero .hero-cta.rounded {
  border-radius: 80px;
}
body.index section.hero .hero-cta.large, body.index section.hero .hero-cta.lg {
  padding: 18px 18px;
  font-size: 19px;
  line-height: 80%;
}
body.index section.hero .hero-cta.small, body.index section.hero .hero-cta .sm {
  padding: 9px 15px;
  font-size: 16px;
  line-height: 80%;
  font-weight: 700;
}
body.index section.hero .hero-cta.x-small, body.index section.hero .hero-cta .xs {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1em;
  font-weight: 700;
}
body.index section.hero .hero-cta.white {
  color: white !important;
}
body.index section.hero .hero-cta.white:hover {
  color: white;
}
body.index section.hero .hero-cta.black {
  color: #333333 !important;
}
body.index section.hero .hero-cta.black:hover {
  color: #333333;
}
body.index section.hero .hero-cta.no-shadow:hover {
  box-shadow: none;
}
body.index section.hero .hero-cta {
  background: #000000;
  color: #FFFFFF;
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}
body.index section.hero .hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(4, 0, 255, 0.3);
}
body.index section.hero .hero-cta i {
  font-size: 14px;
}
body.index section.hero .hero-cta-secondary {
  border-radius: 1000px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  line-height: 30px;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
body.index section.hero .hero-cta-secondary.full {
  display: block;
  width: 100%;
}
body.index section.hero .hero-cta-secondary.square {
  border-radius: 0;
}
body.index section.hero .hero-cta-secondary.rounded {
  border-radius: 80px;
}
body.index section.hero .hero-cta-secondary.large, body.index section.hero .hero-cta-secondary.lg {
  padding: 18px 18px;
  font-size: 19px;
  line-height: 80%;
}
body.index section.hero .hero-cta-secondary.small, body.index section.hero .hero-cta-secondary .sm {
  padding: 9px 15px;
  font-size: 16px;
  line-height: 80%;
  font-weight: 700;
}
body.index section.hero .hero-cta-secondary.x-small, body.index section.hero .hero-cta-secondary .xs {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1em;
  font-weight: 700;
}
body.index section.hero .hero-cta-secondary.white {
  color: white !important;
}
body.index section.hero .hero-cta-secondary.white:hover {
  color: white;
}
body.index section.hero .hero-cta-secondary.black {
  color: #333333 !important;
}
body.index section.hero .hero-cta-secondary.black:hover {
  color: #333333;
}
body.index section.hero .hero-cta-secondary.no-shadow:hover {
  box-shadow: none;
}
body.index section.hero .hero-cta-secondary {
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #687887;
  border: 1px solid #E4E8F0;
  transition: all 0.3s ease;
}
body.index section.hero .hero-cta-secondary:hover {
  color: #0400FF;
  border-color: #0400FF;
  background: rgba(4, 0, 255, 0.1);
}
body.index section.hero .hero-cta-secondary i {
  font-size: 14px;
}
body.index section.hero .hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 575px) {
  body.index section.hero .hero-image {
    order: 1;
    margin-bottom: 32px;
  }
}
body.index section.hero .hero-image-container {
  position: relative;
  max-width: 600px;
  width: 100%;
}
@media (min-width: 1290px) {
  body.index section.hero .hero-image-container {
    position: fixed;
    max-width: fit-content;
    width: 50vw;
    right: -15vw;
    top: -416px;
  }
  body.index section.hero .hero-image-container .hero-avatar {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
  }
}
@media (max-width: 1618px) {
  body.index section.hero .hero-image-container {
    top: -356px;
    right: -12vw;
  }
}
@media (max-width: 1419px) {
  body.index section.hero .hero-image-container {
    position: relative;
    max-width: 600px;
    width: 100%;
    top: auto;
    right: auto;
  }
}
@media (min-width: 1778px) {
  body.index section.hero .hero-image-container {
    max-width: 937px;
  }
  body.index section.hero .hero-image-container .hero-avatar {
    border-radius: 32px;
  }
}
body.index section.hero .hero-avatar {
  width: 100%;
  height: auto;
  border-radius: 32px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  display: block;
}
body.index section.hero .hero-image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #0400FF, #003DB2);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}
@media screen and (max-width: 575px) {
  body.index section.hero .hero-image-accent {
    width: 60px;
    height: 60px;
    top: -10px;
    right: -10px;
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}
body.index section.hero .hero-title, body.index section.hero .hero-description, body.index section.hero .hero-tags, body.index section.hero .hero-actions, body.index section.hero .hero-image {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}
body.index section.hero .hero-title {
  animation-delay: 0.2s;
}
body.index section.hero .hero-description {
  animation-delay: 0.4s;
}
body.index section.hero .hero-tags {
  animation-delay: 0.6s;
}
body.index section.hero .hero-actions {
  animation-delay: 0.8s;
}
body.index section.hero .hero-image {
  animation-delay: 0.3s;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.index .quote-section {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 45%;
  min-height: 450px;
  overflow: hidden;
  background-image: linear-gradient(120deg, #000000 0%, #030c76 100%);
  position: relative;
}
body.index .quote-section img.hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 2500px) {
  body.index .quote-section img.hero {
    object-position: center -450px;
  }
}
@media screen and (max-width: 575px) {
  body.index .quote-section {
    height: auto;
    min-height: auto;
  }
}
body.index .quote-section .wrap {
  z-index: 2;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  padding: 16px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.index .quote-section-content {
  max-width: 365px;
  margin-left: 30vw;
}
@media (max-width: 1045px) {
  body.index .quote-section-content {
    margin-left: 20vw;
  }
}
@media screen and (max-width: 575px) {
  body.index .quote-section-content {
    margin-left: 32px;
    margin-right: 32px;
    max-width: 100%;
    padding: 60px 0;
  }
}
body.index .quote-section-text {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #FFFFFF;
}
body.index .quote-section-text.large {
  font-size: 40px;
  font-weight: 700;
  line-height: 42px;
  margin-bottom: 16px;
}
@media screen and (max-width: 575px) {
  body.index .quote-section-text.large {
    display: none;
  }
}
@media (min-width: 2500px) {
  body.index .quote-section-text {
    font-size: 28px;
    line-height: 40px;
  }
  body.index .quote-section-text.large {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 30px;
  }
}
body.index .feature-section {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-texts-opacity);
  text-align: left;
  background-color: var(--bg);
  --bg: #fcfdfe;
  --bg-4: #fdfdff;
  --color-headings: #161c2d;
  --color-texts-opacity: rgba(22, 28, 45, 0.7);
  --border-color: #e7e9ed;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  border-bottom: 1px solid #E4E8F0;
}
body.index .feature-section .container {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  body.index .feature-section .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  body.index .feature-section .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  body.index .feature-section .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  body.index .feature-section .container {
    max-width: 1140px;
  }
}
@media (min-width: 992px) {
  body.index .feature-section .pb-lg-7 {
    padding-bottom: 1.25rem !important;
  }
  body.index .feature-section .pt-lg-16 {
    padding-top: 4.0625rem !important;
  }
}
body.index .feature-section .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
body.index .feature-section .justify-content-center {
  justify-content: center !important;
}
body.index .feature-section .mb-12 {
  margin-bottom: 2.8125rem !important;
}
@media (min-width: 576px) {
  body.index .feature-section .d-sm-flex {
    display: flex !important;
  }
}
body.index .feature-section .mb-7 {
  margin-bottom: 1.25rem !important;
}
body.index .feature-section .mr-8 {
  margin-right: 1.5625rem !important;
}
@media (min-width: 768px) {
  body.index .feature-section .mb-md-0 {
    margin-bottom: 0 !important;
  }
}
body.index .feature-section .text-blue {
  color: #473bf0 !important;
}
body.index .feature-section .gr-text-4 {
  font-size: 2.25rem;
  letter-spacing: -1.2px;
  line-height: 1.3;
}
body.index .feature-section img {
  vertical-align: middle;
  border-style: none;
}
body.index .feature-section h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
body.index .feature-section h3 {
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-headings);
}
body.index .feature-section h3 {
  font-size: 2rem;
}
body.index .feature-section .mb-6 {
  margin-bottom: 1rem !important;
}
body.index .feature-section .gr-text-7 {
  font-size: 1.3125rem;
  letter-spacing: -0.5px;
  line-height: 1.5;
}
body.index .feature-section p {
  margin-top: 0;
  margin-bottom: 1rem;
}
body.index .feature-section p {
  font-size: 1.1875rem;
  color: var(--color-texts-opacity);
}
body.index .feature-section .mb-0 {
  margin-bottom: 0 !important;
}
body.index .feature-section .gr-text-color-opacity {
  color: var(--color-texts-opacity);
}
body.index .feature-section .gr-text-9 {
  font-size: 1.0625rem;
  letter-spacing: -0.2px;
  line-height: 1.71;
}
body.index .pt-13 {
  padding-top: 3.125rem !important;
}
body.index .bg-default-4 {
  background: var(--bg-4);
}
body.index .speaking-section {
  --bg: #0e1019;
  --bg-6: #0e1019;
  --color-headings: #fff;
  --color-texts-opacity: rgba(255, 255, 255, 0.7);
  --border-color: rgba(255, 255, 255, 0.08);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-texts-opacity);
  text-align: left;
  background-color: var(--bg);
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: var(--bg-6);
  padding-top: 40px;
  padding-bottom: 40px;
}
body.index .speaking-section .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  body.index .speaking-section .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  body.index .speaking-section .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  body.index .speaking-section .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  body.index .speaking-section .container {
    max-width: 1140px;
  }
}
body.index .speaking-section .align-items-center {
  align-items: center !important;
}
body.index .speaking-section body[data-aos-duration="400"] [data-aos] {
  transition-duration: 0.4s;
}
body.index .speaking-section body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}
body.index .speaking-section .pb-10 {
  padding-bottom: 2.1875rem !important;
}
body.index .speaking-section .pt-12 {
  padding-top: 2.8125rem !important;
}
@media (min-width: 1200px) {
  body.index .speaking-section .py-xl-25 {
    padding-top: 7.5rem !important;
  }
  body.index .speaking-section .py-xl-25 {
    padding-bottom: 7.5rem !important;
  }
}
body.index .speaking-section .rounded-8 {
  border-radius: 8px;
}
body.index .speaking-section .mt-6 {
  margin-top: 1rem !important;
}
@media (min-width: 768px) {
  body.index .speaking-section .mt-md-0 {
    margin-top: 0 !important;
  }
}
@media (min-width: 1200px) {
  body.index .speaking-section .pl-xl-9 {
    padding-left: 1.875rem !important;
  }
}
body.index .speaking-section img {
  vertical-align: middle;
  border-style: none;
}
body.index .speaking-section .w-100 {
  width: 100% !important;
}
body.index .speaking-section .mb-9 {
  margin-bottom: 1.875rem !important;
}
@media (min-width: 992px) {
  body.index .speaking-section .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1200px) {
  body.index .speaking-section .pr-xl-11 {
    padding-right: 2.5rem !important;
  }
}
body.index .speaking-section .text-center {
  text-align: center !important;
}
@media (min-width: 992px) {
  body.index .speaking-section .text-lg-left {
    text-align: left !important;
  }
}
body.index .speaking-section p {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1rem !important;
  color: var(--color-texts-opacity);
}
body.index .speaking-section .gr-text-8 {
  font-size: 1.1875rem;
  letter-spacing: -0.2px;
  line-height: 1.69;
}
body.index .speaking-section a {
  color: #473bf0;
  text-decoration: none;
  background-color: transparent;
  transition: 0.4s;
}
body.index .speaking-section .btn {
  display: inline-block;
  font-weight: 700;
  color: var(--color-texts-opacity);
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.75rem 1.5625rem;
  font-size: 1.1rem;
  line-height: 1.88;
  border-radius: 8px;
  transition: 0.4s cubic-bezier(0.39, 0.575, 0.565, 1);
}
body.index .speaking-section .btn-primary {
  color: #fff;
  background-color: #473bf0;
  border-color: #473bf0;
}
body.index .speaking-section .btn {
  min-width: 175px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
body.index .speaking-section .btn-primary {
  color: #fff;
}
body.index .speaking-section .gr-hover-y {
  transition: 0.4s;
}
body.index .speaking-section .btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}
body.index .speaking-section a:hover {
  color: #1c10cf;
  text-decoration: none;
}
body.index .speaking-section a:hover {
  color: #473bf0;
}
body.index .speaking-section .btn:hover {
  color: var(--color-texts-opacity);
  text-decoration: none;
}
body.index .speaking-section .btn-primary:hover {
  color: #fff;
  background-color: #2617ed;
  border-color: #2012e6;
}
body.index .speaking-section .btn-primary:hover {
  background: #473bf0;
}
@media (min-width: 768px) {
  body.index .speaking-section .gr-hover-y:hover {
    transform: translateY(-8px);
  }
}
body.index .speaking-section .py-6 {
  padding-top: 1rem !important;
}
body.index .speaking-section .py-6 {
  padding-bottom: 1rem !important;
}
body.index .speaking-section [data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}
body.index .speaking-section [data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}
body.index .speaking-section [data-aos][data-aos][data-aos-duration="800"] {
  transition-duration: 0.8s;
}
body.index .speaking-section [data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}
body.index .speaking-section [data-aos][data-aos][data-aos-duration="1200"] {
  transition-duration: 1.2s;
}
body.index .speaking-section [data-aos][data-aos][data-aos-duration="1800"] {
  transition-duration: 1.8s;
}
body.index .speaking-section h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-headings);
  font-size: 2rem;
}
body.index .speaking-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}
body.index .speaking-section .gr-text-5 {
  font-size: 2rem;
  letter-spacing: -1.2px;
  line-height: 1.375;
}
body.index .speaking-section .pb-10 {
  padding-bottom: 2.1875rem !important;
}
body.index .speaking-section .pt-12 {
  padding-top: 2.8125rem !important;
}
@media (min-width: 1200px) {
  body.index .speaking-section .py-xl-25 {
    padding-top: 7.5rem !important;
  }
  body.index .speaking-section .py-xl-25 {
    padding-bottom: 7.5rem !important;
  }
}
body.index .speaking-section .mt-6 {
  margin-top: 1rem !important;
}
@media (min-width: 768px) {
  body.index .speaking-section .mt-md-0 {
    margin-top: 0 !important;
  }
}
@media (min-width: 1200px) {
  body.index .speaking-section .pl-xl-9 {
    padding-left: 1.875rem !important;
  }
}
body.index .speaking-section .mb-9 {
  margin-bottom: 1.875rem !important;
}
@media (min-width: 992px) {
  body.index .speaking-section .mb-lg-0 {
    margin-bottom: 0 !important;
  }
}
@media (min-width: 1200px) {
  body.index .speaking-section .pr-xl-11 {
    padding-right: 2.5rem !important;
  }
}
body.index .speaking-section .py-6 {
  padding-top: 1rem !important;
}
body.index .speaking-section .py-6 {
  padding-bottom: 1rem !important;
}
body.index .speaking-section .mb-5 {
  margin-bottom: 0.75rem !important;
}
body.index .speaking-section .mb-0 {
  margin-bottom: 0 !important;
}
body.index .showcase {
  display: flex;
  margin: 40px 24px 24px 24px;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  body.index .showcase {
    margin: 40px 16px;
  }
}
body.index .showcase-container {
  scale: 1;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: scale;
  max-width: 1290px;
  height: 600px;
  border-radius: 40px;
  flex: 1;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 575px) {
  body.index .showcase-container {
    height: auto;
  }
}
body.index .showcase-container:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: opacity;
}
body.index .showcase-title-container {
  display: flex;
}
body.index .showcase-copy {
  flex-basis: 25%;
  display: flex;
  flex-direction: column;
  margin: 50px 32px 50px 50px;
  justify-content: center;
  color: #FFFFFF;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 575px) {
  body.index .showcase-copy {
    margin-left: 24px !important;
    margin-right: 24px !important;
  }
}
body.index .showcase-copy h3 {
  flex: auto;
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  body.index .showcase-copy h3 {
    font-size: 32px;
  }
}
body.index .showcase-copy h3 img {
  width: 80%;
}
body.index .showcase-copy p {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
}
body.index .showcase-copy button, body.index .showcase-copy a {
  appearance: none;
  background: none;
  border: 0;
  display: flex;
  margin: 0;
  padding: 16px 16px 16px 0;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}
body.index .showcase-copy button i, body.index .showcase-copy a i {
  margin-left: 16px;
}
body.index .showcase-copy-center {
  flex: 3;
}
body.index .showcase-image {
  display: flex;
  position: absolute;
  width: 80%;
  top: 90px;
  right: -10%;
  transition-behavior: normal;
  transition-duration: 0.2s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property: top;
  z-index: 1;
}
@media screen and (max-width: 1240px) {
  body.index .showcase-image {
    top: 170px;
  }
}
body.index .showcase.power .showcase-container {
  background: linear-gradient(103.44deg, #1a458f 1.5%, #357af1 97.38%);
  cursor: pointer;
}
body.index .showcase.bloom .showcase-container {
  background: linear-gradient(103.44deg, #6D5AB9 1.5%, #0D33CB 97.38%);
}
body.index .showcase.brain .showcase-container {
  background: linear-gradient(103.44deg, #00716E 1.5%, #30B3AD 97.38%);
}
body.index .showcase.box .showcase-container {
  background: linear-gradient(135deg, #6A11CB 0%, #2575FC 99.89%);
}
body.index .showcase_quote {
  font-size: 20px;
  font-weight: 700;
  color: #242B42;
  text-align: center;
  margin-bottom: 80px;
}
body.index .showcase.left .showcase-container {
  flex-direction: row-reverse;
}
body.index .showcase.left .showcase-container .showcase-image {
  right: auto;
  left: -10%;
}
@media screen and (max-width: 1130px) {
  body.index .showcase.left .showcase-container .showcase-image {
    left: 0;
  }
}
body.index .showcase.left .showcase-container .showcase-copy {
  margin: 50px 50px 50px 32px;
}
@media screen and (max-width: 1130px) {
  body.index .showcase .showcase-container {
    flex-direction: column !important;
  }
  body.index .showcase .showcase-copy {
    flex: 1;
  }
  body.index .showcase .showcase-copy h3 {
    width: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
  }
  body.index .showcase .showcase-copy h3 img {
    width: auto !important;
  }
  body.index .showcase .showcase-image {
    top: auto;
    bottom: -20px;
    width: 90%;
    position: relative;
  }
}
body.index .showcase.box .showcase-image {
  top: -112px;
  width: 90%;
  right: -2%;
}
@media screen and (max-width: 575px) {
  body.index .showcase.box .showcase-image {
    top: 0;
    width: 100%;
    right: 50px;
  }
}
body.index .showcase.bloom .showcase-copy h3 img {
  width: 90%;
}
body.index .showcase.power .showcase-copy h3 {
  align-items: center;
}
body.index .showcase.power .showcase-copy h3 img {
  width: 70%;
}
@media (hover: hover) {
  body.index .showcase:hover .showcase-container {
    scale: 1.01;
  }
}
@media (hover: hover) {
  body.index .showcase:hover .showcase-container:after {
    opacity: 1;
  }
}
body.index .showcase-title-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  max-width: 1336px;
  margin: auto;
  padding: 0 25px;
}
body.index .showcase-title-container .header-subtitle {
  grid-column: 2;
  text-align: center;
  margin: 0;
}
body.index .showcase-title-container a {
  grid-column: 3;
  justify-self: end;
}
body.index .showcase-title-container a:hover {
  color: #242B42;
}
body.index .showcase-title-container a i {
  margin-left: 8px;
}
@media (max-width: 924px) {
  body.index .showcase-title-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  body.index .showcase-title-container .header-subtitle {
    grid-column: 1;
    margin-bottom: 0;
  }
  body.index .showcase-title-container a {
    grid-column: 1;
    justify-self: center;
    margin-top: 0 !important;
  }
}
@media screen and (max-width: 575px) {
  body.index .showcase-title-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  body.index .showcase-title-container .header-subtitle {
    grid-column: 1;
    margin-bottom: 16px;
  }
  body.index .showcase-title-container a {
    grid-column: 1;
    justify-self: center;
  }
}
body.index a.bb-splash {
  display: block;
  background-size: cover;
  background-position: center;
  height: 345px;
  position: relative;
  background-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  margin: 80px 0;
}
body.index a.bb-splash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
body.index a.bb-splash:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0);
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  z-index: 2;
}
body.index a.bb-splash:after {
  content: "Check it out";
  display: block;
  position: absolute;
  border: 2px solid #fff;
  border-radius: 0;
  color: white;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease-in;
  left: 50%;
  top: 50%;
  padding: 8px 0;
  text-transform: uppercase;
  width: 160px;
  margin-left: -80px;
  margin-top: -25px;
  text-align: center;
  opacity: 0;
  z-index: 3;
}
body.index a.bb-splash:hover:before {
  background: rgba(0, 0, 0, 0.8);
}
body.index a.bb-splash:hover:after {
  opacity: 1;
}
body.index a.bb-splash:hover:after:hover {
  background: rgba(1, 200, 228, 0.9);
}
@media screen and (max-width: 975px) {
  body.index a.bb-splash img {
    object-position: 30%;
  }
}
@media screen and (max-width: 575px) {
  body.index a.bb-splash img {
    object-position: 10%;
  }
}
body.index .homepage-summary {
  max-width: 1290px;
  margin: 72px auto;
}
@media (max-width: 1290px) {
  body.index .homepage-summary {
    margin: 40px 16px;
  }
}
body.index .homepage-summary .row {
  margin-left: -24px;
  margin-right: -24px;
}
body.index .homepage-summary [class*=col-] {
  padding-left: 24px;
  padding-right: 24px;
}
body.index .summary-section {
  height: 100%;
}
body.index .approach-text {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  color: #242B42;
  margin: 0;
}
body.index .section-title {
  text-align: left;
  margin-bottom: 24px;
}
body.index .work-item {
  margin-bottom: 24px;
}
body.index .work-years {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 400;
  font-size: 12px;
  color: #0400FF;
  margin-bottom: 8px;
}
body.index .work-title {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 700;
  font-size: 16px;
  color: #242B42;
  margin-bottom: 8px;
  line-height: 1.3;
}
body.index .work-title .work-company {
  font-size: 14px;
  font-weight: 500;
  color: #687887;
}
body.index .work-description {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 500;
  font-size: 13px;
  color: #687887;
  line-height: 1.5;
  margin-bottom: 0;
}
body.index .blog-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
}
body.index .blog-image {
  width: 85px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 16px;
  flex-shrink: 0;
}
body.index .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
body.index .blog-image a:hover img {
  transform: scale(1.05);
}
body.index .summary-blog-content {
  flex: 1;
}
body.index .summary-blog-date {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 400;
  font-size: 11px;
  color: #C1CDD6;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
body.index .summary-blog-title {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 700;
  font-size: 16px;
  color: #242B42;
  line-height: 1.3;
  margin: 0;
}
body.index .summary-blog-title a {
  color: inherit;
  text-decoration: none;
}
body.index .summary-blog-title a:hover {
  color: #242B42;
}
body.index .see-all-link {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 500;
  font-size: 16px;
  color: #0400FF;
  text-decoration: none;
}
body.index .see-all-link:hover {
  color: #242B42;
}
@media screen and (max-width: 575px) {
  body.index .homepage-summary {
    margin: 40px 16px;
  }
  body.index .homepage-summary .row {
    margin-left: 0;
    margin-right: 0;
  }
  body.index .homepage-summary [class*=col-] {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 40px;
  }
  body.index .homepage-summary [class*=col-]:last-child {
    margin-bottom: 0;
  }
  body.index .approach-text {
    font-size: 16px;
  }
  body.index .work-item {
    margin-bottom: 32px;
  }
  body.index .blog-item {
    margin-bottom: 24px;
  }
}
body.index .resume {
  background-image: linear-gradient(-132deg, #F09819 0%, #FF5858 100%);
  padding: 40px 0;
}
body.index .resume .center {
  width: 370px;
  margin: auto;
  text-align: left;
}
body.index .resume .center img.resume-img {
  width: 100px;
  height: auto;
  float: left;
  margin-right: 24px;
}
body.index .resume .center .buttons {
  text-align: center;
}
body.index .resume .center .buttons h3.serif {
  margin-top: 0;
  font-weight: 700;
  font-style: italic;
  font-size: 20px;
  letter-spacing: 0;
}
@media screen and (max-width: 370px) {
  body.index .resume .center {
    width: 100%;
  }
  body.index .resume .center img.resume-img {
    float: none;
  }
}

.article .post-header {
  color: white;
  text-align: center;
}
.article .post-header a.avatar {
  visibility: visible;
}
.article .post-header .wrap {
  padding: 200px 0;
}
.article .post-header.no-image {
  background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
}
.article .post-header.image-post {
  background-size: cover;
  background-position: center;
  position: relative;
  background-image: linear-gradient(to right, #6a11cb 0%, #2575fc 100%);
}
.article .post-header.image-post img.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.article .post-header.image-post .wrap {
  position: relative;
  background: rgba(0, 0, 0, 0.55);
  width: 100%;
  height: 100%;
  z-index: 2;
}
.article .post-header .article-title {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 575px) {
  .article .post-header .article-title {
    width: auto;
    margin-left: 2%;
    margin-right: 2%;
  }
}
.article .post-header .article-title {
  margin-top: 0;
  margin-bottom: 24px;
}
.article .post-header .article-title a {
  font-size: 42px;
  color: white;
  transition-property: color;
  transition-duration: 0.2s;
  letter-spacing: -0.03em;
}
.article .post-header .article-title a:hover {
  color: #FDE200;
}
.article .post-header .article-date {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 575px) {
  .article .post-header .article-date {
    width: auto;
    margin-left: 2%;
    margin-right: 2%;
  }
}
.article .post-header .article-date {
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.03em;
}
.article .post-header .article-summary {
  margin-top: 0;
  margin-bottom: 24px;
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 575px) {
  .article .post-header .article-summary {
    width: auto;
    margin-left: 2%;
    margin-right: 2%;
  }
}
.article .post-header .article-summary {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
}
.article .post-content {
  padding: 40px 0;
  font-size: 18px;
  line-height: 1.98;
}
.article .post-content h1, .article .post-content h2, .article .post-content h3, .article .post-content h4, .article .post-content h5, .article .post-content h6 {
  margin: 35px 0 25px;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: text;
  position: relative;
}
.article .post-content h1:hover a.anchor, .article .post-content h2:hover a.anchor, .article .post-content h3:hover a.anchor, .article .post-content h4:hover a.anchor, .article .post-content h5:hover a.anchor, .article .post-content h6:hover a.anchor {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA09pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoMTMuMCAyMDEyMDMwNS5tLjQxNSAyMDEyLzAzLzA1OjIxOjAwOjAwKSAgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUM2NjlDQjI4ODBGMTFFMTg1ODlEODNERDJBRjUwQTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUM2NjlDQjM4ODBGMTFFMTg1ODlEODNERDJBRjUwQTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QzY2OUNCMDg4MEYxMUUxODU4OUQ4M0REMkFGNTBBNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5QzY2OUNCMTg4MEYxMUUxODU4OUQ4M0REMkFGNTBBNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsQhXeAAAABfSURBVHjaYvz//z8DJYCRUgMYQAbAMBQIAvEqkBQWXI6sHqwHiwG70TTBxGaiWwjCTGgOUgJiF1J8wMRAIUA34B4Q76HUBelAfJYSA0CuMIEaRP8wGIkGMA54bgQIMACAmkXJi0hKJQAAAABJRU5ErkJggg==) no-repeat 10px center;
  text-decoration: none;
}
.article .post-content h1 tt, .article .post-content h1 code {
  font-size: inherit;
}
.article .post-content h2 tt, .article .post-content h2 code {
  font-size: inherit;
}
.article .post-content h3 tt, .article .post-content h3 code {
  font-size: inherit;
}
.article .post-content h4 tt, .article .post-content h4 code {
  font-size: inherit;
}
.article .post-content h5 tt, .article .post-content h5 code {
  font-size: inherit;
}
.article .post-content h6 tt, .article .post-content h6 code {
  font-size: inherit;
}
.article .post-content h1 {
  font-size: 32px;
  line-height: 1.2;
  color: #000000;
  padding-top: 25px;
  margin-bottom: 4px;
}
.article .post-content h2 {
  font-size: 26px;
  line-height: 1.2;
  color: #000000;
}
.article .post-content h3 {
  font-size: 18px;
}
.article .post-content h4 {
  font-size: 16px;
}
.article .post-content h5 {
  font-size: 14px;
}
.article .post-content h6 {
  color: #777777;
  font-size: 14px;
}
.article .post-content p, .article .post-content blockquote, .article .post-content ul, .article .post-content ol, .article .post-content dl, .article .post-content li, .article .post-content table, .article .post-content pre {
  margin-bottom: 25px;
  margin-top: 0;
}
.article .post-content hr {
  display: block;
  width: 20%;
  margin: 32px auto 32px auto;
  border: 1px solid rgb(187.2, 189.6, 192.8);
}
.article .post-content body > h2:first-child {
  margin-top: 0;
  padding-top: 0;
}
.article .post-content body > h1:first-child {
  margin-top: 0;
  padding-top: 0;
}
.article .post-content body > h1:first-child + h2 {
  margin-top: 0;
  padding-top: 0;
}
.article .post-content body > h3:first-child, .article .post-content body > h4:first-child, .article .post-content body > h5:first-child, .article .post-content body > h6:first-child {
  margin-top: 0;
  padding-top: 0;
}
.article .post-content a:first-child h1, .article .post-content a:first-child h2, .article .post-content a:first-child h3, .article .post-content a:first-child h4, .article .post-content a:first-child h5, .article .post-content a:first-child h6 {
  margin-top: 0;
  padding-top: 0;
}
.article .post-content h1 p, .article .post-content h2 p, .article .post-content h3 p, .article .post-content h4 p, .article .post-content h5 p, .article .post-content h6 p {
  margin-top: 0;
}
.article .post-content li p.first {
  display: inline-block;
}
.article .post-content li {
  margin: 0;
}
.article .post-content ul, .article .post-content ol {
  padding-left: 30px;
}
.article .post-content ul :first-child, .article .post-content ol :first-child {
  margin-top: 0;
}
.article .post-content dl {
  padding: 0;
}
.article .post-content dl dt {
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  padding: 0;
  margin: 15px 0 5px;
}
.article .post-content dl dt:first-child {
  padding: 0;
}
.article .post-content dl dt > :first-child {
  margin-top: 0;
}
.article .post-content dl dt > :last-child {
  margin-bottom: 0;
}
.article .post-content dl dd {
  margin: 0 0 15px;
  padding: 0 15px;
}
.article .post-content dl dd > :first-child {
  margin-top: 0;
}
.article .post-content dl dd > :last-child {
  margin-bottom: 0;
}
.article .post-content blockquote {
  padding: 0 15px;
  color: rgb(134.2, 147, 159);
  font-style: italic;
  font-size: 120%;
  border-left: 6px solid #00AFD1;
  padding-left: 20px;
  margin-left: -26px;
  margin-top: -1px;
  padding-bottom: 3px;
}
.article .post-content blockquote > :first-child {
  margin-top: 0;
}
.article .post-content blockquote > :last-child {
  margin-bottom: 0;
}
.article .post-content table {
  padding: 0;
  border-collapse: collapse;
}
.article .post-content table tr {
  border-top: 1px solid #cccccc;
  background-color: white;
  margin: 0;
  padding: 0;
}
.article .post-content table tr:nth-child(2n) {
  background-color: #f8f8f8;
}
.article .post-content table tr th {
  font-weight: bold;
  border: 1px solid #cccccc;
  text-align: left;
  margin: 0;
  padding: 6px 13px;
}
.article .post-content table tr td {
  border: 1px solid #cccccc;
  text-align: left;
  margin: 0;
  padding: 6px 13px;
}
.article .post-content table tr th :first-child, .article .post-content table tr td :first-child {
  margin-top: 0;
}
.article .post-content table tr th :last-child, .article .post-content table tr td :last-child {
  margin-bottom: 0;
}
.article .post-content img {
  max-width: 100%;
}
.article .post-content span.frame {
  display: block;
  overflow: hidden;
}
.article .post-content span.frame > span {
  border: 1px solid #dddddd;
  display: block;
  float: left;
  overflow: hidden;
  margin: 13px 0 0;
  padding: 7px;
  width: auto;
}
.article .post-content span.frame > span span img {
  display: block;
  float: left;
}
.article .post-content span.frame > span span span {
  clear: both;
  color: #333333;
  display: block;
  padding: 5px 0 0;
}
.article .post-content span.align-center {
  display: block;
  overflow: hidden;
  clear: both;
}
.article .post-content span.align-center > span {
  display: block;
  overflow: hidden;
  margin: 13px auto 0;
  text-align: center;
}
.article .post-content span.align-center span img {
  margin: 0 auto;
  text-align: center;
}
.article .post-content span.align-right {
  display: block;
  overflow: hidden;
  clear: both;
}
.article .post-content span.align-right > span {
  display: block;
  overflow: hidden;
  margin: 13px 0 0;
  text-align: right;
}
.article .post-content span.align-right span img {
  margin: 0;
  text-align: right;
}
.article .post-content span.float-left {
  display: block;
  margin-right: 13px;
  overflow: hidden;
  float: left;
}
.article .post-content span.float-left span {
  margin: 13px 0 0;
}
.article .post-content span.float-right {
  display: block;
  margin-left: 13px;
  overflow: hidden;
  float: right;
}
.article .post-content span.float-right > span {
  display: block;
  overflow: hidden;
  margin: 13px auto 0;
  text-align: right;
}
@media screen and (min-width: 914px) {
  .article .post-content body {
    width: 854px;
    margin: 0 auto;
  }
}
@media print {
  .article .post-content table, .article .post-content pre {
    page-break-inside: avoid;
  }
}
.article .post-content {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  color: rgb(76.5, 76.5, 76.5);
  line-height: 1.98;
}
.article .post-content pre {
  padding: 24px 0;
}
.article .post-content pre code {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 575px) {
  .article .post-content pre code {
    width: auto;
    margin-left: 2%;
    margin-right: 2%;
  }
}
.article .post-content pre code {
  display: block;
}
.article .post-content p, .article .post-content h1, .article .post-content h2, .article .post-content h3, .article .post-content h4, .article .post-content h5, .article .post-content h6, .article .post-content ul, .article .post-content ol, .article .post-content dl, .article .post-content hr, .article .post-content blockquote, .article .post-content table {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 575px) {
  .article .post-content p, .article .post-content h1, .article .post-content h2, .article .post-content h3, .article .post-content h4, .article .post-content h5, .article .post-content h6, .article .post-content ul, .article .post-content ol, .article .post-content dl, .article .post-content hr, .article .post-content blockquote, .article .post-content table {
    width: auto;
    margin-left: 2%;
    margin-right: 2%;
  }
}
.article .post-content h1, .article .post-content h2, .article .post-content h3, .article .post-content h4, .article .post-content h5, .article .post-content h6 {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  letter-spacing: -0.03em;
}
.article .post-content p img {
  width: 100%;
}
.article .post-content p picture {
  display: block;
  width: 100%;
}
.article .post-content p picture img {
  width: 100%;
  height: auto;
  display: block;
}
.article .post-content video {
  display: block;
  width: 100%;
  max-width: 1120px;
  height: auto;
  margin: 40px auto;
}
.article .post-content video.portrait {
  max-width: 420px;
}
@media screen and (max-width: 575px) {
  .article .post-content video.portrait {
    max-width: 88vw;
  }
}
.article .post-content .post-content-tags li {
  list-style: none;
}
.article .post-content .post-embed {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 1120px;
  margin: 40px auto;
  border-radius: 16px;
  overflow: hidden;
}
.article .post-content .post-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.article .post-content a {
  color: #01C8E4;
  transition-property: all;
  transition-duration: 0.2;
  transition-timing-function: ease-in;
  text-decoration: underline;
}
.article .post-content a:hover {
  color: black;
}
.article .post-content hr {
  display: block;
  width: 20%;
  margin: calc(8px / 6) auto calc(8px / 6) auto;
  border: 1px solid rgb(187.2, 189.6, 192.8);
}

.blog .nav a.avatar .icon-angle-left, .calendar .nav a.avatar .icon-angle-left, .tags .nav a.avatar .icon-angle-left, [class^=x][class$=_index] .nav a.avatar .icon-angle-left {
  color: #000;
}
.blog .blog-container, .calendar .blog-container, .tags .blog-container, [class^=x][class$=_index] .blog-container {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 24px;
}
.blog .blog-header, .calendar .blog-header, .tags .blog-header, [class^=x][class$=_index] .blog-header {
  margin: 72px 0 40px;
  display: flex;
}
.blog .blog-header-content, .calendar .blog-header-content, .tags .blog-header-content, [class^=x][class$=_index] .blog-header-content {
  flex: 1;
}
.blog .blog-header .blog-title, .calendar .blog-header .blog-title, .tags .blog-header .blog-title, [class^=x][class$=_index] .blog-header .blog-title {
  font-weight: 700;
  font-size: 71px;
  color: #000;
  margin: 0 0 8px;
  line-height: 1.1;
}
.blog .blog-header .blog-subtitle, .calendar .blog-header .blog-subtitle, .tags .blog-header .blog-subtitle, [class^=x][class$=_index] .blog-header .blog-subtitle {
  font-weight: 500;
  font-size: 16px;
  color: #687887;
  margin: 0;
}
.blog .blog-content, .calendar .blog-content, .tags .blog-content, [class^=x][class$=_index] .blog-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
@media screen and (max-width: 575px) {
  .blog .blog-content, .calendar .blog-content, .tags .blog-content, [class^=x][class$=_index] .blog-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.blog .blog-articles .featured-articles, .calendar .blog-articles .featured-articles, .tags .blog-articles .featured-articles, [class^=x][class$=_index] .blog-articles .featured-articles {
  margin-bottom: 80px;
}
.blog .blog-articles .featured-articles [class*=col-], .calendar .blog-articles .featured-articles [class*=col-], .tags .blog-articles .featured-articles [class*=col-], [class^=x][class$=_index] .blog-articles .featured-articles [class*=col-] {
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 40px;
}
.blog .blog-articles .grid-articles .row, .blog .blog-articles .calendar-articles-grid .row, .calendar .blog-articles .grid-articles .row, .calendar .blog-articles .calendar-articles-grid .row, .tags .blog-articles .grid-articles .row, .tags .blog-articles .calendar-articles-grid .row, [class^=x][class$=_index] .blog-articles .grid-articles .row, [class^=x][class$=_index] .blog-articles .calendar-articles-grid .row {
  margin-left: -16px;
  margin-right: -16px;
}
.blog .blog-articles .grid-articles [class*=col-], .blog .blog-articles .calendar-articles-grid [class*=col-], .calendar .blog-articles .grid-articles [class*=col-], .calendar .blog-articles .calendar-articles-grid [class*=col-], .tags .blog-articles .grid-articles [class*=col-], .tags .blog-articles .calendar-articles-grid [class*=col-], [class^=x][class$=_index] .blog-articles .grid-articles [class*=col-], [class^=x][class$=_index] .blog-articles .calendar-articles-grid [class*=col-] {
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 40px;
}
.blog .blog-article, .calendar .blog-article, .tags .blog-article, [class^=x][class$=_index] .blog-article {
  transition: all 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}
.blog .blog-article:hover, .calendar .blog-article:hover, .tags .blog-article:hover, [class^=x][class$=_index] .blog-article:hover {
  transform: translateY(-2px);
}
.blog .blog-article--featured .article-image, .calendar .blog-article--featured .article-image, .tags .blog-article--featured .article-image, [class^=x][class$=_index] .blog-article--featured .article-image {
  height: 240px;
  background: linear-gradient(103.44deg, #6D5AB9 1.5%, #0D33CB 97.38%);
  border-radius: 16px;
}
@media screen and (max-width: 575px) {
  .blog .blog-article--featured .article-image, .calendar .blog-article--featured .article-image, .tags .blog-article--featured .article-image, [class^=x][class$=_index] .blog-article--featured .article-image {
    height: 200px;
  }
}
.blog .blog-article--featured .article-title, .calendar .blog-article--featured .article-title, .tags .blog-article--featured .article-title, [class^=x][class$=_index] .blog-article--featured .article-title {
  font-size: 28px;
  margin-bottom: 16px;
}
.blog .blog-article--featured .article-summary, .calendar .blog-article--featured .article-summary, .tags .blog-article--featured .article-summary, [class^=x][class$=_index] .blog-article--featured .article-summary {
  font-size: 16px;
  line-height: 1.6;
}
.blog .blog-article--grid .article-image, .calendar .blog-article--grid .article-image, .tags .blog-article--grid .article-image, [class^=x][class$=_index] .blog-article--grid .article-image {
  height: 180px;
  background: linear-gradient(103.44deg, #6D5AB9 1.5%, #0D33CB 97.38%);
  border-radius: 16px;
}
@media screen and (max-width: 575px) {
  .blog .blog-article--grid .article-image, .calendar .blog-article--grid .article-image, .tags .blog-article--grid .article-image, [class^=x][class$=_index] .blog-article--grid .article-image {
    height: 160px;
  }
}
.blog .blog-article--grid .article-title, .calendar .blog-article--grid .article-title, .tags .blog-article--grid .article-title, [class^=x][class$=_index] .blog-article--grid .article-title {
  font-size: 20px;
  margin-bottom: 8px;
}
.blog .blog-article--grid .article-summary, .calendar .blog-article--grid .article-summary, .tags .blog-article--grid .article-summary, [class^=x][class$=_index] .blog-article--grid .article-summary {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog .article-image, .calendar .article-image, .tags .article-image, [class^=x][class$=_index] .article-image {
  background: linear-gradient(103.44deg, #6D5AB9 1.5%, #0D33CB 97.38%);
  border-radius: 16px;
}
.blog .article-image img, .blog .article-image img.lazyloaded, .calendar .article-image img, .calendar .article-image img.lazyloaded, .tags .article-image img, .tags .article-image img.lazyloaded, [class^=x][class$=_index] .article-image img, [class^=x][class$=_index] .article-image img.lazyloaded {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  border-radius: 16px;
}
.blog .article-image a:hover img, .calendar .article-image a:hover img, .tags .article-image a:hover img, [class^=x][class$=_index] .article-image a:hover img {
  transform: scale(1.05);
  border-radius: 16px;
}
.blog .article-content, .calendar .article-content, .tags .article-content, [class^=x][class$=_index] .article-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
.blog .article-date, .calendar .article-date, .tags .article-date, [class^=x][class$=_index] .article-date {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 400;
  font-size: 11px;
  color: #687887;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.blog .article-title, .calendar .article-title, .tags .article-title, [class^=x][class$=_index] .article-title {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 700;
  color: #242B42;
  line-height: 1.3;
}
.blog .article-title a, .calendar .article-title a, .tags .article-title a, [class^=x][class$=_index] .article-title a {
  color: inherit;
  text-decoration: none;
}
.blog .article-title a:hover, .calendar .article-title a:hover, .tags .article-title a:hover, [class^=x][class$=_index] .article-title a:hover {
  color: #242B42;
}
.blog .article-summary, .calendar .article-summary, .tags .article-summary, [class^=x][class$=_index] .article-summary {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 500;
  color: #687887;
  flex: 1;
}
.blog .article-tags, .calendar .article-tags, .tags .article-tags, [class^=x][class$=_index] .article-tags {
  margin-top: auto;
  padding-top: 16px;
}
.blog .article-tags .tag, .calendar .article-tags .tag, .tags .article-tags .tag, [class^=x][class$=_index] .article-tags .tag {
  display: inline-block;
  background: #F3F7FB;
  color: #687887;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  text-decoration: none;
  margin-right: 4px;
  margin-bottom: 4px;
}
.blog .article-tags .tag:hover, .calendar .article-tags .tag:hover, .tags .article-tags .tag:hover, [class^=x][class$=_index] .article-tags .tag:hover {
  background: #C1CDD6;
  color: #242B42;
}
.blog .blog-sidebar-content-cards, .calendar .blog-sidebar-content-cards, .tags .blog-sidebar-content-cards, [class^=x][class$=_index] .blog-sidebar-content-cards {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.blog .blog-sidebar h3, .calendar .blog-sidebar h3, .tags .blog-sidebar h3, [class^=x][class$=_index] .blog-sidebar h3 {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 700;
  font-size: 14px;
  color: #687887;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.blog .content-card, .calendar .content-card, .tags .content-card, [class^=x][class$=_index] .content-card {
  margin-bottom: 24px;
  border: 1px solid #E4E8F0;
  border-radius: 8px;
}
.blog .content-card.active, .calendar .content-card.active, .tags .content-card.active, [class^=x][class$=_index] .content-card.active {
  background: #F3F7FB;
  border: 2px solid #0400FF;
}
.blog .content-card .content-link, .calendar .content-card .content-link, .tags .content-card .content-link, [class^=x][class$=_index] .content-card .content-link {
  align-items: flex-start;
  padding: 24px;
  text-decoration: none;
  color: #242B42;
  transition: background-color 0.2s ease;
  display: flex;
  flex-direction: column;
}
.blog .content-card .content-link:hover, .calendar .content-card .content-link:hover, .tags .content-card .content-link:hover, [class^=x][class$=_index] .content-card .content-link:hover {
  background: #F3F7FB;
  border-radius: 8px;
}
.blog .content-card .content-link .icon, .calendar .content-card .content-link .icon, .tags .content-card .content-link .icon, [class^=x][class$=_index] .content-card .content-link .icon {
  font-size: 36px;
  margin-right: 16px;
  color: #0400FF;
}
.blog .content-card .content-link .title, .calendar .content-card .content-link .title, .tags .content-card .content-link .title, [class^=x][class$=_index] .content-card .content-link .title {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 500;
  font-size: 16px;
}
.blog .pagination-nav, .calendar .pagination-nav, .tags .pagination-nav, [class^=x][class$=_index] .pagination-nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding-bottom: 40px;
}
.blog .prev-articles-btn,
.blog .more-articles-btn, .calendar .prev-articles-btn,
.calendar .more-articles-btn, .tags .prev-articles-btn,
.tags .more-articles-btn, [class^=x][class$=_index] .prev-articles-btn,
[class^=x][class$=_index] .more-articles-btn {
  border-radius: 1000px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  line-height: 30px;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
.blog .prev-articles-btn.full,
.blog .more-articles-btn.full, .calendar .prev-articles-btn.full,
.calendar .more-articles-btn.full, .tags .prev-articles-btn.full,
.tags .more-articles-btn.full, [class^=x][class$=_index] .prev-articles-btn.full,
[class^=x][class$=_index] .more-articles-btn.full {
  display: block;
  width: 100%;
}
.blog .prev-articles-btn.square,
.blog .more-articles-btn.square, .calendar .prev-articles-btn.square,
.calendar .more-articles-btn.square, .tags .prev-articles-btn.square,
.tags .more-articles-btn.square, [class^=x][class$=_index] .prev-articles-btn.square,
[class^=x][class$=_index] .more-articles-btn.square {
  border-radius: 0;
}
.blog .prev-articles-btn.rounded,
.blog .more-articles-btn.rounded, .calendar .prev-articles-btn.rounded,
.calendar .more-articles-btn.rounded, .tags .prev-articles-btn.rounded,
.tags .more-articles-btn.rounded, [class^=x][class$=_index] .prev-articles-btn.rounded,
[class^=x][class$=_index] .more-articles-btn.rounded {
  border-radius: 80px;
}
.blog .prev-articles-btn.large, .blog .prev-articles-btn.lg,
.blog .more-articles-btn.large,
.blog .more-articles-btn.lg, .calendar .prev-articles-btn.large, .calendar .prev-articles-btn.lg,
.calendar .more-articles-btn.large,
.calendar .more-articles-btn.lg, .tags .prev-articles-btn.large, .tags .prev-articles-btn.lg,
.tags .more-articles-btn.large,
.tags .more-articles-btn.lg, [class^=x][class$=_index] .prev-articles-btn.large, [class^=x][class$=_index] .prev-articles-btn.lg,
[class^=x][class$=_index] .more-articles-btn.large,
[class^=x][class$=_index] .more-articles-btn.lg {
  padding: 18px 18px;
  font-size: 19px;
  line-height: 80%;
}
.blog .prev-articles-btn.small, .blog .prev-articles-btn .sm,
.blog .more-articles-btn.small,
.blog .more-articles-btn .sm, .calendar .prev-articles-btn.small, .calendar .prev-articles-btn .sm,
.calendar .more-articles-btn.small,
.calendar .more-articles-btn .sm, .tags .prev-articles-btn.small, .tags .prev-articles-btn .sm,
.tags .more-articles-btn.small,
.tags .more-articles-btn .sm, [class^=x][class$=_index] .prev-articles-btn.small, [class^=x][class$=_index] .prev-articles-btn .sm,
[class^=x][class$=_index] .more-articles-btn.small,
[class^=x][class$=_index] .more-articles-btn .sm {
  padding: 9px 15px;
  font-size: 16px;
  line-height: 80%;
  font-weight: 700;
}
.blog .prev-articles-btn.x-small, .blog .prev-articles-btn .xs,
.blog .more-articles-btn.x-small,
.blog .more-articles-btn .xs, .calendar .prev-articles-btn.x-small, .calendar .prev-articles-btn .xs,
.calendar .more-articles-btn.x-small,
.calendar .more-articles-btn .xs, .tags .prev-articles-btn.x-small, .tags .prev-articles-btn .xs,
.tags .more-articles-btn.x-small,
.tags .more-articles-btn .xs, [class^=x][class$=_index] .prev-articles-btn.x-small, [class^=x][class$=_index] .prev-articles-btn .xs,
[class^=x][class$=_index] .more-articles-btn.x-small,
[class^=x][class$=_index] .more-articles-btn .xs {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1em;
  font-weight: 700;
}
.blog .prev-articles-btn.white,
.blog .more-articles-btn.white, .calendar .prev-articles-btn.white,
.calendar .more-articles-btn.white, .tags .prev-articles-btn.white,
.tags .more-articles-btn.white, [class^=x][class$=_index] .prev-articles-btn.white,
[class^=x][class$=_index] .more-articles-btn.white {
  color: white !important;
}
.blog .prev-articles-btn.white:hover,
.blog .more-articles-btn.white:hover, .calendar .prev-articles-btn.white:hover,
.calendar .more-articles-btn.white:hover, .tags .prev-articles-btn.white:hover,
.tags .more-articles-btn.white:hover, [class^=x][class$=_index] .prev-articles-btn.white:hover,
[class^=x][class$=_index] .more-articles-btn.white:hover {
  color: white;
}
.blog .prev-articles-btn.black,
.blog .more-articles-btn.black, .calendar .prev-articles-btn.black,
.calendar .more-articles-btn.black, .tags .prev-articles-btn.black,
.tags .more-articles-btn.black, [class^=x][class$=_index] .prev-articles-btn.black,
[class^=x][class$=_index] .more-articles-btn.black {
  color: #333333 !important;
}
.blog .prev-articles-btn.black:hover,
.blog .more-articles-btn.black:hover, .calendar .prev-articles-btn.black:hover,
.calendar .more-articles-btn.black:hover, .tags .prev-articles-btn.black:hover,
.tags .more-articles-btn.black:hover, [class^=x][class$=_index] .prev-articles-btn.black:hover,
[class^=x][class$=_index] .more-articles-btn.black:hover {
  color: #333333;
}
.blog .prev-articles-btn.no-shadow:hover,
.blog .more-articles-btn.no-shadow:hover, .calendar .prev-articles-btn.no-shadow:hover,
.calendar .more-articles-btn.no-shadow:hover, .tags .prev-articles-btn.no-shadow:hover,
.tags .more-articles-btn.no-shadow:hover, [class^=x][class$=_index] .prev-articles-btn.no-shadow:hover,
[class^=x][class$=_index] .more-articles-btn.no-shadow:hover {
  box-shadow: none;
}
.blog .prev-articles-btn,
.blog .more-articles-btn, .calendar .prev-articles-btn,
.calendar .more-articles-btn, .tags .prev-articles-btn,
.tags .more-articles-btn, [class^=x][class$=_index] .prev-articles-btn,
[class^=x][class$=_index] .more-articles-btn {
  border-radius: 1000px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  line-height: 30px;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
.blog .prev-articles-btn.full,
.blog .more-articles-btn.full, .calendar .prev-articles-btn.full,
.calendar .more-articles-btn.full, .tags .prev-articles-btn.full,
.tags .more-articles-btn.full, [class^=x][class$=_index] .prev-articles-btn.full,
[class^=x][class$=_index] .more-articles-btn.full {
  display: block;
  width: 100%;
}
.blog .prev-articles-btn.square,
.blog .more-articles-btn.square, .calendar .prev-articles-btn.square,
.calendar .more-articles-btn.square, .tags .prev-articles-btn.square,
.tags .more-articles-btn.square, [class^=x][class$=_index] .prev-articles-btn.square,
[class^=x][class$=_index] .more-articles-btn.square {
  border-radius: 0;
}
.blog .prev-articles-btn.rounded,
.blog .more-articles-btn.rounded, .calendar .prev-articles-btn.rounded,
.calendar .more-articles-btn.rounded, .tags .prev-articles-btn.rounded,
.tags .more-articles-btn.rounded, [class^=x][class$=_index] .prev-articles-btn.rounded,
[class^=x][class$=_index] .more-articles-btn.rounded {
  border-radius: 80px;
}
.blog .prev-articles-btn.large, .blog .prev-articles-btn.lg,
.blog .more-articles-btn.large,
.blog .more-articles-btn.lg, .calendar .prev-articles-btn.large, .calendar .prev-articles-btn.lg,
.calendar .more-articles-btn.large,
.calendar .more-articles-btn.lg, .tags .prev-articles-btn.large, .tags .prev-articles-btn.lg,
.tags .more-articles-btn.large,
.tags .more-articles-btn.lg, [class^=x][class$=_index] .prev-articles-btn.large, [class^=x][class$=_index] .prev-articles-btn.lg,
[class^=x][class$=_index] .more-articles-btn.large,
[class^=x][class$=_index] .more-articles-btn.lg {
  padding: 18px 18px;
  font-size: 19px;
  line-height: 80%;
}
.blog .prev-articles-btn.small, .blog .prev-articles-btn .sm,
.blog .more-articles-btn.small,
.blog .more-articles-btn .sm, .calendar .prev-articles-btn.small, .calendar .prev-articles-btn .sm,
.calendar .more-articles-btn.small,
.calendar .more-articles-btn .sm, .tags .prev-articles-btn.small, .tags .prev-articles-btn .sm,
.tags .more-articles-btn.small,
.tags .more-articles-btn .sm, [class^=x][class$=_index] .prev-articles-btn.small, [class^=x][class$=_index] .prev-articles-btn .sm,
[class^=x][class$=_index] .more-articles-btn.small,
[class^=x][class$=_index] .more-articles-btn .sm {
  padding: 9px 15px;
  font-size: 16px;
  line-height: 80%;
  font-weight: 700;
}
.blog .prev-articles-btn.x-small, .blog .prev-articles-btn .xs,
.blog .more-articles-btn.x-small,
.blog .more-articles-btn .xs, .calendar .prev-articles-btn.x-small, .calendar .prev-articles-btn .xs,
.calendar .more-articles-btn.x-small,
.calendar .more-articles-btn .xs, .tags .prev-articles-btn.x-small, .tags .prev-articles-btn .xs,
.tags .more-articles-btn.x-small,
.tags .more-articles-btn .xs, [class^=x][class$=_index] .prev-articles-btn.x-small, [class^=x][class$=_index] .prev-articles-btn .xs,
[class^=x][class$=_index] .more-articles-btn.x-small,
[class^=x][class$=_index] .more-articles-btn .xs {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1em;
  font-weight: 700;
}
.blog .prev-articles-btn.white,
.blog .more-articles-btn.white, .calendar .prev-articles-btn.white,
.calendar .more-articles-btn.white, .tags .prev-articles-btn.white,
.tags .more-articles-btn.white, [class^=x][class$=_index] .prev-articles-btn.white,
[class^=x][class$=_index] .more-articles-btn.white {
  color: white !important;
}
.blog .prev-articles-btn.white:hover,
.blog .more-articles-btn.white:hover, .calendar .prev-articles-btn.white:hover,
.calendar .more-articles-btn.white:hover, .tags .prev-articles-btn.white:hover,
.tags .more-articles-btn.white:hover, [class^=x][class$=_index] .prev-articles-btn.white:hover,
[class^=x][class$=_index] .more-articles-btn.white:hover {
  color: white;
}
.blog .prev-articles-btn.black,
.blog .more-articles-btn.black, .calendar .prev-articles-btn.black,
.calendar .more-articles-btn.black, .tags .prev-articles-btn.black,
.tags .more-articles-btn.black, [class^=x][class$=_index] .prev-articles-btn.black,
[class^=x][class$=_index] .more-articles-btn.black {
  color: #333333 !important;
}
.blog .prev-articles-btn.black:hover,
.blog .more-articles-btn.black:hover, .calendar .prev-articles-btn.black:hover,
.calendar .more-articles-btn.black:hover, .tags .prev-articles-btn.black:hover,
.tags .more-articles-btn.black:hover, [class^=x][class$=_index] .prev-articles-btn.black:hover,
[class^=x][class$=_index] .more-articles-btn.black:hover {
  color: #333333;
}
.blog .prev-articles-btn.no-shadow:hover,
.blog .more-articles-btn.no-shadow:hover, .calendar .prev-articles-btn.no-shadow:hover,
.calendar .more-articles-btn.no-shadow:hover, .tags .prev-articles-btn.no-shadow:hover,
.tags .more-articles-btn.no-shadow:hover, [class^=x][class$=_index] .prev-articles-btn.no-shadow:hover,
[class^=x][class$=_index] .more-articles-btn.no-shadow:hover {
  box-shadow: none;
}
.blog .prev-articles-btn,
.blog .more-articles-btn, .calendar .prev-articles-btn,
.calendar .more-articles-btn, .tags .prev-articles-btn,
.tags .more-articles-btn, [class^=x][class$=_index] .prev-articles-btn,
[class^=x][class$=_index] .more-articles-btn {
  background: #000000;
  color: #FFFFFF;
}
.blog .prev-articles-btn:hover,
.blog .more-articles-btn:hover, .calendar .prev-articles-btn:hover,
.calendar .more-articles-btn:hover, .tags .prev-articles-btn:hover,
.tags .more-articles-btn:hover, [class^=x][class$=_index] .prev-articles-btn:hover,
[class^=x][class$=_index] .more-articles-btn:hover {
  transform: translateY(-1px);
}
.blog .blog-actions, .calendar .blog-actions, .tags .blog-actions, [class^=x][class$=_index] .blog-actions {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 575px) {
  .blog .blog-container, .calendar .blog-container, .tags .blog-container, [class^=x][class$=_index] .blog-container {
    padding: 0 16px;
  }
  .blog .blog-header, .calendar .blog-header, .tags .blog-header, [class^=x][class$=_index] .blog-header {
    margin: 40px 0 32px;
  }
  .blog .blog-header .blog-title, .calendar .blog-header .blog-title, .tags .blog-header .blog-title, [class^=x][class$=_index] .blog-header .blog-title {
    font-size: 34px;
  }
  .blog .blog-articles, .calendar .blog-articles, .tags .blog-articles, [class^=x][class$=_index] .blog-articles {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blog .blog-article .article-content, .calendar .blog-article .article-content, .tags .blog-article .article-content, [class^=x][class$=_index] .blog-article .article-content {
    padding: 24px;
  }
}

.calendar .calendar-years .calendar-year-section, [class^=x][class$=_index] .calendar-years .calendar-year-section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E4E8F0;
}
.calendar .calendar-years .calendar-year-section:last-child, [class^=x][class$=_index] .calendar-years .calendar-year-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.calendar .calendar-years .calendar-year-header, [class^=x][class$=_index] .calendar-years .calendar-year-header {
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 575px) {
  .calendar .calendar-years .calendar-year-header, [class^=x][class$=_index] .calendar-years .calendar-year-header {
    margin-bottom: 24px;
  }
}
.calendar .calendar-years .calendar-year-title, [class^=x][class$=_index] .calendar-years .calendar-year-title {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 700;
  font-size: 34px;
  color: #242B42;
  margin: 0;
}
.calendar .calendar-years .calendar-year-title a, [class^=x][class$=_index] .calendar-years .calendar-year-title a {
  color: #242B42;
  text-decoration: none;
  transition: color 0.3s ease;
}
.calendar .calendar-years .calendar-year-title a:hover, [class^=x][class$=_index] .calendar-years .calendar-year-title a:hover {
  color: #0400FF;
}
.calendar .calendar-years .calendar-year-title .article-count, [class^=x][class$=_index] .calendar-years .calendar-year-title .article-count {
  font-weight: 500;
  font-size: 16px;
  color: #687887;
  margin-left: 16px;
}
.calendar .calendar-years .calendar-articles-grid, [class^=x][class$=_index] .calendar-years .calendar-articles-grid {
  margin-bottom: 24px;
}
.calendar .calendar-years .calendar-view-all, [class^=x][class$=_index] .calendar-years .calendar-view-all {
  text-align: center;
  margin-top: 32px;
}
.calendar .blog-article--calendar .article-image, [class^=x][class$=_index] .blog-article--calendar .article-image {
  height: 200px;
}
@media screen and (max-width: 575px) {
  .calendar .blog-article--calendar .article-image, [class^=x][class$=_index] .blog-article--calendar .article-image {
    height: 160px;
  }
}
.calendar .blog-article--calendar .article-title, [class^=x][class$=_index] .blog-article--calendar .article-title {
  font-size: 20px;
  line-height: 1.4;
}
@media screen and (max-width: 575px) {
  .calendar .blog-article--calendar .article-title, [class^=x][class$=_index] .blog-article--calendar .article-title {
    font-size: 16px;
  }
}
.calendar .blog-article--calendar .article-summary, [class^=x][class$=_index] .blog-article--calendar .article-summary {
  font-size: 14px;
  line-height: 1.5;
}
.calendar .no-articles, [class^=x][class$=_index] .no-articles {
  text-align: center;
  padding: 40px 0;
}
.calendar .no-articles p, [class^=x][class$=_index] .no-articles p {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-size: 20px;
  color: #687887;
  margin: 0;
}
@media screen and (max-width: 575px) {
  .calendar .blog-container .blog-header .blog-header-content .blog-title, [class^=x][class$=_index] .blog-container .blog-header .blog-header-content .blog-title {
    font-size: 28px;
    line-height: 1.3;
  }
}

.tags .back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0400FF;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
}
.tags .back-link:hover {
  text-decoration: underline;
}
.tags .tags-cloud {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}
@media (max-width: 1200px) {
  .tags .tags-cloud {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 992px) {
  .tags .tags-cloud {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .tags .tags-cloud {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 575px) {
  .tags .tags-cloud {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.tags .tags-cloud .tag-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.tags .tags-cloud .tag-link-wrapper {
  flex: 1;
  display: flex;
  align-items: stretch;
  height: 100%;
}
.tags .tags-cloud .tag-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  padding: 24px;
  background: #FFFFFF;
  border: 1px solid #E4E8F0;
  border-radius: 8px;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  min-height: 120px;
  flex: 1;
}
.tags .tags-cloud .tag-link:hover {
  background: #0400FF;
  border-color: #0400FF;
  transform: translateY(-2px);
  box-shadow: rgba(60, 106, 172, 0.2);
}
.tags .tags-cloud .tag-link:hover .tag-name {
  color: #FFFFFF;
}
.tags .tags-cloud .tag-link:hover .tag-count {
  color: rgba(255, 255, 255, 0.8);
}
.tags .tags-cloud .tag-link .tag-name {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 700;
  font-size: 20px;
  color: #242B42;
  margin-bottom: 8px;
  transition: color 0.3s ease;
  text-align: center;
}
.tags .tags-cloud .tag-link .tag-count {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 500;
  font-size: 16px;
  color: #687887;
  transition: color 0.3s ease;
  text-align: center;
}
.tags .tags-cloud .tag-preview-articles {
  margin-bottom: 24px;
}
.tags .tags-cloud .tag-view-all {
  text-align: center;
  margin-top: 32px;
}
.tags .blog-article--tag-preview .article-image {
  height: 180px;
}
@media screen and (max-width: 575px) {
  .tags .blog-article--tag-preview .article-image {
    height: 140px;
  }
}
.tags .blog-article--tag-preview .article-title {
  font-size: 16px;
  line-height: 1.4;
}
@media screen and (max-width: 575px) {
  .tags .blog-article--tag-preview .article-title {
    font-size: 14px;
  }
}
.tags .blog-article--tag-preview .article-content {
  padding: 16px;
}
@media screen and (max-width: 575px) {
  .tags .blog-article--tag-preview .article-content {
    padding: 8px;
  }
}
.tags .blog-article--tag-preview .article-date {
  font-size: 11px;
  margin-bottom: 8px;
}
@media screen and (max-width: 575px) {
  .tags .tags-cloud .tag-link {
    padding: 16px;
    min-height: 100px;
  }
  .tags .tags-cloud .tag-link .tag-name {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .tags .tags-cloud .tag-link .tag-count {
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .tags .blog-container .blog-header .blog-header-content .blog-title {
    font-size: 28px;
    line-height: 1.3;
  }
}

.resume.resume_index {
  background: #FFFFFF;
}
.resume.resume_index .meta-title {
  color: #01C8E4;
  text-transform: uppercase;
  font-size: 20px;
}
.resume.resume_index .header {
  background-image: url(../media/resume/resume-header.jpg);
  background-size: cover;
  background-position: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 760px) {
  .resume.resume_index .header {
    margin-bottom: 150px;
  }
}
.resume.resume_index .header .nav .resume {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(0, 0, 0, 0.8);
}
.resume.resume_index .header .wrap {
  max-width: 900px;
  margin: auto;
  padding: 120px 0;
  position: relative;
}
.resume.resume_index .header .wrap-left {
  display: flex;
  margin-right: 366px;
  position: relative;
  padding-left: 8px;
}
.resume.resume_index .header .wrap-right {
  width: 350px;
  position: absolute;
  bottom: -50px;
  right: 10px;
}
.resume.resume_index .header .wrap-right img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 760px) {
  .resume.resume_index .header .wrap {
    width: auto;
    margin: auto calc(16px / 6);
    padding: 32px 0 0 0;
  }
  .resume.resume_index .header .wrap-left {
    display: block;
    margin: 0 calc(16px / 6);
  }
  .resume.resume_index .header .wrap-right {
    width: 320px;
    position: relative;
    left: inherit;
    margin: auto;
  }
}
.resume.resume_index .header-avatar img {
  display: block;
  object-fit: cover;
  width: 150px;
  height: 150px;
  border-radius: 150px;
  margin-top: -16px;
}
.resume.resume_index .header-title {
  margin-left: 16px;
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 5.3333333333px;
}
.resume.resume_index .header-subtitle {
  margin-left: 16px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0;
  font-weight: 500;
  font-size: 20px;
}
.resume.resume_index .header-details {
  flex: 1;
}
.resume.resume_index .header-details .header-contacts {
  margin-top: 24px;
  margin-left: 16px;
}
.resume.resume_index .header-details .header-contact {
  color: #50E3C2;
  margin-right: 16px;
  font-weight: bold;
}
.resume.resume_index .header-details .header-contact:hover {
  color: #F27935;
  transition-property: all;
  transition-duration: 0.225;
  transition-timing-function: ease-in;
}
.resume.resume_index .header-links {
  margin-left: 16px;
  text-align: left;
  margin-top: 24px;
}
.resume.resume_index .header-links a {
  display: inline-block;
  margin: 0 16px 0 0;
  transition: transform 0.2s;
}
.resume.resume_index .header-links a:hover {
  transform: scale(1.1);
  transition: transform 0.2s;
}
@media screen and (max-width: 760px) {
  .resume.resume_index .header-avatar img {
    position: static;
    margin: auto;
    width: 100px;
    height: 100px;
    font-size: 33px;
  }
  .resume.resume_index .header-title {
    text-align: center;
    margin-left: 5.3333333333px;
    margin-right: 5.3333333333px;
    font-size: 20px;
  }
  .resume.resume_index .header-subtitle {
    margin-left: 5.3333333333px;
    margin-right: 5.3333333333px;
    text-align: center;
  }
  .resume.resume_index .header-contacts {
    margin-left: 5.3333333333px;
    margin-right: 5.3333333333px;
    text-align: center;
  }
  .resume.resume_index .header-links {
    text-align: center;
    margin-left: 5.3333333333px;
    margin-right: 5.3333333333px;
  }
  .resume.resume_index .header-links a {
    margin: 0 8px;
  }
}
.resume.resume_index section.jobs {
  width: 900px;
  margin: auto;
  background: #FFFFFF;
}
@media screen and (max-width: 900px) {
  .resume.resume_index section.jobs {
    width: auto;
    margin: auto 2.6666666667px;
  }
}
.resume.resume_index section.jobs .job-list {
  list-style: none;
  padding-bottom: 40px;
}
.resume.resume_index section.jobs .job-list-item {
  margin-bottom: 40px;
  position: relative;
}
.resume.resume_index section.jobs .job-list-item-logo {
  position: absolute;
  margin-top: -2px;
  width: 60px;
}
.resume.resume_index section.jobs .job-list-item-logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 575px) {
  .resume.resume_index section.jobs .job-list-item-logo {
    position: static;
    display: block;
    margin-left: 5.3333333333px;
    margin-right: 5.3333333333px;
  }
}
.resume.resume_index section.jobs .job-list-item-title {
  margin-left: 84px;
  position: relative;
  font-weight: bold;
  font-size: 26px;
  color: #242B42;
}
.resume.resume_index section.jobs .job-list-item-title .year {
  position: absolute;
  right: 0;
  top: 2px;
  color: #687887;
  font-size: 16px;
}
@media screen and (max-width: 575px) {
  .resume.resume_index section.jobs .job-list-item-title {
    margin-left: 5.3333333333px;
    margin-right: 5.3333333333px;
  }
  .resume.resume_index section.jobs .job-list-item-title .year {
    font-size: 14px;
    position: static;
    display: inline-block;
    margin-left: 2.6666666667px;
  }
}
.resume.resume_index section.jobs .job-list-item-company {
  margin-left: 84px;
  color: #687887;
  font-size: 22px;
}
@media screen and (max-width: 575px) {
  .resume.resume_index section.jobs .job-list-item-company {
    margin-left: 5.3333333333px;
    margin-right: 5.3333333333px;
  }
}
.resume.resume_index section.jobs .job-list-item-description {
  margin-left: 84px;
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  color: #242B42;
  margin-top: 8px;
}
@media screen and (max-width: 575px) {
  .resume.resume_index section.jobs .job-list-item-description {
    margin-left: 5.3333333333px;
    margin-right: 5.3333333333px;
  }
}

.company-hero {
  padding: 3.4375rem 0 0;
  overflow: hidden;
  text-align: center;
}
.company-hero.power {
  background: linear-gradient(103.44deg, #1a458f 1.5%, #357af1 97.38%);
}
.company-hero.bloomboard {
  background: linear-gradient(103.44deg, #6D5AB9 1.5%, #0D33CB 97.38%);
}
.company-hero.brain {
  background: linear-gradient(103.44deg, #00716E 1.5%, #30B3AD 97.38%);
}
@media (min-width: 992px) {
  .company-hero {
    padding: 7.5rem 0 0;
  }
}
.company-hero .company-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}
.company-hero .company-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.company-hero .company-content .company-logo {
  height: 64px;
  margin-bottom: 3.25rem;
  vertical-align: middle;
}
.company-hero .company-content .company-title {
  margin-bottom: 1.3rem;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  text-align: center;
  color: #FFFFFF;
  line-height: 1.2;
}
.company-hero .company-content .company-description {
  margin-bottom: 2rem;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
}
.company-hero .company-mockup {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  margin-bottom: -12rem;
}
@media (max-width: 700px) {
  .company-hero .company-mockup {
    margin-bottom: -5rem;
  }
}

.company-highlights {
  width: calc(100% + 100px);
  margin-left: -50px;
  margin-right: -50px;
  padding: 3.4375rem 50px;
  background: var(--bg-6);
}
.company-highlights .company-container {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}
.company-highlights .company-section-header {
  text-align: center;
  margin-bottom: 1.125rem;
}
@media (min-width: 992px) {
  .company-highlights .company-section-header {
    margin-bottom: 1.25rem;
  }
}
.company-highlights .company-section-header .company-section-title {
  margin-bottom: 0.5rem;
}
.company-highlights .company-highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0rem;
}
@media (min-width: 992px) {
  .company-highlights .company-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
.company-highlights .company-highlights-grid .company-highlight {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-6);
  border-radius: 8px;
  transition: transform 0.2s ease;
}
.company-highlights .company-highlights-grid .company-highlight:hover {
  transform: translateY(-2px);
}
.company-highlights .company-highlights-grid .company-highlight .company-highlight-icon {
  padding: 1.7rem 1.7rem 1.5rem 1.7rem;
  border-radius: 15px;
  margin-right: 2.25rem;
  background: var(--bg-6);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
}
.company-highlights .company-highlights-grid .company-highlight .company-highlight-icon--blue {
  background: rgba(0, 123, 255, 0.1);
  color: #007bff;
}
.company-highlights .company-highlights-grid .company-highlight .company-highlight-icon--red {
  background: rgba(246, 75, 75, 0.1);
  color: #f64b4b;
}
.company-highlights .company-highlights-grid .company-highlight .company-highlight-icon--green {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.company-highlights .company-highlights-grid .company-highlight .company-highlight-icon--blackish {
  background: rgba(22, 28, 45, 0.1);
  color: #161c2d;
}
.company-highlights .company-highlights-grid .company-highlight .company-highlight-icon i {
  font-size: 40px;
  line-height: 40px;
  vertical-align: middle;
}
.company-highlights .company-highlights-grid .company-highlight .company-highlight-content {
  flex: 1;
}
.company-highlights .company-highlights-grid .company-highlight .company-highlight-content .company-highlight-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--color-headings);
  font-weight: 700;
  line-height: 1.2;
}
.company-highlights .company-highlights-grid .company-highlight .company-highlight-content .company-highlight-description {
  font-size: 1rem;
  margin-bottom: 0;
  padding-right: 2.75rem;
  color: var(--color-texts-opacity);
  line-height: 1.5;
}

.photo-content {
  position: relative;
  z-index: 1;
  width: calc(100% + 100px);
  margin-left: -50px;
  margin-right: -50px;
  padding: 3.4375rem 50px;
  --bg-2: #f4f7fa;
  --bg-4: #fdfdff;
  background-image: linear-gradient(to bottom, var(--bg-2) 62%, var(--bg-4) 62%, var(--bg-4) 100%);
}
@media (min-width: 992px) {
  .photo-content {
    padding: 5.5rem 50px;
  }
}
.photo-content .container {
  width: 100%;
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 15px;
}
.photo-content--two-column .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.photo-content--two-column .content-wrapper .content-primary {
  position: relative;
  width: 100%;
  padding: 0 15px;
  opacity: 1;
}
@media (min-width: 768px) {
  .photo-content--two-column .content-wrapper .content-primary {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .photo-content--two-column .content-wrapper .content-primary {
    padding-right: 4rem;
  }
}
@media (max-width: 767px) {
  .photo-content--two-column .content-wrapper .content-primary .gallery-item {
    display: none;
  }
}
.photo-content--two-column .content-wrapper .content-primary .gallery-item {
  margin-top: 1.875rem;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (min-width: 992px) {
  .photo-content--two-column .content-wrapper .content-primary .gallery-item {
    margin-top: 0.625rem;
  }
}
.photo-content--two-column .content-wrapper .content-primary .gallery-item img, .photo-content--two-column .content-wrapper .content-primary .gallery-item video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.photo-content--two-column .content-wrapper .content-secondary {
  position: relative;
  width: 100%;
  padding: 0 15px;
  opacity: 1;
}
@media (min-width: 768px) {
  .photo-content--two-column .content-wrapper .content-secondary {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .photo-content--two-column .content-wrapper .content-secondary {
    padding-left: 4rem;
  }
}
.photo-content--two-column .content-wrapper .content-secondary .gallery-item {
  margin-top: 1.875rem;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (min-width: 992px) {
  .photo-content--two-column .content-wrapper .content-secondary .gallery-item {
    margin-top: 0;
  }
}
.photo-content--two-column .content-wrapper .content-secondary .gallery-item img, .photo-content--two-column .content-wrapper .content-secondary .gallery-item video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.photo-content--single-image {
  overflow: visible;
}
.photo-content--single-image .container {
  overflow: visible;
}
.photo-content--single-image .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  position: relative;
  overflow: visible;
}
.photo-content--single-image .content-wrapper .content-primary {
  position: relative;
  width: 100%;
  padding: 0 15px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  .photo-content--single-image .content-wrapper .content-primary {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 1200px) {
  .photo-content--single-image .content-wrapper .content-primary {
    padding-right: 4rem;
  }
}
.photo-content--single-image .content-wrapper .content-secondary {
  position: relative;
  width: 100%;
  padding: 0;
  opacity: 1;
}
@media (max-width: 767px) {
  .photo-content--single-image .content-wrapper .content-secondary {
    margin: 0 -15px;
    width: calc(100% + 30px);
  }
}
@media (min-width: 768px) {
  .photo-content--single-image .content-wrapper .content-secondary {
    flex: 0 0 50%;
    max-width: none;
    width: 50%;
  }
}
.photo-content--single-image .content-wrapper .content-secondary .gallery-item {
  margin-top: 1.875rem;
  opacity: 1;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
@media (min-width: 768px) {
  .photo-content--single-image .content-wrapper .content-secondary .gallery-item {
    width: 130%;
    margin-top: 0;
  }
}
.photo-content--single-image .content-wrapper .content-secondary .gallery-item img, .photo-content--single-image .content-wrapper .content-secondary .gallery-item video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.photo-content--centered {
  text-align: center;
}
.photo-content--centered .title {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.photo-content--centered .image-container {
  margin: 3.125rem auto;
  max-width: 1000px;
}
.photo-content--centered .image-container img, .photo-content--centered .image-container video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}
.photo-content--centered .description-wide {
  margin: 3.125rem auto;
  max-width: 800px;
  columns: 2;
  column-gap: 3rem;
  text-align: left;
}
@media (max-width: 768px) {
  .photo-content--centered .description-wide {
    columns: 1;
  }
}
.photo-content .title {
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-headings);
  margin-bottom: 1.75rem;
}
@media (max-width: 768px) {
  .photo-content .title {
    font-size: 1.875rem;
  }
}
.photo-content .description {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-texts-opacity);
  margin-bottom: 3.125rem;
}
@media (min-width: 768px) {
  .photo-content .description {
    margin-bottom: 5.625rem;
  }
}
.photo-content .description p {
  margin-bottom: 1.5rem;
}
.photo-content .description p:last-child {
  margin-bottom: 0;
}
.photo-content .description a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: opacity 0.2s ease;
}
.photo-content .description a:hover {
  opacity: 0.8;
}
.photo-content .description strong {
  color: var(--color-headings);
  font-weight: 700;
}
.photo-content .description blockquote {
  margin: 2.5rem 0;
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-primary);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-headings);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .photo-content .description blockquote {
    margin: 3rem 0 0 0;
    padding-left: 0;
    quotes: initial;
    font-style: normal;
    font-size: 34px;
    font-weight: bold;
    line-height: 2.5rem;
  }
}
.photo-content .gallery-item img {
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s ease;
}
.photo-content .gallery-item:hover img {
  transform: scale(1.02);
}
.photo-content .caption {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-texts-opacity);
  line-height: 1.4;
}

[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
  will-change: opacity, transform;
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos][data-aos][data-aos-duration="1000"] {
  transition-duration: 1s;
  opacity: 1;
}

.stats-masonry-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}
.stats-masonry-intro-logo {
  width: auto;
  height: auto;
  margin-bottom: 1rem;
}
.stats-masonry-intro-quote {
  font-size: 32px;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #242B42;
}

.stats-masonry {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 30px 10px 0 10px;
}
.stats-masonry__col {
  flex: 1 1 300px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .stats-masonry__col {
    flex: 1 1 100%;
  }
}
.stats-masonry__col:last-child {
  padding: 0;
  flex: 2;
}
.stats-masonry__col:last-child .stats-item {
  padding: 0;
}
.stats-masonry__col:last-child video, .stats-masonry__col:last-child img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.stats-masonry .stats-item {
  background: #F2F4F7;
  margin: 0.5rem 0;
  flex: 1;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 16px 0;
  height: 100%;
}
.stats-masonry .stats-item--html {
  text-align: left;
  padding: 16px;
}
.stats-masonry .stats-item--image, .stats-masonry .stats-item--video {
  overflow: hidden;
}
.stats-masonry .stats-item__subtitle {
  font-style: normal;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stats-masonry .stats-item i {
  color: #FFFFFF;
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 20px;
}
.stats-masonry .stats-item__title {
  font-style: normal;
  font-weight: 700;
  font-size: 64px;
}
.stats-masonry .stats-item__title_sm {
  font-size: 60px;
}
.stats-masonry .stats-item__title_xl {
  font-size: 96px;
}
.stats-masonry .stats-item__description {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 25px;
}
.stats-masonry .stats-item__description_small {
  font-size: 15px;
}
.stats-masonry .stats-item__icons {
  margin-top: 16px;
}
.stats-masonry .stats-item__icons i {
  position: static;
  margin-top: 16px;
  color: #687887;
  margin: 4px;
}
.stats-masonry .stats-item.black {
  background: #000;
}
.stats-masonry .stats-item.black .stats-item__title, .stats-masonry .stats-item.black .stats-item__title_sm {
  color: #FFFFFF;
}
.stats-masonry .stats-item.black .stats-item__subtitle, .stats-masonry .stats-item.black .stats-item__description_small {
  color: rgba(255, 255, 255, 0.7);
}
.stats-masonry .stats-item.blue {
  background: #3300FF;
}
.stats-masonry .stats-item.blue .stats-item__title, .stats-masonry .stats-item.blue .stats-item__title_sm {
  color: #FFFFFF;
}
.stats-masonry .stats-item.blue .stats-item__subtitle, .stats-masonry .stats-item.blue .stats-item__description {
  color: rgba(255, 255, 255, 0.7);
}
.stats-masonry {
  /* Update media query styles */
}
@media (min-width: 768px) {
  .stats-masonry__col {
    flex: 1 1 0%;
  }
  .stats-masonry__col:last-child {
    flex: 0 0 auto;
  }
}
@media (min-width: 992px) {
  .stats-masonry__col:last-child {
    flex: 2 1 0%;
    max-height: 800px;
  }
}

.stats-masonry-footnote {
  max-width: 1120px;
  padding: 0 10px;
  margin: auto;
  font-size: 14px;
  color: #687887;
}

.stats-masonry-cta {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
  flex-direction: column;
  align-items: center;
}
.stats-masonry-cta-title {
  font-size: 36px;
  color: #242B42;
  margin-bottom: 1rem;
}
.stats-masonry-cta-subtitle {
  font-size: 15px;
  color: #687887;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}
.stats-masonry-cta-subtitle a {
  color: #0400FF;
  text-decoration: underline;
  font-weight: bold;
}
.stats-masonry-cta-subtitle a:hover {
  color: rgb(3.2, 0, 204);
}

.image-gallery-title {
  margin: 60px auto 20px auto;
  max-width: 1100px;
  text-align: left;
}

.image-gallery {
  --c-max-width: 100%;
  --c-padding: 10px;
}
@media screen and (min-width: 768px) {
  .image-gallery {
    --c-padding: 12px;
  }
}
@media screen and (min-width: 1000px) {
  .image-gallery {
    --c-padding: 24px;
  }
}
@media screen and (min-width: 1200px) {
  .image-gallery {
    --c-max-width: 1180px;
    --c-padding: 40px;
  }
}
.image-gallery {
  --offset-width: calc(
    ((100% - (min(var(--c-max-width), 100%) + (var(--c-padding) * 2))) / 2) + (var(--c-padding) * 2)
  );
  padding-inline: var(--offset-width);
  scroll-padding-inline-start: var(--offset-width);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  display: flex;
  gap: var(--c-padding);
  padding-block: 2.5rem;
  border-top: 1px solid #E4E8F0;
  border-bottom: 1px solid #E4E8F0;
}
.image-gallery::-webkit-scrollbar {
  display: none;
}
.image-gallery .gallery-item {
  flex: 0 0 200px;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
  scroll-snap-align: start;
  background: #FFFFFF;
}
.image-gallery .gallery-item:hover {
  transform: scale(1.02);
}
.image-gallery .gallery-item .gallery-thumbnail {
  width: 100%;
  height: 250px;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.image-gallery .gallery-item .gallery-thumbnail.lazyloaded {
  opacity: 1;
}
.image-gallery .gallery-item .gallery-item-title {
  margin: 12px 0 4px;
  font-size: 15px;
  font-weight: bold;
  color: #242B42;
}
.image-gallery .gallery-item .gallery-item-description {
  display: none;
  margin: 0 12px 12px;
  font-size: 12px;
  color: #687887;
  line-height: 1.4;
}

.media-showcase {
  margin: 120px auto;
  padding: 0 24px;
  max-width: 1180px;
}
.media-showcase-header {
  margin-bottom: 68px;
  max-width: 800px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
.media-showcase-header-title {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 600;
  color: #242B42;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .media-showcase-header-title {
    font-size: 32px;
  }
}
.media-showcase-header-description {
  font-size: 21px;
  line-height: 1.5;
  color: #687887;
}
@media (max-width: 768px) {
  .media-showcase-header-description {
    font-size: 18px;
  }
}
.media-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .media-showcase-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 640px) {
  .media-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.media-showcase-grid-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #FFFFFF;
  transition: transform 0.3s ease;
  cursor: pointer;
  aspect-ratio: 1;
}
.media-showcase-grid-item:hover {
  transform: scale(1.02);
}
@media (min-width: 640px) {
  .media-showcase-grid-item.span-2 {
    grid-column: span 2;
    aspect-ratio: 2/1;
  }
}
@media (min-width: 640px) {
  .media-showcase-grid-item.span-2-rows {
    grid-row: span 2;
    aspect-ratio: 1/2;
  }
}
.media-showcase-grid-item .gallery-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.media-showcase-grid-item .gallery-thumbnail.lazyloaded {
  opacity: 1;
}
.media-showcase-grid-item .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0));
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.media-showcase-grid-item .caption-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  text-align: center;
}
.media-showcase-grid-item .caption-description {
  display: none;
}
.media-showcase-grid-item:hover .caption {
  opacity: 1;
}
.media-showcase-footer {
  max-width: 100%;
  margin: 48px 0;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 48px;
}
.media-showcase-footer-title {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  color: #242B42;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .media-showcase-footer-title {
    font-size: 24px;
  }
}
.media-showcase-footer-description {
  font-size: 18px;
  line-height: 1.5;
  color: #687887;
  display: flex;
  gap: 48px;
  text-align: left;
}
.media-showcase-footer-description p {
  flex: 1;
  margin: 0;
}
@media (max-width: 768px) {
  .media-showcase-footer-description {
    font-size: 16px;
    flex-direction: column;
    gap: 24px;
  }
}

.buttons-showcase {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}
.buttons-showcase h1 {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 700;
  font-size: 46px;
  color: #242B42;
  margin-bottom: 16px;
}
.buttons-showcase > p {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 400;
  font-size: 20px;
  color: #687887;
  margin-bottom: 40px;
}

.showcase-section {
  margin-bottom: 72px;
}
.showcase-section h2 {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  font-weight: 700;
  font-size: 28px;
  color: #242B42;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid #E4E8F0;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .button-group {
    flex-direction: column;
    align-items: stretch;
  }
  .button-group .btn {
    width: 100%;
    text-align: center;
  }
}

.buttons-showcase .btn {
  margin: 0;
}
.buttons-showcase .btn i {
  margin-left: 8px;
}
.buttons-showcase .btn i.icon-arrow-left {
  margin-left: 0;
  margin-right: 8px;
}
.buttons-showcase .showcase-section:not(:last-child) {
  border-bottom: 1px solid #E4E8F0;
  padding-bottom: 40px;
}

.container {
  max-width: 100%;
}

.button-code {
  background: #F3F7FB;
  border: 1px solid #E4E8F0;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
  font-family: "Monaco", "Menlo", "Consolas", monospace;
  font-size: 14px;
  color: #687887;
}

.fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.fade-in.animate {
  opacity: 1;
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scale-in.animate {
  opacity: 1;
  transform: scale(1);
}

.slide-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.slide-in-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.stagger-children .stagger-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.stagger-children.animate .stagger-item {
  opacity: 1;
  transform: translateY(0);
}
.stagger-children.animate .stagger-item:nth-child(1) {
  transition-delay: 0.1s;
}
.stagger-children.animate .stagger-item:nth-child(2) {
  transition-delay: 0.2s;
}
.stagger-children.animate .stagger-item:nth-child(3) {
  transition-delay: 0.3s;
}
.stagger-children.animate .stagger-item:nth-child(4) {
  transition-delay: 0.4s;
}
.stagger-children.animate .stagger-item:nth-child(5) {
  transition-delay: 0.5s;
}
.stagger-children.animate .stagger-item:nth-child(6) {
  transition-delay: 0.6s;
}

.hero-title {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.hero-title.animate {
  opacity: 1;
  transform: translateY(0);
}

.hero-subtitle {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition-delay: 0.2s;
}
.hero-subtitle.animate {
  opacity: 1;
  transform: translateY(0);
}

.showcase-copy {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.showcase-copy.animate {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up,
  .fade-in-left,
  .fade-in-right,
  .fade-in,
  .scale-in,
  .slide-in-up,
  .hero-title,
  .hero-subtitle,
  .hero-image,
  .showcase-copy,
  .showcase-image,
  .stagger-children .stagger-item {
    transition: none;
    opacity: 1;
    transform: none;
  }
}
.lazyload, .lazyloading {
  opacity: 0;
  transition: opacity 400ms;
}

img.lazyloaded {
  opacity: 1;
  transition: opacity 400ms;
}

.serif {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
}

.post-style {
  font-size: 18px;
  line-height: 1.98;
}
.post-style h1, .post-style h2, .post-style h3, .post-style h4, .post-style h5, .post-style h6 {
  margin: 35px 0 25px;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: text;
  position: relative;
}
.post-style h1:hover a.anchor, .post-style h2:hover a.anchor, .post-style h3:hover a.anchor, .post-style h4:hover a.anchor, .post-style h5:hover a.anchor, .post-style h6:hover a.anchor {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA09pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoMTMuMCAyMDEyMDMwNS5tLjQxNSAyMDEyLzAzLzA1OjIxOjAwOjAwKSAgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6OUM2NjlDQjI4ODBGMTFFMTg1ODlEODNERDJBRjUwQTQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OUM2NjlDQjM4ODBGMTFFMTg1ODlEODNERDJBRjUwQTQiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo5QzY2OUNCMDg4MEYxMUUxODU4OUQ4M0REMkFGNTBBNCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo5QzY2OUNCMTg4MEYxMUUxODU4OUQ4M0REMkFGNTBBNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PsQhXeAAAABfSURBVHjaYvz//z8DJYCRUgMYQAbAMBQIAvEqkBQWXI6sHqwHiwG70TTBxGaiWwjCTGgOUgJiF1J8wMRAIUA34B4Q76HUBelAfJYSA0CuMIEaRP8wGIkGMA54bgQIMACAmkXJi0hKJQAAAABJRU5ErkJggg==) no-repeat 10px center;
  text-decoration: none;
}
.post-style h1 tt, .post-style h1 code {
  font-size: inherit;
}
.post-style h2 tt, .post-style h2 code {
  font-size: inherit;
}
.post-style h3 tt, .post-style h3 code {
  font-size: inherit;
}
.post-style h4 tt, .post-style h4 code {
  font-size: inherit;
}
.post-style h5 tt, .post-style h5 code {
  font-size: inherit;
}
.post-style h6 tt, .post-style h6 code {
  font-size: inherit;
}
.post-style h1 {
  font-size: 32px;
  line-height: 1.2;
  color: #000000;
  padding-top: 25px;
  margin-bottom: 4px;
}
.post-style h2 {
  font-size: 26px;
  line-height: 1.2;
  color: #000000;
}
.post-style h3 {
  font-size: 18px;
}
.post-style h4 {
  font-size: 16px;
}
.post-style h5 {
  font-size: 14px;
}
.post-style h6 {
  color: #777777;
  font-size: 14px;
}
.post-style p, .post-style blockquote, .post-style ul, .post-style ol, .post-style dl, .post-style li, .post-style table, .post-style pre {
  margin-bottom: 25px;
  margin-top: 0;
}
.post-style hr {
  display: block;
  width: 20%;
  margin: 32px auto 32px auto;
  border: 1px solid rgb(187.2, 189.6, 192.8);
}
.post-style body > h2:first-child {
  margin-top: 0;
  padding-top: 0;
}
.post-style body > h1:first-child {
  margin-top: 0;
  padding-top: 0;
}
.post-style body > h1:first-child + h2 {
  margin-top: 0;
  padding-top: 0;
}
.post-style body > h3:first-child, .post-style body > h4:first-child, .post-style body > h5:first-child, .post-style body > h6:first-child {
  margin-top: 0;
  padding-top: 0;
}
.post-style a:first-child h1, .post-style a:first-child h2, .post-style a:first-child h3, .post-style a:first-child h4, .post-style a:first-child h5, .post-style a:first-child h6 {
  margin-top: 0;
  padding-top: 0;
}
.post-style h1 p, .post-style h2 p, .post-style h3 p, .post-style h4 p, .post-style h5 p, .post-style h6 p {
  margin-top: 0;
}
.post-style li p.first {
  display: inline-block;
}
.post-style li {
  margin: 0;
}
.post-style ul, .post-style ol {
  padding-left: 30px;
}
.post-style ul :first-child, .post-style ol :first-child {
  margin-top: 0;
}
.post-style dl {
  padding: 0;
}
.post-style dl dt {
  font-size: 14px;
  font-weight: bold;
  font-style: italic;
  padding: 0;
  margin: 15px 0 5px;
}
.post-style dl dt:first-child {
  padding: 0;
}
.post-style dl dt > :first-child {
  margin-top: 0;
}
.post-style dl dt > :last-child {
  margin-bottom: 0;
}
.post-style dl dd {
  margin: 0 0 15px;
  padding: 0 15px;
}
.post-style dl dd > :first-child {
  margin-top: 0;
}
.post-style dl dd > :last-child {
  margin-bottom: 0;
}
.post-style blockquote {
  padding: 0 15px;
  color: rgb(134.2, 147, 159);
  font-style: italic;
  font-size: 120%;
  border-left: 6px solid #00AFD1;
  padding-left: 20px;
  margin-left: -26px;
  margin-top: -1px;
  padding-bottom: 3px;
}
.post-style blockquote > :first-child {
  margin-top: 0;
}
.post-style blockquote > :last-child {
  margin-bottom: 0;
}
.post-style table {
  padding: 0;
  border-collapse: collapse;
}
.post-style table tr {
  border-top: 1px solid #cccccc;
  background-color: white;
  margin: 0;
  padding: 0;
}
.post-style table tr:nth-child(2n) {
  background-color: #f8f8f8;
}
.post-style table tr th {
  font-weight: bold;
  border: 1px solid #cccccc;
  text-align: left;
  margin: 0;
  padding: 6px 13px;
}
.post-style table tr td {
  border: 1px solid #cccccc;
  text-align: left;
  margin: 0;
  padding: 6px 13px;
}
.post-style table tr th :first-child, .post-style table tr td :first-child {
  margin-top: 0;
}
.post-style table tr th :last-child, .post-style table tr td :last-child {
  margin-bottom: 0;
}
.post-style img {
  max-width: 100%;
}
.post-style span.frame {
  display: block;
  overflow: hidden;
}
.post-style span.frame > span {
  border: 1px solid #dddddd;
  display: block;
  float: left;
  overflow: hidden;
  margin: 13px 0 0;
  padding: 7px;
  width: auto;
}
.post-style span.frame > span span img {
  display: block;
  float: left;
}
.post-style span.frame > span span span {
  clear: both;
  color: #333333;
  display: block;
  padding: 5px 0 0;
}
.post-style span.align-center {
  display: block;
  overflow: hidden;
  clear: both;
}
.post-style span.align-center > span {
  display: block;
  overflow: hidden;
  margin: 13px auto 0;
  text-align: center;
}
.post-style span.align-center span img {
  margin: 0 auto;
  text-align: center;
}
.post-style span.align-right {
  display: block;
  overflow: hidden;
  clear: both;
}
.post-style span.align-right > span {
  display: block;
  overflow: hidden;
  margin: 13px 0 0;
  text-align: right;
}
.post-style span.align-right span img {
  margin: 0;
  text-align: right;
}
.post-style span.float-left {
  display: block;
  margin-right: 13px;
  overflow: hidden;
  float: left;
}
.post-style span.float-left span {
  margin: 13px 0 0;
}
.post-style span.float-right {
  display: block;
  margin-left: 13px;
  overflow: hidden;
  float: right;
}
.post-style span.float-right > span {
  display: block;
  overflow: hidden;
  margin: 13px auto 0;
  text-align: right;
}
@media screen and (min-width: 914px) {
  .post-style body {
    width: 854px;
    margin: 0 auto;
  }
}
@media print {
  .post-style table, .post-style pre {
    page-break-inside: avoid;
  }
}
.post-style {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  color: rgb(76.5, 76.5, 76.5);
  line-height: 1.98;
}
.post-style pre {
  padding: 8px 0;
}
.post-style pre code {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 575px) {
  .post-style pre code {
    width: auto;
    margin-left: 2%;
    margin-right: 2%;
  }
}
.post-style pre code {
  display: block;
}
.post-style p, .post-style h1, .post-style h2, .post-style h3, .post-style h4, .post-style h5, .post-style h6, .post-style ul, .post-style ol, .post-style dl, .post-style hr, .post-style blockquote, .post-style table {
  width: 700px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 575px) {
  .post-style p, .post-style h1, .post-style h2, .post-style h3, .post-style h4, .post-style h5, .post-style h6, .post-style ul, .post-style ol, .post-style dl, .post-style hr, .post-style blockquote, .post-style table {
    width: auto;
    margin-left: 2%;
    margin-right: 2%;
  }
}
.post-style h1, .post-style h2, .post-style h3, .post-style h4, .post-style h5, .post-style h6 {
  font-family: "Montserrat", "Helvetica Neue", Helvetica, Arial, sans_serif;
  letter-spacing: -0.03em;
}
.post-style p img {
  width: 100%;
}
.post-style a {
  color: #01C8E4;
  transition-property: all;
  transition-duration: 0.2;
  transition-timing-function: ease-in;
  text-decoration: underline;
}
.post-style a:hover {
  color: #000000;
}
.post-style hr {
  display: block;
  width: 20%;
  margin: calc(8px / 6) auto calc(8px / 6) auto;
  border: 1px solid rgb(187.2, 189.6, 192.8);
}

.header-subtitle {
  color: #687887;
  font-size: 20px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
.header-subtitle.pink {
  color: #F75A9A;
  margin-bottom: 24px;
}

.mt-xs {
  margin-top: 8px !important;
}

.mt-sm {
  margin-top: 16px !important;
}

.mt-md {
  margin-top: 24px !important;
}

.mt-lg {
  margin-top: 32px !important;
}

.mt-xl {
  margin-top: 40px !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 992px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}
@-ms-viewport {
  width: device-width;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.container {
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 576px) {
  .container {
    width: 540px;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1140px;
    max-width: 100%;
  }
}
.container-fluid {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 576px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 768px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 992px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media (min-width: 1200px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  .col-xl-auto {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 768px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  .col-xl-auto {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 992px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  .col-xl-auto {
    padding-right: 15px;
    padding-left: 15px;
  }
}
@media (min-width: 1200px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
  .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
  .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
  .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
  .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
  .col-xl-auto {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.col {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.333333%;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.666667%;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.666667%;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.333333%;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.666667%;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.333333%;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.666667%;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

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

.pull-0 {
  right: auto;
}

.pull-1 {
  right: 8.333333%;
}

.pull-2 {
  right: 16.666667%;
}

.pull-3 {
  right: 25%;
}

.pull-4 {
  right: 33.333333%;
}

.pull-5 {
  right: 41.666667%;
}

.pull-6 {
  right: 50%;
}

.pull-7 {
  right: 58.333333%;
}

.pull-8 {
  right: 66.666667%;
}

.pull-9 {
  right: 75%;
}

.pull-10 {
  right: 83.333333%;
}

.pull-11 {
  right: 91.666667%;
}

.pull-12 {
  right: 100%;
}

.push-0 {
  left: auto;
}

.push-1 {
  left: 8.333333%;
}

.push-2 {
  left: 16.666667%;
}

.push-3 {
  left: 25%;
}

.push-4 {
  left: 33.333333%;
}

.push-5 {
  left: 41.666667%;
}

.push-6 {
  left: 50%;
}

.push-7 {
  left: 58.333333%;
}

.push-8 {
  left: 66.666667%;
}

.push-9 {
  left: 75%;
}

.push-10 {
  left: 83.333333%;
}

.push-11 {
  left: 91.666667%;
}

.push-12 {
  left: 100%;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-sm-0 {
    right: auto;
  }
  .pull-sm-1 {
    right: 8.333333%;
  }
  .pull-sm-2 {
    right: 16.666667%;
  }
  .pull-sm-3 {
    right: 25%;
  }
  .pull-sm-4 {
    right: 33.333333%;
  }
  .pull-sm-5 {
    right: 41.666667%;
  }
  .pull-sm-6 {
    right: 50%;
  }
  .pull-sm-7 {
    right: 58.333333%;
  }
  .pull-sm-8 {
    right: 66.666667%;
  }
  .pull-sm-9 {
    right: 75%;
  }
  .pull-sm-10 {
    right: 83.333333%;
  }
  .pull-sm-11 {
    right: 91.666667%;
  }
  .pull-sm-12 {
    right: 100%;
  }
  .push-sm-0 {
    left: auto;
  }
  .push-sm-1 {
    left: 8.333333%;
  }
  .push-sm-2 {
    left: 16.666667%;
  }
  .push-sm-3 {
    left: 25%;
  }
  .push-sm-4 {
    left: 33.333333%;
  }
  .push-sm-5 {
    left: 41.666667%;
  }
  .push-sm-6 {
    left: 50%;
  }
  .push-sm-7 {
    left: 58.333333%;
  }
  .push-sm-8 {
    left: 66.666667%;
  }
  .push-sm-9 {
    left: 75%;
  }
  .push-sm-10 {
    left: 83.333333%;
  }
  .push-sm-11 {
    left: 91.666667%;
  }
  .push-sm-12 {
    left: 100%;
  }
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-md-0 {
    right: auto;
  }
  .pull-md-1 {
    right: 8.333333%;
  }
  .pull-md-2 {
    right: 16.666667%;
  }
  .pull-md-3 {
    right: 25%;
  }
  .pull-md-4 {
    right: 33.333333%;
  }
  .pull-md-5 {
    right: 41.666667%;
  }
  .pull-md-6 {
    right: 50%;
  }
  .pull-md-7 {
    right: 58.333333%;
  }
  .pull-md-8 {
    right: 66.666667%;
  }
  .pull-md-9 {
    right: 75%;
  }
  .pull-md-10 {
    right: 83.333333%;
  }
  .pull-md-11 {
    right: 91.666667%;
  }
  .pull-md-12 {
    right: 100%;
  }
  .push-md-0 {
    left: auto;
  }
  .push-md-1 {
    left: 8.333333%;
  }
  .push-md-2 {
    left: 16.666667%;
  }
  .push-md-3 {
    left: 25%;
  }
  .push-md-4 {
    left: 33.333333%;
  }
  .push-md-5 {
    left: 41.666667%;
  }
  .push-md-6 {
    left: 50%;
  }
  .push-md-7 {
    left: 58.333333%;
  }
  .push-md-8 {
    left: 66.666667%;
  }
  .push-md-9 {
    left: 75%;
  }
  .push-md-10 {
    left: 83.333333%;
  }
  .push-md-11 {
    left: 91.666667%;
  }
  .push-md-12 {
    left: 100%;
  }
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-lg-0 {
    right: auto;
  }
  .pull-lg-1 {
    right: 8.333333%;
  }
  .pull-lg-2 {
    right: 16.666667%;
  }
  .pull-lg-3 {
    right: 25%;
  }
  .pull-lg-4 {
    right: 33.333333%;
  }
  .pull-lg-5 {
    right: 41.666667%;
  }
  .pull-lg-6 {
    right: 50%;
  }
  .pull-lg-7 {
    right: 58.333333%;
  }
  .pull-lg-8 {
    right: 66.666667%;
  }
  .pull-lg-9 {
    right: 75%;
  }
  .pull-lg-10 {
    right: 83.333333%;
  }
  .pull-lg-11 {
    right: 91.666667%;
  }
  .pull-lg-12 {
    right: 100%;
  }
  .push-lg-0 {
    left: auto;
  }
  .push-lg-1 {
    left: 8.333333%;
  }
  .push-lg-2 {
    left: 16.666667%;
  }
  .push-lg-3 {
    left: 25%;
  }
  .push-lg-4 {
    left: 33.333333%;
  }
  .push-lg-5 {
    left: 41.666667%;
  }
  .push-lg-6 {
    left: 50%;
  }
  .push-lg-7 {
    left: 58.333333%;
  }
  .push-lg-8 {
    left: 66.666667%;
  }
  .push-lg-9 {
    left: 75%;
  }
  .push-lg-10 {
    left: 83.333333%;
  }
  .push-lg-11 {
    left: 91.666667%;
  }
  .push-lg-12 {
    left: 100%;
  }
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-xl-0 {
    right: auto;
  }
  .pull-xl-1 {
    right: 8.333333%;
  }
  .pull-xl-2 {
    right: 16.666667%;
  }
  .pull-xl-3 {
    right: 25%;
  }
  .pull-xl-4 {
    right: 33.333333%;
  }
  .pull-xl-5 {
    right: 41.666667%;
  }
  .pull-xl-6 {
    right: 50%;
  }
  .pull-xl-7 {
    right: 58.333333%;
  }
  .pull-xl-8 {
    right: 66.666667%;
  }
  .pull-xl-9 {
    right: 75%;
  }
  .pull-xl-10 {
    right: 83.333333%;
  }
  .pull-xl-11 {
    right: 91.666667%;
  }
  .pull-xl-12 {
    right: 100%;
  }
  .push-xl-0 {
    left: auto;
  }
  .push-xl-1 {
    left: 8.333333%;
  }
  .push-xl-2 {
    left: 16.666667%;
  }
  .push-xl-3 {
    left: 25%;
  }
  .push-xl-4 {
    left: 33.333333%;
  }
  .push-xl-5 {
    left: 41.666667%;
  }
  .push-xl-6 {
    left: 50%;
  }
  .push-xl-7 {
    left: 58.333333%;
  }
  .push-xl-8 {
    left: 66.666667%;
  }
  .push-xl-9 {
    left: 75%;
  }
  .push-xl-10 {
    left: 83.333333%;
  }
  .push-xl-11 {
    left: 91.666667%;
  }
  .push-xl-12 {
    left: 100%;
  }
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.order-first {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -webkit-order: 0;
  -ms-flex-order: 0;
  order: 0;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
  -webkit-flex-direction: column !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: row-reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -webkit-flex-direction: column-reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -webkit-justify-content: flex-start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -webkit-justify-content: flex-end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -webkit-justify-content: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -webkit-justify-content: space-between !important;
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -webkit-justify-content: space-around !important;
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -webkit-align-items: flex-end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -webkit-align-items: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -webkit-align-items: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -webkit-align-content: flex-start !important;
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -webkit-align-content: flex-end !important;
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -webkit-align-content: center !important;
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -webkit-align-content: space-between !important;
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -webkit-align-content: space-around !important;
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -webkit-align-content: stretch !important;
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -webkit-align-self: auto !important;
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -webkit-align-self: flex-start !important;
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -webkit-align-self: flex-end !important;
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -webkit-align-self: center !important;
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -webkit-align-self: baseline !important;
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -webkit-align-self: stretch !important;
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -webkit-order: 0;
    -ms-flex-order: 0;
    order: 0;
  }
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -webkit-justify-content: flex-start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -webkit-justify-content: flex-end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -webkit-justify-content: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -webkit-justify-content: space-between !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -webkit-justify-content: space-around !important;
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -webkit-align-items: flex-start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -webkit-align-items: flex-end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -webkit-align-items: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -webkit-align-items: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -webkit-align-items: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -webkit-align-content: flex-start !important;
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -webkit-align-content: flex-end !important;
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -webkit-align-content: center !important;
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -webkit-align-content: space-between !important;
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -webkit-align-content: space-around !important;
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -webkit-align-content: stretch !important;
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -webkit-align-self: auto !important;
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -webkit-align-self: flex-start !important;
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -webkit-align-self: flex-end !important;
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -webkit-align-self: center !important;
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -webkit-align-self: baseline !important;
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -webkit-align-self: stretch !important;
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
.btn {
  border-radius: 1000px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  line-height: 30px;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
.btn.full {
  display: block;
  width: 100%;
}
.btn.square {
  border-radius: 0;
}
.btn.rounded {
  border-radius: 80px;
}
.btn.large, .btn.lg {
  padding: 18px 18px;
  font-size: 19px;
  line-height: 80%;
}
.btn.small, .btn .sm {
  padding: 9px 15px;
  font-size: 16px;
  line-height: 80%;
  font-weight: 700;
}
.btn.x-small, .btn .xs {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1em;
  font-weight: 700;
}
.btn.white {
  color: white !important;
}
.btn.white:hover {
  color: white;
}
.btn.black {
  color: #333333 !important;
}
.btn.black:hover {
  color: #333333;
}
.btn.no-shadow:hover {
  box-shadow: none;
}
.btn--black {
  border-radius: 1000px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  line-height: 30px;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
.btn--black.full {
  display: block;
  width: 100%;
}
.btn--black.square {
  border-radius: 0;
}
.btn--black.rounded {
  border-radius: 80px;
}
.btn--black.large, .btn--black.lg {
  padding: 18px 18px;
  font-size: 19px;
  line-height: 80%;
}
.btn--black.small, .btn--black .sm {
  padding: 9px 15px;
  font-size: 16px;
  line-height: 80%;
  font-weight: 700;
}
.btn--black.x-small, .btn--black .xs {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1em;
  font-weight: 700;
}
.btn--black.white {
  color: white !important;
}
.btn--black.white:hover {
  color: white;
}
.btn--black.black {
  color: #333333 !important;
}
.btn--black.black:hover {
  color: #333333;
}
.btn--black.no-shadow:hover {
  box-shadow: none;
}
.btn--black {
  background: #000000;
  color: #FFFFFF;
}
.btn--white {
  border-radius: 1000px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  line-height: 30px;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
.btn--white.full {
  display: block;
  width: 100%;
}
.btn--white.square {
  border-radius: 0;
}
.btn--white.rounded {
  border-radius: 80px;
}
.btn--white.large, .btn--white.lg {
  padding: 18px 18px;
  font-size: 19px;
  line-height: 80%;
}
.btn--white.small, .btn--white .sm {
  padding: 9px 15px;
  font-size: 16px;
  line-height: 80%;
  font-weight: 700;
}
.btn--white.x-small, .btn--white .xs {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1em;
  font-weight: 700;
}
.btn--white.white {
  color: white !important;
}
.btn--white.white:hover {
  color: white;
}
.btn--white.black {
  color: #333333 !important;
}
.btn--white.black:hover {
  color: #333333;
}
.btn--white.no-shadow:hover {
  box-shadow: none;
}
.btn--white {
  background: #FFFFFF;
  color: #000000;
}
.btn--ghost {
  border-radius: 1000px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  line-height: 30px;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
.btn--ghost.full {
  display: block;
  width: 100%;
}
.btn--ghost.square {
  border-radius: 0;
}
.btn--ghost.rounded {
  border-radius: 80px;
}
.btn--ghost.large, .btn--ghost.lg {
  padding: 18px 18px;
  font-size: 19px;
  line-height: 80%;
}
.btn--ghost.small, .btn--ghost .sm {
  padding: 9px 15px;
  font-size: 16px;
  line-height: 80%;
  font-weight: 700;
}
.btn--ghost.x-small, .btn--ghost .xs {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1em;
  font-weight: 700;
}
.btn--ghost.white {
  color: white !important;
}
.btn--ghost.white:hover {
  color: white;
}
.btn--ghost.black {
  color: #333333 !important;
}
.btn--ghost.black:hover {
  color: #333333;
}
.btn--ghost.no-shadow:hover {
  box-shadow: none;
}
.btn--ghost {
  border: 2px solid #E4E8F0;
  background: #FFFFFF;
  color: #000000;
}
.btn--link {
  border-radius: 1000px;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  cursor: pointer;
  appearance: none;
  background-color: #000000;
  border: 2px solid #1A1A1A;
  box-sizing: border-box;
  color: #FFFFFF;
  display: inline-block;
  line-height: 30px;
  margin: 0;
  min-width: 0;
  outline: none;
  padding: 16px 40px;
  text-align: center;
  text-decoration: none;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  will-change: transform;
}
.btn--link.full {
  display: block;
  width: 100%;
}
.btn--link.square {
  border-radius: 0;
}
.btn--link.rounded {
  border-radius: 80px;
}
.btn--link.large, .btn--link.lg {
  padding: 18px 18px;
  font-size: 19px;
  line-height: 80%;
}
.btn--link.small, .btn--link .sm {
  padding: 9px 15px;
  font-size: 16px;
  line-height: 80%;
  font-weight: 700;
}
.btn--link.x-small, .btn--link .xs {
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1em;
  font-weight: 700;
}
.btn--link.white {
  color: white !important;
}
.btn--link.white:hover {
  color: white;
}
.btn--link.black {
  color: #333333 !important;
}
.btn--link.black:hover {
  color: #333333;
}
.btn--link.no-shadow:hover {
  box-shadow: none;
}
.btn--link {
  border: 2px solid #E4E8F0;
  background: #FFFFFF;
  color: #000000;
  color: #0400FF;
  background: none;
  border: 0;
}
.btn--link:hover {
  color: #000000;
}
.btn .icon {
  margin-left: 2px;
}
.btn:hover {
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}
.btn:active {
  box-shadow: none;
  transform: translateY(0);
}
.btn--loading {
  position: relative;
  color: transparent;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 50%;
  border-right-color: transparent;
  animation: spin 0.8s linear infinite;
}

/*# sourceMappingURL=site.css.map */
