/*
 * Stream v1.0 (https://htmlstream.com)
 * Copyright Htmlstream
 * Licensed under MIT
 */
/*------------------------------------
  Default Styles
------------------------------------*/
html {
  font-size: 1rem;
}

body {
  font-weight: 400;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #2f2f2f;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-font-feature-settings: "liga", "kern";
  text-rendering: optimizelegibility;
}

a {
  color: #3fae2a;
}

a:hover {
  color: #3fae2a;
}

a:focus {
  outline: none;
}

p {
  line-height: 1.8;
}

figure {
  margin-bottom: 0;
}

hr {
  border-color: #f7f8f6;
}

[role=button] {
  cursor: pointer;
}

/*------------------------------------
  Headings
------------------------------------*/
.h1, .h2, .h3, .h4, .h5, .h6, .h7,
h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

/*------------------------------------
  Highlight Color
------------------------------------*/
::-moz-selection {
  color: #fff;
  background-color: #3fae2a;
}

::selection {
  color: #fff;
  background-color: #3fae2a;
}

.bg-primary ::-moz-selection {
  color: #3fae2a;
  background-color: #fff;
}

.bg-primary ::selection {
  color: #3fae2a;
  background-color: #fff;
}

/*----------------------------------
  Alerts
------------------------------------*/
/* Alert Icon */
.alert__icon {
  font-size: 1.25rem;
}

/* Alert Close Button */
.alert__close {
  padding: 0;
  line-height: 1.3;
  opacity: .7;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.625rem;
  transition: all .3s;
}

.alert__close--light {
  color: #fff;
}

.alert__close--dark {
  color: #2f2f2f;
}

.alert__close:hover {
  opacity: 1;
}

.alert__close:focus {
  outline: 0 none;
  box-shadow: none;
}

.alert__close--test {
  outline: 0 none;
  box-shadow: none;
}

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

.u-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;
}

/*----------------------------------
  Avatars
------------------------------------*/
.u-avatar {
  border: solid 3px #fff;
}

/*----------------------------------
  Border Radius
------------------------------------*/
.rounded-md {
  border-radius: .625rem;
}

/*----------------------------------
  Buttons
------------------------------------*/
.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;
  width: 2.625rem;
  height: 2.625rem;
  line-height: 2.625rem;
}

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

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

.btn--pill {
  border-radius: 6.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.btn--pill.btn-sm {
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.btn--pill.btn-lg {
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
}

.btn-link {
  color: #3fae2a;
}

.btn-link:hover {
  color: #3fae2a;
}

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

/*----------------------------------
  Forms
------------------------------------*/
/* Form Lable States */
.is-valid .form-label-text {
  color: #3fae2a;
}

.is-invalid .form-label-text {
  color: #fb4143;
}

.is-disabled .form-label-text {
  color: #8f95a0;
}

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

/* Forms Icon */
.form-icon-wrapper {
  position: relative;
  display: block;
}

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

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

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

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

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

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

/* Form Toggles */
.form-toggle {
  position: relative;
  cursor: pointer;
}

.form-toggle__item {
  display: block;
  padding-left: 1px;
  padding-right: 1px;
  cursor: pointer;
  width: 43px;
  height: 22px;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  color: #D8D8D8;
  border: solid 1px #D8D8D8;
  border-radius: 6.25rem;
}

.form-toggle__item i::before, .form-toggle__item i::after {
  content: "";
  display: block;
  position: absolute;
}

.form-toggle__item i::before {
  content: attr(data-uncheck-icon);
  top: 0;
  left: 0;
  width: 100%;
  line-height: 18px;
  text-align: right;
  padding: 2px 7px;
}

.form-toggle__item i::after {
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #D8D8D8;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: left .2s ease;
}

.form-toggle input[type="checkbox"],
.form-toggle input[type="radio"] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

.form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.form-toggle input[type="radio"]:checked + .form-toggle__item,
.form-toggle input[type="radio"]:checked + * .form-toggle__item {
  color: #fff;
  background-color: #3fae2a;
  border-color: #3fae2a;
  transition: all .3s ease;
}

.form-toggle input[type="checkbox"]:checked + .form-toggle__item i:before,
.form-toggle input[type="checkbox"]:checked + * .form-toggle__item i:before,
.form-toggle input[type="radio"]:checked + .form-toggle__item i:before,
.form-toggle input[type="radio"]:checked + * .form-toggle__item i:before {
  content: attr(data-check-icon);
  text-align: left;
}

.form-toggle input[type="checkbox"]:checked + .form-toggle__item i::after,
.form-toggle input[type="checkbox"]:checked + * .form-toggle__item i::after,
.form-toggle input[type="radio"]:checked + .form-toggle__item i::after,
.form-toggle input[type="radio"]:checked + * .form-toggle__item i::after {
  left: calc(100% - 19px);
  background-color: #fff;
}

.is-valid .form-toggle__item {
  color: #3fae2a;
  border: solid 1px #3fae2a;
}

.is-valid .form-toggle__item i::after {
  background-color: #3fae2a;
}

.is-valid .form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.is-valid .form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.is-valid .form-toggle input[type="radio"]:checked + .form-toggle__item,
.is-valid .form-toggle input[type="radio"]:checked + * .form-toggle__item {
  background-color: #3fae2a;
  border-color: #3fae2a;
}

.is-invalid .form-toggle__item {
  color: #fb4143;
  border: solid 1px #fb4143;
}

.is-invalid .form-toggle__item i::after {
  background-color: #fb4143;
}

.is-invalid .form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.is-invalid .form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.is-invalid .form-toggle input[type="radio"]:checked + .form-toggle__item,
.is-invalid .form-toggle input[type="radio"]:checked + * .form-toggle__item {
  background-color: #fb4143;
  border-color: #fb4143;
}

.is-disabled .form-toggle__item {
  color: #f7f8f6;
  border: solid 1px #f7f8f6;
}

.is-disabled .form-toggle__item i::after {
  background-color: #f7f8f6;
}

.is-disabled .form-toggle input[type="checkbox"]:checked + .form-toggle__item,
.is-disabled .form-toggle input[type="checkbox"]:checked + * .form-toggle__item,
.is-disabled .form-toggle input[type="radio"]:checked + .form-toggle__item,
.is-disabled .form-toggle input[type="radio"]:checked + * .form-toggle__item {
  background-color: #f7f8f6;
  border-color: #f7f8f6;
}

/* Bootstrap's Custom Controls */
.custom-control-input.is-valid:checked ~ .custom-control-label::before {
  background-color: #3fae2a;
}

.custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  background-color: #fb4143;
}

.custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: #D8D8D8;
}

/*----------------------------------
  Modals
------------------------------------*/
.modal-content {
  box-shadow: 0 0.25rem 0.6rem rgba(47, 47, 47, 0.07);
}

@media (min-width: 576px) {
  .modal-content {
    box-shadow: 0 0.5rem 1.625rem rgba(47, 47, 47, 0.07);
  }
}

/*----------------------------------
  Pager
------------------------------------*/
.pager-btn {
  min-width: 7.2rem;
}

.pager-btn.btn-sm {
  min-width: 6.2rem;
}

.pager-btn.btn-lg {
  min-width: 9.4rem;
}

/*----------------------------------
  Popover
------------------------------------*/
.popover {
  box-shadow: 0 0.25rem 0.6rem rgba(47, 47, 47, 0.07);
}

/*----------------------------------
  Progress Bars
------------------------------------*/
.progress--pill {
  border-radius: 6.25rem;
}

.u-progress-bar-vertical {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-end;
  background-color: #faf7fc;
  height: 200px;
}

.u-progress-bar-vertical__indicator {
  background-color: #3fae2a;
}

/*----------------------------------
  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,
.nav-tabs--v1 .nav-item.show .nav-link {
  border-top-color: #3fae2a;
}

.nav-tabs--v1 .nav-link.active:hover, .nav-tabs--v1 .nav-link.active:focus,
.nav-tabs--v1 .nav-item.show .nav-link:hover,
.nav-tabs--v1 .nav-item.show .nav-link:focus {
  border-left-color: #f7f8f6;
  border-right-color: #f7f8f6;
  border-top-color: #3fae2a;
}

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

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

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

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

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

/*----------------------------------
  Blockquote-v2
------------------------------------*/
.u-blockquote-v2 {
  position: relative;
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 5px 6px 9px -6px rgba(0, 0, 0, 0.15);
  padding: 1.875rem 1.875rem 1.875rem 3.75rem;
  /*
  &::before {
    content: "\201C";
    position: absolute;
    @include px-to-rem(width, 60px);
    @include px-to-rem(margin, -25px 0 0 -40px);
    color: $g-primary;
    @include px-to-rem(font-size, 60px);

  }*/
}

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

.u-blockquote-v2__image {
  width: 3.75rem;
  height: 3.75rem;
}

/*------------------------------------
  Clients
------------------------------------*/
.u-clients__item {
  /*border: {
      width: 1px 0 1px 1px;
      color: $g-hr-color;
      style: solid;
    }*/
  padding: 3rem 0;
}

.u-clients__image-payments {
  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");
  filter: gray;
  -webkit-filter: grayscale(0%);
  opacity: 1;
  transition: all 0.3s ease;
}

.u-clients__image-payments: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");
  -webkit-filter: grayscale(100%);
  opacity: .3;
}

.u-clients__image-reconciliation {
  max-width: 10rem;
  max-height: 1.5rem;
  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");
  filter: gray;
  -webkit-filter: grayscale(0%);
  opacity: 1;
  transition: all 0.3s ease;
}

.u-clients__image-reconciliation: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");
  -webkit-filter: grayscale(100%);
  opacity: .3;
}

/*------------------------------------
  Mockup (Browser)
------------------------------------*/
.u-browser-img {
  position: relative;
  top: -7px;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

/*------------------------------------
  Device (iPad)
------------------------------------*/
.u-device {
  position: relative;
  width: 85%;
  z-index: -1;
  margin-bottom: -10rem;
}

.u-device__item {
  border-radius: 2rem;
  box-shadow: 10px 15px 55px 15px rgba(140, 152, 164, 0.1);
}

/*------------------------------------
  Icon
------------------------------------*/
.u-icon {
  position: relative;
  z-index: 1;
  line-height: .7;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.125rem;
  border-radius: .25rem;
  transition: .3s ease-in-out;
}

.u-icon__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.u-icon__inner-bottom-minus {
  top: 90%;
}

/*------------------------------------
  Icon Sizes
------------------------------------*/
/* Extra Small */
.u-icon--size--xs {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 0.8125rem;
}

/* Small */
.u-icon--size--sm {
  width: 2rem;
  height: 2rem;
  font-size: 1rem;
}

/* Large */
.u-icon--size--lg {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.75rem;
}

/* Extra Large */
.u-icon--size--xl {
  width: 5rem;
  height: 5rem;
  font-size: 2.375rem;
}

/*------------------------------------
  Icon Default Styles
------------------------------------*/
/* primary */
.u-icon-primary {
  color: color-yiq(#3fae2a);
  background-color: #3fae2a;
  border-color: #3fae2a;
}

.u-icon-primary[href]:hover {
  color: color-yiq(#348f23);
  background-color: #348f23;
  border-color: #308520;
}

.u-icon-primary.disabled, .u-icon-primary:disabled {
  background-color: #3fae2a;
  border-color: #3fae2a;
}

/* secondary */
.u-icon-secondary {
  color: color-yiq(#2f2f2f);
  background-color: #2f2f2f;
  border-color: #2f2f2f;
}

.u-icon-secondary[href]:hover {
  color: color-yiq(#1c1c1c);
  background-color: #1c1c1c;
  border-color: #161616;
}

.u-icon-secondary.disabled, .u-icon-secondary:disabled {
  background-color: #2f2f2f;
  border-color: #2f2f2f;
}

/* success */
.u-icon-success {
  color: color-yiq(#3fae2a);
  background-color: #3fae2a;
  border-color: #3fae2a;
}

.u-icon-success[href]:hover {
  color: color-yiq(#348f23);
  background-color: #348f23;
  border-color: #308520;
}

.u-icon-success.disabled, .u-icon-success:disabled {
  background-color: #3fae2a;
  border-color: #3fae2a;
}

/* info */
.u-icon-info {
  color: color-yiq(#2972fa);
  background-color: #2972fa;
  border-color: #2972fa;
}

.u-icon-info[href]:hover {
  color: color-yiq(#065af7);
  background-color: #065af7;
  border-color: #0555eb;
}

.u-icon-info.disabled, .u-icon-info:disabled {
  background-color: #2972fa;
  border-color: #2972fa;
}

/* warning */
.u-icon-warning {
  color: color-yiq(#fab633);
  background-color: #fab633;
  border-color: #fab633;
}

.u-icon-warning[href]:hover {
  color: color-yiq(#f9a90e);
  background-color: #f9a90e;
  border-color: #f4a306;
}

.u-icon-warning.disabled, .u-icon-warning:disabled {
  background-color: #fab633;
  border-color: #fab633;
}

/* danger */
.u-icon-danger {
  color: color-yiq(#fb4143);
  background-color: #fb4143;
  border-color: #fb4143;
}

.u-icon-danger[href]:hover {
  color: color-yiq(#fa1c1e);
  background-color: #fa1c1e;
  border-color: #fa0f12;
}

.u-icon-danger.disabled, .u-icon-danger:disabled {
  background-color: #fb4143;
  border-color: #fb4143;
}

/* light */
.u-icon-light {
  color: color-yiq(#f6f9fc);
  background-color: #f6f9fc;
  border-color: #f6f9fc;
}

.u-icon-light[href]:hover {
  color: color-yiq(#d9e6f2);
  background-color: #d9e6f2;
  border-color: #d0e0ef;
}

.u-icon-light.disabled, .u-icon-light:disabled {
  background-color: #f6f9fc;
  border-color: #f6f9fc;
}

/* dark */
.u-icon-dark {
  color: color-yiq(#2f2f2f);
  background-color: #2f2f2f;
  border-color: #2f2f2f;
}

.u-icon-dark[href]:hover {
  color: color-yiq(#1c1c1c);
  background-color: #1c1c1c;
  border-color: #161616;
}

.u-icon-dark.disabled, .u-icon-dark:disabled {
  background-color: #2f2f2f;
  border-color: #2f2f2f;
}

/* lightgreen */
.u-icon-lightgreen {
  color: color-yiq(#A3D783);
  background-color: #A3D783;
  border-color: #A3D783;
}

.u-icon-lightgreen[href]:hover {
  color: color-yiq(#8ece66);
  background-color: #8ece66;
  border-color: #86cb5c;
}

.u-icon-lightgreen.disabled, .u-icon-lightgreen:disabled {
  background-color: #A3D783;
  border-color: #A3D783;
}

/* green2 */
.u-icon-green2 {
  color: color-yiq(#A3D783);
  background-color: #A3D783;
  border-color: #A3D783;
}

.u-icon-green2[href]:hover {
  color: color-yiq(#8ece66);
  background-color: #8ece66;
  border-color: #86cb5c;
}

.u-icon-green2.disabled, .u-icon-green2:disabled {
  background-color: #A3D783;
  border-color: #A3D783;
}

/* white */
.u-icon-white {
  color: color-yiq(#fff);
  background-color: #fff;
  border-color: #fff;
}

.u-icon-white[href]:hover {
  color: color-yiq(#ececec);
  background-color: #ececec;
  border-color: #e6e6e6;
}

.u-icon-white.disabled, .u-icon-white:disabled {
  background-color: #fff;
  border-color: #fff;
}

/* facebook */
.u-icon-facebook {
  color: color-yiq(#3b5998);
  background-color: #3b5998;
  border-color: #3b5998;
}

.u-icon-facebook[href]:hover {
  color: color-yiq(#30497c);
  background-color: #30497c;
  border-color: #2d4373;
}

.u-icon-facebook.disabled, .u-icon-facebook:disabled {
  background-color: #3b5998;
  border-color: #3b5998;
}

/* google */
.u-icon-google {
  color: color-yiq(#d14130);
  background-color: #d14130;
  border-color: #d14130;
}

.u-icon-google[href]:hover {
  color: color-yiq(#b33628);
  background-color: #b33628;
  border-color: #a93325;
}

.u-icon-google.disabled, .u-icon-google:disabled {
  background-color: #d14130;
  border-color: #d14130;
}

/* twitter */
.u-icon-twitter {
  color: color-yiq(#1da1f2);
  background-color: #1da1f2;
  border-color: #1da1f2;
}

.u-icon-twitter[href]:hover {
  color: color-yiq(#0d8ddc);
  background-color: #0d8ddc;
  border-color: #0c85d0;
}

.u-icon-twitter.disabled, .u-icon-twitter:disabled {
  background-color: #1da1f2;
  border-color: #1da1f2;
}

/* instagram */
.u-icon-instagram {
  color: color-yiq(#3f729b);
  background-color: #3f729b;
  border-color: #3f729b;
}

.u-icon-instagram[href]:hover {
  color: color-yiq(#345e80);
  background-color: #345e80;
  border-color: #305777;
}

.u-icon-instagram.disabled, .u-icon-instagram:disabled {
  background-color: #3f729b;
  border-color: #3f729b;
}

/* github */
.u-icon-github {
  color: color-yiq(#24292e);
  background-color: #24292e;
  border-color: #24292e;
}

.u-icon-github[href]:hover {
  color: color-yiq(#131619);
  background-color: #131619;
  border-color: #0e1011;
}

.u-icon-github.disabled, .u-icon-github:disabled {
  background-color: #24292e;
  border-color: #24292e;
}

.u-icon-bg {
  background-color: white;
}

.u-icon-bg__green {
  color: #3fae2a;
  border: 1px solid #3fae2a;
  border-radius: 50%;
  padding: 1px 6px;
}

.u-icon-bg__gray {
  color: #fff;
  background-color: #D8D8D8;
  border-radius: 40px;
  padding: 3px 10px;
}

/*------------------------------------
  Icon Block
------------------------------------*/
.u-icon-block__col {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 992px) {
  .u-icon-block {
    border-bottom: solid 1px #f7f8f6;
  }
  .u-icon-block__col--left-brd {
    border-left: solid 1px #f7f8f6;
  }
}

/*----------------------------------
  Header
------------------------------------*/
@media (max-width: 767px) {
  .navbar-expand-sm.fixed-top {
    background-color: #2f2f2f;
  }
}

@media (max-width: 991px) {
  .navbar-expand-md.fixed-top {
    background-color: #2f2f2f;
  }
}

@media (max-width: 1199px) {
  .navbar-expand-lg.fixed-top {
    background-color: #2f2f2f;
  }
}

.navbar-bg-onscroll.fixed-top {
  background-color: #3c3c3c;
  transition: all .3s ease-out;
}

.navbar-bg-onscroll.fixed-top--fade {
  transition: all .4s ease-out;
}

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

.u-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) {
  .u-portfolio-controls__item:not(:last-child)::after {
    color: #D8D8D8;
    margin: 0 7px 0 12px;
  }
}

.u-portfolio-controls a {
  color: #2f2f2f;
}

.u-portfolio-controls a.active {
  color: #3fae2a;
}

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

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

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

.u-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: #fff;
  background-color: #3fae2a;
  transition: all .2s ease;
  transform: translate3d(0, 3.75rem, 0);
}

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

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

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

/*----------------------------------
  Promo Block v1
------------------------------------*/
.u-promo-block {
  position: relative;
  min-height: 95vh;
  /*
  @include px-to-rem(padding-top, 100px);
  @include px-to-rem(padding-bottom, 100px);*/
  /*background: {
    repeat: no-repeat;
    position: 0% 0;
    size: cover;
  }*/
  background-size: cover;
  background-repeat: no-repeat;
  /*@include media-breakpoint-down(lg) {
    & {
      background: {
        attachment: fixed;
      }
    }
  }*/
}

.u-promo-block--mheight-450 {
  min-height: 450px;
}

.u-promo-block--mheight-500 {
  min-height: 500px;
}

.u-promo-block--mheight-600 {
  min-height: 600px;
}

.u-promo-block--mheight-80 {
  min-height: 80vh;
}

/*----------------------------------
  Promo Block v1
------------------------------------*/
.hero-background {
  position: relative;
  min-height: 95vh;
}

.hero-background--mheight-450 {
  min-height: 450px;
}

.hero-background--mheight-500 {
  min-height: 500px;
}

.hero-background--mheight-600 {
  min-height: 600px;
}

.hero-background--mheight-80 {
  min-height: 80vh;
}

@media (min-width: 992px) {
  .hero-background {
    background-attachment: fixed;
  }
}

/*------------------------------------
  Pricing
------------------------------------*/
.u-pricing {
  background-color: #fff;
}

.u-pricing__header {
  position: relative;
  padding: 1.5rem 1.5rem 0 1.5rem;
}

.u-pricing__header-price {
  display: block;
  line-height: .84;
}

.u-pricing__header-title {
  line-height: .6;
  font-weight: 200;
}

.u-pricing__header-decoration {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

.u-pricing__content {
  padding: 0 1.5rem 1.5rem 1.5rem;
}

.u-pricing__content .disabled .u-icon {
  color: #85778f;
  background-color: rgba(133, 119, 143, 0.1);
}

.u-pricing .disabled {
  color: #85778f;
}

/*------------------------------------
  Pricing
------------------------------------*/
/*----------------------------------
  Spaces
------------------------------------*/
.u-content-space {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}

@media (max-width: 575px) {
  .u-content-space {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

@media (max-width: 767px) {
  .u-content-space {
    padding-top: 3.125rem;
    padding-bottom: 3.125rem;
  }
}

.u-content-space-top {
  padding-top: 6.25rem;
}

@media (max-width: 575px) {
  .u-content-space-top {
    padding-top: 3.125rem;
  }
}

@media (max-width: 767px) {
  .u-content-space-top {
    padding-top: 3.125rem;
  }
}

.u-content-space-bottom {
  padding-bottom: 6.25rem;
}

@media (max-width: 575px) {
  .u-content-space-bottom {
    padding-bottom: 3.125rem;
  }
}

@media (max-width: 767px) {
  .u-content-space-bottom {
    padding-bottom: 3.125rem;
  }
}

/*----------------------------------
  Pull
------------------------------------*/
.u-pull-half {
  transform: translate3d(0, -50%, 0);
}

/*----------------------------------
  Links
------------------------------------*/
.u-link {
  color: #2f2f2f;
  text-decoration: none;
}

.u-link:hover {
  color: #3fae2a;
  text-decoration: none;
}

/*----------------------------------
  Box Shadow
------------------------------------*/
.u-box-shadow-sm {
  box-shadow: 0 0.2rem 1.25rem 0 rgba(47, 47, 47, 0.07);
}

.u-box-shadow-lg {
  box-shadow: 0 0.4rem 2.2rem 0 rgba(47, 47, 47, 0.1);
}

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

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

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

.u-overlay--dark::after {
  background-color: rgba(47, 47, 47, 0.3);
}

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

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

/*----------------------------------
  Block Alignments
------------------------------------*/
.u-ver-center {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate3d(0, -50%, 0);
}

@media screen and (max-width: 767px) and (orientation: landscape) {
  .u-ver-center {
    top: 80%;
    transform: translate3d(0, -60%, 0);
  }
}

@media (min-width: 992px) {
  .u-ver-center-lg {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translate3d(0, -50%, 0);
  }
}

.u-ver-bottom {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate3d(-50%, 0, 0);
}

/*----------------------------------
  Typography
------------------------------------*/
/* Font Family */
.u-font-accent {
  /*font-family: '$g-font-accent';*/
  font-family: 'Open Sans';
}

/* Font Size */
.u-font-size-75 {
  font-size: 75%;
}

.u-font-size-90 {
  font-size: 90%;
}

/* Letter Spacing */
.u-letter-spacing-xs {
  letter-spacing: 1px;
}

.u-letter-spacing-sm {
  letter-spacing: 2px;
}

/*----------------------------------
  Others
------------------------------------*/
.u-opacity-1 {
  opacity: .1;
}

.u-opacity-6 {
  opacity: .6;
}

.u-italic {
  font-style: italic;
}

body {
  font-family: "Open Sans";
}

.list-connect-dots a {
  color: #788288;
  text-decoration: none;
}

.list-connect-dots li {
  position: relative;
}

.list-connect-dots li span {
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
  line-height: 1em;
  border-radius: 0.5em;
  background: #fff;
  color: #fff;
  position: relative;
}

.list-connect-dots li::before {
  content: "";
  position: absolute;
  background: #fff;
  z-index: -1;
}

.list-connect-dots.vertical {
  padding: 0;
  margin: 0;
}

.list-connect-dots.vertical li {
  list-style-type: none;
  text-align: left;
}

.list-connect-dots.vertical li span {
  margin: 1.4em 0;
}

.list-connect-dots.vertical li::before {
  top: -35px;
  left: 7px;
  width: 0.15em;
  height: 4em;
}

.list-connect-dots li:first-child::before {
  display: none;
}

.list-connect-dots .active {
  background: dodgerblue;
}

.list-connect-dots .active ~ li {
  background: lightblue;
}

.list-connect-dots .active ~ li::before {
  background: lightblue;
}

p-large {
  font-size: 1.5rem;
}

.green-dot__wrap {
  position: relative;
  text-align: center;
  width: 100%;
  height: 50px;
}

.green-dot__wrap:before {
  position: absolute;
  top: 5%;
  left: 50%;
  content: "";
  display: block;
  border-top: 2px solid #3fae2a;
  width: 66%;
  z-index: 10;
  margin: 3px;
}

.green-dot__wrap .green-dot {
  display: block;
  background-color: #fff;
  background-size: cover;
  width: 11px;
  height: 11px;
  margin: 2rem auto;
  z-index: 2000;
  border: 2px solid #3fae2a;
  border-radius: 50%;
}

.white-dot__wrap {
  position: relative;
  text-align: center;
  width: 100%;
  height: 50px;
}

.white-dot__wrap:before {
  position: absolute;
  top: 5%;
  right: 50%;
  content: "";
  display: block;
  border-top: 2px solid #fff;
  width: 66%;
  z-index: 10;
  margin: 3px;
}

.white-dot__wrap .white-dot {
  display: block;
  background-color: #3fae2a;
  background-size: cover;
  width: 11px;
  height: 11px;
  margin: 2rem auto;
  z-index: 2000;
  border: 2px solid #fff;
  border-radius: 50%;
}

.center-green-dot__wrap {
  position: relative;
  text-align: center;
  width: 100%;
  height: 50px;
}

.center-green-dot__wrap:before {
  position: absolute;
  top: 5%;
  left: -50%;
  content: "";
  display: block;
  border-top: 2px solid #3fae2a;
  width: 200%;
  z-index: 10;
  margin: 3px;
}

.center-green-dot__wrap .center-green-dot {
  display: block;
  background-color: #3fae2a;
  background-size: cover;
  width: 11px;
  height: 11px;
  margin: 2rem auto;
  z-index: 2000;
  border: 2px solid #3fae2a;
  border-radius: 50%;
}

.quotes-component {
  display: grid;
  grid-template-columns: repeat(3, auto) 1fr auto;
  grid-template-rows: auto 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  align-items: center;
  max-width: 898px;
  margin-left: auto;
  margin-right: auto;
}

.quotes-component .logo {
  justify-self: left;
  height: 47px;
}

.quotes-component .img-item {
  width: fit-content;
}

.quotes-component .copy-a {
  grid-column-start: 4;
  grid-column-end: 5;
  grid-row-start: 1;
  grid-row-end: 2;
  text-align: left;
}

.quotes-component .line-item {
  border-right: medium solid #E8E8E8;
  height: 100%;
  padding-left: 5px;
  padding-right: 5px;
}

.quotes-component .start-quote {
  justify-self: flex-start;
  align-self: flex-start;
}

.quotes-component .copy-b {
  grid-column-start: 4;
  grid-column-end: 5;
  grid-row-start: 2;
  grid-row-end: 3;
  color: #3fae2a;
  text-align: left;
}

.quotes-component .fill {
  grid-row-end: 3;
  grid-row-start: 1;
}

@media only screen and (max-width: 769px) {
  .quotes-component {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto 1fr auto;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  .quotes-component .line-item {
    display: none;
  }
  .quotes-component .img-item {
    width: fit-content;
  }
  .quotes-component .copy-a {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 4;
  }
  .quotes-component .end-quote {
    justify-self: flex-end;
  }
  .quotes-component .copy-b {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 5;
    grid-row-end: 6;
  }
  .quotes-component .fill {
    grid-row-start: auto;
    grid-row-end: auto;
  }
}

/*# sourceMappingURL=maps/styles.css.map */
