.pin {
  display: none;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  left: 0;
  top: 0;
  position: fixed; }

.pin.is-active {
  display: block; }

.pin.is-active .pin__image {
  display: block; }

.pin.is-active .pin__pulse {
  display: block; }

.pin__image {
  display: none;
  width: 30px;
  height: 30px;
  border-radius: 50% 50% 50% 0;
  background-color: #FF0093;
  position: absolute;
  transform: rotate(-45deg);
  left: 50%;
  top: 50%;
  margin: -20px 0 0 -20px;
  animation-name: bounce;
  animation-fill-mode: both;
  animation-duration: 1s;
  z-index: 1001; }

.pin__image:after {
  content: '';
  width: 14px;
  height: 14px;
  margin: 8px 0 0 8px;
  background-color: #F1DCE8;
  position: absolute;
  border-radius: 50%; }

.pin__pulse {
  background: rgba(255, 0, 146, 0.2);
  border-radius: 50%;
  height: 14px;
  width: 14px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: 11px 0px 0px -12px;
  transform: rotateX(55deg);
  z-index: 1000;
  display: none; }

.pin__pulse:after {
  content: "";
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: absolute;
  margin: -13px 0 0 -13px;
  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;
  opacity: 0.0;
  box-shadow: 0 0 4px 5px #FF0093;
  animation-delay: 1.1s; }

@keyframes pulsate {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 0.0; }
  50% {
    opacity: 1.0; }
  100% {
    transform: scale(1.2, 1.2);
    opacity: 0; } }

@keyframes bounce {
  0% {
    opacity: 0;
    transform: translateY(-2000px) rotate(-45deg); }
  60% {
    opacity: 1;
    transform: translateY(30px) rotate(-45deg); }
  80% {
    transform: translateY(-10px) rotate(-45deg); }
  100% {
    transform: translateY(0) rotate(-45deg); } }

.page-wrapper {
  min-height: calc(100dvh - 185px); }

.container-1250 {
  width: 90%;
  max-width: 1250px;
  margin: 0 auto; }

.container-1166 {
  width: 90%;
  max-width: 1166px;
  margin: 0 auto; }

.container-900 {
  width: 90%;
  max-width: 900px;
  margin: 0 auto; }

.container-700 {
  width: 90%;
  max-width: 700px;
  margin: 0 auto; }

.container-750 {
  width: 90%;
  max-width: 750px;
  margin: 0 auto; }

.container-500 {
  width: 90%;
  max-width: 500px;
  margin: 0 auto; }

.home-page .full-height-carousel {
  min-height: calc(100dvh - 80px); }

.full-height-carousel.carousel .carousel-inner,
.full-height-carousel.carousel .item {
  height: 100%; }

.full-height-carousel.carousel .carousel-inner {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0; }

.full-height-carousel.carousel .img-wrapper {
  height: 100%;
  background-size: cover;
  background-position: center; }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); }

.home-page .carousel-caption {
  bottom: 6.5vh; }

.home-page .item:nth-of-type(1) .img-wrapper {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 3.3s;
  transition: -webkit-transform 3.3s;
  -o-transition: transform 3.3s;
  transition: transform 3.3s;
  transition: transform 3.3s, -webkit-transform 3.3s; }

.home-page .item:nth-of-type(1) .carousel-caption {
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  opacity: 0;
  -webkit-transition: opacity 1.4s 1s, -webkit-transform 1s 1s;
  transition: opacity 1.4s 1s, -webkit-transform 1s 1s;
  -o-transition: opacity 1.4s 1s, transform 1s 1s;
  transition: opacity 1.4s 1s, transform 1s 1s;
  transition: opacity 1.4s 1s, transform 1s 1s, -webkit-transform 1s 1s; }

.home-page.done-loading .item:nth-of-type(1) .img-wrapper {
  -webkit-transform: scale(1.1);
  transform: scale(1.1); }

.home-page.done-loading .item:nth-of-type(1) .carousel-caption {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1; }

@media screen and (min-width: 1200px) and (max-height: 695px) {
  .home-page .carousel-caption {
    bottom: 90px; } }

.carousel {
  position: relative; }

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }

.carousel-inner::after {
  display: block;
  clear: both;
  content: ""; }

.carousel-text {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  font-size: 40px !important; }

.item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  -o-transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out; }

@media (prefers-reduced-motion: reduce) {
  .item {
    -webkit-transition: none;
    -o-transition: none;
    transition: none; } }

.next,
.prev,
.item.active {
  display: block; }

.active.right,
.next:not(.left) {
  -webkit-transform: translateX(100%);
  transform: translateX(100%); }

.active.left,
.prev:not(.right) {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%); }

.carousel-fade .item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
  transform: none; }

.carousel-fade .next.left,
.carousel-fade .prev.right,
.carousel-fade .item.active {
  z-index: 1;
  opacity: 1; }

.carousel-fade .active.left,
.carousel-fade .active.right {
  z-index: 0;
  opacity: 0;
  -webkit-transition: 0s 0.6s opacity;
  -o-transition: 0s 0.6s opacity;
  transition: 0s 0.6s opacity; }

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.left,
  .carousel-fade .active.right {
    -webkit-transition: none;
    -o-transition: none;
    transition: none; } }

.carousel-control-next,
.carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease; }

@media (prefers-reduced-motion: reduce) {
  .carousel-control-next,
  .carousel-control-prev {
    -webkit-transition: none;
    -o-transition: none;
    transition: none; } }

.carousel-control-next:focus,
.carousel-control-next:hover,
.carousel-control-prev:focus,
.carousel-control-prev:hover {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9; }

.carousel-control-prev {
  left: 0; }

.carousel-control-next {
  right: 0; }

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50%/100% 100%; }

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); }

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
  display: none; }

.carousel-indicators li {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease; }

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    -webkit-transition: none;
    -o-transition: none;
    transition: none; } }

.carousel-indicators .active {
  opacity: 1; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center; }

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

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

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: 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;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important; }

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

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

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

.flex-fill {
  -webkit-box-flex: 1 !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important; }

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  flex-grow: 0 !important; }

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  flex-grow: 1 !important; }

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  flex-shrink: 1 !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: 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;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: 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;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 1024px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: 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;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: 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;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 1440px) {
  .flex-wide-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-wide-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-wide-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-wide-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-wide-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-wide-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-wide-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-wide-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-wide-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .flex-wide-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .flex-wide-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-wide-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-wide-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-wide-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-wide-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-wide-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-wide-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-wide-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-wide-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-wide-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-wide-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-wide-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-wide-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-wide-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-wide-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-wide-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-wide-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-wide-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-wide-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-wide-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-wide-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-wide-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-wide-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-wide-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

@media (min-width: 1600px) {
  .flex-extra-wide-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important; }
  .flex-extra-wide-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important; }
  .flex-extra-wide-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important; }
  .flex-extra-wide-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important; }
  .flex-extra-wide-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important; }
  .flex-extra-wide-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important; }
  .flex-extra-wide-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important; }
  .flex-extra-wide-fill {
    -webkit-box-flex: 1 !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important; }
  .flex-extra-wide-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important; }
  .flex-extra-wide-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    flex-grow: 1 !important; }
  .flex-extra-wide-shrink-0 {
    -ms-flex-negative: 0 !important;
    flex-shrink: 0 !important; }
  .flex-extra-wide-shrink-1 {
    -ms-flex-negative: 1 !important;
    flex-shrink: 1 !important; }
  .justify-content-extra-wide-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important; }
  .justify-content-extra-wide-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important; }
  .justify-content-extra-wide-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important; }
  .justify-content-extra-wide-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important; }
  .justify-content-extra-wide-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important; }
  .align-items-extra-wide-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important; }
  .align-items-extra-wide-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important; }
  .align-items-extra-wide-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important; }
  .align-items-extra-wide-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important; }
  .align-items-extra-wide-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important; }
  .align-content-extra-wide-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important; }
  .align-content-extra-wide-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important; }
  .align-content-extra-wide-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important; }
  .align-content-extra-wide-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important; }
  .align-content-extra-wide-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important; }
  .align-content-extra-wide-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important; }
  .align-self-extra-wide-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important; }
  .align-self-extra-wide-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important; }
  .align-self-extra-wide-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important; }
  .align-self-extra-wide-center {
    -ms-flex-item-align: center !important;
    align-self: center !important; }
  .align-self-extra-wide-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important; }
  .align-self-extra-wide-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-none {
  float: none !important; }

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important; }
  .float-sm-right {
    float: right !important; }
  .float-sm-none {
    float: none !important; } }

@media (min-width: 768px) {
  .float-md-left {
    float: left !important; }
  .float-md-right {
    float: right !important; }
  .float-md-none {
    float: none !important; } }

@media (min-width: 1024px) {
  .float-lg-left {
    float: left !important; }
  .float-lg-right {
    float: right !important; }
  .float-lg-none {
    float: none !important; } }

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important; }
  .float-xl-right {
    float: right !important; }
  .float-xl-none {
    float: none !important; } }

@media (min-width: 1440px) {
  .float-wide-left {
    float: left !important; }
  .float-wide-right {
    float: right !important; }
  .float-wide-none {
    float: none !important; } }

@media (min-width: 1600px) {
  .float-extra-wide-left {
    float: left !important; }
  .float-extra-wide-right {
    float: right !important; }
  .float-extra-wide-none {
    float: none !important; } }

.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports (position: -webkit-sticky) or (position: sticky) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020; } }

.edge .home-page {
  overflow-x: hidden; }

.areas-wrapper {
  position: absolute;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  border: 4px solid #fff;
  margin-top: 35px;
  -webkit-transition: opacity 3.3s;
  -o-transition: opacity 3.3s;
  transition: opacity 3.3s; }

.loading .areas-wrapper {
  opacity: 0; }

.done-loading .areas-wrapper {
  opacity: 1; }

.done-loading .areas-wrapper .area-link {
  opacity: 1; }

.done-loading .areas-wrapper .area-link .area {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0); }

@media (min-width: 1200px) {
  .areas-wrapper {
    top: 55%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: -50px; } }

@media screen and (min-width: 1200px) and (max-height: 695px) {
  .areas-wrapper {
    margin-top: -30px; } }

.areas-wrapper .area-link {
  position: relative;
  opacity: 0;
  -webkit-transition: opacity 1s;
  -o-transition: opacity 1s;
  transition: opacity 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  cursor: pointer;
  backdrop-filter: blur(25px);
  min-height: 200px;
  display: flex; }

@media (max-width: 576px) {
  .areas-wrapper .area-link {
    min-height: 20px;
    max-height: 60px; }
  .carousel-caption {
    bottom: 5vh; } }

.areas-wrapper .area-link:nth-child(1) {
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s; }

.areas-wrapper .area-link:nth-child(2) {
  -webkit-transition-delay: 1.15s;
  -o-transition-delay: 1.15s;
  transition-delay: 1.15s; }

.areas-wrapper .area-link:nth-child(3) {
  -webkit-transition-delay: 1.3s;
  -o-transition-delay: 1.3s;
  transition-delay: 1.3s; }

.areas-wrapper .area-link:nth-child(4) {
  -webkit-transition-delay: 1.45s;
  -o-transition-delay: 1.45s;
  transition-delay: 1.45s; }

.areas-wrapper .area-link:nth-child(5) {
  -webkit-transition-delay: 1.6s;
  -o-transition-delay: 1.6s;
  transition-delay: 1.6s; }

.areas-wrapper .area-link:nth-child(6) {
  -webkit-transition-delay: 1.75s;
  -o-transition-delay: 1.75s;
  transition-delay: 1.75s; }

@media (max-width: 575.98px) {
  .areas-wrapper .area-link:nth-of-type(even) {
    background-color: #0e80419a; } }

@media (min-width: 576px) and (max-width: 1199.98px) {
  .areas-wrapper .area-link:nth-of-type(even) {
    background-color: #0e80419a; } }

@media (min-width: 1200px) {
  .areas-wrapper .area-link:nth-of-type(even) {
    background: #0e80419a; } }

.areas-wrapper .area-link:hover .area-info {
  opacity: 1; }

.areas-wrapper .area-info {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s;
  -o-transition: opacity 0.4s;
  transition: opacity 0.4s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.areas-wrapper .area {
  margin: 0 auto;
  justify-content: center;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: opacity 0.4s, -webkit-transform 1s 1s;
  transition: opacity 0.4s, -webkit-transform 1s 1s;
  -o-transition: opacity 0.4s, transform 1s 1s;
  transition: opacity 0.4s, transform 1s 1s;
  transition: opacity 0.4s, transform 1s 1s, -webkit-transform 1s 1s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.ek {
  width: 25px !important; }

.ek--16x16 {
  width: 16px !important;
  height: 16px !important; }

.area-title {
  max-width: 170px; }

.area .ek {
  font-size: 55px; }

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.main .row {
  flex-wrap: unset; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }

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

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-extra-wide,
.col-extra-wide-1,
.col-extra-wide-10,
.col-extra-wide-11,
.col-extra-wide-12,
.col-extra-wide-2,
.col-extra-wide-3,
.col-extra-wide-4,
.col-extra-wide-5,
.col-extra-wide-6,
.col-extra-wide-7,
.col-extra-wide-8,
.col-extra-wide-9,
.col-extra-wide-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.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-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.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-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.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-auto,
.col-wide,
.col-wide-1,
.col-wide-10,
.col-wide-11,
.col-wide-12,
.col-wide-2,
.col-wide-3,
.col-wide-4,
.col-wide-5,
.col-wide-6,
.col-wide-7,
.col-wide-8,
.col-wide-9,
.col-wide-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.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-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13; }

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

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

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

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3; }

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4; }

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5; }

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6; }

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7; }

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8; }

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9; }

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10; }

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11; }

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12; }

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1024px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1440px) {
  .col-wide {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-wide-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-wide-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-wide-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-wide-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-wide-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-wide-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-wide-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-wide-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-wide-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-wide-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-wide-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-wide-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-wide-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-wide-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-wide-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-wide-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-wide-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-wide-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-wide-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-wide-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-wide-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-wide-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-wide-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-wide-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-wide-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-wide-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-wide-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-wide-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-wide-0 {
    margin-left: 0; }
  .offset-wide-1 {
    margin-left: 8.33333%; }
  .offset-wide-2 {
    margin-left: 16.66667%; }
  .offset-wide-3 {
    margin-left: 25%; }
  .offset-wide-4 {
    margin-left: 33.33333%; }
  .offset-wide-5 {
    margin-left: 41.66667%; }
  .offset-wide-6 {
    margin-left: 50%; }
  .offset-wide-7 {
    margin-left: 58.33333%; }
  .offset-wide-8 {
    margin-left: 66.66667%; }
  .offset-wide-9 {
    margin-left: 75%; }
  .offset-wide-10 {
    margin-left: 83.33333%; }
  .offset-wide-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1600px) {
  .col-extra-wide {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%; }
  .col-extra-wide-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%; }
  .col-extra-wide-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.33333%;
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-extra-wide-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.66667%;
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-extra-wide-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .col-extra-wide-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-extra-wide-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.66667%;
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-extra-wide-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .col-extra-wide-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.33333%;
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-extra-wide-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.66667%;
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-extra-wide-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .col-extra-wide-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.33333%;
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-extra-wide-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.66667%;
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-extra-wide-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }
  .order-extra-wide-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1; }
  .order-extra-wide-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13; }
  .order-extra-wide-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0; }
  .order-extra-wide-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  .order-extra-wide-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2; }
  .order-extra-wide-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3; }
  .order-extra-wide-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4; }
  .order-extra-wide-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5; }
  .order-extra-wide-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6; }
  .order-extra-wide-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7; }
  .order-extra-wide-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8; }
  .order-extra-wide-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9; }
  .order-extra-wide-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10; }
  .order-extra-wide-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11; }
  .order-extra-wide-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12; }
  .offset-extra-wide-0 {
    margin-left: 0; }
  .offset-extra-wide-1 {
    margin-left: 8.33333%; }
  .offset-extra-wide-2 {
    margin-left: 16.66667%; }
  .offset-extra-wide-3 {
    margin-left: 25%; }
  .offset-extra-wide-4 {
    margin-left: 33.33333%; }
  .offset-extra-wide-5 {
    margin-left: 41.66667%; }
  .offset-extra-wide-6 {
    margin-left: 50%; }
  .offset-extra-wide-7 {
    margin-left: 58.33333%; }
  .offset-extra-wide-8 {
    margin-left: 66.66667%; }
  .offset-extra-wide-9 {
    margin-left: 75%; }
  .offset-extra-wide-10 {
    margin-left: 83.33333%; }
  .offset-extra-wide-11 {
    margin-left: 91.66667%; } }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

.w-100 {
  width: 100% !important; }

.w-auto {
  width: auto !important; }

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.h-auto {
  height: auto !important; }

.mw-100 {
  max-width: 100% !important; }

.mh-100 {
  max-height: 100% !important; }

.min-vw-100 {
  min-width: 100vw !important; }

.min-vh-100 {
  min-height: 100dvh !important; }

.vw-100 {
  width: 100vw !important; }

.vh-100 {
  height: 100dvh !important; }

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0); }

.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-30px {
  margin-right: 30px !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; }

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

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

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

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

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

.m-7 {
  margin: 6rem !important; }

.mt-7,
.my-7 {
  margin-top: 6rem !important; }

.mr-7,
.mx-7 {
  margin-right: 6rem !important; }

.mb-7,
.my-7 {
  margin-bottom: 6rem !important; }

.ml-7,
.mx-7 {
  margin-left: 6rem !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; }

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

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

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

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

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

.p-7 {
  padding: 6rem !important; }

.pt-7,
.py-7 {
  padding-top: 6rem !important; }

.pr-7,
.px-7 {
  padding-right: 6rem !important; }

.pb-7,
.py-7 {
  padding-bottom: 6rem !important; }

.pl-7,
.px-7 {
  padding-left: 6rem !important; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.m-n7 {
  margin: -6rem !important; }

.mt-n7,
.my-n7 {
  margin-top: -6rem !important; }

.mr-n7,
.mx-n7 {
  margin-right: -6rem !important; }

.mb-n7,
.my-n7 {
  margin-bottom: -6rem !important; }

.ml-n7,
.mx-n7 {
  margin-left: -6rem !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; }
  .m-sm-6 {
    margin: 5rem !important; }
  .mt-sm-6,
  .my-sm-6 {
    margin-top: 5rem !important; }
  .mr-sm-6,
  .mx-sm-6 {
    margin-right: 5rem !important; }
  .mb-sm-6,
  .my-sm-6 {
    margin-bottom: 5rem !important; }
  .ml-sm-6,
  .mx-sm-6 {
    margin-left: 5rem !important; }
  .m-sm-7 {
    margin: 6rem !important; }
  .mt-sm-7,
  .my-sm-7 {
    margin-top: 6rem !important; }
  .mr-sm-7,
  .mx-sm-7 {
    margin-right: 6rem !important; }
  .mb-sm-7,
  .my-sm-7 {
    margin-bottom: 6rem !important; }
  .ml-sm-7,
  .mx-sm-7 {
    margin-left: 6rem !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; }
  .p-sm-6 {
    padding: 5rem !important; }
  .pt-sm-6,
  .py-sm-6 {
    padding-top: 5rem !important; }
  .pr-sm-6,
  .px-sm-6 {
    padding-right: 5rem !important; }
  .pb-sm-6,
  .py-sm-6 {
    padding-bottom: 5rem !important; }
  .pl-sm-6,
  .px-sm-6 {
    padding-left: 5rem !important; }
  .p-sm-7 {
    padding: 6rem !important; }
  .pt-sm-7,
  .py-sm-7 {
    padding-top: 6rem !important; }
  .pr-sm-7,
  .px-sm-7 {
    padding-right: 6rem !important; }
  .pb-sm-7,
  .py-sm-7 {
    padding-bottom: 6rem !important; }
  .pl-sm-7,
  .px-sm-7 {
    padding-left: 6rem !important; }
  .m-sm-n1 {
    margin: -0.25rem !important; }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important; }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important; }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important; }
  .m-sm-n2 {
    margin: -0.5rem !important; }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important; }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important; }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important; }
  .m-sm-n3 {
    margin: -1rem !important; }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important; }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important; }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important; }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important; }
  .m-sm-n4 {
    margin: -1.5rem !important; }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important; }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important; }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important; }
  .m-sm-n5 {
    margin: -3rem !important; }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important; }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important; }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important; }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important; }
  .m-sm-n6 {
    margin: -5rem !important; }
  .mt-sm-n6,
  .my-sm-n6 {
    margin-top: -5rem !important; }
  .mr-sm-n6,
  .mx-sm-n6 {
    margin-right: -5rem !important; }
  .mb-sm-n6,
  .my-sm-n6 {
    margin-bottom: -5rem !important; }
  .ml-sm-n6,
  .mx-sm-n6 {
    margin-left: -5rem !important; }
  .m-sm-n7 {
    margin: -6rem !important; }
  .mt-sm-n7,
  .my-sm-n7 {
    margin-top: -6rem !important; }
  .mr-sm-n7,
  .mx-sm-n7 {
    margin-right: -6rem !important; }
  .mb-sm-n7,
  .my-sm-n7 {
    margin-bottom: -6rem !important; }
  .ml-sm-n7,
  .mx-sm-n7 {
    margin-left: -6rem !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; }
  .m-md-6 {
    margin: 5rem !important; }
  .mt-md-6,
  .my-md-6 {
    margin-top: 5rem !important; }
  .mr-md-6,
  .mx-md-6 {
    margin-right: 5rem !important; }
  .mb-md-6,
  .my-md-6 {
    margin-bottom: 5rem !important; }
  .ml-md-6,
  .mx-md-6 {
    margin-left: 5rem !important; }
  .m-md-7 {
    margin: 6rem !important; }
  .mt-md-7,
  .my-md-7 {
    margin-top: 6rem !important; }
  .mr-md-7,
  .mx-md-7 {
    margin-right: 6rem !important; }
  .mb-md-7,
  .my-md-7 {
    margin-bottom: 6rem !important; }
  .ml-md-7,
  .mx-md-7 {
    margin-left: 6rem !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; }
  .p-md-6 {
    padding: 5rem !important; }
  .pt-md-6,
  .py-md-6 {
    padding-top: 5rem !important; }
  .pr-md-6,
  .px-md-6 {
    padding-right: 5rem !important; }
  .pb-md-6,
  .py-md-6 {
    padding-bottom: 5rem !important; }
  .pl-md-6,
  .px-md-6 {
    padding-left: 5rem !important; }
  .p-md-7 {
    padding: 6rem !important; }
  .pt-md-7,
  .py-md-7 {
    padding-top: 6rem !important; }
  .pr-md-7,
  .px-md-7 {
    padding-right: 6rem !important; }
  .pb-md-7,
  .py-md-7 {
    padding-bottom: 6rem !important; }
  .pl-md-7,
  .px-md-7 {
    padding-left: 6rem !important; }
  .m-md-n1 {
    margin: -0.25rem !important; }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important; }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important; }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important; }
  .m-md-n2 {
    margin: -0.5rem !important; }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important; }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important; }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important; }
  .m-md-n3 {
    margin: -1rem !important; }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important; }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important; }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important; }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important; }
  .m-md-n4 {
    margin: -1.5rem !important; }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important; }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important; }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important; }
  .m-md-n5 {
    margin: -3rem !important; }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important; }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important; }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important; }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important; }
  .m-md-n6 {
    margin: -5rem !important; }
  .mt-md-n6,
  .my-md-n6 {
    margin-top: -5rem !important; }
  .mr-md-n6,
  .mx-md-n6 {
    margin-right: -5rem !important; }
  .mb-md-n6,
  .my-md-n6 {
    margin-bottom: -5rem !important; }
  .ml-md-n6,
  .mx-md-n6 {
    margin-left: -5rem !important; }
  .m-md-n7 {
    margin: -6rem !important; }
  .mt-md-n7,
  .my-md-n7 {
    margin-top: -6rem !important; }
  .mr-md-n7,
  .mx-md-n7 {
    margin-right: -6rem !important; }
  .mb-md-n7,
  .my-md-n7 {
    margin-bottom: -6rem !important; }
  .ml-md-n7,
  .mx-md-n7 {
    margin-left: -6rem !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: 1024px) {
  .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; }
  .m-lg-6 {
    margin: 5rem !important; }
  .mt-lg-6,
  .my-lg-6 {
    margin-top: 5rem !important; }
  .mr-lg-6,
  .mx-lg-6 {
    margin-right: 5rem !important; }
  .mb-lg-6,
  .my-lg-6 {
    margin-bottom: 5rem !important; }
  .ml-lg-6,
  .mx-lg-6 {
    margin-left: 5rem !important; }
  .m-lg-7 {
    margin: 6rem !important; }
  .mt-lg-7,
  .my-lg-7 {
    margin-top: 6rem !important; }
  .mr-lg-7,
  .mx-lg-7 {
    margin-right: 6rem !important; }
  .mb-lg-7,
  .my-lg-7 {
    margin-bottom: 6rem !important; }
  .ml-lg-7,
  .mx-lg-7 {
    margin-left: 6rem !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; }
  .p-lg-6 {
    padding: 5rem !important; }
  .pt-lg-6,
  .py-lg-6 {
    padding-top: 5rem !important; }
  .pr-lg-6,
  .px-lg-6 {
    padding-right: 5rem !important; }
  .pb-lg-6,
  .py-lg-6 {
    padding-bottom: 5rem !important; }
  .pl-lg-6,
  .px-lg-6 {
    padding-left: 5rem !important; }
  .p-lg-7 {
    padding: 6rem !important; }
  .pt-lg-7,
  .py-lg-7 {
    padding-top: 6rem !important; }
  .pr-lg-7,
  .px-lg-7 {
    padding-right: 6rem !important; }
  .pb-lg-7,
  .py-lg-7 {
    padding-bottom: 6rem !important; }
  .pl-lg-7,
  .px-lg-7 {
    padding-left: 6rem !important; }
  .m-lg-n1 {
    margin: -0.25rem !important; }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important; }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important; }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important; }
  .m-lg-n2 {
    margin: -0.5rem !important; }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important; }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important; }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important; }
  .m-lg-n3 {
    margin: -1rem !important; }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important; }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important; }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important; }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important; }
  .m-lg-n4 {
    margin: -1.5rem !important; }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important; }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important; }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important; }
  .m-lg-n5 {
    margin: -3rem !important; }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important; }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important; }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important; }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important; }
  .m-lg-n6 {
    margin: -5rem !important; }
  .mt-lg-n6,
  .my-lg-n6 {
    margin-top: -5rem !important; }
  .mr-lg-n6,
  .mx-lg-n6 {
    margin-right: -5rem !important; }
  .mb-lg-n6,
  .my-lg-n6 {
    margin-bottom: -5rem !important; }
  .ml-lg-n6,
  .mx-lg-n6 {
    margin-left: -5rem !important; }
  .m-lg-n7 {
    margin: -6rem !important; }
  .mt-lg-n7,
  .my-lg-n7 {
    margin-top: -6rem !important; }
  .mr-lg-n7,
  .mx-lg-n7 {
    margin-right: -6rem !important; }
  .mb-lg-n7,
  .my-lg-n7 {
    margin-bottom: -6rem !important; }
  .ml-lg-n7,
  .mx-lg-n7 {
    margin-left: -6rem !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; }
  .m-xl-6 {
    margin: 5rem !important; }
  .mt-xl-6,
  .my-xl-6 {
    margin-top: 5rem !important; }
  .mr-xl-6,
  .mx-xl-6 {
    margin-right: 5rem !important; }
  .mb-xl-6,
  .my-xl-6 {
    margin-bottom: 5rem !important; }
  .ml-xl-6,
  .mx-xl-6 {
    margin-left: 5rem !important; }
  .m-xl-7 {
    margin: 6rem !important; }
  .mt-xl-7,
  .my-xl-7 {
    margin-top: 6rem !important; }
  .mr-xl-7,
  .mx-xl-7 {
    margin-right: 6rem !important; }
  .mb-xl-7,
  .my-xl-7 {
    margin-bottom: 6rem !important; }
  .ml-xl-7,
  .mx-xl-7 {
    margin-left: 6rem !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; }
  .p-xl-6 {
    padding: 5rem !important; }
  .pt-xl-6,
  .py-xl-6 {
    padding-top: 5rem !important; }
  .pr-xl-6,
  .px-xl-6 {
    padding-right: 5rem !important; }
  .pb-xl-6,
  .py-xl-6 {
    padding-bottom: 5rem !important; }
  .pl-xl-6,
  .px-xl-6 {
    padding-left: 5rem !important; }
  .p-xl-7 {
    padding: 6rem !important; }
  .pt-xl-7,
  .py-xl-7 {
    padding-top: 6rem !important; }
  .pr-xl-7,
  .px-xl-7 {
    padding-right: 6rem !important; }
  .pb-xl-7,
  .py-xl-7 {
    padding-bottom: 6rem !important; }
  .pl-xl-7,
  .px-xl-7 {
    padding-left: 6rem !important; }
  .m-xl-n1 {
    margin: -0.25rem !important; }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important; }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important; }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important; }
  .m-xl-n2 {
    margin: -0.5rem !important; }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important; }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important; }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important; }
  .m-xl-n3 {
    margin: -1rem !important; }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important; }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important; }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important; }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important; }
  .m-xl-n4 {
    margin: -1.5rem !important; }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important; }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important; }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important; }
  .m-xl-n5 {
    margin: -3rem !important; }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important; }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important; }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important; }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important; }
  .m-xl-n6 {
    margin: -5rem !important; }
  .mt-xl-n6,
  .my-xl-n6 {
    margin-top: -5rem !important; }
  .mr-xl-n6,
  .mx-xl-n6 {
    margin-right: -5rem !important; }
  .mb-xl-n6,
  .my-xl-n6 {
    margin-bottom: -5rem !important; }
  .ml-xl-n6,
  .mx-xl-n6 {
    margin-left: -5rem !important; }
  .m-xl-n7 {
    margin: -6rem !important; }
  .mt-xl-n7,
  .my-xl-n7 {
    margin-top: -6rem !important; }
  .mr-xl-n7,
  .mx-xl-n7 {
    margin-right: -6rem !important; }
  .mb-xl-n7,
  .my-xl-n7 {
    margin-bottom: -6rem !important; }
  .ml-xl-n7,
  .mx-xl-n7 {
    margin-left: -6rem !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; } }

@media (min-width: 1440px) {
  .m-wide-0 {
    margin: 0 !important; }
  .mt-wide-0,
  .my-wide-0 {
    margin-top: 0 !important; }
  .mr-wide-0,
  .mx-wide-0 {
    margin-right: 0 !important; }
  .mb-wide-0,
  .my-wide-0 {
    margin-bottom: 0 !important; }
  .ml-wide-0,
  .mx-wide-0 {
    margin-left: 0 !important; }
  .m-wide-1 {
    margin: 0.25rem !important; }
  .mt-wide-1,
  .my-wide-1 {
    margin-top: 0.25rem !important; }
  .mr-wide-1,
  .mx-wide-1 {
    margin-right: 0.25rem !important; }
  .mb-wide-1,
  .my-wide-1 {
    margin-bottom: 0.25rem !important; }
  .ml-wide-1,
  .mx-wide-1 {
    margin-left: 0.25rem !important; }
  .m-wide-2 {
    margin: 0.5rem !important; }
  .mt-wide-2,
  .my-wide-2 {
    margin-top: 0.5rem !important; }
  .mr-wide-2,
  .mx-wide-2 {
    margin-right: 0.5rem !important; }
  .mb-wide-2,
  .my-wide-2 {
    margin-bottom: 0.5rem !important; }
  .ml-wide-2,
  .mx-wide-2 {
    margin-left: 0.5rem !important; }
  .m-wide-3 {
    margin: 1rem !important; }
  .mt-wide-3,
  .my-wide-3 {
    margin-top: 1rem !important; }
  .mr-wide-3,
  .mx-wide-3 {
    margin-right: 1rem !important; }
  .mb-wide-3,
  .my-wide-3 {
    margin-bottom: 1rem !important; }
  .ml-wide-3,
  .mx-wide-3 {
    margin-left: 1rem !important; }
  .m-wide-4 {
    margin: 1.5rem !important; }
  .mt-wide-4,
  .my-wide-4 {
    margin-top: 1.5rem !important; }
  .mr-wide-4,
  .mx-wide-4 {
    margin-right: 1.5rem !important; }
  .mb-wide-4,
  .my-wide-4 {
    margin-bottom: 1.5rem !important; }
  .ml-wide-4,
  .mx-wide-4 {
    margin-left: 1.5rem !important; }
  .m-wide-5 {
    margin: 3rem !important; }
  .mt-wide-5,
  .my-wide-5 {
    margin-top: 3rem !important; }
  .mr-wide-5,
  .mx-wide-5 {
    margin-right: 3rem !important; }
  .mb-wide-5,
  .my-wide-5 {
    margin-bottom: 3rem !important; }
  .ml-wide-5,
  .mx-wide-5 {
    margin-left: 3rem !important; }
  .m-wide-6 {
    margin: 5rem !important; }
  .mt-wide-6,
  .my-wide-6 {
    margin-top: 5rem !important; }
  .mr-wide-6,
  .mx-wide-6 {
    margin-right: 5rem !important; }
  .mb-wide-6,
  .my-wide-6 {
    margin-bottom: 5rem !important; }
  .ml-wide-6,
  .mx-wide-6 {
    margin-left: 5rem !important; }
  .m-wide-7 {
    margin: 6rem !important; }
  .mt-wide-7,
  .my-wide-7 {
    margin-top: 6rem !important; }
  .mr-wide-7,
  .mx-wide-7 {
    margin-right: 6rem !important; }
  .mb-wide-7,
  .my-wide-7 {
    margin-bottom: 6rem !important; }
  .ml-wide-7,
  .mx-wide-7 {
    margin-left: 6rem !important; }
  .p-wide-0 {
    padding: 0 !important; }
  .pt-wide-0,
  .py-wide-0 {
    padding-top: 0 !important; }
  .pr-wide-0,
  .px-wide-0 {
    padding-right: 0 !important; }
  .pb-wide-0,
  .py-wide-0 {
    padding-bottom: 0 !important; }
  .pl-wide-0,
  .px-wide-0 {
    padding-left: 0 !important; }
  .p-wide-1 {
    padding: 0.25rem !important; }
  .pt-wide-1,
  .py-wide-1 {
    padding-top: 0.25rem !important; }
  .pr-wide-1,
  .px-wide-1 {
    padding-right: 0.25rem !important; }
  .pb-wide-1,
  .py-wide-1 {
    padding-bottom: 0.25rem !important; }
  .pl-wide-1,
  .px-wide-1 {
    padding-left: 0.25rem !important; }
  .p-wide-2 {
    padding: 0.5rem !important; }
  .pt-wide-2,
  .py-wide-2 {
    padding-top: 0.5rem !important; }
  .pr-wide-2,
  .px-wide-2 {
    padding-right: 0.5rem !important; }
  .pb-wide-2,
  .py-wide-2 {
    padding-bottom: 0.5rem !important; }
  .pl-wide-2,
  .px-wide-2 {
    padding-left: 0.5rem !important; }
  .p-wide-3 {
    padding: 1rem !important; }
  .pt-wide-3,
  .py-wide-3 {
    padding-top: 1rem !important; }
  .pr-wide-3,
  .px-wide-3 {
    padding-right: 1rem !important; }
  .pb-wide-3,
  .py-wide-3 {
    padding-bottom: 1rem !important; }
  .pl-wide-3,
  .px-wide-3 {
    padding-left: 1rem !important; }
  .p-wide-4 {
    padding: 1.5rem !important; }
  .pt-wide-4,
  .py-wide-4 {
    padding-top: 1.5rem !important; }
  .pr-wide-4,
  .px-wide-4 {
    padding-right: 1.5rem !important; }
  .pb-wide-4,
  .py-wide-4 {
    padding-bottom: 1.5rem !important; }
  .pl-wide-4,
  .px-wide-4 {
    padding-left: 1.5rem !important; }
  .p-wide-5 {
    padding: 3rem !important; }
  .pt-wide-5,
  .py-wide-5 {
    padding-top: 3rem !important; }
  .pr-wide-5,
  .px-wide-5 {
    padding-right: 3rem !important; }
  .pb-wide-5,
  .py-wide-5 {
    padding-bottom: 3rem !important; }
  .pl-wide-5,
  .px-wide-5 {
    padding-left: 3rem !important; }
  .p-wide-6 {
    padding: 5rem !important; }
  .pt-wide-6,
  .py-wide-6 {
    padding-top: 5rem !important; }
  .pr-wide-6,
  .px-wide-6 {
    padding-right: 5rem !important; }
  .pb-wide-6,
  .py-wide-6 {
    padding-bottom: 5rem !important; }
  .pl-wide-6,
  .px-wide-6 {
    padding-left: 5rem !important; }
  .p-wide-7 {
    padding: 6rem !important; }
  .pt-wide-7,
  .py-wide-7 {
    padding-top: 6rem !important; }
  .pr-wide-7,
  .px-wide-7 {
    padding-right: 6rem !important; }
  .pb-wide-7,
  .py-wide-7 {
    padding-bottom: 6rem !important; }
  .pl-wide-7,
  .px-wide-7 {
    padding-left: 6rem !important; }
  .m-wide-n1 {
    margin: -0.25rem !important; }
  .mt-wide-n1,
  .my-wide-n1 {
    margin-top: -0.25rem !important; }
  .mr-wide-n1,
  .mx-wide-n1 {
    margin-right: -0.25rem !important; }
  .mb-wide-n1,
  .my-wide-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-wide-n1,
  .mx-wide-n1 {
    margin-left: -0.25rem !important; }
  .m-wide-n2 {
    margin: -0.5rem !important; }
  .mt-wide-n2,
  .my-wide-n2 {
    margin-top: -0.5rem !important; }
  .mr-wide-n2,
  .mx-wide-n2 {
    margin-right: -0.5rem !important; }
  .mb-wide-n2,
  .my-wide-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-wide-n2,
  .mx-wide-n2 {
    margin-left: -0.5rem !important; }
  .m-wide-n3 {
    margin: -1rem !important; }
  .mt-wide-n3,
  .my-wide-n3 {
    margin-top: -1rem !important; }
  .mr-wide-n3,
  .mx-wide-n3 {
    margin-right: -1rem !important; }
  .mb-wide-n3,
  .my-wide-n3 {
    margin-bottom: -1rem !important; }
  .ml-wide-n3,
  .mx-wide-n3 {
    margin-left: -1rem !important; }
  .m-wide-n4 {
    margin: -1.5rem !important; }
  .mt-wide-n4,
  .my-wide-n4 {
    margin-top: -1.5rem !important; }
  .mr-wide-n4,
  .mx-wide-n4 {
    margin-right: -1.5rem !important; }
  .mb-wide-n4,
  .my-wide-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-wide-n4,
  .mx-wide-n4 {
    margin-left: -1.5rem !important; }
  .m-wide-n5 {
    margin: -3rem !important; }
  .mt-wide-n5,
  .my-wide-n5 {
    margin-top: -3rem !important; }
  .mr-wide-n5,
  .mx-wide-n5 {
    margin-right: -3rem !important; }
  .mb-wide-n5,
  .my-wide-n5 {
    margin-bottom: -3rem !important; }
  .ml-wide-n5,
  .mx-wide-n5 {
    margin-left: -3rem !important; }
  .m-wide-n6 {
    margin: -5rem !important; }
  .mt-wide-n6,
  .my-wide-n6 {
    margin-top: -5rem !important; }
  .mr-wide-n6,
  .mx-wide-n6 {
    margin-right: -5rem !important; }
  .mb-wide-n6,
  .my-wide-n6 {
    margin-bottom: -5rem !important; }
  .ml-wide-n6,
  .mx-wide-n6 {
    margin-left: -5rem !important; }
  .m-wide-n7 {
    margin: -6rem !important; }
  .mt-wide-n7,
  .my-wide-n7 {
    margin-top: -6rem !important; }
  .mr-wide-n7,
  .mx-wide-n7 {
    margin-right: -6rem !important; }
  .mb-wide-n7,
  .my-wide-n7 {
    margin-bottom: -6rem !important; }
  .ml-wide-n7,
  .mx-wide-n7 {
    margin-left: -6rem !important; }
  .m-wide-auto {
    margin: auto !important; }
  .mt-wide-auto,
  .my-wide-auto {
    margin-top: auto !important; }
  .mr-wide-auto,
  .mx-wide-auto {
    margin-right: auto !important; }
  .mb-wide-auto,
  .my-wide-auto {
    margin-bottom: auto !important; }
  .ml-wide-auto,
  .mx-wide-auto {
    margin-left: auto !important; } }

@media (min-width: 1600px) {
  .m-extra-wide-0 {
    margin: 0 !important; }
  .mt-extra-wide-0,
  .my-extra-wide-0 {
    margin-top: 0 !important; }
  .mr-extra-wide-0,
  .mx-extra-wide-0 {
    margin-right: 0 !important; }
  .mb-extra-wide-0,
  .my-extra-wide-0 {
    margin-bottom: 0 !important; }
  .ml-extra-wide-0,
  .mx-extra-wide-0 {
    margin-left: 0 !important; }
  .m-extra-wide-1 {
    margin: 0.25rem !important; }
  .mt-extra-wide-1,
  .my-extra-wide-1 {
    margin-top: 0.25rem !important; }
  .mr-extra-wide-1,
  .mx-extra-wide-1 {
    margin-right: 0.25rem !important; }
  .mb-extra-wide-1,
  .my-extra-wide-1 {
    margin-bottom: 0.25rem !important; }
  .ml-extra-wide-1,
  .mx-extra-wide-1 {
    margin-left: 0.25rem !important; }
  .m-extra-wide-2 {
    margin: 0.5rem !important; }
  .mt-extra-wide-2,
  .my-extra-wide-2 {
    margin-top: 0.5rem !important; }
  .mr-extra-wide-2,
  .mx-extra-wide-2 {
    margin-right: 0.5rem !important; }
  .mb-extra-wide-2,
  .my-extra-wide-2 {
    margin-bottom: 0.5rem !important; }
  .ml-extra-wide-2,
  .mx-extra-wide-2 {
    margin-left: 0.5rem !important; }
  .m-extra-wide-3 {
    margin: 1rem !important; }
  .mt-extra-wide-3,
  .my-extra-wide-3 {
    margin-top: 1rem !important; }
  .mr-extra-wide-3,
  .mx-extra-wide-3 {
    margin-right: 1rem !important; }
  .mb-extra-wide-3,
  .my-extra-wide-3 {
    margin-bottom: 1rem !important; }
  .ml-extra-wide-3,
  .mx-extra-wide-3 {
    margin-left: 1rem !important; }
  .m-extra-wide-4 {
    margin: 1.5rem !important; }
  .mt-extra-wide-4,
  .my-extra-wide-4 {
    margin-top: 1.5rem !important; }
  .mr-extra-wide-4,
  .mx-extra-wide-4 {
    margin-right: 1.5rem !important; }
  .mb-extra-wide-4,
  .my-extra-wide-4 {
    margin-bottom: 1.5rem !important; }
  .ml-extra-wide-4,
  .mx-extra-wide-4 {
    margin-left: 1.5rem !important; }
  .m-extra-wide-5 {
    margin: 3rem !important; }
  .mt-extra-wide-5,
  .my-extra-wide-5 {
    margin-top: 3rem !important; }
  .mr-extra-wide-5,
  .mx-extra-wide-5 {
    margin-right: 3rem !important; }
  .mb-extra-wide-5,
  .my-extra-wide-5 {
    margin-bottom: 3rem !important; }
  .ml-extra-wide-5,
  .mx-extra-wide-5 {
    margin-left: 3rem !important; }
  .m-extra-wide-6 {
    margin: 5rem !important; }
  .mt-extra-wide-6,
  .my-extra-wide-6 {
    margin-top: 5rem !important; }
  .mr-extra-wide-6,
  .mx-extra-wide-6 {
    margin-right: 5rem !important; }
  .mb-extra-wide-6,
  .my-extra-wide-6 {
    margin-bottom: 5rem !important; }
  .ml-extra-wide-6,
  .mx-extra-wide-6 {
    margin-left: 5rem !important; }
  .m-extra-wide-7 {
    margin: 6rem !important; }
  .mt-extra-wide-7,
  .my-extra-wide-7 {
    margin-top: 6rem !important; }
  .mr-extra-wide-7,
  .mx-extra-wide-7 {
    margin-right: 6rem !important; }
  .mb-extra-wide-7,
  .my-extra-wide-7 {
    margin-bottom: 6rem !important; }
  .ml-extra-wide-7,
  .mx-extra-wide-7 {
    margin-left: 6rem !important; }
  .p-extra-wide-0 {
    padding: 0 !important; }
  .pt-extra-wide-0,
  .py-extra-wide-0 {
    padding-top: 0 !important; }
  .pr-extra-wide-0,
  .px-extra-wide-0 {
    padding-right: 0 !important; }
  .pb-extra-wide-0,
  .py-extra-wide-0 {
    padding-bottom: 0 !important; }
  .pl-extra-wide-0,
  .px-extra-wide-0 {
    padding-left: 0 !important; }
  .p-extra-wide-1 {
    padding: 0.25rem !important; }
  .pt-extra-wide-1,
  .py-extra-wide-1 {
    padding-top: 0.25rem !important; }
  .pr-extra-wide-1,
  .px-extra-wide-1 {
    padding-right: 0.25rem !important; }
  .pb-extra-wide-1,
  .py-extra-wide-1 {
    padding-bottom: 0.25rem !important; }
  .pl-extra-wide-1,
  .px-extra-wide-1 {
    padding-left: 0.25rem !important; }
  .p-extra-wide-2 {
    padding: 0.5rem !important; }
  .pt-extra-wide-2,
  .py-extra-wide-2 {
    padding-top: 0.5rem !important; }
  .pr-extra-wide-2,
  .px-extra-wide-2 {
    padding-right: 0.5rem !important; }
  .pb-extra-wide-2,
  .py-extra-wide-2 {
    padding-bottom: 0.5rem !important; }
  .pl-extra-wide-2,
  .px-extra-wide-2 {
    padding-left: 0.5rem !important; }
  .p-extra-wide-3 {
    padding: 1rem !important; }
  .pt-extra-wide-3,
  .py-extra-wide-3 {
    padding-top: 1rem !important; }
  .pr-extra-wide-3,
  .px-extra-wide-3 {
    padding-right: 1rem !important; }
  .pb-extra-wide-3,
  .py-extra-wide-3 {
    padding-bottom: 1rem !important; }
  .pl-extra-wide-3,
  .px-extra-wide-3 {
    padding-left: 1rem !important; }
  .p-extra-wide-4 {
    padding: 1.5rem !important; }
  .pt-extra-wide-4,
  .py-extra-wide-4 {
    padding-top: 1.5rem !important; }
  .pr-extra-wide-4,
  .px-extra-wide-4 {
    padding-right: 1.5rem !important; }
  .pb-extra-wide-4,
  .py-extra-wide-4 {
    padding-bottom: 1.5rem !important; }
  .pl-extra-wide-4,
  .px-extra-wide-4 {
    padding-left: 1.5rem !important; }
  .p-extra-wide-5 {
    padding: 3rem !important; }
  .pt-extra-wide-5,
  .py-extra-wide-5 {
    padding-top: 3rem !important; }
  .pr-extra-wide-5,
  .px-extra-wide-5 {
    padding-right: 3rem !important; }
  .pb-extra-wide-5,
  .py-extra-wide-5 {
    padding-bottom: 3rem !important; }
  .pl-extra-wide-5,
  .px-extra-wide-5 {
    padding-left: 3rem !important; }
  .p-extra-wide-6 {
    padding: 5rem !important; }
  .pt-extra-wide-6,
  .py-extra-wide-6 {
    padding-top: 5rem !important; }
  .pr-extra-wide-6,
  .px-extra-wide-6 {
    padding-right: 5rem !important; }
  .pb-extra-wide-6,
  .py-extra-wide-6 {
    padding-bottom: 5rem !important; }
  .pl-extra-wide-6,
  .px-extra-wide-6 {
    padding-left: 5rem !important; }
  .p-extra-wide-7 {
    padding: 6rem !important; }
  .pt-extra-wide-7,
  .py-extra-wide-7 {
    padding-top: 6rem !important; }
  .pr-extra-wide-7,
  .px-extra-wide-7 {
    padding-right: 6rem !important; }
  .pb-extra-wide-7,
  .py-extra-wide-7 {
    padding-bottom: 6rem !important; }
  .pl-extra-wide-7,
  .px-extra-wide-7 {
    padding-left: 6rem !important; }
  .m-extra-wide-n1 {
    margin: -0.25rem !important; }
  .mt-extra-wide-n1,
  .my-extra-wide-n1 {
    margin-top: -0.25rem !important; }
  .mr-extra-wide-n1,
  .mx-extra-wide-n1 {
    margin-right: -0.25rem !important; }
  .mb-extra-wide-n1,
  .my-extra-wide-n1 {
    margin-bottom: -0.25rem !important; }
  .ml-extra-wide-n1,
  .mx-extra-wide-n1 {
    margin-left: -0.25rem !important; }
  .m-extra-wide-n2 {
    margin: -0.5rem !important; }
  .mt-extra-wide-n2,
  .my-extra-wide-n2 {
    margin-top: -0.5rem !important; }
  .mr-extra-wide-n2,
  .mx-extra-wide-n2 {
    margin-right: -0.5rem !important; }
  .mb-extra-wide-n2,
  .my-extra-wide-n2 {
    margin-bottom: -0.5rem !important; }
  .ml-extra-wide-n2,
  .mx-extra-wide-n2 {
    margin-left: -0.5rem !important; }
  .m-extra-wide-n3 {
    margin: -1rem !important; }
  .mt-extra-wide-n3,
  .my-extra-wide-n3 {
    margin-top: -1rem !important; }
  .mr-extra-wide-n3,
  .mx-extra-wide-n3 {
    margin-right: -1rem !important; }
  .mb-extra-wide-n3,
  .my-extra-wide-n3 {
    margin-bottom: -1rem !important; }
  .ml-extra-wide-n3,
  .mx-extra-wide-n3 {
    margin-left: -1rem !important; }
  .m-extra-wide-n4 {
    margin: -1.5rem !important; }
  .mt-extra-wide-n4,
  .my-extra-wide-n4 {
    margin-top: -1.5rem !important; }
  .mr-extra-wide-n4,
  .mx-extra-wide-n4 {
    margin-right: -1.5rem !important; }
  .mb-extra-wide-n4,
  .my-extra-wide-n4 {
    margin-bottom: -1.5rem !important; }
  .ml-extra-wide-n4,
  .mx-extra-wide-n4 {
    margin-left: -1.5rem !important; }
  .m-extra-wide-n5 {
    margin: -3rem !important; }
  .mt-extra-wide-n5,
  .my-extra-wide-n5 {
    margin-top: -3rem !important; }
  .mr-extra-wide-n5,
  .mx-extra-wide-n5 {
    margin-right: -3rem !important; }
  .mb-extra-wide-n5,
  .my-extra-wide-n5 {
    margin-bottom: -3rem !important; }
  .ml-extra-wide-n5,
  .mx-extra-wide-n5 {
    margin-left: -3rem !important; }
  .m-extra-wide-n6 {
    margin: -5rem !important; }
  .mt-extra-wide-n6,
  .my-extra-wide-n6 {
    margin-top: -5rem !important; }
  .mr-extra-wide-n6,
  .mx-extra-wide-n6 {
    margin-right: -5rem !important; }
  .mb-extra-wide-n6,
  .my-extra-wide-n6 {
    margin-bottom: -5rem !important; }
  .ml-extra-wide-n6,
  .mx-extra-wide-n6 {
    margin-left: -5rem !important; }
  .m-extra-wide-n7 {
    margin: -6rem !important; }
  .mt-extra-wide-n7,
  .my-extra-wide-n7 {
    margin-top: -6rem !important; }
  .mr-extra-wide-n7,
  .mx-extra-wide-n7 {
    margin-right: -6rem !important; }
  .mb-extra-wide-n7,
  .my-extra-wide-n7 {
    margin-bottom: -6rem !important; }
  .ml-extra-wide-n7,
  .mx-extra-wide-n7 {
    margin-left: -6rem !important; }
  .m-extra-wide-auto {
    margin: auto !important; }
  .mt-extra-wide-auto,
  .my-extra-wide-auto {
    margin-top: auto !important; }
  .mr-extra-wide-auto,
  .mx-extra-wide-auto {
    margin-right: auto !important; }
  .mb-extra-wide-auto,
  .my-extra-wide-auto {
    margin-bottom: auto !important; }
  .ml-extra-wide-auto,
  .mx-extra-wide-auto {
    margin-left: auto !important; } }

.no-hover-decoration:hover {
  text-decoration: none; }

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

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

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

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

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

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 768px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 1440px) {
  .d-wide-none {
    display: none !important; }
  .d-wide-inline {
    display: inline !important; }
  .d-wide-inline-block {
    display: inline-block !important; }
  .d-wide-block {
    display: block !important; }
  .d-wide-table {
    display: table !important; }
  .d-wide-table-row {
    display: table-row !important; }
  .d-wide-table-cell {
    display: table-cell !important; }
  .d-wide-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-wide-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media (min-width: 1600px) {
  .d-extra-wide-none {
    display: none !important; }
  .d-extra-wide-inline {
    display: inline !important; }
  .d-extra-wide-inline-block {
    display: inline-block !important; }
  .d-extra-wide-block {
    display: block !important; }
  .d-extra-wide-table {
    display: table !important; }
  .d-extra-wide-table-row {
    display: table-row !important; }
  .d-extra-wide-table-cell {
    display: table-cell !important; }
  .d-extra-wide-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-extra-wide-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important; } }

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important; }

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

.text-wrap {
  white-space: normal !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap; }

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

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

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

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

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important; }
  .text-xl-right {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

@media (min-width: 1440px) {
  .text-wide-left {
    text-align: left !important; }
  .text-wide-right {
    text-align: right !important; }
  .text-wide-center {
    text-align: center !important; } }

@media (min-width: 1600px) {
  .text-extra-wide-left {
    text-align: left !important; }
  .text-extra-wide-right {
    text-align: right !important; }
  .text-extra-wide-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-light {
  font-weight: 300 !important; }

.font-weight-lighter {
  font-weight: lighter !important; }

.font-weight-normal {
  font-weight: 400 !important; }

.font-weight-bold {
  font-weight: 700 !important; }

.font-weight-bolder {
  font-weight: bolder !important; }

.font-italic {
  font-style: italic !important; }

.text-white {
  color: #fff !important; }

.text-primary {
  color: #142747 !important; }

a.text-primary:focus,
a.text-primary:hover {
  color: #03060b !important; }

.text-secondary {
  color: #fff !important; }

a.text-secondary:focus,
a.text-secondary:hover {
  color: #d9d9d9 !important; }

.text-success {
  color: #28a745 !important; }

a.text-success:focus,
a.text-success:hover {
  color: #19692c !important; }

.text-info {
  color: #17a2b8 !important; }

a.text-info:focus,
a.text-info:hover {
  color: #0f6674 !important; }

.text-warning {
  color: #ffc107 !important; }

a.text-warning:focus,
a.text-warning:hover {
  color: #ba8b00 !important; }

.text-danger {
  color: #dc3545 !important; }

a.text-danger:focus,
a.text-danger:hover {
  color: #a71d2a !important; }

.text-light {
  color: #f7f5f2 !important; }

a.text-light:focus,
a.text-light:hover {
  color: #dad1c3 !important; }

.text-dark {
  color: #222 !important; }

a.text-dark:focus,
a.text-dark:hover {
  color: #000 !important; }

.text-gray {
  color: #423c3c !important; }

a.text-gray:focus,
a.text-gray:hover {
  color: #1a1818 !important; }

.text-light-gray {
  color: #5e6570 !important; }

a.text-light-gray:focus,
a.text-light-gray:hover {
  color: #3b3f46 !important; }

.text-body {
  color: #423c3c !important; }

.text-muted {
  color: #5e6570 !important; }

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.text-decoration-none {
  text-decoration: none !important; }

.text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important; }

.text-reset {
  color: inherit !important; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

.h-align {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.v-align {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }

.vh-align {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

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

.img-area {
  width: 50px; }

.ie11 .areas-wrapper .img-area {
  width: 100%;
  height: 66px; }

.header .icon {
  font-size: 35px; }

@media (min-width: 768px) {
  .header .icon {
    font-size: 40px; } }

.header .icon.icon-arrow-down {
  font-size: 8px;
  vertical-align: middle; }

.header .icon-area {
  font-size: 55px; }

.footer .icon {
  font-size: 40px; }

.h1,
h1 {
  font-size: 35px; }

.home-page .h2,
.home-page h2 {
  font-size: 35px; }

.home-page .h3,
.home-page h3 {
  font-size: 15px; }

@media (min-width: 1200px) {
  .home-page .h3,
  .home-page h3 {
    font-size: 24px; } }

.h4,
h4 {
  font-size: 13px; }

.text-small {
  font-size: 13px; }

.font-16 {
  font-size: 16px; }

.font-15 {
  font-size: 15px; }

.nav-link {
  font-size: 22px;
  font-weight: 700; }

@media (min-width: 1200px) {
  .nav-link {
    font-size: 13px;
    font-weight: 400; } }

.footer p {
  font-size: 12px; }

.carousel-caption .h1,
.carousel-caption .h2,
.carousel-caption .h3,
.carousel-caption .h4,
.carousel-caption .h5,
.carousel-caption .h6,
.carousel-caption h1,
.carousel-caption h2,
.carousel-caption h3,
.carousel-caption h4,
.carousel-caption h5,
.carousel-caption h6 {
  font-size: 24px; }

.contact-wrapper {
  font-size: 18px; }

.bg-primary {
  background-color: #0e8041 !important; }

a.bg-primary:focus,
a.bg-primary:hover,
button.bg-primary:focus,
button.bg-primary:hover {
  background-color: #084021 !important; }

.bg-secondary {
  background-color: #fff !important; }

a.bg-secondary:focus,
a.bg-secondary:hover,
button.bg-secondary:focus,
button.bg-secondary:hover {
  background-color: #8affbf !important; }

.bg-success {
  background-color: #28a745 !important; }

a.bg-success:focus,
a.bg-success:hover,
button.bg-success:focus,
button.bg-success:hover {
  background-color: #1e7e34 !important; }

.bg-info {
  background-color: #17a2b8 !important; }

a.bg-info:focus,
a.bg-info:hover,
button.bg-info:focus,
button.bg-info:hover {
  background-color: #117a8b !important; }

.bg-warning {
  background-color: #ffc107 !important; }

a.bg-warning:focus,
a.bg-warning:hover,
button.bg-warning:focus,
button.bg-warning:hover {
  background-color: #d39e00 !important; }

.bg-danger {
  background-color: #dc3545 !important; }

a.bg-danger:focus,
a.bg-danger:hover,
button.bg-danger:focus,
button.bg-danger:hover {
  background-color: #bd2130 !important; }

.bg-light {
  background-color: #f7f5f2 !important; }

a.bg-light:focus,
a.bg-light:hover,
button.bg-light:focus,
button.bg-light:hover {
  background-color: #e4ddd2 !important; }

.bg-dark {
  background-color: #222 !important; }

a.bg-dark:focus,
a.bg-dark:hover,
button.bg-dark:focus,
button.bg-dark:hover {
  background-color: #090909 !important; }

.bg-gray {
  background-color: #423c3c !important; }

a.bg-gray:focus,
a.bg-gray:hover,
button.bg-gray:focus,
button.bg-gray:hover {
  background-color: #272424 !important; }

.bg-light-gray {
  background-color: #5e6570 !important; }

a.bg-light-gray:focus,
a.bg-light-gray:hover,
button.bg-light-gray:focus,
button.bg-light-gray:hover {
  background-color: #474c54 !important; }

.bg-white {
  background-color: #fff !important; }

.bg-transparent {
  background-color: transparent !important; }

.border {
  border: 1px solid #dee2e6 !important; }

.border-top {
  border-top: 1px solid #dee2e6 !important; }

.border-right {
  border-right: 1px solid #dee2e6 !important; }

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important; }

.border-left {
  border-left: 1px solid #dee2e6 !important; }

@media (min-width: 1440px) {
  .px-wide-6 {
    padding-left: 5rem !important; }
  .pl-wide-6 {
    padding-left: 5rem !important; } }

.hide-overflow {
  overflow: hidden !important; }

ekokartaAppHeader {
  display: flex !important;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 !important;
  align-items: center; }
  ekokartaAppHeader a {
    color: #fff; }
  ekokartaAppHeader a:visited, ekokartaAppHeader a:active {
    color: #fff; }
  ekokartaAppHeader .app-title {
    font-size: 18px;
    font-weight: bold; }
    ekokartaAppHeader .app-title:hover {
      color: #fff; }
  ekokartaAppHeader .nav-toggler {
    width: 30px;
    height: 30px;
    position: relative;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: inline-block; }
    ekokartaAppHeader .nav-toggler span {
      display: block;
      position: absolute;
      height: 4px;
      width: 100%;
      background: #fff;
      border-radius: 9px;
      opacity: 1;
      left: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
      -webkit-transition: .25s ease-in-out;
      -o-transition: .25s ease-in-out;
      transition: .25s ease-in-out; }
      ekokartaAppHeader .nav-toggler span:nth-child(1) {
        top: 3px; }
      ekokartaAppHeader .nav-toggler span:nth-child(2), ekokartaAppHeader .nav-toggler span:nth-child(3) {
        top: 15px; }
      ekokartaAppHeader .nav-toggler span:nth-child(4) {
        top: 28px; }
    ekokartaAppHeader .nav-toggler.open span:nth-child(1) {
      top: 18px;
      width: 0%;
      left: 50%; }
    ekokartaAppHeader .nav-toggler.open span:nth-child(2) {
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg); }
    ekokartaAppHeader .nav-toggler.open span:nth-child(3) {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
    ekokartaAppHeader .nav-toggler.open span:nth-child(4) {
      top: 18px;
      width: 0%;
      left: 50%; }
  ekokartaAppHeader .nav .nav-link {
    text-transform: uppercase;
    padding: 0 1.5rem;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    height: 65px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer; }
    ekokartaAppHeader .nav .nav-link.active, ekokartaAppHeader .nav .nav-link:hover {
      color: #fff; }
    ekokartaAppHeader .nav .nav-link .gh-home-icon-arrow-down {
      font-size: 8px;
      vertical-align: middle; }
  ekokartaAppHeader .nav .themes-menu {
    position: absolute;
    background-color: #0e8041;
    width: 300px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 0 15px;
    -moz-transition: opacity 0.25s ease-in-out;
    -ms-transition: opacity 0.25s ease-in-out;
    -o-transition: opacity 0.25s ease-in-out;
    -webkit-transition: opacity 0.25s ease-in-out;
    transition: opacity 0.25s ease-in-out; }
    ekokartaAppHeader .nav .themes-menu.open {
      pointer-events: visible;
      opacity: 1; }
    ekokartaAppHeader .nav .themes-menu a {
      text-align: left;
      text-decoration: none;
      padding: 8px 20px;
      font-size: 13px;
      font-weight: bold;
      line-height: 15px;
      color: #fff;
      cursor: pointer; }
      ekokartaAppHeader .nav .themes-menu a:hover {
        background-color: #0b6634;
        color: #fff; }
      ekokartaAppHeader .nav .themes-menu a i {
        font-size: 38px;
        width: 40px; }
        ekokartaAppHeader .nav .themes-menu a i.gh-home-icon-land {
          font-size: 36px; }
        ekokartaAppHeader .nav .themes-menu a i.gh-home-icon-protection {
          font-size: 34px; }
        ekokartaAppHeader .nav .themes-menu a i.gh-home-icon-pollution {
          font-size: 48px; }
  ekokartaAppHeader .no-hover-decoration {
    text-decoration: none; }
  ekokartaAppHeader .list-unstyle {
    list-style: none;
    margin: 0;
    padding: 0; }
  ekokartaAppHeader .jezici {
    margin-left: auto !important; }
  ekokartaAppHeader .mob-lang {
    display: none; }
  @media (max-width: 1199px) {
    ekokartaAppHeader .jezici {
      margin-left: 0 !important; }
    ekokartaAppHeader .nav {
      background-color: #0e8041;
      position: absolute;
      top: 60px;
      right: 0;
      width: 75%;
      height: calc(100dvh - 60px);
      padding: 5rem 3rem;
      text-align: left;
      overflow-x: hidden;
      overflow-y: auto;
      opacity: 0;
      pointer-events: none;
      -moz-transition: opacity 0.25s ease-in-out;
      -ms-transition: opacity 0.25s ease-in-out;
      -o-transition: opacity 0.25s ease-in-out;
      -webkit-transition: opacity 0.25s ease-in-out;
      transition: opacity 0.25s ease-in-out; }
      ekokartaAppHeader .nav.open {
        opacity: 1;
        pointer-events: visible;
        display: block;
        padding-top: 0;
        position: absolute; }
      ekokartaAppHeader .nav .nav-link {
        font-size: 22px;
        font-weight: bold;
        text-transform: none;
        height: auto;
        display: block; }
      ekokartaAppHeader .nav .themes-menu {
        position: relative;
        opacity: 1;
        height: 0;
        width: 100%;
        padding: 0 1rem; }
        ekokartaAppHeader .nav .themes-menu.open {
          height: auto; } }
  @media (max-width: 768px) {
    ekokartaAppHeader .nav {
      width: 100%;
      padding: 3rem; }
      ekokartaAppHeader .nav ul {
        max-width: 305px; } }
  @media (max-width: 400px) {
    ekokartaAppHeader .nav .nav-link {
      font-size: 20px; } }
  @media (min-width: 576px) {
    ekokartaAppHeader .list-unstyle {
      border-top: 0; } }
  @media (max-width: 575px) {
    ekokartaAppHeader .nav {
      border-top: 0; } }
  @media (max-width: 1500px) {
    ekokartaAppHeader .nav-link {
      padding: 0 1rem; }
    ekokartaAppHeader .pl-xl-5, ekokartaAppHeader .px-xl-5 {
      padding-left: 1rem !important; } }
  @media (max-width: 1330px) {
    ekokartaAppHeader .nav-link {
      padding: 10px 0 !important; }
    ekokartaAppHeader .mob-lang {
      display: block; }
    ekokartaAppHeader .jezici {
      display: none !important; }
    ekokartaAppHeader .pl-xl-5, ekokartaAppHeader .px-xl-5 {
      padding-left: 0.5rem !important; } }

body {
  overflow: hidden; }

.app {
  min-height: calc(100dvh - 80px) !important; }

.app-header {
  height: 80px;
  position: relative;
  z-index: 6; }

.details {
  height: calc(100dvh - 80px) !important; }

.link__text {
  background-color: transparent !important;
  font-weight: bold !important;
  font-size: 22px;
  opacity: 1 !important;
  width: auto !important;
  padding: 0 24px 0 0 !important;
  border-right: 1px solid white; }

.clicable {
  cursor: pointer; }

.footer-map__item:hover {
  cursor: pointer; }

.menu__iconbox {
  height: calc(100dvh - 80px); }

.smiley-section__row1 {
  flex-shrink: 0;
  align-self: flex-start; }
  .smiley-section__row1 img {
    height: 104px; }

.smiley-section__status {
  padding: 4px 0 !important; }

.smiley-section__date {
  padding-bottom: 4px; }

.full-height {
  height: calc(100dvh - 80px) !important; }

.ground-detail-height {
  height: calc(100dvh - 220px) !important; }

.element-table2__row .element-table2__row-item1 {
  flex-basis: 55%;
  max-width: 55%;
  display: flex; }
  .element-table2__row .element-table2__row-item1 .recommendationsTooltip {
    display: inline-block; }
    .element-table2__row .element-table2__row-item1 .recommendationsTooltip .tooltip {
      font-size: 9.5px !important;
      top: 10px; }
    .element-table2__row .element-table2__row-item1 .recommendationsTooltip .tooltiptext {
      width: 150px;
      background-color: #323235;
      opacity: 1;
      top: -20px;
      font-size: 12px;
      left: 110%; }
      .element-table2__row .element-table2__row-item1 .recommendationsTooltip .tooltiptext::after {
        display: none; }

.element-table2__row .element-table2__row-item2 {
  flex-basis: 30%;
  max-width: 30%;
  display: flex;
  justify-content: flex-end; }

.chart-info-box {
  top: 0 !important; }

groundDetails .groundElement .element-table2__row .element-table2__row-item1 {
  flex-basis: 100%;
  max-width: 100%; }

groundDetails .location-details__box .graph-box__graph .myChartOuter {
  margin-right: 0px; }
  groundDetails .location-details__box .graph-box__graph .myChartOuter .chart-info-box {
    right: 0px; }
  groundDetails .location-details__box .graph-box__graph .myChartOuter .myChartDiv {
    height: 275px; }

.fa-minus-square-o,
.fa-plus-square-o {
  font-size: 18px; }

.info {
  z-index: 1;
  position: absolute;
  top: 0;
  width: auto !important; }

.location-header {
  background-color: unset !important; }
  .location-header .location-title__icon {
    align-self: flex-start;
    margin: -8px 16px 0; }

.location-title__subtitle {
  margin: 8px 0 0 !important; }

.location-header .fa-info-circle {
  width: 32px;
  height: 32px; }

.location-details__pagination {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: white; }
  .location-details__pagination.first .pagination__prev:hover {
    color: inherit;
    cursor: default; }
  .location-details__pagination.last .pagination__next:hover {
    color: inherit;
    cursor: default; }

.section-title .date {
  font-size: 0.75em;
  color: #8c96a9; }

.air-polution-details-open,
.ground-polution-details-open {
  cursor: pointer;
  padding: 10px;
  margin-top: 2px; }

.air-polution-details-close,
.ground-polution-details-close {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0; }
  .air-polution-details-close p,
  .ground-polution-details-close p {
    display: inline-block;
    margin: unset;
    letter-spacing: 0.5px;
    font-weight: 600; }

.air-polution-details-title,
.ground-polution-details-title {
  padding: 0px 0px 0px 16px;
  font-weight: 600; }

.menu__legend {
  overflow: hidden; }

.legend-list {
  padding-bottom: 20px; }

.remove-top-padding {
  padding-top: 0 !important; }

.link-1 {
  width: 144px !important; }

.link-2 {
  width: 85px !important;
  margin-left: 20px; }

.link-3 {
  width: 110px !important; }

.link-4 {
  max-width: fit-content; }

.menu__bottom {
  width: 32rem !important;
  margin-left: 0 !important;
  display: flex !important;
  flex: 1 !important; }
  .menu__bottom .link__image {
    width: 156px; }

stationDetails .item__compound {
  width: calc(100% - 92px); }

stationDetails .item__text .admin-input__text {
  margin-bottom: 5px;
  margin-left: 5px; }

stationDetails .item__text .item__text--admin {
  flex-basis: 95px; }

stationDetails .alarm {
  color: #F00; }

stationDetails .hide-approve {
  display: none; }

stationDetails .admin-input {
  display: block; }

stationDetails .admin-input__input {
  float: left;
  width: calc(100% - 100px); }

stationDetails .admin-input__input-field {
  padding: 4px 4px 4px 16px; }

stationDetails .admin__sidebar {
  flex: 0 0 550px; }

.location-details {
  height: auto !important;
  box-shadow: none !important; }

.legend-list__item .color {
  align-self: center; }

.legend-circle {
  width: 16px !important;
  height: 16px !important; }

.legend-list__item .textbox .state {
  font-size: 14px !important; }

.simplebar-track {
  display: none !important; }

.water-list__name,
.temp-list__name {
  color: #8c96a9 !important; }

.water-list__value,
.temp-list__value {
  color: unset !important; }

pollendetails {
  /*   .pelud-list__item {
    padding: 8px 0px;
  } */ }
  pollendetails .circle--green {
    background-color: #4caf50; }
  pollendetails .circle--yellow {
    background-color: #f8e71c; }
  pollendetails .circle--orange {
    background-color: #f5a623; }
  pollendetails .circle--red {
    background-color: #f4332e; }
  pollendetails .circle--grey {
    background-color: #9b9b9b; }
  pollendetails .circle--light {
    background-color: #cfe3f0; }
  pollendetails .green {
    color: #4caf50; }
  pollendetails .yellow {
    color: #f8e71c; }
  pollendetails .orange {
    color: #f5a623; }
  pollendetails .red {
    color: #f4332e; }
  pollendetails .grey {
    color: #9b9b9b; }
  pollendetails .light {
    color: #cfe3f0; }
  pollendetails .tabs {
    border-bottom: unset; }
  pollendetails .location-details__content {
    height: auto !important; }
    pollendetails .location-details__content .location-details__box .notifications-list__box .notification-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid gainsboro;
      padding: 12px 0;
      cursor: pointer; }
      pollendetails .location-details__content .location-details__box .notifications-list__box .notification-item .notification-item__title {
        padding-left: 16px; }
        pollendetails .location-details__content .location-details__box .notifications-list__box .notification-item .notification-item__title p {
          color: black;
          margin: unset;
          margin-bottom: 8px;
          font-weight: 600;
          letter-spacing: 0.5px; }
        pollendetails .location-details__content .location-details__box .notifications-list__box .notification-item .notification-item__title small {
          color: #99A0B0; }
      pollendetails .location-details__content .location-details__box .notifications-list__box .notification-item .notification-item__icon {
        margin-right: 32px; }

tablePolutionGraph .graph-box .graph-box__graph .selectbox {
  margin: 10px; }

tablePolutionGraph .graph-box .graph-box__graph .tablebox {
  user-select: none; }

airdetails .small-text {
  font-size: 11px; }

airdetails .element-row__col3 div {
  text-align: right; }

tablegraph .tablebox__head-item1 {
  flex-basis: 40%; }

tablegraph .tablebox__head-item2,
tablegraph .tablebox__head-item3 {
  justify-content: flex-start;
  flex-basis: 30%; }

tablegraph .tablebox__row-item1 {
  flex-basis: 40%; }

tablegraph .tablebox__row-item2,
tablegraph .tablebox__row-item3 {
  justify-content: flex-start;
  flex-basis: 30%; }

tablegraph .tablebox__pagination.block {
  opacity: 0.25; }

tablegraph .tablebox__pagination.block:hover {
  cursor: default; }

tablegraph .tablebox__pagination-info {
  text-align: center;
  font-size: 0.75em;
  color: #8c96a9; }

tablegraph .graph-box__graph .selectbox {
  margin: 10px; }

.element-table:last-child {
  padding-bottom: 75px; }

.graph-box__graph.is-visable {
  padding-bottom: 75px; }

dashboard .console__box {
  height: 100%;
  min-height: 200px; }

dashboard .console__notification-action .block {
  opacity: 0.25; }

dashboard .console__notification-action .block:hover {
  cursor: default;
  color: inherit; }

notification .notification-toggle-button {
  width: fit-content;
  background-color: unset;
  color: #37434E;
  border-radius: 8px;
  border-color: gainsboro;
  padding: 4px 8px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 8px; }
  notification .notification-toggle-button.is-active {
    background-color: #0e8041;
    border-color: #0e8041;
    color: white; }

notification .infobox__content {
  width: 100%; }

notification .infobox__pagination {
  opacity: 1; }
  notification .infobox__pagination.block {
    opacity: 0.25; }
  notification .infobox__pagination.block span {
    cursor: default !important; }

notification .date {
  font-size: 10px;
  color: #8c96a9; }

.no-data-to-show {
  text-align: center;
  padding-top: 50px;
  color: #8c96a9; }

.admin-menu__list li {
  padding: 0;
  margin: 8px 0 0 0; }

.location-details__img-meteo img {
  width: 100% !important; }

meteoclimemodal .social-media-container {
  margin-top: 50px;
  margin-bottom: 25px; }

layerTree .layer-tree-wrapper {
  width: calc(100% - 64px); }

filtertoolbar {
  height: 0px; }

.OverrideIdentifyComponentButton {
  display: none; }

infoModal .info__content {
  text-align: center; }

infoModal .logo-grad-zagreb {
  height: 100px; }

infoModal .logo-zavod {
  height: 105px;
  margin: 0px 30px 0 33px; }

infoModal .logo-zdravi-grad {
  height: 105px; }

scaleLine .scaleLine {
  background: none; }
  scaleLine .scaleLine .scaleLine-inner {
    color: #525455;
    border: 2px solid #8a9a9a;
    border-top: none; }

tablegraph select::-ms-expand {
  display: none; }

.copyright {
  position: absolute;
  bottom: 3px;
  padding-right: 8px;
  white-space: nowrap; }
  .copyright a {
    color: #808080;
    font-size: 12px;
    border: 1px solid #e9ebef;
    background: rgba(235, 237, 238, 0.8);
    font-weight: 600;
    padding: 2px 8px; }

.who-notification-header {
  display: flex;
  justify-content: space-between; }

.who-notification-container {
  width: 70%;
  background-color: white;
  margin: 0 auto;
  padding: 32px; }

.obavijesti {
  margin: 26px 16px 0 0 !important; }

.obavijesti__table {
  width: 100%;
  background-color: white;
  border: none; }

.obavijesti__table th {
  padding: 8px;
  display: flex;
  align-items: center;
  cursor: pointer; }

.obavijesti__table td {
  padding: 16px 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: default; }

.obavijesti__table th,
.obavijesti__table td {
  border: none; }

.obavijesti__head {
  color: #8c96a9;
  font-weight: 600;
  border-bottom: 1px solid #e9ebef;
  display: flex;
  align-items: center;
  font-size: 14px;
  background-color: #f3f4f5; }

.obavijesti__table-row {
  font-weight: 600;
  border-bottom: 1px solid #e9ebef;
  display: flex;
  align-items: center; }

.obavijesti__head-item1 {
  flex-basis: 10% !important; }

.obavijesti__row-item1 {
  flex-basis: 10% !important; }

.obavijesti__head-item2 {
  flex-basis: 30% !important; }

.obavijesti__row-item2 {
  flex-basis: 30% !important; }

.obavijesti__head-item3 {
  flex-basis: 25% !important; }

.obavijesti__head-item4 {
  flex-basis: 20% !important; }

.obavijesti__row-item3 {
  flex-basis: 25% !important; }

.obavijesti__row-item4 {
  flex-basis: 20% !important; }

.obavijesti__head-item5 {
  flex-basis: 15% !important; }

.obavijesti__row-item5 {
  text-align: center;
  flex-basis: 15% !important;
  max-width: 15% !important; }

.obavijesti__row-item5 i:hover,
.notification-details-close:hover {
  font-size: 20px;
  transition: 0.3s;
  opacity: 0.5; }

.notification-details-container {
  padding: 22px 10px 0 0; }

.notification-details-header {
  border-bottom: 1px solid #e9ebef; }

.notifications-icon {
  display: inline-block !important; }

.notification-details-close {
  cursor: pointer;
  display: inline-block;
  color: red;
  padding-left: 7px; }

.notification-details-close p {
  display: inline-block; }

.notification-details-value-text {
  text-align: justify; }

.notification-details-info {
  padding: 10px 14px;
  padding-top: unset; }
  .notification-details-info p {
    font-size: 14px;
    color: #0e8041;
    letter-spacing: 0.5px;
    font-weight: 600; }
  .notification-details-info small {
    font-size: 12px;
    color: #99A0B0;
    letter-spacing: 0.5px; }

.notification-details-content {
  display: flex;
  padding: 6px 14px;
  font-size: 14px; }
  .notification-details-content.flex-column {
    flex-direction: column; }

.notification-details-name {
  font-weight: bold; }

.notification-details-attribute {
  flex: 1;
  font-weight: bold;
  color: black; }

.notification-details-value {
  flex: 3;
  color: #5A5A5A; }
  .notification-details-value .inner-html-value ul li {
    margin-bottom: 16px; }

.green-button {
  width: fit-content;
  display: block;
  background-color: #C6F5B5;
  color: black;
  padding: 8px;
  margin-top: 16px;
  border-radius: 8px;
  font-weight: bold; }

.red-button {
  width: fit-content;
  display: block;
  background-color: #FFC1C2;
  color: black;
  padding: 8px;
  margin-top: 16px;
  border-radius: 8px;
  font-weight: bold; }

.yellow-button {
  width: fit-content;
  display: block;
  background-color: #FBDBB1;
  color: black;
  padding: 8px;
  margin-top: 16px;
  border-radius: 8px;
  font-weight: bold; }

.env-label {
  right: 0;
  position: absolute;
  width: 60px;
  top: 0; }

.fa-bell {
  font-size: 22px; }

.simplebar-scroll-content {
  padding-right: 17px !important;
  margin-bottom: -36px !important; }

.simplebar-content {
  padding-bottom: 0 !important;
  margin-right: -17px !important;
  overflow-x: hidden !important; }

.simplebar-scroll-content {
  margin-bottom: 0 !important; }

.who-subtitle {
  text-decoration: underline; }

.first-column {
  /* flex: 2; */ }

.second-column {
  /*   flex: 3;
  display: flex; */
  justify-content: center; }

.third-column {
  flex: 5;
  display: flex; }

.pelud-row .third-column {
  padding-left: 40px; }
  .pelud-row .third-column .state {
    text-align: center; }
  .pelud-row .third-column .btn-group {
    gap: 1px;
    padding-left: 10px;
    margin-top: 16px; }
  .pelud-row .third-column .btn-group__button {
    padding: 2px;
    border: 1px solid #d4d4d4; }
  .pelud-row .third-column .btn-group__button:last-child {
    border-right: 1px solid #d4d4d4; }

.fourth-column,
.fifth-column {
  flex: 1;
  text-align: right;
  cursor: pointer; }

.shake {
  animation: shake 1.5s infinite;
  transform-origin: center bottom; }

.red-text {
  color: red; }

.center {
  margin: 0 auto; }

.is-red {
  background-color: red !important; }

@keyframes shake {
  0% {
    -webkit-transform: rotate(-15deg);
    transform: rotate(-15deg); }
  4% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg); }
  8%,
  24% {
    -webkit-transform: rotate(-18deg);
    transform: rotate(-18deg); }
  12%,
  28% {
    -webkit-transform: rotate(18deg);
    transform: rotate(18deg); }
  16% {
    -webkit-transform: rotate(-22deg);
    transform: rotate(-22deg); }
  20% {
    -webkit-transform: rotate(22deg);
    transform: rotate(22deg); }
  32% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg); }
  36% {
    -webkit-transform: rotate(12deg);
    transform: rotate(12deg); }
  40%,
  to {
    -webkit-transform: rotate(0deg);
    /* transform:rotate(0deg); */ } }

.menu-line {
  display: none; }

.info-mob {
  align-self: center;
  margin-bottom: 0 !important; }

.tabs__item:last-child {
  padding: 0 0 0 8px; }

@media only screen and (max-width: 46.8em) {
  overridepermalinkform .social-media-container {
    width: 95% !important; }
  .link__text {
    border-right: none; }
  .informacije table,
  .informacije tr,
  .informacije td {
    display: block;
    width: 100%; }
  .informacije tr {
    margin-bottom: 16px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px; }
  .informacije td {
    padding: 2px 0; }
  /* prvi stupac = naslov */
  .informacije td.black {
    font-weight: bold;
    margin-bottom: 4px; }
  /* link u novi red */
  .informacije td:last-child {
    margin-top: 4px; }
  infomodal .social-media-container {
    width: 95% !important; }
  infomodal .wizard {
    display: block; }
    infomodal .wizard .social-media {
      height: 80vh !important; }
  infomodal .steps {
    flex-direction: row;
    width: 100%;
    align-items: center;
    overflow: scroll; }
  infomodal .step {
    border-radius: 50px;
    padding: 6px 12px;
    white-space: nowrap; }
  infomodal .step i {
    padding-right: 0 !important; }
  infomodal .social-media {
    height: 90vh;
    padding: 0; }
    infomodal .social-media .social-media-content {
      border: none;
      padding: 0 5px; }
  .mob-logo {
    width: 230px; }
  .menu-line {
    display: block; }
  .menu .menu__box {
    width: 295px !important; }
  .menu__box .tabs--centered {
    justify-content: space-evenly; }
    .menu__box .tabs--centered .tabs__item .tab {
      padding: unset !important;
      padding-bottom: 8px !important; }
  airdetails .tabs, meteodetails .tabs {
    display: flex;
    justify-content: space-evenly;
    font-size: 14px !important; }
    airdetails .tabs .tabs__item, meteodetails .tabs .tabs__item {
      padding: unset; }
      airdetails .tabs .tabs__item .tab, meteodetails .tabs .tabs__item .tab {
        padding: unset !important;
        padding-bottom: 8px !important; }
  filtertoolbar {
    width: 0 !important; }
  termsAlert .social-media-container {
    width: 100% !important; }
  .timeline-container {
    display: none !important; }
  .model-item {
    top: 63px !important;
    right: -93px !important; }
  .home-page .h2,
  .home-page h2 {
    font-size: 18px; }
  .menu__bottom,
  .carousel-caption {
    display: none !important; }
  .details {
    right: 1px;
    height: calc(100% - 160px) !important; }
  .red-text {
    padding-bottom: 65px !important; }
  .details__box .location-details {
    overflow: auto; }
  .details .details__icons {
    display: flex !important;
    position: relative;
    height: calc(100vh - 120px); }
    .details .details__icons .copyright {
      bottom: 0;
      padding-right: 0;
      white-space: nowrap; } }
