html {
  scroll-behavior: smooth;
}

#hero {
  background: #9AB6A5;
  background: linear-gradient(0deg,rgba(154, 182, 165, 1) 0%, rgba(255, 255, 255, 1) 100%);
  padding-top: 100px;
}

.hero-inner {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
}
.hero-text-wrapper {
  width: 60%;
  height: 100%;
  position: relative;
}


.hero-text-intro-container {
  width: 100%;
  height: 15%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding: 0;
}

.hero-text-intro-container-inner {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  width: auto;
  border-bottom: 1px solid var(--prim-col);
  padding: 10px;
}
.hero-text-intro-text {
  color: var(--prim-col);
  padding: 0;
  margin: 0;
  font-weight: bold;
}

.hero-text-main-container {
  width: 100%;
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

.hero-text-name-container {
  display: flex;
  justify-content: center;
  height: 5%;
}

.hero-text-menu-container {
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  height: 20%;
}

.hero-menu-item {
  padding: 20px;
  border-radius: 5px;
  background-color: var(--prim-col);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: black;
  font-weight: bold;
  cursor: pointer;
  transition: .2s;
}

.hero-menu-item:hover {
  color: white;
  transform: scale(.95);
}

.hero-menu-item p {
  padding: 0;
  margin: 0;
}

.hero-image-wrapper {
  width: 40%;
  height: 100%;
}

.hero-img {
  object-fit: contain;
  height: 90%;
  border-radius: 25px;
  padding: 0;
  margin: 0;
}

#offer {
  background: #9AB6A5;
  background: linear-gradient(180deg,rgba(154, 182, 165, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.offer-inner {
  display: flex;
  padding-top: 50px;
}

.offer-menu-wrapper {
  width: 30%;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.offer-menu-link {
  transition: .2s;
  margin-top: 30px;
  color: gray;
  cursor: pointer;
}
.offer-menu-link:nth-child(1) {
  margin-top: 0;
}
.offer-menu-active {
  color: black;
  animation: offer-menu-active .2s ease-out forwards;
}

@keyframes offer-menu-active {
  0% {
    margin-left: 0;
  }
  100% {
    margin-left: 50px;
  }
}

.offer-list-wrapper {
  padding-left: 100px;
}

.offer-list-text {
  padding-bottom: 100px;
  font-size: 20px;
  color: var(--prim-col);
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;            
  gap: 20px;                            
  box-sizing: border-box;            
  max-width: 100%;                    
}

.offer-card-container {
  padding: 25px;
  background-color: var(--sec-col);
  border-radius: 5px;
}
.offer-card-title {
  display: flex;
  justify-content: center;
  width: 100%;
}
.offer-card-title-text {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}

.offer-card-detail {
  display: flex;
  justify-content: center;
  align-items: center;
}

.offer-card-detail-btn {
  width: 100px;
  border: 1px var(--prim-col) solid;
  padding: 10px;
  color: var(--prim-col);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: .2s;
}
.offer-card-detail-btn-text {
  padding: 0;
  margin: 0;
  font-weight: bold;
}

.offer-card-detail-btn:hover {
  color: var(--sec-col);
  background-color: var(--prim-col);
}