/* @font-face {
  font-family: gotham;
  src: url(../fonts/gotham/Gotham-Bold.otf);
  font-weight: 700;
}

@font-face {
  font-family: gotham;
  src: url(../fonts/gotham/GOTHAM-MEDIUM.OTF);
  font-weight: 500;
}

@font-face {
  font-family: gotham;
  src: url(../fonts/gotham/Gotham-Book.otf);
  font-weight: 400;
}

@font-face {
  font-family: max-pro;
  src: url(../fonts/max-pro/MaxPro-Bold.otf);
  font-weight: 700;
}

@font-face {
  font-family: max-pro;
  src: url(../fonts/max-pro/MaxPro-Demibold.otf);
  font-weight: 600;
}

@font-face {
  font-family: max-pro;
  src: url(../fonts/max-pro/MaxPro-Regular.otf);
  font-weight: 400;
}

@font-face {
  font-family: max-pro;
  src: url(../fonts/max-pro/MaxPro-Light.otf);
  font-weight: 300;
} */

@-webkit-keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: -2636px;
  }
}

@keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: -2636px;
  }
}

@-webkit-keyframes marqueesmall {
  0% {
    left: 100%;
  }
  100% {
    left: -2260px;
  }
}

@keyframes marqueesmall {
  0% {
    left: 100%;
  }
  100% {
    left: -2260px;
  }
}

.chevron::before {
  border-style: solid;
  border-width: 0.15em 0.15em 0 0;
  content: "";
  display: inline-block;
  height: 0.45em;
  left: 0.15em;
  position: relative;
  top: 0.15em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  vertical-align: top;
  width: 0.45em;
}

.chevron.right:before {
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.chevron {
  right: 16px;
  top: calc(50% - 4px);
  position: absolute;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

body {
  margin: 0;
}

/* * {
  font-family: gotham;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
} */

.bigbank {
  border-radius: 10px;
  width: 100%;
  max-width: 970px;
}

.bigbank__wrapper {
  border-radius: 10px 10px 0 0;
  height: 160px;
  background: url(../img/background.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 14px 16px 14px 20px;
  border: solid 1px #003c5a;
  border-bottom: 0;
}

@media (max-width: 580px) {
  .bigbank__wrapper {
    height: auto;
    padding: 14px 15px 14px 15px;
  }
}

@media (min-width: 780px) {
  .bigbank__wrapper {
    height: 220px;
  }
}

.bigbank__left {
  width: 25%;
  padding-right: 10px;
}

@media (max-width: 580px) {
  .bigbank__left {
    width: 100%;
  }
}

@media (min-width: 780px) {
  .bigbank__left {
    width: 23%;
  }
}

.bigbank__left img {
  width: 102px;
  display: block;
  margin-bottom: 20px;
}

@media (min-width: 780px) {
  .bigbank__left img {
    width: 122px;
    margin-bottom: 40px;
  }
}

.bigbank__left h2 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  /* font-family: max-pro; */
  margin: 0;
  /* letter-spacing: -0.66px; */
}

@media (max-width: 580px) {
  .bigbank__left h2 {
    text-align: center;
  }
}

@media (max-width: 380px) {
  .bigbank__left h2 {
    font-size: 20px;
    font-weight: 700;
    line-height: 24px;
  }
}

@media (min-width: 780px) {
  .bigbank__left h2 {
    font-size: 24px;
    line-height: 28px;
  }
}

.bigbank__middle {
  width: 56.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 580px) {
  .bigbank__middle {
    width: 100%;
  }
}

@media (min-width: 780px) {
  .bigbank__middle {
    width: 58.5%;
  }
}

.bigbank__right {
  width: 18.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 580px) {
  .bigbank__right {
    width: 100%;
    margin-top: 14px;
  }
}

@media (min-width: 780px) {
  .bigbank__right {
    margin-bottom: 10px;
  }
}

.bigbank__link {
  max-width: 114px;
  text-align: left;
  outline: 0;
  border: 0;
  cursor: pointer;
  position: relative;
  background: #43c690;
  border-radius: 7px;
  color: #fff;
  display: block;
  padding: 8px 12px 7px;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  text-decoration: none;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

@media (max-width: 580px) {
  .bigbank__link {
    margin: 0 auto;
  }
}

.bigbank__link:hover {
  opacity: 0.8;
}

.bigbank__link:hover > .chevron {
  -webkit-transform: translateX(4px);
          transform: translateX(4px);
}

@media (min-width: 780px) {
  .bigbank__link {
    max-width: 124px;
    padding: 12px 12px 11px;
    font-size: 15px;
    line-height: 18px;
  }
}

.bigbank__sliders {
  width: 68%;
  margin-top: 6px;
}

@media (max-width: 580px) {
  .bigbank__sliders {
    width: 78%;
  }
}

@media (max-width: 380px) {
  .bigbank__sliders {
    width: 100%;
  }
}

@media (min-width: 780px) {
  .bigbank__sliders {
    width: 77%;
    margin-top: 26px;
  }
}

.bigbank__sliders .slider-value {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

@media (min-width: 780px) {
  .bigbank__sliders .slider-value {
    font-size: 14px;
  }
}

.bigbank__first-slider-holder, .bigbank__second-slider-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 32px;
}

@media (max-width: 380px) {
  .bigbank__first-slider-holder, .bigbank__second-slider-holder {
    margin-top: 22px;
  }
}

@media (min-width: 780px) {
  .bigbank__first-slider-holder, .bigbank__second-slider-holder {
    margin-top: 38px;
  }
}

.bigbank__first-slider-min, .bigbank__second-slider-min {
  width: 50px;
  text-align: right;
}

@media (min-width: 780px) {
  .bigbank__first-slider-min, .bigbank__second-slider-min {
    width: 56px;
  }
}

.bigbank__first-slider-max, .bigbank__second-slider-max {
  width: 60px;
  text-align: left;
}

@media (min-width: 780px) {
  .bigbank__first-slider-max, .bigbank__second-slider-max {
    width: 70px;
  }
}

.bigbank__amount-slide.noUi-target, .bigbank__month-slide.noUi-target {
  background: #fff;
  border: 0;
  height: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 10px;
  width: 40.5%;
}

@media (max-width: 580px) {
  .bigbank__amount-slide.noUi-target, .bigbank__month-slide.noUi-target {
    width: 58%;
  }
}

@media (max-width: 380px) {
  .bigbank__amount-slide.noUi-target, .bigbank__month-slide.noUi-target {
    width: 50%;
  }
}

@media (min-width: 780px) {
  .bigbank__amount-slide.noUi-target, .bigbank__month-slide.noUi-target {
    width: 53.5%;
  }
}

.bigbank__amount-slide .noUi-handle:before,
.bigbank__amount-slide .noUi-handle:after, .bigbank__month-slide .noUi-handle:before,
.bigbank__month-slide .noUi-handle:after {
  display: none;
}

.bigbank__amount-slide .noUi-handle, .bigbank__month-slide .noUi-handle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 3px solid #00a2f3;
  right: -8px;
  top: -6px;
  outline: 0;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
  cursor: pointer;
}

.bigbank__amount-slide .noUi-handle:hover, .bigbank__month-slide .noUi-handle:hover {
  background-color: #00a2f3;
}

@media (min-width: 780px) {
  .bigbank__amount-slide .noUi-handle, .bigbank__month-slide .noUi-handle {
    width: 18px;
    height: 18px;
    top: -7px;
  }
}

.bigbank__amount-slide .noUi-connect, .bigbank__month-slide .noUi-connect {
  background-color: #00a2f3;
  height: 4px;
  border-radius: 3px;
}

.bigbank__amount-slide .noUi-connects, .bigbank__month-slide .noUi-connects {
  height: 14px;
  border-radius: 0;
}

.bigbank form {
  margin-left: auto;
  margin-right: auto;
}

.bigbank__inputs {
  width: 24%;
  margin-left: 2.8%;
  margin-top: 10px;
}

@media (max-width: 580px) {
  .bigbank__inputs {
    width: 18%;
  }
}

@media (max-width: 380px) {
  .bigbank__inputs {
    width: 100%;
    margin-left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 780px) {
  .bigbank__inputs {
    width: 20%;
    margin-top: 29px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bigbank__inputs input {
  width: 100%;
  max-width: 85px;
  color: #006597;
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
  border: 1px solid #cacaca;
  text-align: center;
  padding: 11px 4px 8px;
  margin-top: 11px;
  line-height: 1;
}

.bigbank__inputs input#month {
  padding: 10px 4px 9px;
}

.bigbank__inputs input::-webkit-outer-spin-button, .bigbank__inputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

@media (max-width: 380px) {
  .bigbank__inputs input {
    width: 46%;
    margin-top: 4px;
    margin-left: 8px;
    margin-right: 8px;
  }
}

@media (min-width: 780px) {
  .bigbank__inputs input {
    padding: 13px 4px 10px;
    font-size: 14px;
    margin-top: 13px;
  }
  .bigbank__inputs input#month {
    padding: 12px 4px 11px;
  }
}

.bigbank__monthly {
  width: 100%;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  line-height: 1;
  padding-right: 9%;
  margin-top: 9px;
}

@media (max-width: 580px) {
  .bigbank__monthly {
    margin-top: 14px;
    padding-right: 0;
  }
}

@media (min-width: 780px) {
  .bigbank__monthly {
    font-size: 14px;
    margin-top: 12px;
  }
}

.bigbank__marquee {
  height: 25px;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 5px 10px;
  height: 20px;
  border-radius: 0 0 10px 10px;
  background: #fff;
  border: solid 1px #003c5a;
  border-top: 0;
}

@media (min-width: 780px) {
  .bigbank__marquee {
    height: 30px;
    padding: 8px 10px;
  }
}

.bigbank__marquee-wrapper {
  display: block;
  position: absolute;
  overflow: hidden;
  -webkit-animation: marquee 30s linear infinite;
          animation: marquee 30s linear infinite;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

@media (max-width: 780px) {
  .bigbank__marquee-wrapper {
    -webkit-animation: marqueesmall 30s linear infinite;
            animation: marqueesmall 30s linear infinite;
  }
}

.bigbank__marquee-content {
  white-space: nowrap;
  color: #183e5d;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}

.bigbank__marquee-content span {
  display: inline-block;
  margin-right: 300px;
}

@media (min-width: 780px) {
  .bigbank__marquee-content {
    font-size: 14px;
  }
}
/*# sourceMappingURL=main.css.map */