@font-face {
  font-family: "RobotoSlab-Light";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/font/RobotoSlab-Light.woff2") format("woff2");
}
@font-face {
  font-family: "RobotoSlab-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/RobotoSlab-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Roboto-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Roboto-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Roboto-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Roboto-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Roboto-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/font/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/font/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-SemiBold";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/font/Poppins-SemiBold.woff2") format("woff2");
}
@font-face {
  font-family: "Poppins-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("/assets/font/Poppins-Bold.woff2") format("woff2");
}
.list {
  padding-bottom: 60px;
}
.list__text {
  margin-bottom: 30px;
}
.list__text p {
  --font-size: 14px;
  --font-size-rem: 0.875rem;
  --line-height: 22.4px;
  --line-height-rem: 1.4rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.list__items {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 50px;
}
.list__box {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.list__image {
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
.list__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background-color: var(--theme-color);
  padding: 30px;
  gap: 20px;
}
.list__title {
  color: #ffffff;
  font-family: "Poppins-Bold";
  --font-size: 22px;
  --font-size-rem: 1.375rem;
  --line-height: 28px;
  --line-height-rem: 1.75rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.list__description p {
  color: #ffffff;
  font-family: "Poppins-SemiBold";
  --font-size: 15px;
  --font-size-rem: 0.9375rem;
  --line-height: 25px;
  --line-height-rem: 1.5625rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
}
.list__button {
  padding: 10px 20px;
  color: var(--theme-color);
  background-color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  font-family: "Poppins-SemiBold";
  --font-size: 13px;
  --font-size-rem: 0.8125rem;
  --line-height: 20.8px;
  --line-height-rem: 1.3rem;
  font-size: var(--font-size-rem);
  line-height: var(--line-height-rem);
  transition-property: all;
  transition-duration: 0.2s;
  transition-timing-function: ease-in-out;
  transition-delay: 0s;
}
.list__button:hover {
  background-color: #e6e6e6;
}
@media screen and (min-width: 992px) {
  .list {
    padding-bottom: 100px;
  }
  .list__text {
    margin-bottom: 50px;
  }
  .list__box {
    flex-direction: row;
  }
  .list__image {
    width: 66.6666666667%;
    max-height: 600px;
  }
  .list__content {
    width: 33.3333333333%;
    padding: 40px 30px;
    gap: 30px;
  }
}