/*#region ------ Variables --- */
/*#endregion*/
/*#region ------ Fonts --- */
/*#endregion*/
/*#region ------ Colors --- */
/*#endregion*/
/*#region ------ Titles --- */
/*#endregion*/
/*#region ------ Adaptive --- */
/*#endregion*/
/*#region ------ Functions --- */
/*#endregion*/
/* ------ Global ------ */
/* ------ Parts ------ */
/* ------ Components ------ */
/* ------ Widgets ------ */
/* ------ UI ------ */
/* ------ Templates ------ */
/* ------ Misc ------ */
.component_list_1 {
  display: flex;
}
.component_list_1 > .container {
  z-index: 2;
}
.component_list_1 .component__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.component_list_1 .component__link {
  width: fit-content;
  min-width: 220px;
  flex-shrink: 0;
}
.component_list_1 .component__title {
  padding-right: 15px;
  line-height: 120%;
}
.component_list_1 .component__title.style_1 {
  color: var(--color-dark);
  font-family: var(--font-1_Bold);
  font-size: 48px;
  line-height: 100%;
}
@media (max-width: 1199px) {
  .component_list_1 .component__head {
    margin-bottom: calc(0.0227272727 * 100vw + 12.7272727273px);
  }
  .component_list_1 .component__title.style_1 {
    font-size: calc(0.0181818182 * 100vw + 26.1818181818px);
  }
}
@media (max-width: 767px) {
  .component_list_1 .component__title {
    text-align: center;
    padding-right: 0px;
  }
  .component_list_1 .component__head.type_1 {
    flex-direction: column;
  }
  .component_list_1 .component__head.type_2 {
    flex-direction: column;
    justify-content: center;
  }
  .component_list_1 .component__link {
    margin-top: 15px;
  }
}
.component_list_1 .component__grid {
  display: grid;
  grid-column-gap: 30px;
  grid-template-columns: repeat(2, 1fr);
}
.component_list_1 .card {
  position: relative;
  border-radius: 20px;
  padding: 50px;
  background-color: var(--color-dark);
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform ease-in-out 300ms, background-color ease-in-out 300ms;
}
.component_list_1 .card:hover {
  background-color: var(--color-primary);
  transform: scale(1.03);
}
.component_list_1 .card__title {
  color: var(--color-light);
  line-height: 120%;
}
.component_list_1 .card__link {
  margin-top: 15px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  font-family: var(--font-1_Medium);
  font-size: 20px;
  line-height: 100%;
  height: 80px;
  padding: 0 15px;
  border-radius: 10px;
  transition: transform ease 300ms, background-color ease 300ms, color ease 300ms;
  overflow: hidden;
  background-color: var(--color-light);
  color: var(--color-primary);
  min-width: 220px;
  width: fit-content;
  background-color: var(--color-light) !important;
  transform: none !important;
  color: var(--color-primary) !important;
}
@media (max-width: 1199px) {
  .component_list_1 .card__link {
    font-size: calc(0.0045454545 * 100vw + 14.5454545455px);
  }
}
@media (max-width: 1199px) {
  .component_list_1 .card__link {
    height: calc(0.0340909091 * 100vw + 39.0909090909px);
  }
}
.component_list_1 .card__link:hover {
  color: var(--color-light);
  transform: scale(1.1);
  background-color: var(--color-hover);
}
.component_list_1 .card__image {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (max-width: 575px) {
  .component_list_1 .card {
    padding: 25px;
    min-height: auto;
  }
  .component_list_1 .card__title {
    margin-bottom: 15px;
  }
  .component_list_1 .card__link {
    width: 100%;
    order: 1;
  }
  .component_list_1 .card__image {
    position: relative;
    width: calc(100% + 25px);
  }
  .component_list_1 .card__image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .component_list_1 .component__grid {
    grid-row-gap: 30px;
    grid-template-columns: 100%;
  }
}