/*----------------------------------------------------------------------
  * pappCube Kit -
  * Copyright 2022 plusmanager.de
------------------------------------------------------------------------*/
/*------------------------------------
  Global
------------------------------------*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-weight: 400;
  font-size: 1rem;
  font-family: "Assistant", sans-serif;
  background: #FFFFFF;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern";
  text-rendering: optimizelegibility;
}

@media (min-width: 1200px) {
  body {
    font-size: 1.063rem;
  }
}

/*------------------------------------
  Preset
------------------------------------*/
[role=button] {
  cursor: pointer;
}

.c-pointer:hover {
  cursor: pointer;
}

.c-default:hover {
  cursor: default !important;
}

img {
  max-width: 100%;
}

.custom-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*----------------------------------
  Custom-Spaces
------------------------------------*/
.row.gap-all > .col,
.row.gap-all > [class*="col-"] {
  padding: 1.25rem;
}

.row.gap-y > .col,
.row.gap-y > [class*="col-"] {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.row.gap-y-top > .col,
.row.gap-y-top > [class*="col-"] {
  padding-top: 1.25rem;
}

.row.gap-y-bottom > .col,
.row.gap-y-bottom > [class*="col-"] {
  padding-bottom: 1.25rem;
}

.mt-neg5 {
  margin-top: -5rem;
}

.ml-neg5 {
  margin-left: -5rem;
}

@media (min-width: 992px) {
  .me-md-auto {
    margin-right: auto !important;
  }
}

@media (max-width: 991px) {
  .me-md-auto {
    margin: auto !important;
  }
}

figure {
  margin-bottom: 0;
}

/*------------------------------------
  D-Block Custom
------------------------------------*/
.d-block-relative {
  width: 100%;
  display: block;
  clear: both;
  float: none;
  position: relative;
  margin: 0;
  padding: 0;
}

/*------------------------------------
  Nowrap Blocks / New*
------------------------------------*/
.block-nowrap-v1 {
  border-radius: 6px;
  max-width: 100%;
  padding: 1em 0.5em;
  margin-bottom: .8em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*------------------------------------
  AOS
------------------------------------*/
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/*----------------------------------
  Carousel-Controls
------------------------------------*/
.carousel-control-size {
  font-size: 2rem;
}

/*------------------------------------
  Selection Colors
------------------------------------*/
::-moz-selection {
  color: #FFFFFF;
  background-color: #202879;
}

::selection {
  color: #FFFFFF;
  background-color: #202879;
}

.bg-primary :not(.form-control) ::-moz-selection {
  color: #202879;
  background-color: #FFFFFF;
}

.bg-primary :not(.form-control) ::selection {
  color: #202879;
  background-color: #FFFFFF;
}

/*----------------------------------
  Preloader Styles
------------------------------------*/
#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 100px;
  height: 100px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #202879;
  -webkit-animation: spin 2s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 2s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
  z-index: 100001;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #ffc107;
  -webkit-animation: spin 3s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 3s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: #FFFFFF;
  -webkit-animation: spin 1.5s linear infinite;
  /* Chrome, Opera 15+, Safari 5+ */
  animation: spin 1.5s linear infinite;
  /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(0deg);
    /* IE 9 */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    -webkit-transform: rotate(360deg);
    /* Chrome, Opera 15+, Safari 3.1+ */
    -ms-transform: rotate(360deg);
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 51%;
  height: 100%;
  background: #f7f7f7;
  z-index: 100000;
  -webkit-transform: translateX(0);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(0);
  /* IE 9 */
  transform: translateX(0);
  /* Firefox 16+, IE 10+, Opera */
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded */
.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(-100%);
  /* IE 9 */
  transform: translateX(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateX(100%);
  /* IE 9 */
  transform: translateX(100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  /* Chrome, Opera 15+, Safari 3.1+ */
  -ms-transform: translateY(-100%);
  /* IE 9 */
  transform: translateY(-100%);
  /* Firefox 16+, IE 10+, Opera */
  -webkit-transition: all 0.3s 1s ease-out;
  -o-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

/*------------------------------------
  Go To
------------------------------------*/
.ui-go-to {
  position: fixed;
  right: 25px;
  bottom: -50px;
  z-index: 100;
  width: 2.75rem;
  height: 2.75rem;
  background-color: #202879;
  color: #FFFFFF;
  font-size: 1rem;
  border-radius: 50%;
  opacity: 1;
  transition: 0.3s ease-out;
}

.ui-go-to.show {
  bottom: 25px;
}

.ui-go-to__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ui-go-to:hover, .ui-go-to:focus:hover {
  color: #FFFFFF;
  opacity: 0.84;
}

/*------------------------------------
  Footer
------------------------------------*/
.ui-footer-dark2 {
  color: rgba(255, 255, 255, 0.75);
  background-color: #0b1148;
}

.ui-footer-dark2 .ui-copyright {
  background-color: #0a0f3f;
}

.ui-footer-dark2 .ui-footer-logo {
  text-transform: uppercase;
  letter-spacing: .1em;
}

.ui-footer-dark2 .ui-footer-widget h2 {
  font-weight: normal;
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFFFFF;
}

.ui-footer-dark2 .ui-footer-widget ul {
  list-style: none;
}

.ui-footer-dark2 .ui-footer-widget ul li {
  font-size: 15px;
  margin-bottom: 0px;
}

.ui-footer-dark2 .ui-footer-widget ul li a {
  color: rgba(255, 255, 255, 0.75);
}

.ui-footer-dark2 .ui-footer-widget ul li a:hover {
  color: rgba(255, 255, 255, 0.95);
  padding-left: 6px;
}

.ui-footer-dark2 .ui-footer-widget ul li a i {
  font-size: 9px;
  margin-right: 4px;
}

.ui-footer-dark2 .ui-footer-widget .btn-primary {
  border: 2px solid #fff !important;
}

.ui-footer-dark2 .ui-footer-widget .btn-primary:hover {
  border: 2px solid #fff !important;
}

.ui-footer-dark2 .ui-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}

.ui-footer-dark2 .ui-footer-social li a {
  height: 50px;
  width: 50px;
  display: block;
  float: left;
  background: #202879;
  border-radius: 50%;
  position: relative;
}

.ui-footer-dark2 .ui-footer-social li a span {
  position: absolute;
  font-size: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
}

.ui-footer-dark2 .ui-footer-social li a:hover {
  background: #0F165E;
}

.ui-footer-address ul {
  padding: 0;
}

.ui-footer-address ul li {
  display: table;
  line-height: 1.5;
  margin-bottom: 15px;
}

.ui-footer-address ul li > a {
  display: table;
  line-height: 1.5;
  margin-bottom: 15px;
}

.ui-footer-address ul li span {
  color: rgba(255, 255, 255, 0.75);
}

.ui-footer-address ul li .icon, .ui-footer-address ul li .text {
  display: table-cell;
  vertical-align: top;
}

.ui-footer-address ul li .icon {
  width: 30px;
  font-size: 18px;
  padding-top: 2px;
  color: #FFFFFF;
}

footer.bg-black a {
  color: #202879;
}

/*------------------------------------
  Typography
------------------------------------*/
b,
.b {
  font-weight: 600 !important;
  color: #161616;
}

strong {
  font-weight: 600;
}

/*------------------------------------
	Pargraph
------------------------------------*/
p,
.p {
  line-height: 1.6rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

div p:not(:first-child) {
  margin-top: 0.813rem;
}

.ui-pargraph {
  line-height: 1.6rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.ui-pargraph:not(:first-child) {
  margin-top: 1.125rem;
}

.ui-teaser-lg,
.ui-teaser {
  font-size: 110%;
}

@media (min-width: 1200px) {
  .ui-teaser {
    font-size: 110%;
  }
  .ui-teaser-lg {
    font-size: 115% !important;
  }
}

.ui-card p.card-text {
  line-height: 1.4rem;
  font-size: 1.0rem;
}

/*------------------------------------
	Links
------------------------------------*/
a {
  transition: .3s all ease;
  color: #343D91;
}

a:hover {
  text-decoration: none;
  color: #0F165E;
  outline: none !important;
}

a:focus {
  text-decoration: none;
  outline: none !important;
}

.link {
  color: #202879;
  transition: all .2s ease-in;
}

.link:hover {
  color: #0F165E;
  text-decoration: none;
}

/* link-linear */
.link-linear.text-primary a {
  font-weight: 600;
  color: #202879;
  text-decoration: none;
  padding-bottom: 0.4rem;
  background: linear-gradient(to right, #343d91, #343d91), linear-gradient(to right, #0f165e, #dddfef, #0f165e);
  background-size: 100% 2px, 0 2px;
  background-position: 100% 100%, 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms;
}

.link-linear.text-primary a:hover {
  color: #0f165e;
  background-size: 0 2px, 100% 2px;
}

.link-linear.text-white a {
  font-weight: 600;
  color: white;
  text-decoration: none;
  padding-bottom: 0.4rem;
  background: linear-gradient(to right, white, white), linear-gradient(to right, #dddfef, #212529, #dddfef);
  background-size: 100% 2px, 0 2px;
  background-position: 100% 100%, 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms;
}

.link-linear.text-white a:hover {
  color: #dddfef;
  background-size: 0 2px, 100% 2px;
}

.link-linear.text-dark a {
  font-weight: 600;
  color: rgba(33, 37, 41, 0.8);
  text-decoration: none;
  padding-bottom: 0.4rem;
  background: linear-gradient(to right, rgba(33, 37, 41, 0.8), rgba(33, 37, 41, 0.8)), linear-gradient(to right, #4d55a2, #202879, #4d55a2);
  background-size: 100% 2px, 0 2px;
  background-position: 100% 100%, 0% 100%;
  background-repeat: no-repeat;
  transition: background-size 400ms;
}

.link-linear.text-dark a:hover {
  color: #0f165e;
  background-size: 0 2px, 100% 2px;
}

/* link-white */
.link-white {
  color: #FFFFFF;
  transition: all .2s ease-in;
}

.link-white:hover {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.link-white-55 {
  color: rgba(255, 255, 255, 0.55);
  transition: all .2s ease-in;
}

.link-white-55:hover {
  color: #202879;
  text-decoration: none;
}

.link-dark {
  color: #161616;
  transition: all .2s ease-in;
}

.link-dark:hover {
  color: #202879;
  text-decoration: none;
}

.link-headings-color {
  color: #161616;
  transition: all .2s ease-in;
}

.link-headings-color:hover {
  color: #202879;
  text-decoration: none;
}

.link-hover-dark:hover {
  color: #161616;
}

.link-muted {
  color: #7e8892;
  transition: all .2s ease-in;
}

.link-muted:hover {
  color: #202879;
  text-decoration: none;
}

/*----------------------------------
  U-Links
------------------------------------*/
.ui-link {
  color: #161616;
  text-decoration: none;
}

.ui-link:hover {
  color: #202879;
  text-decoration: none;
}

/*----------------------------------
  Hover Overlay-Link
------------------------------------*/
.ui-overlay-link {
  position: relative;
  display: block;
  cursor: pointer;
}

.ui-overlay-link .ui-overlay--hover {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  z-index: 2;
  opacity: 0;
  top: 0;
  background: rgba(32, 40, 121, 0.6);
}

.ui-overlay-link .ui-overlay--hover:hover {
  opacity: 1;
}

.ui-overlay-link .ui-overlay--hover .hover--icon {
  font-size: 1.0rem;
  position: absolute;
  top: calc(50% - 0.5rem);
  width: 100%;
  height: 1.0rem;
  line-height: 1.0rem;
  text-align: center;
  color: white;
}

.ui-overlay-link .ui-overlay--hover .hover--btn {
  top: 50%;
  position: absolute;
  top: calc(50% - 20px);
  width: 100%;
  height: 40px;
  text-align: center;
  color: white;
}

.ui-overlay-link .ui-overlay--hover .hover--btn .btn {
  margin-left: 2px;
  margin-right: 2px;
}

.ui-overlay-link .ui-overlay--hover .hover--btn .btn i {
  line-height: 44px;
}

/* ---------------------------------------------
  Hover From Bottom / New*
---------------------------------------------- */
.hover-bar-bottom {
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hover-bar-bottom .hover-image {
  display: block;
  width: 100%;
  height: auto;
  transition: all .2s ease;
}

.hover-bar-bottom .hover-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.75rem;
  overflow: hidden;
  color: #FFFFFF;
  background-color: #202879;
  transition: all .2s ease;
  transform: translate3d(0, 3.75rem, 0);
}

.hover-bar-bottom .hover-info small {
  opacity: .7;
}

.hover-bar-bottom .hover-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-indent: -10000px;
}

.hover-bar-bottom:hover .hover-image {
  transform: translate3d(0, -60px, 0);
}

.hover-bar-bottom:hover .hover-info {
  transform: translate3d(0, 0, 0);
}

/*------------------------------------
  Transition
------------------------------------*/
.transition-bg-03s {
  transition: background .3s ease-in-out;
}

/*------------------------------------
  Headings
------------------------------------*/
.h1, .h2, .h3, .h4, .h5, .h6,
h1, h2, h3, h4, h5, h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 2.4rem;
}

h2, .h2 {
  font-size: 1.975rem;
}

h3, .h3 {
  font-size: 1.8rem;
}

h4, .h4 {
  font-size: 1.6rem;
}

h5, .h5 {
  font-size: 1.4rem;
}

h6, .h6 {
  font-size: 1.2rem;
}

.display-5 {
  font-size: 2.5rem;
  line-height: 1.2;
}

@media (max-width: 991px) {
  .display-3 {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .display-3 {
    font-size: 2.0rem;
  }
}

@media (min-width: 576px) {
  .display-sm-1 {
    font-size: 6rem;
  }
  .display-sm-2 {
    font-size: 5.5rem;
  }
  .display-sm-3 {
    font-size: 4.5rem;
  }
  .display-sm-4 {
    font-size: 3.5rem;
  }
}

@media (min-width: 768px) {
  .display-md-1 {
    font-size: 6rem;
  }
  .display-md-2 {
    font-size: 5.5rem;
  }
  .display-md-3 {
    font-size: 4.5rem;
  }
  .display-md-4 {
    font-size: 3.5rem;
  }
}

@media (min-width: 992px) {
  .display-lg-1 {
    font-size: 6rem;
  }
  .display-lg-2 {
    font-size: 5.5rem;
  }
  .display-lg-3 {
    font-size: 4.5rem;
  }
  .display-lg-4 {
    font-size: 3.5rem;
  }
}

/*------------------------------------
  Dividers
------------------------------------*/
hr {
  border-color: #f1f1f1;
}

.divider-line {
  width: 100%;
  height: 2px;
  background: #fafbfd;
  margin: 1.6rem 0;
}

.divider-line.line-soft {
  background: #515aab;
}

.divider-line.line-primary {
  background: #343D91;
}

/*------------------------------------
  Line Decoration / New *
------------------------------------*/
.line-before {
  display: flex;
  padding: 10px 0 0;
  position: relative;
}

.line-before::before {
  background: #343D91 none repeat scroll 0 0;
  top: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 40px;
}

.line-after {
  display: flex;
  padding: 0 0 10px;
  position: relative;
}

.line-after::after {
  background: #343D91 none repeat scroll 0 0;
  bottom: 0;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 40px;
}

/*----------------------------------
  Spaces
------------------------------------*/
.ui-content-half-space {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

.ui-content-half-space-top {
  padding-top: 3.25rem;
}

.ui-content-half-space-bottom {
  padding-bottom: 3.25rem;
}

.ui-content-space {
  padding-top: 5.0rem;
  padding-bottom: 5.0rem;
}

.ui-content-space-top {
  padding-top: 5.0rem;
}

.ui-content-space-bottom {
  padding-bottom: 5.0rem;
}

.ui-content-custom-space {
  padding-top: 8.5rem;
  padding-bottom: 8.5rem;
}

.ui-content-custom-space-top {
  padding-top: 8.5rem;
}

.ui-content-custom-space-bottom {
  padding-bottom: 8.5rem;
}

/*----------------------------------
  Split-Section
------------------------------------*/
.split-40vh {
  min-height: 40vh;
}

.split-bg {
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-primary-saturated.lighten-for-primary {
  background-color: #3b45a4 !important;
}

/*----------------------------------
  Decos
------------------------------------*/
.ui-deco-wrapper {
  height: 160px;
  width: 160px;
  position: absolute;
  z-index: 0;
}

.ui-deco-wrapper.area-120 {
  height: 120px !important;
  width: 120px !important;
}

.ui-deco-wrapper.area-200 {
  height: 200px !important;
  width: 200px !important;
}

.ui-deco-wrapper.area-240 {
  height: 240px !important;
  width: 240px !important;
}

.ui-deco-wrapper.area-280 {
  height: 280px !important;
  width: 280px !important;
}

.ui-deco-wrapper.area-320 {
  height: 320px !important;
  width: 320px !important;
}

.ui-deco-wrapper.top-left {
  top: -3.25rem;
  left: 0;
  transform: rotate(-15deg);
}

.ui-deco-wrapper.center-left {
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.ui-deco-wrapper.bottom-left {
  bottom: -3.25rem;
  left: 0;
  transform: rotate(-15deg);
}

.ui-deco-wrapper.top-right {
  top: -3.25rem;
  right: 0;
  transform: rotate(15deg);
}

.ui-deco-wrapper.center-right {
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
}

.ui-deco-wrapper.bottom-right {
  bottom: -3.25rem;
  right: 0;
  transform: rotate(15deg);
}

.ui-deco-wrapper.top-center {
  top: -3.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.ui-deco-wrapper.center-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ui-deco-wrapper.bottom-center {
  bottom: -3.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.ui-deco-wrapper .text-primary-soft {
  color: #d1d3e9 !important;
}

.ui-deco-wrapper .text-primary-light {
  color: #474f96 !important;
}

.ui-deco-wrapper .text-alternate-soft {
  color: #870000 !important;
}

.ui-deco-wrapper .text-alternate-light {
  color: #ff2525 !important;
}

.ui-deco-wrapper .text-alternate-saturated {
  color: #e80300 !important;
}

.ui-deco-wrapper .text-success {
  color: #bcdd98 !important;
}

.ui-deco-wrapper .text-warning {
  color: #fff38b !important;
}

.ui-deco-wrapper .text-light {
  color: #edeff8 !important;
}

.ui-deco-wrapper .text-primary {
  color: #252f8d !important;
}

.ui-deco-wrapper .text-primary-saturated {
  color: #3b45a4 !important;
}

.ui-deco-wrapper .text-primary-dark {
  color: #131b74 !important;
}

.ui-deco-wrapper .text-alternate {
  color: #dd0000 !important;
}

.ui-deco-wrapper .text-alternate-dark {
  color: #b30000 !important;
}

.ui-deco-wrapper .text-secondary {
  color: #131b74 !important;
}

.ui-deco-wrapper .text-info {
  color: #9adcfb !important;
}

.ui-deco-wrapper .text-danger {
  color: #eb6357 !important;
}

.ui-deco-wrapper .text-dark {
  color: #2c3237 !important;
}

/*----------------------------------
  Forms
------------------------------------*/
.form-pill {
  border-radius: 6.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.form-icon-wrapper {
  position: relative;
  display: block;
}

.form-icon-input-left {
  padding-left: 2.18rem;
}

.form-icon-input-right {
  padding-right: 2.18rem;
}

.form-icon {
  position: absolute;
  height: 100%;
  width: 2.5rem;
}

.form-icon--left {
  left: 0;
}

.form-icon--right {
  right: 0;
}

.form-icon__item {
  position: absolute;
  color: #8ba597;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* =========================================== */
/*  ========= BASIC COMPONENTS =============== */
/* =========================================== */
/*------------------------------------
  Breadcrumb
------------------------------------*/
.breadcrumb-light {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 0;
}

.breadcrumb-light .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-light .active {
  color: #FFFFFF;
}

.breadcrumb-light a {
  color: rgba(255, 255, 255, 0.7);
}

/* New */
.breadcrumb-dark {
  background-color: transparent;
  color: rgba(0, 0, 0, 0.7);
  padding: 0;
}

.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(0, 0, 0, 0.7);
}

.breadcrumb-dark .active {
  color: rgba(0, 0, 0, 0.9);
}

.breadcrumb-dark a {
  color: rgba(0, 0, 0, 0.7);
}

.breadcrumb-dark a:hover {
  color: rgba(0, 0, 0, 0.9);
}

/*------------------------------------
  Button
------------------------------------*/
.btn {
  cursor: pointer;
  transition: .2s ease;
}

.btn.focus,
.btn:focus
.btn.active:focus,
.btn:active:focus {
  outline: 0 none;
  box-shadow: none;
  border-color: transparent;
}

.btn--circle {
  border-radius: 100%;
  padding: 0 0;
  width: 3.1rem;
  height: 3.1rem;
}

.btn--circle.btn-sm {
  width: 2.6rem;
  height: 2.6rem;
}

.btn--circle.btn-lg {
  width: 4.2rem;
  height: 4.2rem;
}

.btn-custom {
  appearance: none  !important;
  box-shadow: none  !important;
  border: none !important;
  border-radius: 6.25rem;
  cursor: pointer;
  transition: .2s ease;
  outline: none  !important;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.btn-custom-sm {
  appearance: none  !important;
  box-shadow: none  !important;
  border: none !important;
  border-radius: 6.25rem;
  cursor: pointer;
  transition: .2s ease;
  outline: none  !important;
  font-size: 90%;
  padding-left: 0.975rem;
  padding-right: 0.975rem;
}

.btn-custom-lg {
  appearance: none  !important;
  box-shadow: none  !important;
  border: none !important;
  border-radius: 6.25rem;
  cursor: pointer;
  transition: .2s ease;
  outline: none  !important;
  font-size: 110%;
  padding-top: 0.625rem;
  padding-right: 1.5rem;
  padding-bottom: 0.625rem;
  padding-left: 1.5rem;
}

.btn-custom.btn-sm {
  padding-left: 0.875rem;
  padding-right: 0.875rem;
}

.btn-custom.btn-lg {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.btn .spinner-border,
.btn .spinner-grow {
  position: relative;
  top: -0.3125rem;
}

.btn-link {
  color: #202879;
}

.btn-link:hover {
  color: #202879;
}

/*------------------------------------
  List
------------------------------------*/
.list-unstyled ol li,
.list-unstyled ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-right: 0.5rem;
}

.list-unstyled ol li:not(:first-of-type),
.list-unstyled ul li:not(:first-of-type) {
  padding-left: 1.25rem;
}

.list-unstyled ol li:not(:first-of-type):before,
.list-unstyled ul li:not(:first-of-type):before {
  content: '\00B7';
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 1;
  color: #343D91;
  position: absolute;
  top: 0px;
  left: 0rem;
  width: 1.0rem;
  height: 1.0rem;
  z-index: 10;
}

@media (max-width: 991px) {
  .list-unstyled ol li:not(:first-of-type),
  .list-unstyled ul li:not(:first-of-type) {
    padding-left: 1.0rem !important;
  }
  .list-unstyled ol li:not(:first-of-type):before,
  .list-unstyled ul li:not(:first-of-type):before {
    width: 0.8rem !important;
  }
}

ul.list-unstyled li {
  margin-bottom: 0.75rem;
}

ol.list-standard,
ul.list-standard {
  margin-top: 0;
  margin-bottom: 1rem;
  margin-left: 1rem;
}

ol.list-standard ol,
ul.list-standard ul,
ol.list-standard ul,
ul.list-standard ol {
  margin-bottom: 0;
  margin-left: 1rem;
}

/* list-line */
.list-line {
  list-style: none;
  padding-left: 0;
}

.list-line li {
  position: relative;
  padding-left: 1.0rem;
}

.list-line li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\2043";
  font-weight: 800;
  color: #202879;
}

/* list-arrow-v1 NEW */
.list-arrow-v1 {
  list-style: none;
  padding-left: 0;
}

.list-arrow-v1 li {
  position: relative;
  padding-left: 2.5rem;
  margin-top: 0.5rem;
}

.list-arrow-v1 li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f35a";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 1.5rem;
  color: #343D91;
  line-height: 1.2;
}

.bg-primary-soft .list-arrow-v1 li::before {
  color: #343D91 !important;
}

.bg-primary-light .list-arrow-v1 li::before {
  color: #343D91 !important;
}

.bg-alternate-soft .list-arrow-v1 li::before {
  color: #343D91 !important;
}

.bg-alternate-light .list-arrow-v1 li::before {
  color: #343D91 !important;
}

.bg-alternate-saturated .list-arrow-v1 li::before {
  color: #343D91 !important;
}

.bg-success .list-arrow-v1 li::before {
  color: #343D91 !important;
}

.bg-warning .list-arrow-v1 li::before {
  color: #343D91 !important;
}

.bg-light .list-arrow-v1 li::before {
  color: #343D91 !important;
}

.bg-primary .lists-title,
.bg-primary .list-arrow-v1 {
  color: #dddfef !important;
}

.bg-primary .list-arrow-v1 li::before {
  color: #4D55A2 !important;
}

.bg-primary-saturated .lists-title,
.bg-primary-saturated .list-arrow-v1 {
  color: #dddfef !important;
}

.bg-primary-saturated .list-arrow-v1 li::before {
  color: #4D55A2 !important;
}

.bg-primary-dark .lists-title,
.bg-primary-dark .list-arrow-v1 {
  color: #dddfef !important;
}

.bg-primary-dark .list-arrow-v1 li::before {
  color: #4D55A2 !important;
}

.bg-alternate .lists-title,
.bg-alternate .list-arrow-v1 {
  color: #dddfef !important;
}

.bg-alternate .list-arrow-v1 li::before {
  color: #4D55A2 !important;
}

.bg-alternate-dark .lists-title,
.bg-alternate-dark .list-arrow-v1 {
  color: #dddfef !important;
}

.bg-alternate-dark .list-arrow-v1 li::before {
  color: #4D55A2 !important;
}

.bg-secondary .lists-title,
.bg-secondary .list-arrow-v1 {
  color: #dddfef !important;
}

.bg-secondary .list-arrow-v1 li::before {
  color: #4D55A2 !important;
}

.bg-info .lists-title,
.bg-info .list-arrow-v1 {
  color: #dddfef !important;
}

.bg-info .list-arrow-v1 li::before {
  color: #4D55A2 !important;
}

.bg-danger .lists-title,
.bg-danger .list-arrow-v1 {
  color: #dddfef !important;
}

.bg-danger .list-arrow-v1 li::before {
  color: #4D55A2 !important;
}

.bg-dark .lists-title,
.bg-dark .list-arrow-v1 {
  color: #dddfef !important;
}

.bg-dark .list-arrow-v1 li::before {
  color: #4D55A2 !important;
}

/* list-check-v1 NEW */
.list-check-v1 {
  list-style: none;
  padding-left: 0;
}

.list-check-v1 li {
  position: relative;
  padding-left: 2.5rem;
  margin-top: 0.5rem;
}

.list-check-v1 li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 1.5rem;
  color: #343D91;
  line-height: 1.2;
}

.bg-primary-soft .list-check-v1 li::before {
  color: #343D91 !important;
}

.bg-primary-light .list-check-v1 li::before {
  color: #343D91 !important;
}

.bg-alternate-soft .list-check-v1 li::before {
  color: #343D91 !important;
}

.bg-alternate-light .list-check-v1 li::before {
  color: #343D91 !important;
}

.bg-alternate-saturated .list-check-v1 li::before {
  color: #343D91 !important;
}

.bg-success .list-check-v1 li::before {
  color: #343D91 !important;
}

.bg-warning .list-check-v1 li::before {
  color: #343D91 !important;
}

.bg-light .list-check-v1 li::before {
  color: #343D91 !important;
}

.bg-primary .list-check-v1 {
  color: #dddfef !important;
}

.bg-primary .list-check-v1 li::before {
  color: #4D55A2 !important;
}

.bg-primary-saturated .list-check-v1 {
  color: #dddfef !important;
}

.bg-primary-saturated .list-check-v1 li::before {
  color: #4D55A2 !important;
}

.bg-primary-dark .list-check-v1 {
  color: #dddfef !important;
}

.bg-primary-dark .list-check-v1 li::before {
  color: #4D55A2 !important;
}

.bg-alternate .list-check-v1 {
  color: #dddfef !important;
}

.bg-alternate .list-check-v1 li::before {
  color: #4D55A2 !important;
}

.bg-alternate-dark .list-check-v1 {
  color: #dddfef !important;
}

.bg-alternate-dark .list-check-v1 li::before {
  color: #4D55A2 !important;
}

.bg-secondary .list-check-v1 {
  color: #dddfef !important;
}

.bg-secondary .list-check-v1 li::before {
  color: #4D55A2 !important;
}

.bg-info .list-check-v1 {
  color: #dddfef !important;
}

.bg-info .list-check-v1 li::before {
  color: #4D55A2 !important;
}

.bg-danger .list-check-v1 {
  color: #dddfef !important;
}

.bg-danger .list-check-v1 li::before {
  color: #4D55A2 !important;
}

.bg-dark .list-check-v1 {
  color: #dddfef !important;
}

.bg-dark .list-check-v1 li::before {
  color: #4D55A2 !important;
}

/* list-icon */
.list-icon {
  list-style: none;
  padding-left: 0;
}

.list-icon li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1.8rem;
}

.list-icon li::before {
  position: absolute;
  top: 0;
  left: 0;
}

.list-icon-star li::before {
  content: "\f005";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  color: #202879;
}

.list-lg-group .list-group-item {
  padding: 1.05rem 1.5rem;
}

.d-block ol li {
  margin: 0.5rem 0 0.5rem 1.75rem;
  line-height: 1.325rem;
}

.fa-ul li ul {
  display: block;
  padding: 0;
  margin: 6px 0 12px;
}

.fa-ul li.text-editor li {
  list-style: square;
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0px;
}

/*------------------------------------
  Backgrounds
------------------------------------*/
.bg-lg-white {
  background-color: tranparent;
}

@media (min-width: 992px) {
  .bg-lg-white {
    background-color: #FFFFFF !important;
  }
}

.bg-light-10 {
  background-color: rgba(250, 251, 253, 0.35) !important;
}

.bg-primary-soft-10 {
  background-color: rgba(221, 223, 239, 0.6) !important;
}

.bg-gray-100 {
  background-color: #fbfbfb !important;
}

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

.bg-gray-200 {
  background-color: #f9f9f9 !important;
}

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

.bg-gray-300 {
  background-color: #f1f1f1 !important;
}

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

.bg-gray-400 {
  background-color: #b4d9c5 !important;
}

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

.bg-gray-500 {
  background-color: #97afa2 !important;
}

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

.bg-gray-600 {
  background-color: #8ba597 !important;
}

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

.bg-gray-700 {
  background-color: #7e8892 !important;
}

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

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

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

.bg-gray-900 {
  background-color: #161616 !important;
}

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

.bg-primary-darker {
  background-color: #0F165E;
}

@media (min-width: 768px) {
  .bg-md-primary-darker {
    background-color: #0F165E;
  }
}

.bg-white-11 {
  background-color: rgba(255, 255, 255, 0.11) !important;
}

a.bg-hover-light:hover {
  background-color: whitesmoke !important;
}

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

.bg-primary-opacity {
  background-color: rgba(32, 40, 121, 0.75) !important;
}

.bg-dark-opacity {
  background-color: rgba(0, 0, 0, 0.33) !important;
}

.bg-dark-opacity-50 {
  background-color: rgba(0, 0, 0, 0.5) !important;
}

.bg-white-opacity {
  background-color: rgba(255, 255, 255, 0.33) !important;
}

/*------------------------------------
  Background Decoration
------------------------------------*/
.bg-svg-wave-wrapper {
  position: relative;
}

@media (min-width: 992px) {
  .bg-svg-wave-wrapper {
    margin-bottom: 72px;
  }
}

.bg-svg-wave-wrapper .wpapper-inner {
  padding-top: 5.0rem;
  padding-bottom: 4.0rem;
}

@media (min-width: 992px) {
  .bg-svg-wave-wrapper .wpapper-inner {
    padding-bottom: 1.0rem;
  }
}

.bg-svg-wave-wrapper .wpapper-lg-inner {
  padding-top: 6.0rem;
  padding-bottom: 5.5rem;
}

@media (min-width: 992px) {
  .bg-svg-wave-wrapper .wpapper-lg-inner {
    padding-bottom: 2.0rem;
  }
}

.bg-svg-wave-wrapper .svg-wave {
  position: absolute;
  display: none;
}

@media (min-width: 992px) {
  .bg-svg-wave-wrapper .svg-wave {
    display: block !important;
  }
}

/*------------------------------------
  Bottom Svg Decoration-1
------------------------------------*/
.bottom-svg-decoration {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

/*------------------------------------
  Bottom Svg Decoration-2
------------------------------------*/
.bg-bottom-fixed {
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.bg-bottom-wrapper {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.bg-bottom-wave-1 {
  height: 62px;
}

/*
bg-bottom-wave-2
*/
@media (min-width: 1680px) {
  .bg-bottom-wave-2 {
    height: 152px;
  }
}

@media (min-width: 1200px) and (max-width: 1679px) {
  .bg-bottom-wave-2 {
    height: 110px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .bg-bottom-wave-2 {
    height: 80px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .bg-bottom-wave-2 {
    height: 60px;
  }
}

/*
bg-bottom-wave-3
*/
@media (min-width: 2100px) {
  .bg-bottom-wave-3 {
    height: 565px;
  }
}

@media (min-width: 1800px) and (max-width: 2099px) {
  .bg-bottom-wave-3 {
    height: 535px;
  }
}

@media (min-width: 1640px) and (max-width: 1799px) {
  .bg-bottom-wave-3 {
    height: 465px;
  }
}

@media (min-width: 1440px) and (max-width: 1639px) {
  .bg-bottom-wave-3 {
    height: 425px;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .bg-bottom-wave-3 {
    height: 365px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .bg-bottom-wave-3 {
    height: 305px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .bg-bottom-wave-3 {
    height: 255px;
  }
}

/*
bg-bottom-wave-3
*/
@media (min-width: 2100px) {
  .bg-bottom-wave-4 {
    height: 480px;
  }
}

@media (min-width: 1800px) and (max-width: 2099px) {
  .bg-bottom-wave-4 {
    height: 455px;
  }
}

@media (min-width: 1640px) and (max-width: 1799px) {
  .bg-bottom-wave-4 {
    height: 385px;
  }
}

@media (min-width: 1440px) and (max-width: 1639px) {
  .bg-bottom-wave-4 {
    height: 355px;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .bg-bottom-wave-4 {
    height: 305px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .bg-bottom-wave-4 {
    height: 255px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .bg-bottom-wave-4 {
    height: 210px;
  }
}

/*------------------------------------
  Background Size
------------------------------------*/
.cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .cover.to-static {
    background-size: auto;
    background-position: top center;
  }
}

/*------------------------------------
  Background Spacing
------------------------------------*/
.bg-frame-padding {
  padding: 2.25rem;
}

@media (max-width: 991px) {
  .bg-frame-padding {
    padding: 1.65rem;
  }
}

/*------------------------------------
  Background Border
------------------------------------*/
.bg-primary-soft.bg-frame-border {
  border: 3px solid #dadcee;
}

.bg-primary-light.bg-frame-border {
  border: 3px solid #4c539f;
}

.bg-alternate-soft.bg-frame-border {
  border: 3px solid #950000;
}

.bg-alternate-light.bg-frame-border {
  border: 3px solid #ff3333;
}

.bg-alternate-saturated.bg-frame-border {
  border: 3px solid #f60300;
}

.bg-success.bg-frame-border {
  border: 3px solid #c3e0a2;
}

.bg-warning.bg-frame-border {
  border: 3px solid #fff599;
}

.bg-light.bg-frame-border {
  border: 3px solid #f7f8fc;
}

.bg-primary.bg-frame-border {
  border: 3px solid #1c2369;
}

.bg-primary-saturated.bg-frame-border {
  border: 3px solid #2f3782;
}

.bg-primary-dark.bg-frame-border {
  border: 3px solid #0c124c;
}

.bg-alternate.bg-frame-border {
  border: 3px solid #af0000;
}

.bg-alternate-dark.bg-frame-border {
  border: 3px solid #850000;
}

.bg-secondary.bg-frame-border {
  border: 3px solid #0c124c;
}

.bg-info.bg-frame-border {
  border: 3px solid #6dcdf9;
}

.bg-danger.bg-frame-border {
  border: 3px solid #e63d2e;
}

.bg-dark.bg-frame-border {
  border: 3px solid #181b1e;
}

/*------------------------------------
  Gradients
------------------------------------*/
.gradient-primary {
  background-color: transparent;
  background-image: linear-gradient(to right, #8c98a4, #202879);
}

.gradient-dark {
  background-color: #161616;
  background-image: linear-gradient(to right, #161616, #000);
}

@media (max-width: 991.98px) {
  .gradient-primary-md {
    background-color: transparent;
    background-image: linear-gradient(to right, #8c98a4, #202879);
  }
}

/*----------------------------------
 Basic Overlays
------------------------------------*/
.overlay {
  position: relative;
}

.overlay .container {
  position: relative;
}

.overlay:before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
}

.overlay-black:before {
  background-color: rgba(0, 0, 0, 0.5);
}

.overlay-blue:before {
  background-color: rgba(23, 29, 90, 0.5);
}

.overlay-red:before {
  background: linear-gradient(0deg, rgba(44, 44, 44, 0.2), rgba(224, 23, 3, 0.6));
}

.overlay-blue:before {
  background-color: rgba(23, 29, 90, 0.5);
}

/*----------------------------------
  Ui Overlays
------------------------------------*/
.ui-overlay {
  position: relative;
}

.ui-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.ui-overlay--dark::after {
  background-color: rgba(27, 30, 36, 0.3);
}

.ui-overlay--light::after {
  background-color: rgba(255, 255, 255, 0.3);
}

.ui-overlay--darkness::after {
  background-color: rgba(27, 30, 36, 0.6);
}

.ui-overlay--lightness::after {
  background-color: rgba(255, 255, 255, 0.6);
}

.ui-overlay--darker::after {
  background-color: rgba(27, 30, 36, 0.8);
}

.ui-overlay--lighter::after {
  background-color: rgba(255, 255, 255, 0.8);
}

.ui-overlay--dark .text-overlay-dark,
.ui-overlay--darkness .text-overlay-dark,
.ui-overlay--darker .text-overlay-dark {
  color: #454c91 !important;
}

.ui-overlay__inner {
  position: relative;
  z-index: 1;
}

/*------------------------------------
  SVG fills
------------------------------------*/
.bg-black {
  background-color: #000;
}

.bg-primary {
  fill: #202879 !important;
}

.bg-secondary {
  fill: #8c98a4 !important;
}

.bg-success {
  fill: #009946 !important;
}

.bg-info {
  fill: #0373E7 !important;
}

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

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

.bg-light {
  fill: whitesmoke !important;
}

.bg-dark {
  fill: #161616 !important;
}

/*----------------------------------
  Page-Nav-1
------------------------------------*/
.page-nav-1 ul {
  padding: 0;
  margin: 0;
}

.page-nav-1 ul li {
  display: inline-block;
  margin-bottom: 4px;
  font-weight: 400;
}

.page-nav-1 ul li a, .page-nav-1 ul li span {
  border: 1px solid #202879;
  text-align: center;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
}

.page-nav-1 ul li.active a, .page-nav-1 ul li.active span {
  background: #202879;
  color: #FFFFFF;
  border: 1px solid transparent;
}

/*------------------------------------
  Badge
------------------------------------*/
.badge {
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

.badge-circle {
  padding-top: 5px;
  padding-bottom: 5px;
}

.badge.badge-top-left {
  top: 1.0rem;
  left: 1.0rem;
}

.badge.badge-top-left-2 {
  top: 1.5rem;
  left: 1.5rem;
}

.badge.badge-top-right {
  top: 1.0rem;
  right: 1.0rem;
}

.badge.badge-top-right-2 {
  top: 1.5rem;
  right: 1.5rem;
}

.badge.badge-bottom-left {
  bottom: 1.0rem;
  left: 1.0rem;
}

.badge.badge-bottom-left-2 {
  bottom: 1.5rem;
  left: 1.5rem;
}

.badge.badge-bottom-right {
  bottom: 1.0rem;
  right: 1.0rem;
}

.badge.badge-bottom-right-2 {
  bottom: 1.5rem;
  right: 1.5rem;
}

/*----------------------------------
  Progress
------------------------------------*/
.progress {
  background-color: #cccee7;
  border-radius: 0.5rem;
  box-shadow: none !important;
}

/*----------------------------------
  Radial-Progress
------------------------------------*/
.radial-progress {
  position: relative;
  max-width: 150px;
  margin: 0 auto;
}

.radial-progress .progressbar-text {
  font-size: 1.9em;
  font-weight: 500;
  padding-bottom: 5px !important;
  color: #161616 !important;
}

.radial-prog-area.radial-white .radial-progress .progressbar-text {
  color: #ffffff !important;
}

.radial-progress .progressbar-text:after {
  content: '%';
}

.radial-progress .progress-title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  letter-spacing: 0;
  text-align: center;
  transform: translate(-50%, 15px);
  color: #343D91;
}

/*----------------------------------
  Tabs
------------------------------------*/
.nav-tabs--v1 .nav-item {
  margin-right: 3px;
}

.nav-tabs--v1 .nav-item:last-child {
  margin-right: 0;
}

.nav-tabs--v1 .nav-link {
  border-top-width: 3px;
}

.nav-tabs--v1 .nav-link:hover, .nav-tabs--v1 .nav-link:focus {
  border-color: transparent;
}

.nav-tabs--v1 .nav-link.active {
  border-top-color: #202879;
}

.nav-tabs--v1 .nav-item.show .nav-link {
  border-top-color: #202879;
}

.nav-tabs--v1 .nav-link.active:hover, .nav-tabs--v1 .nav-link.active:focus {
  border-left-color: #f9f9f9;
  border-right-color: #f9f9f9;
  border-top-color: #202879;
}

.nav-tabs--v1 .nav-item.show .nav-link:hover, .nav-tabs--v1 .nav-item.show .nav-link:focus {
  border-left-color: #f9f9f9;
  border-right-color: #f9f9f9;
  border-top-color: #202879;
}

.tab-content--v1 {
  padding: 1.25rem 1rem;
  margin-top: -1px;
  border: solid 1px #f9f9f9;
  border-bottom-left-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

.tab-content--v1 p:last-of-type {
  margin-bottom: 0;
}

/*------------------------------------
  Tabs Bordered
------------------------------------*/
.nav-bordered .nav-link {
  color: inherit;
  border-bottom: solid 3px transparent;
}

.nav-bordered .nav-link.active,
.nav-bordered .show > .nav-link {
  color: #202879;
  border-bottom: solid 3px #202879;
}

/*------------------------------------
  Tabs As Pills
------------------------------------*/
.tabs-as-pills .nav-tabs {
  border: none;
  border-radius: 1.5rem;
  width: 50%;
}

.tabs-as-pills .nav-tabs .nav-link {
  border-top-right-radius: 1.5rem;
  border-bottom-right-radius: 1.5rem;
}

.tabs-as-pills .nav-tabs .nav-link:hover {
  border: none;
  outline: none !important;
}

.tabs-as-pills .nav-tabs .nav-link.active {
  border-top-left-radius: 1.5rem;
  border-bottom-left-radius: 1.5rem;
}

.tabs-as-pills .nav-tabs.tabs-primary {
  background: #202879;
}

.tabs-as-pills .nav-tabs.tabs-primary .nav-link {
  color: #FFFFFF;
}

.tabs-as-pills .nav-tabs.tabs-primary .nav-link.active {
  color: #202879;
  border: 2px solid #202879;
}

.tabs-as-pills .nav-tabs.tabs-secondary {
  background: #f1f1f1;
}

.tabs-as-pills .nav-tabs.tabs-secondary .nav-link {
  color: #7e8892;
}

.tabs-as-pills .nav-tabs.tabs-secondary .nav-link.active {
  color: #202879;
  border: 2px solid #f1f1f1;
  outline: none !important;
}

.tabs-as-pills .nav-tabs.tabs-pos-right {
  margin-left: auto;
}

.tabs-as-pills .nav-tabs.tabs-pos-left {
  margin-right: auto;
}

.tabs-as-pills .nav-tabs.tabs-pos-center {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .tabs-as-pills .nav-tabs {
    width: 80%;
    margin: 0 auto;
  }
}

/*------------------------------------
  Flat-Icons
------------------------------------*/
.ui-item-top {
  display: block;
}

.ui-item-top .icon {
  line-height: 1.0rem;
  position: relative;
  margin: 0 auto;
}

.ui-item-top .icon span {
  color: #202879;
}

/* =========================================== */
/*  ======== ADVANCED COMPONENTS ============= */
/* =========================================== */
/*------------------------------------
  Accordion
------------------------------------*/
.accordion-header {
  cursor: pointer;
  background-color: #FFFFFF;
}

.accordion-header h6 {
  font-size: 1.125rem;
  letter-spacing: -0.05rem;
}

.accordion-control {
  font-size: 90%;
  transition: transform .3s ease-in;
}

.accordion-header:not(.collapsed):not(.bg-primary):not(.bg-primary-saturated) {
  background-color: #fafbfd !important;
}

.accordion-header:not(.collapsed) .accordion-control {
  transform: rotate(-180deg);
}

.accordion-header:not(.collapsed):not(.bg-primary):not(.bg-primary-saturated) .accordion-control h6 {
  color: #161616;
}

/*------------------------------------
  Callout
------------------------------------*/
.ui-callout {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border-width: 1px 1px 1px 0.25rem;
  border-color: #f1f1f1;
  border-style: solid;
  border-radius: 0.25rem;
}

.ui-callout-primary {
  border-left-color: #202879;
}

.ui-callout-secondary {
  border-left-color: #8c98a4;
}

.ui-callout-success {
  border-left-color: #009946;
}

.ui-callout-info {
  border-left-color: #0373E7;
}

.ui-callout-warning {
  border-left-color: #ffc107;
}

.ui-callout-danger {
  border-left-color: #dc3545;
}

.ui-callout-light {
  border-left-color: whitesmoke;
}

.ui-callout-dark {
  border-left-color: #161616;
}

/*------------------------------------
  Card Flush
------------------------------------*/
.card.card-flush {
  border: 0;
}

.card.card-flush .card-header,
.card.card-flush .card-body,
.card.card-flush .card-footer {
  border: 0;
}

/*------------------------------------
  Card Components
------------------------------------*/
.card .date-badget {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  background: #dc3545;
  width: 55px;
  height: 55px;
  padding: 12.5px 0;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  -webkti-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.card .date-badget .day {
  font-size: 16px;
  line-height: 1;
}

.card .date-badget .month {
  font-size: 11px;
  text-transform: uppercase;
}

.card a:hover {
  text-decoration: none;
  color: #202879;
}

.card a .card-title {
  line-height: 1.7rem;
}

.card a.btn:hover {
  color: #FFFFFF;
}

.card-pricing .card ul li {
  margin-bottom: 1.5rem;
}

.card.ui-card .card-header-title {
  margin-bottom: 0;
  line-height: 1.4;
}

.card.ui-card .card-body .list-group-item .h6 {
  font-size: 1.125rem;
}

.card.ui-card .card-header-tabs {
  margin: 0 0 -1.25rem 0;
}

.card.ui-card .card-header-tabs .nav-item {
  margin-right: 1.25rem;
}

.card.ui-card .card-header-tabs .nav-item:last-child {
  margin-right: 0;
}

.card.ui-card .card-header-tabs .nav-link {
  transition: all .2s;
  color: #8ba597;
  padding: 0;
  border-width: 0;
  padding-bottom: 1.25rem;
}

.card.ui-card .card-header-tabs .nav-link.active {
  border-bottom: 3px solid #202879;
}

/*----------------------------------
  Quote-Stars
------------------------------------*/
.text-quote-stars {
  color: #F9A825;
}

/*----------------------------------
  Blockquote-v1
------------------------------------*/
.blockquote-v1 {
  padding: 1.5rem 1.25rem;
  background-color: whitesmoke;
  font-size: 1.25rem;
  font-weight: 300;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

.blockquote-v1--left {
  border-left: solid 0.25rem #202879;
}

.blockquote-v1--right {
  border-right: solid 0.25rem #202879;
}

/*----------------------------------
  Blockquote-v2
------------------------------------*/
.ui-blockquote-v2 {
  position: relative;
  background-color: #FFFFFF;
  box-shadow: 5px 6px 9px -6px rgba(0, 0, 0, 0.15);
  padding: 1.875rem 1.875rem 1.875rem 3.75rem;
}

.ui-blockquote-v2::before {
  content: "\201C";
  position: absolute;
  width: 3.75rem;
  margin: -1.5625rem 0 0 -2.5rem;
  color: #202879;
  font-size: 3.75rem;
}

.ui-blockquote-v2::after {
  content: "";
  position: absolute;
  bottom: -1.875rem;
  left: 3.75rem;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #fff transparent transparent transparent;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
}

/*----------------------------------
	Blockquote-v2 Blank
------------------------------------*/
.ui-blockquote-v2.blockquote-blank {
  padding: 1.875rem;
  border: 1px solid rgba(200, 200, 200, 0.15);
}

.ui-blockquote-v2.blockquote-blank::before {
  content: "" !important;
  position: relative;
  width: 0;
  margin: 0;
  color: tranparent;
  font-size: 0;
}

/*----------------------------------
	Icon-Blocks
------------------------------------*/
.blocks-icon .match-Height:hover .display-4,
.blocks-icon .match-Height:hover .display-5 {
  -ms-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
}

.blocks-icon .match-Height .display-4,
.blocks-icon .match-Height .display-5 {
  position: relative;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}

/* ---------------------------------
 Icon-Shapes
--------------------------------- */
/* icon-shapes-1 */
.icon-shapes-1 {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.icon-shapes-1 .icon-item {
  line-height: 1.3;
  position: relative;
}

.icon-shapes-1 .icon-item:after {
  position: absolute;
  top: -7px;
  left: 15px;
  content: '';
  width: 60px;
  height: 60px;
  background: #dddfef;
  z-index: -1;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

/* icon-shapes-2 */
.icon-shapes-2 ul {
  padding: 0;
  margin: 0;
}

.icon-shapes-2 ul li {
  list-style-type: none;
  padding: 0;
  margin-top: 2.0rem;
}

.icon-shapes-2 ul li span {
  position: relative;
  display: block;
  height: 60px;
  width: 60px;
  border-width: 2px;
  border-style: solid;
  border-color: #4D55A2;
  border-radius: 100%;
  background: #dddfef;
}

.icon-shapes-2 ul li:hover span {
  transition: transform .3s ease-in-out;
  transform: rotate(20deg);
}

.icon-shapes-2 ul li span i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* icon-shapes-3 */
.icon-shapes-3 ul {
  padding: 0;
  margin: 0;
}

.icon-shapes-3 ul li {
  list-style-type: none;
  padding: 0;
  margin-top: 2.0rem;
}

.icon-shapes-3 ul li span {
  position: relative;
  display: block;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  background: #343D91;
  background: -moz-linear-gradient(-45deg, #343D91 0%, #343D91 49%, #0F165E 50%, #0F165E 100%);
  background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #343D91), color-stop(85%, #343D91), color-stop(86%, #0F165E), color-stop(100%, #0F165E));
  background: -webkit-linear-gradient(-45deg, #343D91 0%, #343D91 49%, #0F165E 50%, #0F165E 100%);
  background: -o-linear-gradient(-45deg, #343D91 0%, #343D91 49%, #0F165E 50%, #0F165E 100%);
  background: -ms-linear-gradient(-45deg, #343D91 0%, #343D91 49%, #0F165E 50%, #0F165E 100%);
  background: linear-gradient(135deg, #343D91 0%, #343D91 49%, #0F165E 50%, #0F165E 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='lighten($primary, 6%)', endColorstr='darken($primary, 3%)',GradientType=1 );
}

.icon-shapes-3 ul li:hover span {
  transition: transform .3s ease-in-out;
  transform: rotate(20deg);
}

.icon-shapes-3 ul li span i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* icon-shapes-4 */
.icon-shapes-4 .item-wrapper {
  padding: 2.0rem 2.0rem 2.5rem 2.0rem;
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: 1.75rem;
  transition: all ease-in-out 0.3s;
  z-index: 3;
}

.icon-shapes-4 .item-wrapper:hover {
  transform: scale(1.05);
}

.icon-shapes-4 .item-wrapper .icon-circle-shape {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 5px solid #FFFFFF;
  z-index: 1;
}

.icon-shapes-4.shape-border-soft .item-wrapper .icon-circle-shape {
  border: 10px solid #dddfef;
}

.icon-shapes-4 .item-wrapper i {
  position: absolute;
  top: -1.9rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2rem;
  padding: 0.825rem;
  z-index: 2;
}

.icon-shapes-4.shape-border-soft .item-wrapper i {
  top: -1.9rem;
  font-size: 1.5rem;
  padding: 1.1rem;
}

.icon-shapes-4 .item-wrapper .ui-teaser {
  display: block;
  font-weight: 600;
  margin-top: 1.5rem;
}

.icon-shapes-4.shape-border-soft .item-wrapper .ui-teaser {
  margin-top: 1.0rem;
}

/*------------------------------------
  Step Number
------------------------------------*/
.icon-shape-bg {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
  transition: all ease-in-out 0.3s;
}

i.icon-step-item {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 800;
  line-height: 1;
}

.step-icon-bottom {
  position: absolute;
  right: 2.0rem;
  bottom: 2.0rem;
  font-size: 4.0rem;
  line-height: 4.0rem;
  z-index: -1;
  color: rgba(221, 223, 239, 0.85);
  transform: rotate(15deg);
}

.icon-shapes-4 .step-icon-bottom {
  z-index: 2 !important;
}

.step-num-top {
  width: 50%;
  position: absolute;
  top: 3.5rem;
  left: 50%;
  font-size: 70px;
  font-weight: 800;
  line-height: 70px;
  z-index: -1;
  color: rgba(0, 0, 0, 0.075);
  transform: translate(-50%, -50%);
}

.step-num-bottom {
  position: absolute;
  right: 2rem;
  bottom: 1rem;
  font-size: 70px;
  font-weight: 800;
  line-height: 70px;
  z-index: 1;
  color: rgba(0, 0, 0, 0.075);
}

/*----------------------------------
	Timeline
------------------------------------*/
.ui-timeline {
  border-left: 2px solid #f4f4f4;
  margin-left: 0.625rem;
}

.ui-timeline__item {
  position: relative;
  padding-left: 1.25rem;
}

.ui-timeline__item::before {
  content: "";
  position: absolute;
  left: calc(-0.6875rem / 2 - 2px / 2);
  top: 0.3125rem;
  width: 0.6875rem;
  height: 0.6875rem;
  background-color: #343D91;
  border-radius: 50%;
}

.ui-timeline__item:not(:last-child) {
  margin-bottom: 1.375rem;
}

@media (min-width: 768px) {
  .ui-timeline {
    margin-left: 1.875rem;
  }
  .ui-timeline__item {
    padding-left: 1.875rem;
  }
}

/*------------------------------------
  Vertical Steps
------------------------------------*/
.list-group.vertical-steps {
  padding-left: 10px;
}

.list-group.vertical-steps .list-group-item {
  border: none;
  border-left: 3px solid #eeeeee;
  box-sizing: border-box;
  border-radius: 0;
  counter-increment: step-counter;
  padding-left: 20px;
  padding-right: 0px;
  padding-bottom: 20px;
  padding-top: 0px;
}

.list-group.vertical-steps .list-group-item.active {
  background-color: transparent;
  color: inherit;
}

.list-group.vertical-steps .list-group-item:last-child {
  border-left: 3px solid transparent;
  padding-bottom: 0;
}

.list-group.vertical-steps .list-group-item::before {
  border-radius: 50%;
  background-color: #cccee7;
  color: #161616;
  font-weight: 700;
  content: counter(step-counter);
  display: inline-block;
  float: left;
  height: 32px;
  line-height: 32px;
  margin-left: -38px;
  text-align: center;
  width: 32px;
}

.list-group.vertical-steps .list-group-item span, .list-group.vertical-steps .list-group-item a {
  display: block;
  overflow: hidden;
  padding-top: 5px;
  margin-left: 4px;
  line-height: 1.4rem;
}

.list-group.vertical-steps .list-group-item.active::before {
  background-color: #202879;
  color: #FFFFFF;
}

.list-group.vertical-steps .list-group-item.completed {
  border-left: 3px solid #202879;
}

.list-group.vertical-steps .list-group-item.completed::before {
  background-color: #202879;
  color: #FFFFFF;
}

.list-group.vertical-steps .list-group-item.completed:last-child {
  border-left: 3px solid transparent;
}

/*------------------------------------
  Categories
------------------------------------*/
.categories-1 {
  padding: 0;
}

.categories-1 li {
  position: relative;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dotted #f1f1f1;
  list-style: none;
}

.categories-1 li:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.categories-1 li a {
  display: block;
  color: #000;
}

.categories-1 li a span {
  position: absolute;
  right: 0;
  top: 0;
  color: #ccc;
}

.categories-1 li a i {
  font-size: 12px;
}

.categories-1 li a:hover {
  padding-left: 10px;
  color: #202879;
}

.categories-1 li.active a {
  color: #000;
  font-style: italic;
}

/* =========================================== */
/*  ============= SECTIONS =================== */
/* =========================================== */
/*----------------------------------
  Hero Image
------------------------------------*/
.ui-hero-img {
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

/*----------------------------------
  Promo Block
------------------------------------*/
.ui-promo-block {
  position: relative;
  min-height: 100vh;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
}

@media (max-width: 1199px) {
  .ui-promo-block {
    background-attachment: fixed;
  }
}

/*----------------------------------
  Background Arrow
------------------------------------*/
.ui-bg-arrow-wrapper {
  position: relative;
}

.ui-bg-arrow-bottom::before {
  position: absolute;
  content: "";
  left: 50%;
  margin-left: -20px;
  bottom: -25px;
  border-style: solid;
  border-width: 25px 20px 0 20px;
  border-color: #fff transparent transparent transparent;
  z-index: 3;
}

/*------------------------------------
  Clients
------------------------------------*/
.ui-clients__item {
  border-width: 1px 0 1px 1px;
  border-color: #f1f1f1;
  border-style: solid;
  padding: 20px 0;
}

.ui-clients__image {
  width: 260px;
  margin-left: auto;
  margin-right: auto;
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(0%);
  opacity: 1;
  transition: all 0.3s ease;
}

.ui-clients__image:hover {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  filter: gray;
  -webkit-filter: grayscale(100%);
  opacity: 0.6;
}

/*----------------------------------
Basic Section Office
------------------------------------*/
.contact-meta .text-right {
  width: 30%;
}

@media (max-width: 991px) {
  .contact-meta .text-right {
    width: 35%;
  }
}

/*----------------------------------
Blocks Team Basic
------------------------------------*/
.img-scale-up {
  overflow: hidden;
}

.img-scale-up img {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

.img-scale-up:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.email-icon {
  position: absolute;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #FFFFFF;
  background-color: #3949AB;
  top: -22.5px;
  font-size: 16px;
  left: 50%;
  margin-left: -22.5px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.email-icon:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  color: #FFFFFF;
}

/*
email-icon on Background Dark
*/
.bg-primary .email-icon {
  color: #FFFFFF !important;
  background-color: #283297 !important;
}

.bg-primary-saturated .email-icon {
  color: #FFFFFF !important;
  background-color: #3e49ad !important;
}

.bg-primary-dark .email-icon {
  color: #FFFFFF !important;
  background-color: #141e7f !important;
}

.bg-alternate .email-icon {
  color: #FFFFFF !important;
  background-color: #e90000 !important;
}

.bg-alternate-dark .email-icon {
  color: #FFFFFF !important;
  background-color: #bf0000 !important;
}

.bg-secondary .email-icon {
  color: #FFFFFF !important;
  background-color: #141e7f !important;
}

.bg-info .email-icon {
  color: #FFFFFF !important;
  background-color: #a6e1fb !important;
}

.bg-danger .email-icon {
  color: #FFFFFF !important;
  background-color: #ec6e62 !important;
}

.bg-dark .email-icon {
  color: #FFFFFF !important;
  background-color: #32383e !important;
}

/*----------------------------------
Blocks Team Caption
------------------------------------*/
/*------------------------------------
  Custom Caption Classes
------------------------------------*/
/*
skin_2
*/
.caption-2 figcaption {
  width: 85%;
  position: absolute;
  bottom: 3.0%;
  left: 7.5%;
}

/*
skin_3
*/
.caption-3 {
  padding-bottom: 3.5rem;
}

.caption-3 figcaption {
  width: 80%;
  position: absolute;
  bottom: 1rem;
  left: 10%;
}

/*
skin_4
*/
.caption-4 {
  padding-bottom: 1.0rem;
}

.caption-4 figcaption {
  text-align: right;
  width: 85%;
  position: absolute;
  bottom: 2.0rem;
  right: 1.5rem;
  border: 0 none !important;
}

/*----------------------------------
Blocks Team Social
------------------------------------*/
.blocks-team-social .member-card .member-img {
  overflow: hidden;
}

.blocks-team-social .member-card .member-img img {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  width: 100%;
}

.blocks-team-social .member-card .member-data {
  position: relative;
  padding-top: 40px;
  padding-bottom: 35px;
}

.blocks-team-social .member-card .member-data .plus-icon {
  position: absolute;
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #FFFFFF;
  background-color: #202879;
  top: -23px;
  font-size: 16px;
  left: 50%;
  margin-left: -22.5px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

.blocks-team-social .member-card .member-data ul {
  position: absolute;
  left: 0;
  right: 0;
  top: -25px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}

.blocks-team-social .member-card .member-data ul li {
  display: inline-block;
  margin: 0 3px;
}

.blocks-team-social .member-card .member-data ul li a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  font-size: 16px;
  background-color: #FFFFFF;
  text-align: center;
  color: #202879;
  margin-top: -5px;
  -webkit-box-shadow: 0 4px 30px -10px #202879;
  -moz-box-shadow: 0 4px 30px -10px #202879;
  box-shadow: 0 4px 30px -10px #202879;
}

.blocks-team-social .member-card .member-data ul li a:hover {
  color: #FFFFFF;
  background-color: #202879;
}

.blocks-team-social .member-card:hover .member-img img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

.blocks-team-social .member-card:hover ul {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  top: -23px;
}

.blocks-team-social .member-card:hover .plus-icon {
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -ms-transform: scale(1.4);
  -o-transform: scale(1.4);
  transform: scale(1.4);
  opacity: 0;
  visibility: hidden;
}

.blocks-team-social .member-card:hover .member-data ul {
  top: -17px;
  opacity: 1;
  visibility: visible;
}

.blocks-team-social ul.social-links {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.blocks-team-social .member-card .member-img img {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.blocks-team-social .member-card .member-data ul {
  -webkit-transition: all ease 0.4s;
  -o-transition: all ease 0.4s;
  -moz-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.blocks-team-social .member-card .member-data .plus-icon, .blocks-team-social .member-card .member-data ul li a {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

@media (max-width: 1200px) {
  .blocks-team-social .member-card .member-data .plus-icon {
    width: 35px;
    height: 35px;
    line-height: 35px;
    top: -17.5px;
    font-size: 14px;
    margin-left: -22.5px;
  }
  .blocks-team-social .member-card .member-data ul li {
    margin: 0 2px;
  }
  .blocks-team-social .member-card .member-data ul li a {
    display: inline-block;
    font-size: 13px;
    margin-top: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

/*----------------------------------
Teams
------------------------------------*/
.single-team {
  position: relative;
}

.single-team:hover {
  box-shadow: 0 0 35px rgba(0, 0, 0, 0.05);
}

.single-team img {
  width: 100%;
}

.team-hover {
  min-height: 115px;
  background-color: rgba(32, 40, 121, 0.7);
  color: #FFFFFF;
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  padding: 15px 10px;
  text-align: center;
  -webkit-transition: .4s;
  transition: 0.4s;
}

.team-hover h4 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: #FFFFFF;
}

.team-hover h4 span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin: 5px 0 15px;
}

.team-hover a {
  display: inline-block;
  color: #FFFFFF;
  padding: 0 5px;
}

.single-team {
  overflow: hidden;
}

.single-team .badge-pill {
  padding-top: 7px;
  padding-bottom: 7px;
}

.single-team:hover .team-hover {
  bottom: 0;
}

.single-team:hover .team-hover.infos-empty {
  bottom: -40px !important;
}

/*------------------------------------
  Portfolio
------------------------------------*/
.ui-portfolio-controls__item {
  display: inline-block;
  cursor: pointer;
}

.ui-portfolio-controls__item:not(:last-child)::after {
  content: "|";
  font-size: 0.71429rem;
  margin: 0 4px;
  position: relative;
  top: -2px;
  line-height: inherit;
  display: inline-block;
  vertical-align: middle;
  color: transparent;
}

@media (min-width: 992px) {
  .ui-portfolio-controls__item:not(:last-child)::after {
    color: #e6e6e6;
    margin: 0 7px 0 12px;
  }
}

.ui-portfolio-controls a {
  color: #161616;
}

.ui-portfolio-controls a.active {
  color: #202879;
}

.ui-portfolio__item {
  overflow: hidden;
  z-index: 2;
}

.ui-portfolio__image {
  display: block;
  width: 100%;
  height: auto;
  transition: all .2s ease;
}

.ui-portfolio__item:hover .ui-portfolio__image {
  transform: translate3d(0, -60px, 0);
}

.ui-portfolio__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3.75rem;
  overflow: hidden;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  color: #FFFFFF;
  background-color: #202879;
  transition: all .2s ease;
  transform: translate3d(0, 3.75rem, 0);
}

.ui-portfolio__info small {
  opacity: .7;
}

.ui-portfolio__item:hover .ui-portfolio__info {
  transform: translate3d(0, 0, 0);
}

.ui-portfolio__zoom {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  text-indent: -10000px;
}

/*----------------------------------
Contact Map
------------------------------------*/
.contact_map {
  width: 100%;
  z-index: 1;
}

.contact_map .map {
  width: 100%;
}

.contact_map .map .google_map {
  width: 100%;
  /*
	height: 500px;
	*/
}

.contact_map .map .google_map .map_container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contact_map .map .google_map .map_container #map {
  width: 100%;
  height: 65vh;
  height: calc(65vh + 60px);
}

@media only screen and (max-width: 767px) {
  .contact_map .map .google_map {
    height: 70vh;
  }
}

/* =========================================== */
/*  ============= PLUGINS ==================== */
/* =========================================== */
/* =================================
  cbpFWTabs
=================================== */
/*----------------------------------
  cbpFWTabs: Space
------------------------------------*/
.tab-frame-border {
  border: 2px solid #343D91;
}

.tab-frame-padding {
  padding: 2.25rem;
}

@media (max-width: 991px) {
  .tab-frame-padding {
    padding: 1.65rem;
  }
}

/*----------------------------------
  cbpFWTabs: Default tab style
------------------------------------*/
.tabs {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  width: 100%;
}

.tabs nav {
  text-align: center;
}

.tabs nav ul {
  position: relative;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: flex;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  -ms-box-orient: horizontal;
  -ms-box-pack: center;
  -webkit-flex-flow: row wrap;
  -moz-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}

.tabs nav ul li {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  text-align: center;
  -webkit-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.tabs nav a {
  position: relative;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 2.5;
}

.tabs nav a span {
  vertical-align: middle;
}

.tabs nav li.tab-current a {
  color: #4a4f54;
}

.tabs nav a:focus {
  outline: none;
}

.content-wrap {
  position: relative;
}

.content-wrap section {
  display: none;
  margin: 0 auto;
  padding: 2.5rem 0 0;
}

.content-wrap section.content-current {
  display: block;
}

.no-js .content-wrap section {
  display: block;
  padding-bottom: 2em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.no-flexbox nav ul {
  display: block;
}

.no-flexbox nav ul li {
  min-width: 15%;
  display: inline-block;
}

/*----------------------------------
  cbpFWTabs: Tabs Style Bar
------------------------------------*/
.tabs-style-bar nav ul li a {
  margin: 0 0.4rem 0 0;
  background-color: #4D55A2;
  color: #212529;
  transition: background-color 0.2s, color 0.2s;
}

.tabs-style-bar nav ul li:last-of-type a {
  margin: 0 !important;
}

.ui-overlay--darker .tabs-style-bar nav ul li a {
  color: #4D55A2;
  background-color: #0F165E;
}

.tabs-style-bar nav ul li a:hover,
.tabs-style-bar nav ul li a:focus {
  color: #343D91;
}

.ui-overlay--darker .tabs-style-bar nav ul li a:hover,
.ui-overlay--darker .tabs-style-bar nav ul li a:focus {
  color: #dddfef;
}

.tabs-style-bar nav ul li.tab-current a {
  background: #343D91;
  color: #fff;
}

/*----------------------------------
  cbpFWTabs: Tabs Style Line
------------------------------------*/
.tabs-style-line nav ul {
  box-shadow: inset 0 -2px #4D55A2;
}

.tabs-style-line nav a {
  padding: 0 0.4rem;
  box-shadow: inset 0 -2px #4D55A2;
  color: #4a4f54;
  text-align: center;
  line-height: 3.0rem;
  -webkit-transition: color 0.3s, box-shadow 0.3s;
  transition: color 0.3s, box-shadow 0.3s;
}

.ui-overlay--darker .tabs-style-line nav a {
  color: #4D55A2;
}

.tabs-style-line nav a:hover,
.tabs-style-line nav a:focus {
  box-shadow: inset 0 -2px #0F165E;
}

.tabs-style-line nav li.tab-current a {
  box-shadow: inset 0 -2px #343D91;
  color: #343D91;
}

/*----------------------------------
  cbpFWTabs: Tabs Style Linebox
------------------------------------*/
.tabs-style-linebox nav ul li {
  margin: 0 0.5rem 0 0;
}

.tabs-style-linebox nav ul li:last-of-type {
  margin-right: 0 !important;
}

.tabs-style-linebox nav a {
  padding: 0 1.0rem;
  color: #4a4f54;
  font-weight: 600;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.ui-overlay--darker .tabs-style-linebox nav a {
  color: #4D55A2;
}

.tabs-style-linebox nav a:hover,
.tabs-style-linebox nav a:focus {
  color: #343D91;
}

.tabs-style-linebox nav li.tab-current a {
  color: #fff;
}

.tabs-style-linebox nav a::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: #4D55A2;
  content: '';
  -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: background-color 0.3s, transform 0.3s;
  -webkit-transition-timing-function: ease, cubic-bezier(0.7, 0, 0.3, 1);
  transition-timing-function: ease, cubic-bezier(0.7, 0, 0.3, 1);
  -webkit-transform: translate3d(0, 100%, 0) translate3d(0, -3px, 0);
  transform: translate3d(0, 100%, 0) translate3d(0, -3px, 0);
}

.tabs-style-linebox nav li.tab-current a::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.tabs-style-linebox nav a:hover::after,
.tabs-style-linebox nav a:focus::after,
.tabs-style-linebox nav li.tab-current a::after {
  background: #343D91;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .tabs-style-linebox .fa-2x {
    font-size: 1.5rem !important;
  }
}

@media screen and (max-width: 767px) {
  .tabs-style-linebox .fa-2x {
    font-size: 1.1rem !important;
  }
}

/*----------------------------------
  cbpFWTabs: Tabs Style Trapezoid
------------------------------------*/
.tabs-style-tzoid {
  max-width: 1200px;
}

.tabs-style-tzoid nav ul li {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.tabs-style-tzoid nav ul li a {
  padding: 0 1.5em 0 0.3em;
  color: #ffffff;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

@media screen and (max-width: 54em) {
  .tabs-style-tzoid nav ul li a {
    padding: 0 0.5em 0 0.3em;
  }
}

.tabs-style-tzoid nav ul li a:hover,
.tabs-style-tzoid nav ul li a:focus {
  color: #fff;
}

.tabs-style-tzoid nav ul li.tab-current a {
  color: #202879;
}

.tabs-style-tzoid nav ul li.tab-current a:hover {
  color: #343D91;
}

.tabs-style-tzoid nav ul li a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  outline: 1px solid transparent;
  border-radius: 10px 10px 0 0;
  background: #343D91;
  box-shadow: inset 0 -3px 3px rgba(0, 0, 0, 0.1);
  content: '';
  -webkit-transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
  transform: perspective(5px) rotateX(0.93deg) translateZ(-1px);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.tabs-style-tzoid nav ul li.tab-current a::after {
  background: #4D55A2;
  box-shadow: none;
}

.tabs-style-tzoid .content-wrap {
  box-shadow: none;
}

/*----------------------------------
  cbpFWTabs: Tabs Style Arrow
------------------------------------*/
.tabs-style-arrow nav {
  background: #dddfef;
}

.tabs-style-arrow nav ul li a {
  font-size: 1.15rem;
  overflow: visible;
  padding: 2.0rem 0;
  line-height: 1;
  color: #4a4f54;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.tabs-style-arrow nav ul li.tab-current {
  z-index: 100;
}

.tabs-style-arrow nav ul li.tab-current a {
  background: #343D91;
  box-shadow: -1px 0 0 #0F165E;
  color: #dddfef;
}

.tabs-style-arrow nav ul li.tab-current a::after {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 10px;
  border-top-color: #343D91;
  content: '';
  pointer-events: none;
}

.tabs-style-arrow nav ul li:first-child::before {
  right: auto;
  left: 0;
}

/*----------------------------------
  cbpFWTabs: Tabs Style Underline
------------------------------------*/
.tabs-style-underline nav {
  background: #dddfef;
  border: 1px solid #fafbfd;
  border-radius: 6px;
  overflow: hidden;
}

.tabs-style-underline nav a {
  color: #4a4f54;
  font-size: 1.15rem;
  padding: 0.25em 0 0.5em;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.tabs-style-underline nav li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #343D91;
  content: '';
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-transform: translate3d(0, 150%, 0);
  transform: translate3d(0, 150%, 0);
}

.tabs-style-underline nav li.tab-current a::after {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/*----------------------------------
  cbpFWTabs: Tabs Style Linetriangle
------------------------------------*/
.tabs-style-linetriangle nav a {
  font-size: 1.15rem;
  overflow: visible;
  border-bottom: 4px solid #dddfef;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}

.tabs-style-linetriangle nav a span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 1em;
}

.tabs-style-linetriangle nav li.tab-current a:after,
.tabs-style-linetriangle nav li.tab-current a:before {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  border: solid transparent;
  content: '';
  pointer-events: none;
}

.tabs-style-linetriangle nav li.tab-current a:after {
  margin-left: -13px;
  border-width: 13px;
  border-top-color: #343D91;
}

.tabs-style-linetriangle nav li.tab-current a:before {
  margin-left: -14px;
  border-width: 14px;
  border-top-color: #343D91;
}

/* =================================
  Scrollbar
=================================== */
.mCustomScrollbar .mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar,
.mCustomScrollbar .mCS-minimal-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-color: rgba(0, 0, 0, 0.15);
}

@media (min-width: 992px) {
  .scroll-block-280 {
    height: 280px;
  }
}

@media (min-width: 992px) {
  .scroll-block-220 {
    height: 220px;
  }
}

/* =================================
  Timer
=================================== */
.ui-timer__section {
  padding: 0 10px;
  text-align: center;
  display: inline-block;
  position: relative;
}

.ui-timer__section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 4px;
  background: #FFFFFF;
  width: 1px;
  height: 30px;
}

.ui-timer__section:last-child::after {
  display: none;
}

.ui-timer__amount {
  position: relative;
  color: #FFFFFF;
  display: block;
  padding: 0 10px;
  font-size: 2rem;
  font-weight: 300;
  font-style: normal;
  line-height: 1;
}

.ui-timer__period {
  display: block;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 300;
  font-style: normal;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .ui-timer__section {
    padding: 0 20px;
  }
  .ui-timer__section::after {
    top: 4px;
  }
  .ui-timer__amount {
    font-size: 2.5rem;
  }
}

@media (min-width: 992px) {
  .ui-timer__section::after {
    top: 15px;
  }
  .ui-timer__amount {
    font-size: 2.75rem;
  }
}

/*----------------------------------
	js-timer
------------------------------------*/
.js-timer-sm .ui-timer__section .ui-timer__amount {
  font-size: 1.8rem;
  font-weight: 600 !important;
}

.js-timer-xs .ui-timer__section .ui-timer__amount {
  font-size: 1.5rem;
  font-weight: 600 !important;
}

.js-timer-border .ui-timer__section {
  border: 1px solid #ececec;
  padding: 4px;
  margin-left: 1px;
  margin-right: 1px;
}

.js-timer-dark .ui-timer__section .ui-timer__amount,
.js-timer-dark .ui-timer__section .ui-timer__period {
  color: #161616;
}

@media (min-width: 991px) and (max-width: 1199px) {
  .js-timer-sm .ui-timer__section .ui-timer__amount {
    font-size: 1.4rem;
  }
}

/* =========================================== */
/* ========= VOUCHERS ================ */
/* =========================================== */
/*------------------------------------
  Border Zig Zag
------------------------------------*/
.zz, .zz-shadow {
  max-width: 100%;
  width: 100%;
  height: 16px;
  position: absolute;
  margin-top: -3px;
}

.zz::before {
  content: '';
  display: block;
  max-width: 100%;
  margin-top: -8px;
  height: 16px;
  background: linear-gradient(0deg, transparent 10px, #fff 10px), linear-gradient(-135deg, #fff 10px, transparent 10px), linear-gradient(135deg, #fff 10px, transparent 10px);
  background-color: transparent;
  background-position: 0 center;
  background-repeat: repeat-x;
  background-size: 100% 100%, 16px 16px, 16px 16px;
  transform: rotate(180deg);
}

.zz-shadow::before {
  content: '';
  display: block;
  max-width: 100%;
  margin-top: -10px;
  height: 16px;
  background: linear-gradient(0deg, transparent 10px, #000 10px), linear-gradient(-135deg, #000 10px, transparent 10px), linear-gradient(135deg, #000 10px, transparent 10px);
  background-color: transparent;
  background-position: -2px center;
  background-repeat: repeat-x;
  background-size: 100% 100%, 16px 16px, 16px 16px;
  transform: rotate(180deg);
  opacity: 0.15;
}

/*------------------------------------
  Move up vs. down
------------------------------------*/
.move-up {
  -webkit-animation: mover 2s infinite  alternate;
  animation: mover 1s infinite  alternate;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-20px);
  }
}
