* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.almarai-light {
  font-family: "Almarai", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.almarai-regular {
  font-family: "Almarai", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.almarai-bold {
  font-family: "Almarai", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.almarai-extrabold {
  font-family: "Almarai", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.content {
  width: 100%;
  height: 100vh;
  display: flex;
}

.content__container {
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-image: url("./images/dadehfa-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 220px 100px 140px;
}

.content__main {
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content__main-logo {
  width: 100%;
  display: flex;
  align-items: center;
}

.content__main-logo-image {
  width: 121px;
  height: 156px;
}

.content__main-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content__main-text-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content__download-button {
  width: max-content;
  display: flex;
  gap: 4px;
  align-items: center;
  border-bottom: 1px solid #001f31;
  height: 30px;
  transition: all 0.1s ease-in-out;
}

.content__download-button:hover {
  height: 35px;
}

.content__download-button a {
  color: #001f31;
  font-size: 16px;

  font-family: "Yekan-Regular";
  font-weight: 400;
  text-decoration: none;
}

.content__download-button img {
  width: 24px;
  height: 24px;
}

.content__main-text-title {
  font-family: "Yekan-Bold";
  font-size: 40px;
  color: #000;
}

.content__main-text-description {
  font-family: "Yekan-Regular";
  font-size: 20px;
  color: #000;
}

.content__main-buttons-container {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.content__main-button {
  width: max-content;
  display: flex;
  align-items: center;
}

.content__secondary-button {
  width: max-content;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, #31bfed, #1c6d87);
  padding: 2px;
  border-radius: 10px;
}

.content__main-button a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-family: "Yekan-Regular";
  font-weight: 400;
  background: linear-gradient(to right, #31bfed, #1c6d87);
  padding: 17px 54px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.content__secondary-button a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  font-family: "Yekan-Regular";
  font-weight: 400;
  background: #fff;
  padding: 17px 54px;
  border-radius: 8px;

  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.content__main-button a:hover,
.content__secondary-button a:hover {
  transform: translateY(-5px);
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
  border: 1px solid #fff;
}

.content__carts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 20px;
  border: 1px solid #8df5ff;
}

.content__carts h1 {
  font-family: "Yekan-Regular";
  font-size: 16px;
  font-weight: 400;
  color: #000;
}

.content__carts-card {
  width: 100%;
  display: flex;

  font-family: "Yekan-Bold";
}

.content__carts-card-link {
  width: 25%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-family: "Yekan-Bold";
  border-left: 1px solid #8df5ff;
  padding: 10px;
}

.content__carts-card-link a {
  text-decoration: none;
  color: #000;
  border-bottom: 1px solid transparent;
  padding-bottom: 4px;
  font-size: 16px;
  font-family: "Yekan-Medium";
}

.content__carts-card-link-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.content__carts-card-link a:hover {
  transition: all 0.3s ease;
  border-bottom: 1px solid #000;
}

.content__carts-card-title {
  font-size: 20px;
  color: #000;
}

.content__poster {
  width: 30%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.content__poster-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content__poster-link {
  position: absolute;
  bottom: 0;
  left: 0;
  padding-bottom: 16px;
  z-index: 2;
  text-decoration: none;
  text-align: center;
  width: 100%;
  color: white;
  font-family: "Yekan-Medium";
}
