.home-section {
  padding: 5rem 0;
}
.home-section-first {
  border-bottom: 1px solid;
}
.home-section__image__container {
  position: relative;
}
.home-section__image-img {
  z-index: 5;
  position: relative;
}
.home-section__image-bg {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.home-section-last .home-section__image-bg {
  left: 3.2rem;
}
.home-section-first .home-section__image-bg {
  right: 3.2rem;
}
.home-section-last .home-section__content {
  padding-left: 6rem;
}
.home-section-first .home-section__content {
  padding-right: 6rem;
}
.home-section__content__head {
  color: var(--gray-color);
}
.home-section__content__head-label {
  font-size: 2rem;
}
.home-section__content__head-title {
  font-size: 4rem;
  font-family: Almarai-bold, Arial, sans-serif;
  color: var(--primary-color);
}
.home-section__content__text {
  color: var(--secondary-color);
  margin: 2rem 0 0;
}
.home-section__content__gallery {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.home-section__content__gallery-item {
  width: 32%;
}
.home-section__content__actions {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.home-section__content__actions a:not(:first-of-type) {
  margin-right: 1.2rem;
}
.home-section__content__actions-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 32%;
  font-size: 1.5rem;
  height: 4.5rem;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 0 1rem;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.home-section__content__actions-more:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: var(--primary-color);
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.home-section__content__actions-more:active,
.home-section__content__actions-more:focus,
.home-section__content__actions-more:hover {
  color: var(--white-color);
}
.home-section__content__actions-more svg {
  transition: 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}
.home-section__content__actions-more:hover svg {
  transform: translateX(-0.3125rem);
}
.home-section__content__actions-more svg path {
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.home-section__content__actions-more:active svg path,
.home-section__content__actions-more:focus svg path,
.home-section__content__actions-more:hover svg path {
  fill: var(--white-color);
  stroke: var(--white-color);
}
.home-section__content__actions-more:active:before,
.home-section__content__actions-more:focus:before,
.home-section__content__actions-more:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
.home-section__content__actions-btn {
  height: 4.5rem;
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--primary-color);
  color: var(--white-color);
  font-size: 1.5rem;
  transition: 0.2s ease-in-out;
  justify-content: center;
}
.home-section__content__actions-btn:hover {
  color: var(--white-color);
  box-shadow: inset 0 0 20px rgb(255 255 255 / 25%),
    0 0 20px rgb(255 255 255 / 10%);
}
@media only screen and (max-width: 992px) {
  .home-section-first .home-section__content {
    order: -1;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
  }
  .home-section-last .home-section__content {
    padding-left: calc(var(--bs-gutter-x) * 0.5);
  }
  .home-section {
    padding: 3rem 0 8rem;
  }
  .home-section-row {
    position: relative;
  }
  .home-section__content__actions {
    position: absolute;
    bottom: -6rem;
    width: 100%;
  }
  .home-section__content {
    margin-bottom: 1.5rem;
  }
  .home-section__image-bg {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .home-section__content,
  .home-section__content__text {
    text-align: center;
  }
}
@media only screen and (max-width: 480px) {
  .home-section {
    padding-bottom: 13rem;
  }
  .home-section__content__actions {
    bottom: -11rem;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-left: 1.5rem;
  }
  .home-section__content__actions-more {
    width: 100%;
    margin-bottom: 1rem;
  }
  .home-section__content__actions-btn {
    margin: 0 !important;
    width: 55%;
  }
  .home-section__content__actions-btn:last-of-type {
    width: 40%;
  }
}
