:root {
  --ob-color-grey-03: #C5C4CC;
  --ob-color-basic-white: #FFFFFF;
  --ob-font-color-dark: #141414;
  --ob-border-radius-big: 24px;
  --ob-border-radius-small: 8px;
}

@keyframes drawline-animation {
  from {
    background-size: 0% 1px;
  }
  to {
    background-size: 100% 1px;
  }
}

#header .ob-navbar__icon--search {
  display: none;
}

.archive-content {
  background-color: #F3F3F5 !important;
}

.blog-container {
  margin-left: auto;
  margin-right: auto;
  padding-top: var(--navbar-height);
  width: 100%;
}

.author .blog-container {
  padding-top: 180px;
}

a {
  text-decoration: none;
}

a:focus {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 600;
}

.gallery.post-module a {
  text-decoration: none;
}

:root {
  font-family: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  overflow-x: hidden !important;
  font-family: "Inter", sans-serif;
  background-color: #F3F3F5;
}

html {
  scroll-behavior: smooth;
  color: #000;
  scroll-padding-top: 80px;
  overflow: initial;
  font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #141414;
}

.hide-element {
  opacity: 0;
  visibility: 0;
  pointer-events: none;
}

ul li,
ol li {
  font-weight: 400;
  margin-block-end: 8px;
}

.burger-icon {
  width: 42px;
  height: 42px;
  display: none;
  background-color: #ff3997;
}

.header_temp {
  width: 100%;
}

.custom_container {
  max-width: 1740px;
  margin-left: auto;
  margin-right: auto;
}

.grey-section {
  background-color: #f8f7f7;
}

.theme_btn {
  background-color: #ff3997;
  color: #fff;
  padding: 10px 32px;
  text-transform: uppercase;
  font-size: 14px;
  display: block;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
  border: none;
}

.theme_btn:hover {
  cursor: pointer;
  background-color: #d40054;
}

.breadcrumbs {
  font-size: 14px;
  line-height: 26px;
  display: block;
  font-size: 14px;
}

.breadcrumbs a {
  color: #141414;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, calc(0.75rem + 0vw), 0.75rem);
  line-height: 150%;
  letter-spacing: 0;
}

@media (min-width: 1280px) {
  .breadcrumbs a {
    line-height: 120%;
  }
}

.breadcrumbs a:hover {
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  background-image: linear-gradient(#141414);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size .3s;
}

.breadcrumbs a:hover:hover {
  animation: drawline-animation ease 0.4s forwards;
}

.breadcrumbs a:hover:focus {
  outline: 0;
}

.breadcrumbs span {
  color: #4F4E52;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.75rem, calc(0.75rem + 0vw), 0.75rem);
  line-height: 150%;
  letter-spacing: 0;
}

@media (min-width: 1280px) {
  .breadcrumbs span {
    line-height: 120%;
  }
}

.post-navbar {
  position: fixed;
  width: 100%;
  top: 0px;
  display: none;
  text-align: center;
  padding: 10px 0px;
  background-color: #fff;
  justify-content: center;
  z-index: 10;
  box-shadow: 0px 5px 24px 0px #d2d2d2;
}

.post-navbar__navigation {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 5px 25px;
  text-align: center;
  justify-content: center;
}

.post-navbar__navigation .fake-link {
  margin-bottom: 0px !important;
}

.post-navbar__navigation li a {
  color: #2a2d34;
  font-size: 14px;
  font-weight: bold;
}

.show-navigation {
  transform: translateX(0px) !important;
}

.dot-before {
  position: relative;
  margin-left: 10px;
}

.dot-before::before {
  content: "";
  position: absolute;
  display: block;
  border-radius: 50%;
  width: 2px;
  height: 2px;
  background-color: #000;
  left: -6px;
  top: 8px;
  transform: translateY(-50%);
}

.slash-before {
  position: relative;
  margin-left: 15px;
}

.slash-before::before {
  content: "/";
  position: absolute;
  display: block;
  left: -12px;
  font-weight: 400 !important;
  top: 8px;
  transform: translateY(-50%);
}

.grid_item {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 24px;
  overflow: hidden;
  height: fit-content;
}

.grid_item img {
  width: 100%;
  object-fit: cover;
  height: 271px;
}

.grid_item__picture_link {
  position: relative;
}

.grid_item__picture_link img {
  overflow: hidden;
  height: 271px;
  cursor: unset !important;
}

.grid_item__no-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cacaca;
  height: 100%;
}

.grid_item__circle {
  position: absolute;
  bottom: 16px;
  right: 16px;
  border-radius: 50%;
  background-color: #fff;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  cursor: pointer;
}

.grid_item__content {
  background-color: #fff;
  padding: 16px 24px 24px;
  border: solid 2px #fff;
  border-top: none;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.grid_item__content .text-field__excerpt p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.875rem + 0vw), 0.875rem);
  line-height: 140%;
  letter-spacing: 0;
  color: #4F4E52;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: 8px;
}

.grid_item__exprec {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 104px;
  text-align: center;
  margin-top: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #2a2d34;
}

.grid_item__exprec p {
  text-align: center;
  margin-top: 5px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: #2a2d34;
}

.grid_item__title {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16.86667px;
  line-height: 140%;
  letter-spacing: 0;
  color: #141414;
  display: block;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 320px) and (max-width: 1920px) {
  .grid_item__title {
    font-size: calc(16.86667px + (19.91429 - 16.86667) * ((100vw - 320px) / (1920 - 320)));
  }
}

@media (min-width: 1920px) {
  .grid_item__title {
    font-size: 19.91429px;
  }
}

.grid_item__title a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16.86667px;
  line-height: 140%;
  letter-spacing: 0;
  color: #141414;
}

@media (min-width: 320px) and (max-width: 1920px) {
  .grid_item__title a {
    font-size: calc(16.86667px + (19.91429 - 16.86667) * ((100vw - 320px) / (1920 - 320)));
  }
}

@media (min-width: 1920px) {
  .grid_item__title a {
    font-size: 19.91429px;
  }
}

.grid_item__btn {
  color: #fff;
  padding: 10px 32px;
  text-transform: uppercase;
  font-size: 20px;
  display: block;
  font-weight: 400;
  margin-top: 12px;
  width: fit-content;
  border: none;
}

.grid_item__btn:hover {
  cursor: pointer;
  background-color: #d40054;
}

.grid_item__date {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.grid_item__date span {
  font-size: 14px;
  font-weight: bold;
  color: #7d7a7d;
}

.highlighted .grid_item__content {
  transition: 0.3s border;
  border: solid 2px #ff3997;
  border-top: none;
}

.grid-custom_container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.archive-content .breadcrumbs {
  padding-bottom: 25px;
  padding-top: 25px;
}

.archive-content .content {
  display: flex;
  gap: 50px;
}

.archive-content .content__left {
  width: 100%;
}

.archive-content .content__right .active {
  color: #76767A !important;
}

.archive-content .content__right .title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 18.6px;
  line-height: 120%;
  letter-spacing: 0;
}

@media (min-width: 320px) and (max-width: 1920px) {
  .archive-content .content__right .title {
    font-size: calc(18.6px + (27.74286 - 18.6) * ((100vw - 320px) / (1920 - 320)));
  }
}

@media (min-width: 1920px) {
  .archive-content .content__right .title {
    font-size: 27.74286px;
  }
}

@media (min-width: 1280px) {
  .archive-content .content__right .title {
    letter-spacing: -0.02em;
  }
}

.archive-content .content__right ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin-top: 40px;
}

.archive-content .content__right ul li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, calc(1rem + 0vw), 1rem);
  line-height: 130%;
  letter-spacing: 0;
  color: #141414;
}

.archive-content .content__right ul li a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, calc(1rem + 0vw), 1rem);
  line-height: 130%;
  letter-spacing: 0;
  color: #141414;
}

.archive-content .content__right ul li a:not(.active) {
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  background-image: linear-gradient(#141414);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size .3s;
}

.archive-content .content__right ul li a:not(.active):hover {
  animation: drawline-animation ease 0.4s forwards;
}

.archive-content .content__right ul li a:not(.active):focus {
  outline: 0;
}

.archive-content .content .pagination-custom_container {
  display: flex;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 150px;
}

.archive-content .content .pagination-custom_container .page-numbers {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3B3B3D;
  aspect-ratio: 1/1;
  border-radius: 24px;
  border: 1px solid #C5C4CC;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.875rem + 0vw), 0.875rem);
  line-height: 140%;
  letter-spacing: 0;
  padding: 8px 10px;
  transition: color 0.3s ease;
}

.archive-content .content .pagination-custom_container .page-numbers.prev, .archive-content .content .pagination-custom_container .page-numbers.next {
  padding: 6px;
}

.archive-content .content .pagination-custom_container .page-numbers:not(.current):hover {
  background-color: #EEEDF0;
}

.archive-content .content .pagination-custom_container .current {
  background-color: #141414;
  color: #FFFFFF;
  border-color: #141414;
}

@media (max-width: 1700px) {
  .archive-content .content {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
  }
  .archive-content .content__left {
    width: 100%;
    max-width: 100%;
  }
  .archive-content .content__right {
    position: relative;
    margin-top: 40px;
    width: 100%;
  }
  .archive-content .content__right ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
    list-style: none;
    margin-top: 30px;
  }
  .archive-content .content__right ul li {
    margin-bottom: 16px;
  }
}

.inactive-prev:hover svg path {
  stroke: #000 !important;
}

.page-numbers {
  transition: color 0.3s ease;
}

.page-numbers:not(.next) {
  margin: 0px 3px;
}

.page-numbers:not(.prev) {
  margin: 0px 3px;
}

.page-numbers:hover {
  color: #ff3997;
}

.pagination-cs-btn {
  line-height: 0;
}

.pagination-cs-btn svg {
  transition: transform 0.3s;
}

.pagination-cs-btn svg path {
  transition: stroke 0.3s;
  stroke: #141414;
}

.pagination-cs-btn .mobile-svg {
  display: none;
}

@media (max-width: 768px) {
  .page-numbers:has(.pagination-cs-btn__prev) {
    margin-right: 0;
  }
}

.pagination {
  display: flex;
  width: 100%;
}

@media (max-width: 768px) {
  .pagination {
    justify-content: center;
  }
}

.nav-links {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-link {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, calc(1rem + 0vw), 1rem);
  line-height: 140%;
  letter-spacing: 0;
  color: #141414;
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog-link__desktop {
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  background-image: linear-gradient(#141414);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 0 1px;
  transition: background-size .3s;
}

.blog-link__desktop:hover {
  animation: drawline-animation ease 0.4s forwards;
}

.blog-link__desktop:focus {
  outline: 0;
}

.blog-link__mobile {
  display: none;
}

.blog-link svg {
  transform: translateX(0px);
  transition: transform 0.3s;
}

.blog-link svg path {
  stroke: #141414;
}

.blog-link svg:hover {
  cursor: pointer;
}

.blog-link:hover {
  color: #141414;
}

@media (min-width: 990px) {
  .single-content .blog-container {
    max-width: 720px;
  }
}

.single-content .blog-container .category-and-date {
  display: flex;
  column-gap: 10px;
  row-gap: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.single-content .blog-container .category-and-date span,
.single-content .blog-container .category-and-date a {
  line-height: normal;
}

@media (max-width: 768px) {
  .single-content .blog-container .category-and-date span,
  .single-content .blog-container .category-and-date a {
    font-size: 14px;
  }
}

.single-content .blog-container .content__post-content {
  max-width: 1920px;
  margin: 0 auto;
}

.single-content .blog-container .wp-block-image {
  margin-top: 40px;
}

.single-content iframe {
  max-width: 100%;
}

.single-content .post-author {
  padding-top: 40px;
  border-top: solid 1px #7d7a7d;
  display: flex;
  justify-content: space-between;
}

.single-content .post-author__data {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}

.single-content .post-author__content {
  display: flex;
  flex-direction: column;
}

.single-content .post-author__img img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.single-content .post-author__content span {
  color: #7d7a7d;
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.single-content .post-author__content a {
  text-transform: uppercase;
  color: #232323;
  font-size: 14px;
  list-style: 26px;
  display: block;
  margin-bottom: 10px;
}

.single-content .post-author__description {
  max-width: 400px;
  color: #7d7a7d;
  font-size: 14px;
  line-height: 26px;
}

.single-content .mian-img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.single-content .featured-heading {
  color: #232323;
  font-size: 34px;
  line-height: 34px;
  text-align: center;
  margin-top: 120px;
  margin-bottom: 35px;
}

.single-content__featured-products {
  display: grid;
  margin-bottom: 100px;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.single-content__featured-products .grid_item {
  margin-left: auto;
  margin-right: auto;
}

.single-content__featured-products .grid_item__content {
  border: solid 2px #e4e4e4;
  border-top: none;
}

.single-content .content {
  display: flex;
  flex-direction: row;
  gap: 150px;
}

.single-content .content__post-content {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, calc(1rem + 0vw), 1rem);
  line-height: 130%;
  letter-spacing: 0;
  padding-bottom: 40px;
  color: #4F4E52;
}

.single-content .content__post-content a {
  color: #4F4E52;
}

.single-content .content__post-content a:focus-visible {
  outline: 2px solid #0077FF !important;
}

.single-content .content__post-content .post-text a {
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  background-image: linear-gradient(#4F4E52);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size .3s;
}

.single-content .content__post-content .post-text a:hover {
  animation: drawline-animation ease 0.4s forwards;
}

.single-content .content__post-content .post-text a:focus {
  outline: 0;
}

.single-content .content__post-content h2 {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 16px;
}

.single-content .content__post-content h3 {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 10px;
}

.single-content .content__post-content p {
  color: #4F4E52;
  margin-bottom: 10px;
}

.single-content .content__post-content img {
  margin: 0 auto;
  width: 100%;
  object-fit: cover;
}

.single-content .content__post-content ul {
  list-style: disc;
  padding-left: 20px;
}

.single-content .content__post-content li {
  list-style: disc;
}

.single-content .content__post-content .content__lead {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16.86667px;
  line-height: 140%;
  letter-spacing: 0;
  margin-bottom: 40px;
}

@media (min-width: 320px) and (max-width: 1920px) {
  .single-content .content__post-content .content__lead {
    font-size: calc(16.86667px + (19.91429 - 16.86667) * ((100vw - 320px) / (1920 - 320)));
  }
}

@media (min-width: 1920px) {
  .single-content .content__post-content .content__lead {
    font-size: 19.91429px;
  }
}

.single-content .content__post-content p.content__lead + p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16.86667px;
  line-height: 140%;
  letter-spacing: 0;
}

@media (min-width: 320px) and (max-width: 1920px) {
  .single-content .content__post-content p.content__lead + p {
    font-size: calc(16.86667px + (19.91429 - 16.86667) * ((100vw - 320px) / (1920 - 320)));
  }
}

@media (min-width: 1920px) {
  .single-content .content__post-content p.content__lead + p {
    font-size: 19.91429px;
  }
}

.single-content .content__left {
  max-width: 100%;
  width: 100%;
}

.single-content .content__left h1 {
  font-size: 48px;
  line-height: 50px;
  font-style: normal;
  font-weight: 400;
  margin-bottom: 60px;
}

.single-content .content__lead {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 22px;
  line-height: 32px;
  font-weight: 400;
  color: #000;
}

.single-content .content__post-date {
  margin-top: 5px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  justify-content: center;
}

.single-content .content__post-date a {
  color: #ff3997;
  font-weight: bold;
}

.single-content .content__post-date span {
  color: #7d7a7d;
}

.single-content .content__author {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: 70px;
  align-items: center;
}

.single-content .content__author .author {
  color: #232323;
  font-size: 14px;
  font-weight: bold;
}

.single-content .content .share {
  position: relative;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #04005e;
  cursor: pointer;
}

.single-content .content__floating-categories {
  padding-top: 130px;
  padding-bottom: 100px;
  top: 0px;
  position: sticky;
}

.single-content .content__floating-categories h2 {
  color: #232323;
  font-size: 34px;
  line-height: 34px;
}

.single-content .content__floating-categories ul {
  list-style: none;
  margin-top: 30px;
}

.single-content .content__floating-categories ul li a {
  font-size: 14px;
  line-height: 22px;
  font-weight: bold;
  color: #000000;
  transition: color 0.3s;
  margin-top: 15px;
  display: block;
}

.single-content .content__floating-categories ul li a:hover {
  color: #ff2079;
}

.single-content .content .share-btns {
  position: absolute;
  display: flex;
  bottom: 150%;
  left: -10px;
  flex-direction: column;
  padding: 10px;
  background-color: #fff;
  border-radius: 5px;
}

.single-content .content .share-btns a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 150px;
  gap: 10px;
}

.single-content .content .share-btns a:nth-child(2) {
  margin-top: 20px;
}

.single-content .content__right {
  position: relative;
}

.author-custom_container {
  max-width: 1200px;
  margin-left: 220px;
  margin-right: auto;
}

.author-custom_container__post-custom_container {
  padding-bottom: 80px;
}

.author-custom_container__post-custom_container h2 {
  text-align: center;
  color: #232323;
  font-size: 34px;
  line-height: 40px;
}

.custom_container-margin {
  margin-top: 65px;
}

.author__data {
  padding-bottom: 70px;
  border-bottom: solid 2px #7d7a7d;
}

.author__social-custom_container {
  display: flex;
  align-items: center;
  gap: 45px;
}

.author__avatar {
  border-radius: 50%;
  max-width: 100%;
  object-fit: cover;
}

.author__name {
  color: #232323;
  font-size: 34px;
  line-height: 40px;
}

.author__socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.author__descriptions {
  max-width: 986px;
  margin-top: 55px;
}

.author__descriptions .bold-text {
  font-size: 22px;
  font-family: "Montserrat", sans-serif;
  line-height: 32px;
  font-weight: bold;
  color: #3a3b3f;
}

.author__descriptions .text p {
  margin-top: 20px;
  font-size: 16px;
  color: #3a3b3f;
  line-height: 32px;
}

.floating-content {
  padding: 30px;
  max-width: 240px;
}

.post-module {
  margin-bottom: 40px;
}

.post-heading {
  scroll-padding-top: 20px;
  width: 100%;
  text-align: center;
  color: #232323;
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 40px;
  margin-top: 40px;
}

.highlighted-text {
  width: 100%;
  padding: 40px;
  background-color: #f8f7f7;
}

.highlighted-text p {
  font-size: 16px;
  color: #3a3b3f;
  line-height: 32px;
  font-family: "Montserrat", sans-serif;
}

.quote {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
}

.quote p {
  font-size: 22px;
  color: #4F4E52;
  line-height: 38px;
}

.gallery {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.gallery a {
  display: flex;
}

.gallery a picture {
  width: 100%;
}

.gallery a img {
  width: 100%;
  max-height: 500px;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .gallery a img {
    max-height: 300px;
    min-height: 200px;
  }
}

.gallery a:nth-child(3n) {
  width: 100%;
}

.post-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.875rem + 0vw), 0.875rem);
  line-height: 140%;
  letter-spacing: 0;
  color: #4F4E52;
  margin-bottom: 20px;
}

.post-text p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.875rem + 0vw), 0.875rem);
  line-height: 140%;
  letter-spacing: 0;
  color: #4F4E52;
}

.post-text a {
  color: #ff2079;
}

.post-text ol {
  list-style: decimal !important;
  padding-left: 20px;
  margin-bottom: 20px;
}

.post-text ol li {
  list-style: decimal !important;
}

.post-text ul {
  list-style: circle !important;
  padding-left: 20px;
  margin-bottom: 20px;
}

.post-text ul li {
  list-style: circle !important;
}

.video-custom_container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.video-custom_container iframe,
.video-custom_container object,
.video-custom_container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ig-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table {
  list-style: none;
}

.table li {
  padding: 17px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.table li span {
  font-size: 22px;
  line-height: 38px;
}

.table li:nth-child(1) {
  background-color: black !important;
}

.table li:nth-child(1) span {
  color: #fff !important;
  font-weight: bold !important;
}

.table li:nth-child(2n + 1) {
  background-color: #f8f7f7;
}

.table li:nth-child(2n + 1) span {
  color: #4F4E52;
  font-weight: 400;
}

.table li:nth-child(2n) {
  background-color: #fff;
}

.table li:nth-child(2n) span {
  color: #4F4E52;
  font-weight: 400;
}

.fake-link {
  font-size: 14px !important;
  line-height: 20px !important;
  margin-bottom: 20px;
  color: #000;
}

.fake-link:hover {
  cursor: pointer;
}

.post-image:hover {
  cursor: pointer;
}

.heading-1 {
  font-size: 34px;
  margin-bottom: 20px;
  display: block;
  line-height: 40px;
  font-family: "Red Hat Display", sans-serif;
  text-align: center;
  font-weight: 600;
  color: #000;
}

.mobile-heading {
  display: none;
}

@media (max-width: 989px) {
  .mobile_padding {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}

@media (max-width: 1500px) {
  .author-custom_container {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1420px) {
  .post-navbar {
    display: none;
  }
  .archive-content .breadcrumbs {
    padding-bottom: 50px;
  }
  .mobile-heading {
    display: block;
  }
  .single-content .content {
    gap: 80px;
  }
  .archive-content .content {
    flex-direction: column-reverse;
  }
  .archive-content .content__left {
    max-width: 100%;
    width: unset;
  }
  .archive-content .content__right {
    margin-top: 40px;
    max-width: unset;
  }
  .archive-content .content__right ul {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .grid_item {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 1280px) {
  .burger-icon {
    display: block;
  }
  .single-content .breadcrumbs {
    max-width: 986px;
    padding-top: 8px;
    margin-right: auto;
  }
  .single-content .content {
    flex-direction: column;
    align-items: center;
  }
  .single-content .content__floating-categories {
    position: fixed;
    z-index: 999;
    transform: translateX(calc(100% - 42px));
    transition: transform 0.4s;
    display: flex;
    top: 35%;
    right: 0px;
    padding-right: 0px;
    padding-top: 0px;
  }
  .single-content .content__floating-categories .floating-content {
    background-color: #fff;
    border: solid 2px #ff3997;
    padding: 30px;
    max-width: 240px;
  }
}

@media (max-width: 992px) {
  .single-content.content__floating-categories {
    top: 0%;
  }
  .grid-custom_container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .single-content__featured-products {
    grid-template-columns: repeat(2 minmax(0, 1fr));
  }
  .single-content .content__left {
    width: unset;
    max-width: 100%;
  }
  .archive-content .content .grid-custom_container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .archive-content .content__right ul {
    display: block;
  }
  .author-custom_container .grid-custom_container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .archive-content .breadcrumbs {
    padding-bottom: 10px;
    padding-top: 8px;
  }
  .post-navbar {
    display: none;
  }
  .products-gird-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-custom_container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .author__descriptions .bold-text {
    font-size: 18px;
    line-height: 26px;
  }
  .archive-content .content .grid-custom_container {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .author-custom_container .grid-custom_container {
    grid-template-columns: repeat(1, 1fr);
  }
  .gallery {
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .gallery a {
    width: 100%;
  }
  .single-content__featured-products {
    grid-template-columns: repeat(1, 1fr);
  }
  .single-content .post-author {
    flex-direction: column-reverse;
    gap: 30px;
  }
}

@media (max-width: 500px) {
  .heading-1 {
    text-align: left;
    margin-bottom: 40px;
    font-size: 24px;
    line-height: 32px;
  }
  .grid_item__date {
    flex-direction: column;
    gap: 8px;
  }
  html {
    scroll-padding-top: 200px;
  }
  .post-author__data {
    flex-direction: column;
  }
  .products-gird-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .archive-content .breadcrumbs {
    padding-bottom: 20px;
  }
  .single-content .content__left h1 {
    font-size: 24px;
    line-height: 32px;
  }
  .author-custom_container__post-custom_container__post-custom_container {
    padding-top: 60px;
    padding-bottom: 120px;
  }
  .author__social-custom_container {
    gap: 25px;
  }
  .archive-content .content {
    flex-direction: column-reverse;
  }
  .archive-content .content .pagination-custom_container {
    padding-bottom: 80px;
  }
  .archive-content .content__left {
    max-width: 100%;
    width: unset;
  }
  .archive-content .content__right {
    margin-top: 40px;
    max-width: unset;
  }
  .archive-content .content__right ul {
    display: block;
  }
}

@media (max-width: 450px) {
  .single-content .post-author__data {
    flex-direction: column;
  }
  .single-content .content__lead {
    font-size: 22px;
    line-height: 32px;
    margin-top: 40px;
  }
  .archive-content .content .grid_item__content {
    padding: 25px 10px;
  }
}

.footer-fake-h1 {
  font-size: 2em;
  margin: 0.67em 0;
  font-weight: 600;
  line-height: 1.1;
  color: black;
}

.footerSEO2 {
  padding-top: 40px;
}

.circle-list {
  list-style-type: circle !important;
  list-style: circle !important;
  padding-left: 20px;
  margin-bottom: 20px;
}

.circle-list li {
  list-style-type: circle !important;
  list-style: circle !important;
}

.decimal-list {
  list-style-type: decimal !important;
  list-style: decimal !important;
  padding-left: 20px;
  margin-bottom: 20px;
}

.decimal-list li {
  list-style-type: decimal !important;
  list-style: decimal !important;
}

p.footer-list-title {
  color: #000000 !important;
  font-size: 14px !important;
  line-height: 18px !important;
  font-weight: 700 !important;
  margin: 0 0 12px !important;
  text-transform: uppercase !important;
}

.footer-link__col {
  list-style: none;
}

.footer-link__col ul {
  list-style: none;
}

.nav-links:has(.next) {
  width: 100%;
  display: flex;
  align-items: center;
  max-width: 55%;
  margin: auto;
}

@media (max-width: 768px) {
  .nav-links:has(.prev):has(:not(.next)) {
    max-width: 100%;
  }
}

.nav-links:has(.next):has(.prev) {
  max-width: 100%;
}

.nav-links .inactive-prev,
.nav-links .inactive-next {
  display: flex;
  max-width: fit-content;
  gap: 12px;
  padding: 6px 40px;
  font-weight: 500;
  color: #000;
  background: rgba(255, 209, 228, 0.6);
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-style: normal;
  padding: 6px 12px;
}

.nav-links .inactive-prev {
  margin-right: auto;
}

.nav-links .inactive-next {
  margin-left: auto;
}

.rox-nav__bottom-menu {
  list-style: none;
}

@media (max-width: 1740px) {
  .grid-custom_container {
    column-gap: 20px;
    row-gap: 20px;
  }
}

@media (max-width: 1400px) {
  .grid-custom_container {
    gap: 24px;
  }
}

@media (max-width: 1200px) {
  .archive-content .breadcrumbs {
    padding-bottom: 32px;
    padding-top: 24px;
  }
  .archive-content .content h1 {
    margin-bottom: 60px;
  }
  .grid-custom_container {
    gap: 24px;
  }
  .grid_item__picture_link {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .pagination-cs-btn {
    padding: 6px !important;
    background-color: transparent;
  }
  .pagination-cs-btn:hover {
    color: #fff;
    background-color: transparent;
  }
  .pagination-cs-btn:hover svg path {
    stroke: #000;
  }
  .pagination-cs-btn__prev:hover svg {
    transform: translateX(0px);
  }
  .pagination-cs-btn__next:hover svg {
    transform: translateX(0px);
  }
  .pagination-cs-btn .mobile-svg {
    display: flex;
  }
  .pagination-cs-btn .desktop-svg {
    display: none;
  }
  .pagination-cs-btn .pg-text {
    display: none;
  }
  .nav-links {
    justify-content: center;
  }
  .grid_item__title {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    min-height: 28px;
    transition: color 0.3s ease;
  }
  .blog-cs-button {
    font-size: 14px;
  }
  .pagination-custom_container {
    padding: 100px 0px;
  }
  .archive-content .content .grid-custom_container {
    gap: 32px;
  }
}

.post-content-wrapper {
  max-width: 1920px;
  margin: 0px auto;
  margin-top: 40px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.875rem + 0vw), 0.875rem);
  line-height: 140%;
  letter-spacing: 0;
}

.post-content-wrapper h3,
.post-content-wrapper h2,
.post-content-wrapper h1,
.post-content-wrapper p,
.post-content-wrapper span {
  text-align: left !important;
}

.post-content-wrapper p,
.post-content-wrapper ol,
.post-content-wrapper ul,
.post-content-wrapper li {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.875rem + 0vw), 0.875rem);
  line-height: 140%;
  letter-spacing: 0;
}

.post-content-wrapper h2 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 18.6px;
  line-height: 120%;
  letter-spacing: 0;
}

@media (min-width: 320px) and (max-width: 1920px) {
  .post-content-wrapper h2 {
    font-size: calc(18.6px + (27.74286 - 18.6) * ((100vw - 320px) / (1920 - 320)));
  }
}

@media (min-width: 1920px) {
  .post-content-wrapper h2 {
    font-size: 27.74286px;
  }
}

@media (min-width: 1280px) {
  .post-content-wrapper h2 {
    letter-spacing: -0.02em;
  }
}

.post-content-wrapper h3 {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16.86667px;
  line-height: 140%;
  letter-spacing: 0;
}

@media (min-width: 320px) and (max-width: 1920px) {
  .post-content-wrapper h3 {
    font-size: calc(16.86667px + (19.91429 - 16.86667) * ((100vw - 320px) / (1920 - 320)));
  }
}

@media (min-width: 1920px) {
  .post-content-wrapper h3 {
    font-size: 19.91429px;
  }
}

.post-content-wrapper p > a {
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  background-image: linear-gradient(#141414);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size .3s;
}

.post-content-wrapper p > a:hover {
  animation: drawline-animation ease 0.4s forwards;
}

.post-content-wrapper p > a:focus {
  outline: 0;
}

.single-content .content__post-content .post-text p {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.875rem + 0vw), 0.875rem);
  line-height: 140%;
  letter-spacing: 0;
  color: #4F4E52;
  margin-bottom: 10px;
}

.single-content .content__post-content p.content__lead {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(1rem, calc(1rem + 0vw), 1rem);
  line-height: 130%;
  letter-spacing: 0;
  color: #4F4E52;
  margin-bottom: 40px;
}

.single-content a {
  color: #4F4E52;
}

.single-content a:focus-visible {
  outline: 2px solid #0077FF !important;
}

.post-navigation-header {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  align-items: flex-start;
  margin: 38px 0px 50px;
}

@media (max-width: 1220px) {
  .post-navigation-header .breadcrumbs-wrapper {
    width: 100%;
    height: 46px;
    overflow: hidden;
    padding-bottom: 10px;
    box-sizing: content-box;
  }
  .post-navigation-header .breadcrumbs-wrapper .single-breadcrumbs {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    height: 100%;
  }
}

.post-bottom-navigtation {
  display: flex;
  position: relative;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: solid 1px #141414;
  margin-top: 60px;
}

.post-bottom-navigtation::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 50%;
  height: 40px;
  width: 1px;
  background-color: #141414;
  transform: translateX(-50%);
}

.post-bottom-navigtation a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(1rem, calc(1rem + 0vw), 1rem);
  line-height: 140%;
  letter-spacing: 0;
  color: #141414 !important;
  display: flex;
  gap: 16px;
  align-items: center;
  max-width: 50%;
}

.post-bottom-navigtation a span {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: -webkit-box;
}

.post-bottom-navigtation a:first-child {
  padding-right: 12px;
}

.post-bottom-navigtation a:nth-child(2) {
  padding-left: 12px;
}

.post-large-thumbnail img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  margin-bottom: 0px !important;
  margin-top: 0px !important;
}

@media (max-width: 768px) {
  .post-large-thumbnail img {
    max-height: 300px;
  }
}

.show-confirm {
  display: flex;
}

.share-active {
  opacity: 1;
  pointer-events: all;
}

@media (max-width: 992px) {
  .single-content .breadcrumbs {
    margin-right: auto;
    margin-left: unset !important;
  }
  .post-navigation-header {
    flex-direction: column;
    gap: 30px;
  }
  .single-content .breadcrumbs {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
  }
  .blog-link {
    font-size: 14px;
  }
  .blog-link__desktop {
    display: none;
  }
  .blog-link__mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  .post-bottom-navigtation {
    display: none;
  }
  .post-large-thumbnail img {
    height: 100%;
    max-height: 300px;
    min-height: 200px;
  }
  .single-content .content__post-content h2 {
    margin-top: 40px;
    margin-bottom: 15px;
  }
  .single-content .content__post-content h3 {
    margin-top: 30px;
    margin-bottom: 10px;
  }
  .single-content .content__left h1 {
    margin-bottom: 25px;
  }
  .share-post {
    margin-bottom: 20px;
    margin-top: 60px;
  }
}

@media (max-width: 567px) {
  .share-post__body {
    width: 100%;
  }
  .page-numbers {
    width: 32px !important;
    height: 32px !important;
  }
  .page-numbers:not(.next) {
    margin: 0px 3px;
  }
  .page-numbers:not(.prev) {
    margin: 0px 3px;
  }
}

.mfp-bottom-bar {
  display: none;
}

.archive-content {
  background-color: #fff;
}

#blog-body-class {
  position: relative;
  z-index: 1;
}

#cart-block {
  cursor: pointer;
}

.rox-search-icon {
  display: none;
}

.fixed-bottom__column:has(.mobile-search-button) {
  display: none;
}

.fixed-bottom .blockcart.cart-preview.inactive .header {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 3px;
}

.grid-custom_container .grid_item__picture_link picture {
  display: inline-block;
  max-height: 271px;
  aspect-ratio: 321 / 236;
  height: 100%;
  width: 100%;
  overflow: hidden;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
}

.grid-custom_container .grid_item__picture_link picture img {
  overflow: hidden;
  display: inline-block;
}

.archive-content .blog-container,
.single-content .blog-container {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 989px) {
  .archive-content .blog-container,
  .single-content .blog-container {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.archive-content .blog-container h1,
.single-content .blog-container h1 {
  margin-top: 10px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(1.813rem, calc(1.374rem + 1.798vw), 2.813rem);
  line-height: 110%;
  letter-spacing: -0.03em;
}

@media (min-width: 1280px) {
  .archive-content .blog-container h1,
  .single-content .blog-container h1 {
    letter-spacing: -0.04em;
  }
}

@media (max-width: 768px) {
  .archive-content .blog-container h1,
  .single-content .blog-container h1 {
    font-size: 28px;
    line-height: normal;
  }
  .archive-content .blog-container h1::before,
  .single-content .blog-container h1::before {
    transform: translate(10px, 10px);
  }
}

@media (min-width: 1600px) {
  .archive-content .blog-container h1,
  .single-content .blog-container h1 {
    margin-bottom: 80px;
  }
}

@media (min-width: 1700px) {
  .archive-content .blog-container .content__right,
  .single-content .blog-container .content__right {
    position: -webkit-sticky;
    position: sticky;
    top: 150px;
    height: min-content;
  }
}

.text-field__category-and-date {
  display: flex;
  flex-wrap: wrap;
  column-gap: 10px;
  row-gap: 5px;
  align-items: center;
}

.text-field__category-and-date a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: clamp(0.875rem, calc(0.875rem + 0vw), 0.875rem);
  line-height: 140%;
  letter-spacing: 0;
  color: #141414;
}

.text-field__date {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: clamp(0.875rem, calc(0.875rem + 0vw), 0.875rem);
  line-height: 140%;
  letter-spacing: 0;
  color: #4F4E52;
  margin-left: auto;
}

.archive-content .blog-container {
  max-width: 100%;
}

.archive-content .blog-container .author-page__title {
  margin-bottom: 50px;
}

@media (min-width: 1200px) {
  .archive-content .blog-container {
    max-width: 1170px;
  }
}

@media (min-width: 1600px) {
  .archive-content .blog-container {
    max-width: 1920px;
  }
}

#header .rox-nav__column-on-scroll,
#header .language-switcher-menu {
  display: none;
}

#header .rox-nav .submenu__others .rox-megamenu {
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.04), 0px 7px 7px 0px rgba(0, 0, 0, 0.04), 0px 16px 10px 0px rgba(0, 0, 0, 0.02), 0px 29px 12px 0px rgba(0, 0, 0, 0.01), 0px 46px 13px 0px transparent;
}

#header .rox-nav .submenu__others .rox-megamenu__content {
  display: flex;
  column-gap: 40px;
}

@media (min-width: 1500px) {
  #header .rox-nav .submenu__others .rox-megamenu__content {
    column-gap: 60px;
  }
}

#header .rox-nav .submenu__others .rox-megamenu__content-category {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 240px;
  position: relative;
  padding-top: 20px;
  padding-bottom: 40px;
}

#header .rox-nav .submenu__others .rox-megamenu__content-category__title {
  margin-bottom: 16px;
}

#header .rox-nav .submenu__others .rox-megamenu__content-category__title a {
  color: #ffad00;
  font-size: clamp(13px, 2vw, 15px);
  line-height: normal;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

#header .rox-nav .submenu__others .rox-megamenu__content-category__title:hover a {
  color: #ff3997;
}

#header .rox-nav .submenu__others .rox-megamenu__content-category .submenu__others-item {
  margin-bottom: 10px;
}

@media (min-width: 1700px) {
  #header .rox-nav .submenu__others .rox-megamenu__content-category .submenu__others-item {
    margin-bottom: 12px;
  }
}

#header .rox-nav .submenu__others .rox-megamenu__content-category .submenu__others-item a {
  font-size: clamp(13px, 2vw, 14px);
  color: #5c5c5b;
  line-height: 25px;
  font-weight: 500;
  transition: color 0.3s ease;
}

#header .rox-nav .submenu__others .rox-megamenu__content-category .submenu__others-item:hover a {
  color: #ffad00;
}

#header .rox-nav .submenu__others .rox-megamenu__content-category:not(:last-child)::after {
  content: none;
  position: absolute;
  height: 100%;
  width: 1px;
  top: 0;
  right: -20px;
  background-color: rgba(92, 92, 91, 0.4);
}

@media (min-width: 1500px) {
  #header .rox-nav .submenu__others .rox-megamenu__content-category:not(:last-child)::after {
    right: -30px;
  }
}
