@import url('https://fonts.googleapis.com/css2?family=Overpass:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/doriel');

* {
  font-family: 'Overpass', sans-serif;
}

.container-farm-card {
  width: 100%;
  height: 100%;
  background: url('../images/sheep-farm-banner.svg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 37px;

}

.container-background-tour {
  width: 100%;
  height: 100%;
  /* Full viewport height */
  background: url(../images/banner-farm-tour.svg) no-repeat center center;
  background-size: cover;
  /* Ensure full coverage */
  display: flex;
  align-items: center;
  /* Center content vertically */
  justify-content: center;
  /* Center content horizontally */
}

.my-farm-container {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  padding: 10px;
  max-width: 1140px;
}

.my-farm-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.my-farm-content h1 {
  font-size: 3rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 3px;
}

.header-farm {
  padding: 0px 0px 0px 0px;
  color: #168c44;
  line-height: 78.02px;
  font-variant: normal;
}

.my-farm-description {
  display: flex;
  justify-content: center;
  align-items: center;
}

.handle-farm-tour {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 0px 0px 0px;
  color: #168c44;
  font-style: normal;
}

.my-farm-description p {
  width: 90%;
  font-size: 18px;
}

.farm-content-detail {
  color: #bfa088;
  font-weight: bold;
  line-height: 1.5;
}

.my-farm-map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.my-farm-map iframe {
  width: 90%;
  background-color: azure;
}

.form-servies-container {
  width: 100%;
  background: url(../images/banner-page.png) no-repeat center center;
  background-size: contain;
}

.handle-button-more {
  display: flex;
  justify-content: center;
}

/* Modal Styles */
.container-model {
  display: none !important;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 54px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  padding: 16px;
  /* Prevents content from touching screen edges */
  overflow-y: auto;
  /* Allows scrolling if content is too tall */
}

.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 90%;
  /* Default width */
  max-width: 600px;
  /* Maximum modal width */
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  transition: color 0.3s ease-in-out;
}

.close-btn:hover {
  color: #f00;
  /* Red on hover */
}

/* Title Styling */
.title-model {
  color: #f4a622;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}

.form-servies {
  display: grid;
  grid-template-rows: 8% 87% max-content;
}

.form-servies-title {
  display: flex;
  justify-content: center;
  /* Center the text */
  align-items: center;
  /* Align everything vertically */
  position: relative;
  /* Allow absolute positioning for icons */
  width: 100%;
  text-align: center;
  padding: 20px 0;
}

.farm-servies-icon,
.farm-servies-heart {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: clamp(40px, 8vw, 80px);
  /* Make icons responsive */
  height: clamp(40px, 8vw, 80px);
  position: absolute;
  /* Position icons separately */
}

.farm-servies-icon {
  background-image: url('../images/icon-cloud.svg');
  left: 5%;
  top: 16%;
}

.farm-servies-heart {
  background-image: url('../images/icon-heart.svg');
  right: 13%;
  /* Position right */
  top: 5%;
}

.caption-form {
  font-size: 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  color: #168c44;
  font-style: normal;
}

.farm-handle-map {
  display: flex;
  flex-direction: column;
}

.form-card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
}

.service-card {
  border: 3px solid #168c44;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  width: 32%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: scale(1.05);
}

.circle {
  background-color: #168c44;
  color: #ffee00;
  font-family: 'Doriel', sans-serif !important;
  font-size: 2.5rem;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px auto 10px;
}

.caption-card-title {
  font-size: 19px;
  font-weight: 600;
  color: rgb(51, 51, 51);
  margin-bottom: 10px;
  padding: 0px 0px 0px 0px;
  line-height: 1.4;
  font-style: normal;
}

.service-icon {
  width: 178px;
  height: 157px;
  margin-bottom: 15px;
}

.card-detail {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
}

.raise-sheep-container {
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0px 48px 0px 48px;
}

.padding-raise {
  display: flex;
  justify-content: center;
  padding: 50px 0px 0px 0px !important;
}


.raise-sheep-content {
  display: flex;
  justify-content: center;
  padding: 6px 0px 0px 0px;
}

.step {
  background: white;
  border: 3px solid #168c44;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.step-number {
  width: 60px;
  height: 60px;
  font-family: 'Doriel', sans-serif !important;
  background: #008000;
  color: white;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 61px;
  border-radius: 50%;
  margin: -7px 0px 0px 0px;
}

.custom-line {
  border: none;
  height: 3px;
  background-color: #168c44;
  width: 100%;
  margin-top: -2px;
  opacity: 1.7;
}

.detail-stept {
  padding: 10px 0px 0px 0px;
  color: #000000;
}

.choose-conten {
  font-size: 30px;
  line-height: 0.5;
  color: #168c44;
  font-weight: 500;
  font-style: normal;
}

.detail-stept>p {
  font-size: 18px;
  line-height: 0.7;
  font-weight: 600;
  padding: 0px 0px 0px 19px;
}

.container-triangle {
  display: flex;
  justify-content: center;
  padding: 0px 0px 18px 0px;
}

.triangle {
  width: 0px;
  height: 0px;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 20px solid #168c44;
  margin: -8px auto;
}

.container-raise {
  display: flex;
  justify-content: center;
}

.container-farm-tour {
  display: flex;
  padding: 0px 7px 0px 7px;
  flex-direction: column;
}

.farm-container-center {
  display: flex;
  justify-content: center;
  padding: 0px 24px 24px 24px;
}

.farm-tour {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  height: auto;
  margin: auto;
  padding: 5px;

}

.farm-card {
  display: flex;
  justify-content: space-between;
  background-color: #778731;
  border-radius: 2px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  height: 100%;
  border: 2px solid #77a600;
}

.farm-card-content {
  display: flex;
  width: 50%;
  padding: 4px;
  height: 340px;
}

.card-content-farm>p>strong {
  color: #ffee00;
  font-size: 15px;
  font-weight: 500;
}

.card-content-farm>p {
  color: rgb(255, 255, 255);
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
}

.content-section {
  text-align: left;
  padding: 10px 30px 20px 30px;
  line-height: 1.2;
}

/* Image Gallery */
.image-gallery {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.image-gallery img {
  width: 45%;
  border-radius: 2px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.content-section>p>strong {
  color: #247847 !important;
  font-weight: 600;
}

.content-section>p {
  color: #212121 !important;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 6px;
}

.fix-image-resposive {
  object-fit: cover;
  max-width: 100%;
  min-width: 100%;
  height: 340px;
}


.show-more-button {
  background-color: #ffee00;
  color: #008000;
  padding: 5px 24px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  transition: background 0.3s ease;
}

@media (min-width: 1240px) {
  .my-farm-container {
    min-width: 1200px;
  }
}

@media (min-width: 1300px) {
  .my-farm-container {
    min-width: 1300px;
  }
}

@media (max-width: 1300px) {
  .farm-card-content {
    display: flex;
    /* flex-direction: column; */
    width: 48%;
    padding: 4px;
    height: 330px;
  }

  .card-content-farm {
    text-align: left;
    padding: 0px 0px 0px 6px;
    line-height: 1.4;
    height: 300px;
  }

  .fix-image-resposive {
    height: 330px;

  }

  .image-farm-tour {
    width: 52% !important;
    display: flex;
    justify-content: center;
  }

  .card-content-farm>p {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
  }

  .card-content-farm>p>strong {
    color: #ffee00;
    font-size: 15px;
    font-weight: 500;
  }

  .handle-content {
    font-size: 17px !important;
    margin-bottom: 6px;
  }
}

@media (max-width: 1024px) {
  .modal-content {
    width: 80%;
    max-width: 500px;
  }

  .container-farm-card {
    padding: 15px;
  }

  .form-servies-title h3 {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 600;
    color: #168c44;
  }

  .farm-servies-heart {
    width: clamp(40px, 6vw, 80px);
    height: clamp(40px, 6vw, 80px);
  }

  .form-servies-title {
    padding: 5px 0;
  }
}

@media (max-width: 1240px) {
  .card-content-farm {
    padding: 4px !important;
    line-height: 1.35 !important;

  }

  .farm-card-content {
    display: flex;
    height: 346px;
  }

  .fix-image-resposive {
    height: 346px;

  }

  .show-more-button {
    padding: 4px 24px;

    margin-top: 5px;
    font-size: 12px;

  }
}

@media only screen and (max-width: 1075px) {
  .farm-card-content {
    display: flex;
    width: 48%;
    padding: 4px;
    height: 363px;
  }

  .card-content-farm {
    text-align: left;
    padding: 2px;
    line-height: 1.2;
    height: 300px;
  }

  .fix-image-resposive {
    height: 363px;
  }

  .image-farm-tour {
    width: 52% !important;
    display: flex;
    justify-content: center;
  }
}

@media only screen and (width: 1024px) {
  .show-more-button {
    padding: 5px 24px;
    margin-top: 10px;
    font-size: 13px;
  }

  .farm-card-content {
    display: flex;
    width: 50%;
    padding: 4px;
    height: 343px;
  }

  .fix-image-resposive {
    height: 343px;
  }

  .fix-image-responsive {
    height: 327px !important;
  }

  .handle-content {

    font-size: 15px !important;
    margin-bottom: 3px;
    margin-top: 5px;
  }

  .card-content-farm {
    text-align: left;
    padding: 0px 0px 0px 3px;
    line-height: 1.4;
  }

  .card-content-farm>p {
    color: rgb(255, 255, 255);
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 500;
  }

  .card-content-farm>p>strong {
    color: #ffee00;
    font-size: 14px;
    font-weight: 500;
  }

  .farm-visitor-card {
    max-width: 307px;
    padding: 15px;
    max-height: 307px;
  }

  .farm-visitor-card>h2 {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: 1.2;
  }

  .farm-visitor-card>p {
    font-size: 16px;
    margin-bottom: 2px;
    line-height: 1.3;
  }

}

@media only screen and (max-width: 930px) {
  .farm-card {
    height: 100%;

  }

  .farm-tour {
    display: grid;
    grid-template-columns: 1fr;

  }

  .card-content-farm {
    text-align: left;
    padding: 4px;
    line-height: 1.4;
  }

  .card-content-farm>p {
    color: rgb(255, 255, 255);
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 500;
  }

  .card-content-farm>p>strong {
    color: #ffee00;
    font-size: 16px;
    font-weight: 500;
  }

  .image-farm-tour {
    width: 46% !important;
    display: flex;
    justify-content: center;
  }

  .farm-card-content {
    display: flex;
    width: 56%;
    padding: 0px 0px 0px 4px;
    height: 240px;
  }

  .fix-image-resposive {
    height: 240px;
  }

}

@media only screen and (max-width: 900px) {
  .service-card {
    border: 2px solid rgb(66, 185, 26);
    border-radius: 10px;
    padding: 5px;
    text-align: center;
    width: 32%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .form-card-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 13px;
  }

  .form-servies {
    display: grid;
    grid-template-rows: 9% 89% max-content;
  }
}

@media only screen and (max-width: 850px) {
  .card-content-farm {
    text-align: left;
    padding: 0px 0px 0px 2px;
    line-height: 1.4;
  }

  .card-content-farm>p {
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: 500;
  }

  .card-content-farm>p>strong {
    color: #ffee00;
    font-size: 15px;
    font-weight: 500;
  }

  .handle-content {
    font-size: 15px !important;

  }
}

@media only screen and (max-width: 820px) {
  .farm-visitor-card>h2 {
    font-size: 16px;
    margin-bottom: 2px;
    line-height: 1.2;
  }


  .farm-visitor-card {
    max-width: 307px;
    padding: 2px;
    max-height: 307px;
  }

  .farm-visitor-card>p {
    font-size: 14px;
    margin-bottom: 2px;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .modal-content {
    width: 85%;
    max-width: 400px;
  }

  .form-card-container {
    display: flex;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 13px !important;
    padding: 13px !important;
  }

  .service-card {
    border: 2px solid rgb(66, 185, 26);
    border-radius: 10px;
    padding: 5px;
    text-align: center;
    width: 48%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .service-icon {
    width: 140px !important;
    height: 140px !important;
    margin-bottom: 15px !important;
  }

  .form-servies {
    display: grid;
    grid-template-rows: 4% 89% max-content !important;
  }

  .step {

    padding: 20px;
    margin-bottom: 16px;
  }

  .raise-sheep-container {
    padding: 10px 30px 10px 30px;
  }

  .detail-stept>p {
    font-size: 16px;
    line-height: 1.4;
    padding: 0px 0px 0px 19px;
  }

  .triangle {
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 20px solid #168c44;
  }

  .choose-conten {
    font-size: 26px;
    line-height: 1.2;
    color: #168c44;
    font-weight: 500;
    font-style: normal;
  }

  .content-section {
    padding: 10px 0px 8px 19px;
  }

  .close-btn {
    top: 23px;
  }

  .farm-visitor {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
  }

  .farm-visitor-card {
    max-width: 307px;
    padding: 0px 2px 0px 10px;
    max-height: 307px;
  }

  .farm-visitor-card>h2 {
    font-size: 14px;

  }

  .farm-visitor-card>p {
    font-size: 13px;
    margin-bottom: 2px;
    line-height: 1.2;
  }
}

@media (max-width: 745px) {
  .farm-card-content {
    display: flex;
    width: 58%;
    padding: 4px;
    height: 280px;
  }

  .image-farm-tour {
    width: 42% !important;
    display: flex;
    justify-content: center;
  }

  .fix-image-resposive {
    height: 280px;

  }

  .card-content-farm {
    text-align: left;
    padding: 0px 0px 0px 4px;
    line-height: 1.4;
  }

  .card-content-farm>p {
    color: rgb(255, 255, 255);
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 500;
  }

  .card-content-farm>p>strong {
    color: #ffee00;
    font-size: 15px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 630px) {
  .farm-visitor {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}

@media only screen and (max-width: 600px) {
  .caption-card-title {
    font-size: 18px;
    line-height: 1.4;
  }

  .card-detail {
    font-size: 16px;
    line-height: 1.3;
  }

  .container-farm-card {
    padding: 10px;

  }

  .circle {
    font-size: 2.2rem;
    width: 50px;
    height: 50px;
    margin: 5px auto 5px;
  }

  .fix-image-resposive {
    height: 100%;
  }

  .farm-tour {
    gap: 15px;

  }

  .image-farm-tour {
    order: -1;
    width: 100% !important;
    display: flex;
    justify-content: center;
  }

  .farm-card {
    display: flex;
    flex-direction: column;
    height: 100%;

  }

  .farm-card-content {
    display: flex;
    width: 100%;
    padding: 4px;
  }

  .padding-box {
    border: 3px solid #e6a534;
    width: 100% !important;
    height: auto;
  }

  .handle-content {
    font-size: 18px !important;
    line-height: 1.3 !important;
    margin-bottom: 4px;
  }

  .card-content-farm {
    text-align: left;
    padding: 0px 0px 0px 4px;
    line-height: 1.4;
  }

  .card-content-farm>p {
    color: rgb(255, 255, 255);
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 500;
  }

  .card-content-farm>p>strong {
    color: #ffee00;
    font-size: 15px;
    font-weight: 500;
  }
}

@media only screen and (max-width: 560px) {
  .farm-servies-heart {

    width: clamp(40px, 5vw, 80px);
    height: clamp(40px, 6vw, 80px);

  }

  .service-icon {
    width: 140px !important;
    height: 140px !important;
    margin-bottom: 15px !important;
  }

  .form-card-container {
    display: flex;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 2px !important;
  }

  .service-card {
    padding: 2px !important;

    width: 48% !important;
  }

  .form-servies {
    display: grid;
    grid-template-rows: 7% 89% max-content !important;
  }
}

@media only screen and (max-width: 550px) {
  .farm-visitor {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }

  .farm-visitor-card>h2 {
    font-size: 16px;
    margin-bottom: 2px;
    line-height: 1.2;
  }

  .farm-visitor-card {
    max-width: 307px;
    padding: 2px;
    max-height: 307px;
  }

  .farm-visitor-card>p {
    font-size: 15px;
    margin-bottom: 2px;
    line-height: 1.3;
  }
}

@media only screen and (max-width: 500px) {
  .image-gallery img {
    width: 54%;
  }

}

@media only screen and (max-width: 480px) {
  .handle-content {
    font-size: 17px !important;
    line-height: 1.3 !important;
    margin-bottom: 3px;
  }

  .card-content-farm {
    text-align: left;
    padding: 0px 0px 0px 4px;
    line-height: 1.4;
  }

  .card-content-farm>p {
    color: rgb(255, 255, 255);
    margin-bottom: 3px;
    font-size: 14px;
    font-weight: 500;
  }

  .card-content-farm>p>strong {
    color: #ffee00;
    font-size: 15px;
    font-weight: 500;
  }

  .farm-card-content {
    display: flex;
    width: 100% !important;
    padding: 4px;
    height: 295px;
  }
}

@media only screen and (max-width: 429px) {
  .farm-servies-heart {

    width: clamp(40px, 4vw, 80px);
    height: clamp(40px, 4vw, 80px);

  }

  .form-card-container {
    display: flex;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 2px !important;
  }

  .service-card {
    padding: 2px !important;

    width: 90% !important;
  }

  .form-servies {
    display: grid;
    grid-template-rows: 4% 89% max-content !important;
  }

  .form-card-container {
    gap: 20px !important;
    padding: 10px !important;
  }
}

@media only screen and (max-width: 425px) {

  .hotline,
  .email {
    font-size: 12px;
    padding: 6px 12px;
  }

  .container-farm-card {
    padding: 10px;

  }

  .choose-conten {
    font-size: 22px;
    line-height: 1.2;
  }

  .form-servies-title {
    padding: 2px 0;
  }

  .form-servies-title h3 {
    font-size: 26px;
    line-height: 1.2;
    font-weight: 600;
  }

  .raise-sheep-container {
    padding: 5px 25px 5px 25px;
  }

  .triangle {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 20px solid #168c44;
  }

  .step-number {
    height: 60px;
    width: 60px;
    line-height: 62px;
    font-family: 'Doriel', sans-serif !important;
    font-size: 2.2rem;
  }

  .circle {
    font-size: 2.2rem;
  }

  .content-section {
    padding: 5px 0px 2px 5px;
  }

  .close-btn {
    top: 20px;
    right: 10px;
  }

  .title-model {
    color: #f4a622;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .handle-content {
    font-size: 16px !important;
    line-height: 1.3 !important;
    margin-bottom: 4px;
  }

  .card-content-farm {
    text-align: left;
    padding: 0px 0px 0px 4px;
    line-height: 1.4;
  }

  .card-content-farm>p {
    color: rgb(255, 255, 255);
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 500;
  }

  .card-content-farm>p>strong {
    color: #ffee00;
    font-size: 16px;
    font-weight: 500;
  }

  .farm-card-content {
    height: 300px;
  }

  .farm-container-center {
    padding: 15px;
  }

  .handle-content {
    font-size: 16px !important;
    line-height: 1.3 !important;
    margin-bottom: 3px;
  }

  .card-content-farm {
    text-align: left;
    padding: 0px 0px 0px 4px;
    line-height: 1.4;
  }

  .card-content-farm>p {
    color: rgb(255, 255, 255);
    margin-bottom: 3px;
    font-size: 15px;
    font-weight: 500;
  }

  .card-content-farm>p>strong {
    color: #ffee00;
    font-size: 16px;
    font-weight: 500;
  }

  .farm-card-content {
    height: 310px;
  }
  .section-cooking-blog {
     margin-bottom: 10px!important;
}
.title-blog { 
  margin: 50px 0px 15px!important;
}
}

@media (max-width: 375px) {
  .modal-content {
    width: 95%;
    max-width: 350px;
    padding: 16px;
  }

  .content-section {
    text-align: left;
    padding: 0px 30px 0px 30px;
    line-height: 1.2;
  }

  .welcome-message {
    font-size: 13px;
    padding: 4px 0;
  }

  .form-card-container {
    gap: 10px !important;
    padding: 10px !important;
  }

  .container-farm-card {
    padding: 5px;
  }

  .farm-servies-heart {

    width: clamp(40px, 2vw, 80px);
    height: clamp(40px, 2vw, 80px);

  }

  .choose-conten {
    font-size: 20px;
    line-height: 1.2;
  }

  .form-servies-title h3 {
    font-size: 24px;
    line-height: 1.2;
  }

  .step {

    padding: 16px;
    margin-bottom: 14px;
  }

  .raise-sheep-container {
    padding: 0px 20px 0px 20px;
  }

  .step-number {
    height: 60px;
    width: 60px;
    font-size: 2rem;
    line-height: 58px;
  }

  .circle {
    font-size: 2.2rem;
  }

  .farm-container-center {
    padding: 10px;
  }

  .handle-content {
    font-size: 15px !important;
    line-height: 1.3 !important;
    margin-bottom: 2px;
  }

  .card-content-farm {
    text-align: left;
    padding: 0px 0px 0px 4px;
    line-height: 1.4;
  }

  .card-content-farm>p {
    color: rgb(255, 255, 255);
    margin-bottom: 7px;
    font-size: 13px;
    font-weight: 500;
  }

  .card-content-farm>p>strong {
    color: #ffee00;
    font-size: 14px;
    font-weight: 500;
  }

  .farm-card-content {
    height: 318px;
  }

  .card-content-farm {
    line-height: 1.3;
  }

  .farm-visitor-card>h2 {
    font-size: 16px;
    margin-bottom: 2px;
    line-height: 1.2;
  }

  .farm-visitor-card {
    max-width: 307px;
    padding: 10px;
    max-height: 307px;
  }

  .farm-visitor-card>p {
    font-size: 15px;
    margin-bottom: 2px;
    line-height: 1.3;
  }
}

@media only screen and (max-width: 325px) {
  .service-card {
    padding: 2px !important;
    width: 98% !important;
  }

  .form-servies-title h3 {
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  .form-card-container {
    gap: 20px !important;
    padding: 10px !important;
  }
}

@media (max-width: 320px) {
  .modal-content {
    width: 98%;
    max-width: 300px;
    padding: 14px;
  }

  .title-model {
    color: #f4a622;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .content-section {
    padding: 0px 0px 2px 5px;
  }

  .title-model {
    color: #f4a622;
    font-size: 20px;
    margin-bottom: 10px;
  }

  .close-btn {
    top: 14px;
    right: 10px;
  }
}


.farm-card-title {
  display: flex;
  justify-content: center;
}

.padding-card-farm {
  display: flex;
  flex-direction: row;
}

.farm-card-title h5 {
  display: flex;
  text-align: center;
}

.image-farm-tour {
  width: 50%;
  display: flex;
  justify-content: center;
}

.farm-handle-content {
  display: flex;
  justify-content: center;
}

.handle-content {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #fab132;
  font-weight: 500;
  font-size: 16px;
}

.card-content-farm {
  text-align: left;
  padding: 6px;
  line-height: 1.4;
  height: 300px;
}

.padding-box {
  border: 3px solid #e6a534;
}


.farm-visitor {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: 100%;
  height: auto;
  margin: auto;
  padding: 32px;
}

.farm-visitor-card {
  background-color: #77a600;
  color: white;
  border-radius: 50%;
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.farm-visitor-card>h2 {
  font-size: 22px;
  color: #ffde00;
  margin-bottom: 10px;
  line-height: 1.2;
}

.farm-visitor-card>p {
  font-size: 20px;
  margin-bottom: 2px;
  line-height: 1.4;
  color: #ffffff;
}


@media (max-width: 1024px) {}


@media only screen and (max-width: 768px) {}


/* ---------------Page Restaurant--------------- */
.boxes-restaurant {
  margin-top: 60px;
}

.res-service-box {
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.res-service-icon {
  width: 100%;
  height: 220px;
  padding: 20px;
  text-align: center;
  transition: all .5s ease;
}

.res-service-box .res-service-icon .front-content {
  position: relative;
  top: 88px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.res-service-box .res-service-icon .front-content h3 {
  margin-top: 15px;
}

.res-service-box .res-service-icon .front-content h3 {
  font-size: 15px;
  color: #ffed00;
  text-align: center;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.yellow {
  background-color: #9f4952;
}

.wrap {
  display: flex;
}

.box {
  height: 150px;
  background-color: #9f4952;
  flex: 1;
  margin: 25px;
  text-align: center;
  line-height: 150px;
  font-size: 36px;
}

.box:first-child {
  order: 1;
}

.box:nth-child(2) {
  order: 2;
}

.box:nth-child(3) {
  order: 3;
}

.photoDesc {
  font-size: 1em;
  margin-left: 0px;
}

.bg-res-story {
  width: 100%;
  height: 100%;
  background: url(../images/sheep-farm-banner.svg) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 37px;
  margin-top: 50px;
  margin-bottom: 25px;
}

.attraction {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: flex-start;
}

.attraction h2 {
  color: #683c11;
  font-weight: bold;
}

.description {
  text-align: center;
}

.attraction img {
  width: 100%;
  object-fit: cover;
}

.attraction-r img {
  width: 100%;
  object-fit: cover;
}

.attraction-l img {
  width: 100%;
  object-fit: cover;
}

.attraction-l {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: flex-start;
}

.attraction-r {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: flex-start;
}

.header-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background-color: #B04243;
}

.header-icons img {
  width: 60px;
  height: 60px;
}

.section {
  padding: 40px 0px 0px 0px;

}

.content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}

.content-text {
  max-width: 600px;
}

.content-text h3 {
  color: #B04243;
  font-size: 1.5em;
}

.content-text p {
  margin: 10px 0;
}

.content-images img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.trending {
  text-align: center;
  background-color: #FFFFFF;
  padding: 40px 20px;
}

.trending-items {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  align-items: center;
  flex-direction: column;
}

.trending-item {
  text-align: center;
  max-width: 300px;
}

.food-left .description img {
  width: 100%;
  border-radius: 10px;
}

.treding-food h2 {
  font-size: 32px;
  margin-top: 10px;
  color: #683c11;
  font-weight: bold;
  text-align: center;
}

.trending .food-right {
  padding-bottom: 30px;
  padding-top: 20px;
}

.food-name h2 {
  color: #333333;
}

.food-items {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  margin-top: 20px;
  flex-direction: column;
}

.food-item {
  width: 45%;
  min-width: 300px;
  text-align: center;
  display: flex;
}

.food-item img {
  width: 100%;
  border-radius: 10px;
}

.food-name {
  font-size: 20px;
  color: #5a3c1d;
  font-weight: bold;
  margin-top: 50px;
}

.illustration {
  width: 50px;
  height: auto;
  margin-top: 5px;
}

@media (max-width: 600px) {
  .food-items {
    flex-direction: column;
    align-items: center;
  }

  .food-item {
    width: 80%;
  }
}

/* --------------slide menu----------------- */
.bg-res-menu {
  width: 100%;
  height: 100%;
  background: url(../images/sheep-farm-banner1.svg) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 37px;
  margin-top: 50px;
  margin-bottom: 25px;
}

.menu-section h2 {
  color: #683c11;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  font-size: 32px;
}

.menu-section {
  padding: 20px;
}

.carousel-event {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.menu-card img {
  width: 100%;
  border-radius: 10px;
  padding: 10px;
}

.next {
  border: none;
  margin: 10px;
  background: #B04243;
  border-radius: 50%;
  color: #fff;
  height: 3em;
  position: relative;
  width: 3em;
}

.prev {
  border: none;
  margin: 10px;
  background: #B04243;
  border-radius: 50%;
  color: #fff;
  height: 3em;
  position: relative;
  width: 3em;
}

.events-section {
  padding: 20px;
}

.events-section h2 {
  color: #683c11;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  font-size: 32px;
}

.description h3 {
  color: #683c11;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  font-size: 32px;
}

.small-images {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.main-image img {
  width: 100%;
  border-radius: 0px;
  margin-bottom: 10px;
  object-fit: cover;
}

.thumbnail-images {
  display: flex;
  gap: 10px;
}

.thumbnail-images img {
  width: 100%;
  max-width: calc(33.333% - 10px);
  height: auto;
  border-radius: 0px;
  cursor: pointer;
  object-fit: cover;
}

.small-images img {
  border-radius: 0px;
  cursor: pointer;
  object-fit: cover;

}

.event-img {
  width: 100%;
  border-radius: 10px;
  height: 600px;
  object-fit: cover;
}

/* --------------------End slide menu-------------------- */

/* --------------------Book Event-------------------- */
.body-booking-event {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-booking-event {
  background: #fff;
  padding: 20px;
  width: 800px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 60px;
}

label {
  display: block;
  text-align: left;
  font-weight: bold;
  margin: 10px 0 5px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  margin-bottom: 10px;
}

.required {
  color: red;
}

.btn-event-sms {
  background: #333;
  color: #fff;
  padding: 10px;
  border: none;
  width: 100%;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.btn-event-sms:hover {
  background: #555;
}

/* --------------------End Book Event-------------------- */

/* --------------------page online workshop-------------------- */
.bg-easyway {
  width: 100%;
  height: 100%;
  background: url(../images/sheep-farm-banner.svg) no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 37px;
}

.easy-cotainer {
  display: flex;
  flex-direction: column;
  margin: 20px auto;
  padding: 10px;
  max-width: 1140px;
  margin-top: 40px;
}

.easyway-card {
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  width: 32%;
  transition: transform 0.3s ease;
}

.title-onlineworkshop h2 {
  text-align: center;
  color: #168c43;
  font-size: 2em;
  font-weight: bold;
}

.h2-color-easy {
  color: #e94e1b !important;
  font-weight: bold;
}

.upcoming-blog {
  margin-top: 60px;
}

.workshop-card {
  background: white;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 20px 0px 60px 0px;
  /* max-width: 800px; */
  border: 1px solid #ddd;
}

.workshop-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.workshop-card .content {
  text-align: left;
}

.workshop-card h3 {
  color: #E66A1F;
  margin: 5px 0;
}

.our-workshops {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.workshop-item {
  background: white;
  padding: 15px;
  border: 1px solid #168c43;
}

.workshop-item img {
  width: 100%;
}

.content-upcoming {
  flex-wrap: wrap;
  text-align: left;
  gap: 0px;
}

.comment-section {
  margin: 90px 0 80px 0;
}

.comment-section h2 {
  text-align: center;
  color: #168c43;
  font-size: 2em;
  font-weight: bold;
  text-align: center;
}

/* Comments Container */
.comments-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px;
}

.btn-lesson {
  background: #ffffff;
  padding: 10px;
  border: 1px solid #e94e1b;
  border-radius: 10px;
  margin-right: 15px;
}

.btn-time {
  background: #ffffff;
  padding: 10px;
  border: 1px solid #e94e1b;
  border-radius: 10px;
}

/* Individual Comment Box */
.comment-box {
  background: #e7e7e7;
  padding: 20px;
  width: 300px;
  border-radius: 10px;
  /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
  text-align: center;
}

/* Profile Image */
.comment-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

/* Comment Text */
.comment-box p {
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

/* Participant Name */
.comment-box h3 {
  font-size: 16px;
  color: #555;
  margin-bottom: 0px;
}

/* Location */
.comment-box span {
  font-size: 14px;
  color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
  .comments-container {
    flex-direction: column;
    align-items: center;
  }

  .comment-box {
    width: 90%;
  }
}

.contact-section {
  width: 100%;
  height: 100%;
  background: url(../images/bg-getintouch.svg) no-repeat center center;
  background-size: cover;
  /* display: flex; */
  align-items: center;
  justify-content: center;
  padding: 37px;

}

.contact-section h2 {
  text-align: center;
  color: #168c43;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  margin-top: 50px;
}

form {
  /* max-width: 400px; */
  margin: auto;
}

input,
textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid green;
  border-radius: 5px;
}

.btn {
  background: green;
  color: white;
  padding: 10px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.wrapper {
  padding: 100px;
}

.image--cover {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 20px;

  object-fit: cover;
  object-position: center right;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin: auto;
  margin-bottom: 30px;
}

.contact-image img {
  width: 100%;
  max-width: 400px;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #168c43;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #168c43;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

.our-workshops .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 230px;
  /* Ensure uniform card height */
  border: none;
}

.our-workshops .card-content {
  flex-grow: 1;
  /* Takes up available space */
}

.our-workshops .card-footerbutton {
  display: flex;
  gap: 10px;
  /* Space between buttons */
  align-items: center;
  border: none;
}

.our-workshops .card-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Limits to 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 0px;
}

.our-workshops .card h3 {
  color: #e94e1b;
}

.our-workshops .card small {
  color: #959595;
}

.truncate::after {
  content: "...";
  position: absolute;
  bottom: 0;
  right: 0;
  background: white;
}

/* --------------------End page online workshop-------------------- */

/* --------------------page Blog & New-------------------- */

.health-section {
  display: flex;
  gap: 10px;
  margin-top: 60px;
}

.main-article {
  position: relative;
  width: 65%;
}

.article-image {
  height: 100%;
  /* Adjust as needed */
  border-radius: 8px;
}

.article-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.article-title {
  font-size: 18px;
  font-weight: bold;
}

.article-date {
  font-size: 14px;
  opacity: 0.8;
}

/* .category-health {
  background: #e91e63;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
} */

.side-articles {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-article {
  position: relative;
}

.side-article img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.side-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 5px;
  font-size: 14px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.category-health {
  background: #d6679a;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  position: relative;
  float: right;
  top: -14px;
}

.category-farm {
  background: #168c43;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  position: relative;
  float: right;
  top: -14px;
}

.category-cooking {
  background: red;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
  position: relative;
  float: right;
  top: -14px;
}

.vd-cooking {
  color: red
}

/* .farm {
  background: green;
}

.cooking {
  background: purple;
} */

/* Section Title */
.title-blog {
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  color: #009c3b;
  margin: 70px 0px 15px;
}

/* Article Card Layout */
.articles-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 15px;
}

.article-card {
  display: flex;
  flex-direction: row;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  padding: 0;
}

/* Image Styling */
.article-image {
  width: 100%;
  object-fit: cover;
}

/* Content Styling */
.article-content {
  padding: 20px;
}

/* Tags */
.tag {
  display: inline-block;
  background: #ff5a5f;
  color: #fff;
  padding: 5px 10px;
  font-size: 0.8em;
  border-radius: 5px;
  font-weight: bold;
  margin-bottom: 10px;
  position: absolute;
  z-index: 1;
  right: 0;
}

/* Title */
.article-title-left {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 5px;
}

.article-title-right {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 5px;
}

/* Date */
.article-date {
  font-size: 1em;
  color: #ca9e67;
  margin-bottom: 10px;
}

/* Description */
.article-description {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Author */
.article-author {
  font-size: 0.9em;
  font-style: italic;
  color: #555;
}





/* Responsive Design */
@media (max-width: 768px) {
  .article-card {
    flex-direction: column;
    width: 100%;
  }

  .article-image {
    width: 100%;
    /* height: 400px; */
    object-fit: cover;
  }

  .article-title-left {
    font-size: 14px;
  }

  .article-content {
    width: 100%;
  }

  .content-detail-blog {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    flex-direction: column;
  }
}

/* .container {
  max-width: 1000px;
  margin: auto;
} */

.section-farm-blog {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.section-cooking-blog {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 90px;
}

.card {
  width: calc(50% - 10px);
  background: #fff;
  border-radius: 5px;
}

.image-container {
  position: relative;
}

.image-container img {
  width: 100%;
  border-radius: 5px;
  height: 350px;
  object-fit: cover;
}

.tag-health {
  top: 10px;
  right: 10px;
  background: #e91e63;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
}

h3 {
  font-size: 18px;
  margin: 10px 0 5px 0;
}

.date {
  font-size: 12px;
  color: #999;
}

.desc {
  font-size: 14px;
  margin: 5px 0;
}

.author {
  font-weight: bold;
  font-size: 14px;
}

.section-title {
  font-size: 24px;
  text-align: center;
  color: green;
  margin-bottom: 20px;
}

.video .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
}

.margin-box {
  padding: 10px;
}

/* --------------------End page Blog & New-------------------- */

/* -------------------Page Blog & New Detail------------------ */

.content-detail-blog {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.main-content {
  flex: 2;
}

.sidebar {
  flex: 1;
}

.category-tag {
  display: inline-block;
  background: #d05ca4;
  color: white;
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 5px;
  margin-bottom: 10px;
}

.category-tag.small {
  font-size: 10px;
  padding: 3px 7px;
}

h1 {
  margin: 10px 0;
}

.date {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 20px;
}

.video-thumbnail {
  position: relative;
  margin-bottom: 20px;
}

.video-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredients-title {
  color: green;
  margin-top: 30px;
  margin-bottom: 10px;
}

.ingredients-list {
  list-style: none;
  padding-left: 20px;
}

.ingredients-list li {
  margin-bottom: 10px;
  position: relative;
}

.ingredients-list li::before {
  content: "-";
  position: absolute;
  left: -15px;
  color: green;
}

.sidebar h3 {
  background: green;
  color: white;
  padding: 10px;
  border-radius: 5px 5px 0 0;
  font-size: 18px;
}

.recent-post {
  display: flex;
  margin-top: 10px;
  gap: 10px;
  background: #f7f7f7;
  padding: 10px;
  border-radius: 5px;
  align-items: center;
}

.recent-post img {
  width: 90px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
}

.recent-post-info p {
  font-size: 12px;
  margin-bottom: 5px;
}

.recent-post-info .date.small {
  color: #aaa;
  font-size: 10px;
}

/* -------------------End Page Blog & New Detail------------------ */
/* -------------------Popup ebook------------------ */
/* body {
  font-family: Arial, sans-serif;
} */

button {
  padding: 10px 20px;
  font-size: 16px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.hidden {
  display: none;
}

.popup {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 800px;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.popup-content {
  display: flex;
}

.thumbnails {
  display: flex;
  flex-direction: column;
  margin-right: 15px;
}

.thumb {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumb:hover {
  border: 2px solid #007BFF;
}

.main-image {
  flex-grow: 1;
  text-align: center;
  position: relative;
}

.main-image img {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
}

.nav {
  margin-top: 10px;
}

.nav button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.modal-popub .modal-frame {
  width: 70%!important;
}

/* -------------------End Popup ebook------------------ */

@media screen and (max-width: 992px) {
  .prev,
  .next {
    height: 2em;
    width: 2em;
  }
}

@media screen and (max-width: 768px) {
  .col-md-6 {
    width: 100%;
  }

  .our-workshops .card {
    height: 210px;
  }

  .easyway-card {
    width: 100%;
  }

  .our-workshops {
    display: flex;
    gap: 20px;
    flex-direction: column;
  }

  .bg-easyway {
    padding: 10px;
    padding-top: 40px;
  }

  .workshop-card {
    display: flex;
    align-items: center;
    flex-direction: column;
  }

  .footer {
    margin: 5px 0 0;
  }

  .bg-booking-event {
    margin-top: 30px;
    margin-bottom: 0px;
  }

  .wrap {
    flex-direction: column;
  }

  .box:nth-child(2) {
    order: 3;
  }

  .box:nth-child(3) {
    order: 2;
  }

  .attraction {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    flex-direction: column;
  }

  .attraction-l {
    display: flex;
    gap: 0px;
    margin-top: 30px;
    align-items: center;
    flex-direction: column-reverse;
  }

  .attraction-r {
    display: flex;
    gap: 0px;
    margin-top: 30px;
    align-items: center;
    flex-direction: column;
  }

  .event-img {
    height: auto;
  }

  .small-images img {
    width: 100%;
    border-radius: 0px;
    cursor: pointer;
    object-fit: cover;
  }

  .bg-res-menu {
    padding: 0px;
  }

  .menu-section {
    padding-top: 35px;
    padding-bottom: 45px;
  }

  .description {
    width: 100%;
  }

  .illustration {
    display: none;
  }

  .main-article {
    position: relative;
    width: 100%;
  }

  .health-section {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-direction: column;
  }

  .side-articles {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .image-container img {
    height: 250px;
  }
}

@media screen and (max-width: 675px) {
  .card {
    width: 100%;
    background: #fff;
    border-radius: 5px;
  }

  .section-cooking-blog {
    display: flex;
    flex-direction: column;
  }

  .image-container img {
    height: 300px;
  }
}

@media screen and (max-width: 575px) {
  .small-images {
    display: flex;
    flex-direction: column;
  }

  .thumbnail-images {
    display: flex;
    gap: 10px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    width: 100%;
  }

  .thumbnail-images img {
    max-width: 100%;
    height: auto;
    border-radius: 0px;
    cursor: pointer;
    object-fit: cover;
  }
}