:root {
  --banner-gradient-color: #3a63dc;
}

.banner_dark .banner__tittle,
.banner_dark .banner__subtittle,
.banner_dark .banner__text,
.banner_dark .banner__bread-crumb,
.banner_dark .banner__download-text {
  color: white;
}

/* .banner_dark .banner__bread-crumb::after {
  color: white;
} */

.banner_dark .banner__bread-crumb_active {
  color: #2897FF;
}

.banner__container {
  max-width: 1160px;
  display: flex;
  flex-direction: column;
  margin: auto;
  font-family: "Inter", sans-serif;
  width: calc(100% - 40px);
}

.banner__tittle {
  font-size: 52px;
  color: #2e2e2e;
  margin-top: 20px;
  font-family: "livret","CommonsPro", "Inter", sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  line-height: 1.2;
}

.banner__subtittle {
  font-size: 22px;
  color: #2e2e2e;
  margin-top: 15px;
  line-height: 1.2;
}

.banner__date {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: bold;
  font-style: normal;
  color: #db6a4a;
  margin-top: 5px;
}

.banner__image-container {
  max-height: 340px;
  gap: 20px;
  margin-top: 30px;
  display: flex;
  width: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--banner-gradient-color) 100%
  );

  background-size: 100% 200%;
  background-position: top;
  background-repeat: no-repeat;
  animation: banner__image-container_animateGradientTop 3s ease-in-out infinite;
}

@keyframes banner__image-container_animateGradientTop {
  0%,
  100% {
    background-position: -10% -10%;
  }
  50% {
    background-position: 0% -20%;
  }
}

.bread-crumbs__container {
  margin-top: 15px;
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* Internet Explorer/Edge */
}

.bread-crumbs__container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.banner__image_left {
  width: calc(50% - 10px);
}

.banner__image_right {
  width: calc(50% - 10px);
}

.banner__text {
  /* margin-top: 30px; */
  padding: 30px 40px;
  max-width: 100%;
  font-size: 16px;
  color: #2e2e2e;

  line-height: 1.45;
}

.banner__download-container {
  display: flex;
  gap: 20px;
  align-items: center;

  margin-bottom: 45px;
}

.banner__download-text {
  font-size: 18px;
  /* opacity: 0.7; */
  font-weight: 400;
  text-decoration: none;
  color: #2e2e2e;
}

.banner__download-button {
  height: 50px;
  width: 50px;
  border-radius: 4px;
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* padding: 20px; */
  background-image: url("https://static.tildacdn.com/tild3231-3633-4234-a137-656433396166/Group_5372.png");
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0048f4;
  cursor: pointer;
}

.banner__download-button:hover {
  background-color: #0042df;
}

.banner__button-container {
  display: flex;
  margin-top: 30px;
  gap: 30px;
}

.banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 40px;
  height: 55px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;

  color: #ffffff !important;
}

/* .banner__button:hover {
  opacity: 0.8;
} */

.banner__button__button1 {
  background-color: #0048f4;
}

.banner__button__button1:hover {
  background-color: #0042df;
}

.banner__button__button2 {
  background-color: #fc9743;
}

.banner__button__button2:hover {
  background-color: #f17c1b;
}

.banner__bread-crumb {
  font-size: 12px;
  /* opacity: 0.7; */
  text-decoration: none;
  color: #86868b !important;
}

.banner__bread-crumb::after {
  content: "/";
  margin: 0 10px;
  color: #86868b important;
}

.banner__bread-crumb:last-of-type::after {
  content: "";
}

.banner__bread-crumb_active {
  opacity: 1;
  color: #2897FF !important;
}

@media screen and (max-width: 960px) {
  .banner__image_left {
    display: none;
  }

  .banner__image-container {
    justify-content: end;
  }

  .banner__tittle {
    width: 100%;
    font-size: 36px;
  }

  .banner__subtittle {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .banner__image_right {
    width: 100%;
  }
  .banner__image-container {
    justify-content: center;
  }

  .banner__button-container {
    gap: 15px;
    display: flex;
    flex-direction: column;
  }

  .banner__button {
    width: auto;
    align-self: flex-start;
    color: #ffffff !important;
  }

  .banner__text {
    /* margin-top: 30px; */
    padding: 30px 20px;
  }
}

.banner__image-only {
  height: 340px;
  width: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

@media screen and (max-width: 640px) {
  .banner__image-only {
    width: 100%;
    height: 300px;
  }
}



.breadcrumbs__container {
  max-width: 1160px;
  display: flex;
  flex-direction: column;
  margin: auto;
  font-family: "Inter", sans-serif;
  width: calc(100% - 40px);
}