@charset "UTF-8";

:root {
  --body-bg: #ffffff;
  --theme-color: #ffd800;
  --secondary-color: #0c7735;
  --body-color: #555555;
  --title-color: #000000;
  --smoke-color: #f1f5f4;
  --light-color: #f8f9fa;
  --black-color: #000000;
  --white-color: #ffffff;
  --yellow-color: #fec624;
  --success-color: #28a745;
  --error-color: #dc3545;
  --border-color: #bfbfbf;
  --title-font: "Fredoka", sans-serif;
  --body-font: "DM Sans", 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;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  background-color: var(--body-bg);
  line-height: 28px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--title-color);
}
a:active, a:focus, a:hover, a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}

p {
  margin: 0 0 20px 0;
  color: var(--body-color);
  line-height: 1.8;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 48px;
}

.h2,
h2 {
  font-size: 40px;
}

.h3,
h3 {
  font-size: 36px;
}

.h4,
h4 {
  font-size: 30px;
}

.h5,
h5 {
  font-size: 20px;
}

.h6,
h6 {
  font-size: 16px;
}

/* Large devices */
@media (max-width: 1199px) {
  .h1,
  h1 {
    font-size: 40px;
  }
  .h2,
  h2 {
    font-size: 36px;
  }
  .h3,
  h3 {
    font-size: 30px;
  }
  .h4,
  h4 {
    font-size: 24px;
  }
  .h5,
  h5 {
    font-size: 20px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .h1,
  h1 {
    font-size: 36px;
  }
  .h2,
  h2 {
    font-size: 30px;
  }
  .h3,
  h3 {
    font-size: 26px;
  }
  .h4,
  h4 {
    font-size: 22px;
  }
  .h5,
  h5 {
    font-size: 18px;
  }
  .h6,
  h6 {
    font-size: 16px;
  }
}
/*------------------- 1.6. Extend -------------------*/
/*------------------- 1.7. Wordpress Default -------------------*/
/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
@media only screen and (min-width: 1300px) {
  .container-xxl,
  .container-xl,
  .container-lg,
  .container-md,
  .container-sm,
  .container {
    max-width: calc(var(--main-container) + var(--container-gutters));
    padding-left: calc(var(--container-gutters) / 2);
    padding-right: calc(var(--container-gutters) / 2);
  }
}
@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/*------------------- 2.2. Grid -------------------*/
@media (min-width: 767px) {
  .row:not([class*=gx-]) {
    --bs-gutter-x: 30px;
  }
}
.gy-gx {
  --bs-gutter-y: var(--bs-gutter-x);
}

.gy-30 {
  --bs-gutter-y: 30px;
}

@media (min-width: 1300px) {
  .gx-60 {
    --bs-gutter-x: 60px;
  }
}
/*------------------- 2.3. Input -------------------*/
select,
.form-control,
.form-select,
textarea,
input {
  height: 50px;
  padding: 0 45px 0 30px;
  border: 1px solid var(--border-color);
  color: var(--body-color);
  background-color: var(--body-bg);
  font-size: 14px;
  width: 100%;
  border-radius: 0px;
}
select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  background-color: var(--body-bg);
}
select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}
select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}
select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}
select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}

.form-select,
select {
  display: block;
  width: 100%;
  line-height: 1.5;
  vertical-align: middle;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

textarea.form-control,
textarea {
  min-height: 150px;
  padding-top: 16px;
  padding-bottom: 17px;
  border-radius: 0px;
}

input[type=checkbox] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type=checkbox]:checked ~ label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
input[type=checkbox] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}
input[type=checkbox] ~ label:before {
  content: "";
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 4px;
  background-color: var(--body-bg);
  border: 1px solid var(--border-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
  border-radius: 4px;
}

input[type=radio] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type=radio] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}
input[type=radio] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -3px;
  width: 20px;
  height: 20px;
  padding-left: 0.5px;
  font-size: 0.4em;
  line-height: 18.95px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--body-bg);
  color: transparent;
  transition: all 0.2s ease;
}
input[type=radio]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 16px;
}

.form-group {
  margin-bottom: var(--bs-gutter-x);
  position: relative;
}
.form-group > i {
  position: absolute;
  right: calc(var(--bs-gutter-x) / 2 + 30px);
  top: 17px;
  font-size: 16px;
  color: #A0ABB4;
}
.form-group.has-label > i {
  top: 48px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}
textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
  margin: 0;
  padding: 10px 15px;
  margin-top: 15px;
  border-radius: 4px;
}
.form-messages > pre:last-child {
  margin-bottom: 0;
}
.form-messages > pre:first-of-type {
  margin-top: 0;
}
.form-messages.success {
  background-color: var(--success-color);
  color: var(--white-color);
  display: block;
}
.form-messages.error {
  background-color: var(--error-color);
  color: var(--white-color);
  display: block;
}
.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}

/*------------------- 2.4. Slick Slider -------------------*/
.row > .slick-list {
  padding-left: 0;
  padding-right: 0;
}

.slick-track > [class*=col] {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.slick-track {
  min-width: 100%;
}

.slick-slide img {
  display: inline-block;
}

.slick-dots {
  list-style-type: none;
  padding: 0;
  margin: 40px 0 0 0;
  line-height: 0;
  text-align: center;
  height: max-content;
  line-height: 0;
}
.slick-dots li {
  display: inline-block;
  margin-right: 7px;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots button {
  font-size: 0;
  padding: 0;
  background-color: transparent;
  width: 70px;
  height: 4px;
  line-height: 3px;
  border: none;
  background-color: #CACACA;
  transition: all ease 0.4s;
  position: relative;
}
.slick-dots button:hover,
.slick-dots .slick-active button {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.slick-arrow {
  display: inline-block;
  padding: 0;
  position: absolute;
  background-color: var(--secondary-color);
  top: 50%;
  border: none;
  left: var(--pos-x, -150px);
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: var(--icon-font-size, 24px);
  margin-top: calc(var(--icon-size, 120px) / -2);
  z-index: 2;
  border-radius: 50%;
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
}
.slick-arrow.default {
  position: relative;
  --pos-x: 0;
  margin-top: 0;
}
.slick-arrow.slick-next {
  right: var(--pos-x, -150px);
  left: auto;
}
.slick-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: transparent;
}

.arrow-margin .slick-arrow {
  top: calc(50% - 30px);
}

.arrow-wrap .slick-arrow {
  opacity: 0;
  visibility: hidden;
}
.arrow-wrap:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

/* Extra large devices */
@media (max-width: 1300px) {
  .slick-arrow {
    --arrow-horizontal: -20px;
  }
}
/* Medium Large devices */
@media (max-width: 1299px) {
  .slick-arrow {
    --arrow-horizontal: 40px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .slick-arrow {
    --icon-size: 40px;
    margin-right: 40px;
  }
  .slick-arrow.slick-next {
    margin-right: 0;
    margin-left: 40px;
  }
  .slick-dots {
    margin: 8px 0 38px 0;
  }
}
/*------------------- 2.5. Mobile Menu -------------------*/
.vs-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.vs-menu-wrapper .mobile-logo {
  padding-bottom: 0;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: var(--body-bg);
}
.vs-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}
.vs-menu-wrapper .vs-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 33px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
}
.vs-menu-wrapper .vs-menu-toggle:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.vs-menu-wrapper .vs-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: var(--body-bg);
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.vs-menu-wrapper.vs-body-visible {
  opacity: 1;
  visibility: visible;
}
.vs-menu-wrapper.vs-body-visible .vs-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.vs-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}
.vs-mobile-menu::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(242, 0, 58, 0.2);
  background-color: #000;
}
.vs-mobile-menu::-webkit-scrollbar {
  width: 6px;
  background-color: #000;
}
.vs-mobile-menu::-webkit-scrollbar-thumb {
  background-color: var(--theme-color);
}
.vs-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.vs-mobile-menu ul li {
  border-bottom: 1px solid var(--border-color);
  list-style-type: none;
}
.vs-mobile-menu ul li li:first-child {
  border-top: 1px solid var(--border-color);
}
.vs-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
  font-weight: 700;
}
.vs-mobile-menu ul li a:before {
  content: "\f105";
  font-family: var(--icon-font);
  position: relative;
  left: 0;
  top: 0;
  margin-right: 10px;
  display: inline-block;
}
.vs-mobile-menu ul li.vs-active > a {
  color: var(--theme-color);
}
.vs-mobile-menu ul li.vs-active > a:before {
  transform: rotate(90deg);
}
.vs-mobile-menu ul li ul li {
  padding-left: 20px;
}
.vs-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}
.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(242, 0, 58, 0.5);
  border-radius: 50%;
}
.vs-mobile-menu ul .vs-item-has-children > a .vs-mean-expand:before {
  content: "\f067";
  font-family: var(--icon-font);
}
.vs-mobile-menu ul .vs-item-has-children.vs-active > a .vs-mean-expand:before {
  content: "\f068";
}
.vs-mobile-menu > ul {
  padding: 0 40px;
}
.vs-mobile-menu > ul > li:last-child {
  border-bottom: none;
}

.vs-menu-toggle {
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 24px;
  border: none;
  background-color: var(--theme-color);
  color: var(--black-color);
  display: inline-block;
  border-radius: 0;
}
.vs-menu-toggle.style-text, .vs-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}
.vs-menu-toggle.style-text i, .vs-menu-toggle.style-text-white i {
  margin-right: 10px;
}
.vs-menu-toggle.style-text-white {
  color: var(--white-color);
}

@media (max-width: 400px) {
  .vs-menu-wrapper .vs-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .vs-mobile-menu > ul {
    padding: 0 20px;
  }
}
/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 999;
  background-color: var(--body-bg);
}
.preloader .vs-btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 0;
}
.preloader-inner img {
  display: block;
  margin: 0 auto 10px auto;
}

.loader {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  border: 3px solid;
  border-color: var(--theme-color) var(--theme-color) transparent transparent;
  box-sizing: border-box;
  animation: rotationloader 1.5s linear infinite;
}
.loader::after, .loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  border: 3px solid;
  border-color: transparent transparent #bfe603 #bfe603;
  width: 102px;
  height: 102px;
  border-radius: 50%;
  box-sizing: border-box;
  animation: rotationBackloader 0.7s linear infinite;
  transform-origin: center center;
}
.loader::before {
  width: 94px;
  height: 94px;
  border-color: var(--theme-color) var(--theme-color) transparent transparent;
  animation: rotationloader 2s linear infinite;
}

@keyframes rotationloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotationBackloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/*------------------- 3.2. Buttons -------------------*/
.vs-btn {
  display: inline-block;
  border: none;
  text-align: center;
  text-transform: capitalize;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--title-font);
  border: 2px solid var(--theme-color);
  background-color: transparent;
  color: var(--title-color);
  line-height: 1;
  padding: 18px 30px;
  border-radius: 9999px;
  transition: all 0.5s ease;
}
.vs-btn:hover {
  color: var(--white-color);
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.icon-btn {
  width: var(--icon-size, 50px);
  height: var(--icon-size, 50px);
  line-height: var(--icon-size, 50px);
  background-color: var(--smoke-color);
  border: none;
  padding: 0;
  text-align: center;
  color: var(--title-color);
  border-radius: 50%;
  transition: all ease 0.4s;
  position: relative;
  z-index: 1;
}
.icon-btn:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
}

.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.play-btn > i {
  display: inline-block;
  width: var(--icon-size, 100px);
  height: var(--icon-size, 100px);
  line-height: var(--icon-size, 100px);
  text-align: center;
  background-color: var(--white-color);
  color: var(--secondary-color);
  font-size: var(--icon-font-size, 1.5em);
  border-radius: 50%;
  z-index: 1;
  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%;
  transition: all ease 0.4s;
}
.play-btn:after {
  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-family: var(--title-font);
  color: var(--title-color);
  font-weight: 500;
  font-size: 18px;
  display: inline-block;
  line-height: 1;
  position: relative;
  text-transform: capitalize;
  transition: all ease 0.3s;
}
.link-btn i {
  margin-right: 7px;
}
.link-btn:hover {
  color: var(--theme-color);
}

.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;
  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;
  transition: all ease 0.4s;
}
.scroll-btn:focus i, .scroll-btn:hover i {
  background-color: var(--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;
  transition: all ease 0.4s;
  z-index: 96;
}
.scrollToTop.show {
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}

.bar-btn {
  border: none;
  display: inline-block;
  padding: 0;
  line-height: 1;
  font-size: 25px;
  vertical-align: middle;
  background-color: transparent;
  width: 25px;
  height: 18px;
  position: relative;
}
.bar-btn .bar:before {
  content: "";
  width: 100%;
  height: 2px;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 0;
  transition: all ease 0.4s;
  background-color: var(--white-color);
}
.bar-btn .bar:nth-child(2):before {
  top: 50%;
  margin-top: -1.5px;
  width: 25px;
  right: -6px;
}
.bar-btn .bar:nth-child(3):before {
  top: auto;
  bottom: 0;
}

/* Small devices */
@media (max-width: 767px) {
  .play-btn {
    --icon-size: 60px;
  }
  .scrollToTop {
    right: 20px;
  }
  .scrollToTop.show {
    bottom: 20px;
  }
}
/*------------------- 3.3. Titles -------------------*/
.title-img {
  margin-bottom: 10px;
}

.title-area {
  margin-bottom: 40px;
}
.title-area .sec-title {
  margin-bottom: 0;
}

/* Small devices */
@media (max-width: 767px) {
  .title-arraw {
    display: none;
  }
}
/*------------------- 3.4. Common -------------------*/
.image-scale-hover {
  overflow: hidden;
}
.image-scale-hover img {
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.image-scale-hover:hover img {
  transform: scale(1.2);
}

.shape-mockup {
  position: absolute;
}

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

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

.z-index {
  z-index: 0;
}

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

.media-body {
  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(--black-color);
  padding: 0.35em 0.55em;
  border-radius: 50%;
}

@media (min-width: 1921px) {
  .d-hd-none {
    display: none !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-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;
}

.bg-theme2 {
  background-color: var(--secondary-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%;
  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 -------------------*/
.jump-reverse-img,
.jump-img,
.jump-reverse,
.jump {
  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 {
  animation: rotate var(--duration, 12s) infinite linear;
}

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

.moving {
  animation: moving 8s linear infinite;
}

@keyframes moving {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
.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 {
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

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

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 0.4;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(var(--rotate-angle, 360deg));
  }
}
@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-70px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes fadein-custom {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes jumpping {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40% {
    transform: translate3d(0, var(--jump-y, 20px), var(--jump-x, 0));
  }
}
/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.widget_nav_menu ul,
.widget_pages ul,
.widget_meta ul,
.widget_archive ul,
.widget_categories ul {
  padding: 0;
  margin: -0.4em 0 0 0;
  list-style: none;
}
.widget_nav_menu .children,
.widget_pages .children,
.widget_meta .children,
.widget_archive .children,
.widget_categories .children {
  margin-left: 10px;
}

.widget_meta ul,
.widget_nav_menu ul,
.widget_pages ul,
.widget_archive ul {
  margin-bottom: -20px;
}
.widget_meta ul ul,
.widget_nav_menu ul ul,
.widget_pages ul ul,
.widget_archive ul ul {
  margin-bottom: 0;
}
.widget_meta a,
.widget_nav_menu a,
.widget_pages a,
.widget_archive a {
  position: relative;
  color: #444444;
  padding-left: 15px;
  margin-bottom: 12px;
  display: block;
}
.widget_meta a:before,
.widget_nav_menu a:before,
.widget_pages a:before,
.widget_archive a:before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: -1px;
  font-family: var(--icon-font);
}
.widget_meta a:after,
.widget_nav_menu a:after,
.widget_pages a:after,
.widget_archive a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--theme-color);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.4s;
}
.widget_meta a:hover,
.widget_nav_menu a:hover,
.widget_pages a:hover,
.widget_archive a:hover {
  color: var(--theme-color);
}
.widget_meta a:hover:after,
.widget_nav_menu a:hover:after,
.widget_pages a:hover:after,
.widget_archive a:hover:after {
  width: 100%;
  opacity: 1;
  visibility: visible;
}
.widget_meta li,
.widget_nav_menu li,
.widget_pages li,
.widget_archive li {
  display: block;
  position: relative;
}
.widget_meta li > span,
.widget_nav_menu li > span,
.widget_pages li > span,
.widget_archive li > span {
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 14px;
  font-weight: 700;
  color: var(--title-color);
  background-color: var(--white-color);
  right: 5px;
  top: 5px;
  z-index: 1;
  display: inline-block;
  text-align: center;
  position: absolute;
  transition: all ease 0.4s;
  border-radius: 50%;
}

.widget_categories ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget_categories a {
  display: block;
  font-family: var(--body-font);
  color: var(--black-color);
  background-color: #f3f3f3;
  font-size: 16px;
  padding: 19px 60px 19px 30px;
  margin: 0 0 3px 0;
  font-weight: 700;
  line-height: 1;
  border-radius: 9999px;
  transition: color ease 0.2s, background-color ease 0.4s;
}
.widget_categories a:hover {
  background-color: var(--theme-color);
  color: var(--title-color);
}
.widget_categories li {
  display: block;
  position: relative;
}
.widget_categories li > span {
  width: 44px;
  height: 44px;
  line-height: 44px;
  font-size: 14px;
  font-weight: 700;
  color: var(--title-color);
  background-color: var(--white-color);
  right: 5px;
  top: 5px;
  z-index: 1;
  display: inline-block;
  text-align: center;
  position: absolute;
  transition: all ease 0.4s;
  border-radius: 50%;
}

.widget_meta a {
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid #d9d9d9;
  display: block;
  padding-left: 0;
}
.widget_meta a:after, .widget_meta a:before {
  display: none;
}
.widget_meta > ul {
  margin-bottom: -0.3em;
}
.widget_meta > ul > li:last-child a {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

.widget {
  padding: var(--widget-padding-y, 40px) var(--widget-padding-x, 40px);
  border: 1px solid var(--border-color);
  position: relative;
  margin-bottom: 20px;
}
.widget select,
.widget input {
  height: 60px;
  border: none;
  background-color: var(--input-bg, #F0F4F5);
  border-radius: 9999px;
}

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

.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 20px;
  line-height: 1;
  color: var(--theme-color);
  border-left: 1px solid var(--theme-color);
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}

.wp-block-tag-cloud a,
.tagcloud a {
  display: inline-block;
  border: 2px solid var(--border-color);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 12px 22px;
  margin-right: 5px;
  margin-bottom: 10px;
  color: var(--title-color);
  background-color: transparent;
  border-radius: 2px;
  position: relative;
  z-index: 1;
}
.wp-block-tag-cloud a:before,
.tagcloud a:before {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  background-color: var(--black-color);
  width: 9px;
  height: 8px;
  z-index: -1;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transition: all ease 0.4s;
}
.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
  background-color: var(--theme-color);
  color: var(--black-color) !important;
  border-color: transparent;
}
.wp-block-tag-cloud a:hover:before,
.tagcloud a:hover:before {
  background-color: var(--black-color);
}

.tagcloud {
  margin-right: -5px;
  margin-bottom: -10px;
}

.recent-post {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 20px;
}
.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.recent-post .media-img {
  margin-right: 20px;
  width: 80px;
}
.recent-post .media-img img {
  width: 100%;
}
.recent-post .post-title {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 -0.1em 0;
}
.recent-post .recent-post-meta {
  margin: -0.15em 0 0 0;
}
.recent-post .recent-post-meta a {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  color: var(--secondary-color);
}
.recent-post .recent-post-meta a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.sidebar-area {
  margin-bottom: -10px;
}
.sidebar-area .newsletter-form .vs-btn:hover {
  color: var(--secondary-color);
  background-color: var(--white-color);
}

.widget_newsletter {
  background-color: var(--secondary-color);
  border: none;
}
.widget_newsletter:before {
  display: none;
}
.widget_newsletter .widget_title {
  color: var(--white-color);
  border-bottom-color: rgba(231, 231, 231, 0.14);
}
.widget_newsletter .form_text {
  color: #cfcfcf;
  margin-top: -0.45em;
}
.widget_newsletter input {
  height: 56px;
  color: #444444;
  margin-bottom: 15px;
  border-radius: 9999px;
}
.widget_newsletter .vs-btn {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  width: 100%;
}
.widget_newsletter .vs-btn:hover {
  border-color: var(--white-color);
}

.widget_shopping_cart {
  text-align: left;
}
.widget_shopping_cart ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.widget_shopping_cart .mini_cart_item {
  position: relative;
  border-bottom: 1px solid var(--theme-color);
  padding: 0 0 32px 0px;
  margin: 0 0 27px 0;
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.widget_shopping_cart .mini_cart_item a {
  color: var(--title-color);
}
.widget_shopping_cart .mini_cart_item > a > img {
  max-width: 80px;
  margin-right: 15px;
}
.widget_shopping_cart .remove {
  position: absolute;
  right: 0;
  top: 0;
  color: var(--title-color);
  line-height: 1;
  font-size: 18px;
}
.widget_shopping_cart .remove:hover {
  color: var(--theme-color);
}
.widget_shopping_cart .img {
  position: absolute;
  left: 0;
  top: 3px;
  width: 90px;
  height: 90px;
  display: inline-block;
  border: 1px solid var(--border-color);
}
.widget_shopping_cart .product-title {
  font-size: 14px;
  color: var(--title-color);
  font-weight: 400;
  margin-bottom: 0;
  display: inline-block;
}
.widget_shopping_cart .amount {
  display: block;
  font-weight: 600;
  color: var(--black-color);
  font-size: 16px;
}
.widget_shopping_cart .quantity {
  display: inline-flex;
  margin-top: 0px;
}
.widget_shopping_cart .qut-btn {
  border: 1px solid var(--border-color);
  background-color: transparent;
  display: inline-block;
  background-color: transparent;
  width: 25px;
  height: 25px;
  padding: 0;
  font-size: 12px;
  z-index: 1;
  position: relative;
}
.widget_shopping_cart .qut-btn:hover {
  background-color: var(--title-color);
  border-color: transparent;
  color: var(--white-color);
}
.widget_shopping_cart .qty-input {
  border: 1px solid var(--border-color);
  text-align: center;
  width: max-content;
  min-width: 40px;
  font-size: 12px;
  padding: 0;
  height: 25px;
  margin: 0 -1px;
}
.widget_shopping_cart .subtotal {
  float: right;
  text-align: right;
  font-size: 12px;
  margin-top: 19px;
}
.widget_shopping_cart .subtotal > span:not(.amount) {
  color: var(--body-color);
  font-weight: 300;
}
.widget_shopping_cart .subtotal .amount {
  font-size: 12px;
  display: inline-block;
}
.widget_shopping_cart .total {
  color: var(--title-color);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 25px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.widget_shopping_cart .total .amount {
  font-size: inherit;
  display: inline-block;
  color: var(--black-color);
}
.widget_shopping_cart .buttons {
  margin: 0;
  gap: 15px;
}
.widget_shopping_cart .buttons .vs-btn {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.widget_shopping_cart .buttons .vs-btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }
  .recent-post .post-title {
    font-size: 18px;
    line-height: 24px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .sidebar-area {
    padding-top: 30px;
  }
  .wp-block-tag-cloud a,
  .tagcloud a {
    padding: 10.5px 18px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .widget_title {
    font-size: 22px;
  }
}
/* 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 {
  color: var(--white-color);
  font-size: 24px;
  margin-bottom: 48px;
  padding-bottom: 0;
  border: none;
  text-transform: capitalize;
}
.footer-widget .widget_title::before {
  display: none;
}
.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 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: max-content;
  display: block;
  border: none;
  font-size: 16px;
  font-weight: 400;
  color: #cccccc;
  margin-bottom: 16px;
  max-width: 100%;
  padding: 0;
  background-color: transparent;
  position: relative;
}
.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-logo {
  margin-bottom: 18px;
}

.footer-text {
  color: #cccccc;
  margin-bottom: 32px;
}

/* Large devices */
@media (max-width: 1199px) {
  .footer-widget {
    margin-bottom: 60px;
  }
  .footer-widget .widget_title {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .footer-widget .footer-menu a {
    font-size: 16px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .footer-widget .widget_title {
    font-size: 22px;
  }
}
/*------------------- 4.2. Header  -------------------*/
.vs-header {
  position: relative;
  z-index: 41;
}

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

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

.main-menu {
  text-align: center;
}
.main-menu a {
  display: block;
  position: relative;
  font-family: var(--title-font);
  font-weight: 500;
  font-size: 18px;
  color: var(--title-color);
  text-transform: capitalize;
  /* Extra large devices */
}
@media (max-width: 1300px) {
  .main-menu a {
    font-size: 16px;
  }
}
.main-menu a:hover {
  color: var(--secondary-color);
}
.main-menu > ul > li {
  margin: 0 16px;
}
.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);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.1);
  visibility: hidden;
  min-width: 190px;
  width: max-content;
  padding: 7px;
  left: -14px;
  margin-top: 50px;
  opacity: 0;
  z-index: -1;
  border-bottom: 3px solid var(--theme-color);
  box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.09), 0px 3px 0px 0px rgba(231, 13, 60, 0.004);
  transform-origin: top center;
  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: 32px;
  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: 3.3em;
  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(--secondary-color);
  font-weight: 700;
  background-color: var(--body-bg);
  box-shadow: inset 0px 2px 4px 0px rgba(12, 119, 53, 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 ul.mega-menu {
  display: flex;
  justify-content: space-between;
  text-align: left;
  width: 100%;
  max-width: var(--main-container);
  padding: 20px 15px 23px 15px;
  left: 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;
}

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

.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 36px 0 0;
  line-height: 23px;
}
.header-links li:last-child {
  margin-right: 0;
}
.header-links i {
  color: var(--title-color);
  margin-right: 10px;
}
.header-links a {
  color: inherit;
}
.header-links a:hover {
  color: var(--theme-color);
}

.header-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.header-icons .link-btn {
  margin-right: 10px;
}
.header-icons .link-btn:hover {
  color: var(--secondary-color);
}

.header-layout1 {
  background-color: var(--theme-color);
  padding-bottom: 0.5px;
}
.header-layout1 .will-sticky .sticky-active.active .menu-area {
  margin-bottom: 0;
}
.header-layout1 .menu-area {
  padding-left: 15px;
  padding-right: 15px;
  background-color: var(--white-color);
  margin-bottom: -45px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
  max-width: var(--main-container);
}
.header-layout1 .header-top {
  padding: 15px 0;
}
.header-layout1 .header-top .social-style1 a:hover {
  color: var(--secondary-color);
}
.header-layout1 .header-top .header-links a:hover {
  color: var(--secondary-color);
}
.header-layout1 .social-style1 a:hover,
.header-layout1 .header-links a:hover {
  color: var(--title-color);
  text-decoration: underline;
}

.header-layout2 {
  position: absolute;
  width: 100%;
  top: 25px;
}
.header-layout2 .header-links a:hover {
  color: var(--secondary-color);
}
.header-layout2 .social-style1 a:hover {
  color: var(--secondary-color);
}
.header-layout2 .header-top {
  padding: 15px 20px;
  background-color: var(--theme-color);
}
.header-layout2 .menu-area {
  background-color: var(--white-color);
  padding: 0 20px;
}

.header-layout3 .header-top {
  background-color: var(--white-color);
  padding: 15px 0;
}
.header-layout3 .header-logo {
  max-width: 100%;
  padding: 20px 0;
}
.header-layout3 .header-logo .logo2 {
  display: none;
}
.header-layout3 .sticky-wrapper {
  background-color: transparent;
  position: absolute;
  width: 100%;
  margin-top: 0px;
}
.header-layout3 .sticky-wrapper.will-sticky .header-icons .link-btn {
  color: var(--black-color);
}
.header-layout3 .sticky-wrapper.will-sticky .header-icons .link-btn:hover {
  color: var(--theme-color);
}
.header-layout3 .sticky-wrapper.will-sticky .header-icons .vs-menu-toggle {
  color: var(--black-color);
}
.header-layout3 .sticky-wrapper.will-sticky .header-icons .vs-menu-toggle:hover {
  color: var(--theme-color);
}
.header-layout3 .sticky-wrapper.will-sticky .header-icons .vs-menu-toggle .bar-btn .bar:before {
  background-color: var(--black-color);
}
.header-layout3 .sticky-wrapper.will-sticky .header-logo .logo1 {
  display: none;
}
.header-layout3 .sticky-wrapper.will-sticky .header-logo .logo2 {
  display: block;
}
.header-layout3 .link-btn {
  color: var(--white-color);
}
.header-layout3 .link-btn:hover {
  color: var(--theme-color);
}
.header-layout3 .header-icons .vs-menu-toggle {
  margin-right: 30px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  font-size: 18px;
}
.header-layout3 .header-icons .vs-menu-toggle .bar-btn {
  margin-right: 20px;
  margin-bottom: 0;
}
.header-layout3 .header-icons .vs-menu-toggle:hover .bar-btn .bar::before {
  background-color: var(--theme-color) !important;
}
.header-layout3 .header-icons .link-btn i {
  margin-right: 14px;
}

.main-menu2 .vs-menu-toggle {
  width: initial;
  height: auto;
  background-color: unset;
  color: var(--white-color);
  font-weight: 400;
}
.main-menu2 .vs-menu-toggle:hover {
  color: var(--theme-color);
}
.main-menu2 .searchBoxTggler {
  color: var(--white-color);
  margin-right: 0;
  font-weight: 400;
}
.main-menu2 .searchBoxTggler:hover {
  color: var(--theme-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .main-menu {
    text-align: right;
  }
  .header-top {
    display: none;
  }
  .header-layout3 .header-logo {
    text-align: left;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .header-logo {
    max-width: 150px;
    padding: 15px 0;
  }
}
/*------------------- 4.3. Footer  -------------------*/
.widget-area {
  padding-top: 80px;
  padding-bottom: 20px;
}

.footer-layout1 {
  padding: 70px 0 60px;
}
.footer-layout1 .widget_categories a {
  margin-bottom: 28px;
}
.footer-layout1 .widget_title::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: var(--theme-color);
  bottom: -8px;
  left: 0;
}

.media-style1 {
  display: flex;
  padding-bottom: 30px;
  border-bottom: 3px solid rgba(255, 217, 0, 0.3215686275);
  transition: all 0.5s ease;
}
.media-style1:hover {
  border-color: var(--theme-color);
}
.media-style1 .media-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--theme-color);
  margin-right: 30px;
}
.media-style1 .media-body .media-title {
  color: var(--body-bg);
  text-transform: capitalize;
  font-size: 18px;
}
.media-style1 .media-body .media-info {
  font-size: 16px;
  color: var(--smoke-color);
  margin-bottom: 0;
}
.media-style1 .media-body .media-info a {
  color: var(--white-color);
  transform: all 0.5s ease;
}
.media-style1 .media-body .media-info a:hover {
  color: var(--theme-color);
}

.footer-social a {
  color: var(--white-color);
}
.footer-social a:hover {
  color: var(--theme-color);
}
.footer-social a:not(:last-child) {
  margin-right: 18px;
}

.newsletter-form .search-btn {
  position: relative;
}
.newsletter-form .search-btn .form-control {
  margin-bottom: 0;
}
.newsletter-form .search-btn .icon-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--theme-color);
}
.newsletter-form .search-btn .icon-btn:hover {
  background-color: var(--secondary-color);
}

.copyright-wrap {
  text-align: center;
  padding: 29px 0 0 0;
}

.copyright-text {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
}
.copyright-text a {
  font-weight: 700;
  color: inherit;
  text-transform: uppercase;
}
.copyright-text a:hover {
  color: var(--theme-color);
}

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

.subscribe-layout1 {
  position: relative;
  z-index: 9;
  transform: translateY(48%);
}

.footer-layout2 {
  clip-path: polygon(0 0, 100% 12%, 100% 100%, 0 100%);
  padding-top: 140px;
  padding-bottom: 50px;
}
.footer-layout2 .widget_title {
  position: relative;
}
.footer-layout2 .widget_title::after {
  content: "";
  position: absolute;
  width: 35px;
  height: 3px;
  background-color: var(--theme-color);
  bottom: -8px;
  left: 0;
}
.footer-layout2 .widget-area .widget::before {
  display: none;
}
.footer-layout2 .footer-media .media-style1 {
  display: flex;
  padding-bottom: 0;
  border-bottom: none;
  align-items: center;
}
.footer-layout2 .footer-media .media-style1:not(:last-child) {
  margin-bottom: 12px;
}
.footer-layout2 .footer-media .media-style1 .media-icon {
  width: 50PX;
  height: 50px;
  line-height: 50px;
}
.footer-layout2 .widget_categories a {
  margin-bottom: 28px;
}

/* Medium devices */
@media (max-width: 991px) {
  .footer-layout2 {
    clip-path: none;
    padding-top: 80px;
  }
}
/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  margin: 20px 0 0 0;
  list-style-type: none;
  position: relative;
  text-align: center;
}
.breadcumb-menu li {
  display: inline-block;
  list-style: none;
  position: relative;
}
.breadcumb-menu li:after {
  content: "-";
  position: relative;
  margin-left: 14px;
  margin-right: 9px;
}
.breadcumb-menu li:last-child:after {
  display: none;
}
.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  word-break: break-word;
  white-space: normal;
  font-weight: 400;
  font-size: 18px;
  color: var(--white-color);
  font-family: var(--body-font);
  text-transform: uppercase;
}
.breadcumb-menu .fa-home-lg {
  margin-right: 10px;
}
.breadcumb-menu a:hover {
  color: var(--theme-color);
}

.breadcumb-title {
  color: var(--white-color);
  margin: -0.25em 0 -0.2em 0;
  font-size: 75px;
  font-weight: 600;
  text-transform: capitalize;
  text-align: center;
}

.breadcumb-wrapper {
  background-color: var(--secondary-color);
  background-size: cover;
  padding-top: 158px;
  padding-bottom: 120px;
}

/* Small devices */
@media (max-width: 767px) {
  .breadcumb-title {
    font-size: 50px;
  }
}
/*------------------- 4.5. Pagination  -------------------*/
.vs-pagination {
  margin-bottom: 30px;
}
.vs-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.vs-pagination span,
.vs-pagination a {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--body-font);
  color: var(--title-color);
  display: inline-block;
  border: 1px solid var(--border-color);
}
.vs-pagination span:hover,
.vs-pagination a:hover {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.vs-pagination li {
  display: inline-block;
  margin: 0 3px;
  list-style-type: none;
}
.vs-pagination li:first-child {
  margin-left: 0;
}
.vs-pagination li:first-child a {
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
}
.vs-pagination li:first-child a:hover {
  color: var(--body-color);
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.vs-pagination li:last-child {
  margin-right: 0;
}
.vs-pagination li:last-child a {
  color: var(--white-color);
  border: 1px solid var(--secondary-color);
  background-color: var(--secondary-color);
}
.vs-pagination li:last-child a:hover {
  color: var(--body-color);
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}

/* Small devices */
@media (max-width: 767px) {
  .vs-pagination a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 14px;
  }
  .vs-pagination li {
    margin: 0 2px;
  }
}
/*------------------- 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);
  padding: 43px 50px 42px 35px;
  margin: 35px 0;
}
blockquote p {
  font-family: inherit;
  margin-bottom: 0 !important;
  line-height: 1.5;
  color: var(--white-color);
  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 {
  background-color: var(--secondary-color);
  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%;
  transform: translateY(-50%);
  color: var(--theme-color);
  opacity: 0.2;
}
blockquote.vs-quote p {
  font-size: 20px;
  font-weight: 400;
  font-style: normal;
}

.blog-meta span,
.blog-meta a {
  display: inline-block;
  margin-right: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  font-family: var(--title-font);
  transition: all 0.5s ease;
}
.blog-meta span:last-child,
.blog-meta a:last-child {
  margin-right: 0;
}
.blog-meta span i,
.blog-meta a i {
  margin-right: 10px;
  color: var(--secondary-color);
  transition: all 0.5s ease;
}
.blog-meta a:hover {
  color: var(--theme-color);
}
.blog-meta a:hover i {
  color: var(--theme-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: 700;
  margin: 0 15px 0 0;
  display: inline-block;
}

.share-links {
  margin: 50px 0 50px 0;
  padding: 17px 30px;
  background-color: var(--light-color);
}
.share-links .row {
  align-items: center;
  --bs-gutter-y: 15px;
}
.share-links .tagcloud {
  display: inline-block;
}
.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: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 16px;
  color: var(--title-color);
  text-align: center;
  display: block;
  border: 1px solid var(--border-color);
  border-radius: 50%;
}
.share-links .social-links a:hover {
  color: var(--black-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.blog-inner-author {
  font-size: 16px;
  text-transform: uppercase;
  font-family: var(--body-font);
  color: var(--title-color);
  font-weight: 700;
}
.blog-inner-author a {
  color: inherit;
}
.blog-inner-author .blog-date {
  margin-left: 3px;
}
.blog-inner-author .blog-date:before {
  content: "-";
  margin-right: 5px;
}
.blog-inner-author img {
  width: 67px;
  height: 67px;
  padding: 3px;
  margin-right: 10px;
  background-color: var(--theme-color);
  border-radius: 50%;
}

.blog-single {
  position: relative;
  margin-bottom: 50px;
  border: 1px solid #bfbfbf;
}
.blog-single .blog-title {
  font-size: 30px;
  margin-bottom: 15px;
  line-height: 1.2;
}
.blog-single .blog-meta {
  margin-bottom: 4px;
}
.blog-single .blog-text {
  margin-bottom: 26px;
}
.blog-single .blog-audio,
.blog-single .blog-img {
  position: relative;
  background-color: var(--smoke-color);
  margin: -1px;
}
.blog-single .blog-audio {
  line-height: 1;
}
.blog-single .blog-img .slick-arrow {
  --pos-x: 30px;
  border: none;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: var(--white-color);
  color: var(--secondary-color);
  border-radius: 50%;
  font-size: 20px;
}
.blog-single .blog-img .slick-arrow:hover {
  background-color: var(--secondary-color);
  color: var(--white-color);
}
.blog-single .blog-img .play-btn {
  --icon-size: 60px;
  --icon-font-size: 20px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin: calc(var(--icon-size) / -2) 0 0 calc(var(--icon-size) / -2);
}
.blog-single .blog-content {
  overflow: hidden;
  padding: 26px 40px 35px 40px;
}
.blog-single:hover .blog-img .slick-arrow {
  opacity: 1;
  visibility: visible;
}

.blog-details .vs-blog .blog-content {
  padding: 0;
  border: none;
}

.blog-layout1 .title-area {
  margin-bottom: 38px;
}
.blog-layout1 .blog-title {
  font-size: 26px;
  margin-bottom: -5px;
}
.blog-layout1 .blog-inner-author {
  display: flex;
  align-items: center;
  transform: translateY(30px);
}
.blog-layout1 .blog-inner-author::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  max-height: 38px;
  background-color: var(--theme-color);
  right: -41px;
  z-index: -1;
}
.blog-layout1 .blog-single {
  margin-bottom: 30px;
}
.blog-layout1 .blog-single .blog-content {
  overflow: unset;
  padding: 26px 40px 0px 40px;
}
.blog-layout1 .blog-btn {
  margin-top: 30px;
  text-align: center;
}
.blog-layout1 .blog-btn .vs-btn {
  border: 2px solid var(--theme-color);
  background-color: transparent;
}
.blog-layout1 .blog-btn .vs-btn:hover {
  color: var(--white-color);
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.list-style1 .list-unstyled img {
  margin-right: 15px;
}
.list-style1 .list-unstyled li {
  margin-bottom: 10px;
}

.blog-layout2 .blog-single .blog-content {
  overflow: hidden;
  padding: 40px 40px 40px 0px;
}
.blog-layout2 .blog-single .blog-title {
  font-size: 24px;
}
.blog-layout2 .blog-single .blog-text {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.blog-layout2 .blog-single .blog-img {
  transform: translateX(-15px);
}
.blog-layout2 .blog-single .blog-img img {
  width: 100%;
}
.blog-layout2 .blog-btn {
  text-align: center;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .blog-layout1 .blog-single .blog-content {
    padding: 26px 30px 30px 30px;
  }
  .blog-layout1 .blog-single .blog-title {
    font-size: 20px;
  }
  .blog-layout1 .blog-inner-author {
    padding-top: 20px;
    transform: translateY(0px);
  }
  .blog-layout1 .blog-inner-author::after {
    display: none;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  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-space-y: 40px;
    --blog-space-x: 30px;
  }
  .blog-single .blog-title {
    font-size: 30px;
  }
  .blog-layout1 .blog-single .blog-content {
    padding: 26px 30px 30px 30px;
  }
  .blog-layout1 .blog-single .blog-title {
    font-size: 20px;
  }
  .blog-layout1 .blog-inner-author {
    padding-top: 20px;
    transform: translateY(0px);
  }
  .blog-layout1 .blog-inner-author::after {
    display: none;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .blog-layout1 .blog-inner-author {
    padding: 20px 0 0 0;
    transform: translateY(0px);
  }
  .blog-layout1 .blog-inner-author::after {
    display: none;
  }
  .blog-layout1 .blog-single {
    margin-bottom: 0;
  }
  .blog-layout2 .blog-single .blog-img {
    transform: unset;
    overflow: hidden;
  }
  .blog-layout2 .blog-single .blog-content {
    overflow: hidden;
    padding: 30px;
  }
}
/* 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;
    transform: none;
    right: 20px;
    bottom: 20px;
  }
  blockquote.vs-quote p {
    font-size: 18px;
  }
  .share-links {
    padding: 17px 20px;
  }
  .share-links-title {
    font-size: 18px;
    display: block;
    margin: 0 0 10px 0;
  }
  .blog-single {
    --blog-space-y: 40px;
    --blog-space-x: 20px;
  }
  .blog-single:not(.has-post-thumbnail) .blog-content {
    padding: 40px 30px;
  }
  .blog-single .blog-title {
    font-size: 24px;
    line-height: 1.6;
  }
  .blog-single .blog-meta > span:not(:last-child):after,
  .blog-single .blog-meta a:not(:last-child):after {
    content: "";
    margin: 0 10px 0 14px;
  }
  .blog-details:not(.has-post-thumbnail) .blog-content {
    padding: 0;
  }
  .blog-layout1 .blog-inner-author {
    padding: 20px 0 0 0;
  }
  .blog-layout1 .blog-inner-author::after {
    display: none;
  }
  .blog-layout1 .bran-img {
    padding: 10px;
  }
}
/*------------------- 4.7. Comments  -------------------*/
.vs-comment-form {
  margin: var(--blog-space-y, 40px) 0 var(--blog-space-y, 50px) 0;
  background-color: var(--light-color);
}

.comment-respond {
  position: relative;
  background-color: var(--light-color);
  padding: 32px 40px;
}
.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::placeholder {
  color: var(--title-color);
}
.comment-respond .form-group i {
  color: var(--theme-color);
}
.comment-respond input[type=checkbox] ~ label:before {
  background-color: var(--body-bg);
  border: 1px solid var(--border-color);
  border-radius: 0;
  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: 10px;
  padding-bottom: 0;
}
.comment-respond .form-text {
  margin-bottom: 25px;
  font-size: 16px;
  color: var(--body-color);
}

.vs-comments-wrap {
  padding: 40px 40px 10px 40px;
  margin: 50px 0;
  background-color: var(--light-color);
}
.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;
  position: relative;
  display: flex;
  margin: 30px 0 30px 0;
  position: relative;
  border: 1px solid var(--border-color);
}
.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(--smoke-color);
}
.vs-comments-wrap .comment-avater img {
  width: 100%;
}
.vs-comments-wrap .comment-content {
  flex: 1;
  align-self: center;
}
.vs-comments-wrap .commented-on {
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
  color: var(--secondary-color);
  display: block;
  text-decoration: underline;
  position: relative;
  top: -2px;
}
.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: 24px;
  display: inline-block;
}
.vs-comments-wrap .comment-top {
  display: flex;
  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: -1px;
  top: -1px;
  line-height: 1;
}
.vs-comments-wrap .replay-btn {
  color: var(--black-color);
  background-color: var(--theme-color);
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 15px;
}
.vs-comments-wrap .replay-btn:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
}
.vs-comments-wrap .star-rating {
  font-size: 10px;
  width: 70px;
}
.vs-comments-wrap .star-rating:before {
  color: var(--white-color);
}
.vs-comments-wrap .star-rating span:before {
  color: var(--white-color);
}
.vs-comments-wrap .review .vs-post-comment {
  padding: 0;
}
.vs-comments-wrap .review .comment-avater {
  width: 170px;
  height: auto;
}

.woocommerce-Reviews .vs-comments-wrap {
  padding: 0;
  background-color: transparent;
}
.woocommerce-Reviews .woocommerce-Reviews-title {
  margin-bottom: 40px;
}

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

.product-details .vs-comments-wrap .review .comment-avater {
  width: 90px;
  height: 90px;
  border-radius: 50%;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .comment-section {
    padding: 40px 40px 0px 40px;
  }
  .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;
  }
  .vs-comments-wrap .name {
    margin: -0.1em 15px 0 0;
    font-size: 20px;
  }
  .comment-respond {
    padding: 30px;
  }
  .comment-respond .form-control {
    height: 60px;
    font-size: 14px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .vs-comments-wrap {
    padding: 40px 30px 10px 30px;
  }
  .vs-comments-wrap .vs-post-comment {
    display: block;
    padding: 30px 20px 20px 20px;
  }
  .vs-comments-wrap .star-rating {
    position: relative;
    top: 0;
    right: 0;
  }
  .vs-comments-wrap .comment-top {
    display: block;
  }
  .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 {
    padding: 40px 20px 10px 20px;
  }
  .vs-comments-wrap .children {
    margin-left: 20px;
  }
  .vs-comments-wrap .name {
    margin: -0.1em 0 7px 0;
    font-size: 20px;
    display: block;
  }
  .vs-comments-wrap .review-rating {
    position: relative;
    right: 0;
    top: 0;
    margin: 10px 0 10px 0;
    width: max-content;
  }
  .vs-comments-wrap .review .vs-post-comment {
    padding: 30px 20px;
  }
  .comment-respond {
    padding: 40px 20px 40px 20px;
  }
  .comment-respond textarea,
  .comment-respond input {
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .comment-respond label {
    font-size: 14px;
  }
  .comment-section {
    padding: 40px 20px 0px 20px;
  }
}
/*------------------- 4.8. Hero Area  -------------------*/
.hero-layout1 .hero-slide {
  padding: 300px 0 175px;
}
.hero-layout1 .hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
}
.hero-layout1 .icon-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 11%;
  width: 70px;
  height: 70px;
  line-height: 70px;
  color: var(--white-color);
  background-color: transparent;
  border: 1px solid var(--white-color);
}
.hero-layout1 .icon-btn::before {
  content: none;
}
.hero-layout1 .icon-btn:hover {
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}
.hero-layout1 .slick-next {
  left: auto;
  right: 11%;
}
.hero-layout1 .hero-content {
  position: relative;
}
.hero-layout1 .hero-content .hero-title {
  font-size: 74px;
  font-weight: 600;
  color: var(--white-color);
}
.hero-layout1 .hero-content .hero-text {
  font-size: 22px;
  color: var(--white-color);
  margin-bottom: 60px;
}
.hero-layout1 .vs-btn {
  font-size: 18px;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  padding: 17px 45px;
}
.hero-layout1 .vs-btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.hero-layout2 {
  background-color: var(--smoke-color);
  position: relative;
  overflow: hidden;
}
.hero-layout2 .hero-slide {
  padding: 60px 0 30px;
}
.hero-layout2 .hero-content {
  text-align: left;
}
.hero-layout2 .hero-content .hero-title {
  font-size: 70px;
}
.hero-layout2 .hero-content .hero-text {
  font-size: 22px;
  margin-bottom: 30px;
}
.hero-layout2 .slick-dots {
  margin-top: 0;
  text-align: left;
  transform: translateY(-80px);
}
.hero-layout2 .hero-bottom .vs-btn {
  margin-right: 50px;
}
.hero-layout2 .hero-img {
  position: relative;
  text-align: right;
  margin: 40px 0 20px;
}
.hero-layout2 .hero-img .batch {
  position: absolute;
  top: 30px;
  left: 0;
}

.vs-container_style2 {
  max-width: 1570px;
  margin: 0 0 0 auto;
}

.hero-layout3 {
  position: relative;
  overflow: hidden;
}
.hero-layout3 .hero-content {
  padding: 250px 0 150px;
}
.hero-layout3 .slick-dots {
  margin: 0;
  text-align: left;
  position: absolute;
  bottom: 50px;
  left: 0;
}
.hero-layout3 .hero-title {
  color: var(--white-color);
  font-size: 80px;
}
.hero-layout3 .hero-text {
  color: var(--white-color);
  margin-bottom: 45px;
}
.hero-layout3 .hero-bottom .vs-btn {
  color: var(--white-color);
}
.hero-layout3 .hero-bottom .vs-btn:hover {
  color: var(--black-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.hero-layout3 .hero-images {
  position: absolute;
  width: 50%;
  height: 100%;
  border-radius: 0px 0px 0px 0px;
  top: 100px;
  bottom: 0;
  right: 0;
}
.hero-layout3 .hero-images .slide-img {
  position: relative;
}
.hero-layout3 .hero-images .slide-icon {
  position: absolute;
  bottom: 20%;
  left: 50%;
}
.hero-layout3 .slick-dots button:hover {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.hero-layout3 .slick-dots .slick-active button {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

/* Extra large devices */
@media (max-width: 1500px) {
  .hero-layout2 .hero-bottom .vs-btn {
    margin-right: 20px;
  }
  .hero-layout3 .hero-title {
    color: var(--white-color);
    font-size: 60px;
  }
  .hero-layout3 .hero-content {
    padding: 120px 0 100px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .hero-layout1 .hero-content .hero-title {
    font-size: 50px;
  }
  .hero-layout1 .icon-btn {
    display: none;
  }
  .hero-layout1 .hero-slide {
    padding: 220px 0 150px;
  }
  .hero-layout2 .hero-content .hero-title {
    font-size: 50px;
  }
  .hero-layout2 .hero-bottom .vs-btn {
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .hero-layout3 .hero-content {
    padding: 100px 0 80px;
  }
  .hero-layout3 .hero-title {
    font-size: 50px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .hero-layout2 .hero-bottom .vs-btn {
    margin-bottom: 0;
  }
  .hero-layout3 .hero-title {
    font-size: 40px;
  }
  .hero-layout3 .hero-content {
    padding: 120px 15px 60px;
  }
  .hero-layout3 .hero-images {
    position: relative;
    width: 100%;
    top: 0;
  }
  .hero-layout3 .hero-images .slide-icon {
    display: none;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .hero-layout2 .hero-content .hero-title {
    font-size: 40px;
  }
  .hero-layout2 .hero-bottom .vs-btn {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .hero-layout1 .hero-content .hero-title {
    font-size: 32px;
  }
}
/*------------------- 4.9. Error  -------------------*/
/*------------------- 4.10. About  -------------------*/
.about-layout1 {
  position: relative;
}
.about-layout1 .about-bottom {
  margin-top: -20.5%;
  background-color: var(--smoke-color);
}
.about-layout1 .about-bottom .item-img {
  height: 100%;
  position: relative;
}
.about-layout1 .about-bottom .item-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.431372549);
  z-index: 0;
}
.about-layout1 .about-bottom .item-img img {
  width: 100%;
  height: 100%;
}
.about-layout1 .about-bottom .item-img .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about-layout1 .about-text {
  margin-bottom: 20px;
}
.about-layout1 .about-title {
  line-height: 100%;
}
.about-layout1 .about-title a {
  font-size: 24px;
  color: var(--black-color);
}
.about-layout1 .about-title a:hover {
  color: var(--secondary-color);
}
.about-layout1 .about-content {
  margin-top: 40px;
}
.about-layout1 .about-img img {
  width: 100%;
}
.about-layout1 .title-area {
  margin-bottom: 25px;
}

.auther-inner {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.auther-inner .auther-img {
  margin-right: 15px;
}
.auther-inner .auther-content .name {
  margin-bottom: 8px;
}

.auther-info {
  display: flex;
  align-items: center;
}

.title-area .sec-title {
  font-size: 55px;
}
.title-area .sec-subtitle {
  color: var(--secondary-color);
  text-transform: uppercase;
  font-family: var(--title-font);
  font-weight: 600;
}

.about-style1 {
  padding: 40px 35px 35px 10px;
}
.about-style1 .about-icon {
  margin-bottom: 20px;
}
.about-style1.border1 {
  border-right: 1px dashed var(--black-color);
}
.about-style1 .about-text {
  margin-bottom: 0px;
}

.progress-box {
  margin: 0 0 25px 0;
}
.progress-box__number, .progress-box__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  font-family: var(--title-font);
  color: var(--title-color);
  display: inline-block;
  margin: 0 0 11px 0;
}
.progress-box__number {
  float: right;
  margin: 5px 0 0 0;
}
.progress-box__progress {
  height: 6px;
  border-radius: 8px;
  background-color: #FFF7CC;
}
.progress-box__bar {
  height: 100%;
  background-color: var(--theme-color);
  box-shadow: 0px 10px 31px rgba(169, 177, 193, 0.17);
  border-radius: 5px;
}
.progress-box.style2 .progress-box__title, .progress-box.style2 .progress-box__number {
  color: var(--body-color);
  font-weight: 400;
  font-family: var(--body-font);
}
.progress-box.style2 .progress-box__progress, .progress-box.style2 .progress-box__bar {
  border-radius: 0;
}
.progress-box.style2:last-child {
  margin-bottom: 0;
}

.about-layout2 .title-area {
  margin-bottom: 15px;
}
.about-layout2 .about-text {
  font-size: 18px;
}
.about-layout2 .bottom-info {
  display: flex;
  align-items: end;
}
.about-layout2 .bottom-info .author-signature {
  margin-left: 25px;
  transform: translateY(-15px);
}
.about-layout2 .about-img {
  position: relative;
}
.about-layout2 .about-img .about-logo {
  position: absolute;
  top: 0;
  right: 6%;
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 50%;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
}
.about-layout2 .about-img .img2 {
  position: absolute;
  right: 0%;
  bottom: -25%;
  z-index: -1;
}

.text-box {
  display: flex;
  align-items: end;
}
.text-box .nunber {
  font-size: 150px;
  color: var(--black-color);
  margin-bottom: 0;
  line-height: 100%;
  background-color: #2f8d46;
  background-image: url("/assets/img/about/about-bg-1-1.jpg");
  background-repeat: repeat;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: bold;
  text-transform: uppercase;
  font-weight: 800;
  -webkit-font-smoothing: antialiased;
  background-position: bottom;
  margin-right: 16px;
}
.text-box .experience {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-color);
  text-transform: uppercase;
  font-family: var(--title-font);
  transform: translateY(-15px);
}

.about-deal {
  padding-top: 180px;
}
.about-deal .dela-img {
  padding: 24px 0;
}
.about-deal .deal-item {
  border: 1px solid var(--border-color);
  padding: 22px 30px;
  text-align: center;
  transition: all 0.5s ease;
}
.about-deal .deal-item img {
  margin-bottom: 10px;
}
.about-deal .deal-item:hover {
  background-color: var(--smoke-color);
}
.about-deal .deal-item .deal-title {
  margin-bottom: 0;
  color: var(--black-color);
  font-family: var(--title-font);
  font-weight: 500;
  transition: all 0.5s ease;
}
.about-deal .deal-item .deal-title:hover {
  color: var(--secondary-color);
}

.deal-offer {
  padding: 37px 40px 37px 50px;
}
.deal-offer .offer-subtitle {
  color: var(--white-color);
  text-transform: uppercase;
  font-weight: 500;
}
.deal-offer .offer-title {
  color: var(--white-color);
  text-transform: uppercase;
}
.deal-offer .offer-text {
  color: var(--white-color);
}
.deal-offer .price {
  color: var(--white-color);
  font-size: 22px;
  margin-bottom: 20px;
  display: block;
}
.deal-offer .price del {
  font-size: 16px;
  margin-right: 5px;
}
.deal-offer .vs-btn {
  color: var(--white-color);
  padding: 13px 48px;
}
.deal-offer .vs-btn:hover {
  color: var(--black-color);
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.deal-offer.white-style .offer-subtitle {
  color: var(--black-color);
}
.deal-offer.white-style .offer-title {
  color: var(--black-color);
}
.deal-offer.white-style .offer-text {
  color: var(--black-color);
}
.deal-offer.white-style .price {
  color: var(--black-color);
}
.deal-offer.white-style .vs-btn {
  background-color: var(--theme-color);
  color: var(--black-color);
}
.deal-offer.white-style .vs-btn:hover {
  color: var(--white-color);
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
}

.about-layout3 {
  position: relative;
}
.about-layout3 .title-area span {
  display: inline-block;
  color: var(--secondary-color);
}
.about-layout3 .about-img {
  position: relative;
}
.about-layout3 .about-img .play-btn {
  position: absolute;
  top: 30px;
  right: 30px;
}
.about-layout3 .about-img .play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #0f5132;
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.4s;
}
.about-layout3 .about-img .img-content {
  max-width: 410px;
  background-color: var(--secondary-color);
  text-align: center;
  padding: 30px;
  position: absolute;
  transform: translate(-80px, 30px);
  bottom: 0;
}
.about-layout3 .about-img .img-title {
  font-family: var(--body-font);
  color: var(--white-color);
  margin-bottom: 20px;
  line-height: 160%;
}
.about-layout3 .about-img .vs-btn {
  color: var(--black-color);
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
}
.about-layout3 .about-img .vs-btn:hover {
  background-color: transparent;
  color: var(--theme-color);
}
.about-layout3 .about-img img {
  width: 100%;
}

.offer-img {
  padding: 30px 0;
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .about-layout1 .about-bottom {
    margin-top: -10.5%;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .about-layout1 .about-bottom {
    margin-top: 80px;
  }
  .about-layout2 .about-img {
    margin-top: 60px;
  }
  .deal-offer {
    padding: 28px 30px;
  }
  .deal-offer .offer-title {
    font-size: 28px;
  }
  .about-deal .deal-item {
    max-height: 140px;
  }
  .about-deal {
    padding-top: 80px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .about-layout1 .about-style1 {
    padding: 40px;
  }
  .about-layout1 .about-style1.border1 {
    border-right: 0;
    border-bottom: 1px dashed var(--border-color);
  }
  .about-layout2 .about-img .img2 {
    bottom: 0;
  }
  .about-layout2 .about-img .about-logo {
    top: unset;
    right: 0;
    bottom: 0;
  }
  .about-deal {
    padding-top: 50px;
  }
  .about-layout3 .about-img .img-content {
    transform: translate(0, 0px);
  }
}
/* Small devices */
@media (max-width: 767px) {
  .title-area .sec-title {
    font-size: 40px;
  }
  .about-deal .dela-img {
    padding: 24px 0 60px;
    text-align: center;
  }
  .text-box .nunber {
    font-size: 110px;
  }
  .about-layout2 .about-logo {
    top: unset;
    right: 0;
    bottom: 0;
  }
  .about-layout2 .about-img .img2 {
    display: none;
  }
  .about-deal {
    padding-top: 50px;
  }
  .about-layout3 .about-img .play-btn {
    position: absolute;
    top: 18px;
    right: 30px;
  }
  .about-layout3 .about-img .img-content {
    transform: translate(0px, 30px);
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .about-deal {
    padding-top: 50px;
  }
}
/*------------------- 4.11. Service  -------------------*/
.service-style1 {
  background-color: var(--smoke-color);
  text-align: center;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.0509803922);
  padding-bottom: 22px;
  border-radius: 0px;
  position: relative;
  transition: all 0.5s ease;
}
.service-style1 .service-inner {
  transition: all 0.5s ease;
  transform: translateY(12%);
  position: relative;
  z-index: 2;
}
.service-style1 .service-img {
  overflow: hidden;
  border-radius: 0px;
  display: block;
  transform: all 0.5s ease;
}
.service-style1 .service-img img {
  transform: scale(1);
  border-radius: 0px;
  width: 100%;
  transition: all 0.5s ease;
}
.service-style1 .service-icon {
  width: 110px;
  height: 110px;
  line-height: 110px;
  text-align: center;
  background-color: var(--theme-color);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  margin: -70px auto 26px auto;
  box-shadow: 0.5px 0.87px 27px rgba(35, 31, 32, 0.04);
  transition: all 0.5s ease;
}
.service-style1 .service-title {
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 10px;
  transition: all 0.5s ease;
}
.service-style1 .service-title a {
  color: var(--title-color);
}
.service-style1 .service-text {
  font-size: 14px;
  font-weight: 400;
  text-transform: capitalize;
  font-family: var(--title-font);
  line-height: 24px;
  padding: 0 30px;
  margin-bottom: 14px;
  transition: all 0.5s ease;
}
.service-style1 .link-btn {
  visibility: hidden;
  opacity: 0;
  position: relative;
  z-index: 1;
}
.service-style1 .link-btn a {
  color: var(--white-color);
}
.service-style1 .link-btn a:hover {
  color: var(--theme-color);
}
.service-style1 .service-img2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.service-style1 .service-img2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 119, 53, 0.8274509804);
  z-index: 0;
}
.service-style1 .service-img2 img {
  width: 100%;
  height: 100%;
  position: relative;
}
.service-style1:hover .service-img2 {
  visibility: visible;
  opacity: 1;
}
.service-style1:hover .service-img {
  visibility: hidden;
  opacity: 0;
}
.service-style1:hover .service-inner {
  transform: translateY(-12%);
}
.service-style1:hover .service-inner .service-title a {
  color: var(--white-color);
}
.service-style1:hover .service-inner .service-text {
  color: var(--white-color);
}
.service-style1:hover .link-btn {
  visibility: visible;
  opacity: 1;
}

.service-layout1 {
  position: relative;
  margin-top: -30px;
}

.service-layout2 {
  background-color: var(--smoke-color);
}
.service-layout2 .service-list ul {
  padding: 0;
  margin: 0;
}
.service-layout2 .service-list ul li {
  list-style: none;
}
.service-layout2 .service-list ul li:not(:last-child) {
  margin-bottom: 10px;
}
.service-layout2 .service-list ul li .vs-btn {
  width: 100%;
  position: relative;
  text-align: left;
  padding: 22px 30px;
  font-size: 22px;
}
.service-layout2 .service-list ul li .vs-btn i {
  position: absolute;
  right: 5px;
  width: 54px;
  height: 54px;
  line-height: 54px;
  background-color: var(--theme-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  color: var(--black-color);
  font-size: 18px;
}
.service-layout2 .service-inner .service-icon {
  width: 112px;
  height: 112px;
  line-height: 112px;
  text-align: center;
  background-color: var(--theme-color);
  border-radius: 50%;
  margin-bottom: 25px;
}
.service-layout2 .link-btn {
  border-bottom: 2px solid var(--black-color);
}
.service-layout2 .link-btn:hover {
  border-color: var(--theme-color);
}
.service-layout2 .service-text {
  margin-bottom: 15px;
}
.service-layout2 .service-img {
  border-radius: 50%;
}
.service-layout2 .service-img img {
  border-radius: 100%;
}
.service-layout2 .service-title a {
  color: var(--black-color);
}
.service-layout2 .service-title a:hover {
  color: var(--theme-color);
}

.service-style2 {
  position: relative;
}

.service-details {
  padding-top: 110px;
}
.service-details .service-title h1 {
  margin-bottom: 25px;
}
.service-details .service-img1 {
  margin: 35px 0 40px 0;
}
.service-details .list-style2 {
  margin-left: 17px;
}
.service-details .list-style2 ul li {
  list-style: number;
  margin-bottom: 12px;
}
.service-details .list-style2 ul li::marker {
  color: var(--secondary-color);
  font-weight: 700;
  margin-right: 8px;
}

/* Medium devices */
@media (max-width: 991px) {
  .service-details {
    padding-top: 80px;
  }
  .service-layout2 .service-list {
    margin-bottom: 30px;
  }
  .service-layout2 .service-inner {
    margin-bottom: 30px;
  }
}
/* Small devices */
/*------------------- 4.12. selling  -------------------*/
.selling-layout1 {
  position: relative;
}
.selling-layout1 .selling-img {
  position: relative;
  text-align: right;
}
.selling-layout1 .selling-img .img1 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  line-height: 200px;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 50%;
}
.selling-layout1 .list-style1 {
  margin-bottom: 40px;
}
.selling-layout1 .list-style1 li {
  margin-bottom: 10px;
  font-size: 18px;
  color: var(--black-color);
}
.selling-layout1 .list-style1 li i {
  color: var(--secondary-color);
  margin-right: 10px;
}

/* Medium devices */
@media (max-width: 991px) {
  .selling-layout1 .selling-img {
    margin-top: 60px;
  }
}
/*------------------- 4.12. process  -------------------*/
.process-layout1 {
  position: relative;
  overflow: hidden;
}
.process-layout1 .slick-slide:nth-child(odd) {
  margin-top: 40px;
}

.process-style1 {
  background-color: var(--white-color);
  padding-top: 5px;
}
.process-style1 .process-img {
  position: relative;
  border-radius: 50%;
  text-align: center;
  max-width: 270px;
  max-height: 270px;
  margin-bottom: 20px;
  margin: 0 auto;
}
.process-style1 .process-img:before {
  content: "";
  position: absolute;
  left: var(--extra-shape, -5px);
  top: var(--extra-shape, -5px);
  right: var(--extra-shape, -5px);
  bottom: var(--extra-shape, -5px);
  background-color: transparent;
  border-radius: inherit;
  z-index: 1;
  border: 2px dashed var(--theme-color);
  transition: all ease 0.4s;
  animation: spin 30s infinite linear;
}
.process-style1 .process-img img {
  border-radius: 50%;
  padding: 10px;
  width: 100%;
  height: 100%;
}

.process-content {
  text-align: center;
  padding: 25px 30px 0px 30px;
}
.process-content .process-title {
  margin: 0 0 10px 0;
}
.process-content .process-title a {
  color: var(--black-color);
}
.process-content .process-title a:hover {
  color: var(--secondary-color);
}
.process-content .process-text {
  color: #444444;
  margin-bottom: 0;
}

/* Extra small devices */
@media (max-width: 575px) {
  .process-layout1 .slick-slide:nth-child(odd) {
    margin-top: 0px;
  }
}
/*------------------- 4.13. project  -------------------*/
.project-layout1 .title-area {
  margin-bottom: 30px;
}
.project-layout1 .project-style1 {
  position: relative;
  overflow: hidden;
}
.project-layout1 .project-style1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 119, 53, 0.6901960784);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.project-layout1 .project-style1 .price {
  position: absolute;
  top: 30px;
  right: 30px;
  display: inline-block;
  background-color: var(--theme-color);
  color: var(--black-color);
  padding: 6px 16px;
  border-radius: 30px;
  line-height: 100%;
  font-size: 22px;
  font-weight: 600;
}
.project-layout1 .project-style1 .project-content {
  position: absolute;
  bottom: 0;
  padding: 30px;
  transform: translateY(50%);
  transition: all 0.5s ease;
}
.project-layout1 .project-style1 .project-content .project-title {
  font-size: 28px;
  margin-bottom: 10px;
}
.project-layout1 .project-style1 .project-content .project-title a {
  color: var(--white-color);
}
.project-layout1 .project-style1 .project-content .project-title a:hover {
  color: var(--theme-color);
}
.project-layout1 .project-style1 .project-content .project-text {
  color: var(--white-color);
  visibility: hidden;
  opacity: 0;
}
.project-layout1 .project-style1 .project-content .project-text i {
  margin-right: 5px;
}
.project-layout1 .project-style1 .link-btn {
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.project-layout1 .project-style1 .link-btn a {
  color: var(--white-color);
}
.project-layout1 .project-style1 .link-btn a:hover {
  color: var(--theme-color);
}
.project-layout1 .project-style1:hover::before {
  visibility: visible;
  opacity: 1;
}
.project-layout1 .project-style1:hover .project-content {
  transform: translateY(0%);
}
.project-layout1 .project-style1:hover .project-content .project-text {
  visibility: visible;
  opacity: 1;
}
.project-layout1 .project-style1:hover .project-content .link-btn {
  visibility: visible;
  opacity: 1;
}
.project-layout1 .slick-list .slick-track .slick-current .project-style1::before {
  visibility: visible;
  opacity: 1;
}
.project-layout1 .slick-list .slick-track .slick-current .project-style1 .project-content {
  transform: translateY(0%);
}
.project-layout1 .slick-list .slick-track .slick-current .project-style1 .project-content .project-text {
  visibility: visible;
  opacity: 1;
}
.project-layout1 .slick-list .slick-track .slick-current .project-style1 .project-content .link-btn {
  visibility: visible;
  opacity: 1;
}
.project-layout1 .icon-btn {
  border: 1px solid var(--border-color);
  background-color: var(--white-color);
}
.project-layout1 .icon-btn:hover {
  background-color: var(--secondary-color);
  border-color: transparent;
}
.project-layout1 .link-btn i {
  margin-left: 8px;
  position: relative;
  top: 2px;
  font-size: 16px;
}
.project-layout1 .notice {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 0px;
  font-weight: 600;
  display: block;
  font-size: 22px;
  color: var(--black-color);
}
.project-layout1 .notice a {
  color: var(--black-color);
}
.project-layout1 .notice a:hover {
  color: var(--secondary-color);
}
.project-layout1 .project-btn {
  text-align: center;
  margin-top: 50px;
}
.project-layout1 .project-btn i {
  margin-right: 8px;
}

.project-details .project-img1 {
  margin: 50px 0;
  position: relative;
}
.project-details .project-img1 .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.project-details .share-links {
  margin: 0;
}
.project-details .widget {
  padding: 40px 60px;
}
.project-details .project-sidebar {
  background-color: var(--secondary-color);
  margin-bottom: 0;
  border: none;
}
.project-details .project-sidebar::before {
  display: none;
}
.project-details .project-sidebar .auther-inner {
  display: block;
  margin-right: 0;
  border-bottom: 1px solid rgba(191, 191, 191, 0.4509803922);
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.project-details .project-sidebar .auther-inner .auther-img {
  background-color: transparent;
  border: 1px solid var(--theme-color);
  border-radius: 50%;
  position: relative;
  padding: 5px;
  margin-right: 0px;
  display: inline-block;
}
.project-details .project-sidebar .auther-inner .auther-content {
  margin-top: 20px;
}
.project-details .project-sidebar .auther-inner .title {
  color: var(--white-color);
  margin-bottom: 0;
}
.project-details .project-sidebar .auther-inner .date {
  color: var(--white-color);
}
.project-details .project-sidebar .media-style2 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid rgba(191, 191, 191, 0.4509803922);
  padding-bottom: 25px;
  margin-bottom: 35px;
}
.project-details .project-sidebar .media-style2:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.project-details .project-sidebar .media-style2 .media-title {
  color: var(--white-color);
  font-size: 18px;
}
.project-details .project-sidebar .media-style2 .media-info {
  color: var(--white-color);
  margin-bottom: 0;
  color: #E1E1E1;
}
.project-details .project-sidebar .media-style2 .media-info a {
  color: var(--white-color);
  display: block;
}
.project-details .project-sidebar .media-style2 .media-info a:hover {
  color: var(--theme-color);
}
.project-details .project-sidebar .media-style2 .media-icon i {
  color: var(--white-color);
  font-size: 30px;
}
.project-details .project-sidebar .media-style2 .price {
  display: inline-block;
  color: var(--white-color);
  font-size: 42px;
  font-weight: 600;
}
.project-details .project-sidebar .vs-btn {
  width: 100%;
  background-color: var(--theme-color);
}
.project-details .project-sidebar .vs-btn:hover {
  border-color: var(--theme-color);
  background-color: var(--secondary-color);
}

/* Small devices */
@media (max-width: 767px) {
  .product-details .product-about .shep-img {
    display: none;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .project-details .widget {
    padding: 40px 40px;
  }
}
/*------------------- 4.14. Counter  -------------------*/
.counter-layout1 {
  position: relative;
}
.counter-layout1 .title-area {
  margin-bottom: 100px;
}
.counter-layout1 .title-area .sec-title {
  color: var(--white-color);
  margin-bottom: 25px;
}
.counter-layout1 .title-area .sec-subtitle {
  color: var(--white-color);
  text-transform: capitalize;
  font-weight: normal;
  display: block;
  margin-bottom: 30px;
}
.counter-layout1 .vs-btn {
  background-color: transparent;
  color: var(--white-color);
  border: 2px solid var(--theme-color);
}
.counter-layout1 .vs-btn:hover {
  color: var(--black-color);
  background-color: var(--theme-color);
}

.media-style .media-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--theme-color);
  border-radius: 50%;
  margin-right: 15px;
}
.media-style .media-icon img {
  max-width: 45px;
}
.media-style .media-counter .media-count {
  display: flex;
  align-items: center;
}
.media-style .media-counter .media-text {
  color: var(--white-color);
  margin-bottom: 0;
  font-size: 18px;
}
.media-style .media-title {
  color: var(--white-color);
  font-size: 50px;
  margin-bottom: 0;
  font-family: var(--body-font);
}
.media-style .media-count_icon {
  color: var(--white-color);
  font-size: 32px;
  display: inline-block;
  margin-left: 5px;
}
.media-style .media-inner {
  display: flex;
  align-items: center;
}

.counter-layout2 {
  position: relative;
}
.counter-layout2 .counter-img {
  position: absolute;
  bottom: 0;
}
.counter-layout2 .sec-title {
  color: var(--white-color);
  line-height: 145%;
  margin-bottom: 20px;
}
.counter-layout2 .title-text {
  color: var(--white-color);
  max-width: 50ch;
}
.counter-layout2 .media-style .media-icon {
  background-color: transparent;
  border-radius: 0;
}

.counter-style2 {
  padding: 50px 60px;
  position: relative;
  z-index: 0;
  background-color: var(--secondary-color);
}

/* Small devices */
@media (max-width: 767px) {
  .counter-style2 {
    padding: 50px 30px;
  }
  .media-style .media-title {
    font-size: 40px;
  }
}
/*------------------- 4.15. Testimonial  -------------------*/
.testimonial-layout1 {
  position: relative;
}
.testimonial-layout1 .testi-style1 .auther-img {
  background-color: var(--white-color);
  border: 1px solid var(--theme-color);
  border-radius: 50%;
  position: relative;
  padding: 5px;
  margin-right: 20px;
}
.testimonial-layout1 .testi-style1 .auther-img .testi-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  bottom: 0;
  right: 0;
}
.testimonial-layout1 .testi-style1 .auther-content .name {
  font-size: 24px;
  margin-bottom: 0;
}
.testimonial-layout1 .testi-style1 .testi-text {
  font-size: 22px;
  margin-bottom: 0;
}
.testimonial-layout1 .testi-style1 .auther-inner {
  margin-bottom: 20px;
  margin-right: 0;
}
.testimonial-layout1 .slick-dots {
  text-align: left;
  margin-bottom: 0;
}

.rating i {
  color: var(--theme-color);
  font-size: 13px;
}

.testimonial-layout2 {
  background-color: var(--smoke-color);
}
.testimonial-layout2 .slick-dots {
  margin-top: 80;
}

.designation {
  display: inline-block;
  font-weight: 600;
}

.testi-style2 .auther-inner {
  display: block;
  margin-right: 0px;
  text-align: center;
  margin-top: -60px;
}
.testi-style2 .testi-text {
  color: var(--white-color);
  text-align: center;
  background-color: var(--secondary-color);
  padding: 80px;
  font-size: 24px;
  margin-bottom: 0px;
  padding-bottom: 95px;
}
.testi-style2 .auther-img {
  background-color: transparent;
  border: 1px solid var(--theme-color);
  border-radius: 50%;
  position: relative;
  padding: 5px;
  margin-right: 20px;
  display: inline-block;
}
.testi-style2 .auther-img .testi-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme-color);
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
}
.testi-style2 .auther-content {
  margin-top: 46px;
}

/* Small devices */
@media (max-width: 767px) {
  .testi-style2 .auther-inner {
    margin-bottom: 0;
  }
  .testi-style2 .testi-text {
    padding: 40px 40px 80px 40px;
  }
}
/*------------------- 4.16. Brand  -------------------*/
.brand-layout1 .bran-img {
  background-color: var(--smoke-color);
  padding: 30px 5px;
  text-align: center;
}
.brand-layout1 .bran-img img {
  max-width: 145px;
}

/*------------------- 4.17. Brand  -------------------*/
.categorie-style1 {
  text-align: center;
}
.categorie-style1 .categorie-img {
  background-color: #FFF7CC;
  border-radius: 50%;
  padding: 30px;
  width: 230px;
  height: 230px;
  line-height: 170px;
  margin: 0 auto 25px auto;
  transition: all 0.5s ease;
}
.categorie-style1 .categorie-content .categorie-title {
  margin-bottom: 0;
}
.categorie-style1 .categorie-content .categorie-title a {
  color: var(--black-color);
}
.categorie-style1 .categorie-content .categorie-title a:hover {
  color: var(--secondary-color);
}
.categorie-style1 .categorie-content .categorie-text {
  margin-bottom: 0;
}
.categorie-style1:hover .categorie-img {
  background-color: var(--theme-color);
}

.categorie-style2 {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.categorie-style2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5568627451);
}
.categorie-style2 .categorie-img img {
  width: 100%;
}
.categorie-style2 .categorie-content {
  position: absolute;
  left: 30px;
  bottom: 20px;
}
.categorie-style2 .categorie-content .categorie-title {
  margin-bottom: 3px;
}
.categorie-style2 .categorie-content .categorie-title a {
  color: var(--white-color);
}
.categorie-style2 .categorie-content .categorie-title a:hover {
  color: var(--theme-color);
}
.categorie-style2 .categorie-content .categorie-text {
  color: var(--white-color);
  margin-bottom: 0;
}
.categorie-style2 .title-area {
  margin-bottom: 30px;
}

.categorie-layout2 {
  padding-bottom: 90px;
}
.categorie-layout2 .title-left {
  color: var(--secondary-color);
  font-weight: 600;
  width: 100%;
}
.categorie-layout2 .title-link {
  display: inline-block;
  width: 100%;
  text-align: right;
}
.categorie-layout2 .title-link a {
  color: var(--black-color);
  font-weight: 600;
  border-bottom: 2px solid var(--theme-color);
  transition: all 0.5s ease;
}
.categorie-layout2 .title-link a:hover {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.categorie-layout2 .title-link a i {
  margin-left: 5px;
  position: relative;
  top: 2px;
}

/* Large devices */
@media (max-width: 1199px) {
  .categorie-style1 .categorie-img {
    width: 200px;
    height: 200px;
    line-height: 130px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .categorie-layout2 {
    padding-bottom: 60px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .title-area .sec-title {
    font-size: 32px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .categorie-layout2 .title-area .sec-title {
    font-size: 28px;
  }
  .categorie-layout2 .title-link a {
    font-size: 14px;
  }
}
/*------------------- 4.18. Product  -------------------*/
.product-style1 {
  border: 1px solid var(--border-color);
  padding: 30px;
  position: relative;
  background-color: var(--white-color);
  transition: all 0.5s ease;
}
.product-style1 .product-meta {
  background-color: var(--theme-color);
  font-size: 16px;
  padding: 1px 12px;
  color: var(--black-color);
  display: inline-block;
  position: absolute;
  top: 10px;
  left: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.product-style1 .social-style {
  position: relative;
  transform: translate(20px, 20px);
}
.product-style1 .social-style ul {
  padding: 0;
  margin: 0;
}
.product-style1 .social-style ul li {
  list-style: none;
  position: relative;
}
.product-style1 .social-style ul li .main-icon {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF3B2;
  color: var(--black-color);
  position: absolute;
  right: 0;
  bottom: 0;
}
.product-style1 .social-style ul li .main-icon:hover {
  background-color: var(--theme-color);
}
.product-style1 .social-style ul li .sub-list {
  position: absolute;
  bottom: 50px;
  right: 0;
  visibility: hidden;
  opacity: 0;
}
.product-style1 .social-style ul li .sub-list li {
  margin-bottom: 5px;
}
.product-style1 .social-style ul li .sub-list li a {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #EBEBEB;
  color: var(--black-color);
}
.product-style1 .social-style ul li .sub-list li a:hover {
  background-color: var(--theme-color);
}
.product-style1 .social-style ul li:hover .sub-list {
  transform: scaleY(1);
  opacity: 1;
  transform-origin: bottom;
  visibility: visible;
  transition: all 0.3s ease-in-out;
}
.product-style1 .product-img {
  margin-bottom: 30px;
  text-align: center;
}
.product-style1 .product-img img {
  max-height: 190px;
}
.product-style1:hover {
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.product-style1:hover .product-meta {
  visibility: visible;
  opacity: 1;
}
.product-style1:hover .social-style {
  max-height: 100%;
}

.product-about .text {
  font-size: 16px;
  margin-bottom: 0;
  line-height: normal;
}
.product-about .product-title {
  margin-bottom: 10px;
  font-size: 22px;
}
.product-about .product-title a {
  color: var(--black-color);
}
.product-about .product-title a:hover {
  color: var(--secondary-color);
}

.price {
  color: var(--black-color);
  font-size: 22px;
  display: inline-block;
  line-height: normal;
}
.price del {
  font-size: 16px;
  margin-right: 5px;
}

.product-layout2 {
  position: relative;
  background-color: var(--smoke-color);
}

.product-style2 {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  padding: 30px;
  position: relative;
  background-color: var(--white-color);
  transition: all 0.5s ease;
  margin: 15px 0;
}
.product-style2 .product-img {
  text-align: center;
  padding: 30px 0;
}
.product-style2 .product-media {
  position: absolute;
  top: 10px;
  left: 10px;
}
.product-style2 .product-media .product-meta {
  background-color: var(--theme-color);
  font-size: 16px;
  padding: 1px 12px;
  color: var(--black-color);
  display: inline-block;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s ease;
}
.product-style2 .product-media .rating {
  padding: 1px 12px;
  margin-bottom: 10px;
}
.product-style2 .product-media .rating i {
  color: var(--theme-color);
}
.product-style2 .product-about {
  text-align: center;
  margin-bottom: 15px;
}
.product-style2 .social-style {
  position: relative;
  text-align: center;
}
.product-style2 .social-style ul {
  padding: 0;
  margin: 0;
}
.product-style2 .social-style ul li {
  list-style: none;
  position: relative;
  display: inline-block;
}
.product-style2 .social-style ul li .vs-btn {
  color: var(--white-color);
  padding: 16px 30px;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 500;
}
.product-style2 .social-style ul li .vs-btn:hover {
  color: var(--black-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.product-style2 .social-style ul li .vs-btn i {
  margin-right: 8px;
}
.product-style2 .social-style ul li .icon-btn {
  display: block;
}
.product-style2:hover .product-meta {
  visibility: visible;
  opacity: 1;
}

.vs-sort-bar {
  margin-bottom: 40px;
}
.vs-sort-bar .icon-btn {
  border: 1px solid var(--border-color);
  --btn-size: 50px;
  margin-right: 5px;
  border-radius: 50%;
  background-color: var(--white-color);
  color: var(--body-color);
}
.vs-sort-bar .icon-btn:last-child {
  margin-right: 0;
}
.vs-sort-bar .icon-btn:hover, .vs-sort-bar .icon-btn.active {
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-color: var(--secondary-color);
}
.vs-sort-bar select {
  height: 50px;
  border: 1px solid var(--border-color);
  width: max-content;
  min-width: auto;
  color: var(--body-color);
  padding: 0 45px 0 25px;
  font-size: 16px;
  margin: 0;
  background-position: right 22px center;
  border-radius: 30px;
}
.vs-sort-bar label {
  font-size: 14px;
  margin-bottom: 0;
  margin-right: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--title-color);
}
.vs-sort-bar p.woocommerce-result-count {
  margin-bottom: 0;
  color: var(--body-color);
}

.products .product-style1 {
  margin-bottom: 30px;
}

.product-details .product-about {
  position: relative;
}
.product-details .product-about .product-rating {
  display: flex;
  align-items: center;
  font-weight: 500;
  margin: 0 0 10px 0;
}
.product-details .product-about .product-rating .rating {
  margin-right: 20px;
}
.product-details .product-about .product-rating__total {
  color: var(--body-color);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--body-font);
  margin-right: 30px;
}
.product-details .product-about .product-rating .available {
  color: var(--secondary-color);
  display: inline-block;
  font-weight: 500;
}
.product-details .product-about .product-rating .available i {
  margin-right: 5px;
}
.product-details .product-about .product-title {
  font-size: 40px;
  margin-bottom: 20px;
}
.product-details .product-about .shep-img {
  position: absolute;
  right: 0;
  bottom: 35%;
}
.product-details .product-about .vs-comments-wrap .review .comment-avater {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
}
.product-details .quantity {
  display: flex;
  align-items: center;
  gap: 21px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.product-details .quantity .screen-reader-text {
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--title-font);
}
.product-details .quantity__field {
  display: flex;
  align-items: center;
  border: 0px solid var(--smoke-color);
  background-color: var(--smoke-color);
  min-width: 150px;
  padding-right: 0px;
  position: relative;
  min-height: 50px;
}
.product-details .quantity__buttons {
  position: absolute;
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  align-items: center;
  flex-direction: row-reverse;
}
.product-details .qty-btn {
  background: var(--theme-color);
  border: 0;
  padding: 0;
  line-height: 1;
  display: inline-flex;
  margin: -4px 0;
  color: var(--black-color);
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
}
.product-details .qty-btn:hover {
  color: var(--white-color);
  background-color: var(--secondary-color);
}
.product-details .product-price {
  font-size: 40px;
  font-weight: 600;
  color: var(--black-color);
  line-height: 1;
  margin: 0 0 10px 0;
  font-family: var(--body-font);
}
.product-details .product-price del {
  font-size: 18px;
}
.product-details .icon-btn {
  display: inline-block;
}
.product-details .vs-btn {
  color: var(--white-color);
  border-color: var(--secondary-color);
  background-color: var(--secondary-color);
  margin-right: 10px;
  padding: 18px 74px;
}
.product-details .vs-btn i {
  margin-right: 5px;
}
.product-details .vs-btn:hover {
  color: var(--black-color);
  border-color: var(--theme-color);
  background-color: var(--theme-color);
}
.product-details .quantity input {
  text-align: center;
}
.product-details .actions {
  border-bottom: 1px dashed var(--border-color);
  padding-bottom: 45px;
  margin-bottom: 25px;
}
.product-details .product_meta span {
  display: flex;
  margin-bottom: 6px;
  color: var(--body-color);
  font-weight: 500;
  text-transform: uppercase;
}
.product-details .product_meta p {
  margin-bottom: 0;
  color: var(--title-color);
  font-size: 16px;
  font-weight: 500;
  min-width: 150px;
  font-family: var(--title-font);
}
.product-details .product_meta .posted_in a {
  color: var(--body-color);
}
.product-details .product_meta .posted_in a:hover {
  color: var(--theme-color);
}
.product-details .slick-slide .thumb {
  cursor: pointer;
  border: 1px solid var(--border-color);
  transition: all 0.5s ease;
}
.product-details .slick-slide .thumb:hover {
  border: 1px solid var(--theme-color);
}
.product-details .slick-slide.slick-current .thumb {
  border: 1px solid var(--theme-color);
}
.product-details .table {
  margin-top: 15px;
  margin-bottom: 0px;
}
.product-details .table tbody {
  padding: 20px 40px !important;
}
.product-details .table th {
  padding: 10px;
  background-color: var(--light-color) !important;
}
.product-details .img {
  border: 1px solid var(--border-color);
}

.product-description {
  margin-top: 50px;
}
.product-description .description .comment-list {
  margin: 0 0 0 0;
}
.product-description .description .list-style1 .description-title {
  margin-bottom: 35px;
}
.product-description .product_meta > span > p {
  font-size: 16px;
}
.product-description__tab {
  display: inline-block;
  margin-bottom: 50px;
}
.product-description__tab .nav {
  border: none;
  background-color: var(--smoke-color);
  border-radius: 30px;
}
.product-description__tab .nav .nav-item {
  position: relative;
  /* Small devices */
}
@media (max-width: 767px) {
  .product-description__tab .nav .nav-item {
    width: 100%;
  }
}
.product-description__tab .nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--black-color);
  font-family: var(--title-font);
  padding: 17px 39px 17px 39px;
  border: 0;
  position: relative;
  z-index: 1;
  border-radius: 30px;
  background-color: transparent;
  /* Medium devices */
  /* Small devices */
}
.product-description__tab .nav .nav-link .product-description__tab .nav .nav-link:hover {
  color: var(--theme-color);
}
@media (max-width: 991px) {
  .product-description__tab .nav .nav-link {
    padding: 17px 19px 17px 19px;
  }
}
@media (max-width: 767px) {
  .product-description__tab .nav .nav-link {
    width: 100%;
    padding: 17px 0px 17px 0;
    font-size: 16px;
  }
}
.product-description__tab .nav .nav-link.active {
  color: var(--white-color);
  background-color: var(--secondary-color);
}
.product-description__tab .nav .nav-link.active::before {
  width: 100%;
  left: 0;
  right: 0;
}
.product-description__tab .nav .nav-item:last-child .nav-link::after {
  display: none;
}
.product-description .description-title {
  border-bottom: 2px solid var(--theme-color);
  display: inline-block;
}
.product-description .review-rating {
  text-align: right;
  position: absolute;
  top: 0;
  right: 0;
}
.product-description .review-rating .rating {
  background-color: var(--theme-color);
  display: inline-block;
  padding: 0 20px;
}
.product-description .review-rating .rating i {
  color: var(--black-color);
}
.product-description .vs-comments-wrap {
  padding: 0;
  background-color: var(--white-color);
}
.product-description .vs-comments-wrap .vs-comment-item {
  position: relative;
}
.product-description .vs-comments-wrap .vs-post-comment {
  border: none;
  background-color: var(--light-color);
  padding: 30px;
}
.product-description .vs-comments-wrap .vs-post-comment .comment-avater img {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.27);
  border-radius: 50%;
}
.product-description .product-rating {
  display: flex;
  align-items: center;
}
.product-description .product-rating .rating {
  margin-right: 15px;
}
.product-description .product-rating .rating i {
  font-size: 16px;
}

/* Medium devices */
@media (max-width: 991px) {
  .vs-sort-bar {
    text-align: center;
  }
  .vs-sort-bar p.woocommerce-result-count {
    margin-bottom: 20px;
  }
  .vs-sort-bar select {
    margin: 0 auto 20px auto;
  }
}
/*------------------- 4.19. Product  -------------------*/
.provide-style1 {
  background-color: rgba(20, 117, 51, 0.7450980392);
  padding: 60px 70px;
}
.provide-style1 .title-area .sec-subtitle {
  color: var(--white-color);
}
.provide-style1 .title-area .sec-title {
  color: var(--white-color);
}
.provide-style1 .provide-item {
  display: flex;
  align-items: center;
}
.provide-style1 .provide-item:not(:last-child) {
  margin-bottom: 30px;
}
.provide-style1 .provide-item .provide-icon {
  width: 100%;
  height: 100%;
  max-width: 80px;
  max-height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--theme-color);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0.5px 0.87px 27px rgba(35, 31, 32, 0.04);
  transition: all 0.5s ease;
  margin-right: 15px;
}
.provide-style1 .provide-item .provide-icon::after {
  content: "";
  border: 1px solid var(--secondary-color);
  position: absolute;
  width: 95%;
  height: 95%;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.provide-style1 .provide-item .provide-content .title {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 20px;
}
.provide-style1 .provide-item .provide-content .title a {
  color: var(--white-color);
}
.provide-style1 .provide-item .provide-content .title a:hover {
  color: var(--theme-color);
}
.provide-style1 .provide-item .provide-content .text {
  color: #DBDBDB;
  margin-bottom: 0;
}

.provide-inner {
  padding: 60px 40px;
  background-color: var(--smoke-color);
}
.provide-inner .provide-title {
  border-bottom: 1px solid var(--theme-color);
  display: inline-block;
  margin-bottom: 40px;
}
.provide-inner .bottom-info .text-box .nunber {
  font-size: 100px;
}
.provide-inner .progress-box {
  margin: 0 0 37px 0;
}

/* Small devices */
@media (max-width: 767px) {
  .provide-style1 {
    padding: 60px 30px;
  }
}
/*------------------- 4.20. Team  -------------------*/
.team-layout1 .slick-list .slick-track {
  padding: 20px 0;
}
.team-layout1 .slick-list .slick-track .slick-current .team-style1 {
  background-color: var(--white-color);
  border-color: #C8C8C8;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.team-layout2 {
  position: relative;
}

.team-style1 {
  background-color: var(--smoke-color);
  display: flex;
  padding: 30px 20px 30px 30px;
  align-items: end;
  border: 1px solid var(--smoke-color);
  justify-content: space-between;
}
.team-style1 .team-content {
  margin-right: 30px;
}
.team-style1 .team-content .team-name {
  font-size: 28px;
  margin-bottom: 2px;
}
.team-style1 .team-content .team-degi {
  margin-bottom: 15px;
  display: block;
}
.team-style1 .team-content .team-contact {
  color: var(--black-color);
  display: inline-block;
  text-decoration: 2px underline var(--theme-color);
  transition: all 0.5s ease;
}
.team-style1 .team-content .team-contact:hover {
  color: var(--secondary-color);
  text-decoration: 2px underline var(--secondary-color);
}
.team-style1 .team-content .social-style1 {
  margin-top: 40px;
}
.team-style1 .team-content .social-style1 a {
  font-size: 20px;
}
.team-style1 .team-img {
  border: 5px solid var(--white-color);
  border-radius: 50%;
  overflow: hidden;
  max-width: 150px;
  max-height: 150px;
  width: 100%;
  height: 100%;
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
}
.team-layout2 .slick-list .slick-track {
  padding: 0 0 20px;
}

.team-style2 {
  background-color: var(--white-color);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}
.team-style2 .team-img {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 89%);
}
.team-style2 .team-img img {
  transform: scale(1);
  transition: all 0.5s ease;
}
.team-style2 .team-content {
  margin-right: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 10px 30px 30px 30px;
}
.team-style2 .team-content .team-name {
  font-size: 28px;
  margin-bottom: 2px;
}
.team-style2 .team-content .team-name a {
  color: var(--black-color);
}
.team-style2 .team-content .team-name a:hover {
  color: var(--theme-color);
}
.team-style2 .team-content .team-degi {
  margin-bottom: 15px;
  display: inline-block;
}
.team-style2 .team-content .team-contact {
  color: var(--black-color);
  display: block;
  text-decoration: 2px underline var(--theme-color);
  transition: all 0.5s ease;
}
.team-style2 .team-content .team-contact:hover {
  color: var(--theme-color);
}
.team-style2 .team-content .social-style1 {
  margin-top: 40px;
}
.team-style2 .team-content .social-style1 a {
  font-size: 20px;
}
.team-style2:hover .team-img img {
  transform: scale(1.1);
}

.team-details .auther-inner {
  padding: 40px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.team-details .auther-inner .auther-img {
  width: 290px;
  height: 290px;
  border-radius: 100%;
  border: 10px solid var(--white-color);
  overflow: hidden;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  margin-right: 35px;
}
.team-details .auther-inner .auther-img img {
  width: 100%;
}
.team-details .auther-content {
  margin-bottom: 35px;
}
.team-details .auther-content .title {
  margin-bottom: 0;
}
.team-details .team-media .media-style1 {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.team-details .team-media .media-style1:nth-child(3) {
  border: none;
}
.team-details .team-media .media-style1 .media-body .media-info {
  color: var(--black-color);
}
.team-details .team-media .media-style1 .media-body .media-info a {
  color: var(--black-color);
}
.team-details .team-media .media-style1 .media-body .media-info a:hover {
  color: var(--theme-color);
}
.team-details .team-media .media-style1 .media-body .media-title {
  color: var(--black-color);
}
.team-details .team-style3 {
  background-color: var(--smoke-color);
}
.team-details .vs-comment-form {
  margin: 0;
  border: 1px solid var(--border-color);
  transform: translate(30px, 30px);
  max-width: 455px;
}
.team-details .vs-comment-form .form-title {
  border-bottom: 2px solid var(--theme-color);
  display: inline-block;
  margin-bottom: 25px;
}
.team-details .vs-comment-form .vs-btn {
  margin-top: 10px;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.team-details .vs-comment-form .vs-btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}
.team-details .vs-comment-form .comment-respond .form-control {
  background-color: var(--smoke-color);
}
.team-details .team-inner {
  margin-top: 72px;
}

/* Medium devices */
@media (max-width: 991px) {
  .team-style1 {
    text-align: center;
    display: block;
  }
  .team-style1 .team-img {
    margin: 20px auto 0;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .team-style1 {
    text-align: center;
    display: block;
  }
  .team-style1 .team-img {
    margin: 20px auto 0;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .team-style1 {
    text-align: center;
    display: block;
  }
  .team-style1 .team-img {
    margin: 20px auto 0;
  }
  .team-details .vs-comment-form {
    transform: none;
  }
  .team-details .auther-inner {
    padding: 20px;
    margin-right: 0;
    display: block;
  }
  .team-style2 .team-content .team-name a {
    font-size: 24px;
  }
  .team-style2 .team-content .social-style1 a {
    font-size: 20px;
    margin-right: 10px;
  }
}
/*------------------- 4.21. Faq  -------------------*/
.faq-layout1 .faq-img {
  position: relative;
}
.faq-layout1 .faq-img .faq-img1 {
  text-align: left;
  margin-right: 60px;
  margin-bottom: 30px;
}
.faq-layout1 .faq-img .faq-img1 img {
  width: 100%;
}
.faq-layout1 .faq-img .faq-img2 {
  text-align: right;
  margin-left: 60px;
}
.faq-layout1 .faq-img .faq-img2 img {
  width: 100%;
}
.faq-layout1 .faq-img .media-box1 {
  background-color: var(--secondary-color);
  display: inline-block;
  text-align: center;
  padding: 80px 8px;
  border-radius: 50%;
  width: 230px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-layout1 .faq-img .media-box1 .media-info {
  font-size: 40px;
  color: var(--white-color);
}
.faq-layout1 .faq-img .media-box1 .media-text {
  color: var(--white-color);
  margin-bottom: 0;
}

.accordion-style1 {
  margin: 0 0 30px 0;
}
.accordion-style1 .accordion-item {
  margin: 0 0 20px 0;
  background-color: var(--white-color);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.05);
  border-radius: 0px;
}
.accordion-style1 .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-style1 .accordion-button {
  background-color: transparent;
  border: none;
  padding: 22px 30px 22px 65px;
  font-size: 20px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--black-color);
  text-align: left;
  gap: 10px;
}
.accordion-style1 .accordion-button:after {
  content: "\f078";
  font-family: var(--icon-font);
  font-weight: 400;
  border: none;
  background-image: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4E4E4E;
  font-size: 16px;
  position: absolute;
  left: 30px;
}
.accordion-style1 .accordion-button:focus {
  box-shadow: none;
}
.accordion-style1 .accordion-button:not(.collapsed) {
  background-color: var(--theme-color);
}
.accordion-style1 .accordion-button:not(.collapsed):after {
  transform: rotate(0);
  content: "\f077";
  color: var(--black-color);
}
.accordion-style1 .accordion-body {
  border-top: 1px solid var(--border-color);
  padding: 20px 60px 20px 35px;
  font-size: 16px;
}
.accordion-style1 .accordion-body p:last-child {
  margin-bottom: 0;
}
.accordion-style1 .accordion-collapse {
  border: none;
}
.accordion-style1.layout2 .accordion-item {
  padding: 0;
  box-shadow: none;
}
.accordion-style1.layout2 .accordion-button {
  padding: 14.5px 25px;
  font-size: 16px;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 0;
}
.accordion-style1.layout2 .accordion-button:after {
  color: var(--white-color);
}
.accordion-style1.layout2 .accordion-button.collapsed {
  background-color: var(--smoke-color);
  color: var(--title-color);
}
.accordion-style1.layout2 .accordion-button.collapsed:after {
  color: var(--theme-color);
}
.accordion-style1.layout2 .accordion-body {
  border: none;
  background-color: var(--smoke-color);
  padding: 25px 25px 23px 25px;
}

.accordion-style2 {
  margin-bottom: 0;
}
.accordion-style2 .accordion-item {
  margin-bottom: 0px;
  background-color: var(--white-color);
  border-radius: 0px;
}
.accordion-style2 .accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-style2 .accordion-button {
  background-color: transparent;
  border: none;
  padding: 16px 30px 16px 55px;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--black-color);
  text-align: left;
  gap: 10px;
}
.accordion-style2 .accordion-button:after {
  content: "\f067";
  font-family: var(--icon-font);
  font-weight: 400;
  border: 1px solid var(--theme-color);
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-image: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white-color);
  color: #4E4E4E;
  font-size: 16px;
  position: absolute;
  left: 0px;
  border-radius: 50%;
}
.accordion-style2 .accordion-button:after:hover {
  background-color: var(--theme-color);
}
.accordion-style2 .accordion-button:focus {
  box-shadow: none;
}
.accordion-style2 .accordion-button:not(.collapsed) {
  color: var(--secondary-color);
}
.accordion-style2 .accordion-button:not(.collapsed):after {
  transform: rotate(0);
  content: "\f068";
  background-color: var(--theme-color);
  color: var(--black-color);
}
.accordion-style2 .accordion-body {
  padding: 0px 65px 12px 35px;
  font-size: 16px;
}
.accordion-style2 .accordion-body p:last-child {
  margin-bottom: 0;
}
.accordion-style2 .accordion-collapse {
  border: none;
}
.accordion-style2.layout2 .accordion-item {
  padding: 0;
  box-shadow: none;
}
.accordion-style2.layout2 .accordion-button {
  padding: 14.5px 25px;
  font-size: 16px;
  background-color: var(--theme-color);
  color: var(--white-color);
  border-radius: 0;
}
.accordion-style2.layout2 .accordion-button:after {
  color: var(--white-color);
}
.accordion-style2.layout2 .accordion-button.collapsed {
  background-color: var(--smoke-color);
  color: var(--title-color);
}
.accordion-style2.layout2 .accordion-button.collapsed:after {
  color: var(--theme-color);
}
.accordion-style2.layout2 .accordion-body {
  border: none;
  background-color: var(--smoke-color);
  padding: 25px 25px 23px 25px;
}

/*------------------- 4.22. Collection  -------------------*/
.subscribe-style1 {
  background-color: var(--secondary-color);
  padding: 45px 50px;
}
.subscribe-style1 .subscribe-inner {
  display: flex;
  align-items: self-start;
}
.subscribe-style1 .subscribe-inner .subscribe-icon {
  display: inline-block;
  font-size: 48px;
  margin: 5px 25px 0 0;
  color: var(--theme-color);
}
.subscribe-style1 .subscribe-inner .sec-title {
  text-transform: uppercase;
  color: var(--white-color);
  margin-bottom: 0;
}
.subscribe-style1 .subscribe-inner .sec-subtitle {
  font-size: 18px;
  color: var(--white-color);
}
.subscribe-style1 .subscribe-img {
  position: absolute;
  right: 0;
  transform: translateY(-60%);
}
.subscribe-style1 .newsletter-form {
  margin-left: 50px;
}
.subscribe-style1 .newsletter-form .search-btn {
  border-radius: 50px;
  background-color: var(--white-color);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px;
}
.subscribe-style1 .newsletter-form .search-btn input {
  font-weight: 600;
  font-size: 16px;
  border: none;
}
.subscribe-style1 .newsletter-form .search-btn .vs-btn {
  background-color: var(--theme-color);
}
.subscribe-style1 .newsletter-form .search-btn .vs-btn:hover {
  background-color: var(--secondary-color);
}

/* Medium devices */
@media (max-width: 991px) {
  .subscribe-style1 {
    padding: 45px 20px;
  }
  .subscribe-style1 .newsletter-form {
    margin-left: 0px;
  }
  .subscribe-style1 .subscribe-img {
    display: none;
  }
  .subscribe-layout1 {
    transform: translateY(28%);
  }
}
/* Small devices */
@media (max-width: 767px) {
  .subscribe-inner .sec-title {
    font-size: 24px;
  }
  .subscribe-style1 {
    padding: 45px 0px;
  }
  .newsletter-form .search-btn .form-control {
    padding: 0 10px 0 10px;
  }
  .subscribe-style1 .newsletter-form .search-btn .vs-btn {
    padding: 14px 12px;
  }
}
/*------------------- 4.23. Collection  -------------------*/
.collection-style1 {
  padding: 40px;
  border: 1px solid var(--border-color);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.collection-style1::before {
  content: "";
  position: absolute;
  width: 51%;
  height: 100%;
  top: 0;
  right: -70px;
  background-color: var(--theme-color);
  z-index: -1;
  transform: skew(-16deg);
}
.collection-style1 .collection-img {
  max-width: 290px;
  max-height: 230px;
  width: 100%;
  height: 100%;
  position: relative;
}
.collection-style1 .collection-img .img-2 {
  position: absolute;
  bottom: -50px;
  right: -15px;
  position: absolute;
  width: 122px;
  height: 122px;
  line-height: 122px;
  text-align: center;
  background-color: var(--white-color);
  border-radius: 50%;
}
.collection-style1 .price {
  display: block;
  margin-bottom: 30px;
  font-weight: 600;
  display: block;
}
.collection-style1 .vs-btn {
  color: var(--white-color);
  padding: 16px 30px;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  font-weight: 500;
}
.collection-style1 .vs-btn:hover {
  color: var(--black-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.collection-style1 .vs-btn i {
  margin-right: 8px;
}
.collection-style1 .list-style1 {
  margin-bottom: 30px;
}

.list-style1 ul li {
  position: relative;
  padding-left: 26px;
}
.list-style1 ul li .icon {
  display: inline-block;
  position: absolute;
  left: 0;
}
.list-style1 ul li .icon i {
  color: var(--secondary-color);
  margin-right: 10px;
}

/* Medium devices */
@media (max-width: 991px) {
  .title-arraw {
    display: flex;
  }
  .title-arraw .icon-btn:first-child {
    margin-right: 5px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .collection-style1 {
    display: block;
  }
  .collection-style1::before {
    display: none;
  }
  .collection-style1 .collection-content {
    margin-bottom: 30px;
  }
  .collection-style1 .collection-img .img-2 {
    bottom: 0;
  }
}
/*------------------- 4.24. Cart  -------------------*/
.cart_table {
  border: 1px solid var(--smoke-color);
  margin-bottom: 45px;
}

.cart_table thead {
  background-color: var(--theme-color);
}

.cart_table thead th {
  border: none !important;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  padding: 26.75px 15px;
}

.cart_table td:before,
.cart_table th {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 600;
  border: none;
  padding: 27px 15px;
}

.cart_table td:before {
  content: attr(data-title);
  position: absolute;
  left: 15px;
  top: 50%;
  vertical-align: top;
  padding: 0;
  transform: translateY(-50%);
  display: none;
}

.cart_table td {
  border: none;
  border-bottom: 1px solid var(--smoke-color);
  color: var(--body-color);
  padding: 20px 10px;
  position: relative;
  vertical-align: middle;
  text-align: center;
}

.cart_table .product-quantity {
  color: var(--title-color);
}

.cart_table .product-quantity input {
  position: relative;
  top: -2px;
}

.cart_table .cart-productname {
  font-weight: 700;
  font-family: var(--title-font);
  color: var(--title-color);
}
.cart_table .cart-productname:hover {
  color: var(--sec-color);
}

.cart_table .cart-productimage {
  display: inline-block;
}
.cart_table .cart-productimage > img {
  width: 100px;
  height: 95px;
  object-fit: cover;
}

.cart_table .remove {
  color: var(--theme-color);
  font-size: 18px;
  transition: all 0.5s ease;
}
.cart_table .remove:hover {
  color: var(--black-color);
}

.cart_table .quantity {
  display: inline-flex;
  align-items: center;
}

.quantity.style2 .quantity__field {
  background-color: transparent;
}
.quantity.style2 .qty-btn {
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: 1px solid var(--smoke-color);
  border-radius: 4px;
  color: var(--body-color);
}
.quantity.style2 .qty-btn:hover {
  background-color: var(--theme-color);
  color: var(--black-color);
  border-color: var(--white-color);
}

.cart_table .qut-btn {
  border: 2px solid var(--smoke-color);
  background-color: rgba(0, 0, 0, 0);
  color: #b8c6d0;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 25px;
  font-size: 16px;
  border-radius: 4px;
}

.cart_table .qut-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.cart_table .qty-input {
  vertical-align: middle;
  border: 1px solid var(--smoke-color);
  width: 70px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  color: var(--title-color);
  font-family: var(--body-font);
  font-weight: 400;
  margin: 0 10px;
  border-radius: 4px;
  padding: 0;
}

.cart_table .actions {
  text-align: right;
  vertical-align: middle;
  padding: 20px;
}

.cart_table .actions > .vs-btn {
  font-size: 16px;
  padding: 17px 28px;
  margin-right: 15px;
}

.cart_table .actions > .vs-btn:last-child {
  margin-right: 0;
}

.cart_table .vs-cart-coupon {
  float: left;
  margin: 0;
  width: 455px;
  max-width: 100%;
  display: flex;
}

.cart_table .vs-cart-coupon input {
  height: 50px;
  width: calc(100% - 200px);
  margin-right: 10px;
  border: 1px solid var(--border-color);
  padding: 10px 20px;
  border-radius: 30px;
}
.cart_table .vs-cart-coupon input:focus {
  border-color: var(--sec-color);
}

.cart_table .vs-cart-coupon .vs-btn {
  font-size: 16px;
  padding: 17px 30px;
  width: -moz-max-content;
  width: max-content;
}

.cart_totals {
  border: 1px solid var(--border-color);
}

.cart_totals th,
.cart_totals td {
  vertical-align: top;
  padding: 20px 20px;
  border: none;
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
  color: var(--title-color);
  width: 55%;
}

.cart_totals th:first-child,
.cart_totals td:first-child {
  width: 45%;
  background-color: var(--smoke-color);
  font-weight: 700;
  font-size: 14px;
  color: var(--title-color);
}

.cart_totals .shipping-calculator-button {
  display: inline-block;
  border-bottom: 1px solid;
  color: var(--title-color);
  font-weight: 700;
}

.cart_totals .shipping-calculator-button:hover {
  color: var(--theme-color);
}

.cart_totals .woocommerce-shipping-destination {
  margin-bottom: 10px;
}

.cart_totals .woocommerce-shipping-methods {
  margin-bottom: 5px;
}
.cart_totals .woocommerce-shipping-methods > li {
  min-height: 26px;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 7px;
}
.cart_totals .woocommerce-shipping-methods input[type=radio] ~ label {
  min-height: 26px;
  display: flex;
  align-items: center;
  font-family: var(--title-font);
  padding-left: 25px;
}

.cart_totals .woocommerce-shipping-methods input[type=radio] ~ label::before {
  padding-right: 1.2px;
  padding-top: 0.3px;
  font-size: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  line-height: 14px;
}

.cart_totals .shipping-calculator-form {
  display: none;
}

.cart_totals .shipping-calculator-form p:first-child {
  margin-top: 20px;
}

.cart_totals .shipping-calculator-form p:last-child {
  margin-bottom: 0;
}

.cart_totals .shipping-calculator-form .vs-btn {
  padding: 10px 30px;
  height: 50px;
  align-items: center;
}

.shipping-calculator-form .nice-select.form-select,
.shipping-calculator-form .form-control {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  height: 50px;
  border: 1px solid var(--border-color);
  color: var(--body-color);
}
.shipping-calculator-form .nice-select.form-select::after,
.shipping-calculator-form .form-control::after {
  display: none;
}

.cart_totals .amount {
  font-weight: 700;
}

.cart_totals .order-total .amount {
  color: var(--theme-color);
}

@media (max-width: 991px) {
  .cart_table th {
    padding: 23px 8px;
    font-size: 14px;
  }
  .cart_table .cart-productname {
    font-size: 14px;
  }
  .cart_table .vs-cart-coupon {
    width: 100%;
    margin-bottom: 20px;
  }
  .cart_table .actions {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .cart_table {
    text-align: left;
    min-width: auto;
    border-collapse: separate;
    border-spacing: 0 20px;
    border: none;
  }
  .cart_table thead {
    display: none;
  }
  .cart_table td {
    padding: 15px;
    display: block;
    width: 100%;
    padding-left: 25%;
    text-align: right;
    border: 1px solid #f3f3f3;
    border-bottom: none;
  }
  .cart_table td::before {
    display: block;
  }
  .cart_table td:last-child {
    border-bottom: 1px solid #f3f3f3;
  }
  .cart_table td.actions {
    padding-left: 15px;
    text-align: center;
  }
  .cart_table td.actions > .vs-btn {
    margin-top: 10px;
    margin-right: 0;
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
  .cart_table td.actions > .vs-btn:last-child {
    margin-right: auto;
  }
  .cart_table .vs-cart-coupon {
    width: 100%;
    text-align: center;
    float: none;
    justify-content: center;
    display: block;
    padding-bottom: 10px;
  }
  .cart_table .vs-cart-coupon input {
    width: 100%;
    margin-bottom: 10px;
  }
  .cart_totals th,
  .cart_totals td {
    padding: 15px 10px;
  }
  .cart_totals th:first-child,
  .cart_totals td:first-child {
    width: 17%;
    line-height: 1.4;
  }
}
.woocommerce-checkout .form-group {
  margin-bottom: 0;
}

.woocommerce-checkout .form-select,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .form-control {
  margin-bottom: var(--bs-gutter-x);
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
}
.woocommerce-checkout .form-select::after,
.woocommerce-checkout .select2-container::after,
.woocommerce-checkout .form-control::after {
  display: none;
}
.woocommerce-checkout .form-select .list,
.woocommerce-checkout .select2-container .list,
.woocommerce-checkout .form-control .list {
  width: 100%;
}
.woocommerce-checkout .form-select::placeholder,
.woocommerce-checkout .select2-container::placeholder,
.woocommerce-checkout .form-control::placeholder {
  opacity: 1;
  visibility: visible;
}
.woocommerce-checkout .form-select:focus,
.woocommerce-checkout .select2-container:focus,
.woocommerce-checkout .form-control:focus {
  border-color: var(--sec-color);
}
.woocommerce-checkout .form-select:focus::placeholder,
.woocommerce-checkout .select2-container:focus::placeholder,
.woocommerce-checkout .form-control:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}

.woocommerce-checkout .select2-container--open .select2-dropdown--below {
  margin-top: 30px;
}

.woocommerce-checkout .select2-container--open .select2-dropdown--above {
  position: relative;
  bottom: -30px;
}

.woocommerce-checkout .select2-dropdown {
  border: 1px solid #e3e6e9;
  border-top: none;
}

.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .form-control:focus {
  color: var(--body-color);
}

.select2-container--default .select2-selection--single {
  height: 60px;
  border: 1px solid #e3e6e9;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 60px;
  padding-left: 30px;
  padding-right: 25px;
}

.woocommerce-billing-fields .form-row {
  margin-bottom: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
  content: "ï„‡";
  font-family: var(--icon-font);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin: 0;
  border: none;
  top: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 60px;
  line-height: 60px;
  margin-right: 18px;
}

span.select2-selection.select2-selection--single:focus {
  outline: none;
}

.shipping-calculator-form .form-select,
.shipping-calculator-form .form-control {
  height: 50px;
  padding-left: 20px;
  font-size: 14px;
  border-radius: 0;
  background-position: right 13px center;
}

.shipping-calculator-form .vs-btn {
  font-size: 14px;
  padding: 0 20px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
}

.checkout-ordertable th,
.checkout-ordertable td {
  border: none;
  vertical-align: top;
  padding: 5px 0;
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
}

.checkout-ordertable ul {
  margin: 0;
  padding: 0;
}

.checkout-ordertable .order-total .amount {
  color: var(--theme-color);
}

.checkout-ordertable input[type=hidden] ~ label {
  color: var(--theme-color);
}

.woocommerce-checkout .form-group input:not(:last-child) {
  margin-bottom: var(--bs-gutter-x);
}

.checkout-ordertable th,
.checkout-ordertable td {
  border: 1px solid #ededed;
  text-align: right;
  padding: 5px 20px;
}

.checkout-ordertable th {
  text-align: left;
}

.woocommerce-checkout-payment {
  text-align: left;
}

.woocommerce-checkout-payment ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.woocommerce-checkout-payment ul li {
  padding-top: 17px;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  font-size: 16px;
}

.woocommerce-checkout-payment ul input[type=radio] ~ label {
  margin-bottom: 19px;
  color: var(--title-color);
  font-weight: 700;
}

.woocommerce-checkout-payment ul input[type=radio] ~ label img {
  margin-bottom: -2px;
  margin-left: 10px;
}

.woocommerce-checkout-payment .place-order {
  padding-top: 30px;
}

.woocommerce-checkout-payment .payment_box {
  color: var(--body-color);
  background-color: var(--smoke-color);
  border: 1px solid var(--smoke-color);
  border-bottom: none;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  display: none;
}

.woocommerce-checkout-payment .payment_box p {
  margin: 0;
}

.vs-checkout-wrapper form.woocommerce-form {
  margin-bottom: 25px;
}

.vs-cart-wrapper .vs-btn,
.vs-checkout-wrapper .vs-btn {
  text-transform: capitalize;
  font-weight: 700;
  font-size: 16px;
  background-color: var(--theme-color);
}
.vs-cart-wrapper .vs-btn:hover,
.vs-checkout-wrapper .vs-btn:hover {
  background-color: var(--secondary-color);
}

@media (max-width: 767px) {
  tfoot.checkout-ordertable th {
    display: none;
  }
  .woocommerce-checkout-payment ul input[type=radio] ~ label img {
    max-width: 150px;
  }
  .woocommerce-form-coupon,
  .woocommerce-form-login {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
}
.tinv-wishlist input[type=checkbox] {
  display: inline-block;
  opacity: 1;
  visibility: visible;
  width: auto;
  height: auto;
}

.tinv-wishlist .cart-empty {
  padding: 12px 25px;
  background-color: #eee;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}

.tinv-wishlist p.return-to-shop .button {
  display: inline-block;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 14px;
  padding: 10px 25px;
  border-radius: 4px;
  margin-top: 10px;
  font-weight: 700;
}

.tinv-wishlist p.return-to-shop .button:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.tinv-wishlist table.tinvwl-table-manage-list {
  font-size: 14px;
}

.tinv-wishlist table.tinvwl-table-manage-list button {
  border-radius: 5px;
}

.tinv-wishlist .product-stock i {
  margin-right: 5px;
}

.tinv-wishlist .tinv-modal .icon_big_times {
  margin-bottom: 5px;
  color: var(--theme-color);
}

.tinv-wishlist button.button {
  border: none;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 700;
  background-color: var(--theme-color);
  color: #fff;
  padding: 0;
}

.tinv-wishlist button.button i {
  font-size: 1rem !important;
  margin-right: 3px !important;
}

.tinv-wishlist th,
.tinv-wishlist td.product-name {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--title-font);
}

.tinv-wishlist td.product-name a {
  color: var(--title-color);
}

.tinv-wishlist td.product-name a:hover {
  color: var(--theme-color);
}

.tinv-wishlist td.product-price del {
  font-size: 0.9em;
}

.tinv-wishlist .social-buttons > span {
  font-weight: 700;
  margin-right: 10px;
  font-family: var(--title-font);
  color: var(--title-color);
}

.tinv-wishlist .social-buttons li a.social {
  background-color: var(--theme-color);
  color: #fff;
  width: 30px;
  height: 30px;
  font-size: 14px;
  line-height: 30px;
}

.tinv-wishlist .social-buttons li a.social i {
  line-height: inherit;
}

.tinv-wishlist .social-buttons li a.social:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

@media (max-width: 767px) {
  .tinv-wishlist table {
    table-layout: fixed;
  }
}
.cat-media {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  padding: 20px 0;
  position: relative;
  margin-bottom: 30px;
}

.cat-media:after,
.cat-media:before {
  content: "";
  position: absolute;
  width: 0%;
  height: 0%;
  transition: width ease 0.6s, height ease 0.6s, border-color ease 0s;
  border-color: rgba(0, 0, 0, 0);
  border-style: solid;
  border-width: 0;
}

.cat-media:before {
  left: 0;
  top: 0;
  border-left-width: 1px;
  border-top-width: 1px;
}

.cat-media:after {
  right: 0;
  bottom: 0;
  border-right-width: 1px;
  border-bottom-width: 1px;
}

.cat-media_icon {
  padding: 3px 15px;
  border-right: 1px solid var(--border-color);
  position: relative;
  z-index: 3;
  width: 90px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-media_cat {
  margin-bottom: 0;
  font-size: 14px;
  text-transform: uppercase;
}

.cat-media .badge {
  position: absolute;
  right: 15px;
  top: auto;
  bottom: 0;
  transform: translateY(50%);
  transition: all ease 0.4s;
  opacity: 0;
  visibility: hidden;
  z-index: 3;
}

.cat-media .media-body {
  text-align: center;
  position: relative;
  z-index: 3;
}

.cat-media_slider {
  z-index: 1;
}

.cat-media_slider .slick-arrow {
  --icon-size: 20px;
  --pos-x: -5px;
  font-size: 8px;
  padding: 0;
  line-height: 14px;
  background-color: var(--title-color);
  color: var(--white-color);
  top: calc(50% - 15px);
  border: 3px solid var(--white-color);
}

.cat-media_slider .slick-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.cat-shape-1 {
  position: absolute;
  left: 2%;
  top: 1%;
}

.cat-media:hover .badge,
.slick-center .cat-media .badge {
  opacity: 1;
  visibility: visible;
}

.cat-media:hover::before,
.cat-media:hover::after,
.slick-center .cat-media::before,
.slick-center .cat-media::after {
  width: 100%;
  height: 100%;
  border-color: var(--theme-color);
}

.cat_chart {
  display: flex;
  background-color: var(--white-color);
  align-items: center;
  padding: 35px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.cat_chart_img {
  margin-right: 30px;
}

.cat_chart_title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 13px;
}

.cat_chart_list {
  margin: 0 0 -0.3em 0;
  padding: 0;
  list-style-type: none;
}

.cat_chart_list a {
  font-size: 14px;
  color: #71737a;
}

.cat_chart_list a:hover {
  color: var(--theme-color);
}

.cat_card {
  margin-bottom: 30px;
  position: relative;
}

.cat_card [class*=cat_card_name] a {
  color: inherit;
}

.cat_card_img {
  position: relative;
  overflow: hidden;
}

.cat_card_img img {
  width: 100%;
  transition: all ease 0.4s;
  transform: scale(1);
}

.cat_card_total {
  position: absolute;
  left: 40px;
  top: 40px;
  z-index: 1;
  background-color: var(--title-color);
  color: var(--white-color);
  font-size: 14px;
  text-transform: uppercase;
  line-height: 1;
  padding: 8px 14px;
}

.cat_card_name {
  color: var(--white-color);
  background-color: var(--theme-color);
  font-weight: 500;
  line-height: 1;
  margin: 0;
  padding: 18px 15px;
  text-align: center;
}

.cat_card_name--style2 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background-color: var(--white-color);
  font-size: 20px;
  text-transform: uppercase;
  margin: 0;
  padding: 18px 31px;
  border-radius: 9999px;
}

.cat_card:hover .cat_card_img img {
  transform: scale(1.15);
}

.cat_rounded {
  text-align: center;
  margin-bottom: 26px;
}

.cat_rounded .cat-img {
  border: 2px solid var(--theme-color);
  border: 2px solid var(--border-color);
  width: var(--img-size, 160px);
  height: var(--img-size, 160px);
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 18px;
  transition: all ease 0.4s;
}

.cat_rounded .cat-img img {
  width: 100%;
  transition: all ease 0.4s;
}

.cat_rounded .cat-name {
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cat_rounded:hover .cat-img {
  border-color: var(--theme-color);
}

.cat_rounded:hover .cat-img img {
  transform: scale(1.1);
}

/*------------------- 4.25. woocommerce -------------------*/
.woocommerce-message,
.woocommerce-info {
  position: relative;
  border: 1px solid var(--border-color);
  padding: 11px 20px;
  background-color: var(--smoke-color);
  color: var(--title-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
  border-radius: 10px;
  font-family: var(--title-font);
}
.woocommerce-message a,
.woocommerce-info a {
  color: inherit;
  text-decoration: underline;
}
.woocommerce-message a:hover,
.woocommerce-info a:hover {
  text-decoration: underline;
}
.woocommerce-message:before,
.woocommerce-info:before {
  content: "\f06a";
  font-family: var(--icon-font);
  font-weight: 900;
  margin-right: 10px;
}

.woocommerce-notices-wrapper .woocommerce-message {
  background-color: var(--smoke-color);
  color: var(--black-color);
  border-color: transparent;
  border-radius: 0;
  font-size: 16px;
  padding: 11px 20px;
  font-family: var(--title-font);
  margin-bottom: 40px;
}
.woocommerce-notices-wrapper .woocommerce-message:before {
  content: "\f14a";
  font-weight: 300;
  top: 1px;
  position: relative;
}

.woocommerce-Reviews .vs-comments-wrap {
  margin-top: 0;
}
.woocommerce-Reviews .star-rating:before {
  display: block;
}

.quantity {
  position: relative;
  width: max-content;
  display: flex;
  align-items: center;
}
.quantity > label {
  font-size: 14px;
  color: var(--body-color);
  font-weight: 700;
  margin: 0 20px 0 0;
  font-family: var(--body-font);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.quantity input {
  padding: 0 10px 0 10px;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  --body-color: var(--title-color);
  border: 1px solid var(--smoke-color);
  border-left: none;
  border-right: none;
  border-radius: 0;
}

.rating-select {
  margin-top: -0.4em;
}
.rating-select label {
  margin: 0 10px 0 0;
  display: inline-block;
}
.rating-select p.stars {
  margin-bottom: 0;
  line-height: 1;
  display: inline-block;
}
.rating-select p.stars a {
  position: relative;
  height: 14px;
  width: 18px;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
}
.rating-select p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 14px;
  line-height: 1;
  font-family: var(--icon-font);
  content: "\f005";
  font-weight: 400;
  text-indent: 0;
  color: var(--yellow-color);
}
.rating-select p.stars a:hover ~ a::before {
  content: "\f005";
  font-weight: 400;
}
.rating-select p.stars:hover a::before {
  content: "\f005";
  font-weight: 700;
}
.rating-select p.stars.selected a.active::before {
  content: "\f005";
  font-weight: 700;
}
.rating-select p.stars.selected a.active ~ a::before {
  content: "\f005";
  font-weight: 400;
}
.rating-select p.stars.selected a:not(.active)::before {
  content: "\f005";
  font-weight: 700;
}

.woocommerce-message,
.woocommerce-info {
  position: relative;
  border: 1px solid transparent;
  padding: 16px 20px;
  background-color: var(--theme-color);
  color: var(--black-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  border-radius: 0;
}

.woocommerce-message a,
.woocommerce-info a {
  color: inherit;
  text-decoration: underline;
}
.woocommerce-message a:hover,
.woocommerce-info a:hover {
  color: var(--secondary-color);
}

.woocommerce-message a:hover,
.woocommerce-info a:hover {
  text-decoration: underline;
}

.woocommerce-message:before,
.woocommerce-info:before {
  content: "\f06a";
  font-family: var(--icon-font);
  font-weight: 900;
  margin-right: 10px;
}

.woocommerce-notices-wrapper .woocommerce-message {
  background-color: var(--theme-color);
}

.woocommerce-notices-wrapper .woocommerce-message:before {
  content: "\f14a";
  font-weight: 300;
}

.woocommerce-form-login-toggle .woocommerce-info {
  background-color: var(--theme-color);
}

.woocommerce-form-coupon,
.woocommerce-form-login {
  padding: 40px;
  background-color: var(--smoke-color);
  margin-bottom: 40px;
  display: none;
}
.woocommerce-form-coupon .form-control,
.woocommerce-form-login .form-control {
  border: 1px solid var(--border-color);
}
.woocommerce-form-coupon .form-control::placeholder,
.woocommerce-form-login .form-control::placeholder {
  opacity: 1;
  visibility: visible;
}
.woocommerce-form-coupon .form-control:focus,
.woocommerce-form-login .form-control:focus {
  border-color: var(--sec-color);
}
.woocommerce-form-coupon .form-control:focus::placeholder,
.woocommerce-form-login .form-control:focus::placeholder {
  opacity: 0;
  visibility: hidden;
}

.woocommerce-form-coupon .form-group,
.woocommerce-form-login .form-group {
  margin-bottom: 25px;
}

.woocommerce-form-coupon .form-group:last-child,
.woocommerce-form-login .form-group:last-child {
  margin-bottom: 0;
}

.woocommerce-error {
  background-color: var(--error-color);
  color: #fff;
  list-style: none;
  padding: 10px 26px;
  margin: 0 0 30px 0;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}

nav.woocommerce-MyAccount-navigation li {
  border: 1px solid #ddd;
  margin: 0;
  border-top: none;
}

nav.woocommerce-MyAccount-navigation li:first-child {
  border-top: 1px solid #ddd;
}

nav.woocommerce-MyAccount-navigation li a {
  color: var(--title-color);
  font-weight: 700;
  padding: 7px 17px;
  display: block;
}

nav.woocommerce-MyAccount-navigation li.is-active a,
nav.woocommerce-MyAccount-navigation li a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}

.woocommerce-MyAccount-content h3 {
  margin-top: -0.3em;
}

.woocommerce-MyAccount-content .btn {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 14px;
  padding: 10px 25px;
  font-weight: 700;
}

.woocommerce-MyAccount-content .btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

table.variations,
.woocommerce-grouped-product-list-item {
  border-collapse: separate;
  border-spacing: 0 15px;
  margin-bottom: 5px;
  align-items: center;
}

table.variations td,
.woocommerce-grouped-product-list-item td {
  border: none;
  vertical-align: middle;
  padding: 0 5px;
}

table.variations td:first-child,
.woocommerce-grouped-product-list-item td:first-child {
  padding: 0;
}

table.variations label,
.woocommerce-grouped-product-list-item label {
  margin: 0;
  font-size: 14px;
  text-transform: capitalize;
}

table.variations label a,
.woocommerce-grouped-product-list-item label a {
  color: var(--title-color);
}

table.variations label a:hover,
.woocommerce-grouped-product-list-item label a:hover {
  color: var(--theme-color);
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
  border: 1px solid var(--border-color);
}

.woocommerce-product-attributes th p:last-child,
.woocommerce-product-attributes td p:last-child {
  margin-bottom: 0;
}

.woocommerce-grouped-product-list.group_table {
  border-collapse: collapse;
  margin-bottom: 15px;
}

.woocommerce-grouped-product-list.group_table .woocommerce-Price-amount.amount {
  font-size: 16px;
  color: var(--title-color);
}

.woocommerce-grouped-product-list.group_table label {
  margin: 0 0 0 10px;
  margin: 0 0 0 10px;
  font-family: var(--title-font);
  font-size: 18px;
}

.woocommerce-grouped-product-list.group_table .qty-input {
  border-color: #e3e6e9;
}

.woocommerce-grouped-product-list.group_table tr {
  border-bottom: 1px solid #e3e6e9;
}

.woocommerce-grouped-product-list.group_table tr:last-child {
  border-bottom: none;
}

.woocommerce-grouped-product-list.group_table td {
  padding: 30px 5px;
}

table.variations {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

table.variations td {
  padding: 0;
}

table.variations td.label {
  padding-right: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

table.variations select {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
  margin: 0;
  padding-right: 54px;
  padding-left: 20px;
  height: 50px;
}

table.variations .reset_variations {
  margin-left: 16px;
  display: inline-block;
  position: absolute;
  left: 100%;
  bottom: 25px;
}

.woocommerce-variation.single_variation {
  margin-bottom: 30px;
}

.woocommerce-variation.single_variation .price {
  color: var(--title-color);
  font-weight: 700;
}

/*------------------- 4.26. contact -------------------*/
.contact-layout1 .vs-comment-form {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  margin-bottom: 0;
}
.contact-layout1 .vs-comment-form .comment-respond {
  background-color: var(--white-color);
}
.contact-layout1 .vs-comment-form .comment-respond .form-control {
  padding: 34px;
}
.contact-layout1 .vs-btn {
  background-color: var(--theme-color);
}
.contact-layout1 .vs-btn:hover {
  background-color: var(--secondary-color);
}
.contact-layout1 .auther-inner {
  align-items: self-start;
  background-color: var(--secondary-color);
  padding: 33px 30px;
  margin-right: 0;
}
.contact-layout1 .auther-inner .auther-img {
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--theme-color);
}
.contact-layout1 .auther-inner .name {
  color: var(--white-color);
}
.contact-layout1 .auther-inner .designation {
  font-weight: 400;
  color: var(--white-color);
  display: block;
}
.contact-layout1 .contact-left .contact-title {
  font-size: 22px;
  border-bottom: 2px solid var(--theme-color);
  display: inline-block;
  margin-bottom: 5px;
}
.contact-layout1 .contact-left .team-media {
  padding: 35px 30px;
  border: 1px solid var(--border-color);
  border-top: none;
}
.contact-layout1 .contact-left .team-media .media-style1 {
  padding: 25px 0px 20px;
  border-bottom: 1px solid var(--border-color);
}
.contact-layout1 .contact-left .team-media .media-style1:last-child {
  border: none;
  padding-bottom: 0;
}
.contact-layout1 .contact-left .team-media .media-style1 .media-title {
  color: var(--black-color);
}
.contact-layout1 .contact-left .team-media .media-style1 .media-info {
  color: var(--black-color);
}
.contact-layout1 .contact-left .team-media .media-style1 .media-info a {
  color: var(--black-color);
}
.contact-layout1 .map {
  margin-top: 100px;
  -webkit-filter: grayscale(100%);
}

/*------------------- 4.27. history -------------------*/
.history-style1 {
  background-color: var(--white-color);
  padding: 40px;
  margin-bottom: 10px;
}
.history-style1 .year {
  font-size: 40px;
  color: var(--secondary-color);
  display: inline-block;
  font-weight: 600;
}
.history-style1 .history-text {
  margin-bottom: 40px;
}
.history-style1 .history-title {
  font-size: 18px;
}

.history-layout1 .icon-btn {
  border: 1px solid var(--border-color);
}

/*------------------- 4.28. history -------------------*/
/*------------------- 4.00. Simple Sections  -------------------*/
.social-style1 a {
  color: var(--title-color);
  font-size: 22px;
  margin-right: 20px;
}
.social-style1 a:last-child {
  margin-right: 0;
}
.social-style1 a:hover {
  color: var(--theme-color);
}

/*------------------- 4.00. Simple Sections  -------------------*/
.popup-search-box {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.95);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all ease 0.4s;
}
.popup-search-box button.searchClose {
  width: 60px;
  height: 60px;
  line-height: 60px;
  position: absolute;
  top: 40px;
  right: 40px;
  border: none;
  background-color: var(--secondary-color);
  color: var(--white-color);
  font-size: 30px;
  border-radius: 50%;
  transition: all ease 0.4s;
}
.popup-search-box button.searchClose i {
  line-height: inherit;
}
.popup-search-box button.searchClose:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}
.popup-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform ease 0.4s;
  /* Large devices */
}
@media (max-width: 1199px) {
  .popup-search-box form {
    max-width: 600px;
  }
}
.popup-search-box form input {
  font-size: 14px;
  height: 70px;
  width: 100%;
  border: 2px solid var(--white-color);
  background-color: transparent;
  padding-left: 30px;
  color: #fff;
  border-radius: 50px;
}
.popup-search-box form input::-moz-placeholder {
  color: #fff;
}
.popup-search-box form input::-webkit-input-placeholder {
  color: #fff;
}
.popup-search-box form input:-ms-input-placeholder {
  color: #fff;
}
.popup-search-box form input::placeholder {
  color: #fff;
}
.popup-search-box form button {
  position: absolute;
  top: 0px;
  background-color: transparent;
  border: none;
  font-size: 20px;
  right: 13px;
  color: var(--white-color);
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.popup-search-box form button:hover {
  transform: scale(1.1);
}
.popup-search-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  transition: all ease 0.4s;
  border-radius: 0;
}
.popup-search-box.show form {
  transition-delay: 0.5s;
  transform: translate(-50%, -50%) scale(1);
}

/*------------------- 4.00. Popup Side Menu  -------------------*/
.sidemenu-wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}
.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 1px solid;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--black-color);
  color: var(--white-color);
  border-radius: 50%;
  transform: rotate(0);
  transition: all ease 0.4s;
  z-index: 2;
}
.sidemenu-wrapper .closeButton:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: transparent;
  transform: rotate(90deg);
}
.sidemenu-wrapper .sidemenu-content {
  background-color: var(--body-bg);
  width: 450px;
  margin-left: auto;
  padding: 40px 30px 80px 30px;
  height: 100%;
  overflow: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  transition-delay: 1s;
  transition: right ease 1s;
}
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
}
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}
.sidemenu-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
}
.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  transition: all ease 0.8s;
}
.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.offcanvas-wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}
.offcanvas-wrapper .closeButton {
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 24px;
  padding: 0;
  background-color: var(--theme-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  transform: rotate(0);
  transition: all ease 0.4s;
  z-index: 33;
}
.offcanvas-wrapper .closeButton i {
  line-height: inherit;
}
.offcanvas-wrapper .closeButton:hover {
  color: var(--white-color);
  border-color: transparent;
  transform: rotate(90deg);
  background-color: var(--theme-color);
}
.offcanvas-wrapper .sidemenu-content {
  background-color: var(--white-color);
  width: 450px;
  margin-left: auto;
  padding: 50px 30px;
  height: 100%;
  overflow: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  transition-delay: 1s;
  transition: right ease 1s;
}
.offcanvas-wrapper .sidemenu-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
}
.offcanvas-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}
.offcanvas-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 50px;
}
.offcanvas-wrapper .footer-text {
  max-width: 100%;
}
.offcanvas-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  transition: all ease 0.8s;
}
.offcanvas-wrapper.show .sidemenu-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}

/*=================================
    05. Spacing
==================================*/
.pb-30 {
  padding-bottom: 30px;
}

.pb-1px {
  padding-bottom: 1px;
}

.pt-30 {
  padding-top: 30px;
}

.mt-n1 {
  margin-top: -0.25rem;
}

.mt-n2 {
  margin-top: -0.5rem;
}

.mt-n3 {
  margin-top: -1rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -0.25rem;
}

.mb-n2 {
  margin-bottom: -0.5rem;
}

.mb-n3 {
  margin-bottom: -1rem;
}

.mb-n4 {
  margin-bottom: -1.5rem;
}

.mb-n5 {
  margin-bottom: -3rem;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

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

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

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

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

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

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

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

.mb-60 {
  margin-bottom: 60px;
}

.space,
.space-top {
  padding-top: var(--section-space);
}

.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

.section-title-top {
  padding-top: var(--section-title-space);
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
  .space-top-md-none {
    padding-top: 0;
  }
}

/*# sourceMappingURL=style.css.map */
