/* Nomixa Font Family */
@font-face {
  font-family: "Nomixa";
  src: url("../font/Nomixa-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Nomixa";
  src: url("../font/Nomixa-Medium.otf") format("opentype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Nomixa";
  src: url("../font/Nomixa-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Nomixa";
  src: url("../font/Nomixa-Black.otf") format("opentype");
  font-weight: 900;
  font-display: swap;
}
/* Vintage Signature Font */
@font-face {
  font-family: "Vintage Signature";
  src: url("../font/Vintage-Signature.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Nomixa", sans-serif;
}

.container {
  max-width: 1440px;
}

a {
  text-decoration: none;
  transition: 0.2s ease-in;
}
a:hover {
  text-decoration: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.justify-center {
  justify-content: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 900;
  margin: 0;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

@media screen and (max-width: 568px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 20px;
  }
  h4 {
    font-size: 18px;
  }
  h5,
  h6 {
    font-size: 16px;
  }
}
.button__white {
  text-decoration: underline;
  font-weight: 700;
  font-size: 13px;
  color: #ffffff;
}
.button__white:hover {
  text-decoration: underline;
}
.button__white:hover {
  color: #fbbf00;
}
.button-solid__yellow {
  background-color: #fbbf00;
  color: #000000;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}
.button-solid__yellow:hover {
  color: #ffffff;
}

.block-header {
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  z-index: 5;
}
.block-header__logo {
  max-width: 220px;
}

.block-hero {
  position: relative;
  background-image: url("../img/hero-placeholder.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}
.block-hero::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1px;
  right: -1px;
  height: 16px;
  background: #ffffff;
  background: linear-gradient(to right, white 0%, white 45%, transparent 45%, transparent 55%, white 55%, white 100%);
}
.block-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1px;
  right: -1px;
  height: 16px;
  background-image: url("../img/case-slider-bottom.svg");
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
.block-hero__wrapper {
  min-height: 575px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 100px;
}
.block-hero__title {
  text-transform: uppercase;
  margin-bottom: 60px;
}
.block-hero__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.block-quote {
  padding: 50px 0;
}
.block-quote__content {
  font-size: 28px;
  text-align: center;
}

@media screen and (max-width: 568px) {
  .block-quote {
    padding: 32px 0;
  }
  .block-quote__content {
    font-size: 20px;
  }
}
.block-caseSlider {
  padding: 50px 0 100px 0;
  overflow: hidden;
}
.block-caseSlider__title {
  text-align: center;
  margin-bottom: 48px;
  text-transform: uppercase;
}
.block-caseSlider__title strong {
  font-family: "Vintage Signature", cursive;
  font-weight: 400;
  font-size: 84px;
  color: #fbbf00;
  position: relative;
  top: 8px;
  text-transform: none;
}
.block-caseSlider .custom-container {
  max-width: calc(100% - (100% - 1440px) / 2);
  margin-left: calc((100% - 1440px) / 2);
  width: 100%;
  padding-left: 15px;
}
.block-caseSlider .slick-track {
  margin-left: 0;
}
.block-caseSlider__slider {
  margin-bottom: 50px;
}
.block-caseSlider__slide {
  padding-right: 24px;
}
.block-caseSlider__slide-image {
  position: relative;
  padding-top: 105%;
  margin-bottom: 20px;
}
.block-caseSlider__slide-image::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1px;
  right: -1px;
  height: 16px;
  background-image: url("../img/case-slider-bottom.svg");
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.block-caseSlider__slide-image img {
  position: absolute;
  top: 0;
  left: 0;
}
.block-caseSlider__slide-title {
  text-transform: uppercase;
}
.block-caseSlider__slide-content {
  font-size: 14px;
  margin-bottom: 2px;
}
.block-caseSlider__slide a {
  display: inline-block;
}
.block-caseSlider__wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.block-caseSlider__progress {
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background: #efedeb;
  position: relative;
  overflow: hidden;
}
.block-caseSlider__progress-inner {
  background: #3f4b99;
  position: absolute;
  height: 8px;
  top: 0;
  left: 0;
  width: 0;
  transition: width 0.3s ease;
}
.block-caseSlider__buttons {
  display: flex;
  gap: 10px;
}
.block-caseSlider__arrow-left, .block-caseSlider__arrow-right {
  background-color: #f1ede3;
  padding: 8px 8px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.2s ease-in;
}
.block-caseSlider__arrow-left img, .block-caseSlider__arrow-right img {
  width: 30px;
  height: 30px;
}
.block-caseSlider__arrow-left:hover, .block-caseSlider__arrow-right:hover {
  background-color: #fbbf00;
}

@media screen and (max-width: 1440px) {
  .block-caseSlider .custom-container {
    max-width: 1440px;
    padding-left: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 568px) {
  .block-caseSlider {
    padding: 32px 0;
  }
  .block-caseSlider__title strong {
    font-size: 60px;
  }
  .block-caseSlider__slide {
    padding-right: 15px;
  }
}
.block-history {
  padding: 75px 0 25px 0;
  background: rgba(241, 237, 227, 0.4);
}
.block-history__title {
  text-align: center;
  margin-bottom: 64px;
  text-transform: uppercase;
}
.block-history__title strong {
  font-family: "Vintage Signature", cursive;
  font-weight: 400;
  font-size: 84px;
  color: #fbbf00;
  position: relative;
  top: 8px;
  text-transform: none;
}
.block-history__grid {
  display: flex;
  flex-wrap: wrap;
  min-height: 375px;
  gap: 20px;
}
.block-history__card {
  position: relative;
  border: 1px dashed #000000;
  background-color: #ffffff;
  text-align: center;
  flex: 0 0 calc((100% - 100px) / 6);
  transition: 0.2s ease-in;
  height: 100%;
}
.block-history__card.open {
  border: 1px solid #000000;
  border-bottom-color: transparent;
}
.block-history__card.open .block-history__card-year {
  background-color: #fbbf00;
}
.block-history__card.open .block-history__card-wrapper {
  border-color: #000000;
  border-top-color: transparent;
}
.block-history__card-year {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: #ffffff;
  background-color: #3f4b99;
  padding: 6px 18px;
  border-radius: 999px;
  transition: 0.2s ease-in;
}
.block-history__card-top {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.block-history__card-title {
  padding: 32px 20px;
  font-size: 16px;
  text-transform: uppercase;
}
.block-history__card-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s ease-in;
  background-color: #ffffff;
}
.block-history__card-content {
  padding: 0 20px;
  font-size: 12px;
  margin-bottom: 12px;
}
.block-history__card-image img {
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 1200px) {
  .block-history__card-title {
    padding: 0 12px;
    font-size: 14px;
  }
}
@media screen and (max-width: 992px) {
  .block-history__card {
    flex: 0 0 calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 768px) {
  .block-history__card {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 568px) {
  .block-history__title strong {
    font-size: 60px;
    line-height: 0;
  }
  .block-history__grid {
    gap: 24px 10px;
  }
}
.block-cards {
  background: rgba(241, 237, 227, 0.4);
  padding: 25px 0 150px;
}
.block-cards__grid {
  display: flex;
  justify-content: space-between;
}
.block-cards__card {
  color: #1e1e1e;
  padding: 32px 32px;
}
.block-cards__card.left {
  width: calc(35% - 16px);
  border: 1px dashed #000000;
}
.block-cards__card.right {
  width: calc(65% - 16px);
  background-color: #fbbf00;
}
.block-cards__card-title {
  font-family: "Vintage Signature", cursive;
  font-weight: 400;
  font-size: 64px;
  text-transform: none;
}
.block-cards__card-list {
  font-size: 18px;
  font-weight: 500;
}
.block-cards__card-item {
  margin: 8px 0;
}

@media screen and (max-width: 992px) {
  .block-cards__card.left, .block-cards__card.right {
    width: calc(50% - 16px);
  }
}
@media screen and (max-width: 768px) {
  .block-cards__grid {
    flex-direction: column;
  }
  .block-cards__card {
    margin: 8px 0;
  }
  .block-cards__card.left, .block-cards__card.right {
    width: 100%;
  }
}
.block-cta {
  position: relative;
  top: -72px;
}
.block-cta__wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.block-cta__image {
  width: 144px;
  height: 144px;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}
.block-cta__title {
  margin-bottom: 4px;
}
.block-cta__content {
  margin-bottom: 8px;
  font-size: 18px;
}

@media screen and (max-width: 568px) {
  .block-cta__content {
    font-size: 16px;
  }
}
.block-footer {
  background-color: #3f4b99;
  color: #ffffff;
  text-transform: uppercase;
  padding: 75px 0 50px 0;
}
.block-footer__grid {
  display: flex;
  justify-content: space-between;
}
.block-footer__title {
  color: #fbbf00;
  margin-bottom: 20px;
}
.block-footer__item {
  font-weight: 700;
}
.block-footer__item p {
  margin-bottom: 12px;
}
.block-footer__link {
  color: #ffffff;
  display: block;
  margin: 12px 0;
  font-weight: 700;
}
.block-footer__link:hover {
  color: #fbbf00;
}
.block-footer__bottom {
  background-color: #1f2b7c;
  padding: 12px 0;
  font-size: 10px;
  color: #f1ede3;
  position: relative;
}
.block-footer__bottom-wrapper {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.block-footer__bottom-wrapper a {
  color: #f1ede3;
}
.block-footer__bottom-wrapper .creator {
  text-decoration: underline;
}
.block-footer__bottom-terms, .block-footer__bottom-privacy, .block-footer__bottom-cookie {
  border-right: 0.1px solid #f1ede3;
  padding-right: 3px;
  margin-right: 3px;
}
.block-footer__bottom-toTop {
  background-color: #fbbf00;
  position: absolute;
  bottom: 0;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-footer__bottom-toTop img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 992px) {
  .block-footer__grid {
    flex-wrap: wrap;
  }
  .block-footer__grid-item {
    width: 50%;
    padding: 16px 0;
  }
}
@media screen and (max-width: 568px) {
  .block-footer__grid-item {
    width: 100%;
  }
  .block-footer__bottom-wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: nowrap;
    height: unset;
  }
  .block-footer__bottom-terms, .block-footer__bottom-privacy, .block-footer__bottom-cookie {
    border-color: transparent;
    margin: 4px 0;
  }
}/*# sourceMappingURL=style.css.map */