*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

@media only screen and (max-width: 75em) {
  html {
    font-size: 50%;
  }
}

@media only screen and (max-width: 37.5em) {
  html {
    font-size: 40%;
  }
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #f7f7f7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.7;
}

@media only screen and (max-width: 75em) {
  body {
    line-height: 1.5;
  }
}

@media only screen and (max-width: 37.5em) {
  body {
    line-height: 1.4;
  }
}

ul {
  list-style-type: none;
}

a {
  text-decoration: none;
}

.heading-primary {
  margin-bottom: 2rem;
  display: block;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: .5rem;
  -webkit-animation: moveInLeft 1s ease-out;
          animation: moveInLeft 1s ease-out;
}

.heading-primary--white {
  color: #FFFFFF;
}

.heading-primary--black {
  color: #000;
}

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
}

.heading-secondary--white-linear {
  background-image: -webkit-gradient(linear, left top, right top, from(#20376d), to(#060d1c));
  background-image: linear-gradient(to right, #20376d, #060d1c);
  -webkit-background-clip: text;
  color: transparent;
  -webkit-transition: all .2s;
  transition: all .2s;
  letter-spacing: 2px;
}

.heading-secondary--white {
  color: #FFFFFF;
}

.heading-secondary--black {
  color: #000;
}

.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 700;
}

.heading-tertiary--white {
  color: #FFFFFF;
}

.heading-tertiary--black {
  color: #000;
}

.paragraph {
  font-size: 1.6rem;
}

.paragraph:not(:last-child) {
  margin-bottom: 1rem;
}

.default-link {
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin-inline: auto;
}

img {
  width: 100%;
  display: block;
}

.center {
  display: -ms-grid;
  display: grid;
  place-content: center;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.plusate {
  width: 30px;
  margin-top: 2em;
  outline: none;
  -webkit-animation: pulsate 1s infinite;
          animation: pulsate 1s infinite;
}

.text-white {
  color: #FFFFFF;
}

.text-black {
  color: #000;
}

.text-primary {
  color: #0E1B39;
}

.text-secondary {
  color: #4484E0;
}

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

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

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

.btn-image {
  width: 3rem;
  height: 3rem;
}

.hidden {
  opacity: 0;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: all 2s;
  transition: all 2s;
}

.show {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mr-1 {
  margin-right: 1rem;
}

.mr-2 {
  margin-right: 2rem;
}

.mr-3 {
  margin-right: 3rem;
}

.mr-4 {
  margin-right: 4rem;
}

.ml-1 {
  margin-left: 1rem;
}

.ml-2 {
  margin-left: 2rem;
}

.ml-3 {
  margin-left: 3rem;
}

.ml-4 {
  margin-left: 4rem;
}

.my-1 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-2 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.my-3 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-4 {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

.mx-1 {
  margin-inline: 1rem;
}

.mx-2 {
  margin-inline: 2rem;
}

.mx-3 {
  margin-inline: 3rem;
}

.mx-4 {
  margin-inline: 4rem;
}

.p-1 {
  padding: 1rem;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.p-4 {
  padding: 4rem;
}

.pt-1 {
  padding-top: 1rem;
}

.pt-2 {
  padding-top: 2rem;
}

.pt-3 {
  padding-top: 3rem;
}

.pt-4 {
  padding-top: 4rem;
}

.pb-1 {
  padding-bottom: 1rem;
}

.pb-2 {
  padding-bottom: 2rem;
}

.pb-3 {
  padding-bottom: 3rem;
}

.pb-4 {
  padding-bottom: 4rem;
}

.pr-1 {
  padding-right: 1rem;
}

.pr-2 {
  padding-right: 2rem;
}

.pr-3 {
  padding-right: 3rem;
}

.pr-4 {
  padding-right: 4rem;
}

.pl-1 {
  padding-left: 1rem;
}

.pl-2 {
  padding-left: 2rem;
}

.pl-3 {
  padding-left: 3rem;
}

.pl-4 {
  padding-left: 4rem;
}

@media only screen and (max-width: 37.5em) {
  .sm-hide {
    display: none;
  }
}

.sm-img {
  display: none;
}

@media only screen and (max-width: 37.5em) {
  .sm-display {
    display: block;
  }
}

@media only screen and (max-width: 37.5em) {
  .sm-mt-8 {
    margin-top: 8rem;
  }
}

.btn:link, .btn:visited {
  text-decoration: none;
  padding: 1rem 3rem;
  display: inline-block;
  border-radius: 10rem;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 1.6rem;
}

.btn--primary {
  background-color: #0E1B39;
  color: #FFFFFF;
  font-weight: bold;
}

.btn--primary:hover {
  background-color: #20376d;
}

.btn--default {
  background-color: #FFFFFF;
  color: #000;
}

.btn--default:hover {
  background-color: #f7f7f7;
}

.btn--secondary {
  background-color: #4484E0;
  color: #FFFFFF;
}

.btn--secondary:hover {
  background-color: #659dec;
}

.btn--teriary {
  background-color: #0081C3;
  color: #FFFFFF;
}

.btn--teriary:hover {
  background-color: #2278a4;
}

.btn-sm:link, .btn-sm:visited {
  text-decoration: none;
  padding: .5rem 1.5rem;
  display: inline-block;
  border-radius: 10rem;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 1.6rem;
}

.btn-sm--primary {
  background-color: #0E1B39;
  color: #FFFFFF;
}

.btn-sm--primary:hover {
  background-color: #20376d;
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #FFFFFF;
  border-radius: 5rem;
  width: 30%;
  height: 20rem;
  padding: 3rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: ease .2s;
  transition: ease .2s;
}

.card:hover {
  scale: 1.1;
}

@media only screen and (max-width: 37.5em) {
  .card {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 40%;
  }
}

.card--icon {
  height: 6rem;
  width: 6rem;
  color: #4484E0;
}

.card--title {
  color: #4484E0;
  font-size: 2rem;
}

.input__form {
  margin-inline: 10rem;
}

.input__form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}

.input__form__group--wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media only screen and (max-width: 37.5em) {
  .input__form__group--wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.input__form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-inline: 2rem;
}

.input__form__input {
  font-size: 1.5rem;
  font-family: inherit;
  color: #0E1B39;
  margin-inline: 1rem;
  padding: 1.5rem 2rem;
  border-radius: 4px;
  border: 2px solid #0E1B39;
  width: 95%;
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.input__form__textarea {
  font-size: 1.5rem;
  font-family: inherit;
  color: #0E1B39;
  margin-inline: 1rem;
  padding: 1.5rem 2rem;
  border-radius: 4px;
  border: 2px solid #0E1B39;
  width: 98%;
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media only screen and (max-width: 37.5em) {
  .input__form__textarea {
    width: 95%;
  }
}

.input__form__label {
  font-size: 1.6rem;
  font-weight: 700;
  margin-left: 2rem;
  margin-top: .7rem;
  display: block;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.input__form__button {
  border: 1px solid #0E1B39;
  background-color: #FFFFFF;
  color: #0E1B39;
  font-family: inherit;
  text-decoration: none;
  padding: .5rem 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  border-radius: 10rem;
  -webkit-transition: all .2s;
  transition: all .2s;
  font-size: 1.6rem;
  cursor: pointer;
}

.input__form__button:hover {
  background-color: #eee;
  font-weight: bold;
}

.input__form__button img {
  width: 4rem;
  height: 4rem;
}

.header {
  background-color: #f7f7f7;
  padding: 3rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.header__box {
  margin-inline: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}

.header__box--logo {
  color: #000;
  font-size: 2rem;
  -webkit-transition: all .2s;
  transition: all .2s;
  width: 20rem;
}

.header__box--logo:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.header__box--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 3rem;
}

.header__box--items .nav-link {
  color: #000;
  font-size: 1.5rem;
}

.header__box--items .nav-link:hover {
  border-bottom: 2px solid #000;
  -webkit-box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.2);
          box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.2);
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 4.5rem;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: #000;
}

@media only screen and (max-width: 37.5em) {
  .hamburger {
    display: block;
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 100%;
  margin-top: 10rem;
  width: 100%;
  min-height: 10vh;
  display: block;
  z-index: 98;
  background-color: #f7f7f7;
  padding-top: 2rem;
  text-transform: uppercase;
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav a {
  display: block;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto 1.6rem;
  text-align: center;
  padding: 1.2rem 1.6rem;
  background-color: #0E1B39;
  color: #FFFFFF;
}

.hero {
  margin-bottom: 5rem;
}

.hero__content {
  text-align: center;
}

.hero__content--heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: .2rem;
}

@media only screen and (max-width: 37.5em) {
  .hero__content--heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    line-height: 1.2;
    gap: 0;
  }
}

@media only screen and (max-width: 37.5em) {
  .hero__content p {
    margin-inline: 2rem;
  }
}

.about {
  background-color: #0E1B39;
  color: #FFFFFF;
  padding: 4rem;
}

.about__content--heading {
  text-transform: uppercase;
}

.whatisinvoicediscounting {
  padding: 4rem;
}

.whatisinvoicediscounting__content--heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 37.5em) {
  .whatisinvoicediscounting__content--heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.seizecontrol {
  background-color: #0E1B39;
  color: #FFFFFF;
  padding: 4rem;
}

.whyfinhub {
  margin-bottom: 4rem;
}

.whyfinhub__content--heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.whyfinhub__content--body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

.howitworks {
  background-color: #0E1B39;
  color: white;
  padding: 3rem;
}

.howitworks__content--heading {
  text-transform: uppercase;
  text-align: center;
}

.howitworks__content--img {
  -o-object-fit: cover;
     object-fit: cover;
}

.readytogrow__content--heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (max-width: 37.5em) {
  .readytogrow__content--heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.contact {
  padding: 5rem 0;
}

.contact__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

@media only screen and (max-width: 37.5em) {
  .contact__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  }
}

.contact__info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}

.contact__info__item a {
  color: #000;
  font-size: 1.5rem;
}

.contact__info__item img {
  width: 3rem;
  height: 3rem;
}

.contact--text {
  font-size: 3rem;
  font-weight: bolder;
}

.testimonial {
  padding: 3rem;
}

.testimonial__content--heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: .2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

@media only screen and (max-width: 37.5em) {
  .testimonial__content--heading {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.testimonial__content--body {
  margin-top: 7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}

@media only screen and (max-width: 37.5em) {
  .testimonial__content--body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7rem;
  }
}

.testimonial__card {
  padding: 3rem;
  background-color: #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  text-align: center;
  border-radius: 5rem;
  width: 30%;
}

.testimonial__card--img {
  margin-top: -8rem;
  height: 10rem;
  width: 10rem;
}

.testimonial__card--title {
  font-weight: bold;
  font-size: 1.5rem;
}

.testimonial__card--text {
  font-weight: lighter;
  font-size: 1.3rem;
}

@media only screen and (max-width: 37.5em) {
  .testimonial__card {
    width: 50%;
  }
}

.footer {
  color: #FFFFFF;
  background-color: #0E1B39;
  padding: 3rem;
  -webkit-transition: ease .2s;
  transition: ease .2s;
}

.footer__icons {
  margin-inline: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.footer__icons--logo {
  background-color: #FFFFFF;
  width: 20rem;
}

.footer__icons--social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer__icons--social img {
  width: 4rem;
}

.footer__icons--social img:hover {
  scale: 1.2;
}

.footer__boxs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

@media only screen and (max-width: 56.25em) {
  .footer__boxs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-padding-start: 5rem;
            padding-inline-start: 5rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 2rem;
  }
}

.footer__box {
  padding: 3rem;
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}

.footer__info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  font-weight: 300;
  gap: 1rem;
  margin-bottom: 1rem;
  -webkit-transition: ease .2s;
  transition: ease .2s;
}

.footer__info__item a {
  color: #FFFFFF;
  font-size: 1.5rem;
}

.footer__info__item img {
  width: 3rem;
  height: 3rem;
}

.footer__info__item:hover {
  scale: 1.1;
}

.login {
  padding: 3rem;
  background-color: #FFFFFF;
  border-radius: 5rem;
}

.signup {
  padding: 3rem;
}

.signup__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 2rem;
}

@media only screen and (max-width: 37.5em) {
  .signup__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 2rem;
  }
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
}

.carousel-container {
  width: 1100px;
  margin: 50px auto;
  position: relative;
  border-left-width: 4px;
  border-left-style: solid;
  border-left-color: #aaa;
}

@media (max-width: 768px) {
  .carousel-container {
    width: 95%;
  }
}

.inner-carousel {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.track {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 100%;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}

.card-container {
  width: 275px;
  height: 400px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-right: 10px;
}

@media (max-width: 768px) {
  .card-container {
    width: 184px;
  }
}

.card-slider {
  width: 100%;
  height: 100%;
  /*display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;*/
  background-position: center bottom;
  background-size: center;
  background-repeat: no-repeat;
  border-radius: 10px;
  position: relative;
}

.card-text-centered {
  position: absolute;
  top: 80%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-weight: bolder;
  font-size: 2rem;
  text-align: center;
  text-transform: uppercase;
}

.card1 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.527)), to(rgba(0, 0, 0, 0.5))), url("https://images.pexels.com/photos/73833/weld-hot-soldering-radio-welder-73833.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("https://images.pexels.com/photos/73833/weld-hot-soldering-radio-welder-73833.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1");
}

.card2 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.527)), to(rgba(0, 0, 0, 0.5))), url("https://images.pexels.com/photos/906494/pexels-photo-906494.jpeg?auto=compress&cs=tinysrgb&w=600");
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("https://images.pexels.com/photos/906494/pexels-photo-906494.jpeg?auto=compress&cs=tinysrgb&w=600");
}

.card3 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.527)), to(rgba(0, 0, 0, 0.5))), url("https://images.pexels.com/photos/6214371/pexels-photo-6214371.jpeg?auto=compress&cs=tinysrgb&w=600");
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("https://images.pexels.com/photos/6214371/pexels-photo-6214371.jpeg?auto=compress&cs=tinysrgb&w=600");
}

.card4 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.527)), to(rgba(0, 0, 0, 0.5))), url("https://images.pexels.com/photos/6152382/pexels-photo-6152382.jpeg?auto=compress&cs=tinysrgb&w=600");
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("https://images.pexels.com/photos/6152382/pexels-photo-6152382.jpeg?auto=compress&cs=tinysrgb&w=600");
}

.card5 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.527)), to(rgba(0, 0, 0, 0.5))), url("https://images.pexels.com/photos/1366942/pexels-photo-1366942.jpeg?auto=compress&cs=tinysrgb&w=600");
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("https://images.pexels.com/photos/1366942/pexels-photo-1366942.jpeg?auto=compress&cs=tinysrgb&w=600");
}

.card6 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.527)), to(rgba(0, 0, 0, 0.5))), url("https://images.pexels.com/photos/208512/pexels-photo-208512.jpeg?auto=compress&cs=tinysrgb&w=600");
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("https://images.pexels.com/photos/208512/pexels-photo-208512.jpeg?auto=compress&cs=tinysrgb&w=600");
}

.card7 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.527)), to(rgba(0, 0, 0, 0.5))), url("https://images.pexels.com/photos/5490778/pexels-photo-5490778.jpeg?auto=compress&cs=tinysrgb&w=600");
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("https://images.pexels.com/photos/5490778/pexels-photo-5490778.jpeg?auto=compress&cs=tinysrgb&w=600");
}

.card8 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.527)), to(rgba(0, 0, 0, 0.5))), url("https://images.pexels.com/photos/264985/pexels-photo-264985.jpeg?auto=compress&cs=tinysrgb&w=600");
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("https://images.pexels.com/photos/264985/pexels-photo-264985.jpeg?auto=compress&cs=tinysrgb&w=600");
}

.card9 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.527)), to(rgba(0, 0, 0, 0.5))), url("https://images.pexels.com/photos/4481327/pexels-photo-4481327.jpeg?auto=compress&cs=tinysrgb&w=600");
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("https://images.pexels.com/photos/4481327/pexels-photo-4481327.jpeg?auto=compress&cs=tinysrgb&w=600");
}

.card10 {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.527)), to(rgba(0, 0, 0, 0.5))), url("https://images.pexels.com/photos/906494/pexels-photo-906494.jpeg?auto=compress&cs=tinysrgb&w=600");
  background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.5)), url("https://images.pexels.com/photos/906494/pexels-photo-906494.jpeg?auto=compress&cs=tinysrgb&w=600");
}

.nav button {
  position: absolute;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  outline: none;
  border: 1px solid #000;
  cursor: pointer;
}

.nav .prev {
  left: -30px;
  display: none;
}

.nav .prev.show {
  display: block;
}

.nav .next {
  right: -30px;
}

.nav .next.hide {
  display: none;
}
/*# sourceMappingURL=main.css.map */