* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif !important;
  text-decoration: none !important;
  margin-bottom: 0 !important;
}
html{
    scroll-behavior: smooth;
}
body {
  background: #fff !important;
}

button {
  border: none;
  outline: none;
  cursor: pointer;
  background: transparent;
}

.p-tb {
  padding-top: 100px;
  padding-bottom: 100px;
}

.mt-120 {
  margin-top: 120px;
}

.title {
  width: -moz-max-content;
  width: max-content;
  font-size: 40px;
  font-weight: 500;
  line-height: 56px;
  position: relative;
}
.title::after {
  position: absolute;
  width: 70%;
  height: 2px;
  background: #F65005;
  left: 0;
  top: 55px;
  content: "";
}

.mt-48 {
  margin-top: 48px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-40 {
  margin-top: 40px;
}

header {
  max-width: 1480px;
  padding: 18px 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
header .header-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .header-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  color: #3cb815;
  transition: 0.4s;
}
header .header-links a:hover {
  transform: scale(1.05);
}
header .header-socials {
  display: flex;
  align-items: center;
  gap: 20px;
}
header .header-socials a {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #3cb815;
  padding: 8px;
  transition: 0.4s;
}
header .header-socials a:hover {
  transform: scale(1.1);
}

nav {
  margin-top: 12px;
  max-width: 1480px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background: #fff;
}
nav .navbar-main {
  padding: 20px 25px;
  width: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  box-shadow: 2px 1px 18px -1px rgba(0, 0, 0, 0.15);
}
nav .navbar-main .nav-logo h1 {
  color: #3cb815;
  font-weight: 700;
  font-size: 36px;
}
nav .navbar-main .nav-logo h1 span {
  color: #F65005;
}
nav .navbar-main .navbar-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav .navbar-main .navbar-right .navbar-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
nav .navbar-main .navbar-right .navbar-links .nav_link {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  transition: transform 0.45s cubic-bezier(0, 0, 0.21, 1);
}
nav .navbar-main .navbar-right .navbar-links .nav_link::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  left: 0;
  top: 30px;
  background: #3cb815;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
nav .navbar-main .navbar-right .navbar-links .nav_link:hover::after {
  width: 75%;
  opacity: 1;
  visibility: visible;
}
nav .navbar-main .navbar-right .navbar-right-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
nav .navbar-main .navbar-right .navbar-right-links .nav_phone_link {
  width: 32px;
  height: 32px;
  border-radius: 50px;
  background: #3cb815;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotateY(180deg);
  transition: 0.4s;
}
nav .navbar-main .navbar-right .navbar-right-links .nav_phone_link:hover {
  transform: rotateY(180deg) scale(1.1);
}
nav .navbar-main .navbar-right .navbar-right-links .hamburger {
  width: 40px;
  height: 40px;
  border-radius: 50px;
  padding: 8px;
  background: #3cb815;
  align-items: center;
  justify-content: center;
  display: none;
}

.mobile-menu {
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  width: 400px;
  height: 100%;
  z-index: 50;
  top: 0;
  right: -200%;
  padding: 20px;
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 40px;
  transition: 0.4s;
}
.mobile-menu .mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.mobile-menu .mobile-menu-top .mobile_menu_logo h1 {
  color: #3cb815;
  font-weight: 700;
  font-size: 36px;
}
.mobile-menu .mobile-menu-top .mobile_menu_logo h1 span {
  color: #F65005;
}
.mobile-menu .mobile-menu-top .close_mobile_menu {
  margin-left: auto;
  color: #fff;
}
.mobile-menu .mobile-menu-top .close_mobile_menu i {
  font-size: 32px;
}
.mobile-menu .mobile_menu_links {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
.mobile-menu .mobile_menu_links a {
  color: #F65005;
  font-size: 18px;
  line-height: 32px;
  font-weight: 500;
}

.home-hero {
  margin-top: 12px;
  max-width: 1480px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  background: #fff;
}
.home-hero .hero-main {
  border-radius: 20px;
  width: 100%;
  position: relative;
}
.home-hero .hero-main .hero-bg-img {
  width: 100%;
  border-radius: 20px;
  filter: brightness(80%);
}
.home-hero .hero-main .hero-content {
  background: rgba(255, 255, 255, 0.6);
  padding: 30px 40px;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: absolute;
  bottom: 120px;
  left: 80px;
  width: 1000px;
}
.home-hero .hero-main .hero-content h2 {
  color: #000;
  font-size: 56px;
  line-height: 68px;
  font-weight: 700;
}
.home-hero .hero-main .hero-content p {
  margin-top: 10px;
  font-size: 20px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 32px;
}

.result-section {
  max-width: 1480px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.result-section .result-main {
  padding: 80px 60px;
  width: 100%;
  position: relative;
  background: #f5f5f5;
  border-radius: 20px;
}
.result-section .result-main .result_slide {
  width: 100%;
  position: initial;
}
.result-section .result-main .result_slide .result-item {
  width: 420px !important;
}
.result-section .result-main .result_slide .result-item img {
  width: 100%;
  height: 100%;
}
.result-section .result-main .result_slide .swiper-button-next, .result-section .result-main .result_slide .swiper-button-prev {
  top: 0;
  width: 40px;
  height: 40px;
  border: 1px solid #F65005;
  background: #fff;
  border-radius: 50px;
  padding: 8px;
  top: 115px;
}
.result-section .result-main .result_slide .swiper-button-next::after, .result-section .result-main .result_slide .swiper-button-prev::after {
  display: none;
}
.result-section .result-main .result_slide .swiper-button-next {
  right: 60px;
}
.result-section .result-main .result_slide .swiper-button-prev {
  left: auto;
  right: 110px;
}
.result-section .result-main .result_slide .swiper-pagination {
  bottom: 40px;
}
.result-section .result-main .result_slide .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #F65005;
  opacity: 1;
}
.result-section .result-main .result_slide .swiper-pagination .swiper-pagination-bullet-active {
  background: #F65005;
}

.books-section {
  max-width: 1480px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.books-section .book-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.books-section .book-boxes .book-item {
  border-radius: 20px;
  background: rgba(97, 191, 2, 0.18);
}
.books-section .book-boxes .book-item .book-img {
  width: 100%;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}
.books-section .book-boxes .book-item .book-img img {
  width: 100%;
  height: 100%;
  border-radius: 20px 20px 0 0;
  transition: 0.5s;
}
.books-section .book-boxes .book-item .book-body {
  padding: 20px 25px;
}
.books-section .book-boxes .book-item .book-body .book-name {
  font-size: 28px;
  line-height: 36px;
  font-weight: 500;
  color: #000;
}
.books-section .book-boxes .book-item .book-body .book-body-items {
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.books-section .book-boxes .book-item .book-body .book-body-items .book-price {
  color: #3cb815;
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s;
  cursor: pointer;
}
.books-section .book-boxes .book-item .book-body .book-body-items .book-price:hover {
  color: #F65005;
}
.books-section .book-boxes .book-item .book-body .book-body-items .buy_book {
  padding: 8px 30px;
  border-radius: 25px;
  background: #3cb815;
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  transition: 0.3s;
}
.books-section .book-boxes .book-item .book-body .book-body-items .buy_book:hover {
  background: #F65005;
}
.books-section .book-boxes .book-item:hover .book-img img {
  transform: scale(1.2);
  filter: brightness(60%);
}

.products-section {
  background: #fff;
  max-width: 1480px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.products-section .products-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.products-section .products-top .products-sec-more {
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: #3cb815;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: 0.4s;
}
.products-section .products-top .products-sec-more:hover {
  color: #F65005;
}
.products-section .products-top .products-sec-more:hover svg path {
  transition: 0.4s;
  stroke: #F65005;
}
.products-section .products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.products-section .products .product-box {
  background: #fff;
  box-shadow: 2px 5px 8px 4px rgba(0, 0, 0, 0.2);
}
.products-section .products .product-box .pro-img {
  width: 100%;
  overflow: hidden;
}
.products-section .products .product-box .pro-img img {
  transition: 0.5s;
  width: 100%;
  height: 100%;
}
.products-section .products .product-box:hover .pro-img img {
  transform: scale(1.2);
  filter: brightness(60%);
}
.products-section .products .product-box .pro-body {
  padding: 20px 25px;
}
.products-section .products .product-box .pro-body .pro-name {
  font-size: 20px;
  line-height: 32px;
  font-weight: 500;
  color: #000;
}
.products-section .products .product-box .pro-body .body-items {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.products-section .products .product-box .pro-body .body-items .pro-price {
  color: #3cb815;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
  cursor: pointer;
}
.products-section .products .product-box .pro-body .body-items .pro-price:hover {
  color: #F65005;
}
.products-section .products .product-box .pro-body .body-items .buy-pro {
  padding: 8px 24px;
  border-radius: 25px;
  background: #3cb815;
  text-align: center;
  color: #fff;
  font-size: 18px;
  line-height: 30px;
  font-weight: 500;
  transition: 0.3s;
}
.products-section .products .product-box .pro-body .body-items .buy-pro:hover {
  background: #F65005;
}
.products-section .products .product-box .pro-detals-btn {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  line-height: 30px;
  transition: 0.4s;
  color: #3cb815;
}
.products-section .products .product-box .pro-detals-btn:hover {
  transform: scale(1.1);
}

footer {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #000;
}
footer .footer-main {
  max-width: 1480px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}
footer .footer-main .footer-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
footer .footer-main .footer-left .footer-logo h1 {
  color: #3cb815;
  font-weight: 700;
  font-size: 36px;
}
footer .footer-main .footer-left .footer-logo h1 span {
  color: #F65005;
}
footer .footer-main .footer-left .footer_short_desc {
  font-size: 18px;
  line-height: 26px;
  max-width: 350px;
  color: rgba(255, 255, 255, 0.6);
}
footer .footer-main .footer-center {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
footer .footer-main .footer-center .footer_title {
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
footer .footer-main .footer-center form {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 20px;
}
footer .footer-main .footer-center form label {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
footer .footer-main .footer-center form .footer-input {
  background: #3cb815;
  border-radius: 50px;
  padding: 8px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
footer .footer-main .footer-center form .footer-input input {
  background: transparent;
  color: #000;
  border: none;
  outline: none;
  border-radius: 0;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  width: 100%;
}
footer .footer-main .footer-center form .footer-input input::-moz-placeholder {
  color: #000;
}
footer .footer-main .footer-center form .footer-input input::placeholder {
  color: #000;
}
footer .footer-main .footer-center form .footer-input .send_mail {
  padding: 12px 16px;
  background: #fff;
  border-radius: 50px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #3cb815;
}
footer .footer-main .footer-right {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 20px;
}
footer .footer-main .footer-right .footer_title {
  color: #fff;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
footer .footer-main .footer-right .footer-contacts {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
footer .footer-main .footer-right .footer-contacts a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  line-height: 24px;
}
footer .footer-main .footer-right .footer-socials {
  display: flex;
  align-items: center;
  gap: 25px;
}
footer .footer-main .footer-right .footer-socials a {
  min-width: 40px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background: #fff;
  border: 1px solid #3cb815;
  padding: 10px;
  transition: 0.4s;
}
footer .footer-main .footer-right .footer-socials a:hover {
  transform: scale(1.1);
}
footer .footer-main .footer-right .footer-socials a svg {
  width: 100%;
  height: 100%;
}
footer .footer-bottom {
  margin-top: 80px;
}
footer .footer-bottom .footer-bottom-inner {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 1480px;
  padding: 0 20px;
}
footer .footer-bottom .footer-bottom-inner p {
  border-top: 1px solid #F65005;
  padding-top: 20px;
  color: #fff;
  font-size: 18px;
  line-height: 32px;
}
footer .footer-bottom .footer-bottom-inner p a {
  color: #F65005;
  font-weight: 600;
}

.pro_section_modal {
  position: fixed;
  top: -200%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  transition: all 0.4s;
  overflow-y: auto;
}
.pro_section_modal .section_modal_content {
  width: 600px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
.pro_section_modal .section_modal_content p {
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  text-align: center;
}
.pro_section_modal .section_modal_content span {
  color: rgb(182, 0, 0);
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  font-weight: 700;
  font-style: italic;
}
.pro_section_modal .close_pro_sec_modal {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #fff;
}
.pro_section_modal .close_pro_sec_modal i {
  font-size: 32px;
}

.pro_detail_modal {
  position: fixed;
  top: -200%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  transition: all 0.4s;
  overflow-y: auto;
}
.pro_detail_modal .detail_modal_content {
  width: 600px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}
.pro_detail_modal .detail_modal_content p {
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  font-weight: 400;
  text-align: start;
}
.pro_detail_modal .detail_modal_content ul {
  list-style: circle;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.pro_detail_modal .close_pro_detail_modal {
  position: absolute;
  top: 40px;
  right: 40px;
  color: #fff;
}
.pro_detail_modal .close_pro_detail_modal i {
  font-size: 32px;
}

@media only screen and (max-width: 1250px) {
  .p-tb {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .mt-120 {
    margin-top: 80px;
  }
  .mt-40 {
    margin-top: 35px;
  }
  .title {
    font-size: 32px;
    line-height: 48px;
  }
  .mt-48 {
    margin-top: 40px;
  }
  .mt-60 {
    margin-top: 45px;
  }
  .home-hero .hero-main .hero-content {
    padding: 20px 30px;
    bottom: 50px;
    left: 30px;
    width: 92%;
  }
  .home-hero .hero-main .hero-content h2 {
    font-size: 44px;
    line-height: 56px;
  }
  .home-hero .hero-main .hero-content p {
    font-size: 18px;
    line-height: 28px;
  }
  .products-section .products-top .products-sec-more {
    font-size: 20px;
    line-height: 28px;
    gap: 10px;
  }
  .books-section .book-boxes .book-item .book-body .book-name {
    font-size: 24px;
    line-height: 32px;
  }
  .books-section .book-boxes .book-item .book-body .book-body-items .book-price {
    font-size: 20px;
  }
  .books-section .book-boxes .book-item .book-body .book-body-items .buy_book {
    padding: 6px 24px;
    font-size: 18px;
    line-height: 26px;
  }
  .result-section .result-main {
    padding: 60px 50px;
  }
  .result-section .result-main .result_slide .result-item {
    width: 380px !important;
  }
  .result-section .result-main .result_slide .swiper-button-next, .result-section .result-main .result_slide .swiper-button-prev {
    top: 105px;
  }
  .result-section .result-main .result_slide .swiper-button-next {
    right: 50px;
  }
  .result-section .result-main .result_slide .swiper-button-prev {
    right: 100px;
  }
  .result-section .result-main .result_slide .swiper-pagination {
    bottom: 30px;
  }
  footer {
    padding-top: 60px;
    padding-bottom: 600px;
  }
  footer .footer-main .footer-left .footer-logo h1 {
    font-size: 36px;
  }
  footer .footer-main .footer-left .footer_short_desc {
    font-size: 16px;
    line-height: 24px;
  }
  footer .footer-main .footer-center .footer_title {
    font-size: 20px;
    line-height: 28px;
  }
  footer .footer-main .footer-center form .footer-input {
    padding: 8px;
    padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  footer .footer-main .footer-center form .footer-input .send_mail {
    padding: 8px 14px;
    font-size: 14px;
    line-height: 22px;
  }
  footer .footer-main .footer-right .footer_title {
    font-size: 20px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 992px) {
  header {
    display: none;
  }
  nav .navbar-main .nav-logo h1 {
    font-size: 28px;
  }
  nav .navbar-main .navbar-right {
    gap: 0;
  }
  nav .navbar-main .navbar-right .navbar-links {
    display: none;
  }
  nav .navbar-main .navbar-right .navbar-right-links .nav_phone_link {
    display: none;
  }
  nav .navbar-main .navbar-right .navbar-right-links .hamburger {
    display: flex;
  }
  .mobile-menu {
    display: flex;
  }
  .products-section .products {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .products-section .products .product-box .pro-body .pro-name {
    font-size: 18px;
    line-height: 28px;
  }
  .books-section .book-boxes {
    grid-template-columns: repeat(2, 1fr);
  }
  .books-section .book-boxes .book-item .book-body .book-name {
    font-size: 20px;
    line-height: 28px;
  }
  .books-section .book-boxes .book-item .book-body .book-body-items {
    margin-top: 10px;
  }
  .books-section .book-boxes .book-item .book-body .book-body-items .book-price {
    font-size: 18px;
  }
  .books-section .book-boxes .book-item .book-body .book-body-items .buy_book {
    padding: 6px 24px;
    font-size: 16px;
    line-height: 24px;
  }
  .result-section .result-main {
    padding: 50px 40px;
  }
  .result-section .result-main .result_slide .result-item {
    width: 350px !important;
  }
  .result-section .result-main .result_slide .swiper-button-next, .result-section .result-main .result_slide .swiper-button-prev {
    top: 90px;
  }
  .result-section .result-main .result_slide .swiper-button-next {
    right: 40px;
  }
  .result-section .result-main .result_slide .swiper-button-prev {
    right: 90px;
  }
  .result-section .result-main .result_slide .swiper-pagination {
    bottom: 30px;
  }
  footer .footer-main {
    flex-direction: column;
    gap: 40px;
    width: -moz-max-content;
    width: max-content;
  }
}
@media only screen and (max-width: 768px) {
  .p-tb {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .mt-120 {
    margin-top: 40px;
  }
  .title {
    font-size: 24px;
    line-height: 32px;
  }
  .title::after {
    top: 37px;
  }
  .mt-40 {
    margin-top: 30px;
  }
  .mt-48 {
    margin-top: 30px;
  }
  .mt-60 {
    margin-top: 30px;
  }
  nav .navbar-main {
    padding: 10px 15px;
  }
  nav .navbar-main .nav-logo h1 {
    font-size: 24px;
  }
  .home-hero .hero-main {
    height: 450px;
  }
  .home-hero .hero-main .hero-content {
    padding: 20px 30px;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
  .home-hero .hero-main .hero-content h2 {
    font-size: 36px;
    line-height: 44px;
  }
  .home-hero .hero-main .hero-content p {
    font-size: 16px;
    line-height: 24px;
  }
  .home-hero .hero-main img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .result-section {
    padding: 0;
  }
  .result-section .result-main {
    padding: 40px 30px;
  }
  .result-section .result-main .result_slide .result-item {
    width: 300px !important;
  }
  .result-section .result-main .result_slide .swiper-button-next, .result-section .result-main .result_slide .swiper-button-prev {
    width: 30px;
    height: 30px;
    padding: 6px;
    top: 70px;
  }
  .result-section .result-main .result_slide .swiper-button-next {
    right: 30px;
  }
  .result-section .result-main .result_slide .swiper-button-prev {
    right: 70px;
  }
  .result-section .result-main .result_slide .swiper-pagination {
    bottom: 15px;
  }
  .footer-bottom .footer-bottom-inner p {
    font-size: 16px;
    line-height: 24px;
  }
  .pro_section_modal {
    padding: 20px;
  }
  .pro_section_modal .section_modal_content {
    width: 100%;
  }
  .pro_section_modal .close_pro_sec_modal {
    top: 20px;
    right: 40px;
  }
  .pro_detail_modal {
    padding: 20px;
    padding-left: 40px;
  }
  .pro_detail_modal .detail_modal_content {
    width: 100%;
  }
  .pro_detail_modal .detail_modal_content p {
    font-size: 18px;
    line-height: 30px;
  }
  .pro_detail_modal .detail_modal_content ul {
    gap: 5px;
  }
  .pro_detail_modal .close_pro_detail_modal {
    top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .products-section .products-top .products-sec-more {
    font-size: 18px;
    line-height: 26px;
  }
  .products-section .products {
    grid-template-columns: repeat(1, 1fr);
  }
  .products-section .products .product-box .pro-body {
    padding: 15px 20px;
  }
  .products-section .products .product-box .pro-body .pro-name {
    font-size: 18px;
    line-height: 26px;
  }
  .products-section .products .product-box .pro-body .body-items .buy-pro {
    padding: 6px 18px;
    font-size: 16px;
    line-height: 24px;
  }
  .books-section .book-boxes {
    grid-template-columns: repeat(1, 1fr);
  }
  .books-section .book-boxes .book-item .book-body {
    padding: 15px 22px;
  }
  .books-section .book-boxes .book-item .book-body .book-name {
    font-size: 18px;
    line-height: 26px;
  }
  .books-section .book-boxes .book-item .book-body .book-body-items {
    margin-top: 10px;
  }
  .books-section .book-boxes .book-item .book-body .book-body-items .book-price {
    font-size: 16px;
  }
  .mobile-menu {
    width: 100%;
  }
  .mobile-menu .mobile-menu-top .mobile_menu_logo h1 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 500px) {
  .home-hero .hero-main {
    height: 450px;
  }
  .home-hero .hero-main .hero-content {
    padding: 15px 25px;
    bottom: 30px;
    width: 90%;
  }
  .home-hero .hero-main .hero-content h2 {
    font-size: 28px;
    line-height: 32px;
  }
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer .footer-main {
    flex-direction: column;
    gap: 40px;
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */