/* Body */
body {
  position: relative;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 700px;
  background-image: url("/wp-content/themes/nt-theme/assets/img/header_light-bg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -1;
}

body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px;
  background-image: url("/wp-content/themes/nt-theme/assets/svg/header-bg.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.section-title {
  margin-bottom: 30px;
}

.section-title span {
  font-weight: 300;
  color: #cbd5e1;
}

@media (max-width: 1010px) {
  .section-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

/* Hero Section */
.hero {
  margin-bottom: 125px;
  position: relative;
}

.hero .owl-stage-outer {
  overflow: hidden;
}

/* .hero .owl-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero .owl-dot {
  width: 12px;
  height: 12px;
  background: #f1f5f9;
  border: none;
  border-radius: 100%;
  transition: 0.3s;
}

.hero .owl-dot:not(.active) {
  opacity: 0.4;
} */

.hero-content {
  display: flex;
  gap: 23px;
  height: 100%;
}

.hero-text {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-tagline {
  color: #f1f5f9;
  font-size: 12px;
  font-weight: 500;
  font-style: italic;
  display: inline-flex;
  gap: 16px;
  align-items: center;
}

.hero-title {
  font-size: 36px;
  font-weight: 400;
  margin: 0;
}

.hero-description {
  color: #cbd5e1;
  font-size: 18px;
  margin: 0;
  line-height: 1.5;
}

.hero-features {
  list-style: none;
  color: #cbd5e1;
  font-size: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.hero-features li {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #cbd5e1;
}

.hero-features li span {
  width: 26px;
  height: 16px;
  background-color: #e2e8f0;
  color: #1e293b;
  font-size: 12px;
  font-weight: 500;
  border-radius: 8px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 12px;
}

.hero-image {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
}

@media (max-width: 1010px) {
  .hero-title {
    font-size: 20px;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-features {
    display: none;
  }
}

@media (max-width: 820px) {
  .hero {
    margin-bottom: 300px;
  }

  .hero-content {
    flex-direction: column-reverse;
  }

  .hero-content > div {
    width: 100%;
  }
}

/* Overview Section */
.overview {
  position: relative;
}

.overview-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(
      0deg,
      rgba(71, 85, 105, 0.7),
      rgba(71, 85, 105, 0.7)
    ),
    radial-gradient(
      21.14% 163.58% at 17.66% -94.17%,
      rgba(255, 255, 255, 0.4) 0%,
      rgba(255, 255, 255, 0) 100%
    );
  box-shadow: 0px 24px 120px 0px #00000040;
  border-radius: 60px;
  padding: 32px 40px;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: calc(100% - 40px);
  top: 0;
  left: 50%;
  max-width: 1100px;
  backdrop-filter: blur(100px);
  -webkit-backdrop-filter: blur(100px);
}

.overview-stat {
  width: auto;
  display: flex;
  gap: 12px;
  align-items: center;
}

.overview-img {
  box-shadow: 0px 10px 15px -3px #0000001a;
  border-radius: 100%;
}

.overview-stat span {
  display: block;
  font-size: 24px;
  font-weight: 500;
}

.overview-stat p {
  font-size: 16px;
  color: #dae3f7;
  margin: 0;
  opacity: 0.5;
}

@media (max-width: 960px) {
  .overview-stats {
    flex-wrap: wrap;
    gap: 32px;
    text-align: center;
    align-items: flex-start;
  }

  .overview-stat.overview-btn {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 820px) {
  .overview-stats {
    /* bottom: -80px; */
    bottom: 0;
    top: auto;
    transform: translateX(-50%);
    column-gap: 12px;
  }

  .overview-stat span {
    font-size: 18px;
    white-space: nowrap;
  }

  .overview-stat p {
    font-size: 14px;
  }

  .overview-stat {
    flex-direction: column;
    width: calc(100% / 3 - 8px);
  }

  .overview-stat.overview-logo {
    display: none;
    /* width: 100%;
    display: flex;
    justify-content: center; */
  }
}

@media (max-width: 640px) {

  .overview-stat span {
    font-size: 14px;
    white-space: nowrap;
  }

  .overview-stat p {
    font-size: 10px;
  }
}

/* Instructor Section */
.instructor {
  overflow: hidden;
  background-color: #e2e8f0;
  position: relative;
  z-index: 0;
}

.instructor:before {
  content: "";
  position: absolute;
  top: 50px;
  right: 0;
  width: 214px;
  height: 100%;
  background-image: url(/wp-content/themes/nt-theme/assets/svg/coaches/instructor-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left top;
  z-index: -1;
}

.instructor-content {
  width: 100%;
  display: flex;
  gap: 40px;
}

.instructor-images {
  width: 40%;
  overflow: hidden;
  position: relative;
}

.instructor-images .owl-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

/* 
.instructor-images .owl-dot {
  width: 12px;
  height: 12px;
  background: #f1f5f9;
  border: none;
  border-radius: 100%;
  transition: 0.3s;
} */

.instructor-images .owl-stage-outer,
.instructor-images .owl-stage,
.instructor-images .owl-item {
  height: 100%;
}

.instructor-images .instructor-el {
  min-height: 488px;
  height: 100%;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}

.instructor-images .instructor-el:after {
  z-index: 0;
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 110px;
  background: linear-gradient(transparent, rgb(0 0 0 / 5%));
  bottom: 0;
  left: 0;
}

.instructor-el_name {
  display: block;
  margin-bottom: 5px;
  z-index: 1;
}

.instructor-el_desc {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  z-index: 1;
}

.instructor-images .owl-dot:not(.active) {
  opacity: 0.4;
}

.instructor-text {
  max-width: 600px;
  color: #1e293b;
  display: flex;
  flex-direction: column;
  margin: 100px;
}

.instructor-text .logo {
  height: 35px;
  width: 100%;
  filter: invert(1);
  object-position: left;
  object-fit: contain;
}

.instructor-text h2 {
  font-size: 36px;
  font-weight: 400;
  margin: 16px 0;
}

.instructor-text p {
  font-size: 18px;
  color: #64748b;
  margin: 16px 0;
  line-height: 1.5;
}

.instructor-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 18px;
  font-weight: 500;
}

.instructor-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  width: calc(50% - 8px);
  color: #1e293b;
}

.instructor-buttons {
  display: flex;
  gap: 20px;
}

.instructor-buttons .transparent-btn {
  color: #64748b;
}

.instructor-buttons .transparent-btn:hover {
  color: #1e293b;
}

@media (max-width: 1240px) {
  .instructor-content {
    gap: 0;
  }

  .instructor-text {
    margin: 50px;
  }
}

@media (max-width: 1010px) {
  .instructor-content {
    flex-direction: column;
  }

  .instructor-text {
    padding: 24px 20px 40px;
    margin: 0;
    max-width: 100%;
  }

  .instructor-images {
    width: 100%;
  }

  .instructor-images .instructor-el {
    height: 95vw;
  }

  .instructor-text h2 {
    font-size: 20px;
  }

  .instructor-text p,
  .instructor-features {
    font-size: 16px;
  }
}

@media (max-width: 630px) {
  .instructor-features {
    flex-direction: column;
    gap: 0;
  }
  .instructor-features li {
    width: 100%;
  }
}

/* Best Sellers Section && Popular Section && Categories Section*/

.best-sellers,
.popular_home,
.catalog_home {
  overflow: hidden;
}

.best-sellers-list .swiper-slide {
  width: 300px !important;
  height: auto;
}

.best-sellers-list .listing-product_el {
  width: 300px !important;
  height: 100%;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}


@media (min-width: 1010px) {
  .popular-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .popular-list .listing-product_el {
    width: calc(100% / 4 - 12px);
  }
}

@media (max-width: 1010px) {
  .popular-list .listing-product_el {
    width: 300px !important;
    height: 100%;
  }
}

@media (min-width: 1600px) {
  .popular-list .listing-product_el {
    width: calc(100% / 5 - 12.8px);
  }
}

@media (min-width: 1010px) and (max-width: 1600px) {
  .popular-list .listing-product_el:nth-child(n + 9) {
    display: none;
  }
}

/* Special Offer Section */
.special-offer-content {
  background-color: #e2e8f0;
  border-radius: 24px;
  display: flex;
  position: relative;
  z-index: 0;
  padding: 20px;
  overflow: hidden;
}

.special-offer-content::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-image: url("/wp-content/themes/nt-theme/assets/svg/register-block-bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.special-offer-text {
  width: 40%;
  min-width: 416px;
  padding: 95px 0 95px 95px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.special-offer-image {
  width: 60%;
  text-align: center;
  margin-bottom: -24px;
}

.special-offer-content .logo {
  height: 35px;
  width: 100%;
  filter: invert(1);
  object-position: left;
  object-fit: contain;
}

.special-offer-title {
  font-size: 36px;
  color: #1e293b;
  font-weight: 400;
  margin: 0;
}

.special-offer-description {
  font-size: 18px;
  color: #64748b;
  margin: 0;
  max-width: 416px;
}

.special-offer-image img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  max-width: 620px;
}

.special-offer-register-input {
  max-width: 420px;
  display: flex;
  box-shadow: 1px 1.5px 4px 0px #0000001a inset;
  background: #c9cfd7;
  padding: 4px 6px;
  border-radius: 100px;
  gap: 5px;
}

.special-offer-register-input input {
  width: 100%;
  background: transparent;
  border: none !important;
  outline: none !important;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 16px;
}

.register-error > div {
  border-radius: 20px;
  margin: 0;
  color: black;
  margin-top: 10px;
}

.register-error a {
  color: #64748b;
}

@media (max-width: 1240px) {
  .special-offer-text {
    padding: 50px 0 50px 50px;
  }
}

@media (max-width: 1010px) {
  .special-offer-title {
    font-size: 30px;
  }

  .special-offer-description {
    font-size: 16px;
  }
}

@media (max-width: 820px) {
  .special-offer-content {
    flex-direction: column;
    gap: 10px;
  }

  .special-offer-content > div {
    width: 100%;
  }

  .special-offer-text {
    padding: 0;
    min-width: 100%;
  }
}

/* Catalog Section */
.catalog {
  border-radius: 10px;
}

.catalog-list {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.catalog-item {
  flex: 1;
  background-color: #2c3a47;
  border-radius: 10px;
  padding: 20px;
}

/* News Section */

.recent_news-listing .section-container {
  padding: 0 72px;
}

.recent_news {
  margin-top: 0;
}
.recent_news .section-title {
  margin-top: 0;
}

.recent_news-headline {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.recent_news-listing {
  background: #e2e8f0;
  padding: 60px 0;
}

.recent_news-listing .post-item {
  background-color: transparent;
  color: #64748b;
  padding: 8px;
  width: 100%;
}

.recent_news-listing .post-item p {
  margin: 0;
}

.recent_news-listing .post-item .post-title {
  margin-bottom: 8px;
}

.recent_news-listing .post-item .post-title a {
  color: #1e293b;
}

.recent_news-listing .post-item:first-child .post-title {
  font-size: 20px;
}

.recent_news-listing .post-item:hover {
  background-color: #f1f5f9;
}

.recent_news-listing .post-item:first-child {
  flex-direction: column;
}

.recent_news-listing .post-item:first-child .post-thumbnail {
  height: 100%;
}

.recent_news-listing .post-item:first-child .post-thumbnail img {
  width: 100%;
  height: 100%;
}

@media (max-width: 1280px) {
  .recent_news-listing .section-container {
    padding: 0 12px;
  }
}

@media (min-width: 1010px) {
  .recent_news-listing .section-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .recent_news-listing .post-item:first-child {
    grid-area: 1 / 1 / 4 / 2;
  }
}

@media (max-width: 1010px) {
  .recent_news-listing {
    padding: 12px 0;
  }

  .recent_news-listing .post-item:not(:first-child) .post-excerpt {
    display: none;
  }

  .recent_news-listing .post-item:first-child {
    margin-bottom: 16px;
  }

  .recent_news-listing .post-item:not(:first-child) {
    flex-direction: row-reverse;
    background: #f1f5f9;
    margin-bottom: 8px;
  }

  .recent_news-listing .post-item:not(:first-child) .post-thumbnail img {
    width: 100px;
    height: 100px;
  }
}

/* Footer Section */
.partners {
  overflow-x: auto;
}

.partners-content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 35px;
}

@media (min-width: 820px) {
  .partners-content {
    justify-content: space-around;
  }
}

/* Error */
.woocommerce-notices-wrapper {
  max-width: 820px;
  margin: auto;
  padding: 0 20px;
}
.woocommerce-notices-wrapper > * {
  border-radius: 30px;
}

a.button.wc-forward {
  padding: 6px 16px;
  font-weight: 500;
  border-radius: 30px;
  background-color: #ef4444;
  color: white;
}

/* Couches Listing Page  */
.coaches_page {
  align-items: center;
}

.coaches-listing {
  margin-bottom: 80px;
}

.coaches_page > img {
  width: 570px;
  max-width: 50%;
  height: auto;
}

.coaches_page .logo {
  height: 35px;
  width: 100%;
  object-position: left;
  object-fit: contain;
}

.coaches_page h1 {
  margin: 16px 0;
  font-weight: 400;
}

.coaches_page-content {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #cbd5e1;
}

.coaches-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.coaches-list .coaches-item {
  width: calc(100% / 3 - 16px);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.coaches-list .coaches-item .coaches-info {
  z-index: 1;
  padding: 40px;
  transition-duration: 0.3s;
}

.coaches-item:hover .coaches-info {
  transform: translateY(-10px);
}

.coaches-list .coaches-item:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0) 30.42%,
    #0f172a 65.25%
  );
}

.coaches-list .coaches-link {
  margin-top: 16px;
  display: inline-flex;
}

.coaches-list .coaches-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  object-position: top;
}

.coaches-list .coaches-rank {
  margin: 3px 0 10px 0;
  font-size: clamp(18px, 2.5vw, 23px);
  color: #cbd5e1;
  font-weight: 300;
}

.coaches-list .coaches-description {
  margin: 10px 0 16px 0;
  font-size: 14px;
  color: #cbd5e1;
  font-weight: 400;
  line-height: 120%;
}

@media (min-width: 1440px) {
  .coaches-list .coaches-description {
    font-size: 16px;
  }
}

@media (max-width: 1010px) {
  .coaches_page-content {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
  }
  .coaches-list .coaches-item {
    width: calc(100% / 2 - 12px);
    height: 400px;
  }
  .coaches-list .coaches-item .coaches-info {
    padding: 20px;
  }
  .coaches-listing {
    margin-bottom: 40px;
  }
}

@media (max-width: 820px) {
  .coaches_page {
    margin: 15px auto;
  }
  .coaches_page > img {
    display: none;
  }
}

@media (max-width: 640px) {
  .coaches-list .coaches-item {
    width: 100%;
  }
}

/* NEW */

.coaches_hero_image {
  margin: 60px auto;
  position: relative;
}

.coaches_hero_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0) 0%,
    rgba(2, 6, 23, 1) 100%
  );
}

.coaches_hero_image-image {
  width: 100%;
  height: 500px;
  border-radius: 36px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .coaches_hero_image {
    margin: 40px 0px;
  }

  .coaches_hero_image-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .coaches_hero_image {
    margin: 20px 0px;
  }

  .coaches_hero_image-image {
    height: 250px;
    border-radius: 20px;
  }
}

.coaches_page_info {
  display: flex;
  gap: 92px;
}

.coaches_page_info-headline {
  margin: 0px;
  display: flex;
  flex-direction: column;
}

.coaches_page_info-text {
  margin: 0px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  color: #cbd5e1;
  font-size: 18px;
}

.coaches_page_info-text p {
  margin: 0px;
}

@media (max-width: 1024px) {
  .coaches_page_info {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .coaches_page_info-headline {
    font-size: 28px;
    text-align: center;
  }

  .coaches_page_info-text {
    text-align: center;
    padding: 20px;
  }

  .bloc2-img2 {
    display: none;
  }
}

@media (max-width: 768px) {
  .coaches_page_info {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .coaches_page_info-headline {
    font-size: 24px;
    text-align: center;
  }

  .coaches_page_info-text {
    text-align: center;
    padding: 15px;
  }
}

/* Couches Single Page */

.coache-headline {
  display: flex;
  gap: 120px;
}

.headline-conteiner img.coache-image {
  width: 522px;
  min-width: 522px;
  max-width: 50%;
  height: 522px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}

.coache-info .logo {
  height: 35px;
  width: 100%;
  object-position: left;
  object-fit: contain;
  margin-bottom: 28px;
}

.coache-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.coache-info-name h1 {
  font-size: 36px;
  margin: 0 0 4px 0;
}

.coache-info-name span {
  display: block;
  font-size: 23px;
  font-weight: 300;
  color: #cbd5e1;
}

.coache-info-desc {
  font-size: 20px;
  line-height: 130%;
  margin: 20px 0;
}

.coache-full_description ol,
.coache-full_description ul {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: list-counter;
}

.coache-full_description ol li,
.coache-full_description ul li {
  position: relative;
  margin-bottom: 8px;
  counter-increment: list-counter;
}

.coache-full_description ol li:before,
.coache-full_description ul li:before {
  content: counter(list-counter);
  font-weight: bold;
  font-size: 15px;
  margin-right: 16px;
  width: 34px;
  height: 34px;
  background: radial-gradient(circle, #ffffff 0%, #ffffff 50%, #ffffff00 70%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: black;
}

.coache-full_description img.hr {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 10px;
}

@media (max-width: 1440px) {
  .coache-headline {
    gap: 30px;
  }
}

@media (max-width: 1010px) {
  .coache-info-name span {
    font-size: 18px;
  }
  .coache-info-desc {
    font-size: 16px;
  }
}

@media (min-width: 820px) {
  .coache-full_description .item-flex {
    display: flex;
    gap: 16px;
  }

  .coache-full_description .item-flex * {
    margin-top: 0;
  }

  .coache-full_description span.image_1 {
    display: inline-block;
    background: url(/wp-content/themes/nt-theme/assets/img/img-item-1.png);
    width: 108px;
    min-width: 108px;
    height: 108px;
    object-fit: contain;
    object-position: center;
  }

  .coache-full_description span.image_2 {
    display: inline-block;
    background: url(/wp-content/themes/nt-theme/assets/img/img-item-2.png);
    width: 108px;
    min-width: 108px;
    height: 108px;
    object-fit: contain;
    object-position: center;
  }

  .coache-full_description span.image_3 {
    display: inline-block;
    background: url(/wp-content/themes/nt-theme/assets/img/img-item-3.png);
    width: 108px;
    min-width: 108px;
    height: 108px;
    object-fit: contain;
    object-position: center;
    margin-top: -30px !important;
  }
}

@media (max-width: 820px) {
  .coache-headline {
    flex-direction: column;
  }

  .headline-conteiner img.coache-image {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 400px;
  }

  .coache-info .logo {
    margin-bottom: 15px;
  }
  .coache-full_description span.image_1,
  .coache-full_description span.image_2,
  .coache-full_description span.image_3 {
    display: none;
  }
}

/* Headline */

.headline-conteiner {
  margin: 30px auto;
}

.headline-conteiner h1 {
  font-size: 36px;
  margin-top: 0;
}

@media (max-width: 1010px) {
  .headline-conteiner {
    font-size: 20px;
    margin: 15px 0;
  }
  .headline-conteiner h1 {
    font-size: 26px;
  }
}

/* About Page */
.about-page {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-page .logo {
  width: 330px;
  object-fit: contain;
  min-width: 330px;
}

.about-header * {
  margin-top: 0;
}

.about-header p {
  color: #cbd5e1;
  font-size: clamp(16px, 2.5vw, 20px);
  line-height: 120%;
}

.page-description {
  color: #f1f5f9;
  line-height: 130%;
  margin-bottom: 40px;
}

.leadership-list {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.leadership-item {
  width: calc(100% / 2 - 30px);
}

.leadership-image {
  text-align: center;
}

.leadership-name {
  margin: 20px 0 4px;
  text-align: center;
}
.leadership-position {
  margin: 4px 0 20px;
  text-align: center;
}

@media (max-width: 1440px) {
  .about-page {
    gap: 30px;
  }
  .leadership-list {
    gap: 30px;
  }

  .leadership-item {
    width: calc(100% / 2 - 15px);
  }
}

@media (max-width: 1010px) {
  .leadership-item {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .about-page {
    flex-direction: column;
  }
  .about-page .logo {
    max-width: 250px;
    min-width: auto;
    width: 100%;
  }
}

/* NEW */
.about_hero_image {
  margin: 60px auto;
  position: relative;
}

.about_hero_image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(
    180deg,
    rgba(2, 6, 23, 0) 0%,
    rgba(2, 6, 23, 1) 100%
  );
}

.about_hero_image-image {
  width: 100%;
  height: 500px;
  border-radius: 36px;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .about_hero_image {
    margin: 40px 0px;
  }

  .about_hero_image-image {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .about_hero_image {
    margin: 20px 0px;
  }

  .about_hero_image-image {
    height: 250px;
    border-radius: 20px;
  }
}

.about_hero_headline {
  display: flex;
  margin: 60px auto 50px;
  align-items: center;
  font-size: 20px;
}

.about_hero_headline-image {
  width: 310px;
  height: 316px;
}

.about_hero_headline .text-container {
  display: flex;
  margin: 0px 0px 0px 70px;
  gap: 26px;
  color: #cbd5e1;
}

@media (max-width: 1024px) {
  .about_hero_headline {
    flex-direction: column;
    margin: 40px auto;
    font-size: 18px;
  }
  .about_hero_headline-image {
    display: none;
  }
  .about_hero_headline .text-container {
    margin: 0;
  }
}

@media (max-width: 768px) {
  .about_hero_headline {
    flex-direction: column;
    align-items: center;
    margin: 20px auto;
    font-size: 16px;
  }

  .about_hero_headline-image {
    display: none;
  }

  .about_hero_headline .text-container {
    flex-direction: column;
    margin: 0;
    text-align: center;
  }

  .about_hero_headline .text-container > * {
    margin: 0;
  }
}

.about_content {
  margin: 65px 0px 70px;
  background-color: #e2e8f0;
  color: #64748b;
  border-radius: 36px;
  position: relative;
  font-size: 16px;
}

.about_content-svg-1 {
  position: absolute;
  left: 49px;
  top: 73px;
}
.about_content-svg-2 {
  position: absolute;
  left: 100px;
  bottom: 36px;
}
.about_content-svg-3 {
  position: absolute;
  right: 50px;
  top: 54px;
}
.about_content-svg-4 {
  position: absolute;
  right: 120px;
  bottom: 54px;
}

.about_content .text-container {
  padding: 60px;
  max-width: 848px;
  margin: auto;
}

.about_content .text-block-1 {
  text-align: center;
  margin: 0px 0px 20px 0px;
}

.about_content .text-block-2 {
  text-align: center;
}

@media (max-width: 1024px) {
  .about_content {
    margin: 50px auto;
    padding: 20px;
    font-size: 14px;
  }

  .about_content .text-container {
    padding: 40px 100px;
  }

  .about_content-svg-1 {
    position: absolute;
    left: 20px;
    top: 20px;
  }

  .about_content-svg-2 {
    position: absolute;
    left: 20px;
    bottom: 20px;
  }

  .about_content-svg-3 {
    position: absolute;
    right: 20px;
    top: 20px;
  }

  .about_content-svg-4 {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }
}

@media (max-width: 768px) {
  .about_content .text-container {
    padding: 40px auto;
  }

  .about_content-svg-1 {
    position: absolute;
    left: 10px;
    top: 10px;
  }

  .about_content-svg-2 {
    position: absolute;
    left: 10px;
    bottom: 10px;
  }

  .about_content-svg-3 {
    position: absolute;
    right: 10px;
    top: 10px;
  }

  .about_content-svg-4 {
    position: absolute;
    right: 10px;
    bottom: 10px;
  }
}

@media (max-width: 768px) {
  .about_content {
    margin: 30px auto;
    padding: 15px;
    font-size: 14px;
  }

  .about_content .text-container {
    padding: 20px;
  }

  .about_content-svg-1 {
    position: absolute;
    left: 10px;
    top: 10px;
  }

  .about_content-svg-2 {
    position: absolute;
    left: 10px;
    bottom: 10px;
  }

  .about_content-svg-3 {
    position: absolute;
    right: 10px;
    top: 10px;
  }

  .about_content-svg-4 {
    position: absolute;
    right: 10px;
    bottom: 10px;
  }

  .about_content .text-block-1,
  .about_content .text-block-2 {
    text-align: center;
    margin: 10px 0;
  }
}

.ceo_block-1 {
  color: #cbd5e1;
  display: flex;
  margin: 70px auto 30px;
  max-width: 848px;
  background-color: #10182c;
  height: 308px;
  position: relative;
  border-radius: 36px;
  align-items: center;
}

.ceo_block-1-image {
  width: 355px;
  height: 308px;
  position: absolute;
  left: -155px;
}

.ceo_block-1 .text-container {
  padding: 0px 57px 0px 216px;
}

.ceo_block-1-title {
  font-size: 36px;
  font-weight: 400;
  margin: 0px 0px 16px 0px;
}
.ceo_block-1-before_title {
  font-size: 23px;
  font-weight: 300;
  margin: 16px 0px 20px 0px;
}
.ceo_block-1-description {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 1024px) {
  .ceo_block-1 {
    flex-direction: column;
    margin: 50px 20px;
    padding: 20px;
    height: auto;
    align-items: center;
  }

  .ceo_block-1-image {
    position: static;
    width: 100%;
    max-width: 355px;
    height: auto;
    margin-bottom: 20px;
  }

  .ceo_block-1 .text-container {
    padding: 0 20px;
    text-align: center;
  }

  .ceo_block-1-title {
    font-size: 28px;
  }

  .ceo_block-1-before_title {
    font-size: 20px;
  }

  .ceo_block-1-description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .ceo_block-1 {
    margin: 30px 10px;
    padding: 15px;
  }

  .ceo_block-1-title {
    font-size: 24px;
  }

  .ceo_block-1-before_title {
    font-size: 18px;
  }

  .ceo_block-1-description {
    font-size: 12px;
  }
}

.ceo_block-2 {
  color: #cbd5e1;
  display: flex;
  background-color: #10182c;
  margin: 30px auto 150px;
  max-width: 848px;
  flex-direction: row-reverse;
  position: relative;
  height: 308px;
  border-radius: 36px;
  align-items: center;
}

.ceo_block-2-image {
  /*   width: 258px;
  height: 295px;
  position: absolute;
  right: -52px;
  bottom: 0px;
  object-fit: contain;
  object-position: bottom; */
  width: 355px;
  height: 308px;
  position: absolute;
  right: -155px;
}

.ceo_block-2 .text-container {
  padding: 0px 240px 0px 34px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.ceo_block-1-title {
  font-size: 36px;
  font-weight: 400;
  margin: 0;
}
.ceo_block-2-before_title {
  font-size: 23px;
  font-weight: 300;
  margin: 16px 0px 20px 0px;
}
.ceo_block-2-description {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

@media (max-width: 1024px) {
  .ceo_block-2 {
    flex-direction: column;
    margin: 50px 20px;
    padding: 20px;
    height: auto;
    align-items: center;
  }

  .ceo_block-2-image {
    position: static;
    width: 100%;
    max-width: 258px;
    height: auto;
    margin-bottom: 20px;
  }

  .ceo_block-2 .text-container {
    padding: 0 20px;
    text-align: center;
    align-items: center;
  }

  .ceo_block-1-title {
    font-size: 28px;
  }

  .ceo_block-2-before_title {
    font-size: 20px;
  }

  .ceo_block-2-description {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .ceo_block-2 {
    margin: 30px 10px;
    padding: 15px;
  }

  .ceo_block-1-title {
    font-size: 24px;
  }

  .ceo_block-2-before_title {
    font-size: 18px;
  }

  .ceo_block-2-description {
    font-size: 12px;
  }
}

/* Contact Page */
.contacts_block > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  padding: 40px;
  gap: 40px;
  background-image: url("/wp-content/uploads/contacts_bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
}
.contacts_block > div:last-child::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #02061782;
  z-index: 0;
}

.contacts_block > div:last-child > * {
  z-index: 1;
}

.contacts_block-item {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: clamp(16px, 2.5vw, 18px);
  margin-bottom: 8px;
}

.feedback_block form label {
  position: relative;
}

.feedback_block form label img {
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.feedback_block form label img ~ .wpcf7-form-control-wrap input {
  padding-left: 56px;
}

.feedback_block input,
.feedback_block textarea {
  width: 100%;
  /* max-width: 416px; */
  background: transparent;
  border: none !important;
  outline: none !important;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 16px;
  box-shadow: 1px 1.5px 4px 0px #0000001a inset;
  background: #c9cfd7;
  padding: 13px 20px;
}

.feedback_block input[type="submit"] {
  border: 1px solid;
  border-image-source: linear-gradient(
    156.52deg,
    rgba(255, 255, 255, 0.4) 2.12%,
    rgba(255, 255, 255, 0.0001) 39%,
    rgba(255, 255, 255, 0.0001) 54.33%,
    rgba(255, 255, 255, 0.1) 93.02%
  );
  border-radius: 99px;
  background-color: #ef4444;
  color: white;
  cursor: pointer;
  box-shadow: 0px 12px 50px 0px #ef444480;
  transition-duration: 0.3s;
  width: 100%;
  padding: 10px 48px;
}

.feedback_block form p:last-of-type {
  display: flex;
  margin-bottom: 0;
}

.feedback_block form .wpcf7-spinner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.feedback_block input[type="submit"]:hover {
  color: white;
  opacity: 0.8;
}

.feedback_block label {
  display: block;
  margin-bottom: 18px;
}

.feedback_block br {
  display: none;
}

.contacts_block h2 {
  margin: 0;
}

@media (min-width: 820px) {
  .contacts_block > div:first-child {
    grid-column: span 2 / span 2;
  }

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

  .contacts_block h1 {
    margin-bottom: 60px;
  }

  .contacts_block h2 {
    font-size: 36px;
  }
}

@media (max-width: 820px) {
  .contacts_block > div {
    min-width: auto;
  }
  .contacts_block {
    display: flex;
    flex-direction: column-reverse;
    gap: 60px;
  }

  .contacts_block > div:last-child {
    padding: 20px;
    gap: 20px;
  }
}

/* Blog Listing Page */

.post-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.post-item {
  padding: 20px;
  background: #0f172a;
  display: flex;
  gap: 16px;
  flex-direction: row-reverse;
  justify-content: space-between;
  transition-duration: 0.3s;
  border-radius: 12px;
  color: #cbd5e1;
  width: calc(100% / 2 - 8px);
}

.post-item:hover {
  transform: scale(1.01);
}

.post-title {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
}

.blog-listing .post-author div {
  color: #cbd5e1;
}

.post-item h2 {
  margin: 0;
}

.post-item .post-thumbnail img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.post-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}

@media (max-width: 1200px) {
  .post-item {
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .post-item {
    width: 100%;
  }
}

/* Blog Post Page */
.post-author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.post-author img {
  border-radius: 40px;
  height: 40px;
  width: 40px;
  object-fit: cover;
}

.post-author div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  color: #64748b;
}

.post-headline .post-author div {
  color: #f1f5f9;
}

.post-author .post-date {
  font-size: 12px;
}

.post-content {
  background: #e2e8f0;
  color: black;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.post-content > div {
  max-width: 900px;
}

/* Slider Nav */

.owl-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 0;
  right: 0;
}

.owl-nav button {
  background-color: #0f172a;
  box-shadow: none !important;
  outline: none !important;
  border: none !important;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.owl-nav button span {
  display: none;
}

.owl-nav button::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/wp-content/themes/nt-theme/assets/svg/arrow-left-short.svg");
  object-fit: contain;
  object-position: center;
}

.owl-nav button.owl-next::after {
  transform: rotate(180deg);
}

@media (max-width: 1010px) {
  .owl-nav {
    display: none;
  }
}

/* Editors Choice Section */

.editors_choice-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border-top: 1px solid #ffffff66;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.editors_choice-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 0%, #0f172a 66.51%);
  z-index: 1;
}

.editors_choice-item .play-icon {
  padding: 65px;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.editors_choice-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editors_choice-content {
  z-index: 1;
  position: relative;
  padding: 0 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.editors_choice-content > * {
  max-width: 335px;
}

.editors_choice-item .learn-more {
  width: fit-content;
}

.editors_choice-item .author-nickname {
  color: #f1f5f9;
}

.editors_choice-item .post-date {
  color: #cbd5e1;
}

.editors_choice-title {
  margin: 0;
  line-height: 1.15;
  font-weight: 400;
}

.editors_choice-content p {
  font-size: 14px;
  margin: 0;
  color: #cbd5e1;
  line-height: 1.4;
}

.editors_choice-item .rating {
  display: flex;
  gap: 4px;
}

@media (min-width: 1010px) {
  .editors_choice {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .editors_choice-list {
    width: 100%;
  }
  .editors_choice-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .editors_choice-item.first {
    grid-area: 1 / 1 / 3 / 2;
  }

  .editors_choice-item:not(.first) {
    flex-direction: row-reverse;
  }

  .editors_choice-item:not(.first) .play-icon {
    width: auto;
    padding: 80px;
  }

  .editors_choice-item:not(.first) .editors_choice-content {
    padding: 40px 0 40px 40px;
  }

  .editors_choice-item:not(.first)::before {
    background: linear-gradient(274deg, rgba(15, 23, 42, 0) 0%, #0f172a 66.51%);
  }

  .editors_choice-item:not(.first) .learn-more {
    display: none;
  }

  .editors_choice-item:not(.first) .editors_choice-сouche {
    order: 5;
  }
}

@media (max-width: 1010px) {
  .editors_choice {
    position: relative;
  }
  .editors_choice-item {
    height: 100%;
  }
  .editors_choice .owl-stage-outer {
    overflow: hidden;
  }

  .editors_choice-content {
    padding: 16px;
  }

  .view-all {
    display: none;
  }
}

@media (max-width: 600px) {
  .editors_choice-item .learn-more {
    width: 100%;
    text-align: center;
  }
}

.headline-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

/* Reviews */
.review_home {
  overflow: hidden;
}

.reviews-el {
  max-width: calc(100vw - 40px);
  width: 400px;
  display: flex;
  gap: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #0f172a;
  height: 100%;
  padding: 30px 16px;
  border-radius: 16px;
}

.review-text {
  color: #cbd5e1;
}

.review-text .stars {
  margin-bottom: 10px;
}

.review-autor {
  width: 100%;
  display: flex;
  gap: 10px;
}

.review-autor img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 100px;
}

.review-autor div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
}

.review-autor_desc {
  font-size: 12px;
  color: #94a3b8;
}

.owl-carousel {
  overflow-x: auto;
  display: flex;
  scroll-behavior: smooth;
}
.owl-carousel::-webkit-scrollbar {
  display: none; /* Скрытие горизонтального скроллбара */
}


/* Wishlist Page */

.wishlist-title-container {
  display: none !important;
}

.woocommerce table.shop_table.wishlist_table tr td,
.woocommerce table.shop_table.wishlist_table thead tr th {
  background-color: transparent !important;
  color: white;
}

.wishlist_table {
  padding: 0;
}

.wishlist_table .product-name h3 {
  font-size: 14px;
  margin-top: 0;
}

.wishlist_table.mobile li .item-wrapper {
  width: 100% !important;
}

.wishlist_table.mobile li .item-wrapper .item-details-table {
  width: 100% !important;
}

.wishlist_table.mobile li {
  margin-bottom: 16px;
  border-bottom: 1px solid;
}

/* Wishlist in List */

.listing-product_image .yith-add-to-wishlist-button-block {
  position: absolute;
  top: 0;
  left: 5px;
}

button.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--custom-button {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.yith-add-to-wishlist-button-block span.yith-wcwl-add-to-wishlist-button__label {
  display: none !important;
}

.product-title-container {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.product-title-container .yith-add-to-wishlist-button-block {
  margin: 0;
}