@font-face {
  font-family: "GreatVibes";
  src: url(../fonts/GreatVibes-Regular.ttf);
}
@font-face {
  font-family: "GlassAntiqua";
  src: url(../fonts/GlassAntiqua-Regular.ttf);
}

@font-face {
  font-family: "LaBelleAurore";
  src: url(../fonts/LaBelleAurore-Regular.ttf);
}
* {
  margin: 0;
  scrollbar-width: auto;
  scrollbar-color: #87a597 #ffffff;
  scrollbar-gutter: stable both-edges;
  text-shadow: 2px 1px 3px rgba(0, 0, 0, 0.3),
    0px -1px 3px rgba(255, 255, 255, 0.3);
}

/* Chrome, Edge, and Safari */
*::-webkit-scrollbar {
  width: 50px;
}

*::-webkit-scrollbar-track {
  background: #ff3f3f;
}

*::-webkit-scrollbar-thumb {
  background-color: #87a597;
  border-radius: 21px;
  border: 5px double #ffffff;
}

body {
  margin: 0;
  /* padding: 48px 0; */
  font-family: "GlassAntiqua", sans-serif;
  /* font-size: 1.2rem; */
  line-height: 1.6rem;
  background-color: #87a597;
  /* min-height: 100vh; */
  -webkit-tap-highlight-color: transparent;
}

#bear {
  width: 300px;
  height: 300px;
  display: block;
  margin: auto;
  margin-top: 30px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  border-radius: 5%;
}

#img1,
#img2 {
  display: flex;
  margin: auto;
  justify-content: center;
  margin-top: 10px;
  width: 25rem;
  height: 20rem;
  background-size: cover;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 5px, rgba(0, 0, 0, 0.15) 0px 3px 3px;
}

#main-container {
  /* width: 600px;
  margin: auto;
  display: block; */
  margin: 0 auto;
  max-width: 340px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 12%;
  /* margin-bottom: 8%; */
  text-align: center;
  font-size: 10px;
  font-weight: 300;
  transition: 0.5s ease;
}

#head-cont {
  font-family: "LaBelleAurore";
  font-size: 33px;
  margin-bottom: 20px;
  line-height: 60px;
}

#main-cont-p {
  font-family: "GlassAntiqua", sans-serif;
  font-size: 20px;
}
.card-h2 {
  text-align: center;
}

article {
  --img-scale: 1.001;
  --title-color: black;
  --link-icon-translate: -20px;
  --link-icon-opacity: 0;
  font-family: "LaBelleAurore";
  position: relative;
  border-radius: 16px;
  /* box-shadow: none; */
  background: #fff;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 10px 14px, rgba(0, 0, 0, 0.15) 0px 5px 5px;
  user-select: none;
}

article a::after {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  cursor: pointer;
  content: "";
  user-select: none;
}

.article-p {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  line-height: 150%;
  text-align: center;
}

/* basic article elements styling */
article h2 {
  margin: 0 0 18px 0;
  /* font-family: "Bebas Neue", cursive; */
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--title-color);
  transition: color 0.3s ease-out;
}

figure {
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.article-body {
  padding: 24px;
}

article a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #28666e;
}

article a:focus {
  outline: 1px dotted #28666e;
}

article a .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  transform: translateX(var(--link-icon-translate));
  opacity: var(--link-icon-opacity);
  transition: all 0.3s;
}

/* using the has() relational pseudo selector to update our custom properties */
article:has(:hover, :focus) {
  /* --img-scale: 1.1; */
  --title-color: #28666e;
  --link-icon-translate: 0;
  --link-icon-opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/************************ 
    Generic layout (demo looks)
    **************************/

.articles {
  display: grid;
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 24px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

@media (min-width: 1000px) {
  #main-container {
    margin-top: 3%;
    margin-bottom: 3%;
  }
}

@media (max-width: 610px) {
  body {
    /* Reduced padding for smaller screens */
    /* Adjust font size for smaller screens */
  }

  #bear {
    width: 60%; /* Make bear image responsive */
    height: auto; /* Maintain aspect ratio */
    margin-top: 15px;
  }
  #head-cont {
    margin-bottom: 1px;
    font-size: 28px;
  }
  #main-container {
    width: 100%;
    padding: 0 20px;
    /* width: 100%;
    margin-top: 10%;
    padding: 0 20px;
   */
    /* margin-bottom: 5%;
    width: 340px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    border: 2px solid purple; */
  }

  #mailto {
    display: flex;
    justify-content: center;
    margin: auto;
    text-decoration: none;
    color: #0b0b0b;
    font-weight: 900;
    transition: 0.4s ease-in-out;
    letter-spacing: 0.3rem;
    font-size: 10px;
    margin-top: 5px;
    background-color: #ffffff;

    padding-top: 10px;
    padding-bottom: 10px;
  }

  .articles {
    padding-inline: 10px; /* Adjust padding for the articles container */
    grid-template-columns: 1fr; /* Stack articles in one column */
  }

  article {
    --img-scale: 1; /* Prevent scaling on small screens */
  }

  /* Adjust other elements as needed */
}

/* FOOTER */

.footer {
  /* margin-top: 5%; */
  /* padding: 40px 0; */
  cursor: default;
}

.footer .copyright {
  /* margin-top: 15px; */
  text-align: center;
  font-size: 13px;
  color: #ffffff;
  opacity: 0.5;
}

#footer-p {
  display: flex;
  justify-content: center;
  margin: auto;
  font-size: 27px;
  font-weight: 500;
  margin-bottom: 10px;
}

#mailto {
  display: flex;
  justify-content: center;
  margin: auto;
  text-decoration: none;
  color: #0b0b0b;
  font-weight: 900;
  transition: 0.4s ease-in-out;
  width: 80%;
  letter-spacing: 0.3rem;
  font-size: 20px;
  margin-top: 5px;
  padding-left: 18px;
  padding-right: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px,
    rgba(0, 0, 0, 0.22) 0px 10px 10px;
  background-color: #fff;
}

#mailto:hover {
  color: #87a597;
}

#mailto:hover > #fas {
}

#fas {
  /* display: flex;
  justify-content: center; */
  /* margin: auto; */
  width: 34px;
  height: 20px;
  color: #fff;
}

#mail {
  display: flex;
}

.copyright {
  display: flex;
  justify-content: center;
}

#testmail {
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 0.3rem;
  font-weight: 900;
  transition: 0.3s ease;
  display: flex;
  margin: auto;
  justify-content: center;
}

#testmail:hover {
  opacity: 70%;
}

#testmail2 {
  color: #101010;
  text-decoration: none;
  letter-spacing: 0.3rem;
  font-weight: 900;
  transition: 0.3s ease;
  display: flex;
  margin: auto;
  justify-content: center;
}

#testmail2:hover {
  color: #fff;
}

.blog-slider {
  width: 95%;
  position: relative;
  max-width: 800px;
  margin: auto;
  margin-bottom: 40px;
  margin-top: 50px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  /* padding: 25px; */
  border-radius: 25px;
  /* height: 400px; */
  transition: all 0.3s;
  text-align: center;
}

.blog-slider__text {
  max-width: 190px;
  text-align: center;
  font-size: 18px;
  /* font-weight: 900; */
}

.p-wrap {
  padding-bottom: 80px;
}

@media screen and (max-width: 992px) {
  /* .blog-slider {
    max-width: 680px;
    height: 400px;
  } */
}
@media screen and (max-width: 1000px) {
  .blog-slider {
    /* min-height: 500px; */
    height: auto;
    margin-bottom: 40px;
    margin-top: 180px;
    /* margin: 180px auto; */
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider {
    height: 350px;
  }
}
.blog-slider__item {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  .blog-slider__item {
    flex-direction: column;
  }
}
.blog-slider__item.swiper-slide-active .blog-slider__img img {
  opacity: 1;
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > * {
  opacity: 1;
  transform: none;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(1) {
  transition-delay: 0.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(2) {
  transition-delay: 0.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(3) {
  transition-delay: 0.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(4) {
  transition-delay: 0.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(5) {
  transition-delay: 0.7s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(6) {
  transition-delay: 0.8s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(7) {
  transition-delay: 0.9s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(8) {
  transition-delay: 1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(9) {
  transition-delay: 1.1s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(10) {
  transition-delay: 1.2s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(11) {
  transition-delay: 1.3s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(12) {
  transition-delay: 1.4s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(13) {
  transition-delay: 1.5s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(14) {
  transition-delay: 1.6s;
}
.blog-slider__item.swiper-slide-active .blog-slider__content > *:nth-child(15) {
  transition-delay: 1.7s;
}
.blog-slider__img {
  width: 500px;
  flex-shrink: 0;
  height: 300px;
  /* background-image: linear-gradient(147deg, #28666e 0%, #87a597 74%); */
  /* box-shadow: 4px 2px 5px 1px #87a597; */
  box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
  border-radius: 20px;
  transform: translateX(-80px);
  /* overflow: hidden; */
  /* padding-top: 5px;
  padding-bottom: 7px; */
  background-color: #fff;
  /* border: 3px solid #fff; */
}
.blog-slider__img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(147deg, #87a597 0%, #28666e 74%);
  border-radius: 20px;
  opacity: 0.1;
}
.blog-slider__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  border-radius: 20px;
  transition: all 0.3s;
}

@media screen and (max-width: 1000px) {
  .blog-slider__img {
    transform: translateY(-50%);
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__img {
    width: 100%;
  }
}
@media screen and (max-height: 500px) and (min-width: 992px) {
  .blog-slider__img {
    height: 270px;
  }
}
.blog-slider__content {
  padding-right: 25px;
}
@media screen and (max-width: 1000px) {
  .blog-slider__content {
    margin-top: -80px;
    text-align: center;
    padding: 0 30px;
  }
}
@media screen and (max-width: 576px) {
  .blog-slider__content {
    padding: 0;
  }
}
.blog-slider__content > * {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.4s;
}
.blog-slider__code {
  color: #7b7992;
  margin-bottom: 15px;
  display: block;
  font-weight: 500;
}
.blog-slider__title {
  font-size: 24px;
  font-weight: 700;
  color: #0d0925;
  margin-bottom: 20px;
  margin-top: 10px;
}
.blog-slider__text {
  color: #4e4a67;
  margin-bottom: 30px;
  line-height: 1.5em;
  font-weight: 700;
}
.blog-slider__button {
  /* display: inline-flex; */
  display: none;
  background-image: linear-gradient(147deg, #28666e 0%, #87a597 74%);
  padding: 15px 35px;
  border-radius: 50px;
  color: #fff;
  box-shadow: 0px 14px 80px rgba(255, 255, 255, 0.4);
  text-decoration: none;
  font-weight: 500;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 576px) {
  .blog-slider__button {
    width: 30%;
  }
}
.blog-slider .swiper-container-horizontal > .swiper-pagination-bullets,
.blog-slider .swiper-pagination-custom,
.blog-slider .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.blog-slider__pagination {
  position: absolute;
  z-index: 21;
  right: 20px;
  width: 11px !important;
  text-align: center;
  left: auto !important;
  top: 50%;
  bottom: auto !important;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .blog-slider__pagination {
    transform: translateX(-50%);
    left: 50% !important;
    top: 205px;
    width: 100% !important;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 8px 0;
}
@media screen and (max-width: 1000px) {
  .blog-slider__pagination.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.blog-slider__pagination .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  display: block;
  border-radius: 10px;
  background: #062744;
  opacity: 0.2;
  transition: all 0.3s;
}
.blog-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: #87a597;
  height: 30px;
  box-shadow: 0px 0px 5px #28666e;
}
@media screen and (max-width: 1000px) {
  .blog-slider__pagination .swiper-pagination-bullet-active {
    height: 11px;
    width: 30px;
  }
}

.main-wrap {
  /* border: 2px solid red; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: auto;
}

.ul-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
