.our-story-sec-1 {
  width: 95%;
  margin: 12px auto 0 auto;
  background-color: #763111;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-story-sec-1 h1 {
  color: #ffff;
  font-size: 60px;
  letter-spacing: 1px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--font-secondary);
}

/* carousel */

.our-story {
  padding: 80px 0px;
}

.our-story-container {
  max-width: 95%;
  margin: auto;
}

.our-story-card {
  padding: 0 20px;
}

.our-story-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  border: 3px solid #444;
  padding: 6px;
}

.our-story-card h4 {
  margin-top: 36px;
  color: #7b3b1a;
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-secondary);
}

.our-story-card h4 span {
  font-family: var(--font-primary);
}

.our-story-card p {
  font-size: 14px;
  color: #666;
  margin-top: 12px;
  line-height: 1.4;
}

/* arrows */
.our-story .slick-slider {
  padding-bottom: 90px;
}

.our-story-arrow {
  position: absolute;
  bottom: 0;

  width: 60px;
  height: 60px;

  border-radius: 50%;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  cursor: pointer;
}

.our-story-prev {
  left: calc(50% - 60px);
}

.our-story-next {
  right: calc(50% - 60px);
}

.our-story-arrow svg {
  width: 60px;
  height: 60px;
}

.our-story-arrow:hover {
  background: #7b3a1a14;
}

.our-story-arrow:hover svg {
  fill: #7b3b1a;
}

@media (max-width: 600px) {
  .our-story-sec-1 {
    min-height: 180px;
  }

  .our-story-sec-1 h1 {
    font-size: 40px;
  }

  .our-story {
    padding: 40px 0px;
  }

  .our-story-card h4 {
    margin-top: 16px;
  }

  .our-story .slick-slider {
    padding-bottom: 60px;
  }

  .our-story-arrow {
    width: 36px;
    height: 36px;
  }

  .our-story-prev {
    left: calc(50% - 36px);
  }

  .our-story-next {
    right: calc(50% - 36px);
  }
}
