/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	1. 	Document Setup
	2. 	Element Base
	3. 	Helper Classes
	4. 	Site Header
	5. 	Global
	6. 	Plugins
	7. 	Page Templates
		a. 	Template: Home
		b. 	Template: About
		c.  Template: Services
		d.  Template: Testimonials
		e.  Template: Shop
		f.  Template: Blog
		g.  Template: Contact

		...
		z. 	Template: Full Width
	8.  Post: Archive
	9.  Post: Single
	10. Blocks
	11. Entry Content
	12. Comments
	13. Site Pagination
	14. Error 404
	15. Extras
	16. Site Footer

----------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	1. Document Setup
/* -------------------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap");

* {
  font-family: "Geist", sans-serif;
  font-size: 18px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@media (min-width: 1799px) {
  .container {
    max-width: 1710px;
  }

  #header .container {
    max-width: 1680px;
  }
}

/* -------------------------------------------------------------------------- */
/*	2. Element Base
/* -------------------------------------------------------------------------- */

body {
  overflow-x: hidden;
}

body.woocommerce-page main:not(.bs-template, .single-post) {
  padding: 245px 0 100px 0;
}

@media (max-width: 1399px) {
  body.woocommerce-page main:not(.bs-template, .single-post) {
    padding: 150px 0 75px 0;
  }
}

p {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

ul,
ol {
  padding-left: 0;
  margin-bottom: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

/* -------------------------------------------------------------------------- */
/*	3. Helper Classes
/* -------------------------------------------------------------------------- */

.primary-btn {
  padding: 13px 20px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 301px;
  position: relative;
  overflow: hidden;
}

.primary-btn span {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  position: relative;
  z-index: 2;
  transition: color 0.5s ease;
}

/* Btn bordered dark */
.primary-btn.bordered.dark {
  border: 1px solid #000;
  color: #000;
  background-color: transparent;
}

.primary-btn.bordered.dark span {
  color: #000;
}

.primary-btn.bordered.dark::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  top: 40px;
  left: 0;
  background-color: #000;
  transform-origin: top right;
  transform: rotate(-90deg);
  transition: 0.5s ease;
  z-index: 1;
}

.primary-btn.bordered.dark:hover::after {
  transform: rotate(0deg);
  top: 0;
}

.primary-btn.bordered.dark:hover span {
  color: #fff;
  transform: 0.5s ease;
}

.primary-btn.dark {
  color: #fff;
  background-color: #000;
}
.primary-btn.dark span {
  color: #fff;
}

/* Btn bordered white */
.primary-btn.bordered.white {
  border: 1px solid #fff;
  color: #fff;
  background-color: transparent;
}
.primary-btn.bordered.white span {
  color: #fff;
}

.primary-btn.bordered.white::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  top: 40px;
  left: 0;
  background-color: #fff;
  transform-origin: top right;
  transform: rotate(-90deg);
  transition: 0.5s ease;
  z-index: 1;
}

.primary-btn.bordered.white:hover::after {
  transform: rotate(0deg);
  top: 0;
}

.primary-btn.bordered.white:hover span {
  color: #000;
  transform: 0.5s ease;
}

.primary-btn.white {
  color: #000;
  background-color: #fff;
}
.primary-btn.white span {
  color: #000;
}

/* -------------------------------------------------------------------------- */
/*	4.	Site Header
/* -------------------------------------------------------------------------- */

#header {
  position: fixed;
  top: 27px;
  left: 0;
  width: 100%;
  z-index: 999;
}

#header .header-wrapper {
  border-radius: 48px;
  background: rgba(255, 255, 255, 1);
  /* background: rgba(255, 255, 255, 0.15); */
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 12px 22px 12px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#header .logo-area {
  width: 276px;
}

#header .logo-area-mobile {
  display: none;
  width: 124px;
}

#header .logo-area-mobile img,
#header .logo-area img {
  width: 100%;
  height: 100%;
}

#header .main-menu {
  display: flex;
  align-items: center;
  gap: 51px;
}

#header .main-menu .menu-item a {
  color: #000;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  transition: 0.3s ease;
}

#header .main-menu .menu-item.menu-item-btn {
  border-radius: 60px;
  border: 1.5px solid var(--primaryColor);
  padding: 13px 32px;
  margin-left: 28px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

#header .main-menu .menu-item.menu-item-btn a {
  position: relative;
  z-index: 2;
  color: var(--primaryColor);
  transition: color 0.5s ease;
}

#header .main-menu .menu-item.menu-item-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  top: 40px;
  left: 0;
  background-color: var(--primaryColor);
  transform-origin: top right;
  transform: rotate(-90deg);
  transition: 0.5s ease;
  z-index: 1;
}

#header .main-menu .menu-item.menu-item-btn:hover::after {
  transform: rotate(0deg);
  top: 0;
}

#header .main-menu .menu-item.menu-item-btn:hover a {
  color: #fff !important;
  transform: 0.5s ease;
}

#header .mobile-menu-btn {
  width: 51px;
  height: 51px;
  background-image: url(../images/icons/menu-dark.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: none;
  border: none;
  background-color: transparent;
}

#header .main-menu .menu-item:hover a,
#header .main-menu .menu-item.current-menu-item a {
  color: #ec1c24;
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  display: none;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu .mobile-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.mobile-menu .mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 85%;
  max-width: 420px;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu .mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu .mobile-menu-close {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  background-image: url(../images/icons/close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mobile-menu .mobile-main-menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu .mobile-main-menu .menu-item a {
  color: #000;
  font-size: 18px;
}

.mobile-menu .menu-item.menu-item-btn a {
  display: inline-flex;
  padding: 10px 20px;
  border: 1px solid var(--primaryColor);
  color: #fff;
  background-color: var(--primaryColor);
  border-radius: 60px;
}

@media (max-width: 1798px) {
  #header .main-menu .menu-item a {
    font-size: 18px;
  }

  #header .main-menu {
    gap: 25px;
  }

  #header .main-menu .menu-item.menu-item-btn {
    margin-left: 15px;
  }

  #header .logo-area {
    width: 230px;
  }
}

@media (max-width: 1399px) {
  #header .main-menu .menu-item a {
    font-size: 16px;
  }

  #header .main-menu .menu-item.menu-item-btn {
    padding: 10px 17.5px;
    margin-left: 0;
  }

  #header .main-menu {
    gap: 20px;
  }

  #header .logo-area {
    width: 205px;
  }
}

@media (max-width: 1199px) {
  #header .main-menu,
  #header .logo-area {
    display: none;
  }
  #header .mobile-menu-btn,
  #header .logo-area-mobile {
    display: block;
  }
}

/* -------------------------------------------------------------------------- */
/*	5. Global
/* -------------------------------------------------------------------------- */

.modal-outer.show {
  display: flex;
}

.modal-outer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #00000085;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-inner {
  width: 90%;
  height: 80%;
  max-width: 1685px;
  background-image: url(../images/general/modal-bg.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 45px 55px 60px 250px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
}

.modal-head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 55px;
}

.modal-close {
  background-color: transparent;
  border: none;
  width: 32px;
  height: 32px;
  background-image: url(../images/icons/close.svg);
}

.modal-title {
  color: #000;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: -2.4px;
  padding-top: 42px;
}

.modal-title u{
  color: #000;
  font-size: 80px;
  font-style: normal;
  font-weight: 500;
  line-height: 90%;
  letter-spacing: -2.4px;
}

.modal-content-area {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
}

.modal-content-area .description {
  display: block;
  width: 100%;
  max-width: 100%;
}

.modal-content-area::-webkit-scrollbar {
  width: 12px;
  border-radius: 12px;
}

.modal-content-area::-webkit-scrollbar-thumb {
  border-radius: 12px;
  background: #ec1c24;
}
.modal-content-area::-webkit-scrollbar-track {
  border-radius: 12px;
  background: #fff;
}

.modal-content-row {
  display: flex;
  gap: 97px;
  padding-right: 65px;
}

.modal-content-row .image-area {
  width: 200px;
  height: 300px;
}

.modal-content-row .image-area img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-content-row .video-area {
  position: relative;
  width: 100%;
  max-width: 425px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}

.modal-content-row .video-area::after {
  content: "";
  width: 91px;
  height: 91px;
  background-image: url(../images/icons/play-solid.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  display: block;
}

.modal-content-row .video-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.modal-content-row .content-area {
  flex: 1;
}

.modal-content-row .content-area > * {
  color: #000;
  font-size: 18px;
  line-height: 140%;
}

.modal-content-row .content-area p > a {
  color: #000;
  text-decoration: underline;
}

.modal-content-row .content-area p {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  margin-bottom: 1.5rem;
}

.modal-content-row .content-area strong {
  font-weight: 700;
}

.service-modal .modal-inner {
  padding: 45px 55px 60px 120px;
}

.service-modal .modal-title {
  padding-top: 0;
}

.service-modal .modal-content-row {
  gap: 30px;
}

.service-modal .content-item {
  display: flex;
  align-items: center;
  gap: 95px;
}

.service-modal .content-item span {
  color: #000;
  font-size: 32px;
  font-weight: 400;
  line-height: 140%;
  opacity: 0.4;
  min-width: 45px;
}

.service-modal .content-item li,
.service-modal .content-item p {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

.service-modal .content-item li strong,
.service-modal .content-item p strong{
  font-weight: 700;
}

.service-modal .content-item p {
  margin-bottom: 1.5rem;
}

.service-modal .content-item li {
  list-style: disc;
}

.service-modal .content-item ul {
  margin-bottom: 33px;
  padding-left: 1.5rem;
}

.service-modal .content-item ul.modal-list {
  padding-left: 2.5rem;
  column-count: 2;
}

.service-modal .content-item h5 {
  color: #000;
  font-size: 22px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 45px;
}

.service-modal .content-item h5.pl-3 {
  padding-left: 1.5rem;
}

.service-modal .content-item strong.fs-22 {
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 140%;
}

.service-modal .content-item:nth-child(1) {
  align-items: flex-end;
}
.service-modal .content-item:nth-child(2) {
  align-items: center;
}
.service-modal .content-item:nth-child(3) {
  align-items: flex-start;
}

.service-modal .content-item:nth-child(3) .description {
  padding-top: 10px;
}

.service-modal .content-item .subtitle {
  color: #000;
  font-size: 32px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 33px;
}

@media (max-width: 1399px) {
  .modal-inner {
    padding: 45px 50px 50px 100px;
  }

  .modal-title u,
  .modal-title {
    font-size: 64px;
  }

  .modal-content-row {
    gap: 55px;
    padding-right: 35px;
  }

  .service-modal .content-item strong.fs-22,
  .service-modal .content-item h5 {
    font-size: 20px;
  }
}

@media (max-width: 1199px) {
  .service-modal .content-item span {
    display: none;
  }
}

@media (max-width: 991px) {
  .modal-content-row {
    flex-direction: column;
  }

  .modal-title u,
  .modal-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .modal-inner {
    padding: 35px 25px 40px 45px;
  }

  .modal-head {
    margin-bottom: 30px;
  }

  .modal-content-row {
    gap: 35px;
  }

  .modal-content-row .image-area {
    width: 150px;
    height: 225px;
  }

  .modal-title {
    font-size: 38px;
    padding-top: 22px;
  }
  .modal-title u{
    font-size: 38px;
  }
  .modal-content-row .content-area p,
  .modal-content-row .content-area > * {
    font-size: 16px;
  }

  .modal-content-area::-webkit-scrollbar {
    width: 8px;
  }

  .service-modal .modal-inner {
    padding: 40px 45px 45px 50px;
  }

  .service-modal .content-item .subtitle {
    font-size: 24px;
  }

  .service-modal .modal-content-row {
    gap: 15px;
  }

  .service-modal iframe {
    width: max-content;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
  }

  .service-modal .content-item h5 {
    margin-bottom: 20px;
  }

  .service-modal .content-item ul.modal-list {
    column-count: 1;
  }
}

@media (max-width: 576px) {
  .modal-content-row {
    padding-right: 20px;
  }
  .service-modal .modal-inner {
    padding: 30px 20px 35px 25px;
  }
}

/* Footer Contaxt Form */
section.form-section {
  padding: 200px 0 125px 0;
  background-image: url(../images/general/form-bg.svg);
  background-position: top left;
  background-repeat: no-repeat;
  background-size: 55%;
}

section.form-section .content-row {
  display: flex;
  align-items: center;
  gap: 150px;
  justify-content: space-between;
}

section.form-section .title > strong,
section.form-section .title {
  color: #fff;
  font-size: 140px;
  font-weight: 300;
  line-height: 90%;
  letter-spacing: -4.2px;
}

section.form-section .title > strong {
  font-weight: 500;
}

section.form-section .form-wrap {
  width: 100%;
  max-width: 635px;
}

section.form-section .form-wrap .subtext {
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 66px;
  max-width: 532px;
}

section.form-section .form-wrap .form-row {
  display: flex;
  gap: 16px;
  width: 100%;
  padding: 0;
  margin: 0;
}

section.form-section .form-wrap .form-row::before,
section.form-section .form-wrap .form-row::after {
  content: none;
  display: none;
}

section.form-section .form-wrap .input-wrap {
  flex: 1;
  margin-bottom: 16px;
}

section.form-section .form-wrap .submit-wrap {
  position: relative;
}

section.form-section input[type="text"],
section.form-section input[type="email"],
section.form-section input[type="tel"] {
  border-radius: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0);
  background: rgba(255, 255, 255, 0.65);
  min-height: 44px;
  padding: 12px;
  width: 100%;
  outline: none;
  transition: 0.3s ease;
}

section.form-section textarea::placeholder,
section.form-section input::placeholder {
  color: #2e1814;
}

section.form-section textarea {
  width: 100%;
  border-radius: 8px;
  border: 1.5px solid rgba(0, 0, 0, 0);
  background: rgba(255, 255, 255, 0.65);
  height: 124px;
  padding: 12px;
  resize: none;
  outline: none;
  transition: 0.3s ease;
}

section.form-section textarea:focus,
section.form-section input[type="text"]:focus,
section.form-section input[type="email"]:focus,
section.form-section input[type="tel"]:focus {
  background-color: #fff;
}

@media (max-width: 1798px) {
  section.form-section .title > strong,
  section.form-section .title {
    font-size: 96px;
  }

  section.form-section .content-row {
    gap: 70px;
  }

  section.form-section .form-wrap {
    max-width: 595px;
  }

  section.form-section .form-wrap .subtext {
    font-size: 20px;
    max-width: 490px;
  }
}

@media (max-width: 1399px) {
  section.form-section .title > strong,
  section.form-section .title {
    font-size: 76px;
  }
}

@media (max-width: 991px) {
  section.form-section .content-row {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 768px) {
  section.form-section {
    padding: 113px 0 100px 0;
    background-image: none;
  }
}

@media (max-width: 576px) {
  section.form-section .title > strong,
  section.form-section .title {
    font-size: 80px;
  }

  section.form-section .form-wrap .subtext {
    font-size: 18px;
    max-width: 319px;
  }

  section.form-section .form-wrap .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Footer Banner */
section.footer-banner .banner-box {
  padding: 73px 182px;
  border-radius: 12px;
  background-image: url(../images/general/box-bg.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
}

section.footer-banner .banner-box .title > strong,
section.footer-banner .banner-box .title {
  color: var(--primaryColor);
  font-size: 80px;
  font-weight: 300;
  line-height: 90%;
  letter-spacing: -2.4px;
}

section.footer-banner .banner-box .title > strong {
  font-weight: 500;
}

section.footer-banner .banner-box .banner-row {
  padding-top: 55px;
  display: flex;
  gap: 94px;
}

section.footer-banner .banner-box .image-area {
  width: 342.501px;
  height: 201.456px;
}

section.footer-banner .banner-box .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

section.footer-banner .banner-box .description-area {
  flex: 1;
}

section.footer-banner .banner-box .btns-wrap {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 41px;
}

@media (max-width: 1798px) {
  section.footer-banner .banner-box {
    padding: 60px 70px;
  }

  section.footer-banner .banner-box .title > strong,
  section.footer-banner .banner-box .title {
    font-size: 64px;
  }

  section.footer-banner .banner-box .banner-row {
    gap: 70px;
    padding-top: 45px;
  }
}

@media (max-width: 1399px) {
  section.footer-banner .banner-box .title > strong,
  section.footer-banner .banner-box .title {
    font-size: 56px;
  }

  section.footer-banner .banner-box .banner-row {
    gap: 45px;
    padding-top: 30px;
  }

  section.footer-banner .banner-box .btns-wrap {
    gap: 20px;
  }

  .primary-btn span,
  .primary-btn {
    font-size: 18px;
  }
}

@media (max-width: 1199px) {
  section.footer-banner .banner-box .title > strong,
  section.footer-banner .banner-box .title {
    font-size: 48px;
  }

  section.footer-banner .banner-box .banner-row {
    flex-direction: column;
  }

  section.form-section .title > strong,
  section.form-section .title {
    font-size: 64px;
  }

  section.form-section .content-row {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  section.footer-banner .banner-box .btns-wrap {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 576px) {
  section.footer-banner .banner-box .image-area {
    width: 100%;
    max-width: 262.527px;
    height: 154.416px;
  }

  section.footer-banner .banner-box {
    padding: 50px 27px;
  }

  section.footer-banner .banner-box .banner-row {
    padding-top: 45px;
  }

  section.footer-banner .banner-box .btns-wrap {
    gap: 38px;
  }

  section.footer-banner .banner-box .btns-wrap .primary-btn {
    max-width: 100%;
  }
}

/* Woocommerce */
.wc-block-components-checkout-place-order-button {
  border: 1px solid #000;
  border-radius: 60px;
  background: transparent;
  padding: 8px 10px;
}

body.woocommerce-cart .wc-block-components-product-name {
  color: #000;
}

body.woocommerce-cart .wc-block-cart__submit-button {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  padding: 13px 20px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 1px solid #000;
  color: #000;
  background-color: transparent;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price,
.woocommerce:where(body:not(.woocommerce-uses-block-theme))
  div.product
  span.price {
  color: #ec1c24 !important;
}

body.woocommerce-checkout .wc-block-components-order-meta {
  padding-left: 10px;
  padding-right: 10px;
}

body.woocommerce-page main.single-post .s2 .news-wrap,
body.woocommerce-page main.single-post .share-col,
body.woocommerce-page main.single-post .thumbnail-row {
  display: none;
}

body.woocommerce-page main.single-post .s1 {
  padding: 235px 0 150px 0;
}

body.woocommerce-page main.single-post .s2 .banner-box {
  top: -100px;
}

body.woocommerce-page main.single-post div.product div.images img {
  max-height: 500px;
}

body.single-product main.single-post ul.products li.product .button,
body.woocommerce-page main.single-post div.product form.cart .button {
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  padding: 13px 20px;
  border-radius: 60px;
  font-size: 20px;
  font-weight: 400;
  line-height: 140%;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 301px;
  border: 1px solid #000;
  color: #000;
  background-color: transparent;
}

/* Hide SKU, Categories, and Tags on the single product page */
body.woocommerce-page main.single-post div.product form.cart div.quantity,
body.woocommerce-page .single-product .product_meta .sku_wrapper,
body.woocommerce-page .single-product .product_meta .posted_in,
body.woocommerce-page .single-product .product_meta .tagged_as {
  display: none;
}

/* Single product */
body.single-product main.single-post .s2 {
  background: #fff;
}

body.single-product .woocommerce-loop-product__title {
  color: #000;
}

body.single-product section.related.products h2 {
  margin-bottom: 35px;
}

body.single-product section.related.products li.product {
  display: flex;
  flex-direction: column;
}

body.single-product
  section.related.products
  li.product
  .woocommerce-loop-product__link {
  flex: 1;
}

body.single-product section.related.products ul.products {
  display: flex;
}

@media (max-width: 1199px) {
  body.woocommerce-page main.single-post .s1 {
    padding: 150px 0 100px 0;
  }
}

@media (max-width: 768px) {
  body.woocommerce-page main.single-post .s2 .banner-box {
    top: 0;
  }
  body.woocommerce-page main.single-post .s2 {
    padding-top: 100px;
  }
  body.single-product section.related.products ul.products {
    flex-direction: column;
  }
  body.single-product section.related.products li.product {
    width: 100%;
  }
}

/* Accordion */
.acc-item.no-collapse {
  pointer-events: none;
  cursor: default;
}
.acc-item .primary-btn {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  border-radius: 60px;
  border: 1.5px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  max-width: 167px;
  position: relative;
  overflow: hidden;
}

.acc-item .primary-btn span {
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}

.acc-item .primary-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 60px;
  top: 30px;
  left: 0;
  background-color: #000;
  transform-origin: top right;
  transform: rotate(-90deg);
  transition: 0.5s ease;
  z-index: 1;
}

.acc-item .primary-btn:hover::after {
  transform: rotate(0deg);
  top: 0;
}

.acc-item .primary-btn:hover span {
  color: #fff;
  transform: 0.5s ease;
}

.acc-item {
  width: 100%;
}

.acc-item::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #000;
  display: block;
  transition: 0.3s ease;
  top: 15px;
  position: relative;
}

.acc-item:not(.active):hover::after {
  height: 4px;
  transform: translateY(-50%);
}

.acc-item .acc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.acc-item .acc-label {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 90%;
  transition: 0.3s ease;
}

.acc-item.active .acc-label {
  font-size: 65px;
}

.acc-item .acc-header:hover .acc-icon svg > path {
  fill: var(--primaryColor);
  transition: 0.3s ease;
}

.acc-item .acc-header .acc-close {
  width: 38px;
  height: 38px;
  background-image: url(../images/icons/close.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  background-color: transparent;
  display: none;
}

.acc-item.active .acc-header .acc-close {
  display: block;
}

.acc-item.active .acc-icon {
  display: none;
}

.acc-item .acc-body {
  overflow: hidden;
  height: 0;
  transition: height 0.5s ease;
  opacity: 0;
  visibility: hidden;
}

.acc-item.active .acc-body {
  opacity: 1;
  visibility: visible;
}

.acc-item .acc-body-row {
  display: flex;
  gap: 38px;
  padding-top: 42px;
}

.acc-item .acc-img {
  width: 361.5px;
  height: 246px;
}
.acc-item .acc-content {
  flex: 1;
}

.acc-item .acc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.acc-item .acc-content p {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  letter-spacing: -0.32px;
  margin-bottom: 40px;
}

.acc-item .acc-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 50px;
}

.acc-item .acc-content li {
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}

.acc-item .acc-content li:nth-last-child(1) {
  border-bottom: 0;
  padding-bottom: 0;
}

@media (max-width: 1798px) {
  .acc-item.active .acc-label {
    font-size: 50px;
  }

  .acc-item .acc-img {
    width: 280px;
    height: 200px;
  }
}

@media (max-width: 1399px) {
  .acc-item .acc-label {
    font-size: 22px;
  }

  .acc-item::after {
    top: 10px;
  }

  .acc-item.active .acc-label {
    font-size: 36px;
  }

  .acc-item .acc-body-row {
    gap: 25px;
    padding-top: 30px;
  }

  .acc-item .acc-content p {
    margin-bottom: 20px;
  }

  .acc-item .acc-content ul {
    margin-bottom: 30px;
  }

  .acc-item .primary-btn span {
    font-size: 18px;
  }
  .acc-item .primary-btn {
    font-size: 18px;
    height: 51px;
  }

  .acc-item .acc-img {
    width: 220px;
    height: 180px;
  }
}

@media (max-width: 1199px) {
  main.home .s3 .accordions {
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .acc-item .acc-body-row {
    flex-direction: column;
    gap: 39px;
  }

  .acc-item .acc-content p {
    font-size: 16px;
    margin-bottom: 37px;
  }

  .acc-item .acc-content li {
    font-size: 16px;
  }

  .acc-item .acc-content ul {
    margin-bottom: 60px;
  }

  .acc-item .acc-label,
  .acc-item.active .acc-label {
    font-size: 24px;
  }

  .acc-item .acc-img {
    width: 300px;
    height: 220px;
  }
}

/* -------------------------------------------------------------------------- */
/*	6. Plugins
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7. Page Templates
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7a. Template: Home
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7b. Template: About
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7c. Template: Services
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7d. Template: Testimonials
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7e. Template: Shop
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7f. Template: Blog
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7g. Template: Contact
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	7z. Template: Full Width
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	8. Post: Archive
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	9. Post: Single
/* -------------------------------------------------------------------------- */

main.single-post .s1 {
  padding: 235px 0 360px 0;
}

main.single-post .breadcrumb-item + .breadcrumb-item::before {
  background-image: url(../images/icons/arrow-right.svg);
  content: "";
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  padding: 0;
}

main.single-post .breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}

main.single-post .breadcrumb {
  gap: 19px;
  align-items: center;
}

main.single-post .breadcrumb-item a {
  color: #000;
  font-size: 28px;
  font-weight: 500;
  line-height: 140%;
}

main.single-post .breadcrumb-item {
  color: #ec1c24;
  font-size: 28px;
  font-weight: 400;
  line-height: 140%;
  display: flex;
  align-items: center;
  gap: 19px;
}

main.single-post .entry-title {
  color: #000;
  font-size: 80px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -2.4px;
}

main.single-post .entry-header {
  margin-bottom: 100px;
}

main.single-post .entry-meta {
  color: #000;
  font-size: 24px;
  font-weight: 400;
  line-height: 140%;
}

main.single-post .thumbnail-row {
  display: flex;
  gap: 94px;
  margin-bottom: 90px;
}

main.single-post .time-col {
  min-width: 159px;
}

main.single-post .thumbnail-area {
  flex: 1;
}

main.single-post .thumbnail-area img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  max-height: 520px;
}

main.single-post .content-row {
  display: flex;
  gap: 94px;
}

main.single-post .content-area {
  flex: 1;
}

main.single-post .content-area p {
  margin-bottom: 1rem;
}

main.single-post .content-area p img {
  float: left;
  margin-right: 0.5rem;
}

main.single-post .content-area ul:not(.products) {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

main.single-post .content-area li:not(.product) {
  list-style: disc;
}

main.single-post .share-label {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  margin-bottom: 19px;
}

main.single-post .social-list {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 80px;
}

main.single-post .s1 .primary-btn {
  width: 159px;
}

main.single-post .s2 {
  background: linear-gradient(180deg, #1a0410 74.11%, #b32b38 100%);
}

main.single-post .s2 .news-wrap {
  position: relative;
  top: -244px;
}

main.single-post .s2 .news-row {
  display: flex;
  gap: 61px;
}

main.single-post .s2 .news-item {
  padding: 18px 18px 30px 18px;
  border-radius: 12px;
  background: #fff;
  -webkit-backdrop-filter: blur(28px);
  backdrop-filter: blur(28px);
  flex: 1;
  color: unset;
}

main.single-post .s2 .news-item .image-area {
  height: 226.261px;
  margin-bottom: 58px;
}

main.single-post .s2 .news-item .image-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

main.single-post .s2 .news-item .news-body {
  padding: 0 38px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}

main.single-post .s2 .news-item .date {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
}

main.single-post .s2 .news-item .news-title {
  font-size: 38px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -1.14px;
  color: #000;
}

main.single-post .s2 .news-item .excerpt {
  font-size: 18px;
  font-weight: 300;
  line-height: 140%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

main.single-post .s3::before {
  content: "";
  width: 100%;
  height: 460px;
  background: linear-gradient(
    180deg,
    rgba(233, 174, 146, 0) 29.75%,
    rgba(240, 167, 124, 0.5) 50.89%,
    rgba(229, 177, 156, 0) 90.16%
  );
  backdrop-filter: blur(22.5px);
  display: block;
  position: absolute;
  top: -300px;
}

main.single-post .s2 .banner-box {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

main.single-post .s3 {
  background-color: #b5313e;
  position: relative;
  margin-top: -125px;
}

main.single-post section.form-section {
  padding: 250px 0 125px 0;
}

@media (max-width: 1798px) {
  main.single-post .s2.news-item .news-title {
    font-size: 28px;
  }

  main.single-post .s2 .news-item .news-body {
    padding: 0 20px;
    gap: 15px;
  }

  main.single-post .s2 .news-item .image-area {
    height: 178px;
    margin-bottom: 35px;
  }

  main.single-post .entry-title {
    font-size: 64px;
  }

  main.single-post .breadcrumb-item a,
  main.single-post .breadcrumb-item {
    font-size: 24px;
  }
}

@media (max-width: 1399px) {
  main.single-post .s2 .news-row {
    gap: 20px;
  }

  main.single-post .s2 .news-item .news-title {
    font-size: 24px;
  }
}

@media (max-width: 1199px) {
  main.single-post .s1 {
    padding: 150px 0 330px 0;
  }

  main.single-post .s2 .news-item .news-body {
    padding: 0 5px;
    gap: 10px;
  }

  main.single-post .s2 .news-item .news-title {
    font-size: 20px;
  }

  main.single-post .s2 .news-item .date {
    font-size: 16px;
  }

  main.single-post .entry-header {
    margin-bottom: 35px;
  }

  main.single-post .thumbnail-row {
    flex-direction: column;
    gap: 50px;
  }

  main.single-post .content-row {
    flex-direction: column;
    gap: 15px;
  }

  main.single-post .social-list {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  main.single-post .s2 .news-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  main.single-post .s3::before {
    content: "";
    width: 100%;
    height: 300px;
    top: -200px;
  }
  main.single-post .s3 {
    margin-top: -70px;
    padding-top: 245px;
  }
  main.single-post .entry-title {
    font-size: 60px;
  }
}

@media (max-width: 576px) {
  main.single-post .s2 .news-item .image-area {
    margin-bottom: 59px;
  }

  main.single-post .s2.news-item .date {
    font-size: 18px;
  }

  main.single-post .s2 .news-item .news-title {
    font-size: 24px;
  }

  main.single-post .s2 .news-row {
    gap: 50px;
  }
}

/* -------------------------------------------------------------------------- */
/*	10. Blocks
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	11. Entry Content
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	13. Site Pagination
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	14. Error 404
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	15.	Extras
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/*	16. Site Footer
/* -------------------------------------------------------------------------- */

#footer {
  background-color: #b5313e;
  background-image: url(../images/general/footer-bg.svg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 190px 0 65px 0;
}

#footer .footer-logo {
  width: 212px;
  height: 111px;
}
#footer .footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#footer .footer-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 140px;
  padding-bottom: 137px;
}

#footer .footer-row {
  display: flex;
  gap: 85px;
  flex: 1;
}

#footer .footer-col {
  padding-right: 85px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

#footer .footer-col:nth-last-child(1) {
  padding: 0;
  border: none;
}

#footer .footer-col:nth-child(2) .footer-menu li:nth-last-child(1) {
  margin-top: 1rem;
}

#footer .footer-col p,
#footer .footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 18px;
  font-weight: 400;
  line-height: 140%;
}

#footer .footer-col p {
  margin-bottom: 20px;
}

#footer .footer-col .footer-title {
  color: #fff;
  font-size: 32px;
  font-weight: 400;
  line-height: 140%;
  margin-bottom: 17px;
  white-space: nowrap;
}

#footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#footer span {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
}

#footer .social-media {
  display: flex;
  align-items: center;
  gap: 34px;
}

#footer .social-media .icon {
  width: 28px;
  height: 28px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: flex;
}

#footer .social-media .icon-instagram {
  background-image: url(../images/icons/instagram.svg);
}
#footer .social-media .icon-x {
  background-image: url(../images/icons/x.svg);
}
#footer .social-media .icon-youtube {
  background-image: url(../images/icons/youtube.svg);
}
#footer .social-media .icon-facebook {
  background-image: url(../images/icons/facebook.svg);
}

@media (max-width: 1798px) {
  #footer .footer-logo {
    width: 175px;
    height: 95px;
  }
  #footer .footer-wrapper {
    gap: 100px;
  }

  #footer .footer-row {
    gap: 55px;
  }

  #footer .footer-col {
    padding-right: 55px;
  }

  #footer .footer-col .footer-title {
    font-size: 24px;
  }

  #footer .footer-col p,
  #footer .footer-col a {
    font-size: 16px;
  }

  #footer .social-media {
    gap: 25px;
  }
}

@media (max-width: 1399px) {
  #footer .footer-wrapper {
    gap: 90px;
  }

  #footer .footer-logo {
    width: 130px;
    height: 70px;
  }

  #footer .footer-row {
    gap: 35px;
  }

  #footer .footer-col {
    padding-right: 35px;
  }
}

@media (max-width: 1199px) {
  #footer {
    padding: 150px 0 50px 0;
  }
  #footer .footer-wrapper {
    flex-direction: column;
    gap: 45px;
    padding-bottom: 120px;
  }

  #footer .footer-row {
    justify-content: space-between;
  }
}

@media (max-width: 991px) {
  #footer .footer-row {
    flex-direction: column;
  }

  #footer .footer-col {
    padding-right: 0;
    border-right: none;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }

  #footer .footer-bottom {
    flex-direction: column-reverse;
    align-items: start;
    gap: 45px;
  }

  #footer .social-media {
    flex-wrap: wrap;
  }

  #footer .social-media span {
    width: 100%;
  }
}

@media (max-width: 576px) {
  #footer {
    padding: 66px 0;
  }

  #footer .footer-wrapper {
    padding-bottom: 53px;
    gap: 41px;
  }

  #footer .footer-logo {
    width: 104px;
    height: 54px;
  }
}
