/*---------------------------------- fonts ----------------------------------*/
/*---------------------------------- ellipsis ----------------------------------*/
/*---------------------------------- line text ----------------------------------*/
/*---------------------------------- text gradient ----------------------------------*/
/*---------------------------------- glass effect ----------------------------------*/
/*---------------------------------- card shadow ----------------------------------*/
/*---------------------------------- font icon ----------------------------------*/
/*---------------------------------- overlay ----------------------------------*/
/*---------------------------------- border radius ----------------------------------*/
/*---------------------------------- line ----------------------------------*/
/*---------------------------------- background image ----------------------------------*/
/*---------------------------------- scroll bar ----------------------------------*/
/*---------------------------------- media query ----------------------------------*/
/*---------------------------------- flex ----------------------------------*/
/*---------------------------------- Second Language ----------------------------------*/
@keyframes scaleUpDown {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.main-slider .mainSlider {
  height: 100vh;
}
@media screen and (max-width: 767.98px) {
  .main-slider .mainSlider {
    height: 77vh;
  }
}
@media screen and (max-width: 480.98px) {
  .main-slider .mainSlider {
    height: 66vh;
  }
}
.main-slider .main-slider-img {
  width: 100%;
  height: 80vh;
  display: block;
}
.main-slider .main-slider-img img {
  width: 100%;
  height: 100%;
}
.main-slider .items {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-slider .social-media {
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 35px;
  padding: 14px 10px;
}
@media screen and (max-width: 991.98px) {
  .main-slider .social-media {
    display: none;
  }
}
.main-slider .social-media__link {
  width: 40px;
  height: 40px;
  border: 1px solid #064b81;
  transition: 0.3s ease-in;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  color: #064b81;
}
@media screen and (max-width: 991.98px) {
  .main-slider .social-media__link {
    width: 30px;
    height: 30px;
  }
}
.main-slider .social-media__link:hover {
  background: #064b81;
  color: white;
}
.main-slider .icon-slider {
  width: 50px;
  height: 140px;
  z-index: 4 !important;
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 35px;
}
.main-slider .icon-slider .swiper-button-prev, .main-slider .icon-slider .swiper-button-next {
  width: 60px;
  height: 60px;
  color: #064b81;
  transition: 0.3s ease-in;
  font-weight: 800;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 991.98px) {
  .main-slider .icon-slider .swiper-button-prev, .main-slider .icon-slider .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
  }
}
.main-slider .icon-slider .swiper-button-prev:hover, .main-slider .icon-slider .swiper-button-next:hover {
  background: #064b81;
  color: white;
}
.main-slider .icon-slider .swiper-button-prev:after, .main-slider .icon-slider .swiper-button-next:after {
  font-size: 20px;
}
@media screen and (max-width: 991.98px) {
  .main-slider .icon-slider .swiper-button-prev:after, .main-slider .icon-slider .swiper-button-next:after {
    font-size: 15px;
  }
}
.main-slider .icon-slider .swiper-button-prev {
  right: 0 !important;
  top: calc(100% - 110px) !important;
}
.main-slider .icon-slider .swiper-button-next {
  left: 0 !important;
  top: calc(100% - 40px) !important;
}
@media screen and (max-width: 991.98px) {
  .main-slider .icon-slider .swiper-button-next {
    top: calc(100% - 65px) !important;
    left: 10px !important;
  }
}
.main-slider .swiper-container {
  position: relative;
  overflow: hidden;
}
.main-slider .swiper-container img {
  height: 100vh;
}
@media screen and (max-width: 767.98px) {
  .main-slider .swiper-container img {
    height: 80vh;
  }
}

.favorite {
  width: 100%;
  padding: 120px 0;
  display: flex;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .favorite {
    padding: 85px 0;
  }
}
.favorite .sectionTitle {
  margin-bottom: 0;
}
.favorite::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  clip-path: polygon(0 0, 15% 0, 100% 100%, 0% 100%);
  background-color: #064b81;
}
.favorite .favorite-bg {
  background-image: url(../../../../assets/images/background/popular-bg.jpg);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  mix-blend-mode: multiply;
  opacity: 0.15;
  z-index: -2;
}
.favorite .icon-slider {
  max-width: 1140px;
  z-index: 3;
  position: relative;
  margin-bottom: 40px;
  height: 50px;
  margin-right: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .favorite .icon-slider {
    max-width: 1320px;
  }
}
.favorite .icon-slider .swiper-button-prev, .favorite .icon-slider .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: 1px solid white;
  color: #064b81;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 1199.98px) {
  .favorite .icon-slider .swiper-button-prev, .favorite .icon-slider .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 480.98px) {
  .favorite .icon-slider .swiper-button-prev, .favorite .icon-slider .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}
.favorite .icon-slider .swiper-button-prev:after, .favorite .icon-slider .swiper-button-next:after {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 1199.98px) {
  .favorite .icon-slider .swiper-button-prev:after, .favorite .icon-slider .swiper-button-next:after {
    font-size: 14px;
  }
}
.favorite .icon-slider .swiper-button-prev:hover, .favorite .icon-slider .swiper-button-next:hover {
  background-color: #064b81;
  color: white;
}
.favorite .icon-slider .swiper-button-next {
  right: calc(100% - 130px);
}
@media screen and (max-width: 1199.98px) {
  .favorite .icon-slider .swiper-button-next {
    right: calc(100% - 210px);
  }
}
@media screen and (max-width: 480.98px) {
  .favorite .icon-slider .swiper-button-next {
    right: calc(100% - 155px);
  }
}
.favorite .icon-slider .swiper-button-prev {
  right: calc(100% - 70px);
}
@media screen and (max-width: 1199.98px) {
  .favorite .icon-slider .swiper-button-prev {
    right: calc(100% - 160px);
  }
}
@media screen and (max-width: 480.98px) {
  .favorite .icon-slider .swiper-button-prev {
    right: calc(100% - 110px);
  }
}
.favorite .favorite-container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  margin-left: -40px;
  margin-right: auto;
}
@media (min-width: 1400px) {
  .favorite .favorite-container {
    max-width: 1640px;
  }
}
.favorite .product-slider__wrapper {
  overflow: visible;
}

.product {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.product img {
  width: 100%;
  aspect-ratio: 4/5;
}
.product .common-card__body {
  position: absolute;
  background-color: white;
  border-radius: 20px;
  bottom: 40px;
  right: 50%;
  transform: translateX(50%);
  width: 80%;
  padding: 24px;
  padding-left: 70px;
}
@media screen and (max-width: 1199.98px) {
  .product .common-card__body {
    bottom: 35px;
    width: 70%;
    padding: 12px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 991.98px) {
  .product .common-card__body {
    width: 85%;
  }
}
@media screen and (max-width: 480.98px) {
  .product .common-card__body {
    width: 95%;
    bottom: 10px;
  }
}
@media (min-width: 1400px) {
  .product .common-card__body {
    padding: 30px;
    padding-left: 80px;
  }
}
.product .common-card__title {
  color: #8b6026;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 1199.98px) {
  .product .common-card__title {
    font-size: 15px;
  }
}
@media screen and (max-width: 480.98px) {
  .product .common-card__title {
    font-size: 12px;
    font-weight: 800;
  }
}
.product .common-card__collection {
  position: relative;
  width: fit-content;
  color: black;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 480.98px) {
  .product .common-card__collection {
    font-size: 12px;
  }
}
.product .common-card__collection:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: black;
  bottom: 0;
  right: 0;
  display: block;
  transition: 0.3s ease-in;
}
.product .common-card__collection:hover:after {
  width: 100%;
}
.product .common-card__redirect {
  position: absolute;
  top: 0;
  left: 0;
  padding: 24px;
  background: #8b6026;
  border-radius: 20px;
  border-bottom-right-radius: 80px;
  line-height: 0;
  font-size: 20px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 1400px) {
  .product .common-card__redirect {
    padding: 30px;
  }
}
@media screen and (max-width: 1199.98px) {
  .product .common-card__redirect {
    padding: 15px;
  }
}
@media screen and (max-width: 480.98px) {
  .product .common-card__redirect {
    padding: 10px;
  }
}
.product .common-card__redirect .product-icon {
  rotate: 45deg;
  font-size: 24px;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 1199.98px) {
  .product .common-card__redirect .product-icon {
    font-size: 15px;
  }
}
@media screen and (max-width: 1199.98px) {
  .product .common-card__redirect .product-icon {
    font-size: 12px;
  }
}
.product .common-card__redirect:hover .product-icon {
  rotate: 0deg;
}

.newest {
  width: 100%;
  padding-bottom: 80px;
  display: flex;
  overflow-x: hidden;
  position: relative;
}
.newest .sectionTitle {
  margin-bottom: 0;
}
.newest .icon-slider {
  max-width: 1140px;
  z-index: 3;
  position: relative;
  margin-bottom: 40px;
  height: 50px;
  margin-right: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 1400px) {
  .newest .icon-slider {
    max-width: 1320px;
  }
}
.newest .icon-slider .swiper-button-prev, .newest .icon-slider .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #064b81;
  color: white;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 1199.98px) {
  .newest .icon-slider .swiper-button-prev, .newest .icon-slider .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 575.98px) {
  .newest .icon-slider .swiper-button-prev, .newest .icon-slider .swiper-button-next {
    width: 35px;
    height: 35px;
  }
}
.newest .icon-slider .swiper-button-prev:after, .newest .icon-slider .swiper-button-next:after {
  font-size: 20px;
  font-weight: 600;
}
@media screen and (max-width: 1199.98px) {
  .newest .icon-slider .swiper-button-prev:after, .newest .icon-slider .swiper-button-next:after {
    font-size: 14px;
  }
}
.newest .icon-slider .swiper-button-next {
  right: calc(100% - 130px);
}
@media screen and (max-width: 1199.98px) {
  .newest .icon-slider .swiper-button-next {
    right: calc(100% - 210px);
  }
}
@media screen and (max-width: 575.98px) {
  .newest .icon-slider .swiper-button-next {
    right: calc(100% - 205px);
  }
}
@media screen and (max-width: 480.98px) {
  .newest .icon-slider .swiper-button-next {
    right: calc(100% - 155px);
  }
}
.newest .icon-slider .swiper-button-prev {
  right: calc(100% - 70px);
}
@media screen and (max-width: 1199.98px) {
  .newest .icon-slider .swiper-button-prev {
    right: calc(100% - 160px);
  }
}
@media screen and (max-width: 480.98px) {
  .newest .icon-slider .swiper-button-prev {
    right: calc(100% - 110px);
  }
}
.newest .newest-container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  margin-left: -40px;
  margin-right: auto;
}
@media (min-width: 1400px) {
  .newest .newest-container {
    max-width: 1640px;
  }
}
.newest .product-slider__wrapper {
  overflow: visible;
}

@keyframes about1Move {
  0% {
    right: 60px;
    bottom: 60px;
  }
  50% {
    right: 45px;
    bottom: 45px;
  }
  100% {
    right: 60px;
    bottom: 60px;
  }
}
@keyframes about2Move {
  0% {
    right: 290px;
    bottom: 270px;
  }
  50% {
    right: 305px;
    bottom: 285px;
  }
  100% {
    right: 290px;
    bottom: 270px;
  }
}
.about-us {
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .about-us {
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 1199.98px) {
  .about-us .sectionTitle {
    margin-bottom: 0 !important;
  }
}
.about-us .about-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.15;
  background-image: url(../../../../assets/images/index/about.png);
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 991.98px) {
  .about-us .about-bg {
    background-image: unset !important;
  }
}
.about-us .about-us-content {
  max-width: 570px;
  margin-left: auto;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media (min-width: 1400px) {
  .about-us .about-us-content {
    max-width: 610px;
  }
}
@media screen and (max-width: 991.98px) {
  .about-us .about-us-content {
    margin: 30px auto;
  }
}
.about-us .about-us-content p {
  line-height: 30px;
  color: #888;
  font-size: 15px;
}
@media screen and (max-width: 1199.98px) {
  .about-us .about-us-content p {
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 4;
    line-height: 40px;
  }
}
@media screen and (max-width: 1199.98px) {
  .about-us .about-us-content p {
    -webkit-line-clamp: 3;
    line-height: 35px;
  }
}
.about-us .about-us-content .options {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.about-us .about-us-content .about-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  width: 110px;
  height: 110px;
  background-color: rgb(243.4, 239.1, 233.3);
  border-radius: 8px;
  z-index: 3;
  padding: 0 8px;
}
@media screen and (max-width: 1199.98px) {
  .about-us .about-us-content .about-item {
    width: 93px;
    height: 86px;
    padding-top: 15px;
    padding-bottom: 14px;
  }
}
@media screen and (max-width: 991.98px) {
  .about-us .about-us-content .about-item {
    width: 47%;
  }
}
@media screen and (max-width: 575.98px) {
  .about-us .about-us-content .about-item {
    width: 45%;
  }
}
@media screen and (max-width: 480.98px) {
  .about-us .about-us-content .about-item {
    width: 44%;
  }
}
.about-us .about-us-content .about-item i {
  color: #8b6026;
  font-weight: 500;
  font-size: 30px;
}
@media screen and (max-width: 1199.98px) {
  .about-us .about-us-content .about-item i {
    font-size: 20px;
  }
}
@media screen and (max-width: 991.98px) {
  .about-us .about-us-content .about-item i {
    font-size: 27px;
  }
}
@media screen and (max-width: 991.98px) {
  .about-us .about-us-content .about-item i {
    font-size: 20px;
  }
}
.about-us .about-us-content .about-item span {
  font-size: 11px;
  font-weight: 400;
  text-align: center;
  color: #8b6026;
  height: 33px;
}
@media screen and (max-width: 1199.98px) {
  .about-us .about-us-content .about-item span {
    font-size: 9px;
  }
}
@media screen and (max-width: 991.98px) {
  .about-us .about-us-content .about-item span {
    font-size: 13px;
  }
}
@media screen and (max-width: 480.98px) {
  .about-us .about-us-content .about-item span {
    font-size: 10px;
  }
}
.about-us .about-us-images {
  background-image: url(../../../../assets/images/index/about-background.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  height: 100%;
  min-height: 700px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 991.98px) {
  .about-us .about-us-images {
    min-height: 495px;
  }
}
.about-us .about1, .about-us .videos {
  position: absolute;
  border-radius: 50%;
  border: 6px solid white;
  object-fit: cover;
}
.about-us .about1 {
  animation: about1Move 3s linear infinite alternate;
  width: 360px;
  height: 360px;
}
@media screen and (max-width: 1199.98px) {
  .about-us .about1 {
    width: 275px;
    height: 275px;
  }
}
.about-us .videos {
  animation: about2Move 3s linear infinite alternate;
  width: 300px;
  height: 300px;
  z-index: 3;
}
@media screen and (max-width: 1199.98px) {
  .about-us .videos {
    width: 255px !important;
    height: 255px !important;
  }
}
@media screen and (max-width: 480.98px) {
  .about-us .videos {
    width: 220px !important;
    height: 220px !important;
  }
}
.about-us .videos img, .about-us .videos .video-link-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.about-us .videos img {
  object-fit: cover;
}

.video-link-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-link-wrapper .video-link {
  border-radius: 50%;
  text-align: center;
  width: 80px;
  height: 80px;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  margin: 100px auto;
  box-shadow: 0px 0px 25px 3px #064b81;
  z-index: 99;
}
@media screen and (max-width: 991.98px) {
  .video-link-wrapper .video-link {
    width: 60px;
    height: 60px;
    bottom: 180px;
    left: 25px;
  }
}
@media screen and (max-width: 479.98px) {
  .video-link-wrapper .video-link {
    width: 55px;
    height: 55px;
    bottom: 215px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .video-link-wrapper .video-link {
    width: 59px;
    height: 59px;
    right: 0px;
    top: 0%;
  }
}
.video-link-wrapper .video-link .modal-icon {
  color: #064b81;
  font-size: 25px;
}
@media screen and (max-width: 991.98px) {
  .video-link-wrapper .video-link .modal-icon {
    font-size: 20px;
  }
}

.aboutus-sec__video {
  position: relative;
  text-align: center;
}
.aboutus-sec__video:after {
  content: "";
  display: inline-block;
  width: 550px;
  height: 550px;
  border: 30px solid #064b81;
  border-radius: 50%;
}
@media screen and (max-width: 479.98px) {
  .aboutus-sec__video:after {
    width: 271px;
    height: 271px;
  }
}
@media screen and (min-width: 480px) and (max-width: 767.98px) {
  .aboutus-sec__video:after {
    width: 330px;
    height: 330px;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .aboutus-sec__video:after {
    width: 450px;
    height: 450px;
  }
}
.aboutus-sec__video .videos {
  position: absolute;
  top: 20%;
  width: 100%;
}
.aboutus-sec__video .videos .video-cover {
  border-radius: 10px;
  width: 80%;
}
@media screen and (max-width: 767.98px) {
  .aboutus-sec__video .videos .video-cover {
    width: 80%;
  }
}
.aboutus-sec__video .box {
  position: absolute;
  bottom: 106px;
  background: #fff;
  width: 68%;
  right: 19%;
  padding: 15px;
  border-radius: 12px 12px 0 0;
}
@media screen and (max-width: 767.98px) {
  .aboutus-sec__video .box {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 991.98px) {
  .aboutus-sec__video .box {
    width: 62%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199.98px) {
  .aboutus-sec__video .box {
    width: 75%;
    right: 57px;
    bottom: 60px;
  }
}
.aboutus-sec__video .box .title {
  font-size: 14px;
  font-weight: 700;
}

@media screen and (max-width: 991.98px) {
  .about-row {
    flex-direction: column;
  }
}

@keyframes about1Move {
  0% {
    right: 60px;
    bottom: 60px;
  }
  50% {
    right: 45px;
    bottom: 45px;
  }
  100% {
    right: 60px;
    bottom: 60px;
  }
}
@keyframes about2Move {
  0% {
    right: 290px;
    bottom: 270px;
  }
  50% {
    right: 305px;
    bottom: 285px;
  }
  100% {
    right: 290px;
    bottom: 270px;
  }
}
@media screen and (max-width: 991.98px) {
  @keyframes about1Move {
    0% {
      right: 40%;
      bottom: 50px;
    }
    50% {
      right: 50%;
      bottom: 40px;
    }
    100% {
      right: 40%;
      bottom: 50px;
    }
  }
  @keyframes about2Move {
    0% {
      right: 30%;
      bottom: 180px;
    }
    50% {
      right: 50%;
      bottom: 190px;
    }
    100% {
      right: 30%;
      bottom: 180px;
    }
  }
  .about1 {
    width: 200px !important;
    height: 200px !important;
  }
  .videos {
    width: 180px !important;
    height: 180px !important;
  }
}
@media screen and (max-width: 767.98px) {
  @keyframes about1Move {
    0% {
      right: 30%;
      bottom: 50px;
    }
    50% {
      right: 40%;
      bottom: 40px;
    }
    100% {
      right: 30%;
      bottom: 50px;
    }
  }
  @keyframes about2Move {
    0% {
      right: 30%;
      bottom: 180px;
    }
    50% {
      right: 40%;
      bottom: 190px;
    }
    100% {
      right: 30%;
      bottom: 180px;
    }
  }
  .about1 {
    width: 200px !important;
    height: 200px !important;
  }
  .videos {
    width: 180px !important;
    height: 180px !important;
  }
}
@media screen and (max-width: 480.98px) {
  @keyframes about1Move {
    0% {
      right: 20%;
      bottom: 50px;
    }
    50% {
      right: 30%;
      bottom: 40px;
    }
    100% {
      right: 20%;
      bottom: 50px;
    }
  }
  @keyframes about2Move {
    0% {
      right: 20%;
      bottom: 180px;
    }
    50% {
      right: 30%;
      bottom: 190px;
    }
    100% {
      right: 20%;
      bottom: 180px;
    }
  }
  .about1 {
    width: 200px !important;
    height: 200px !important;
  }
  .videos {
    width: 180px !important;
    height: 180px !important;
  }
}
@media screen and (max-width: 991.98px) {
  .video-cover {
    width: 100%;
    border-radius: 50px;
  }
}

@media screen and (max-width: 991.98px) {
  .about-us-mt {
    margin: 40px auto;
  }
}

@keyframes categoryShape {
  0% {
    bottom: 60px;
  }
  50% {
    bottom: 40px;
  }
  100% {
    bottom: 60px;
  }
}
.categories {
  position: relative;
  padding: 50px 0;
}
.categories::after {
  position: absolute;
  display: none;
  content: "";
  left: 60px;
  width: 180px;
  height: 150px;
  background-image: url(../../../../assets/images/content/category-shape.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  animation: categoryShape 4s linear infinite alternate;
}
@media (min-width: 1400px) {
  .categories::after {
    display: block;
  }
}
.categories .category {
  position: relative;
}
.categories .category__content {
  position: absolute;
  background-color: rgb(156.4, 119.85, 70.55);
  border-radius: 20px;
  bottom: 40px;
  right: 50%;
  transform: translateX(50%);
  width: 80%;
  padding: 20px;
  z-index: 3;
  transition: 0.3s;
}
@media screen and (max-width: 1199.98px) {
  .categories .category__content {
    width: 75%;
    padding: 10px;
  }
}
@media screen and (max-width: 991.98px) {
  .categories .category__content {
    width: 65%;
    padding: 10px;
  }
}
@media screen and (max-width: 425.98px) {
  .categories .category__content {
    bottom: 15px;
  }
}
.categories .category__title {
  color: white;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 991.98px) {
  .categories .category__title {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
@media screen and (max-width: 425.98px) {
  .categories .category__title {
    font-size: 11px;
  }
}
.categories .category__desc {
  position: relative;
  width: fit-content;
  color: black;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 991.98px) {
  .categories .category__desc {
    font-size: 13px;
    font-weight: 700;
  }
}
@media screen and (max-width: 480.98px) {
  .categories .category__desc {
    font-size: 11px;
    font-weight: 500;
  }
}
.categories .category__desc:after {
  position: absolute;
  content: "";
  width: 0;
  height: 1px;
  background-color: black;
  bottom: 0;
  right: 0;
  display: block;
  transition: 0.3s ease-in;
}
.categories .category__desc:hover:after {
  width: 100%;
}
.categories .category__container {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991.98px) {
  .categories .category__container {
    width: 90%;
  }
}
@media screen and (max-width: 575.98px) {
  .categories .category__container {
    width: 100%;
  }
}
.categories .category__container img {
  width: 100%;
  aspect-ratio: 4/5;
  z-index: 1;
  transition: 0.3s;
}
.categories .category__container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}
.categories .category__container:hover::after {
  top: -100%;
}
.categories .category__container:hover .color {
  left: -25px;
}
.categories .category__container:hover img {
  transform: scale(1.06);
}
.categories .category__container:hover .category__content {
  background-color: white;
}
.categories .category__container:hover .category__title {
  color: #8b6026;
}
.categories .category__container .color {
  position: absolute;
  z-index: 3;
  left: 20px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 2px solid white;
  transition: 0.3s;
}
@media screen and (max-width: 1199.98px) {
  .categories .category__container .color {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 425.98px) {
  .categories .category__container .color {
    width: 15px;
    height: 15px;
  }
}
.categories .category__container .color1 {
  top: 30px;
}
@media screen and (max-width: 425.98px) {
  .categories .category__container .color1 {
    top: 25px;
  }
}
.categories .category__container .color2 {
  top: 65px;
}
@media screen and (max-width: 1199.98px) {
  .categories .category__container .color2 {
    top: 58px;
  }
}
@media screen and (max-width: 425.98px) {
  .categories .category__container .color2 {
    top: 47px;
  }
}
.categories .category__container .color3 {
  top: 100px;
}
@media screen and (max-width: 1199.98px) {
  .categories .category__container .color3 {
    top: 82px;
  }
}
@media screen and (max-width: 425.98px) {
  .categories .category__container .color3 {
    top: 70px;
  }
}

.category-bg {
  background-image: url(../../../../assets/images/category/category-bg.png);
  right: 0;
  left: initial;
  background-position: right bottom;
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: auto;
}
@media screen and (max-width: 767.98px) {
  .category-bg {
    background: unset;
  }
}

.mobile-categories-card {
  display: none !important;
}
@media screen and (max-width: 991.98px) {
  .mobile-categories-card {
    display: flex !important;
    overflow-x: auto;
    flex-wrap: nowrap;
    overflow-y: hidden;
  }
}
@media screen and (max-width: 767.98px) {
  .mobile-categories-card {
    display: flex !important;
    overflow-x: auto !important;
    flex-wrap: nowrap !important;
    overflow-y: hidden !important;
  }
}

@media screen and (max-width: 991.98px) {
  .desktop-categories-card {
    display: none !important;
  }
}

.blogContainer {
  margin-bottom: 50px;
}

.blog {
  border-radius: 8px;
  overflow: hidden;
}
.blog__container {
  position: relative;
}
.blog__container:hover .blog__content {
  background: linear-gradient(0deg, rgb(94, 60, 16) 0%, rgba(139, 96, 66, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
}
.blog__container:hover img {
  transform: scale(1.06);
}
.blog__container img {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 8px;
  transition: 0.3s ease-in;
}
.blog__content {
  text-shadow: 3px 3px 2px rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  bottom: 0;
  right: 0;
  background: transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px 20px;
  gap: 14px;
  transition: 0.3s ease-in;
}
.blog__content h6 {
  font-weight: 700;
  font-size: 19px;
  line-height: 30px;
  color: white;
  height: 60px;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 1199.98px) {
  .blog__content h6 {
    font-size: 16px;
  }
}
.blog__info {
  display: flex;
  align-items: center;
  color: white;
  gap: 20px;
  font-size: 14px;
}
@media screen and (max-width: 1199.98px) {
  .blog__info {
    font-size: 12px;
  }
}
@media screen and (max-width: 991.98px) {
  .blog__info {
    font-size: 9px;
  }
}
@media screen and (max-width: 480.98px) {
  .blog__info {
    font-size: 8px;
  }
}
.blog__info div {
  display: flex;
  gap: 7px;
  align-items: center;
}

.sectionTitle {
  font-weight: 700;
  font-size: 24px;
  text-shadow: 4px 4px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  font-family: "iranyekan";
  z-index: 3;
}
@media screen and (max-width: 767.98px) {
  .sectionTitle {
    font-size: 18px;
  }
}

/*# sourceMappingURL=index.css.map */
