/*
Template Name: Kiddino
Template URL: https://html.vecurosoft.com/kiddino
Description: Kiddino - Children School & Kindergarten HTML Template
Author: Vecuro
Author URI: https://themeforest.net/user/vecuro_themes
Version: 1.0.0
*/
/*=================================
    CSS Index Here
==================================*/
/*
01. Theme Base
    1.1. Mixin
    1.2. Function
    1.3. Variable
    1.4. Typography
    1.5. Extend
    1.7. Wordpress Default
02. Reset
    2.1. Container
    2.2. Grid
    2.3. Input
    2.4. Slick Slider
    2.5. Mobile Menu
03. Utilities
    3.1. Preloader
    3.2. Buttons
    3.3. Titles
    3.4. Common
    3.6. Font
    3.7. Background
    3.8. Text Color
    3.9. Overlay
    3.10. Animation
04. Template Style
    4.1. Widget
    4.2. Header
    4.3. Footer
    4.4. Breadcumb
    4.5. Pagination
    4.6. Blog
    4.7. Comments
    4.8. Hero Area
    4.9. Error    
    4.10. About
    4.11. Simple Sections
    4.12. Popup Side Menu
    4.13. Popup Side Menu
    4.14. Serive Area
    4.15. Category
    4.16. Forms
    4.17. Classes
    4.18. Accordion
    4.19. Testimonial
    4.20. Package
    4.21. Call To Active
    4.22. Schedule Area
    4.23. Gallery
    4.24. Event Area
    4.25. Feature
    4.26. Team
    4.27. Wocommerce
    4.28. Products
    4.29. Cart
    4.30. Checkout
    4.31. Wishlist
05. Spacing

*/
/*=================================
    CSS Index End
==================================*/
/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --body-bg: #ffffff;
  --theme-color: #E8063C;
  --theme-color2: #FFD600;
  --title-color: #000000;
  --body-color: #444444;
  --vs-secondary-color: #4169E1;
  --smoke-color: #F0F6FA;
  --light-color: #f8f9fa;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #E0E0E0;
  --title-font: "Fredoka", sans-serif;
  --body-font: "Jost", sans-serif;
  --icon-font: "Font Awesome 5 Pro";
  --main-container: 1290px;
  --container-gutters: 30px;
  --section-space: 120px;
  --section-space-mobile: 80px;
  --section-title-space: 60px;
  --ripple-ani-duration: 5s;
}

.calendar-container {
  background-color: var(--smoke-color);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin: 0 auto;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-month {
  font-size: 20px;
  font-weight: bold;
}

.calendar-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  color: var(--theme-color);
  cursor: pointer;
}

.calendar-btn:hover {
  color: var(--vs-secondary-color);
}

.calendar-days,
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr); /* 7 columns for the days of the week */
  gap: 5px; /* Ensures consistent spacing */
}

.calendar-days div {
  font-weight: bold;
  color: var(--theme-color);
  text-align: center;
}

.calendar-day {
  padding: 8px; /* Adjusted padding for better fit */
  font-size: 14px; /* Ensures numbers are readable and fit */
  text-align: center;
  background-color: var(--input-bg, #ffffff);
  border: 1px solid var(--border-color, #ddd);
  border-radius: 5px;
  cursor: pointer;
  display: flex; /* Added flexbox for centering */
  justify-content: center;
  align-items: center;
  height: 50px; /* Ensures all cells have equal height */
  width: 100%; /* Ensures full width within grid cells */
  box-sizing: border-box; /* Includes border in width/height calculations */
}

.calendar-day:hover {
  background-color: var(--vs-secondary-color, #f0f0f0);
}

.calendar-grid div {
  height: 50px; /* Consistent height for all cells */
  width: 100%; /* Full width for each grid cell */
  display: flex; /* Flexbox for centering content */
  justify-content: center;
  align-items: center;
  box-sizing: border-box; /* Prevent overflow */
}
/* Style for the active day */
.active-day {
  background-color: var(--theme-color); /* Highlight color */
  color: #fff; /* Text color for active day */
  font-weight: bold;
}

/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  border: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  overflow: hidden;
  position: relative;
  font-family: var(--title-font);
  font-size: 16px;
  font-weight: 600;
  padding: 19px 40px 20px 40px;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-transform: capitalize;
  border-radius: 9999px;
  line-height: 1;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 2;
  /* Small devices */
}
@media (max-width: 767px) {
  .vs-btn {
    padding: 16px 30px;
  }
}
.vs-btn:after, .vs-btn:before {
  content: "";
  position: absolute;
  top: var(--border-size, 3px);
  bottom: var(--border-size, 3px);
  left: var(--border-size, 3px);
  width: calc(50% - var(--border-size, 3px));
  background-color: var(--vs-secondary-color);
  z-index: -1;
  -webkit-transform: scaleY(0.4);
          transform: scaleY(0.4);
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border-radius: 9999px 0 0 9999px;
}
.vs-btn:after {
  left: auto;
  right: var(--border-size, 3px);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
  border-radius: 0 9999px 9999px 0;
}
.vs-btn.style2 {
  background-color: var(--theme-color2);
  color: var(--title-color);
}
.vs-btn.style2:hover {
  background-color: var(--white-color);
  color: var(--white-color);
}
.vs-btn.style3 {
  background-color: var(--white-color);
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  --border-size: 1px;
}
.vs-btn:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}
.vs-btn:hover:after, .vs-btn:hover:before {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}

.icon-btn {
  padding: 0;
  font-size: var(--icon-font-size, 20px);
  width: var(--icon-size, 56px);
  height: var(--icon-size, 56px);
  line-height: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: none;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  position: relative;
  z-index: 1;
}
.icon-btn:before {
  content: "";
  position: absolute;
  left: var(--border-size, 2px);
  top: var(--border-size, 2px);
  right: var(--border-size, 2px);
  bottom: var(--border-size, 2px);
  background-color: var(--white-color);
  border-radius: inherit;
  z-index: -1;
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
}
.icon-btn:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
}
.icon-btn:hover:before {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1.001);
          transform: scale(1.001);
}
.icon-btn.style2 {
  --icon-size: 120px;
  background-color: var(--smoke-color);
}

.simple-icon {
  padding: 0;
  border: none;
  background-color: transparent;
  color: var(--title-color);
  line-height: 1;
  font-size: 25px;
  vertical-align: middle;
}
.simple-icon.style2 {
  color: var(--white-color);
}
.simple-icon:hover {
  color: var(--theme-color);
}

.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.play-btn > i {
  display: inline-block;
  width: var(--icon-size, 85px);
  height: var(--icon-size, 85px);
  line-height: var(--icon-size, 85px);
  text-align: center;
  background-color: var(--white-color);
  color: var(--theme-color);
  font-size: var(--icon-font-size, 1.5em);
  border-radius: 50%;
  z-index: 1;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.play-btn:after, .play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  z-index: -1;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.play-btn:after {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}
.play-btn:hover:after, .play-btn:hover::before,
.play-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.link-btn {
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  text-transform: capitalize;
}
.link-btn i {
  margin-left: 7px;
  font-size: 0.9rem;
}
.link-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.link-btn:hover {
  color: var(--theme-color);
}
.link-btn:hover::before {
  width: 100%;
}

.scroll-btn {
  position: fixed;
  bottom: 300px;
  right: 30px;
  z-index: 94;
  opacity: 0;
  visibility: hidden;
  display: inline-block;
  border-radius: 50%;
  /* Small devices */
}
.scroll-btn i {
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--white-color);
  text-align: center;
  font-size: 16px;
  width: var(--btn-size, 50px);
  height: var(--btn-size, 50px);
  line-height: var(--btn-size, 50px);
  z-index: 2;
  border-radius: inherit;
  position: relative;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}
.scroll-btn:before {
  content: "";
  position: absolute;
  left: var(--extra-shape, -6px);
  top: var(--extra-shape, -6px);
  right: var(--extra-shape, -6px);
  bottom: var(--extra-shape, -6px);
  background-color: var(--body-bg);
  border-radius: inherit;
  z-index: 1;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--vs-secondary-color);
  color: var(--white-color);
}
.scroll-btn.show {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .scroll-btn {
    --btn-size: 40px;
    --extra-shape: -4px;
    right: 15px;
    bottom: 50px;
  }
  .scroll-btn.show {
    bottom: 15px;
  }
}

.scrollToTop {
  position: fixed;
  right: 60px;
  bottom: 500px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  z-index: 96;
}
.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}

.btn-style2 {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  border-radius: 50px;
  background: var(--theme-color);
  padding: 0 42px;
}

/* Small devices */
@media (max-width: 767px) {
  .play-btn {
    --icon-size: 60px;
  }
  .scrollToTop {
    right: 20px;
  }
  .scrollToTop.show {
    bottom: 20px;
  }
}
/*------------------- 3.3. Titles -------------------*/
.sec-title2,
.sec-title {
  font-size: 60px;
  margin-top: -0.25em;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.sec-title2 {
  font-size: 55px;
}

.sec-subtitle {
  display: block;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--theme-color);
  font-weight: 700;
  font-family: var(--title-font);
  line-height: 1;
  margin-top: -0.1em;
  margin-bottom: 25px;
}

.sec-subtitle2 {
  font-family: var(--title-font);
  font-size: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--title-color);
  position: relative;
  margin-top: -0.25em;
  margin-bottom: 0;
  padding-bottom: 10px;
  display: block;
}

.title-divider2,
.title-divider1 {
  height: 3px;
  width: 24px;
  background-color: var(--theme-color2);
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 17px;
}

.title-divider2 {
  height: 4px;
  width: 42px;
}

.sec-text {
  font-size: 18px;
}

.sec-bubble {
  width: 36px;
  height: 36px;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}
.sec-bubble .bubble {
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--theme-color2);
  border-radius: 50%;
}
.sec-bubble .bubble:nth-child(1) {
  top: 0;
  left: 50%;
  z-index: 3;
  margin-left: -10px;
}
.sec-bubble .bubble:nth-child(2) {
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: var(--theme-color);
}
.sec-bubble .bubble:nth-child(3) {
  left: 0;
  bottom: 0;
  z-index: 2;
  background-color: var(--vs-secondary-color);
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 22px);
}

.sec-btns {
  margin-bottom: calc(var(--section-title-space) - 9px);
}
.sec-btns .icon-btn {
  margin-right: 5px;
}
.sec-btns .icon-btn:last-child {
  margin-right: 0;
}

.sec-bottom-btns {
  margin-top: 40px;
  margin-bottom: 30px;
  text-align: center;
}

.vs-carousel + .sec-bottom-btns {
  margin-top: 10px;
}

.title-area-four {
  position: relative;
  margin-bottom: 46px;
}
.title-area-four h2 {
  color: #000;
  font-size: 60px;
  font-weight: 700;
  line-height: 65px;
  text-transform: capitalize;
  margin-bottom: 18px;
}
.title-area-four .sub-title {
  color: #444;
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  display: inline-block;
}
.title-area-four img {
  margin-bottom: 21px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .title-area-four img {
    margin-bottom: 0;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .sec-title2,
  .sec-title {
    font-size: 48px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .sec-title2,
  .sec-title {
    font-size: 42px;
  }
  .sec-subtitle {
    letter-spacing: 0.1em;
    margin-bottom: 20px;
  }
  .sec-text {
    font-size: 16px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .sec-title2,
  .sec-title {
    font-size: 36px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .sec-btns {
    margin-bottom: 30px;
  }
}
/*------------------- 3.4. Common -------------------*/
.svg-hidden {
  position: absolute;
  width: 0;
  height: 0;
}

.vs-wave-shape {
  /* Small devices */
}
@media (min-width: 1399px) {
  .vs-wave-shape {
    margin-bottom: -40px;
  }
}
@media (max-width: 767px) {
  .vs-wave-shape {
    overflow: hidden;
  }
  .vs-wave-shape svg {
    height: 150px;
  }
}
.vs-wave-shape .svg {
  width: 100%;
}
.vs-wave-shape .wave-path {
  fill: var(--vs-secondary-color);
}
.vs-wave-shape.style2 .wave-path {
  fill: var(--white-color);
}
.vs-wave-shape.style3 .wave-path {
  fill: var(--smoke-color);
}

.shape-mockup-wrap {
  position: relative;
}
.shape-mockup-wrap .container-fluid,
.shape-mockup-wrap .container {
  z-index: 1;
  position: relative;
}

.shape-mockup {
  position: absolute;
  z-index: 1;
}

.image-scale-hover {
  overflow: hidden;
}
.image-scale-hover img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.001);
          transform: scale(1.001);
}
.image-scale-hover:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.fa, .fa:before,
.far,
.far:before,
.fas,
.fas:before,
.fal,
.fal:before {
  font-family: var(--icon-font) !important;
}

.vertical-line {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.z-index-step1 {
  position: relative;
  z-index: 4 !important;
}

.z-index-common {
  position: relative;
  z-index: 3;
}

.z-index-n1 {
  z-index: -1;
}

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.badge {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 0.35em 0.55em;
  border-radius: 50%;
}

.mega-hover {
  position: relative;
  overflow: hidden;
}
.mega-hover img {
  -webkit-transition: all 2s ease;
  transition: all 2s ease;
  -webkit-transform: scale(1.001);
          transform: scale(1.001);
}
.mega-hover:after, .mega-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
.mega-hover:before {
  top: -10%;
  right: 51%;
  bottom: -10%;
  left: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.mega-hover:after {
  top: 50%;
  right: -10%;
  bottom: 50%;
  left: -10%;
  background: rgba(255, 255, 255, 0.6);
}
.mega-hover:hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}
.mega-hover:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: all 900ms linear;
  transition: all 900ms linear;
}
.mega-hover:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (min-width: 1921px) {
  .d-hd-none {
    display: none !important;
  }
}
@media (min-width: 1700px) {
  .d-xxxl-block {
    display: block !important;
  }
}
/*------------------- 3.6. Font -------------------*/
.font-icon {
  font-family: var(--icon-font);
}

.font-title {
  font-family: var(--title-font);
}

.font-body {
  font-family: var(--body-font);
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-md {
  font-size: 18px;
}

.fs-xs {
  font-size: 14px;
}

.fs-20 {
  font-size: 20px;
}

/* Small devices */
@media (max-width: 767px) {
  .fs-20,
  .fs-md {
    font-size: 16px;
  }
}
/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

.bg-vs-secondary {
  background-color: var(--vs-secondary-color) !important;
}

.bg-smoke {
  background-color: var(--smoke-color) !important;
}

.bg-vs-light {
  background-color: var(--light-color) !important;
}

.bg-white {
  background-color: var(--white-color) !important;
}

.bg-black {
  background-color: var(--black-color) !important;
}

.bg-title {
  background-color: var(--title-color) !important;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-fluid {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg-auto {
  background-size: auto auto;
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

.text-title {
  color: var(--title-color) !important;
}

.text-body {
  color: var(--body-color) !important;
}

.text-white {
  color: var(--white-color) !important;
}

.text-yellow {
  color: var(--yellow-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-error {
  color: var(--error-color) !important;
}

.text-inherit {
  color: inherit;
}
.text-inherit:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}

/*------------------- 3.9. Overlay -------------------*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

[data-overlay] {
  position: relative;
}
[data-overlay] [class^=col-],
[data-overlay] [class*=col-] {
  z-index: 1;
}

[data-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

[data-overlay=theme]:before {
  background-color: var(--theme-color);
}

[data-overlay=title]:before {
  background-color: var(--title-color);
}

[data-overlay=white]:before {
  background-color: var(--white-color);
}

[data-overlay=black]:before {
  background-color: var(--black-color);
}

[data-opacity="1"]:before {
  opacity: 0.1;
}

[data-opacity="2"]:before {
  opacity: 0.2;
}

[data-opacity="3"]:before {
  opacity: 0.3;
}

[data-opacity="4"]:before {
  opacity: 0.4;
}

[data-opacity="5"]:before {
  opacity: 0.5;
}

[data-opacity="6"]:before {
  opacity: 0.6;
}

[data-opacity="7"]:before {
  opacity: 0.7;
}

[data-opacity="8"]:before {
  opacity: 0.8;
}

[data-opacity="9"]:before {
  opacity: 0.9;
}

[data-opacity="10"]:before {
  opacity: 1;
}

/*------------------- 3.10. Animation -------------------*/
.transform-banner img {
  -webkit-animation: border-transform 20s linear infinite alternate forwards;
          animation: border-transform 20s linear infinite alternate forwards;
  border-radius: 100%;
}

.jump-reverse-img,
.jump-img,
.jump-reverse,
.jump {
  -webkit-animation: jumpping var(--duration, 6s) infinite linear;
          animation: jumpping var(--duration, 6s) infinite linear;
}

.jump-reverse-img,
.jump-img {
  --duration: 5s;
}

.jump-reverse-img,
.jump-reverse {
  --jump-y: -20px;
}

.rotate-reverse-img,
.rotate-img,
.rotate-reverse,
.rotate {
  -webkit-animation: rotate var(--duration, 12s) infinite linear;
          animation: rotate var(--duration, 12s) infinite linear;
}

.rotate-reverse-img,
.rotate-img {
  --duration: 40s;
}

.rotate-reverse {
  --rotate-angle: -360deg;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.wow-animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.fadein {
  --animation-name: fadein-custom;
}

.slideinup {
  --animation-name: slideinup;
}

.slideindown {
  --animation-name: slideindown;
}

.slideinleft {
  --animation-name: slideinleft;
}

.slideinright {
  --animation-name: slideinright;
}

.animated {
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
  -webkit-animation-name: var(--animation-name);
          animation-name: var(--animation-name);
}

.ripple-animation, .play-btn:after, .play-btn:before {
  -webkit-animation-duration: var(--ripple-ani-duration);
          animation-duration: var(--ripple-ani-duration);
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-name: ripple;
          animation-name: ripple;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes ripple {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0;
  }
}
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(var(--rotate-angle, 360deg));
            transform: rotate(var(--rotate-angle, 360deg));
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(var(--rotate-angle, 360deg));
            transform: rotate(var(--rotate-angle, 360deg));
  }
}
@-webkit-keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    -webkit-transform: translateY(70px);
            transform: translateY(70px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70px);
            transform: translateY(-70px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
            transform: translateX(-70px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-70px);
            transform: translateX(-70px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70px);
            transform: translateX(70px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    -webkit-transform: translateX(70px);
            transform: translateX(70px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes fadein-custom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein-custom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes jumpping {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
            transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
  }
}
@keyframes jumpping {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
            transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
  }
}
@-webkit-keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
@keyframes border-transform {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.widget_nav_menu ul,
.widget_pages ul,
.widget_archive ul,
.widget_categories ul {
  list-style: none;
  margin: 0 0 -10px 0;
  padding: 0;
}
.widget_nav_menu a,
.widget_pages a,
.widget_archive a,
.widget_categories a {
  position: relative;
  display: block;
  padding: 20px 20px 20px 55px;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--title-color);
  background-color: var(--white-color);
  font-family: var(--title-font);
  border-radius: 9999px;
}
.widget_nav_menu a:before,
.widget_pages a:before,
.widget_archive a:before,
.widget_categories a:before {
  content: "\f178";
  font-family: var(--icon-font);
  font-size: 12px;
  color: var(--white-color);
  font-weight: 400;
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  background-color: var(--vs-secondary-color);
  border-radius: 50%;
}
.widget_nav_menu a:hover,
.widget_pages a:hover,
.widget_archive a:hover,
.widget_categories a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.widget_nav_menu li,
.widget_pages li,
.widget_archive li,
.widget_categories li {
  display: block;
  position: relative;
}
.widget_nav_menu li > span,
.widget_pages li > span,
.widget_archive li > span,
.widget_categories li > span {
  width: 40px;
  height: 40px;
  line-height: 35.5px;
  font-size: 18px;
  font-weight: 500;
  color: var(--title-color);
  background-color: transparent;
  right: 10px;
  top: 10px;
  z-index: 1;
  display: inline-block;
  text-align: center;
  position: absolute;
  border: 2px solid var(--theme-color);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border-radius: 0;
}
.widget_nav_menu li:hover > span,
.widget_pages li:hover > span,
.widget_archive li:hover > span,
.widget_categories li:hover > span {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.widget_nav_menu .children,
.widget_pages .children,
.widget_archive .children,
.widget_categories .children {
  margin-left: 10px;
}

.widget_nav_menu .sub-menu {
  margin-left: 10px;
}

.wp-block-archives {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.wp-block-archives a:not(:hover) {
  color: inherit;
}

.vs-blog ul.wp-block-archives li {
  margin: 5px 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .widget_nav_menu a,
  .widget_pages a,
  .widget_archive a,
  .widget_categories a {
    font-size: 14px;
  }
  .widget_nav_menu li > span,
  .widget_pages li > span,
  .widget_archive li > span,
  .widget_categories li > span {
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    line-height: 47px;
    font-size: 14px;
  }
}
.widget {
  padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
  background-color: var(--smoke-color);
  position: relative;
  margin-bottom: 40px;
  border-radius: 30px;
}
.widget select,
.widget input {
  height: 60px;
  border: none;
  background-color: var(--input-bg, #ffffff);
}

.widget_title {
  position: relative;
  font-weight: 600;
  font-size: 30px;
  line-height: 1em;
  font-family: var(--title-font);
  margin: -0.2em 0 30px 0;
  padding: 0 0 13px 0;
}
.widget_title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 30px;
  background-color: var(--theme-color2);
  border-radius: 9999px;
}

.widget .search-form {
  position: relative;
}
.widget .search-form input {
  padding-right: 70px;
}
.widget .search-form button {
  border: none;
  background-color: transparent;
  padding: 4px 0 4px 15px;
  line-height: 1;
  color: var(--theme-color);
  border-left: 1px solid var(--border-color);
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 18px;
}
.widget .search-form button:hover {
  color: var(--vs-secondary-color);
}

.wp-block-tag-cloud a,
.tagcloud a {
  position: relative;
  display: inline-block;
  border: none;
  z-index: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 22px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--title-color);
  background-color: var(--smoke-color);
  font-family: var(--title-font);
  border-radius: 9999px;
  text-transform: none;
}
.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--white-color) !important;
}
.wp-block-tag-cloud a:hover:before,
.tagcloud a:hover:before {
  background-color: var(--white-color);
}

.tagcloud {
  margin-right: -5px;
  margin-bottom: -10px;
}
.tagcloud a {
  background-color: var(--white-color);
}

.recent-post {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 18px;
}
.recent-post:last-child {
  margin-bottom: 0;
}
.recent-post .media-img {
  margin-right: 20px;
  width: 100px;
  overflow: hidden;
  border-radius: 20px;
}
.recent-post .media-img img {
  width: 100%;
  -webkit-transform: scale(1.001);
          transform: scale(1.001);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.recent-post .post-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 -0.1em 0;
}
.recent-post .recent-post-meta {
  margin: -0.2em 0 2px 0;
}
.recent-post .recent-post-meta a {
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 500;
  color: var(--theme-color);
  font-family: var(--title-font);
}
.recent-post .recent-post-meta a i {
  margin-right: 5px;
}
.recent-post .recent-post-meta a:hover {
  color: var(--vs-secondary-color);
}
.recent-post:hover .media-img img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.recent-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.recent-event:last-child {
  margin-bottom: 0;
}
.recent-event .event-title {
  font-size: 22px;
  margin: 0;
}
.recent-event .event-date {
  background-color: var(--vs-secondary-color);
  color: var(--white-color);
  line-height: 1;
  width: 80px;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  text-transform: uppercase;
  border-radius: 30px;
  letter-spacing: 0.02em;
  margin-right: 20px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  font-family: var(--title-font);
  font-size: 30px;
  font-weight: 600;
}
.recent-event .event-date .month {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}
.recent-event:hover .event-date {
  background-color: var(--theme-color);
}

.vs-video-widget .video-thumb {
  overflow: hidden;
  margin-bottom: 15px;
  border-radius: 20px;
}
.vs-video-widget .video-title {
  margin: 0 0 -0.2em 0;
}

.range-slider-area .price-amount {
  display: block;
  color: var(--theme-color);
  font-size: 16px;
  font-weight: 400;
  margin: -0.4em 0 0 0;
}
.range-slider-area .price-amount .title {
  color: var(--title-color);
  font-weight: 600;
  margin-right: 10px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: var(--title-font);
}
.range-slider-area .ui-slider {
  height: 4px;
  position: relative;
  width: 100%;
  background-color: var(--vs-secondary-color);
  border: none;
  margin-top: 20px;
  margin-bottom: 29px;
  cursor: pointer;
  border-radius: 3px;
}
.range-slider-area .ui-slider-range {
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
  display: block;
  background-color: var(--theme-color);
}
.range-slider-area .ui-slider-handle {
  width: 16px;
  height: 16px;
  padding: 0;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  margin-top: -8px;
  z-index: 2;
  background-color: var(--theme-color);
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  border-radius: 50%;
}
.range-slider-area .ui-slider-handle:focus {
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.range-slider-area .ui-slider-handle:last-child {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
.range-slider-area .filter-btn {
  background-color: var(--vs-secondary-color);
  color: var(--white-color);
  border: 1px solid transparent;
  padding: 6px 30px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--title-font);
}
.range-slider-area .filter-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: transparent;
}
.range-slider-area .reset-btn {
  float: right;
  border: none;
  padding: 0;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--title-color);
  font-weight: 700;
  background-color: transparent;
  position: relative;
  top: 8px;
}
.range-slider-area .reset-btn i {
  margin-right: 7px;
}
.range-slider-area .reset-btn:hover {
  color: var(--theme-color);
}

.category-filter ul {
  margin: 0;
  padding: 2px 0 0 0;
  list-style: none;
}
.category-filter li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}
.category-filter li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.category-filter input[type=checkbox] ~ label {
  margin: 0;
  line-height: 1;
  color: var(--body-color);
  text-transform: capitalize;
}
.category-filter input[type=checkbox] ~ label:before {
  top: 0px;
}
.category-filter input[type=checkbox] ~ label:hover {
  color: var(--theme-color);
}
.category-filter input[type=checkbox]:checked ~ label {
  color: var(--theme-color);
}
.category-filter .total {
  color: var(--title-color);
  top: 1px;
  position: relative;
}

.latest-product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.latest-product:last-child {
  margin-bottom: 0;
}
.latest-product .media-img {
  width: 80px;
  background-color: #ffffff;
  border: none;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 10px;
}
.latest-product .media-img img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.001);
          transform: scale(1.001);
}
.latest-product .product-title {
  font-size: 18px;
  font-family: var(--title-font);
  margin-bottom: 8px;
}
.latest-product .product-price {
  font-size: 16px;
  color: var(--vs-secondary-color);
  font-weight: 500;
  margin: 0 0 -0.2em 0;
}
.latest-product:hover .media-img img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.sidebar-gallery:not(.vs-carousel) {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.sidebar-gallery .gallery-thumb {
  overflow: hidden;
  position: relative;
  border-radius: 20px;
}
.sidebar-gallery .gallery-thumb img {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.sidebar-gallery .gallery-thumb:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-color);
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.sidebar-gallery .gallery-thumb .gal-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  width: var(--icon-size, 35px);
  height: var(--icon-size, 35px);
  line-height: calc(var(--icon-size, 35px) + 2px);
  margin: calc(var(--icon-size, 35px) / -2) 0 0 calc(var(--icon-size, 35px) / -2);
  text-align: center;
  font-size: 18px;
  color: var(--white-color);
  background-color: transparent;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}
.sidebar-gallery .gallery-thumb .gal-btn:hover {
  -webkit-transform: scale(1);
          transform: scale(1);
  background-color: var(--white-color);
  color: var(--theme-color);
}
.sidebar-gallery .gallery-thumb:hover:before {
  opacity: 0.8;
  visibility: visible;
}
.sidebar-gallery .gallery-thumb:hover .gal-btn {
  opacity: 1;
  visibility: visible;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.sidebar-gallery .gallery-thumb:hover img {
  -webkit-transform: scale(1.12);
          transform: scale(1.12);
}

.shop-sidebar {
  background-color: var(--smoke-color);
  border-radius: 20px;
  padding: 40px 30px;
}
.shop-sidebar .widget {
  padding: 0 0 0 0;
  margin: 0 0 45px 0;
  border-radius: 0;
  background-color: transparent;
}
.shop-sidebar .widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.shop-sidebar .widget_title {
  font-size: 24px;
}
.shop-sidebar .sidebar-gallery {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }
  .widget_title {
    font-size: 26px;
  }
  .recent-event .event-title {
    font-size: 18px;
  }
  .recent-event .event-date {
    width: 75px;
    height: 80px;
    letter-spacing: 0;
    font-size: 24px;
  }
  .recent-post .media-img {
    margin-right: 15px;
    width: 85px;
  }
  .recent-post .recent-post-meta {
    margin: -0.2em 0 0 0;
  }
  .recent-post .recent-post-meta a {
    font-size: 14px;
  }
  .recent-post .post-title {
    font-size: 18px;
    line-height: 22px;
  }
  .wp-block-tag-cloud a,
  .tagcloud a {
    font-size: 14px;
    padding: 12px 20px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .sidebar-area {
    padding-top: 30px;
  }
  .shop-sidebar {
    padding: 40px 20px;
  }
  .shop-sidebar .sidebar-gallery {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .wp-block-tag-cloud a,
  .tagcloud a {
    padding: 10.5px 18px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .widget_title {
    font-size: 22px;
  }
  .sidebar-area .comment-list .comment-author {
    font-size: 18px;
  }
  .sidebar-area .comment-list .comment-text {
    font-size: 14px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .widget {
    padding: 30px 20px;
  }
}
.footer-widget {
  margin-bottom: 40px;
}
.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
}
.footer-widget .widget_title {
  margin-bottom: 33px;
}
.footer-widget.widget_meta, .footer-widget.widget_pages, .footer-widget.widget_archive, .footer-widget.widget_categories, .footer-widget.widget_nav_menu {
  margin-bottom: 45px;
}
.footer-widget.widget_meta ul, .footer-widget.widget_pages ul, .footer-widget.widget_archive ul, .footer-widget.widget_categories ul, .footer-widget.widget_nav_menu ul {
  padding: 3px 0 0 0;
}
.footer-widget.widget_meta ul ul, .footer-widget.widget_pages ul ul, .footer-widget.widget_archive ul ul, .footer-widget.widget_categories ul ul, .footer-widget.widget_nav_menu ul ul {
  margin-top: 0;
}
.footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: block;
  border: none;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 23px;
  max-width: 100%;
  padding: 0 0 0 20px;
  background-color: transparent;
  position: relative;
}
.footer-widget.widget_meta a:before, .footer-widget.widget_pages a:before, .footer-widget.widget_archive a:before, .footer-widget.widget_categories a:before, .footer-widget.widget_nav_menu a:before {
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--theme-color2);
  border-radius: 2px;
  left: 0;
  top: 51%;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
}
.footer-widget.widget_meta a:hover, .footer-widget.widget_pages a:hover, .footer-widget.widget_archive a:hover, .footer-widget.widget_categories a:hover, .footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--theme-color);
}
.footer-widget.widget_meta li > span, .footer-widget.widget_pages li > span, .footer-widget.widget_archive li > span, .footer-widget.widget_categories li > span, .footer-widget.widget_nav_menu li > span {
  width: auto;
  height: auto;
  position: relative;
  background-color: transparent;
  color: var(--body-color);
  line-height: 1;
}
.footer-widget.widget_meta li:last-child a, .footer-widget.widget_pages li:last-child a, .footer-widget.widget_archive li:last-child a, .footer-widget.widget_categories li:last-child a, .footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}
.footer-widget .footer-menu ul {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}
.footer-widget .footer-menu a {
  font-size: 18px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-social a {
  position: relative;
  display: inline-block;
  border: none;
  background-color: var(--white-color);
  color: var(--black-color);
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-size: 16px;
  margin-right: 7px;
  z-index: 1;
}
.footer-social a::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  bottom: 3px;
  right: 3px;
  background-color: var(--vs-secondary-color);
  border-radius: inherit;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  -webkit-transform: scale(0.4);
          transform: scale(0.4);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.footer-social a:last-child {
  margin-right: 0;
}
.footer-social a.active, .footer-social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: transparent;
}
.footer-social a.active:before, .footer-social a:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.footer-social a.active:hover {
  background-color: var(--vs-secondary-color);
  color: var(--white-color);
}

.map-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px 0;
  max-width: 370px;
}

.footer-text {
  margin: 0 0 8px 0;
  font-size: 18px;
}
.footer-text .time {
  font-weight: 500;
}

.footer-info {
  font-size: 18px;
  margin-bottom: 15px;
}
.footer-info:nth-last-child(2) {
  margin-top: 25px;
}
.footer-info i {
  width: var(--icon-size, 42px);
  height: var(--icon-size, 42px);
  line-height: var(--icon-size, 42px);
  text-align: center;
  border-radius: 50%;
  margin-right: 10px;
  background-color: var(--theme-color2);
  color: var(--black-color);
}
.footer-info a {
  color: inherit;
}
.footer-info a:hover {
  color: var(--theme-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-widget {
    margin-bottom: 60px;
  }
  .footer-widget .footer-menu a {
    font-size: 16px;
  }
  .footer-text {
    margin: 0 0 4px 0;
    font-size: 16px;
  }
  .footer-info {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .footer-info:nth-last-child(2) {
    margin-top: 15px;
  }
  .map-link {
    gap: 15px;
    font-size: 15px;
    line-height: 1.5;
    margin: 0 0 15px 0;
    max-width: 370px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .footer-widget {
    margin-bottom: 50px;
  }
  .footer-widget .widget_title {
    margin-bottom: 25px;
  }
}
/*------------------- 4.2. Header  -------------------*/
.vs-header {
  position: relative;
  z-index: 41;
}

.header-logo {
  max-width: 270px;
  padding: 15px 0;
}

.will-sticky .sticky-active {
  position: fixed;
  top: -100%;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
}
.will-sticky .sticky-active.active {
  top: 0;
}

.main-menu a {
  display: block;
  position: relative;
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
  /* Extra large devices */
}
@media (max-width: 1500px) {
  .main-menu a {
    font-size: 16px;
  }
}
.main-menu a:hover {
  color: var(--theme-color);
}
.main-menu > ul > li {
  margin: 0 18px;
}
.main-menu ul {
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li.menu-item-has-children > a:after {
  content: "\f078";
  position: relative;
  font-family: var(--icon-font);
  margin-left: 5px;
  top: -0.8px;
  font-size: 0.8rem;
}
.main-menu ul li:last-child {
  margin-right: 0;
}
.main-menu ul li:first-child {
  margin-left: 0;
}
.main-menu ul li:hover > ul.sub-menu,
.main-menu ul li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  margin-top: 0;
  z-index: 9;
}
.main-menu ul.sub-menu,
.main-menu ul.mega-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--body-bg);
  visibility: hidden;
  min-width: 190px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  margin-top: 50px;
  opacity: 0;
  z-index: -1;
  border-bottom: 3px solid var(--theme-color);
  -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
          box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
  transition: margin-top 0.4s ease-in-out 0s, visibility 0.4s ease-in-out 0s, opacity 0.4s ease-in-out 0s, z-index 0s;
}
.main-menu ul.sub-menu a,
.main-menu ul.mega-menu a {
  font-size: 16px;
  line-height: 30px;
}
.main-menu ul.sub-menu {
  padding: 18px 20px;
  left: -27px;
}
.main-menu ul.sub-menu:before {
  content: "";
  position: absolute;
  left: 34px;
  top: 30px;
  width: 1px;
  background-color: var(--border-color);
  height: calc(100% - 65px);
}
.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 3px 9px;
}
.main-menu ul.sub-menu li.menu-item-has-children > a:after {
  content: "\f105";
  float: right;
  top: 3px;
}
.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 21px;
}
.main-menu ul.sub-menu li a:before {
  content: "\f111";
  position: absolute;
  top: 2.8em;
  left: 0;
  font-family: var(--icon-font);
  width: 11px;
  height: 11px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  font-size: 0.2em;
  line-height: 11.5px;
  color: var(--theme-color);
  font-weight: 700;
  background-color: var(--body-bg);
  -webkit-box-shadow: inset 0px 2px 4px 0px rgba(232, 6, 60, 0.4);
          box-shadow: inset 0px 2px 4px 0px rgba(232, 6, 60, 0.4);
}
.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}
.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}
.main-menu .mega-menu-wrap {
  position: static;
}
.main-menu .mega-menu-wrap:before {
  display: none;
}
.main-menu ul.mega-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.main-menu ul.mega-menu li {
  display: block;
  width: 100%;
  padding: 0 15px;
}
.main-menu ul.mega-menu li li {
  padding: 4px 0;
}
.main-menu ul.mega-menu li a {
  display: inline-block;
}
.main-menu ul.mega-menu > li > a {
  display: block;
  padding: 0;
  padding-bottom: 5px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  color: var(--title-color);
  border-color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after, .main-menu ul.mega-menu > li > a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 1px;
  background-color: var(--theme-color);
}
.main-menu ul.mega-menu > li > a::after {
  width: calc(100% - 20px);
  left: 20px;
}
.main-menu ul.mega-menu > li > a:hover {
  padding-left: 0;
}
.main-menu .home > a {
  position: relative;
}
.main-menu .home > a:before {
  content: "\f80a";
  font-family: var(--icon-font);
  background-color: var(--theme-color);
  color: var(--white-color);
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 14px;
}

.menu-style1 > ul > li > a {
  padding: 38px 0;
}

.menu-style2 > ul > li {
  margin: 0;
}
.menu-style2 > ul > li > a {
  padding: 14.5px 20px 14.5px 25px;
}
.menu-style2 > ul > li:first-child > a {
  padding-left: 0;
}
.menu-style2 > ul > li:not(:first-child) > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 18px;
  margin-top: -9px;
  width: 1px;
  background-color: #BEBEBE;
}

.menu-style3 > ul > li > a {
  padding: 41px 0;
  color: var(--white-color);
}
.menu-style3 > ul > li > a:hover {
  color: var(--theme-color);
}

.header-links ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.header-links li {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--title-color);
  font-family: var(--body-font);
  margin: 0 35px 0 0;
  line-height: 1;
}
.header-links li:last-child {
  margin-right: 0;
}
.header-links i {
  color: var(--title-color);
  margin: 0 10px 0 0;
  font-size: 20px;
  vertical-align: middle;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.header-links a {
  color: inherit;
}
.header-links a:hover,
.header-links a:hover i {
  color: var(--theme-color);
}
.header-links.style3 i, .header-links.style2 i {
  width: var(--icon-size, 42px);
  height: var(--icon-size, 42px);
  line-height: calc(var(--icon-size, 42px) - 2px);
  font-size: var(--icon-font-size, 18px);
  text-align: center;
  border: 1px solid var(--title-color);
  border-radius: 50%;
}
.header-links.style3 li:hover i, .header-links.style2 li:hover i {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: transparent;
}
.header-links.style-white i,
.header-links.style-white li {
  color: var(--white-color);
  border-color: var(--white-color);
}
.header-links.style3 i {
  border-color: transparent;
  color: var(--title-color);
  background-color: var(--theme-color2);
}

.header-layout1 .header-top {
  background-color: var(--vs-secondary-color);
  padding: 11px 0;
}

@media (min-width: 1399px) {
  .header-layout2 {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
  }
}
.header-layout2 .header-logo {
  margin-right: 75px;
}
.header-layout2 .menu-area {
  padding: 0 35px;
  position: relative;
  z-index: 1;
  background-color: var(--white-color);
  border-radius: 9999px;
}
.header-layout2 .simple-icon:not(.style2) {
  position: relative;
  padding-left: 20px;
}
.header-layout2 .simple-icon:not(.style2):before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  height: 18px;
  margin-top: -9px;
  width: 1px;
  background-color: #BEBEBE;
}
.header-layout2 .vs-menu-toggle {
  margin: 7px 0;
}

.header-layout3 .header-top {
  padding: 10px 0;
}
.header-layout3 .menu-area {
  max-width: 1360px;
  background-color: var(--vs-secondary-color);
  margin: 0 auto -55px auto;
  border-radius: 9999px;
}

.header-layout4 {
  position: relative;
}

.header-top4 {
  background-color: var(--vs-secondary-color);
  padding: 10px 0 53px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .header-top4 {
    display: none;
  }
}

.header-links.v4 ul li {
  margin: 0 20px 0 0;
}
.header-links.v4 ul li i {
  background-color: var(--white-color);
  color: var(--vs-secondary-color);
}
.header-links.v4 ul li a {
  font-family: var(--title-font);
}

.header-links.v5 > ul > li {
  margin-right: 76px;
}
.header-links.v5 > ul > li:last-child {
  margin-right: 0;
}

.social-links4 li {
  position: relative;
  padding-right: 16px;
  margin-right: 15px;
}
.social-links4 li:last-child {
  padding-right: 0;
  margin-right: 0;
}
.social-links4 li:last-child::before {
  display: none;
}
.social-links4 li::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 18px;
  background: #B3B3B3;
}
.social-links4 li a i {
  font-size: 18px;
}

.menu-style4 > ul > li {
  margin: 0 24px;
  position: relative;
}
.menu-style4 > ul > li::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -33px;
  width: 8px;
  height: 8px;
  background-color: #D9D9D9;
  border-radius: 50%;
  margin-top: 2px;
}
.menu-style4 > ul > li:last-child::before {
  right: auto;
  left: -30px;
}

.menu-style4 > ul > li a {
  position: relative;
}
.menu-style4 > ul > li a:hover::before {
  opacity: 1;
  visibility: visible;
}
.menu-style4 > ul > li a::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background-color: #FFD600;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-style4 ul.mega-menu li a:before {
  display: none;
}

.menu-style4 {
  margin-left: 59px;
  padding-top: 5px;
  /* Medium Large devices */
  /* Large devices */
}
@media (max-width: 1399px) {
  .menu-style4 {
    margin-left: 15px;
  }
}
@media (max-width: 1199px) {
  .menu-style4 {
    display: none !important;
  }
}

.menu-style4 > ul > li a::after {
  display: none;
}

.menu-style4 > ul > li a i {
  font-size: 12px;
  position: relative;
  top: -2px;
  margin-right: 7px;
}

.header-lower4 {
  position: relative;
  background-color: var(--white-color);
  padding: 1px 16px 8px 0;
  border-radius: 0 50px 50px 0;
  margin-top: -45px;
  /* Large devices */
  /* Large devices */
}
@media (max-width: 1199px) {
  .header-lower4 {
    margin-top: 0;
    border-radius: 0;
    padding-right: 0;
  }
}
.header-lower4::before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--white-color);
}
@media (max-width: 1199px) {
  .header-lower4::after {
    content: "";
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background-color: var(--white-color);
  }
}

.header-links-btn {
  margin-top: 3px;
}

.menu-style4 > ul > li.v1 > a {
  color: var(--theme-color);
}

.header-icons4 {
  margin-right: 3px;
  margin-top: 5px;
}

.simple-icon.v2 {
  position: relative;
  padding-right: 17px;
  margin-right: 8px;
}
.simple-icon.v2::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 1px;
  height: 18px;
  background: #B3B3B3;
}

.simple-icon.cart {
  position: relative;
  font-size: 36px;
}
.simple-icon.cart:hover {
  color: var(--theme-color);
}
.simple-icon.cart span {
  position: absolute;
  top: 0;
  right: -10px;
  font-size: 13px;
  color: var(--title-color);
  width: 22px;
  height: 22px;
  line-height: 22px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--theme-color2);
}

.vs-btn.v4 {
  height: 50px;
  line-height: 50px;
  padding: 0 42px;
  margin-top: 5px;
  /* Medium devices */
}
@media (max-width: 991px) {
  .vs-btn.v4 {
    display: none;
  }
}

.sticky-active.active .header-lower4 {
  margin-top: 0;
}

.header-layout5 {
  position: relative;
}

.header-top5 {
  background-color: var(--vs-secondary-color);
  padding: 11px 0 8px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .header-top5 {
    display: none;
  }
}

.header-lower5 {
  position: relative;
  background-color: var(--white-color);
  padding: 1px 0 3px 0;
  /* Large devices */
}
@media (max-width: 1199px) {
  .header-lower5 {
    padding: 10px 0;
  }
}

.vs-menu-toggle {
  /* Large devices */
}
@media (max-width: 1199px) {
  .vs-menu-toggle {
    display: inline-block !important;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .header-layout2 {
    background-color: var(--vs-secondary-color);
    padding-bottom: 1px;
  }
  .header-layout2 .header-logo {
    margin-right: 0;
  }
  .header-layout2 .menu-area {
    padding: 0 25px 0 15px;
    margin-bottom: -30px;
  }
  .header-layout2 .menu-area::before {
    width: 100%;
    border-radius: 30px;
  }
  .header-layout2 .menu-style2 {
    padding-left: 0;
  }
  .header-layout3 .menu-area {
    border-radius: 0;
    width: 100%;
    margin: 0;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .header-links li {
    margin: 0 25px 0 0;
  }
  .header-links.style2 i {
    --icon-size: 36px;
    --icon-font-size: 16px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .header-layout2 .menu-area {
    padding: 0 25px 0 9px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .header-layout1 .header-top {
    padding: 17px 0;
  }
  .header-layout2 .vs-btn {
    padding: 14px 15px;
    font-size: 14px;
  }
  .header-layout2 .menu-area {
    margin-bottom: 0;
  }
  .header-links li {
    margin: 0 0 10px 0;
    display: block;
  }
  .header-links li:last-child {
    margin-bottom: 0;
  }
  .header-links.style2 i {
    --icon-size: auto;
    border: none;
    vertical-align: top;
  }
}
/*------------------- 4.3. Footer  -------------------*/
.widget-area {
  padding-top: 80px;
  padding-bottom: 40px;
}

.copyright-wrap {
  text-align: center;
  padding: 29px 0;
  background-color: var(--theme-color2);
}

.copyright-text {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--black-color);
  font-family: var(--title-font);
}
.copyright-text a {
  color: inherit;
  text-decoration: underline;
}
.copyright-text a:hover {
  color: var(--theme-color2);
}

.copyright-menu ul {
  margin: 0;
}
.copyright-menu li {
  margin-right: 20px;
  display: inline-block;
}
.copyright-menu a {
  display: block;
  text-decoration: underline;
  text-transform: uppercase;
  color: var(--body-color);
  font-size: 16px;
  font-weight: 500;
}
.copyright-menu a:hover {
  color: var(--theme-color);
}

.footer-layout3,
.footer-layout1 {
  background-color: var(--vs-secondary-color);
  --title-color: #FFFFFF;
  --body-color: #FFFFFF;
}
.footer-layout3 .countdown-style1,
.footer-layout3 .vs-social,
.footer-layout3 .vs-btn,
.footer-layout1 .countdown-style1,
.footer-layout1 .vs-social,
.footer-layout1 .vs-btn {
  --title-color: #000;
}

.footer-layout1 .footer-top {
  padding: 60px 0 0 0;
}

.footer-call {
  font-size: 18px;
  color: var(--white-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer-call i {
  color: var(--theme-color2);
  margin-right: 10px;
  font-size: 30px;
}
.footer-call a {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--theme-color2);
}

.footer-layout3 .copyright-wrap {
  background-color: transparent;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (min-width: 1199px) {
  .footer-layout3 .widget-area {
    padding-top: 90px;
    padding-bottom: 50px;
  }
}
.footer-layout3 .footer-top {
  background-color: var(--white-color);
  padding: 30px 60px;
  border-radius: 30px;
}

.footer-layout4 {
  position: relative;
  background: rgba(46, 0, 58, 0.95);
}

.widget_title.v4 {
  color: var(--white-color);
  margin-bottom: 37px;
}

.widget-about-two p {
  color: #D0D0D0;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  padding-right: 35px;
  margin-bottom: 31px;
}

.time-shadule {
  list-style: none;
  padding-left: 0;
}
.time-shadule li {
  color: #FFF;
  font-family: Fredoka;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 16px;
}
.time-shadule li span {
  font-weight: 700;
  margin-left: 4px;
}

.menu.v4 li a {
  color: var(--white-color);
}
.menu.v4 li a::before {
  border-radius: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.footer-form-box {
  border-radius: 20px;
  background-color: var(--theme-color2);
  padding: 36px 40px 44px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .footer-form-box {
    padding: 36px 24px 44px;
  }
}
.footer-form-box p {
  color: var(--title-color);
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  text-transform: capitalize;
  margin-bottom: 19px;
}

.footer-logo4 {
  /* Large devices */
  /* Extra small devices */
}
@media (max-width: 1199px) {
  .footer-logo4 {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .footer-logo4 {
    text-align: left;
  }
}

.widget_title.form::before {
  background-color: var(--title-color);
}

.form-style5 .form-group {
  margin-bottom: 0;
}
.form-style5 .form-group input {
  height: 50px;
  background-color: var(--white-color);
  border-radius: 50px;
  width: 100%;
  padding: 0 28px;
  margin-bottom: 20px;
}

.vs-btn.form5 {
  width: 100%;
  height: 50px;
  padding: 0;
}

.copyright-wrap-five {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /* Medium devices */
  /* Extra small devices */
}
@media (max-width: 991px) {
  .copyright-wrap-five {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 575px) {
  .copyright-wrap-five {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.copyright-wrap-five p {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  /* Medium devices */
}
@media (max-width: 991px) {
  .copyright-wrap-five p {
    margin-bottom: 30px;
  }
}
.copyright-wrap-five p .end-text {
  text-decoration: none;
  color: var(--theme-color2);
}

.social-style1.v2 a {
  background-color: unset;
  border: 2px solid var(--theme-color2);
  line-height: 46px;
  color: var(--white-color);
}
.social-style1.v2 a:hover {
  background-color: var(--theme-color2);
  color: var(--title-color);
}
.social-style1.v2 a:hover::before {
  display: none;
}

.footer-bottom5 {
  background-color: var(--vs-secondary-color);
  padding: 22px 0 20px;
}

.footer-contact5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* Medium devices */
  /* Extra small devices */
}
@media (max-width: 991px) {
  .footer-contact5 {
    margin-top: 40px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media (max-width: 575px) {
  .footer-contact5 {
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.footer-contact5 .footer-icon {
  width: 65px;
  height: 65px;
  line-height: 65px;
  text-align: center;
  font-size: 32px;
  color: var(--title-color);
  background-color: var(--theme-color2);
  border-radius: 50%;
  margin-right: 19px;
  /* Small devices */
}
@media (max-width: 767px) {
  .footer-contact5 .footer-icon {
    width: 55px;
    height: 55px;
    line-height: 55px;
    margin-right: 10px;
    font-size: 25px;
  }
}

.footer-contact-content .title {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 7px;
}
.footer-contact-content .gmail {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
}
.footer-contact-content .gmail:hover {
  text-decoration: underline;
}

.footer-box5 {
  border-bottom: 3px solid #5A7694;
  padding: 51px 0 53px;
}

.widget-area-four {
  padding: 105px 0 44px;
  /* Small devices */
}
@media (max-width: 767px) {
  .widget-area-four {
    padding: 80px 0 41px;
  }
}

.footer-layout5 {
  position: relative;
  padding-top: 120px;
  /* Small devices */
}
@media (max-width: 767px) {
  .footer-layout5 {
    padding-top: 80px;
  }
}
.footer-layout5 .row {
  /* Medium devices */
}
@media (max-width: 991px) {
  .footer-layout5 .row {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
}

.footer-box6 {
  border-radius: 50px 50px 150px 50px;
  background: #FFD600;
  padding: 49px 64px 46px;
  /* Medium devices */
  /* Extra small devices */
}
@media (max-width: 991px) {
  .footer-box6 {
    padding: 37px 34px 38px;
  }
}
@media (max-width: 416px) {
  .footer-box6 {
    padding: 30px 24px 25px;
  }
}

.form-style2.v2 {
  position: relative;
}
.form-style2.v2::before {
  content: "";
  position: absolute;
  top: -49px;
  right: -57px;
  width: 2px;
  height: 215px;
  background: rgba(217, 217, 217, 0.5);
}
.form-style2.v2 .form-group input {
  background-color: var(--white-color);
  color: #242424;
  font-family: var(--title-font);
  max-width: 463px;
}
.form-style2.v2 .form-group input::-webkit-input-placeholder {
  color: #242424;
  font-family: var(--title-font);
}
.form-style2.v2 .form-group input::-moz-placeholder {
  color: #242424;
  font-family: var(--title-font);
}
.form-style2.v2 .form-group input:-ms-input-placeholder {
  color: #242424;
  font-family: var(--title-font);
}
.form-style2.v2 .form-group input::-ms-input-placeholder {
  color: #242424;
  font-family: var(--title-font);
}
.form-style2.v2 .form-group input::placeholder {
  color: #242424;
  font-family: var(--title-font);
}

.form-title5 {
  color: var(--title-color);
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 20px;
  display: block;
}

.vs-btn.style2.footer5 {
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 0 48px;
  /* Small devices */
}
@media (max-width: 767px) {
  .vs-btn.style2.footer5 {
    padding: 16px 30px;
  }
}

.footer-social-link5 {
  margin-left: 119px;
  /* Large devices */
  /* Medium devices */
}
@media (max-width: 1199px) {
  .footer-social-link5 {
    margin-left: 59px;
  }
}
@media (max-width: 991px) {
  .footer-social-link5 {
    margin: 30px 0 0;
  }
}
.footer-social-link5 a {
  width: 64px;
  height: 64px;
  line-height: 62px;
  text-align: center;
  border: 2px solid #484848;
  border-radius: 50%;
  display: inline-block;
  font-size: 23px;
  color: var(--title-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Extra small devices */
}
.footer-social-link5 a:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
@media (max-width: 416px) {
  .footer-social-link5 a {
    margin-bottom: 10px;
  }
}

.footer-contact6 {
  padding-left: 0;
  list-style: none;
}
.footer-contact6 li {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #7D7D7D;
  padding-bottom: 18px;
  margin-bottom: 16px;
}
.footer-contact6 li a {
  color: var(--white-color);
}
.footer-contact6 li a:hover {
  color: var(--theme-color);
}
.footer-contact6 li:last-child {
  border: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}
.footer-contact6 li i {
  font-size: 24px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  background-color: var(--theme-color2);
  border-radius: 50%;
  color: var(--title-color);
  margin-right: 10px;
}

.copyright-wrap-six .end-text {
  color: var(--theme-color2);
  text-decoration: none;
}

.widget-area-five {
  padding: 107px 0 68px;
  /* Small devices */
}
@media (max-width: 767px) {
  .widget-area-five {
    padding: 75px 0 46px;
  }
}

.footer-bottom6 {
  background-color: var(--vs-secondary-color);
  padding: 32px 0 30px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .footer-layout3 .footer-top {
    padding: 25px 30px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .copyright-text {
    font-size: 16px;
  }
  .footer-layout3 .footer-top {
    padding: 25px 15px;
  }
}
/*------------------- 4.5. Pagination  -------------------*/
.vs-pagination {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.vs-pagination ul {
  margin: 0;
  padding: 7.5px 10px;
  list-style: none;
  border-radius: 9999px;
  background-color: var(--smoke-color);
}
.vs-pagination span,
.vs-pagination a {
  position: relative;
  display: inline-block;
  text-align: center;
  border: none;
  color: var(--title-color);
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 600;
  width: 45px;
  height: 45px;
  line-height: 45px;
  z-index: 1;
  text-transform: capitalize;
  background-color: var(--white-color);
  border-radius: 50%;
}
.vs-pagination span:before,
.vs-pagination a:before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  bottom: 3px;
  top: 3px;
  background-color: var(--vs-secondary-color);
  border-radius: inherit;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
  opacity: 0;
  visibility: hidden;
  z-index: -1;
}
.vs-pagination span i,
.vs-pagination a i {
  margin-left: 7px;
}
.vs-pagination span.active, .vs-pagination span:hover,
.vs-pagination a.active,
.vs-pagination a:hover {
  color: var(--white-color);
  border-color: transparent;
}
.vs-pagination span.active:before, .vs-pagination span:hover:before,
.vs-pagination a.active:before,
.vs-pagination a:hover:before {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
  visibility: visible;
}
.vs-pagination li {
  display: inline-block;
  margin: 0 2px;
  list-style-type: none;
}
.vs-pagination .pagi-btn {
  width: auto;
  height: auto;
  line-height: 1;
  padding: 21px 31px;
  border-radius: 9999px;
  background-color: var(--vs-secondary-color);
  color: var(--white-color);
}
.vs-pagination .pagi-btn:before {
  background-color: var(--theme-color);
}

/* Small devices */
@media (max-width: 767px) {
  .vs-pagination {
    gap: 5px;
  }
  .vs-pagination ul {
    padding: 3px 3px;
  }
  .vs-pagination span,
  .vs-pagination a {
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .vs-pagination li {
    margin: 0 0;
  }
  .vs-pagination .pagi-btn {
    padding: 11px 15px;
    font-size: 12px;
  }
}
/*------------------- 4.6. Blog  -------------------*/
blockquote {
  display: block;
  position: relative;
  overflow: hidden;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--title-color);
  background-color: var(--smoke-color);
  border-left: 4px solid var(--theme-color);
  padding: 43px 50px 42px 35px;
  margin: 35px 0;
}
blockquote p {
  font-family: inherit;
  margin-bottom: 0 !important;
  line-height: 1.5;
  color: inherit;
  width: 100%;
  position: relative;
  z-index: 3;
  font-style: italic;
}
blockquote:before {
  content: "\f10e";
  font-family: var(--icon-font);
  position: absolute;
  right: 70px;
  bottom: 27px;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--theme-color);
}
blockquote p {
  margin-bottom: 0;
}
blockquote p a {
  color: inherit;
}
blockquote cite {
  display: inline-block;
  font-size: 16px;
  position: relative;
  padding-left: 45px;
  line-height: 1;
  font-weight: 400;
  margin-top: 22px;
  font-style: normal;
  color: var(--title-color);
}
blockquote cite:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 30px;
  height: 2px;
  border-top: 2px solid var(--theme-color);
}

blockquote.vs-quote {
  border: 5px solid var(--theme-color);
  background-color: transparent;
  padding: 36px 60px 36px 160px;
}
blockquote.vs-quote:before {
  content: "\f10d";
  font-size: 6rem;
  font-weight: 300;
  right: auto;
  bottom: auto;
  left: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: var(--theme-color);
  opacity: 0.2;
}
blockquote.vs-quote p {
  font-size: 26px;
  line-height: 40px;
  font-weight: 400;
  font-style: normal;
}

.blog-meta span,
.blog-meta a {
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
  color: var(--theme-color);
  font-weight: 500;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.blog-meta span:last-child,
.blog-meta a:last-child {
  margin-right: 0;
}
.blog-meta span i,
.blog-meta a i {
  margin-right: 7px;
}
.blog-meta a:hover {
  color: var(--vs-secondary-color);
}

.blog-category {
  margin-bottom: -10px;
}
.blog-category a {
  display: inline-block;
  color: var(--white-color);
  padding: 4.5px 24.5px;
  margin-right: 5px;
  margin-bottom: 10px;
  border: 1px solid transparent;
  background-color: var(--theme-color);
}
.blog-category a:hover {
  background-color: var(--white-color);
  color: var(--body-color);
  border-color: var(--theme-color);
}

.blog-title a {
  color: inherit;
}
.blog-title a:hover {
  color: var(--theme-color);
}

.vs-blog {
  margin-bottom: 30px;
}

.share-links-title {
  font-size: 18px;
  color: var(--title-color);
  font-family: var(--title-font);
  font-weight: 600;
  margin: 0 15px 0 0;
  display: inline-block;
}

.share-links {
  margin: 50px 0 50px 0;
  padding: 17px 30px;
  background-color: var(--theme-color2);
  border-radius: 9999px;
}
.share-links .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  --bs-gutter-y: 15px;
}
.share-links .tagcloud {
  display: inline-block;
}
.share-links .tagcloud a:not(:hover) {
  background-color: var(--white-color);
}
.share-links .social-links {
  display: inline-block;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.share-links .social-links li {
  display: inline-block;
  margin-right: 4px;
}
.share-links .social-links li:last-child {
  margin-right: 0;
}
.share-links .social-links a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  display: block;
  color: var(--title-color);
  background-color: var(--white-color);
  border-radius: 50%;
}
.share-links .social-links a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.blog-author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 50px 35px 35px;
  margin: 50px 0;
  background-color: var(--vs-secondary-color);
  border-radius: 30px;
}
.blog-author .media-img {
  width: 180px;
  margin-right: 30px;
  border-radius: 30px;
  overflow: hidden;
}
.blog-author .media-img img {
  -webkit-transform: scale(1.001);
          transform: scale(1.001);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.blog-author .author-degi {
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-family: var(--title-font);
  display: block;
  margin: 0 0 5px 0;
}
.blog-author .author-name {
  color: var(--white-color);
  line-height: 1;
  font-size: 30px;
  letter-spacing: 0.01em;
  margin-bottom: 15px;
}
.blog-author .author-text {
  color: #E0E0E0;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
}
.blog-author:hover .media-img img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.blog-inner-title {
  font-size: 40px;
  position: relative;
  margin: -0.25em 0 40px 0;
  padding: 0 0 7px 0;
}
.blog-inner-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background-color: var(--theme-color2);
}

.blog-single {
  position: relative;
  margin-bottom: 75.5px;
  border: 3px solid var(--vs-secondary-color);
  border-radius: 30px;
}
.blog-single .vs-btn {
  margin-bottom: -25.5px;
}
.blog-single .blog-meta {
  margin-bottom: 5px;
}
.blog-single .blog-title {
  line-height: 1.15;
  margin-bottom: 15px;
  font-size: 46px;
  text-transform: capitalize;
}
.blog-single .blog-text {
  margin-bottom: 40px;
}
.blog-single .blog-audio,
.blog-single .blog-img {
  position: relative;
  background-color: var(--smoke-color);
  margin: -3px -3px 0 -3px;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.blog-single .blog-audio {
  line-height: 1;
}
.blog-single .blog-img img {
  -webkit-transform: scale(1.002);
          transform: scale(1.002);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.blog-single .blog-img .slick-arrow {
  --pos-x: 30px;
}
.blog-single .blog-img .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.blog-single .blog-content {
  padding: 35px 60px 1px 60px;
}
.blog-single:hover .blog-img img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.blog-single:hover .blog-img .slick-arrow {
  opacity: 1;
  visibility: visible;
}
.blog-single .mega-hover:not(.blog-img) {
  border-radius: 30px;
}

.blog-details .blog-single {
  border: none;
}
.blog-details .blog-single .blog-img {
  border-radius: 30px;
  margin-bottom: 35px;
}
.blog-details .blog-single .blog-content {
  padding: 0;
  border: none;
}

.blog-style1 {
  border: 3px solid var(--theme-color2);
  border-radius: 30px;
}
.blog-style1 .blog-date {
  font-weight: 600;
  font-size: 16px;
  font-family: var(--title-font);
  margin-bottom: 3px;
  display: inline-block;
}
.blog-style1 .blog-date i {
  margin-right: 10px;
}
.blog-style1 .blog-content {
  padding: 21px 30px 7px 30px;
}
.blog-style1 .blog-btn {
  width: 100%;
  display: block;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--title-font);
  border-radius: 9999px;
  line-height: 1;
  padding: 16px 30px;
  color: var(--title-color);
  background-color: var(--theme-color2);
}
.blog-style1 .blog-btn i {
  margin-left: 8px;
  position: relative;
  top: 1px;
}
.blog-style1 .blog-img {
  border-radius: 30px;
  border: inherit;
  margin: -3px;
  overflow: hidden;
}
.blog-style1 .blog-img img {
  -webkit-transform: scale(1.001);
          transform: scale(1.001);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.blog-style1:hover .blog-img img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.blog-style2:not(:last-child) {
  margin-bottom: 40px;
}
.blog-style2 .blog-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 50px 15px 15px;
  border: 3px solid var(--theme-color2);
  border-radius: 30px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
@media (min-width: 1399px) {
  .blog-style2:nth-child(2) .blog-body {
    margin-left: -110px;
    width: 100%;
  }
}
.blog-style2:hover .blog-body {
  border-color: var(--theme-color);
}
.blog-style2 .blog-img {
  min-width: 10px;
  overflow: hidden;
  margin-right: 40px;
  border-radius: 30px;
}
.blog-style2 .blog-img img {
  width: 100%;
  -webkit-transform: scale(1.001);
          transform: scale(1.001);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.blog-style2:hover .blog-img img {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
.blog-style2 .blog-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.blog-style2 .blog-title,
.blog-style2 .blog-meta {
  margin-bottom: 5px;
}
.blog-style2 .blog-text {
  margin-bottom: 0;
}

.blog-section4 {
  position: relative;
}
.blog-section4 .row {
  /* Medium devices */
}
@media (max-width: 991px) {
  .blog-section4 .row {
    margin-bottom: -50px;
  }
}

.blog-card-four {
  border-radius: 20px 20px 150px 20px;
  background: var(--white-color);
  /* Medium devices */
}
@media (max-width: 991px) {
  .blog-card-four {
    margin-bottom: 50px;
  }
}
.blog-card-four:hover .blog-img-four:before {
  opacity: 1;
  visibility: visible;
  left: 0;
  width: 100%;
}

.blog-img-four {
  position: relative;
}
.blog-img-four:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.blog-img-four img {
  border-radius: 20px;
  width: 100%;
  height: 269px;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-meta-four {
  position: absolute;
  bottom: -19px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  background: #490D59;
  width: 345px;
  padding: 2px 72px 1px;
  margin-bottom: 0;
  /* Large devices */
  /* Small devices */
  /* Small devices */
}
@media (max-width: 1199px) {
  .blog-meta-four {
    width: 293px;
    padding: 2px 34px 1px;
  }
}
@media (max-width: 767px) {
  .blog-meta-four {
    padding: 2px 30px 1px;
  }
}
@media (max-width: 767px) {
  .blog-meta-four {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.blog-meta-four li {
  position: relative;
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  line-height: 32px;
  margin-right: 46px;
}
.blog-meta-four li:last-child {
  margin-right: 0;
}
.blog-meta-four li:last-child::before {
  display: none;
}
.blog-meta-four li::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -28px;
  width: 11px;
  height: 11px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.blog-content-four {
  padding: 49px 50px 38px;
  /* Large devices */
  /* Small devices */
  /* Extra small devices */
}
@media (max-width: 1199px) {
  .blog-content-four {
    padding: 49px 31px 38px;
  }
}
@media (max-width: 767px) {
  .blog-content-four {
    padding: 49px 24px 38px;
  }
}
@media (max-width: 416px) {
  .blog-content-four {
    padding: 40px 22px 30px;
  }
}
.blog-content-four .title {
  font-size: 26px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 4px;
  /* Small devices */
}
@media (max-width: 767px) {
  .blog-content-four .title {
    font-size: 23px;
  }
}
.blog-content-four .title a {
  color: var(--title-color);
}
.blog-content-four .title a:hover {
  color: var(--theme-color);
}
.blog-content-four p {
  color: #444;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 10px;
}
.blog-content-four span {
  color: var(--theme-color);
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
}
.blog-content-four span small {
  color: #5A5A5A;
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
}

.title-area-four.blog4 h2 {
  margin-bottom: -3px;
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}
@media (max-width: 767px) {
  .title-area-four.blog4 h2 {
    font-size: 49px;
  }
}
@media (max-width: 575px) {
  .title-area-four.blog4 h2 {
    font-size: 44px;
  }
}
@media (max-width: 416px) {
  .title-area-four.blog4 h2 {
    font-size: 33px;
  }
}

.blog-style5 {
  position: relative;
}
.blog-style5 .row {
  /* Medium devices */
}
@media (max-width: 991px) {
  .blog-style5 .row {
    margin-bottom: -50px;
  }
}

.blog-card-five {
  position: relative;
  /* Medium devices */
}
.blog-card-five::before {
  content: "";
  position: absolute;
  bottom: 37px;
  left: 0;
  width: 410px;
  height: 428px;
  border-radius: 20px 20px 150px 20px;
  border: 2px solid #B1B1B1;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .blog-card-five::before {
    width: 100%;
  }
}
.blog-card-five:hover .blog-img-five {
  border-radius: 20px;
}
.blog-card-five:hover .blog-img-five img {
  -webkit-transform: scale(1.1) rotate(5deg);
          transform: scale(1.1) rotate(5deg);
}
@media (max-width: 991px) {
  .blog-card-five {
    margin-bottom: 50px;
  }
}

.blog-img-five {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.blog-img-five img {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  /* Small devices */
}
@media (max-width: 767px) {
  .blog-img-five img {
    width: 100%;
  }
}

.blog-meta-five {
  position: absolute;
  bottom: 14px;
  right: 0;
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px 0 0 40px;
  background: var(--white-color);
  width: 369px;
  height: 44px;
  padding: 0 60px;
  margin-bottom: 0;
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-meta-five {
    width: 288px;
    padding: 0 32px;
  }
}
.blog-meta-five li {
  color: #353535;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  margin-right: 17px;
}
.blog-meta-five li:last-child {
  color: var(--theme-color);
}
.blog-meta-five li:last-child i {
  margin-right: 3px;
}

.blog-content5 {
  position: relative;
  padding: 20px 42px 0;
}
.blog-content5 .title {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 13px;
}
.blog-content5 .title a {
  color: var(--title-color);
}
.blog-content5 .title a:hover {
  color: var(--theme-color);
}
.blog-content5 p {
  color: #444;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}

.blog-date5 {
  text-align: center;
  border-radius: 30px;
  background: #FFD600;
  width: 100px;
  height: 100px;
  padding: 18px 0;
}
.blog-date5 span {
  display: inline-block;
  color: var(--title-color);
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.blog-date5 h4 {
  font-size: 40px;
  font-weight: 700;
  line-height: 28px;
  margin-bottom: 0;
}

.reg-btn.blog5 {
  padding: 0 59px;
  margin-top: 68px;
  margin-bottom: 0;
}

.title-area-four.blog5 .sub-title br {
  display: none;
}
.title-area-four.blog5 h2 {
  /* Extra small devices */
  /* Extra small devices */
}
@media (max-width: 575px) {
  .title-area-four.blog5 h2 {
    font-size: 50px;
    line-height: 55px;
  }
}
@media (max-width: 416px) {
  .title-area-four.blog5 h2 {
    font-size: 40px;
    line-height: 38px;
  }
}

.blog-style6 {
  position: relative;
}
.blog-style6 .row {
  /* Medium devices */
}
@media (max-width: 991px) {
  .blog-style6 .row {
    margin-bottom: -50px;
  }
}

.title-area-four.blog6 {
  margin-bottom: 54px;
}
.title-area-four.blog6 h2 {
  /* Small devices */
  /* Extra small devices */
  /* Extra small devices */
}
@media (max-width: 767px) {
  .title-area-four.blog6 h2 {
    font-size: 55px;
    line-height: 60px;
  }
}
@media (max-width: 575px) {
  .title-area-four.blog6 h2 {
    font-size: 49px;
    line-height: 49px;
  }
}
@media (max-width: 416px) {
  .title-area-four.blog6 h2 {
    font-size: 43px;
  }
}
.title-area-four.blog6 .sub-title {
  /* Medium devices */
}
@media (max-width: 991px) {
  .title-area-four.blog6 .sub-title br {
    display: none;
  }
}

.blog-card6 {
  position: relative;
  border-radius: 30px;
  border: 3px solid #FFD600;
  background: var(--white-color);
  /* Medium devices */
  /* Small devices */
}
@media (max-width: 991px) {
  .blog-card6 {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .blog-card6 {
    border-radius: 44px;
  }
}
.blog-card6:hover .blog-img6 img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.blog-img6 {
  position: relative;
  top: 23px;
  left: 23px;
  overflow: hidden;
  border-radius: 20px;
  /* Medium devices */
}
@media (max-width: 991px) {
  .blog-img6 {
    left: 0;
    top: 0;
  }
}
.blog-img6 img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.blog-content6 {
  padding: 48px 40px 88px;
  /* Medium devices */
}
@media (max-width: 991px) {
  .blog-content6 {
    padding: 31px 22px 88px;
  }
}
.blog-content6 .title {
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.blog-content6 .title a {
  color: var(--title-color);
}
.blog-content6 .title a:hover {
  color: var(--theme-color);
}
.blog-content6 p {
  color: #444;
  font-family: Fredoka;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 0;
}

.blog-meta6 {
  position: absolute;
  bottom: 19px;
  left: 0;
  list-style: none;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 0;
}
.blog-meta6 li {
  color: var(--title-color);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  background-color: var(--vs-secondary-color);
  display: inline-block;
  padding: 11px 30px 10px 0;
  border-radius: 0 50px 50px 0;
  /* Large devices */
}
@media (max-width: 1199px) {
  .blog-meta6 li {
    padding-right: 20px;
  }
}
.blog-meta6 li i {
  margin-right: 5px;
}
.blog-meta6 li:first-child {
  background-color: var(--theme-color2);
  padding-left: 40px;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .blog-meta6 li:first-child {
    padding-left: 28px;
  }
}
.blog-meta6 li:last-child {
  padding: 11px 15px 10px;
  color: var(--white-color);
  border-radius: 50px;
  margin-left: 10px;
}

.schedule-btn.blog6 {
  position: relative;
  background-color: var(--theme-color);
  border: 0;
  color: var(--white-color);
  height: 53.861px;
  line-height: 53.861px;
  padding: 0 44px;
  display: inline-block;
}

.blog-btn-box6 {
  margin-top: 50px;
}

.gallery-style2 {
  position: relative;
}

.gallery-img-two {
  position: relative;
  /* Medium devices */
}
@media (max-width: 991px) {
  .gallery-img-two {
    margin-bottom: 20px;
  }
}
.gallery-img-two img {
  border-radius: 30px;
  width: 100%;
}
.gallery-img-two:hover::before {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.gallery-img-two:hover::after {
  opacity: 1;
  visibility: visible;
  height: 100%;
}
.gallery-img-two:hover .insta-btn {
  opacity: 1;
  visibility: visible;
}
.gallery-img-two::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 40%;
  background-color: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
  z-index: 1;
  border-radius: 30px 0 0 30px;
}
.gallery-img-two::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50%;
  height: 40%;
  background-color: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.6s;
  transition: all ease 0.6s;
  z-index: 1;
  border-radius: 0 30px 30px 0;
}

.insta-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  z-index: 99;
}

.timer-style2 {
  position: relative;
}

.time-counter {
  max-width: 470px;
  margin-left: auto;
  /* Medium devices */
}
@media (max-width: 991px) {
  .time-counter {
    max-width: 100%;
    margin-top: 30px;
  }
}
.time-counter .vs-btn.banner {
  width: 100%;
  height: 56px;
  line-height: 56px;
}
.time-counter ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}
.time-counter ul li {
  width: calc(25% - 10px);
  background-color: #fff;
  border-radius: 30px;
  text-align: center;
  list-style: none;
  height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aling-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* Extra small devices */
}
@media (max-width: 416px) {
  .time-counter ul li {
    width: calc(50% - 10px);
    margin-bottom: 20px;
  }
}
.time-counter ul li h2 {
  color: #E8063C;
  font-size: 50px;
  font-weight: 700;
  margin-bottom: -10px;
}
.time-counter ul li > span {
  display: block;
  color: #000;
  font-size: 16px;
  font-weight: 700;
}

.timer-box {
  position: relative;
  border-radius: 50px 50px 150px 50px;
  background: #490D59;
  padding: 49px 67px 63px;
  /* Extra small devices */
  /* Extra small devices */
}
.timer-box::before {
  content: "";
  position: absolute;
  bottom: -150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 284px;
  height: 388px;
  overflow: hidden;
  background-image: url(../img/bg/girl.png);
}
@media (max-width: 575px) {
  .timer-box {
    padding: 40px 30px 45px;
  }
}
@media (max-width: 416px) {
  .timer-box {
    border-radius: 10px;
  }
}

.timer-content span {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: inline-block;
}
.timer-content .title {
  color: var(--white-color);
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 11px;
  /* Medium Large devices */
  /* Large devices */
  /* Extra small devices */
}
@media (max-width: 1399px) {
  .timer-content .title {
    font-size: 38px;
  }
}
@media (max-width: 1199px) {
  .timer-content .title {
    font-size: 30px;
  }
}
@media (max-width: 416px) {
  .timer-content .title {
    font-size: 23px;
  }
  .timer-content .title br {
    display: none;
  }
}
.timer-content sub {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.timer-content sub i {
  font-size: 19px;
  margin-right: 11px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  blockquote {
    font-size: 18px;
    padding: 23px 30px 26px 30px;
  }
  blockquote.vs-quote {
    padding: 26px 60px 26px 130px;
  }
  blockquote.vs-quote p {
    font-size: 20px;
    line-height: 30px;
  }
  blockquote.vs-quote:before {
    font-size: 5rem;
    left: 25px;
  }
  .blog-single .blog-content {
    padding: 35px 40px 1px 40px;
  }
  .blog-single .blog-title {
    font-size: 40px;
  }
  .blog-single .blog-text {
    margin-bottom: 25px;
  }
  .blog-style2 .blog-body {
    padding: 15px 15px 25px 15px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .share-links {
    border-radius: 20px;
  }
  .blog-author .author-text {
    font-size: 16px;
  }
  .blog-author .media-img {
    width: 150px;
    margin-right: 25px;
  }
  .blog-single .blog-content {
    padding: 25px 30px 1px 30px;
  }
  .blog-single .blog-title {
    font-size: 36px;
  }
  .blog-details .blog-single .blog-img {
    margin-bottom: 25px;
    border-radius: 20px;
  }
  .blog-style2 {
    text-align: center;
  }
  .blog-style2 .blog-body {
    display: block;
  }
  .blog-style2 .blog-img {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  blockquote {
    font-size: 16px;
    padding: 23px 15px 26px 15px;
  }
  blockquote:before {
    right: 30px;
    bottom: 30px;
    font-size: 2rem;
  }
  blockquote cite {
    margin-top: 17px;
    font-size: 14px;
  }
  blockquote cite::before {
    bottom: 6px;
  }
  blockquote.vs-quote {
    padding: 26px 20px 26px 20px;
  }
  blockquote.vs-quote:before {
    content: "\f10e";
    left: auto;
    top: auto;
    -webkit-transform: none;
            transform: none;
    right: 20px;
    bottom: 20px;
  }
  blockquote.vs-quote p {
    font-size: 18px;
  }
  .share-links {
    padding: 17px 20px;
  }
  .blog-inner-title {
    font-size: 26px;
  }
  .share-links-title {
    font-size: 18px;
    display: block;
    margin: 0 0 10px 0;
  }
  .blog-meta > span,
  .blog-meta a {
    font-size: 14px;
    margin-right: 15px;
  }
  .blog-author {
    display: block;
    padding: 35px 25px 35px 25px;
  }
  .blog-author .media-img {
    width: 145px;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .blog-single {
    border-radius: 15px;
  }
  .blog-single .blog-audio,
  .blog-single .blog-img {
    border-radius: 15px 15px 0 0;
  }
  .blog-single .blog-content {
    padding: 25px 20px 1px 20px;
  }
  .blog-single .blog-title {
    font-size: 24px;
    line-height: 1.4;
  }
}
/*------------------- 4.7. Comments  -------------------*/
.vs-comment-form {
  margin: var(--blog-space-y, 50px) 0 var(--blog-space-y, 50px) 0;
}
.vs-comment-form.review-form .blog-inner-title {
  font-size: 36px;
}

.comment-respond {
  position: relative;
}
.comment-respond .form-title a#cancel-comment-reply-link {
  font-size: 0.7em;
  text-decoration: underline;
}
.comment-respond .custom-checkbox.notice {
  margin-bottom: 25px;
}
.comment-respond .row {
  --bs-gutter-x: 20px;
}
.comment-respond .form-control {
  border: 1px solid var(--border-color);
  font-size: 16px;
  color: var(--title-color);
  background-color: transparent;
}
.comment-respond .form-control::-moz-placeholder {
  color: var(--title-color);
}
.comment-respond .form-control::-webkit-input-placeholder {
  color: var(--title-color);
}
.comment-respond .form-control:-ms-input-placeholder {
  color: var(--title-color);
}
.comment-respond .form-control::-ms-input-placeholder {
  color: var(--title-color);
}
.comment-respond .form-control::placeholder {
  color: var(--title-color);
}
.comment-respond .form-group i {
  color: var(--theme-color);
}
.comment-respond input[type=checkbox] ~ label:before {
  top: 5.5px;
}
.comment-respond input[type=checkbox]:checked ~ label:before {
  background-color: var(--theme-color);
  border-color: transparent;
}
.comment-respond .blog-inner-title {
  border: none;
  margin-bottom: 15px;
}
.comment-respond .form-text {
  margin-bottom: 25px;
  font-size: 16px;
  color: var(--body-color);
}

.vs-comments-wrap {
  margin: 50px 0;
}
.vs-comments-wrap .description p:last-child {
  margin-bottom: 0;
}
.vs-comments-wrap .comment-respond {
  margin: 30px 0;
}
.vs-comments-wrap pre {
  background: #ededed;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.vs-comments-wrap blockquote {
  background-color: #eaf8f9;
}
.vs-comments-wrap li {
  margin: 0;
}
.vs-comments-wrap .vs-post-comment {
  padding: 30px 30px 25px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px 0 30px 0;
  position: relative;
  background-color: #F0F6FA;
  border-radius: 30px;
}
.vs-comments-wrap ul.comment-list {
  list-style: none;
  margin: -10px 0 0 0;
  padding: 0;
}
.vs-comments-wrap ul.comment-list ul ul,
.vs-comments-wrap ul.comment-list ul ol,
.vs-comments-wrap ul.comment-list ol ul,
.vs-comments-wrap ul.comment-list ol ol {
  margin-bottom: 0;
}
.vs-comments-wrap .comment-avater {
  width: 130px;
  height: 130px;
  margin-right: 25px;
  background-color: var(--theme-color);
  overflow: hidden;
  border-radius: 30px;
}
.vs-comments-wrap .comment-avater img {
  width: 100%;
}
.vs-comments-wrap .comment-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.vs-comments-wrap .commented-on {
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 500;
  display: block;
  color: var(--theme-color);
}
.vs-comments-wrap .commented-on i {
  margin-right: 7px;
  font-size: 0.9rem;
}
.vs-comments-wrap .name {
  margin: -0.25em 10px 2px 0;
  font-size: 26px;
  display: inline-block;
}
.vs-comments-wrap .comment-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.vs-comments-wrap .text {
  color: var(--body-color);
  margin-bottom: 0;
}
.vs-comments-wrap .text:last-of-type {
  margin-bottom: -0.25em;
}
.vs-comments-wrap .children {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-left: 40px;
}
.vs-comments-wrap .reply_and_edit {
  position: absolute;
  right: 10px;
  top: 10px;
  line-height: 1;
}
.vs-comments-wrap .replay-btn {
  color: var(--title-color);
  background-color: var(--white-color);
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 19px 13px 19px;
  letter-spacing: 0.05em;
  border-radius: 9999px;
}
.vs-comments-wrap .replay-btn:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}
.vs-comments-wrap .review-rating {
  margin-bottom: 10px;
}

.woocommerce-Reviews .vs-comments-wrap {
  padding: 0;
  background-color: transparent;
  margin-top: 0;
}
.woocommerce-Reviews .vs-comment-item:first-child .vs-post-comment {
  margin-top: 19px;
}
.woocommerce-Reviews .woocommerce-Reviews-title {
  margin-bottom: 40px;
}

.vs-comments-wrap.vs-comment-form {
  margin: 0;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .comment-section {
    padding: 40px 40px 0px 40px;
  }
  .vs-comment-form.review-form .blog-inner-title {
    font-size: 30px;
  }
  .vs-comments-wrap .vs-post-comment {
    padding: 30px 30px 30px 30px;
    margin: 30px 0 30px 0;
  }
  .vs-comments-wrap .comment-avater {
    width: 100px;
    height: 100px;
    margin-right: 20px;
  }
  .comment-respond .form-control {
    height: 60px;
    font-size: 14px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .vs-comments-wrap .vs-post-comment {
    display: block;
    padding: 30px 20px 30px 20px;
  }
  .vs-comments-wrap .star-rating {
    position: relative;
    top: 0;
    right: 0;
  }
  .vs-comments-wrap .comment-avater {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .vs-comments-wrap .children {
    margin-left: 40px;
  }
  .vs-comments-wrap .review .vs-post-comment {
    padding: 30px;
  }
  .comment-respond .form-text {
    font-size: 14px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .vs-comments-wrap .children {
    margin-left: 20px;
  }
  .vs-comments-wrap .name {
    margin: -0.1em 0 7px 0;
    font-size: 24px;
  }
  .vs-comments-wrap .review-rating {
    position: relative;
    right: 0;
    top: 0;
    margin: 10px 0 10px 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .vs-comments-wrap .review .vs-post-comment {
    padding: 30px 20px;
  }
  .vs-comments-wrap .reply_and_edit {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 20px;
  }
  .comment-respond textarea,
  .comment-respond input {
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .comment-respond label {
    font-size: 14px;
  }
  .vs-comment-form.review-form .blog-inner-title {
    font-size: 26px;
  }
  .comment-section {
    padding: 40px 20px 0px 20px;
  }
}
/*------------------- 4.18. Accordion  -------------------*/
.accordion-item {
  cursor: pointer;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion-item p:last-child {
  margin-bottom: 0;
}

.accordion-button {
  padding: 0;
  border: none;
  text-align: left;
  font-family: var(--title-font);
  font-weight: 700;
}
.accordion-button:after {
  display: none;
}
.accordion-button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion-button:not(.collapsed) {
  color: var(--title-color);
  background-color: transparent;
}

.accordion-collapse {
  border: none;
}

.accordion-body {
  padding: 0;
}

.accordion-style1 .accordion-button {
  font-size: 22px;
  font-weight: 500;
  font-family: var(--title-font);
  padding: 18px 60px 18px 35px;
  background-color: #FAF6F0;
  margin: -3px;
  display: block;
  width: calc(100% + 6px);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.accordion-style1 .accordion-button:before {
  content: "\f107";
  font-family: var(--icon-font);
  position: absolute;
  right: 10px;
  top: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: 400;
  text-align: center;
  margin-top: -25px;
  background-color: var(--white-color);
  color: var(--body-color);
  font-size: 18px;
  border-radius: 50%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.accordion-style1 .accordion-button:hover, .accordion-style1 .accordion-button:not(.collapsed) {
  background-color: var(--vs-secondary-color);
  color: var(--white-color);
}
.accordion-style1 .accordion-button:hover:before, .accordion-style1 .accordion-button:not(.collapsed):before {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.accordion-style1 .accordion-item:last-of-type .accordion-button,
.accordion-style1 .accordion-item:first-of-type .accordion-button,
.accordion-style1 .accordion-button {
  border-radius: 30px 50px 30px 50px;
}
.accordion-style1 .accordion-item {
  margin-bottom: 20px;
  border: 3px solid transparent;
  border-radius: 30px 50px 30px 30px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}
.accordion-style1 .accordion-item:last-child {
  margin-bottom: 30px;
}
.accordion-style1 .accordion-item.active {
  border-color: #D8D8D8;
}
.accordion-style1 .accordion-body {
  padding: 20px 35px 20px 35px;
}

.faq-style2 {
  position: relative;
  background: #F0F6FA;
}

.play-btn-two {
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 127px;
  height: 127px;
  line-height: 127px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  font-size: 36px;
  color: var(--white-color);
  display: inline-block;
  z-index: 99;
  /* Extra small devices */
}
.play-btn-two:hover {
  color: var(--title-color);
  background-color: var(--theme-color2);
}
@media (max-width: 575px) {
  .play-btn-two {
    width: 90px;
    height: 90px;
    line-height: 90px;
    font-size: 25px;
  }
}
.play-btn-two::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 117px;
  height: 117px;
  border-radius: 50%;
  border: 2px solid var(--white-color);
  /* Extra small devices */
}
@media (max-width: 575px) {
  .play-btn-two::before {
    width: 80px;
    height: 80px;
  }
}

.title-area.faq2 {
  margin-bottom: 31px;
}
.title-area.faq2 h2 {
  /* Medium devices */
  /* Extra small devices */
  /* Extra small devices */
}
@media (max-width: 991px) {
  .title-area.faq2 h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .title-area.faq2 h2 {
    font-size: 35px;
  }
}
@media (max-width: 416px) {
  .title-area.faq2 h2 {
    font-size: 28px;
  }
}

.img-box3 {
  padding-right: 13px;
}

.accordion-style1.v2 {
  margin-left: 14px;
  position: absolute;
  width: 616px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  /* Medium devices */
  /* Medium Large devices */
  /* Large devices */
}
@media (max-width: 991px) {
  .accordion-style1.v2 {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .accordion-style1.v2 {
    width: 45%;
  }
}
@media (max-width: 1199px) {
  .accordion-style1.v2 {
    width: 100%;
    position: static;
    top: unset;
    -webkit-transform: unset;
            transform: unset;
  }
}

.accordion-style1.v2 .accordion-button,
.accordion-item:first-of-type .accordion-button {
  border-radius: 50px !important;
}

.accordion-style1.v2 .accordion-button {
  background-color: var(--white-color);
  color: var(--title-color);
  padding: 18px 60px 18px 65px;
  border: 2px solid var(--theme-color2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}
@media (max-width: 991px) {
  .accordion-style1.v2 .accordion-button {
    padding: 18px 60px 18px 70px;
  }
}
@media (max-width: 767px) {
  .accordion-style1.v2 .accordion-button {
    padding-left: 55px;
  }
}
@media (max-width: 416px) {
  .accordion-style1.v2 .accordion-button {
    line-height: 21px;
    padding: 10px 60px 10px 52px;
  }
}
.accordion-style1.v2 .accordion-button:hover {
  background-color: var(--vs-secondary-color);
  color: var(--white-color);
  border-color: transparent;
}

.accordion-style1.v2 .accordion-item.active {
  border-color: var(--vs-secondary-color);
  background-color: var(--white-color);
}

.accordion-style1.v2 .accordion-item.active .accordion-button {
  background-color: var(--vs-secondary-color);
  color: var(--white-color);
  border: transparent;
}

.accordion-style1.v2 .accordion-button:before {
  right: auto;
  left: 8px;
  background-color: var(--theme-color2);
}

.accordion-style1.v2 .accordion-button:hover:before, .accordion-style1.v2 .accordion-button:not(.collapsed):before {
  color: var(--title-color);
  content: "\f107";
}

.accordion-style1.v2 .accordion-button:hover:before, .accordion-style1.v2 .accordion-button:before {
  content: "\f105";
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .accordion-style1 .accordion-button {
    font-size: 18px;
    padding: 15px 45px 15px 25px;
  }
  .accordion-style1 .accordion-button::before {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    margin-top: -20px;
  }
  .accordion-style1 .accordion-body {
    padding: 20px 20px 20px 20px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .accordion-style1 .accordion-button {
    font-size: 16px;
    padding: 15px 40px 15px 20px;
  }
  .accordion-style1 .accordion-button::before {
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    margin-top: -16px;
    right: 6px;
  }
}
body.layout4 {
  overflow: unset;
}

