/* line 5, app/assets/stylesheets/resources.scss */
#resources {
  position: relative;
  overflow: hidden;
  background: white;
  padding: 50px 80px 50px;
}

@media (max-width: 600px) {
  /* line 5, app/assets/stylesheets/resources.scss */
  #resources {
    padding: 50px 0;
  }
}

/* line 16, app/assets/stylesheets/resources.scss */
.resources {
  --first-element-width-dimension: 384px;
  --first-element-higth-dimension: 100px;
  --first-details-width-dimension: 198px;
  --first-image-dimension: 186px;
  --element-width-dimension: 384px;
  --element-higth-dimension: 100px;
  --details-width-dimension: 270px;
  --image-width-dimension: 120px;
  --image-height-dimension: 95px;
}

/* line 29, app/assets/stylesheets/resources.scss */
.resources__title {
  font-family: "Primary";
  font-style: normal;
  font-weight: 800;
  font-size: 56px;
  line-height: 56px;
  text-align: center;
  flex: auto;
  align-content: space-between;
  display: flex;
  justify-content: center;
  padding: 10px;
}

/* line 30, app/assets/stylesheets/resources.scss */
.resources__title .first {
  color: #009CDE;
}

/* line 33, app/assets/stylesheets/resources.scss */
.resources__title .second {
  margin: 0 7px;
  color: #212121;
}

/* line 45, app/assets/stylesheets/resources.scss */
.resources__container.en {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}

/* line 52, app/assets/stylesheets/resources.scss */
.resources__container.en > * {
  position: relative;
}

/* line 56, app/assets/stylesheets/resources.scss */
.resources__container.en > *:not(:first-child)::before {
  content: '';
  position: absolute;
  left: -25px;
  height: 79%;
  width: 1px;
  background-color: #DADCE0;
}

/* line 67, app/assets/stylesheets/resources.scss */
.resources__container.ar {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}

/* line 74, app/assets/stylesheets/resources.scss */
.resources__container.ar > * {
  position: relative;
}

/* line 78, app/assets/stylesheets/resources.scss */
.resources__container.ar > *:not(:last-child)::before {
  content: '';
  position: absolute;
  left: -25px;
  height: 79%;
  width: 1px;
  background-color: #DADCE0;
}

/* line 89, app/assets/stylesheets/resources.scss */
.resources section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: white;
  padding-top: 80px;
  padding-bottom: 80px;
}

/* line 100, app/assets/stylesheets/resources.scss */
.resources__section-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

/* line 106, app/assets/stylesheets/resources.scss */
.resources__section-header .left-portion {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
}

/* line 112, app/assets/stylesheets/resources.scss */
.resources__section-header .left-portion .title {
  justify-content: flex-start;
  font-family: "Primary";
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 32px;
  text-align: center;
  color: #212121;
}

/* line 118, app/assets/stylesheets/resources.scss */
.resources__section-header .left-portion .size {
  justify-content: flex-start;
  font-family: "Secondary";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  color: #9E9E9E;
  margin: 0 3px;
}

/* line 127, app/assets/stylesheets/resources.scss */
.resources__section-header .view-all-link {
  justify-content: flex-end;
  font-weight: 700;
  color: #F9A529;
  text-transform: uppercase;
  font-size: 16px;
}

/* line 136, app/assets/stylesheets/resources.scss */
.resources__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* line 142, app/assets/stylesheets/resources.scss */
.resources__element {
  display: flex;
  overflow: hidden;
  flex-direction: row;
  justify-content: space-between;
  width: var(--element-width-dimension);
  height: var(--element-higth-dimension);
  gap: 20px;
  background: transparent;
  border-radius: 10px;
  transition: transform 0.3s;
}

/* line 154, app/assets/stylesheets/resources.scss */
.resources__element:hover {
  animation: zoom-in 500ms forwards;
}

@keyframes zoom-in {
  100% {
    transform: scale(1.1);
  }
}

/* line 163, app/assets/stylesheets/resources.scss */
.resources__element .icon {
  border-radius: 10px;
  display: flex;
  justify-content: center;
}

/* line 168, app/assets/stylesheets/resources.scss */
.resources__element .icon img {
  width: var(--image-width-dimension);
  height: var(--image-height-dimension);
  justify-content: center;
  border-radius: 10px;
  object-fit: cover;
}

/* line 177, app/assets/stylesheets/resources.scss */
.resources__element .text-content {
  width: var(--details-width-dimension);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-direction: column;
}

/* line 185, app/assets/stylesheets/resources.scss */
.resources__element .text-content h3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 10px;
  font-family: "Primary";
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  text-align: start;
  color: #212121;
}

/* line 198, app/assets/stylesheets/resources.scss */
.resources__element .text-content .details {
  padding-right: 10px;
  font-size: 12px;
  color: #999;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  /* line 16, app/assets/stylesheets/resources.scss */
  .resources {
    --element-dimension: 236px;
  }
  /* line 214, app/assets/stylesheets/resources.scss */
  .resources__element .title {
    font-family: "Primary";
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    text-align: start;
  }
  /* line 219, app/assets/stylesheets/resources.scss */
  .resources__element .subtitle {
    font-family: "Secondary";
    font-style: normal;
    font-weight: 400;
    font-size: 10px;
    line-height: 14px;
    text-align: center;
    text-align: start;
  }
}

@media (max-width: 1024px) {
  /* line 16, app/assets/stylesheets/resources.scss */
  .resources {
    --element-width-dimension: 284px;
  }
  /* line 229, app/assets/stylesheets/resources.scss */
  .resources__container {
    flex-direction: column;
    gap: 40px;
  }
  /* line 233, app/assets/stylesheets/resources.scss */
  .resources__container > * {
    position: relative;
  }
  /* line 236, app/assets/stylesheets/resources.scss */
  .resources__container > *:not(:first-child)::before {
    height: 0%;
  }
}

@media (max-width: 600px) {
  /* line 16, app/assets/stylesheets/resources.scss */
  .resources {
    --element-width-dimension: 284px;
  }
  /* line 245, app/assets/stylesheets/resources.scss */
  .resources__container {
    align-items: center !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  /* line 250, app/assets/stylesheets/resources.scss */
  .resources__container > * {
    position: relative;
  }
  /* line 253, app/assets/stylesheets/resources.scss */
  .resources__container > *:not(:first-child)::before {
    height: 0%;
  }
  /* line 259, app/assets/stylesheets/resources.scss */
  .resources__title {
    font-family: "Primary";
    font-style: normal;
    font-weight: 800;
    font-size: 40px;
    line-height: 32px;
    text-align: center;
  }
  /* line 263, app/assets/stylesheets/resources.scss */
  .resources__content {
    align-items: center;
    flex-direction: column;
    width: unset;
  }
}
