@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&family=Lora:wght@400;500;600;700&display=swap");

/*-----------------------
    Common CSS Start
-------------------------*/

/***************** Website Theme *************************/
:root {
  /*font-family-css */
  /* --primary-font: "poppins", sans-serif;
  --secondary-font: "Montserrat", sans-serif; */
  /*ThemeFonts*/
  --primary-color: #3cb814;
  --white-color: #ffffff;
  --secondary-color: #ffe9bd;
  --red-color: #e21110;
  --orange-color: #ff7e0a;
  --yellow-color: #fec604;
  --silvar-color: #dedede;
  --pink-color: #fbeaea;
  --lavender-color: #eeeef9;
  --silver-color-100: #dbdbdb;
  --yellow-color-2: #fef4ea;
  --accent-fbeaea: #fbeaea;
  /*textColor*/
  --text-1-color: #1a2327;
  --text-2-color: #70767e;
  --text-3-color: #8c9197;
  --text-4-color: #6b7078;
  /*backgroundColor*/
  --bg-theme-color: #fff;
  --bg-color-100: #effeea;
  /*transition*/
  --transition: all 0.5s ease-in-out;
  --transition-1: all 0.3s ease-in-out;
  /*ShadowSection---*/
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  scroll-behavior: smooth;
  background-color: var(--bg-theme-color);
  color: var(--text-1-color);
  overflow-x: hidden;
  /* font-family: var(--primary-font); */
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background-color: var(--primary-color);
  color: var(--white-color);
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  color: var(--black-color);
  margin: 0;
}
a {
  text-decoration: none;
}
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}
textarea {
  resize: none !important;
}
img {
  max-width: 100%;
  display: block;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: none;
}
.primary-btn {
  display: flex;
  padding: 16px 32px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  border: none;
  background: var(--primary-color);
  color: var(--white-color);
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}

.primary-btn:hover {
  border: 2px solid var(--primary-color);
  color: var(--text-1-color);
  background-color: transparent;
}

i {
  display: inline-block;
}

/* Spacing Css*/
.align-end {
  display: flex;
  justify-content: end;
}
.section-gap {
  padding: 80px 0px !important;
}
.section-gap-2 {
  padding: 120px 0px !important;
}
.section-gap-3 {
  padding: 80px 0px 106px 0px !important;
}
/* Gap Styling */
.gap-28 {
  gap: 28px !important;
}
.gap-60 {
  gap: 60px !important;
}
.gx-40 {
  --bs-gutter-x: 40px !important;
}
.gy-40 {
  --bs-gutter-y: 40px !important;
}
.gy-30 {
  --bs-gutter-y: 30px !important;
}
.gap-y-40 {
  row-gap: 40px !important;
}

.gap-row {
  row-gap: 30px !important;
}

/* color */
.yellow {
  background-color: #f7f6d7 !important;
}
.lavender {
  background-color: #eeeef9 !important;
}
.light-green {
  background-color: #e9f4e3 !important;
}
.pink {
  background-color: #fbeaea !important;
}
/*-----------------------
    Common CSS Ends
-------------------------*/

/*----------
    Navbar
------------*/
._header {
  width: 100%;
  height: 98px;
  background-color: var(--white-color);
}
._header ._navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 32px;
}
._header ._navbar ._logo_wrap ._logo img {
  width: 99.044px;
  height: 40px;
}

._header ._navbar ._navbar-collapse ._navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
._header ._navbar ._navbar-collapse ._navbar-nav ._nav-item ._nav-link {
  position: relative;
  color: var(--text-2-color);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  transition: var(--transition-1);
  -webkit-transition: var(--transition-1);
  -moz-transition: var(--transition-1);
  -ms-transition: var(--transition-1);
  -o-transition: var(--transition-1);
}
._header ._navbar ._navbar-collapse ._navbar-nav ._nav-item ._nav-link::after {
  content: "";
  position: absolute;
  background-color: var(--primary-color);
  height: 3px;
  width: 0px;
  left: 0;
  bottom: -10px;
  pointer-events: none;
  transition: var(--transition-1);
  -webkit-transition: var(--transition-1);
  -moz-transition: var(--transition-1);
  -ms-transition: var(--transition-1);
  -o-transition: var(--transition-1);
}
._header
  ._navbar
  ._navbar-collapse
  ._navbar-nav
  ._nav-item
  ._nav-link:hover:after {
  width: 22px;
}
._header ._navbar ._navbar-collapse ._navbar-nav ._nav-item ._nav-link:hover,
._header ._navbar ._navbar-collapse ._navbar-nav ._nav-item .active {
  color: var(--text-1-color);
}
._header ._navbar ._nav_right {
  display: flex;
  align-items: center;
  gap: 20px;
}

._header ._navbar ._nav_right ._navbar_search {
  position: relative;
}
._header ._navbar ._nav_right ._navbar_search input {
  width: 188px;
  height: 42px;
  border-radius: 120px;
  border: 0.5px solid var(--text-2-color);
  background-color: transparent;
  padding-left: 35px;
  margin-right: 24px;
}
._header ._navbar ._nav_right ._navbar_search input::placeholder {
  color: var(--text-3-color);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 16px */
}
._header ._navbar ._nav_right ._navbar_search ._product_btn_search {
  width: auto;
  position: absolute;
  top: 10px;
  left: 15px;
  background-color: transparent;
  font-size: 14px;
  width: 20px;
  height: 20px;
  z-index: 1;
  color: var(--text-3-color);
  border: none;
}

._header ._navbar ._nav_right ._nav_icon_wrap {
  display: flex;
  align-items: center;
  gap: 26px;
}
._header ._navbar ._nav_right ._nav_icon_wrap ._nav_icon_hard {
  font-size: 24px;
  color: var(--text-1-color);
  cursor: pointer;
}
._header ._navbar ._nav_right ._nav_icon_wrap ._nav_icon_beg {
  position: relative;
  font-size: 24px;
  color: var(--text-1-color);
  cursor: pointer;
}
._header ._navbar ._nav_right ._nav_icon_wrap ._nav_icon_beg ._cart-count {
  width: 12px;
  height: 12px;
  background-color: var(--red-color);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 6px;
  right: -4px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
._header ._navbar ._nav_right ._nav_icon_wrap ._nav_icon_beg ._cart-count span {
  color: var(--white-color);
  font-family: Inter;
  font-size: 6px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
._header ._navbar .mobile-nav {
  font-size: 32px;
  display: none;
  cursor: pointer;
  color: var(--text-1-color);
}

#_header.stiky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0px 20px 75px 0px rgba(0, 0, 0, 0.08);
  padding: 0;
  height: auto;
  margin-top: 0;
  animation: sticky-nav 0.7s ease-in-out;
}
@keyframes sticky-nav {
  0% {
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    opacity: 1;
  }
}
/*--------------
    Navbar Ends
---------------*/

/*--------------
   Mobile Navbar Start
---------------*/
._header .navbar-mobile {
  display: none;
}
/*--------------
   Mobile Navbar Ends
---------------*/

/*-----------------------
    Banner
-------------------------*/
#_banner {
  width: 100%;
  overflow-x: hidden;
}

#_banner ._banner_slider_content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 495px;
  margin-left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
#_banner ._banner_slider_content ._banner_slider_title h1 {
  color: var(--text-1-color);
  font-family: Lora;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 424px;
}
#_banner ._banner_slider_content ._banner_slider_title span {
  color: var(--primary-color);
}
#_banner ._banner_slider_content ._banner_slider_description p {
  color: var(--text-2-color);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 155.556% */
}
#_banner ._banner_slider_content ._banner_slider_btn .lavender-btn {
  background: #ababe0;
}
#_banner ._banner_slider_content ._banner_slider_btn .lavender-btn:hover {
  background-color: transparent;
  border: 2px solid #ababe0;
  color: #ababe0;
}
#_banner ._banner_slider_content ._banner_slider_btn .yellow-btn {
  background: var(--orange-color);
}
#_banner ._banner_slider_content ._banner_slider_btn .yellow-btn:hover {
  background-color: transparent;
  border: 2px solid var(--orange-color);
  color: var(--orange-color);
}

#_banner ._banner_slider_bg_img img {
  width: 100%;
}

#_banner ._banner_button_next,
#_banner ._banner_button_prev {
  position: absolute;
  top: 40%;
  left: -85px;
  z-index: 99;
  display: flex;
}
#_banner ._banner_button_next {
  right: -85px;
  left: inherit;
}

/*-----------------------
    Banner End
-------------------------*/
/*-----------------------
 Services Start
-------------------------*/
._best_services ._best_services_box {
  display: flex;
  gap: 16px;
}
._best_services ._best_services_box ._best_services_icon_box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color-100);
  width: 48px;
  height: 48px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
}
._best_services
  ._best_services_box
  ._best_services_icon_box
  ._best_services_icon {
  width: 24px;
  height: 24px;
}
._best_services ._best_services_box ._best_services_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
._best_services ._best_services_box ._best_services_content h6 {
  color: var(--text-1-color);
  font-family: Lora;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px; /* 112.5% */
}
._best_services ._best_services_box ._best_services_content p {
  color: var(--text-2-color);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
  max-width: 262px;
}
/*-----------------------
 Services End
-------------------------*/

/*-----------------------
  Categories Start
-------------------------*/
._categories ._section_title {
  margin-bottom: 40px;
}
._categories ._section_title h2 {
  color: var(--text-1-color);
  font-family: Lora;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  max-width: 382px;
}
._categories ._section_title span {
  color: var(--orange-color);
}
._categories ._categories_card {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 48px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  cursor: pointer;
}
._categories ._categories_card ._categories_card_img img {
  width: 100%;
  transition: var(--transition-1);
  -webkit-transition: var(--transition-1);
  -moz-transition: var(--transition-1);
  -ms-transition: var(--transition-1);
  -o-transition: var(--transition-1);
}
._categories ._categories_card:hover ._categories_card_img img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
._categories ._categories_shap ._categories_shap_1 {
  position: absolute;
  top: 30%;
  left: 0;
  width: 64px;
  height: 103px;
}
._categories ._categories_shap ._categories_shap_2 {
  position: absolute;
  top: -50px;
  right: 0;
  width: 50px;
  height: 73px;
}
._categories ._categories_shap ._categories_shap_3 {
  position: absolute;
  bottom: -75px;
  right: 0;
  width: 50px;
  height: 73px;
}
/*-----------------------
  Categories End
-------------------------*/
/*-----------------------
  Discount Start
-------------------------*/
._discount_banner ._discount_banner_content {
  background-image: url("../images/discount/discount-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 63px 0px;
  border-radius: 20px;
}
._discount_banner ._discount_banner_content h2 {
  color: var(--text-1-color);
  text-align: center;
  font-family: Lora;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 150% */
  max-width: 357px;
}
._discount_banner ._discount_banner_content p {
  color: var(--text-4-color);
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
  max-width: 523px;
}
._discount_banner ._discount_banner_content ._discount_banner_btn {
  margin-top: 32px;
}
/*-----------------------
  Discount End
-------------------------*/

/*-----------------------
  Product Start
-------------------------*/
._product ._section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
._product ._section_title h2 {
  color: var(--text-1-color);
  text-align: center;
  font-family: Lora;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
._product ._section_title h2 span {
  color: var(--orange-color);
}
._product ._section_title p {
  color: var(--text-2-color);
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
  width: 485px;
}

._product ._product_cart_wrap {
  position: relative;
  width: 100%;
  border-radius: 8px;
  background: var(--white-color);
  display: flex;
  flex-direction: column;
  padding: 12px 12px 33px 20px;
}
._product ._product_cart_wrap::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  opacity: 0.08;
  background: var(--text-1-color);
  filter: blur(30px);
  width: 266px;
  height: 337.043px;
  top: 0;
  left: 0;
  z-index: -1;
}
._product ._product_cart_wrap ._product_cart_icon_wrap {
  display: flex;
  justify-content: end;
}
._product ._product_cart_wrap ._product_cart_icon_wrap ._product_cart_icon {
  font-size: 28px;
}
._product ._product_cart_wrap ._product_cart_icon_wrap .active {
  color: var(--red-color);
}
._product ._product_cart_wrap ._product_img_action_wrap ._product-img {
  display: flex;
  justify-content: center;
}
._product ._product_cart_wrap ._product_img_action_wrap ._product-img img {
  width: 235px;
  height: 122px;
  transition: var(--transition-1);
  -webkit-transition: var(--transition-1);
  -moz-transition: var(--transition-1);
  -ms-transition: var(--transition-1);
  -o-transition: var(--transition-1);
}
._product
  ._product_cart_wrap:hover
  ._product_img_action_wrap
  ._product-img
  img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
._product ._product_cart_wrap ._product_content_wrap {
  margin-top: 35px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
._product ._product_cart_wrap ._product_content_wrap .product-category h2 {
  color: var(--text-1-color);
  text-align: center;
  font-family: Lora;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
._product ._product_cart_wrap ._product_content_wrap .product-rate-cover {
  display: flex;
  align-items: center;
  gap: 4px;
}
._product
  ._product_cart_wrap
  ._product_content_wrap
  .product-rate-cover
  .product-rating {
  color: var(--yellow-color);
}
._product ._product_cart_wrap ._product_content_wrap .product-rate-cover span {
  color: var(--text-2-color);
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
._product ._product_cart_wrap hr {
  margin: 14px 0px;
}
._product ._product_cart_wrap ._product_card_bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
}
._product ._product_cart_wrap ._product_card_bottom ._product_price h4 {
  color: var(--orange-color);
  text-align: center;
  font-family: Lora;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
._product ._product_cart_wrap ._product_card_bottom ._product_price span {
  color: var(--text-2-color);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
._product ._product_cart_wrap ._product_card_bottom ._add_cart {
  display: flex;
  padding: 8px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: var(--primary-color);
}
._product ._product_cart_wrap ._product_card_bottom ._add_cart ._add_cart_icon {
  height: 24px;
  width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-color);
}
._product ._product_btn {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}
._product ._product_shaip ._product_shaip_image_1 {
  position: absolute;
  top: -70px;
  left: 0;
}
._product ._product_shaip ._product_shaip_image_2 {
  position: absolute;
  top: 25%;
  right: 0;
}
._product ._product_shaip ._product_shaip_image_3 {
  position: absolute;
  bottom: 25%;
  left: 0;
}
/*-----------------------
  Product End
-------------------------*/

/*-----------------------
  Testimonial Start
-------------------------*/
._testimonial ._section_title {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}
._testimonial ._section_title h2 {
  color: var(--text-1-color);
  font-family: Lora;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
._testimonial ._section_title span {
  color: var(--orange-color);
}
._testimonial ._section_title p {
  color: var(--text-2-color);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
  width: 461px;
}
._testimonial ._testimonial_card {
  background-color: var(--yellow-color-2);
  text-align: center;
  padding: 68px 16px 56px;
  position: relative;
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
._testimonial ._testimonial_card-2 {
  background-color: var(--pink-color);
  padding: 66px 16px 26px;
}
._testimonial ._testimonial_card-3 {
  background-color: var(--lavender-color);
  padding: 66px 16px 26px;
}
._testimonial ._testimonial_card_header {
  position: absolute;
  display: flex;
  justify-content: center;
  left: 0;
  right: 0;
  top: -48px;
}
._testimonial ._testimonial_title h2 {
  color: var(--text-1-color);
  text-align: center;
  font-family: Lora;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
._testimonial ._product_review {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 16px;
}
._testimonial ._product_review li i {
  color: var(--yellow-color);
}
._testimonial ._product_review li ._star_hidden {
  color: var(--silvar-color);
}
._testimonial ._testimonial_description {
  color: var(--text-2-color);
  text-align: center;
  font-family: Lora;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px; /* 150% */
}
._testimonial ._testimonial_arrow {
  position: absolute;
  top: 20%;
  right: 8%;
  display: flex;
  align-items: center;
  gap: 12px;
}
._testimonial ._testimonial_arrow ._testimonial_arrow_icon {
  color: var(--text-2-color);
  font-size: 24px;
}
._testimonial ._testimonial_arrow ._active {
  color: var(--primary-color);
}
._testimonial .slider__pagination {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
._testimonial .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border: 1px solid var(--orange-color);
  background-color: transparent;
  opacity: 2;
}
._testimonial .swiper-pagination-bullet-active {
  width: 12px;
  height: 12px;
  background-color: var(--orange-color);
  transition: var(--transition-1);
  -webkit-transition: var(--transition-1);
  -moz-transition: var(--transition-1);
  -ms-transition: var(--transition-1);
  -o-transition: var(--transition-1);
}
._testimonial ._testimonial_shaip {
  position: absolute;
  top: 50%;
  right: 0;
}
/*-----------------------
  Testimonial End
-------------------------*/

/*-----------------------
  Blog Start
-------------------------*/
._blog ._section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}
._blog ._section_title h2 {
  color: var(--text-1-color);
  text-align: center;
  font-family: Lora;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
._blog ._section_title span {
  color: var(--orange-color);
}
._blog ._section_title p {
  color: var(--text-2-color);
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
  width: 461px;
}
._blog ._blog_item {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--silver-color-100);
  padding: 16px 16px 32px;
}
._blog ._blog_item ._blog_thumb a {
  overflow: hidden;
  display: block;
}
._blog ._blog_item ._blog_thumb ._blog_thumb_image {
  width: 100%;
  transition: var(--transition-1);
  -webkit-transition: var(--transition-1);
  -moz-transition: var(--transition-1);
  -ms-transition: var(--transition-1);
  -o-transition: var(--transition-1);
}
._blog ._blog_item:hover ._blog_thumb ._blog_thumb_image {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
._blog ._blog_item ._blog_thumb ._blog_meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
._blog ._blog_item ._blog_thumb ._blog_meta li {
  display: flex;
  align-items: center;
  gap: 2px;
}
._blog ._blog_item ._blog_thumb ._blog_meta ._blog_meta_admin {
  color: var(--primary-color);
}
._blog ._blog_item ._blog_thumb ._blog_meta ._blog_meta_admin ._blog_meta_icon {
  font-size: 16px;
}
._blog ._blog_item ._blog_thumb ._blog_meta ._blog_meta_admin span {
  color: var(--primary-color);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 192.857% */
}
._blog ._blog_item ._blog_thumb ._blog_meta ._blog_meta_calender {
  color: var(--orange-color);
}
._blog
  ._blog_item
  ._blog_thumb
  ._blog_meta
  ._blog_meta_calender
  ._blog_meta_icon {
  font-size: 16px;
}
._blog ._blog_item ._blog_thumb ._blog_meta ._blog_meta_calender span {
  color: var(--orange-color);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 192.857% */
}
._blog ._blog_item ._blog_content h3 a {
  color: var(--text-1-color);
  text-align: center;
  font-family: Lora;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-top: 8px;
}
._blog ._blog_item ._blog_content p {
  color: var(--text-2-color);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
  margin-top: 12px;
  width: 342px;
}
._blog ._blog_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
}
._blog ._blog_shaip ._blog_shaip_1 {
  position: absolute;
  top: 0;
  left: 0;
}
._blog ._blog_shaip ._blog_shaip_2 {
  position: absolute;
  top: 65%;
  right: 0;
}
/*-----------------------
  Blog End
-------------------------*/

/*-----------------------
  Footer Start
-------------------------*/

._footer {
  margin-top: 107px;
  background-color: var(--yellow-color-2);
  padding: 80px 0px 53px;
}

._footer ._footer_contant ._footer_logo {
  width: 104px;
  height: 40px;
}
._footer ._footer_contant p {
  color: var(--text-2-color);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 150% */
  width: 342px;
  margin-top: 24px;
}
._footer ._footer_contant ._footer_social ul {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}
._footer ._footer_contant ._footer_social ul li ._footer_social_icon {
  font-size: 24px;
  color: var(--text-1-color);
  transition: var(--transition-1);
  -webkit-transition: var(--transition-1);
  -moz-transition: var(--transition-1);
  -ms-transition: var(--transition-1);
  -o-transition: var(--transition-1);
}
._footer ._footer_contant ._footer_social ul li ._footer_social_icon:hover {
  color: var(--primary-color);
}
._footer ._sub_title {
  margin-left: 30px;
}
._footer ._sub_title ._footer_title h4 {
  color: var(--text-1-color);
  font-family: Lato;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
._footer ._sub_title ._footer_contant ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
._footer ._sub_title ._footer_contant ul li a {
  color: var(--text-2-color);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  transition: var(--transition-1);
  -webkit-transition: var(--transition-1);
  -moz-transition: var(--transition-1);
  -ms-transition: var(--transition-1);
  -o-transition: var(--transition-1);
}
._footer ._sub_title ._footer_contant ul li a:hover {
  color: var(--text-1-color);
  font-weight: 500;
}
._footer ._contact_infor ._footer_title h4 {
  color: var(--text-1-color);
  font-family: Lato;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 16px;
}
._footer ._contact_infor {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
._footer ._contact_infor li {
  display: flex;
  gap: 8px;
}
._footer ._contact_infor li ._contact_infor_icon {
  font-size: 24px;
  color: var(--text-2-color);
}
._footer ._contact_infor li span {
  color: var(--text-2-color);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px; /* 168.75% */
  width: 298px;
  margin-top: 4px;
}
/*-----------------------
  Footer End
-------------------------*/
/*-----------------------
  Back to top Button Start
-------------------------*/
#_back_to_top {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: var(--transition-1);
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  -webkit-transition: var(--transition-1);
  -moz-transition: var(--transition-1);
  -ms-transition: var(--transition-1);
  -o-transition: var(--transition-1);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
#_back_to_top ._back_to_top_icon {
  font-size: 32px;
  color: var(--white-color);
}

#_back_to_top:hover {
  cursor: pointer;
  background-color: var(--orange-color);
}
#_back_to_top:active {
  background-color: var(--yellow-color-2);
}
#_back_to_top.show {
  opacity: 1;
  visibility: visible;
}
/*-----------------------
  Back to top Button Start
-------------------------*/
