/**
 *
 * 	Animations CSS -
 *
 * 	Generate default classes for CSS3 Animations.
 * 	Gera classes padrões de animações CSS 3.
 *
 * 	@author Lenon Azzi
 * 	@version 1.0
 *
 * 	@copyright Copyright (c) 2016, AGÊNCIA GH - http://agenciagh.com.br/
 * 
 */

.top-to-fade {
	opacity: 0;
	-webkit-transform: translate3d(0, -70px, 0px);
	transform: translate3d(0, -70px, 0px);
    -webkit-transform-origin: left top 0;
            transform-origin: left top 0;
    -webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    -webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
	will-change: transform, opacity;
}

.top-to-fade-anim {
	opacity: 1;
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

.right-to {
	-webkit-transform: translate3d(200%, 0, 0px);
	transform: translate3d(200%, 0, 0px);
    -webkit-transform-origin: left top 0;
            transform-origin: left top 0;
    -webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
	will-change: transform;
}

.right-to-anim {
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

.right-to-fade {
	opacity: 0;
	-webkit-transform: translate3d(70px, 0, 0px);
	transform: translate3d(70px, 0, 0px);
    -webkit-transform-origin: left top 0;
            transform-origin: left top 0;
    -webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    -webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
	will-change: transform, opacity;
}

.right-to-fade-anim {
	opacity: 1;
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}



.bottom-to-fade {
	opacity: 0;
	-webkit-transform: translate3d(0, 70px, 0px);
	transform: translate3d(0, 70px, 0px);
    -webkit-transform-origin: left top 0;
            transform-origin: left top 0;
    -webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    -webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    -webkit-transition-delay: .3s, .3s;
            transition-delay: .3s, .3s;
	will-change: transform, opacity;
}

.bottom-to-fade-anim {
	opacity: 1;
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

.left-to {
	-webkit-transform: translate3d(-200%, 0, 0px);
	transform: translate3d(-200%, 0, 0px);
    -webkit-transform-origin: left top 0;
            transform-origin: left top 0;
    -webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    -webkit-transition: -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1);
    -webkit-transition-delay: .3s;
            transition-delay: .3s;
	will-change: transform;
}

.left-to-anim {
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

.left-to-fade {
	opacity: 0;
	-webkit-transform: translate3d(-70px, 0, 0px);
	transform: translate3d(-70px, 0, 0px);
    -webkit-transform-origin: left top 0;
            transform-origin: left top 0;
    -webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    -webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
	will-change: transform, opacity;
}

.left-to-fade-anim {
	opacity: 1;
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

.center-to-fade {
	opacity: 0;
	-webkit-transform: scale(2,2);
	transform: scale(2,2);
    -webkit-transform-origin: center center 0;
            transform-origin: center center 0;
    -webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    -webkit-transition: opacity .5s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: opacity .5s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity .5s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity .5s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 1s cubic-bezier(0.19, 1, 0.22, 1) .3s;
	will-change: transform, opacity;
}

.center-to-fade-anim {
	opacity: 1;
	-webkit-transform: scale(1,1);
	transform: scale(1,1);
}

.quina-right-bottom-fade {
	opacity: 0;
	-webkit-transform: translate3d(120px, 120px, 0px);
	transform: translate3d(120px, 120px, 0px);
    -webkit-transform-origin: left top 0;
            transform-origin: left top 0;
    -webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    -webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    -webkit-transition-delay: .3s, .3s;
            transition-delay: .3s, .3s;
	will-change: transform, opacity;
}

.quina-right-bottom-anim {
	opacity: 1;
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}
.quina-right-top-fade {
	opacity: 0;
	-webkit-transform: translate3d(120px, -120px, 0px);
	transform: translate3d(120px, -120px, 0px);
    -webkit-transform-origin: left top 0;
            transform-origin: left top 0;
    -webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    -webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    -webkit-transition-delay: .3s, .3s;
            transition-delay: .3s, .3s;
	will-change: transform, opacity;
}

.quina-right-top-anim {
	opacity: 1;
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

.quina-left-top-fade{
	opacity: 0;
	-webkit-transform: translate3d(-120px, -120px, 0px);
	transform: translate3d(-120px, -120px, 0px);
    -webkit-transform-origin: left top 0;
            transform-origin: left top 0;
    -webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    -webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
	will-change: transform, opacity;
}

.quina-left-top-anim {
	opacity: 1;
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

.quina-left-bottom-fade{
	opacity: 0;
	-webkit-transform: translate3d(120px, 120px, 0px);
	transform: translate3d(120px, 120px, 0px);
    -webkit-transform-origin: left top 0;
            transform-origin: left top 0;
    -webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
    -webkit-transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s, opacity 1s cubic-bezier(0.19, 1, 0.22, 1) .3s, -webkit-transform 2s cubic-bezier(0.19, 1, 0.22, 1) .3s;
    -webkit-transition-delay: .3s, .3s;
            transition-delay: .3s, .3s;
	will-change: transform, opacity;
}

.quina-left-bottom-anim {
	opacity: 1;
	-webkit-transform: translate3d(0px, 0px, 0px);
	transform: translate3d(0px, 0px, 0px);
}

/* UPCOMING ANIMATIONS */@charset "UTF-8";
/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

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

.container {
  width: 100%;
  padding-right: 8px;
  padding-left: 8px;
  margin-right: auto;
  margin-left: auto;
  max-width: 90%;
}
@media (min-width: 425px) {
  .container {
    max-width: 400px;
  }
}
@media (min-width: 580px) {
  .container {
    max-width: 560px;
  }
}
@media (min-width: 740px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 960px) {
  .container {
    max-width: 900px;
  }
}
@media (min-width: 1120px) {
  .container {
    max-width: 1020px;
  }
}
@media (min-width: 1320px) {
  .container {
    max-width: 1248px;
  }
}
@media (min-width: 1520px) {
  .container {
    max-width: 1440px;
  }
}
@media (min-width: 1700px) {
  .container {
    max-width: 1640px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 425px) {
  .col-xxs {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

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

  .col-xxs-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xxs-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-xxs-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xxs-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xxs-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xxs-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-xxs-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xxs-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xxs-0 {
    margin-left: 0;
  }

  .offset-xxs-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xxs-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xxs-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xxs-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xxs-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xxs-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xxs-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xxs-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 580px) {
  .col-xs {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

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

  .col-xs-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xs-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-xs-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xs-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xs-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xs-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-xs-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xs-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xs-0 {
    margin-left: 0;
  }

  .offset-xs-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xs-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xs-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xs-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xs-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xs-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xs-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xs-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 740px) {
  .col-ss {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

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

  .col-ss-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-ss-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-ss-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-ss-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-ss-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-ss-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-ss-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-ss-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-ss-0 {
    margin-left: 0;
  }

  .offset-ss-1 {
    margin-left: 8.3333333333%;
  }

  .offset-ss-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-ss-4 {
    margin-left: 33.3333333333%;
  }

  .offset-ss-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-ss-7 {
    margin-left: 58.3333333333%;
  }

  .offset-ss-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-ss-10 {
    margin-left: 83.3333333333%;
  }

  .offset-ss-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 960px) {
  .col-sm {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

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

  .col-sm-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-sm-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-sm-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-sm-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }

  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }

  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }

  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }

  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1120px) {
  .col-md {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

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

  .col-md-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-md-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-md-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-md-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.3333333333%;
  }

  .offset-md-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.3333333333%;
  }

  .offset-md-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.3333333333%;
  }

  .offset-md-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.3333333333%;
  }

  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1320px) {
  .col-lg {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

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

  .col-lg-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-lg-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-lg-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-lg-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }

  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }

  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }

  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }

  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1520px) {
  .col-xl {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

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

  .col-xl-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-xl-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xl-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-xl-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xl-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xl-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xl-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xl-11 {
    margin-left: 91.6666666667%;
  }
}
@media (min-width: 1700px) {
  .col-xgl {
    flex-basis: 0;
    -webkit-box-flex: 1;
            flex-grow: 1;
    max-width: 100%;
  }

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

  .col-xgl-1 {
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }

  .col-xgl-2 {
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }

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

  .col-xgl-4 {
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }

  .col-xgl-5 {
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }

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

  .col-xgl-7 {
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }

  .col-xgl-8 {
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }

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

  .col-xgl-10 {
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }

  .col-xgl-11 {
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .offset-xgl-0 {
    margin-left: 0;
  }

  .offset-xgl-1 {
    margin-left: 8.3333333333%;
  }

  .offset-xgl-2 {
    margin-left: 16.6666666667%;
  }

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

  .offset-xgl-4 {
    margin-left: 33.3333333333%;
  }

  .offset-xgl-5 {
    margin-left: 41.6666666667%;
  }

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

  .offset-xgl-7 {
    margin-left: 58.3333333333%;
  }

  .offset-xgl-8 {
    margin-left: 66.6666666667%;
  }

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

  .offset-xgl-10 {
    margin-left: 83.3333333333%;
  }

  .offset-xgl-11 {
    margin-left: 91.6666666667%;
  }
}
.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: flex !important;
}

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

@media (min-width: 425px) {
  .d-xxs-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-xxs-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 580px) {
  .d-xs-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-xs-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 740px) {
  .d-ss-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-ss-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 960px) {
  .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: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1120px) {
  .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: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1320px) {
  .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: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1520px) {
  .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: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1700px) {
  .d-xgl-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-xgl-inline-flex {
    display: -webkit-inline-box !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: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
          flex-direction: row !important;
}

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

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

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

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

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

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

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

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

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

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

.justify-content-around {
  justify-content: space-around !important;
}

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

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

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

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

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

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

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

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

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

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 425px) {
  .flex-xxs-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-xxs-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-xxs-start {
    align-content: flex-start !important;
  }

  .align-content-xxs-end {
    align-content: flex-end !important;
  }

  .align-content-xxs-center {
    align-content: center !important;
  }

  .align-content-xxs-between {
    align-content: space-between !important;
  }

  .align-content-xxs-around {
    align-content: space-around !important;
  }

  .align-content-xxs-stretch {
    align-content: stretch !important;
  }

  .align-self-xxs-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xxs-center {
    align-self: center !important;
  }

  .align-self-xxs-baseline {
    align-self: baseline !important;
  }

  .align-self-xxs-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 580px) {
  .flex-xs-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-xs-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-xs-start {
    align-content: flex-start !important;
  }

  .align-content-xs-end {
    align-content: flex-end !important;
  }

  .align-content-xs-center {
    align-content: center !important;
  }

  .align-content-xs-between {
    align-content: space-between !important;
  }

  .align-content-xs-around {
    align-content: space-around !important;
  }

  .align-content-xs-stretch {
    align-content: stretch !important;
  }

  .align-self-xs-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xs-center {
    align-self: center !important;
  }

  .align-self-xs-baseline {
    align-self: baseline !important;
  }

  .align-self-xs-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 740px) {
  .flex-ss-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-ss-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-ss-start {
    align-content: flex-start !important;
  }

  .align-content-ss-end {
    align-content: flex-end !important;
  }

  .align-content-ss-center {
    align-content: center !important;
  }

  .align-content-ss-between {
    align-content: space-between !important;
  }

  .align-content-ss-around {
    align-content: space-around !important;
  }

  .align-content-ss-stretch {
    align-content: stretch !important;
  }

  .align-self-ss-auto {
    align-self: auto !important;
  }

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

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

  .align-self-ss-center {
    align-self: center !important;
  }

  .align-self-ss-baseline {
    align-self: baseline !important;
  }

  .align-self-ss-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 960px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

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

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

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1120px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-md-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

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

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

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1320px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

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

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

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1520px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1700px) {
  .flex-xgl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-xgl-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-xgl-start {
    align-content: flex-start !important;
  }

  .align-content-xgl-end {
    align-content: flex-end !important;
  }

  .align-content-xgl-center {
    align-content: center !important;
  }

  .align-content-xgl-between {
    align-content: space-between !important;
  }

  .align-content-xgl-around {
    align-content: space-around !important;
  }

  .align-content-xgl-stretch {
    align-content: stretch !important;
  }

  .align-self-xgl-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xgl-center {
    align-self: center !important;
  }

  .align-self-xgl-baseline {
    align-self: baseline !important;
  }

  .align-self-xgl-stretch {
    align-self: stretch !important;
  }
}
.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !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;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #BE9434 !important;
}

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

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

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

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

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

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

.rounded {
  border-radius: 0.25rem !important;
}

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
}

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.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: flex !important;
}

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

@media (min-width: 425px) {
  .d-xxs-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-xxs-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 580px) {
  .d-xs-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-xs-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 740px) {
  .d-ss-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-ss-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 960px) {
  .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: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1120px) {
  .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: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1320px) {
  .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: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1520px) {
  .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: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1700px) {
  .d-xgl-none {
    display: none !important;
  }

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

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

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

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

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

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

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

  .d-xgl-inline-flex {
    display: -webkit-inline-box !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: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: inline-flex !important;
  }
}
.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.embed-responsive::before {
  display: block;
  content: "";
}
.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.8571428571%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

.justify-content-around {
  justify-content: space-around !important;
}

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

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

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

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

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

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

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

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

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  align-self: auto !important;
}

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

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

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

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  align-self: stretch !important;
}

@media (min-width: 425px) {
  .flex-xxs-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-xxs-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-xxs-start {
    align-content: flex-start !important;
  }

  .align-content-xxs-end {
    align-content: flex-end !important;
  }

  .align-content-xxs-center {
    align-content: center !important;
  }

  .align-content-xxs-between {
    align-content: space-between !important;
  }

  .align-content-xxs-around {
    align-content: space-around !important;
  }

  .align-content-xxs-stretch {
    align-content: stretch !important;
  }

  .align-self-xxs-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xxs-center {
    align-self: center !important;
  }

  .align-self-xxs-baseline {
    align-self: baseline !important;
  }

  .align-self-xxs-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 580px) {
  .flex-xs-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-xs-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-xs-start {
    align-content: flex-start !important;
  }

  .align-content-xs-end {
    align-content: flex-end !important;
  }

  .align-content-xs-center {
    align-content: center !important;
  }

  .align-content-xs-between {
    align-content: space-between !important;
  }

  .align-content-xs-around {
    align-content: space-around !important;
  }

  .align-content-xs-stretch {
    align-content: stretch !important;
  }

  .align-self-xs-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xs-center {
    align-self: center !important;
  }

  .align-self-xs-baseline {
    align-self: baseline !important;
  }

  .align-self-xs-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 740px) {
  .flex-ss-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-ss-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-ss-start {
    align-content: flex-start !important;
  }

  .align-content-ss-end {
    align-content: flex-end !important;
  }

  .align-content-ss-center {
    align-content: center !important;
  }

  .align-content-ss-between {
    align-content: space-between !important;
  }

  .align-content-ss-around {
    align-content: space-around !important;
  }

  .align-content-ss-stretch {
    align-content: stretch !important;
  }

  .align-self-ss-auto {
    align-self: auto !important;
  }

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

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

  .align-self-ss-center {
    align-self: center !important;
  }

  .align-self-ss-baseline {
    align-self: baseline !important;
  }

  .align-self-ss-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 960px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-sm-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-sm-start {
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    align-content: center !important;
  }

  .align-content-sm-between {
    align-content: space-between !important;
  }

  .align-content-sm-around {
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    align-self: auto !important;
  }

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

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

  .align-self-sm-center {
    align-self: center !important;
  }

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1120px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-md-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-md-start {
    align-content: flex-start !important;
  }

  .align-content-md-end {
    align-content: flex-end !important;
  }

  .align-content-md-center {
    align-content: center !important;
  }

  .align-content-md-between {
    align-content: space-between !important;
  }

  .align-content-md-around {
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    align-content: stretch !important;
  }

  .align-self-md-auto {
    align-self: auto !important;
  }

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

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

  .align-self-md-center {
    align-self: center !important;
  }

  .align-self-md-baseline {
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1320px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-lg-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-lg-start {
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    align-content: center !important;
  }

  .align-content-lg-between {
    align-content: space-between !important;
  }

  .align-content-lg-around {
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    align-self: auto !important;
  }

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

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

  .align-self-lg-center {
    align-self: center !important;
  }

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1520px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-xl-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }
}
@media (min-width: 1700px) {
  .flex-xgl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
            flex-direction: row !important;
  }

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

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

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

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

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

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

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

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

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

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

  .justify-content-xgl-around {
    justify-content: space-around !important;
  }

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

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

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

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

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

  .align-content-xgl-start {
    align-content: flex-start !important;
  }

  .align-content-xgl-end {
    align-content: flex-end !important;
  }

  .align-content-xgl-center {
    align-content: center !important;
  }

  .align-content-xgl-between {
    align-content: space-between !important;
  }

  .align-content-xgl-around {
    align-content: space-around !important;
  }

  .align-content-xgl-stretch {
    align-content: stretch !important;
  }

  .align-self-xgl-auto {
    align-self: auto !important;
  }

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

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

  .align-self-xgl-center {
    align-self: center !important;
  }

  .align-self-xgl-baseline {
    align-self: baseline !important;
  }

  .align-self-xgl-stretch {
    align-self: stretch !important;
  }
}
.float-left {
  float: left !important;
}

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

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

@media (min-width: 425px) {
  .float-xxs-left {
    float: left !important;
  }

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

  .float-xxs-none {
    float: none !important;
  }
}
@media (min-width: 580px) {
  .float-xs-left {
    float: left !important;
  }

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

  .float-xs-none {
    float: none !important;
  }
}
@media (min-width: 740px) {
  .float-ss-left {
    float: left !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .float-xgl-none {
    float: none !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;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
  -webkit-clip-path: none;
          clip-path: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 425px) {
  .m-xxs-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .ml-xxs-auto,
.mx-xxs-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 580px) {
  .m-xs-0 {
    margin: 0 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .mr-xs-5,
.mx-xs-5 {
    margin-right: 3rem !important;
  }

  .mb-xs-5,
.my-xs-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xs-5,
.mx-xs-5 {
    margin-left: 3rem !important;
  }

  .p-xs-0 {
    padding: 0 !important;
  }

  .pt-xs-0,
.py-xs-0 {
    padding-top: 0 !important;
  }

  .pr-xs-0,
.px-xs-0 {
    padding-right: 0 !important;
  }

  .pb-xs-0,
.py-xs-0 {
    padding-bottom: 0 !important;
  }

  .pl-xs-0,
.px-xs-0 {
    padding-left: 0 !important;
  }

  .p-xs-1 {
    padding: 0.25rem !important;
  }

  .pt-xs-1,
.py-xs-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xs-1,
.px-xs-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xs-1,
.py-xs-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xs-1,
.px-xs-1 {
    padding-left: 0.25rem !important;
  }

  .p-xs-2 {
    padding: 0.5rem !important;
  }

  .pt-xs-2,
.py-xs-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xs-2,
.px-xs-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xs-2,
.py-xs-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xs-2,
.px-xs-2 {
    padding-left: 0.5rem !important;
  }

  .p-xs-3 {
    padding: 1rem !important;
  }

  .pt-xs-3,
.py-xs-3 {
    padding-top: 1rem !important;
  }

  .pr-xs-3,
.px-xs-3 {
    padding-right: 1rem !important;
  }

  .pb-xs-3,
.py-xs-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xs-3,
.px-xs-3 {
    padding-left: 1rem !important;
  }

  .p-xs-4 {
    padding: 1.5rem !important;
  }

  .pt-xs-4,
.py-xs-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xs-4,
.px-xs-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xs-4,
.py-xs-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xs-4,
.px-xs-4 {
    padding-left: 1.5rem !important;
  }

  .p-xs-5 {
    padding: 3rem !important;
  }

  .pt-xs-5,
.py-xs-5 {
    padding-top: 3rem !important;
  }

  .pr-xs-5,
.px-xs-5 {
    padding-right: 3rem !important;
  }

  .pb-xs-5,
.py-xs-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xs-5,
.px-xs-5 {
    padding-left: 3rem !important;
  }

  .m-xs-auto {
    margin: auto !important;
  }

  .mt-xs-auto,
.my-xs-auto {
    margin-top: auto !important;
  }

  .mr-xs-auto,
.mx-xs-auto {
    margin-right: auto !important;
  }

  .mb-xs-auto,
.my-xs-auto {
    margin-bottom: auto !important;
  }

  .ml-xs-auto,
.mx-xs-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 740px) {
  .m-ss-0 {
    margin: 0 !important;
  }

  .mt-ss-0,
.my-ss-0 {
    margin-top: 0 !important;
  }

  .mr-ss-0,
.mx-ss-0 {
    margin-right: 0 !important;
  }

  .mb-ss-0,
.my-ss-0 {
    margin-bottom: 0 !important;
  }

  .ml-ss-0,
.mx-ss-0 {
    margin-left: 0 !important;
  }

  .m-ss-1 {
    margin: 0.25rem !important;
  }

  .mt-ss-1,
.my-ss-1 {
    margin-top: 0.25rem !important;
  }

  .mr-ss-1,
.mx-ss-1 {
    margin-right: 0.25rem !important;
  }

  .mb-ss-1,
.my-ss-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-ss-1,
.mx-ss-1 {
    margin-left: 0.25rem !important;
  }

  .m-ss-2 {
    margin: 0.5rem !important;
  }

  .mt-ss-2,
.my-ss-2 {
    margin-top: 0.5rem !important;
  }

  .mr-ss-2,
.mx-ss-2 {
    margin-right: 0.5rem !important;
  }

  .mb-ss-2,
.my-ss-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-ss-2,
.mx-ss-2 {
    margin-left: 0.5rem !important;
  }

  .m-ss-3 {
    margin: 1rem !important;
  }

  .mt-ss-3,
.my-ss-3 {
    margin-top: 1rem !important;
  }

  .mr-ss-3,
.mx-ss-3 {
    margin-right: 1rem !important;
  }

  .mb-ss-3,
.my-ss-3 {
    margin-bottom: 1rem !important;
  }

  .ml-ss-3,
.mx-ss-3 {
    margin-left: 1rem !important;
  }

  .m-ss-4 {
    margin: 1.5rem !important;
  }

  .mt-ss-4,
.my-ss-4 {
    margin-top: 1.5rem !important;
  }

  .mr-ss-4,
.mx-ss-4 {
    margin-right: 1.5rem !important;
  }

  .mb-ss-4,
.my-ss-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-ss-4,
.mx-ss-4 {
    margin-left: 1.5rem !important;
  }

  .m-ss-5 {
    margin: 3rem !important;
  }

  .mt-ss-5,
.my-ss-5 {
    margin-top: 3rem !important;
  }

  .mr-ss-5,
.mx-ss-5 {
    margin-right: 3rem !important;
  }

  .mb-ss-5,
.my-ss-5 {
    margin-bottom: 3rem !important;
  }

  .ml-ss-5,
.mx-ss-5 {
    margin-left: 3rem !important;
  }

  .p-ss-0 {
    padding: 0 !important;
  }

  .pt-ss-0,
.py-ss-0 {
    padding-top: 0 !important;
  }

  .pr-ss-0,
.px-ss-0 {
    padding-right: 0 !important;
  }

  .pb-ss-0,
.py-ss-0 {
    padding-bottom: 0 !important;
  }

  .pl-ss-0,
.px-ss-0 {
    padding-left: 0 !important;
  }

  .p-ss-1 {
    padding: 0.25rem !important;
  }

  .pt-ss-1,
.py-ss-1 {
    padding-top: 0.25rem !important;
  }

  .pr-ss-1,
.px-ss-1 {
    padding-right: 0.25rem !important;
  }

  .pb-ss-1,
.py-ss-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-ss-1,
.px-ss-1 {
    padding-left: 0.25rem !important;
  }

  .p-ss-2 {
    padding: 0.5rem !important;
  }

  .pt-ss-2,
.py-ss-2 {
    padding-top: 0.5rem !important;
  }

  .pr-ss-2,
.px-ss-2 {
    padding-right: 0.5rem !important;
  }

  .pb-ss-2,
.py-ss-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-ss-2,
.px-ss-2 {
    padding-left: 0.5rem !important;
  }

  .p-ss-3 {
    padding: 1rem !important;
  }

  .pt-ss-3,
.py-ss-3 {
    padding-top: 1rem !important;
  }

  .pr-ss-3,
.px-ss-3 {
    padding-right: 1rem !important;
  }

  .pb-ss-3,
.py-ss-3 {
    padding-bottom: 1rem !important;
  }

  .pl-ss-3,
.px-ss-3 {
    padding-left: 1rem !important;
  }

  .p-ss-4 {
    padding: 1.5rem !important;
  }

  .pt-ss-4,
.py-ss-4 {
    padding-top: 1.5rem !important;
  }

  .pr-ss-4,
.px-ss-4 {
    padding-right: 1.5rem !important;
  }

  .pb-ss-4,
.py-ss-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-ss-4,
.px-ss-4 {
    padding-left: 1.5rem !important;
  }

  .p-ss-5 {
    padding: 3rem !important;
  }

  .pt-ss-5,
.py-ss-5 {
    padding-top: 3rem !important;
  }

  .pr-ss-5,
.px-ss-5 {
    padding-right: 3rem !important;
  }

  .pb-ss-5,
.py-ss-5 {
    padding-bottom: 3rem !important;
  }

  .pl-ss-5,
.px-ss-5 {
    padding-left: 3rem !important;
  }

  .m-ss-auto {
    margin: auto !important;
  }

  .mt-ss-auto,
.my-ss-auto {
    margin-top: auto !important;
  }

  .mr-ss-auto,
.mx-ss-auto {
    margin-right: auto !important;
  }

  .mb-ss-auto,
.my-ss-auto {
    margin-bottom: auto !important;
  }

  .ml-ss-auto,
.mx-ss-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 960px) {
  .m-sm-0 {
    margin: 0 !important;
  }

  .mt-sm-0,
.my-sm-0 {
    margin-top: 0 !important;
  }

  .mr-sm-0,
.mx-sm-0 {
    margin-right: 0 !important;
  }

  .mb-sm-0,
.my-sm-0 {
    margin-bottom: 0 !important;
  }

  .ml-sm-0,
.mx-sm-0 {
    margin-left: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .mt-sm-1,
.my-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mr-sm-1,
.mx-sm-1 {
    margin-right: 0.25rem !important;
  }

  .mb-sm-1,
.my-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-sm-1,
.mx-sm-1 {
    margin-left: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .mt-sm-2,
.my-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mr-sm-2,
.mx-sm-2 {
    margin-right: 0.5rem !important;
  }

  .mb-sm-2,
.my-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-sm-2,
.mx-sm-2 {
    margin-left: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .mt-sm-3,
.my-sm-3 {
    margin-top: 1rem !important;
  }

  .mr-sm-3,
.mx-sm-3 {
    margin-right: 1rem !important;
  }

  .mb-sm-3,
.my-sm-3 {
    margin-bottom: 1rem !important;
  }

  .ml-sm-3,
.mx-sm-3 {
    margin-left: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .mt-sm-4,
.my-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mr-sm-4,
.mx-sm-4 {
    margin-right: 1.5rem !important;
  }

  .mb-sm-4,
.my-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-sm-4,
.mx-sm-4 {
    margin-left: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .mt-sm-5,
.my-sm-5 {
    margin-top: 3rem !important;
  }

  .mr-sm-5,
.mx-sm-5 {
    margin-right: 3rem !important;
  }

  .mb-sm-5,
.my-sm-5 {
    margin-bottom: 3rem !important;
  }

  .ml-sm-5,
.mx-sm-5 {
    margin-left: 3rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .pt-sm-0,
.py-sm-0 {
    padding-top: 0 !important;
  }

  .pr-sm-0,
.px-sm-0 {
    padding-right: 0 !important;
  }

  .pb-sm-0,
.py-sm-0 {
    padding-bottom: 0 !important;
  }

  .pl-sm-0,
.px-sm-0 {
    padding-left: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .pt-sm-1,
.py-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pr-sm-1,
.px-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pb-sm-1,
.py-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-sm-1,
.px-sm-1 {
    padding-left: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .pt-sm-2,
.py-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pr-sm-2,
.px-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pb-sm-2,
.py-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-sm-2,
.px-sm-2 {
    padding-left: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .pt-sm-3,
.py-sm-3 {
    padding-top: 1rem !important;
  }

  .pr-sm-3,
.px-sm-3 {
    padding-right: 1rem !important;
  }

  .pb-sm-3,
.py-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pl-sm-3,
.px-sm-3 {
    padding-left: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .pt-sm-4,
.py-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pr-sm-4,
.px-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pb-sm-4,
.py-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-sm-4,
.px-sm-4 {
    padding-left: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .pt-sm-5,
.py-sm-5 {
    padding-top: 3rem !important;
  }

  .pr-sm-5,
.px-sm-5 {
    padding-right: 3rem !important;
  }

  .pb-sm-5,
.py-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pl-sm-5,
.px-sm-5 {
    padding-left: 3rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mt-sm-auto,
.my-sm-auto {
    margin-top: auto !important;
  }

  .mr-sm-auto,
.mx-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-auto,
.my-sm-auto {
    margin-bottom: auto !important;
  }

  .ml-sm-auto,
.mx-sm-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1120px) {
  .m-md-0 {
    margin: 0 !important;
  }

  .mt-md-0,
.my-md-0 {
    margin-top: 0 !important;
  }

  .mr-md-0,
.mx-md-0 {
    margin-right: 0 !important;
  }

  .mb-md-0,
.my-md-0 {
    margin-bottom: 0 !important;
  }

  .ml-md-0,
.mx-md-0 {
    margin-left: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .mt-md-1,
.my-md-1 {
    margin-top: 0.25rem !important;
  }

  .mr-md-1,
.mx-md-1 {
    margin-right: 0.25rem !important;
  }

  .mb-md-1,
.my-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-md-1,
.mx-md-1 {
    margin-left: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .mt-md-2,
.my-md-2 {
    margin-top: 0.5rem !important;
  }

  .mr-md-2,
.mx-md-2 {
    margin-right: 0.5rem !important;
  }

  .mb-md-2,
.my-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-md-2,
.mx-md-2 {
    margin-left: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .mt-md-3,
.my-md-3 {
    margin-top: 1rem !important;
  }

  .mr-md-3,
.mx-md-3 {
    margin-right: 1rem !important;
  }

  .mb-md-3,
.my-md-3 {
    margin-bottom: 1rem !important;
  }

  .ml-md-3,
.mx-md-3 {
    margin-left: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .mt-md-4,
.my-md-4 {
    margin-top: 1.5rem !important;
  }

  .mr-md-4,
.mx-md-4 {
    margin-right: 1.5rem !important;
  }

  .mb-md-4,
.my-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-md-4,
.mx-md-4 {
    margin-left: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .mt-md-5,
.my-md-5 {
    margin-top: 3rem !important;
  }

  .mr-md-5,
.mx-md-5 {
    margin-right: 3rem !important;
  }

  .mb-md-5,
.my-md-5 {
    margin-bottom: 3rem !important;
  }

  .ml-md-5,
.mx-md-5 {
    margin-left: 3rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .pt-md-0,
.py-md-0 {
    padding-top: 0 !important;
  }

  .pr-md-0,
.px-md-0 {
    padding-right: 0 !important;
  }

  .pb-md-0,
.py-md-0 {
    padding-bottom: 0 !important;
  }

  .pl-md-0,
.px-md-0 {
    padding-left: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .pt-md-1,
.py-md-1 {
    padding-top: 0.25rem !important;
  }

  .pr-md-1,
.px-md-1 {
    padding-right: 0.25rem !important;
  }

  .pb-md-1,
.py-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-md-1,
.px-md-1 {
    padding-left: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .pt-md-2,
.py-md-2 {
    padding-top: 0.5rem !important;
  }

  .pr-md-2,
.px-md-2 {
    padding-right: 0.5rem !important;
  }

  .pb-md-2,
.py-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-md-2,
.px-md-2 {
    padding-left: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .pt-md-3,
.py-md-3 {
    padding-top: 1rem !important;
  }

  .pr-md-3,
.px-md-3 {
    padding-right: 1rem !important;
  }

  .pb-md-3,
.py-md-3 {
    padding-bottom: 1rem !important;
  }

  .pl-md-3,
.px-md-3 {
    padding-left: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .pt-md-4,
.py-md-4 {
    padding-top: 1.5rem !important;
  }

  .pr-md-4,
.px-md-4 {
    padding-right: 1.5rem !important;
  }

  .pb-md-4,
.py-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-md-4,
.px-md-4 {
    padding-left: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .pt-md-5,
.py-md-5 {
    padding-top: 3rem !important;
  }

  .pr-md-5,
.px-md-5 {
    padding-right: 3rem !important;
  }

  .pb-md-5,
.py-md-5 {
    padding-bottom: 3rem !important;
  }

  .pl-md-5,
.px-md-5 {
    padding-left: 3rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mt-md-auto,
.my-md-auto {
    margin-top: auto !important;
  }

  .mr-md-auto,
.mx-md-auto {
    margin-right: auto !important;
  }

  .mb-md-auto,
.my-md-auto {
    margin-bottom: auto !important;
  }

  .ml-md-auto,
.mx-md-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1320px) {
  .m-lg-0 {
    margin: 0 !important;
  }

  .mt-lg-0,
.my-lg-0 {
    margin-top: 0 !important;
  }

  .mr-lg-0,
.mx-lg-0 {
    margin-right: 0 !important;
  }

  .mb-lg-0,
.my-lg-0 {
    margin-bottom: 0 !important;
  }

  .ml-lg-0,
.mx-lg-0 {
    margin-left: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .mt-lg-1,
.my-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mr-lg-1,
.mx-lg-1 {
    margin-right: 0.25rem !important;
  }

  .mb-lg-1,
.my-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-lg-1,
.mx-lg-1 {
    margin-left: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .mt-lg-2,
.my-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mr-lg-2,
.mx-lg-2 {
    margin-right: 0.5rem !important;
  }

  .mb-lg-2,
.my-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-lg-2,
.mx-lg-2 {
    margin-left: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .mt-lg-3,
.my-lg-3 {
    margin-top: 1rem !important;
  }

  .mr-lg-3,
.mx-lg-3 {
    margin-right: 1rem !important;
  }

  .mb-lg-3,
.my-lg-3 {
    margin-bottom: 1rem !important;
  }

  .ml-lg-3,
.mx-lg-3 {
    margin-left: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .mt-lg-4,
.my-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mr-lg-4,
.mx-lg-4 {
    margin-right: 1.5rem !important;
  }

  .mb-lg-4,
.my-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-lg-4,
.mx-lg-4 {
    margin-left: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .mt-lg-5,
.my-lg-5 {
    margin-top: 3rem !important;
  }

  .mr-lg-5,
.mx-lg-5 {
    margin-right: 3rem !important;
  }

  .mb-lg-5,
.my-lg-5 {
    margin-bottom: 3rem !important;
  }

  .ml-lg-5,
.mx-lg-5 {
    margin-left: 3rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .pt-lg-0,
.py-lg-0 {
    padding-top: 0 !important;
  }

  .pr-lg-0,
.px-lg-0 {
    padding-right: 0 !important;
  }

  .pb-lg-0,
.py-lg-0 {
    padding-bottom: 0 !important;
  }

  .pl-lg-0,
.px-lg-0 {
    padding-left: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .pt-lg-1,
.py-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pr-lg-1,
.px-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pb-lg-1,
.py-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-lg-1,
.px-lg-1 {
    padding-left: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .pt-lg-2,
.py-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pr-lg-2,
.px-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pb-lg-2,
.py-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-lg-2,
.px-lg-2 {
    padding-left: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .pt-lg-3,
.py-lg-3 {
    padding-top: 1rem !important;
  }

  .pr-lg-3,
.px-lg-3 {
    padding-right: 1rem !important;
  }

  .pb-lg-3,
.py-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pl-lg-3,
.px-lg-3 {
    padding-left: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .pt-lg-4,
.py-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pr-lg-4,
.px-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pb-lg-4,
.py-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-lg-4,
.px-lg-4 {
    padding-left: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .pt-lg-5,
.py-lg-5 {
    padding-top: 3rem !important;
  }

  .pr-lg-5,
.px-lg-5 {
    padding-right: 3rem !important;
  }

  .pb-lg-5,
.py-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pl-lg-5,
.px-lg-5 {
    padding-left: 3rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mt-lg-auto,
.my-lg-auto {
    margin-top: auto !important;
  }

  .mr-lg-auto,
.mx-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-auto,
.my-lg-auto {
    margin-bottom: auto !important;
  }

  .ml-lg-auto,
.mx-lg-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1520px) {
  .m-xl-0 {
    margin: 0 !important;
  }

  .mt-xl-0,
.my-xl-0 {
    margin-top: 0 !important;
  }

  .mr-xl-0,
.mx-xl-0 {
    margin-right: 0 !important;
  }

  .mb-xl-0,
.my-xl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xl-0,
.mx-xl-0 {
    margin-left: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .mt-xl-1,
.my-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xl-1,
.mx-xl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xl-1,
.my-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xl-1,
.mx-xl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .mt-xl-2,
.my-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xl-2,
.mx-xl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xl-2,
.my-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xl-2,
.mx-xl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .mt-xl-3,
.my-xl-3 {
    margin-top: 1rem !important;
  }

  .mr-xl-3,
.mx-xl-3 {
    margin-right: 1rem !important;
  }

  .mb-xl-3,
.my-xl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xl-3,
.mx-xl-3 {
    margin-left: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .mt-xl-4,
.my-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xl-4,
.mx-xl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xl-4,
.my-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xl-4,
.mx-xl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .mt-xl-5,
.my-xl-5 {
    margin-top: 3rem !important;
  }

  .mr-xl-5,
.mx-xl-5 {
    margin-right: 3rem !important;
  }

  .mb-xl-5,
.my-xl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xl-5,
.mx-xl-5 {
    margin-left: 3rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .pt-xl-0,
.py-xl-0 {
    padding-top: 0 !important;
  }

  .pr-xl-0,
.px-xl-0 {
    padding-right: 0 !important;
  }

  .pb-xl-0,
.py-xl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xl-0,
.px-xl-0 {
    padding-left: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .pt-xl-1,
.py-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xl-1,
.px-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xl-1,
.py-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xl-1,
.px-xl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .pt-xl-2,
.py-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xl-2,
.px-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xl-2,
.py-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xl-2,
.px-xl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .pt-xl-3,
.py-xl-3 {
    padding-top: 1rem !important;
  }

  .pr-xl-3,
.px-xl-3 {
    padding-right: 1rem !important;
  }

  .pb-xl-3,
.py-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xl-3,
.px-xl-3 {
    padding-left: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .pt-xl-4,
.py-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xl-4,
.px-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xl-4,
.py-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xl-4,
.px-xl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .pt-xl-5,
.py-xl-5 {
    padding-top: 3rem !important;
  }

  .pr-xl-5,
.px-xl-5 {
    padding-right: 3rem !important;
  }

  .pb-xl-5,
.py-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xl-5,
.px-xl-5 {
    padding-left: 3rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mt-xl-auto,
.my-xl-auto {
    margin-top: auto !important;
  }

  .mr-xl-auto,
.mx-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-auto,
.my-xl-auto {
    margin-bottom: auto !important;
  }

  .ml-xl-auto,
.mx-xl-auto {
    margin-left: auto !important;
  }
}
@media (min-width: 1700px) {
  .m-xgl-0 {
    margin: 0 !important;
  }

  .mt-xgl-0,
.my-xgl-0 {
    margin-top: 0 !important;
  }

  .mr-xgl-0,
.mx-xgl-0 {
    margin-right: 0 !important;
  }

  .mb-xgl-0,
.my-xgl-0 {
    margin-bottom: 0 !important;
  }

  .ml-xgl-0,
.mx-xgl-0 {
    margin-left: 0 !important;
  }

  .m-xgl-1 {
    margin: 0.25rem !important;
  }

  .mt-xgl-1,
.my-xgl-1 {
    margin-top: 0.25rem !important;
  }

  .mr-xgl-1,
.mx-xgl-1 {
    margin-right: 0.25rem !important;
  }

  .mb-xgl-1,
.my-xgl-1 {
    margin-bottom: 0.25rem !important;
  }

  .ml-xgl-1,
.mx-xgl-1 {
    margin-left: 0.25rem !important;
  }

  .m-xgl-2 {
    margin: 0.5rem !important;
  }

  .mt-xgl-2,
.my-xgl-2 {
    margin-top: 0.5rem !important;
  }

  .mr-xgl-2,
.mx-xgl-2 {
    margin-right: 0.5rem !important;
  }

  .mb-xgl-2,
.my-xgl-2 {
    margin-bottom: 0.5rem !important;
  }

  .ml-xgl-2,
.mx-xgl-2 {
    margin-left: 0.5rem !important;
  }

  .m-xgl-3 {
    margin: 1rem !important;
  }

  .mt-xgl-3,
.my-xgl-3 {
    margin-top: 1rem !important;
  }

  .mr-xgl-3,
.mx-xgl-3 {
    margin-right: 1rem !important;
  }

  .mb-xgl-3,
.my-xgl-3 {
    margin-bottom: 1rem !important;
  }

  .ml-xgl-3,
.mx-xgl-3 {
    margin-left: 1rem !important;
  }

  .m-xgl-4 {
    margin: 1.5rem !important;
  }

  .mt-xgl-4,
.my-xgl-4 {
    margin-top: 1.5rem !important;
  }

  .mr-xgl-4,
.mx-xgl-4 {
    margin-right: 1.5rem !important;
  }

  .mb-xgl-4,
.my-xgl-4 {
    margin-bottom: 1.5rem !important;
  }

  .ml-xgl-4,
.mx-xgl-4 {
    margin-left: 1.5rem !important;
  }

  .m-xgl-5 {
    margin: 3rem !important;
  }

  .mt-xgl-5,
.my-xgl-5 {
    margin-top: 3rem !important;
  }

  .mr-xgl-5,
.mx-xgl-5 {
    margin-right: 3rem !important;
  }

  .mb-xgl-5,
.my-xgl-5 {
    margin-bottom: 3rem !important;
  }

  .ml-xgl-5,
.mx-xgl-5 {
    margin-left: 3rem !important;
  }

  .p-xgl-0 {
    padding: 0 !important;
  }

  .pt-xgl-0,
.py-xgl-0 {
    padding-top: 0 !important;
  }

  .pr-xgl-0,
.px-xgl-0 {
    padding-right: 0 !important;
  }

  .pb-xgl-0,
.py-xgl-0 {
    padding-bottom: 0 !important;
  }

  .pl-xgl-0,
.px-xgl-0 {
    padding-left: 0 !important;
  }

  .p-xgl-1 {
    padding: 0.25rem !important;
  }

  .pt-xgl-1,
.py-xgl-1 {
    padding-top: 0.25rem !important;
  }

  .pr-xgl-1,
.px-xgl-1 {
    padding-right: 0.25rem !important;
  }

  .pb-xgl-1,
.py-xgl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pl-xgl-1,
.px-xgl-1 {
    padding-left: 0.25rem !important;
  }

  .p-xgl-2 {
    padding: 0.5rem !important;
  }

  .pt-xgl-2,
.py-xgl-2 {
    padding-top: 0.5rem !important;
  }

  .pr-xgl-2,
.px-xgl-2 {
    padding-right: 0.5rem !important;
  }

  .pb-xgl-2,
.py-xgl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pl-xgl-2,
.px-xgl-2 {
    padding-left: 0.5rem !important;
  }

  .p-xgl-3 {
    padding: 1rem !important;
  }

  .pt-xgl-3,
.py-xgl-3 {
    padding-top: 1rem !important;
  }

  .pr-xgl-3,
.px-xgl-3 {
    padding-right: 1rem !important;
  }

  .pb-xgl-3,
.py-xgl-3 {
    padding-bottom: 1rem !important;
  }

  .pl-xgl-3,
.px-xgl-3 {
    padding-left: 1rem !important;
  }

  .p-xgl-4 {
    padding: 1.5rem !important;
  }

  .pt-xgl-4,
.py-xgl-4 {
    padding-top: 1.5rem !important;
  }

  .pr-xgl-4,
.px-xgl-4 {
    padding-right: 1.5rem !important;
  }

  .pb-xgl-4,
.py-xgl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pl-xgl-4,
.px-xgl-4 {
    padding-left: 1.5rem !important;
  }

  .p-xgl-5 {
    padding: 3rem !important;
  }

  .pt-xgl-5,
.py-xgl-5 {
    padding-top: 3rem !important;
  }

  .pr-xgl-5,
.px-xgl-5 {
    padding-right: 3rem !important;
  }

  .pb-xgl-5,
.py-xgl-5 {
    padding-bottom: 3rem !important;
  }

  .pl-xgl-5,
.px-xgl-5 {
    padding-left: 3rem !important;
  }

  .m-xgl-auto {
    margin: auto !important;
  }

  .mt-xgl-auto,
.my-xgl-auto {
    margin-top: auto !important;
  }

  .mr-xgl-auto,
.mx-xgl-auto {
    margin-right: auto !important;
  }

  .mb-xgl-auto,
.my-xgl-auto {
    margin-bottom: auto !important;
  }

  .ml-xgl-auto,
.mx-xgl-auto {
    margin-left: auto !important;
  }
}
.text-justify {
  text-align: justify !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  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: 425px) {
  .text-xxs-left {
    text-align: left !important;
  }

  .text-xxs-right {
    text-align: right !important;
  }

  .text-xxs-center {
    text-align: center !important;
  }
}
@media (min-width: 580px) {
  .text-xs-left {
    text-align: left !important;
  }

  .text-xs-right {
    text-align: right !important;
  }

  .text-xs-center {
    text-align: center !important;
  }
}
@media (min-width: 740px) {
  .text-ss-left {
    text-align: left !important;
  }

  .text-ss-right {
    text-align: right !important;
  }

  .text-ss-center {
    text-align: center !important;
  }
}
@media (min-width: 960px) {
  .text-sm-left {
    text-align: left !important;
  }

  .text-sm-right {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 1120px) {
  .text-md-left {
    text-align: left !important;
  }

  .text-md-right {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1320px) {
  .text-lg-left {
    text-align: left !important;
  }

  .text-lg-right {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1520px) {
  .text-xl-left {
    text-align: left !important;
  }

  .text-xl-right {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1700px) {
  .text-xgl-left {
    text-align: left !important;
  }

  .text-xgl-right {
    text-align: right !important;
  }

  .text-xgl-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-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0062cc !important;
}

.text-secondary {
  color: #BE9434 !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #967529 !important;
}

.text-success {
  color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #1e7e34 !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #117a8b !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #d39e00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #bd2130 !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.media {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: start;
          align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
          flex: 1;
}

@font-face {
  font-family: "nunito_sansregular";
  src: url("../fonts/nunitosans-regular-webfont.woff2") format("woff2"), url("../fonts/nunitosans-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "nunito_sansbold";
  src: url("../fonts/nunitosans-bold-webfont.woff2") format("woff2"), url("../fonts/nunitosans-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "nunito_sanslight";
  src: url("../fonts/nunitosans-light-webfont.woff2") format("woff2"), url("../fonts/nunitosans-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "muli_lightregular";
  src: url("../fontsmuli-light-webfont.woff2") format("woff2"), url("../fontsmuli-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "daxmediumitalic";
  src: url("../fonts/dax-mediumitalic-webfont.woff2") format("woff2"), url("../fonts/dax-mediumitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "open_sansbold";
  src: url("../fonts/opensans-bold-webfont.woff2") format("woff2"), url("../fonts/opensans-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "open_sansregular";
  src: url("../fonts/opensans-regular-webfont.woff2") format("woff2"), url("../fonts/opensans-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "open_sanslight";
  src: url("../fonts/opensans-light-webfont.woff2") format("woff2"), url("../fonts/opensans-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "opensans-semibold";
  src: url("../fonts/opensans-semibold-webfont.woff2") format("woff2"), url("../fonts/opensans-semibold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "opensans-semibolditalic";
  src: url("../fonts/opensans-semibolditalic-webfont.woff2") format("woff2"), url("../fonts/opensans-semibolditalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  /*font: inherit;*/
  vertical-align: baseline;
}

a, a:focus, a:visited,
button, button:focus, button:visited,
div, div:focus, div:visited,
textarea:focus, textarea:visited,
input:focus, input:visited {
  outline-offset: 0px;
  outline: none;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

a {
  text-decoration: none;
}

/*
|---------------------------
| Nossos mixins
|---------------------------
*/
/* Mixin para máscaras */
/* função que converte uma fonte em px para uma versão 'rem' baseado na fonte de 16px */
/**
* Esse utilitário retorna o valor em 'em'
* deve ser usado em locais onde o valor estiver relacionado ao tamanho da fonte
*/
/**
* Esse utilitário foi feito para simplificar a digitação
* retorna a font-size e line-height configurados com os valores passados
* a variável $scale é opcional, ela permite calcular de maneira simples, quanto
* seria o valor da fonte se aplicado algum modificador
*/
/**
* Esse utilitário foi feito para simplificar a digitação
* retorna o padding top e bottom
* a variável $scale é opcional, ela permite calcular de maneira simples, quanto
* seria o valor da fonte se aplicado algum modificador
*/
/**
* Esse utilitário foi feito para simplificar a digitação
* retorna a font-size e line-height configurados com os valores passados
*/
/**
* Esse utilitário foi feito para simplificar a digitação
* retorna a font-size e line-height em vw configurados com os valores passados
*/
/**
* Retorna o valor em px relativo a altura da tela
*/
/**
* Converte os valores em px do xd para vw
*/
/**
* Converte os valores em px do xd para vh
*/
/**
 * Footer do site
 */
.footer {
  background: #122148;
  height: auto;
}
@media (max-width: 959.98px) {
  .footer {
    height: auto;
    padding: 0 0 20px;
  }
}
.footer p {
  color: #FFFFFF;
}
.footer #logo-abrahdi {
  width: 90px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 35px;
}
@media (max-width: 1519.98px) {
  .footer #logo-abrahdi {
    width: 50px;
    margin-right: 20px;
  }
}
.footer .box-logo {
  margin-top: 25px;
}
.footer .box-logo img {
  max-width: 170px;
}
.footer .box-logo #text-footer {
  width: 180px;
  max-width: 100%;
  fill: white;
}
@media (max-width: 1699.98px) {
  .footer .box-logo #text-footer {
    width: 130px !important;
  }
}
@media (max-width: 424.98px) {
  .footer .box-logo {
    text-align: center;
  }
}
.footer .menu {
  margin: 42px 0 54px;
}
@media (max-width: 1519.98px) {
  .footer .menu {
    margin: 42px 0 30px;
  }
}
.footer .menu li {
  display: inline-block;
  margin: 0 2px;
}
@media (max-width: 1519.98px) {
  .footer .menu li {
    margin: 0;
  }
}
.footer .menu li a {
  font-family: "nunito_sansbold";
  font-size: 0.75rem;
  line-height: 1em;
  color: #FFFFFF;
  padding: 0 15px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
@media (max-width: 1519.98px) {
  .footer .menu li a {
    padding: 0 8px;
  }
}
.footer .menu li a:hover {
  color: #BE9434;
}
.footer .menu li a.border-link {
  color: #BE9434;
  border: 1px solid #BE9434;
  padding: 5px 15px;
  border-radius: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.footer .menu li a.border-link:hover {
  color: #122148;
  background: #BE9434;
}
.footer .redes-sociais {
  display: inline-block;
  vertical-align: -webkit-baseline-middle;
  margin-right: 35px;
}
@media (max-width: 959.98px) {
  .footer .redes-sociais {
    margin-right: 10px;
  }
}
@media (max-width: 739.98px) {
  .footer .redes-sociais {
    display: block;
    margin: 25px auto;
    text-align: center;
  }
}
.footer .redes-sociais a {
  margin-right: 10px;
}
@media (max-width: 959.98px) {
  .footer .redes-sociais a {
    margin-right: 5px;
  }
}
.footer .redes-sociais a svg {
  fill: #BE9434;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.footer .redes-sociais a:hover svg {
  fill: #FFFFFF;
}
.footer .box-whatsapp {
  display: inline-block;
  vertical-align: middle;
}
.footer .box-whatsapp svg {
  display: inline-block;
  vertical-align: middle;
}
.footer .box-whatsapp p {
  display: inline-block;
  vertical-align: middle;
  font-family: "nunito_sanslight";
  font-size: 0.625rem;
}
.footer .box-whatsapp p span {
  font-family: "nunito_sansbold";
  font-size: 1rem;
}
.footer .separator {
  height: 47px;
  background-color: #FFFFFF;
  width: 1px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 17px;
}
@media screen and (max-width: 393px) {
  .footer .separator {
    background-color: #122148;
  }
}
.footer .horario {
  font-family: "nunito_sansbold";
  font-size: 0.75rem;
  display: inline-block;
  vertical-align: middle;
}
.footer .rights {
  font-size: 0.5625rem;
  line-height: 1.3333333333em;
  opacity: 0.5;
  padding-top: 26px;
  text-transform: uppercase;
}

/**
* Configurações gerais
*/
html,
body {
  font-size: 1rem;
  line-height: 1rem;
  font-family: "nunito_sanslight";
  color: #122148;
  overflow-x: hidden;
  position: relative;
}

p, a {
  color: #122148;
}

img, button {
  max-width: 100%;
}

.link:hover p {
  color: #BE9434;
}
.link p {
  font-family: "nunito_sansbold";
  color: #FFFFFF;
  font-size: 0.875rem;
  line-height: 1.7142857143em;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.link svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 18px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.title {
  font-family: "nunito_sansbold";
  font-size: 1.375rem;
  line-height: 1.0909090909em;
  color: #BE9434;
}
.title.title-page {
  font-size: 1.875rem;
  line-height: 1em;
}

.text {
  color: #122148;
  font-family: "nunito_sansregular";
  font-size: 1rem;
  line-height: 1.375em;
}
.text span {
  font-family: "nunito_sansbold";
}
.text.description-section {
  color: #707070;
}

.btn {
  border: 2px solid #BE9434;
  border-radius: 70px;
  padding: 0 28px;
  color: #BE9434;
  font-family: "nunito_sansbold";
  font-size: 0.75rem;
  line-height: 1em;
  height: 50px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background: transparent;
  min-width: 191px;
  cursor: pointer;
}
.btn:hover {
  background: #BE9434;
  color: #FFFFFF;
}

.clean-btn {
  background: transparent;
  border: none;
  font-family: "nunito_sansregular";
  color: #122148;
  cursor: pointer;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.clean-btn:hover {
  color: #BE9434;
}

section.ultimas-blog {
  background: #F8F8F8;
  padding: 42px 0 85px;
}
@media (max-width: 959.98px) {
  section.ultimas-blog {
    padding: 42px 0 30px;
  }
}
section.ultimas-blog .title {
  padding-bottom: 38px;
}
section.ultimas-blog .all-posts {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  flex-wrap: wrap;
}
section.ultimas-blog .all-posts .post {
  width: 28.899%;
  height: 398px;
  background-color: #FFFFFF;
  box-shadow: 0px 2px 2px 0px lightgray;
}
@media (max-width: 1119.98px) {
  section.ultimas-blog .all-posts .post {
    width: 32%;
  }
}
@media (max-width: 959.98px) {
  section.ultimas-blog .all-posts .post {
    width: 47%;
    margin: 0 auto 20px;
  }
}
@media (max-width: 579.98px) {
  section.ultimas-blog .all-posts .post {
    width: 100%;
  }
}
section.ultimas-blog .all-posts .post:hover svg {
  margin-left: 28px;
}
section.ultimas-blog .all-posts .post .image {
  width: 100%;
  height: 222px;
  margin-bottom: 38px;
  background-repeat: no-repeat;
  background-size: cover;
}
section.ultimas-blog .all-posts .post .title-post {
  height: 70px;
  padding: 0 40px;
  margin-bottom: 20px;
  overflow: hidden;
  color: #122148;
  font-size: 1.25rem;
  line-height: 1.2em;
}
section.ultimas-blog .all-posts .post .link {
  padding-left: 40px;
}
section.ultimas-blog .all-posts .post .link p {
  color: #BE9434;
}

form input {
  height: 50px;
}
form input, form textarea {
  display: block;
  width: 100%;
  border: 1px solid #B4B4B4;
  padding: 10px 40px;
  margin-bottom: 8px;
  border-radius: 35px;
  resize: none;
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
form input:-ms-input-placeholder, form textarea:-ms-input-placeholder {
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
form input::-ms-input-placeholder, form textarea::-ms-input-placeholder {
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
form input::placeholder, form textarea::placeholder {
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
@media (max-width: 1319.98px) {
  form input, form textarea {
    font-size: 1rem;
    line-height: 1.125em;
  }
  form input::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
    font-size: 1rem;
    line-height: 1.125em;
  }
  form input::-moz-placeholder, form textarea::-moz-placeholder {
    font-size: 1rem;
    line-height: 1.125em;
  }
  form input:-ms-input-placeholder, form textarea:-ms-input-placeholder {
    font-size: 1rem;
    line-height: 1.125em;
  }
  form input::-ms-input-placeholder, form textarea::-ms-input-placeholder {
    font-size: 1rem;
    line-height: 1.125em;
  }
  form input::placeholder, form textarea::placeholder {
    font-size: 1rem;
    line-height: 1.125em;
  }
}
form .error {
  border: 1px solid tomato;
}

form.formulario-doc input {
  height: 50px;
}
form.formulario-doc input, form.formulario-doc textarea {
  display: block;
  width: 100%;
  border: 1px solid #B4B4B4;
  padding: 10px 40px;
  margin-bottom: 8px;
  border-radius: 35px;
  resize: none;
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
form.formulario-doc input::-webkit-input-placeholder, form.formulario-doc textarea::-webkit-input-placeholder {
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
form.formulario-doc input::-moz-placeholder, form.formulario-doc textarea::-moz-placeholder {
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
form.formulario-doc input:-ms-input-placeholder, form.formulario-doc textarea:-ms-input-placeholder {
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
form.formulario-doc input::-ms-input-placeholder, form.formulario-doc textarea::-ms-input-placeholder {
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
form.formulario-doc input::placeholder, form.formulario-doc textarea::placeholder {
  color: #122148;
  font-family: "nunito_sanslight";
  font-size: 1.125rem;
  line-height: 1.3333333333em;
}
@media (max-width: 1319.98px) {
  form.formulario-doc input, form.formulario-doc textarea {
    font-size: 1rem;
    line-height: 1.125em;
  }
  form.formulario-doc input::-webkit-input-placeholder, form.formulario-doc textarea::-webkit-input-placeholder {
    font-size: 1rem;
    line-height: 1.125em;
  }
  form.formulario-doc input::-moz-placeholder, form.formulario-doc textarea::-moz-placeholder {
    font-size: 1rem;
    line-height: 1.125em;
  }
  form.formulario-doc input:-ms-input-placeholder, form.formulario-doc textarea:-ms-input-placeholder {
    font-size: 1rem;
    line-height: 1.125em;
  }
  form.formulario-doc input::-ms-input-placeholder, form.formulario-doc textarea::-ms-input-placeholder {
    font-size: 1rem;
    line-height: 1.125em;
  }
  form.formulario-doc input::placeholder, form.formulario-doc textarea::placeholder {
    font-size: 1rem;
    line-height: 1.125em;
  }
}
form.formulario-doc .error {
  border: 1px solid tomato;
}

.bread {
  font-size: 0.75rem;
  line-height: 1.8333333333em;
  padding-bottom: 55px;
  color: #122148;
  font-family: "nunito_sansregular";
}
@media (max-width: 959.98px) {
  .bread {
    padding-bottom: 25px;
  }
}
.bread a {
  color: #122148;
}

.pagination {
  font-size: 1.25rem;
}

.all-products {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: unset;
          justify-content: unset;
  flex-wrap: wrap;
}
.all-products .product {
  width: 254px;
  max-width: 100%;
  padding: 17px 22px 10px;
  background-color: #FFFFFF;
  margin-bottom: 23px;
  border-radius: 10px;
  box-shadow: 0px 2px 2px 0px lightgray;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  margin: 0 8px 23px;
}
.all-products .product:hover {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}
@media (max-width: 1699.98px) {
  .all-products .product {
    width: 220px;
  }
}
@media (max-width: 1519.98px) {
  .all-products .product {
    margin: 0 0.8% 23px;
    width: 18%;
  }
}
@media (max-width: 959.98px) {
  .all-products .product {
    width: 31%;
  }
}
@media (max-width: 579.98px) {
  .all-products .product {
    width: 47%;
    margin: 0 1.5% 23px;
  }
}
@media (max-width: 424.98px) {
  .all-products .product {
    max-width: 100%;
    width: 100%;
    margin: 0 0 23px;
  }
}
.all-products .product .image {
  width: 116px;
  max-width: 100%;
  height: 116px;
  background-position: center;
  background-repeat: no-repeat;
  margin: 0 auto 17px;
  background-size: contain;
}
.all-products .product .name {
  font-size: 1rem;
  line-height: 1.375em;
  color: #122148;
  padding-top: 16px;
  border-top: 0.8px solid lightgray;
  height: 100px;
  max-width: 100%;
}
@media (max-width: 1319.98px) {
  .all-products .product .name {
    height: 125px;
  }
}
@media (max-width: 579.98px) {
  .all-products .product .name {
    font-size: 0.9375rem;
    line-height: 1.1333333333em;
    height: 80px;
  }
}
.all-products .product .category {
  font-family: "nunito_sansbold";
  font-size: 0.5625rem;
  line-height: 1.3333333333em;
  color: #B4B4B4;
  height: 21px;
  overflow: hidden;
}
@media (max-width: 579.98px) {
  .all-products .product .category {
    font-size: 0.5rem;
    line-height: 1.25em;
  }
}

#warning-pass {
  color: tomato;
  margin-bottom: 0;
}

section.produtos-destaque {
  padding: 35px 0 23px;
  background: #F8F8F8;
}
section.produtos-destaque .text {
  color: #707070;
  padding-bottom: 28px;
}
section.produtos-destaque .btn {
  margin-top: 16px;
}

section.segmentos {
  padding: 50px 0 63px;
  background: #122148;
}
@media (max-width: 1319.98px) {
  section.segmentos img {
    width: 90%;
    margin-right: auto;
  }
}
@media (max-width: 959.98px) {
  section.segmentos img {
    width: 320px;
    margin-bottom: 20px;
    max-width: 100%;
  }
}
section.segmentos .title {
  color: #FFFFFF;
  padding-bottom: 30px;
}
section.segmentos .text {
  color: #FFFFFF;
  padding-bottom: 35px;
}
section.segmentos .list {
  display: inline-block;
  margin-right: 22.62%;
}
section.segmentos .list li a {
  color: #FFFFFF;
  font-family: "nunito_sansbold";
  font-size: 1rem;
  line-height: 1.875em;
  -webkit-transition: color ease 0.5s;
  transition: color ease 0.5s;
}
section.segmentos .list li a:hover {
  color: #BE9434;
}
section.segmentos .link {
  display: block;
  margin-top: 35px;
}
section.segmentos .link p {
  color: #BE9434;
}

section.contato-form {
  padding: 50px 0 53px;
}
section.contato-form .title {
  padding-bottom: 37px;
}
@media (max-width: 959.98px) {
  section.contato-form .title {
    padding-bottom: 15px;
  }
}
section.contato-form .big-text {
  padding-bottom: 61px;
  font-family: "nunito_sansregular";
  font-size: 2.5rem;
  line-height: 1.35em;
  color: #122148;
}
@media (max-width: 959.98px) {
  section.contato-form .big-text {
    padding-bottom: 30px;
    font-size: 1.75rem;
    line-height: 1.4285714286em;
  }
}
@media (max-width: 739.98px) {
  section.contato-form .big-text {
    font-size: 1.375rem;
    line-height: 1.2727272727em;
  }
}
section.contato-form .btn {
  margin-top: 23px;
  font-family: "nunito_sansbold";
  font-size: 1rem;
  line-height: 3.125em;
}
section.contato-form .box-whatsapp {
  margin: 1.75rem 0 2.25rem 1.125rem;
}
@media (max-width: 739.98px) {
  section.contato-form .box-whatsapp {
    margin-left: 0;
  }
}
section.contato-form .box-whatsapp svg {
  display: inline-block;
  vertical-align: middle;
}
section.contato-form .box-whatsapp p {
  display: inline-block;
  vertical-align: middle;
  font-family: "nunito_sanslight";
  font-size: 0.625rem;
}
section.contato-form .box-whatsapp p span {
  font-family: "nunito_sansbold";
  font-size: 1rem;
}
section.contato-form .link-text {
  color: #BE9434;
  text-decoration: underline;
  padding-bottom: 2.6875rem;
}
section.contato-form .redes-sociais {
  margin-top: 43px;
}
section.contato-form .redes-sociais a {
  padding-right: 10px;
}
@media (max-width: 1119.98px) {
  section.contato-form .redes-sociais a {
    padding-right: 5px;
  }
}
section.contato-form .redes-sociais a svg {
  fill: #BE9434;
}
section.contato-form .redes-sociais a:hover svg {
  fill: #122148;
}

body.page-produtos li#menu-produtos .dropdown {
  color: #BE9434 !important;
}

body.page-sobre li#menu-sobre a {
  color: #BE9434 !important;
}

body.page-blog li#menu-blog a {
  color: #BE9434 !important;
}

body.page-fale-conosco li#menu-contato a {
  color: #BE9434 !important;
}

body.page-orcamento li#menu-orcamento a {
  color: #FFFFFF !important;
  background: #BE9434;
}

body.page-area li#menu-area a {
  color: #BE9434 !important;
}

#produtos-detalhe .paragraph, #produtos-detalhe ol, #produtos-detalhe ul, #blog-detalhe .paragraph, #blog-detalhe ol, #blog-detalhe ul {
  padding-bottom: 2rem;
  font-size: 1rem !important;
  line-height: 1.75rem !important;
  font-family: "nunito_sansregular" !important;
  color: #505050;
}
#produtos-detalhe .paragraph span, #produtos-detalhe .paragraph li, #produtos-detalhe ol span, #produtos-detalhe ol li, #produtos-detalhe ul span, #produtos-detalhe ul li, #blog-detalhe .paragraph span, #blog-detalhe .paragraph li, #blog-detalhe ol span, #blog-detalhe ol li, #blog-detalhe ul span, #blog-detalhe ul li {
  list-style-type: disc;
  font-family: "nunito_sansregular" !important;
  color: #505050;
  font-size: 1rem !important;
  line-height: 1.75rem !important;
}
#produtos-detalhe h2, #blog-detalhe h2 {
  margin: 30px 0 10px;
  font-family: "nunito_sansregular" !important;
  color: #505050 !important;
  font-size: 1.25rem !important;
  line-height: 1.875rem !important;
}
#produtos-detalhe h2 span, #blog-detalhe h2 span {
  font-family: "nunito_sansregular" !important;
  color: #505050 !important;
  font-size: 1.25rem !important;
  line-height: 1.875rem !important;
}
#produtos-detalhe h3, #blog-detalhe h3 {
  margin: 25px 0 10px;
  font-family: "nunito_sansregular" !important;
  color: #505050 !important;
  font-size: 1.25rem !important;
  line-height: 1.875rem !important;
}
#produtos-detalhe h3 span, #blog-detalhe h3 span {
  font-family: "nunito_sansregular" !important;
  color: #505050 !important;
  font-size: 1.125rem !important;
  line-height: 1.875rem !important;
}

/*
css para o Swal
*/
.swal2-popup {
  background: #122148 !important;
}
.swal2-popup #swal2-title {
  font-family: "nunito_sansbold";
  font-size: 1.25rem;
  line-height: 1.2em;
  color: #FFFFFF;
}
.swal2-popup button {
  background: #BE9434 !important;
}

.pagination {
  -webkit-box-pack: center;
          justify-content: center;
}
.pagination li {
  display: inline-block;
  cursor: pointer;
}
.pagination li.active {
  color: #BE9434;
}

.header {
  height: 101px;
  position: relative;
}
.header .box-input {
  position: relative;
  margin: 0 36px 0 12px;
  width: 248px;
  display: inline-block;
  vertical-align: middle;
}
.header .box-input form {
  position: relative;
}
.header .box-input form input {
  border-radius: 70px;
  width: 100%;
  height: 28px;
  border: 1px solid #B4B4B4;
  padding: 0 40px 0 15px;
  font-size: 0.875rem;
  line-height: 1.2857142857em;
}
.header .box-input form #btn-search {
  position: absolute;
  right: 16px;
  width: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  border: none;
  background: url("../img/search.svg") no-repeat center;
  cursor: pointer;
}
.header p, .header a {
  font-size: 0.75rem;
  line-height: 1em;
  font-family: "nunito_sanslight";
  color: #122148;
}
.header .box-logo {
  margin-top: 30px;
}
.header .box-logo #text-header {
  width: 180px;
  max-width: 100%;
}
@media (max-width: 1519.98px) {
  .header .box-logo #text-header {
    width: 130px;
  }
}
.header .menu-box {
  padding-top: 7px;
}
.header .menu-box .menu {
  margin-top: 23px;
}
.header .menu-box .menu li {
  display: inline-block;
  margin: 0 2px;
}
@media (max-width: 1319.98px) {
  .header .menu-box .menu li {
    margin: 0;
  }
}
.header .menu-box .menu li#menu-produtos {
  position: relative;
  height: 30px;
}
.header .menu-box .menu li#menu-produtos .submenu-box {
  display: none;
  position: absolute;
  z-index: 999;
  top: 30px;
  left: 0;
  width: 735px;
  height: auto;
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.16);
  background-color: #FFFFFF;
  padding: 22px 34px;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.header .menu-box .menu li#menu-produtos .submenu-box::after {
  content: "";
  background: #BE9434;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6px;
}
.header .menu-box .menu li#menu-produtos .submenu-box::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 78px;
  color: #FFFFFF;
  border-top: 0;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid #FFFFFF;
}
.header .menu-box .menu li#menu-produtos .submenu-box .box-filter {
  width: 47%;
}
.header .menu-box .menu li#menu-produtos .submenu-box .box-filter .title {
  font-size: 0.75rem;
  line-height: 1em;
  padding-bottom: 0.5rem;
}
.header .menu-box .menu li#menu-produtos .submenu-box .box-filter ul {
  width: 156px;
}
.header .menu-box .menu li#menu-produtos .submenu-box .box-filter ul li {
  display: block;
  padding: 0.5rem 10px 0.5rem 0;
}
.header .menu-box .menu li#menu-produtos .submenu-box .box-filter ul li a {
  font-family: "nunito_sansregular";
  padding: 0;
}
.header .menu-box .menu li#menu-produtos:hover .submenu-box {
  display: -webkit-box;
  display: flex;
}
.header .menu-box .menu li a, .header .menu-box .menu li .dropdown {
  font-family: "nunito_sansbold";
  font-size: 0.75rem;
  line-height: 1em;
  color: #122148;
  padding: 0 15px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  cursor: pointer;
}
@media (max-width: 1319.98px) {
  .header .menu-box .menu li a, .header .menu-box .menu li .dropdown {
    padding: 0 8px;
  }
}
.header .menu-box .menu li a:hover, .header .menu-box .menu li .dropdown:hover {
  color: #BE9434;
}
.header .menu-box .menu li a.border-link, .header .menu-box .menu li .dropdown.border-link {
  color: #BE9434;
  border: 1px solid #BE9434;
  padding: 5px 15px;
  border-radius: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.header .menu-box .menu li a.border-link:hover, .header .menu-box .menu li .dropdown.border-link:hover {
  color: #FFFFFF;
  background: #BE9434;
}
.header .menu-box .menu li .dropdown {
  color: #122148;
  position: relative;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding-right: 15px;
}
.header .menu-box .menu li .dropdown:hover {
  color: #BE9434;
}
.header .menu-box .menu li .dropdown::before {
  content: url("../img/arrow.svg");
  position: absolute;
  right: 0;
}
.header #btn-hamburger {
  margin-top: 30px;
  border: none;
  background: transparent;
}
.header #btn-hamburger span {
  width: 35px;
  height: 3px;
  background-color: #122148;
  margin: 2px 0 6px;
  display: block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header #btn-hamburger span:first-child {
  width: 25px;
}
.header #btn-hamburger .menu-collapsed span:first-child {
  -webkit-transform: rotate(-45deg) translate(-5px, 5px);
          transform: rotate(-45deg) translate(-5px, 5px);
  width: 35px;
}
.header #btn-hamburger .menu-collapsed span:nth-child(2) {
  opacity: 0;
}
.header #btn-hamburger .menu-collapsed span:nth-child(3) {
  -webkit-transform: rotate(45deg) translate(-8px, -8px);
          transform: rotate(45deg) translate(-8px, -8px);
}
.header .wrapper-menu-lista {
  background: #122148;
  position: absolute;
  width: 0;
  height: 100vh;
  z-index: 2;
  bottom: -100vh;
  right: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.header .wrapper-menu-lista nav {
  padding: 20px;
}
.header .wrapper-menu-lista nav li {
  padding-bottom: 15px;
}
.header .wrapper-menu-lista nav li a {
  -webkit-transition: all 0 ease 0.5s;
  transition: all 0 ease 0.5s;
  opacity: 0;
  color: #FFFFFF;
}

body.menu-open .wrapper-menu-lista {
  width: 100%;
}
body.menu-open .wrapper-menu-lista a {
  -webkit-transition: all 0.5s ease 0.3s;
  transition: all 0.5s ease 0.3s;
  opacity: 1 !important;
  font-size: 1rem;
}