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

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

/* line 14, 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 27, 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 28, app/assets/stylesheets/resources.scss */
.resources__title .first {
  color: #009CDE;
}

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

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

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

/* line 54, 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 65, app/assets/stylesheets/resources.scss */
.resources__container.ar {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}

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

/* line 76, 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 87, 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 98, app/assets/stylesheets/resources.scss */
.resources__section-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

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

/* line 110, 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 116, 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 125, 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 134, app/assets/stylesheets/resources.scss */
.resources__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* line 140, 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 152, app/assets/stylesheets/resources.scss */
.resources__element:hover {
  animation: zoom-in 500ms forwards;
}

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

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

/* line 166, 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 175, 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 183, 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 196, 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: 1100px) {
  /* line 14, app/assets/stylesheets/resources.scss */
  .resources {
    --element-dimension: 236px;
  }
  /* line 212, 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 217, 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: 950px) {
  /* line 14, app/assets/stylesheets/resources.scss */
  .resources {
    --element-width-dimension: 284px;
  }
  /* line 227, app/assets/stylesheets/resources.scss */
  .resources__container {
    flex-direction: column;
    gap: 40px;
  }
  /* line 231, app/assets/stylesheets/resources.scss */
  .resources__container > * {
    position: relative;
  }
  /* line 234, app/assets/stylesheets/resources.scss */
  .resources__container > *:not(:first-child)::before {
    height: 0%;
  }
}

@media (max-width: 580px) {
  /* line 14, app/assets/stylesheets/resources.scss */
  .resources {
    --element-width-dimension: 284px;
  }
  /* line 243, app/assets/stylesheets/resources.scss */
  .resources__container {
    align-items: center !important;
    flex-direction: column !important;
    gap: 40px !important;
  }
  /* line 248, app/assets/stylesheets/resources.scss */
  .resources__container > * {
    position: relative;
  }
  /* line 251, app/assets/stylesheets/resources.scss */
  .resources__container > *:not(:first-child)::before {
    height: 0%;
  }
  /* line 257, 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 261, app/assets/stylesheets/resources.scss */
  .resources__content {
    align-items: center;
    flex-direction: column;
    width: unset;
  }
}
