/* Araniko Banner start  */
.arniko-banner__section {
  position: relative;
}
.arniko-banner__section img {
  height: 100vh;
  width: 100%;
  object-fit: cover;
}
.arniko-banner__section .entry-container {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
}
.arniko-banner__section .entry-container::after {
  content: "";
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 25.87%,
    rgba(0, 0, 0, 0.98) 105.87%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.arniko-banner__section .entry-container > div {
  position: relative;
  z-index: 3;
  bottom: 25%;
  max-width: 850px;
  margin: 0 auto;
}
.arniko-banner__section .entry-container h2 {
  font-size: clamp(30px, 4vw, 56px);
  color: var(--light);
  font-weight: 600;
  margin-bottom: 10px;
}
.arniko-banner__section .entry-container p {
  color: #e7e8e6;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
/* Araniko Banner end  */

/* Our Project start  */
.our-project__wrapper {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(9, 1fr);
  gap: 20px;
}
.our-project__container {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.our-project__container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center center;
}
.our-project__container .entry-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 11.83%,
    rgba(0, 0, 0, 0.8) 100%
  );
  transform: translateY(100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
  padding: 30px;
}
.our-project__container:hover img {
  transform: scale(1.05);
}
.our-project__container:hover .entry-content {
  visibility: visible;
  transform: translateY(0);
  opacity: 1;
}
.our-project__container h3 a {
  color: var(--light);
}
.our-project__container p {
  color: #e7e8e6;
  font-size: clamp(14px, 1.5vw, 16px);
  text-transform: uppercase;
  margin-top: 6px;
}
.our-project__container:nth-child(1) {
  grid-column: span 2 / span 2;
}
.our-project__container:nth-child(2) {
  grid-column: span 2 / span 2;
  grid-column-start: 3;
}
.our-project__container:nth-child(3) {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
  grid-column-start: 5;
}
.our-project__container:nth-child(4) {
  grid-column: span 4 / span 4;
  grid-row: span 2 / span 2;
  grid-row-start: 2;
}
.our-project__container:nth-child(5) {
  grid-column: span 6 / span 6;
  grid-row: span 3 / span 3;
  grid-row-start: 4;
}
.our-project__container:nth-child(6) {
  grid-column: span 3 / span 3;
  grid-row: span 3 / span 3;
  grid-row-start: 7;
}
.our-project__container:nth-child(7) {
  grid-column: span 3 / span 3;
  grid-row: span 2 / span 2;
  grid-column-start: 4;
  grid-row-start: 7;
}
.project-button {
  margin-top: clamp(20px, 3vw, 35px);
}
/* Our Project end  */

/* Our Service start  */
.our-service__section {
  background-color: #ecc9ce;
}
.our-service__wrapper .uk-accordion > li {
  margin: 0 0 20px;
}
.our-service__wrapper .uk-accordion > li:last-child {
  margin: 0;
}
.our-service__wrapper .uk-accordion-content {
  display: flex;
  align-items: start;
  gap: 30px;
  justify-content: space-between;
  margin: 20px 0;
}
.our-service__wrapper .uk-accordion-title {
  border-bottom: 1px solid #0000001c;
  font-size: clamp(18px, 2vw, 20px);
  color: #473c3e;
  letter-spacing: -3%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 8px;
}
.our-service__wrapper .uk-accordion-title::before {
  content: unset;
}
.our-service__wrapper .uk-accordion-title span {
  display: flex;
  align-items: center;
  gap: 25px;
}
.our-service__wrapper .uk-accordion-title span::after {
  background-image: unset;
  content: "\2b";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: var(--primary);
}
.our-service__wrapper .uk-open .uk-accordion-title span::after {
  content: "\f00d";
}
.our-service__wrapper .uk-accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.our-service__wrapper .uk-accordion-content p,
.our-service__wrapper .uk-accordion-content ul li {
  color: #6d5c5f;
  font-size: 16px;
}
.our-service__wrapper .uk-accordion-content ul li:not(:last-child) {
  margin-bottom: 16px;
}
.our-service__wrapper .uk-accordion-content .btn-outline {
  margin-top: clamp(20px, 3vw, 40px);
}
.our-service__wrapper .featured-image {
  width: 544px;
  height: 348px;
  position: relative;
  margin-bottom: 20px;
}
.our-service__wrapper .featured-image::before {
  content: url(../img/service-bg.png);
  position: absolute;
  top: 40px;
  left: -40px;
}
.our-service__wrapper .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
}
/* Our Service end  */

@media (max-width: 1200px) {
  .our-project__container .entry-content {
    opacity: 1;
    visibility: visible;
    transform: unset;
    padding: 20px;
  }
  .arniko-banner__section img {
    height: 80vh;
  }
}
@media (max-width: 992px) {
  .our-project__wrapper {
    display: block;
  }
  .our-project__container {
    margin-bottom: 15px;
  }
  .our-project__container .entry-content {
    position: static;
    transform: none;
    visibility: visible;
    opacity: 1;
    background: transparent;
    padding: 15px;
    background: #111;
  }
  .our-service__wrapper .featured-image {
    width: 400px;
    height: 290px;
  }
  .our-service__wrapper .featured-image::before {
    content: unset;
  }
  .arniko-banner__section img {
    height: 70vh;
  }
  .arniko-banner__section .entry-container > div {
    bottom: 20%;
  }
}
@media (max-width: 767px) {
  .our-service__wrapper .featured-image {
    display: none;
  }
  .arniko-banner__section img {
    height: 60vh;
  }
  .arniko-banner__section .entry-container > div {
    bottom: 15%;
  }
}
