.main-services-block {
  padding: 60px 0;
  background-color: #f7f9fb;
  margin-bottom: 80px;
}

.view-services .view-content {
  display: grid;
  gap: 32px;
}

@media only screen and (min-width: 600px) {
  .view-services .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 63rem) {
  .view-services .view-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.view-services .more-link {
  width: fit-content;
  margin: 20px auto 0 auto;
}

.view-services .more-link a {
  display: block;
  width: fit-content;
  cursor: pointer;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  background-color: var(--sc-btn-bg);
  color: var(--sc-btn-text-color);
  border-width: var(--sc-btn-border-width);
  border-radius: var(--pr-btn-border-radius);
  border-style: var(--sc-btn-border-style);
  border-color: var(--sc-btn-border-color);
  padding: var(--sc-btn-padding);
  font-size: var(--sc-btn-font-size);
  line-height: var(--sc-btn-line-height);
  letter-spacing: var(--sc-btn-letter-spacing);
  -webkit-text-decoration: var(--sc-btn-text-decoration);
          text-decoration: var(--sc-btn-text-decoration);
  text-align: center;
  transition: background-color 0.3s ease;
}

.view-services .more-link a:hover, .view-services .more-link a:focus {
  background-color: var(--sc-btn-bg-hover);
  border-color: var(--sc-btn-border-color-hover);
  color: var(--sc-btn-text-color-hover);
  -webkit-text-decoration: var(--sc-btn-text-decoration-hover);
          text-decoration: var(--sc-btn-text-decoration-hover);
  transition: background-color 0.3s ease;
}

.service-teaser {
  position: relative;
  height: 100%;
  margin-block-end: 0;
  height: 100%;
  box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-teaser:hover {
  box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.1);
}

.service-teaser::after {
  content: none;
}

.service-teaser .node__title {
  margin: 0;
}

.service-teaser .node__content {
  display: flex;
  flex-direction: column;
  padding: 0;
}

.service-teaser .service-redirect {
  display: block;
  text-decoration: unset;
}

.service-teaser .service-redirect:hover .node__title {
  color: var(--primary-color);
}

.service-teaser .header-service {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  height: auto;
}

.service-teaser .header-service .node__title {
  font-family: var(--font-bold);
  font-size: 16px;
  line-height: normal;
  color: var(--text-color);
  margin-top: 10px;
}

.service-teaser .field--name-body {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: normal;
  color: var(--text-color);
  margin: 0;
}

.service-teaser .field--name-body p {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: normal;
  color: var(--text-color);
  margin: 0;
}

.service-teaser .field--name-body p + p {
  margin-top: 4px;
}

.service-teaser .field--name-field-media-image img {
  min-width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-teaser .field--name-field-action-link {
  margin-top: 16px;
}

.service-teaser .field--name-field-action-link a {
  display: block;
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 20px;
  color: var(--text-color);
}

.service-teaser .field--name-field-action-link a:hover {
  color: var(--primary-color);
}

.actions-footer {
  position: initial;
  bottom: 20px;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 15px 0;
}

[dir="ltr"] .actions-footer {
  right: 0;
}

[dir="rtl"] .actions-footer {
  left: 0;
}

.actions-footer .order-now {
  display: block;
  width: fit-content;
  cursor: pointer;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  background-color: var(--pr-btn-bg);
  color: var(--pr-btn-text-color);
  border-width: var(--pr-btn-border-width);
  border-radius: var(--pr-btn-border-radius);
  border-style: var(--pr-btn-border-style);
  border-color: var(--pr-btn-border-color);
  padding: var(--pr-btn-padding);
  font-size: var(--pr-btn-font-size);
  line-height: var(--pr-btn-line-height);
  letter-spacing: var(--pr-btn-letter-spacing);
  -webkit-text-decoration: var(--pr-btn-text-decoration);
          text-decoration: var(--pr-btn-text-decoration);
  text-align: center;
  transition: background-color 0.3s ease;
  flex: 1;
}

.actions-footer .order-now:hover, .actions-footer .order-now:focus {
  background-color: var(--pr-btn-bg-hover);
  border-color: var(--pr-btn-border-color-hover);
  color: var(--pr-btn-text-color-hover);
  -webkit-text-decoration: var(--pr-btn-text-decoration-hover);
          text-decoration: var(--pr-btn-text-decoration-hover);
  transition: background-color 0.3s ease;
}

.actions-footer .order-now[href=""], .actions-footer .order-now[href="#"], .actions-footer .order-now:not([href]) {
  background: var(--accent-color-25);
  border-color: var(--accent-color-25);
  pointer-events: none;
}

.actions-footer .read-more {
  flex: 1;
}

.view-company-carousel {
  margin-top: 60px;
}

.view-company-carousel .slick img,
.view-company-carousel .slick svg {
  min-width: 100%;
  height: 80px;
  object-fit: contain;
  filter: grayscale(100%);
}

.view-company-carousel .slick img:hover,
.view-company-carousel .slick svg:hover {
  filter: grayscale(0);
}

[dir="ltr"] .view-company-carousel .slick__slide {
  margin-right: 50px;
}

[dir="rtl"] .view-company-carousel .slick__slide {
  margin-left: 50px;
}

.generic-grid .view-content {
  display: grid;
  gap: 32px;
}

@media (min-width: 49rem) {
  .generic-grid .view-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 63rem) {
  .generic-grid .view-content {
    grid-template-columns: repeat(3, 1fr);
  }
}

.generic-grid .view-content article {
  height: 100%;
  box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

#block-frontpage-header-background-video .bg-video-homepage {
  position: relative;
  width: 100%;
  height: 560px;
  max-height: 100%;
  overflow: hidden;
}

@media (max-width: 48rem) {
  #block-frontpage-header-background-video .bg-video-homepage {
    height: 100%;
  }
}

#block-frontpage-header-background-video .bg-video-homepage .media--type-background-video {
  position: absolute;
}

#block-frontpage-header-background-video .bg-video-homepage .media--type-background-video video {
  width: 100vw;
  height: 100%;
}

@media (max-width: 48rem) {
  #block-frontpage-header-background-video .bg-video-homepage .media--type-background-video video {
    height: 100%;
  }
}

@media (max-width: 29.25rem) {
  #block-frontpage-header-background-video .bg-video-homepage .media--type-background-video video {
    width: auto;
    height: auto;
  }
}

#block-frontpage-header-background-video .bg-video-homepage .field--name-field-bg-overlay {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

#block-frontpage-header-background-video .bg-video-homepage .field--name-field-bg-overlay img {
  width: 100%;
  height: 100%;
}

@media (max-width: 48rem) {
  #block-frontpage-header-background-video .bg-video-homepage .field--name-field-bg-overlay img {
    height: 100vh;
  }
}

#block-frontpage-header-background-video .bg-video-homepage .container {
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  height: 100%;
}

@media (max-width: 48rem) {
  #block-frontpage-header-background-video .bg-video-homepage .container {
    padding: 4rem 0;
  }
}

#block-frontpage-header-background-video .bg-video-homepage .btn-hero-section {
  overflow: hidden;
}

@media (max-width: 29.25rem) {
  #block-frontpage-header-background-video .bg-video-homepage .btn-hero-section {
    position: relative;
  }

  [dir="ltr"] #block-frontpage-header-background-video .bg-video-homepage .btn-hero-section {
    left: 10px;
  }

  [dir="rtl"] #block-frontpage-header-background-video .bg-video-homepage .btn-hero-section {
    right: 10px;
  }
}

#block-frontpage-header-background-video .bg-video-homepage .btn-hero-section a {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-out;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 10px;
  border-radius: 25px;
  width: 100%;
  margin: 7px 0 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#block-frontpage-header-background-video .bg-video-homepage .btn-hero-section a::before {
  position: absolute;
  top: -30px;
  content: "\f217";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  transition: top 0.4s ease-out;
}

#block-frontpage-header-background-video .bg-video-homepage .btn-hero-section a span {
  position: relative;
  bottom: 0;
  transition: bottom 0.4s ease-out;
}

#block-frontpage-header-background-video .bg-video-homepage .btn-hero-section a:hover {
  background: var(--link-color);
  border-color: var(--link-color);
}

#block-frontpage-header-background-video .bg-video-homepage .btn-hero-section a:hover span {
  bottom: -30px;
}

#block-frontpage-header-background-video .bg-video-homepage .btn-hero-section a:hover::before {
  top: 6px;
}

#block-frontpage-header-background-video .content-bg-video {
  position: relative;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

#block-frontpage-header-background-video .content-bg-video .field--name-field-title {
  font-size: 34px;
  font-weight: 600;
  color: white;
  text-transform: uppercase;
}

#block-frontpage-header-background-video .content-bg-video .field--name-field-long-description {
  font-size: 20px;
  color: white;
  font-weight: 300;
}

#block-front-linked-banner-currency-exchange .link-top-bar {
  display: flex;
  justify-content: center;
  background-color: #262626;
  border-bottom: 10px solid #f00;
  border-top: 10px solid #f00;
  overflow: hidden;
  max-height: 300px;
}

#block-front-linked-banner-currency-exchange .link-top-bar .image-link img {
  max-height: 300px;
}

.field--name-field-bg-color {
  display: none !important;
}

#block-frontpage-how-get-loan-block {
  text-align: center;
  padding: 40px 0;
}

#block-frontpage-how-get-loan-block .block__title {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--accent-color);
  text-transform: uppercase;
  margin-bottom: 35px;
  position: relative;
  text-align: center;
}

@media (max-width: 29.25rem) {
  #block-frontpage-how-get-loan-block .block__title {
    font-size: 24px;
    line-height: 32px;
  }
}

#block-frontpage-how-get-loan-block .block__title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 90px;
  height: 6px;
  background-color: var(--primary-color);
  border-radius: 20px;
}

[dir="ltr"] #block-frontpage-how-get-loan-block .block__title::after {
  left: 50%;
  transform: translateX(-50%);
}

[dir="rtl"] #block-frontpage-how-get-loan-block .block__title::after {
  right: 50%;
  transform: translateX(50%);
}

#block-frontpage-how-get-loan-block .field--name-field-description p {
  font-size: 22px;
  color: var(--accent-color);
}

#block-frontpage-how-get-loan-block .features-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 30.25rem) {
  #block-frontpage-how-get-loan-block .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 49rem) {
  #block-frontpage-how-get-loan-block .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

#block-frontpage-how-get-loan-block .grid-paragraph {
  border: 1px solid var(--primary-color);
  width: 100%;
  background-color: var(--light-grey);
  padding: 20px;
}

#block-frontpage-how-get-loan-block .grid-paragraph .field--name-field-title {
  font-size: 16px;
  font-weight: 600;
  padding-top: 35px;
}

#block-frontpage-how-get-loan-block .grid-paragraph .field--name-field-action-link {
  margin-top: 15px;
}

#block-frontpage-how-get-loan-block .grid-paragraph .field--name-field-action-link a {
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 50px;
  border-radius: 25px;
  transition: 0.5s;
  color: #fff;
}

#block-frontpage-how-get-loan-block .grid-paragraph .field--name-field-action-link a:hover {
  background: var(--link-color);
}

#block-frontpage-how-get-loan-block .grid-paragraph .field--name-field-description p {
  font-size: 15px;
  font-weight: 500;
  margin: 0;
}

#block-frontpage-how-get-loan-block .grid-paragraph .field--name-field-counter {
  font-size: 60px;
  font-weight: 900;
  line-height: 2rem;
  color: var(--primary-color);
}

.services-container {
  padding: 35px 0;
}

.services-container .block__title {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 600;
  text-align: center;
  position: relative;
  text-align: center;
}

@media (max-width: 29.25rem) {
  .services-container .block__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.services-container .block__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 90px;
  height: 6px;
  background-color: red;
  border-radius: 20px;
}

[dir="ltr"] .services-container .block__title::after {
  left: 50%;
  transform: translateX(-50%);
}

[dir="rtl"] .services-container .block__title::after {
  right: 50%;
  transform: translateX(50%);
}

@media (max-width: 48rem) {
  .services-container .block__title::after {
    bottom: -10px;
  }
}

.services-container .view-services {
  margin-top: 30px;
}

.services-container .view-services .views-row .service-teaser {
  padding: 0;
  box-shadow: none;
  border: 1px solid #eee;
  border-radius: 7px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.services-container .view-services .views-row .service-teaser .node__title {
  margin: 20px auto 0;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--accent-color);
  font-weight: 600;
  line-height: 26px;
  text-align: center;
}

@media (max-width: 48rem) {
  .services-container .view-services .views-row .service-teaser .node__title {
    font-size: 16px;
    line-height: 24px;
  }
}

.services-container .view-services .views-row .service-teaser .field--name-body {
  padding: 0 1.5rem;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 120px;
  text-align: center;
  color: var(--bs-gray-700);
  line-height: 1.5rem;
}

@media (max-width: 48rem) {
  .services-container .view-services .views-row .service-teaser .field--name-body {
    padding: 0 15px;
  }
}

.services-container .view-services .views-row .service-teaser .actions-footer {
  position: initial;
  flex-direction: column;
  align-items: center;
  padding: 0;
  gap: 5px;
  margin: 0 0 15px 0;
}

.services-container .view-services .views-row .service-teaser .actions-footer .order-now {
  order: 2;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 10px 50px;
  border-radius: 25px;
  color: #eee;
  font-size: 16px;
}

.services-container .view-services .views-row .service-teaser .actions-footer .order-now:hover {
  background: var(--link-color);
  border: 2px solid var(--link-color);
  color: #eee;
}

.services-container .view-services .views-row .service-teaser .actions-footer .order-now[href=""], .services-container .view-services .views-row .service-teaser .actions-footer .order-now[href="#"], .services-container .view-services .views-row .service-teaser .actions-footer .order-now:not([href]) {
  background: var(--grey-color);
  border-color: var(--grey-color);
  pointer-events: none;
}

.services-container .view-services .views-row .service-teaser .actions-footer .read-more {
  order: 1;
  border: none;
  transition: 0.5s;
  font-weight: 700;
}

.services-container .view-services .views-row .service-teaser .actions-footer .read-more:hover {
  background: transparent;
  color: black;
}

.services-container .view-services .more-link {
  margin-top: 40px;
  overflow: hidden;
}

.services-container .view-services .more-link a {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-out;
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 90px;
  border-radius: 25px;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services-container .view-services .more-link a::before {
  position: absolute;
  top: -30px;
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  transition: top 0.4s ease-out;
}

.services-container .view-services .more-link a span {
  position: relative;
  bottom: 0;
  transition: bottom 0.4s ease-out;
}

.services-container .view-services .more-link a:hover {
  background: #3e3e3e;
  border-color: #3e3e3e;
}

.services-container .view-services .more-link a:hover span {
  bottom: -30px;
}

.services-container .view-services .more-link a:hover::before {
  top: 10px;
}

.block-views-blockservices-credits-block {
  background: var(--light-grey);
}

.news-homepage-container {
  background: var(--light-grey);
  padding: 35px 0;
}

.news-homepage-container .block__title {
  font-size: 30px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 600;
  text-align: center;
  position: relative;
  text-align: center;
}

@media (max-width: 29.25rem) {
  .news-homepage-container .block__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.news-homepage-container .block__title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 90px;
  height: 6px;
  background-color: red;
  border-radius: 20px;
}

[dir="ltr"] .news-homepage-container .block__title::after {
  left: 50%;
  transform: translateX(-50%);
}

[dir="rtl"] .news-homepage-container .block__title::after {
  right: 50%;
  transform: translateX(50%);
}

.news-homepage-container .view-content {
  margin-top: 30px;
}

.news-homepage-container .view-content .views-view-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
}

@media (min-width: 30.25rem) {
  .news-homepage-container .view-content .views-view-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 49rem) {
  .news-homepage-container .view-content .views-view-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-homepage-container .view-content .views-view-grid .node--type-news {
  border: 1px solid var(--light-grey);
  border-radius: 15px;
  overflow: hidden;
}

.news-homepage-container .view-content .views-view-grid .node--type-news .node__content {
  flex-direction: column;
  gap: 0;
}

.news-homepage-container .view-content .views-view-grid .node--type-news .content-news {
  padding: 1rem;
}

.news-homepage-container .view-content .views-view-grid .node--type-news .field--name-field-media-image {
  margin: 0;
  box-shadow: none;
}

.news-homepage-container .view-content .views-view-grid .node--type-news .field--name-field-media-image img {
  height: 233px;
  width: 233px;
  object-fit: cover;
}

.news-homepage-container .view-content .views-view-grid .node--type-news .node__title {
  font-family: "Myriad Pro", sans-serif;
  font-size: 19px;
  font-weight: 400;
  line-height: 25px;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.news-homepage-container .view-content .views-view-grid .node--type-news .field--name-body {
  color: #6b6b6b;
  font-size: 14px;
  margin: 10px 0 0 0;
  font-weight: 300;
  line-height: 25px;
}

.news-homepage-container .more-link {
  margin-top: 40px;
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 290px;
}

.news-homepage-container .more-link a {
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease-out;
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  font-size: 16px;
  letter-spacing: 1px;
  padding: 10px 90px;
  border-radius: 25px;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news-homepage-container .more-link a::before {
  position: absolute;
  top: -30px;
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  transition: top 0.4s ease-out;
}

.news-homepage-container .more-link a span {
  position: relative;
  bottom: 0;
  transition: bottom 0.4s ease-out;
}

.news-homepage-container .more-link a:hover {
  background: #3e3e3e;
  border-color: #3e3e3e;
}

.news-homepage-container .more-link a:hover span {
  bottom: -30px;
}

.news-homepage-container .more-link a:hover::before {
  top: 10px;
}

.block-frontpage-how-get-loan-block {
  background: white;
}

/*# sourceMappingURL=homepage.css.map*/