/* roots */
@import "grid.min.css";
@import "buttons.min.css";
@import "icon.min.css";
@import "header.min.css?v=1";
@import "footer.min.css";
@import "tools.min.css";
:root {
  --white: #ffffff;
  --black: #000000;
  /* Pink Color */
  --pink-50: #fef1f9;
  --pink-100: #fee5f5;
  --pink-200: #ffcbee;
  --pink-300: #ffa1de;
  --pink-400: #ff67c6;
  --pink-500: #ff3aac;
  --pink-600: #eb1b8c;
  --pink-700: #cc0a6e;
  --pink-800: #a90b5b;
  --pink-900: #8c0f4d;
  --pink-950: #56012b;
  /* Grey Color */
  --grey-50: #f6f7f9;
  --grey-100: #eceef2;
  --grey-200: #d5d9e2;
  --grey-300: #b1bbc8;
  --grey-400: #8695aa;
  --grey-500: #64748b;
  --grey-600: #526077;
  --grey-700: #434e61;
  --grey-800: #3a4252;
  --grey-900: #343a46;
  --grey-950: #23272e;
  /* Yellow Color */
  --yellow-50: #fef9e8;
  --yellow-100: #fdf1c4;
  --yellow-200: #fce18c;
  --yellow-300: #fbc749;
  --yellow-400: #f7ae1a;
  --yellow-500: #e7950b;
  --yellow-600: #c77007;
  --yellow-700: #9f4f09;
  --yellow-800: #833e10;
  --yellow-900: #703313;
  --yellow-950: #411807;
  /* Blue Color */
  --blue-50: #f0f8ff;
  --blue-100: #e0f0fe;
  --blue-200: #b9e1fe;
  --blue-300: #7ccafd;
  --blue-400: #3cb3fa;
  --blue-500: #0c97eb;
  --blue-600: #0078c9;
  --blue-700: #015ea3;
  --blue-800: #065186;
  --blue-900: #0b436f;
  --blue-950: #072b4a;
  /* Green Color */
  --green-50: #eefffc;
  --green-100: #c5fff8;
  --green-200: #8bfff2;
  --green-300: #4afeec;
  --green-400: #15ecdd;
  --green-500: #00d0c5;
  --green-600: #00a5a1;
  --green-700: #008986;
  --green-800: #066969;
  --green-900: #0a5755;
  --green-950: #003355;
  /* Violet Color */
  --violet-50: #eef0ff;
  --violet-100: #e1e3fe;
  --violet-200: #c8ccfd;
  --violet-300: #a7abfa;
  --violet-400: #807cf5;
  --violet-500: #7466ee;
  --violet-600: #6549e2;
  --violet-700: #583bc7;
  --violet-800: #4732a1;
  --violet-900: #3d307f;
  --violet-950: #251c4a;
  --sidebar-width-1: 240px;
  --sidebar-width-2: 406px;
  --sidebar-width-3: 430px;
}
body {
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  line-height: 130%;
  color: var(--grey-600);
}
/********* General Classes **********/
main {
  margin-top: 162px;
}
@media screen and (max-width: 1200px) {
  main {
    margin-top: 86px;
  }
}
.p-relative {
  position: relative;
}
.p-absolute {
  position: relative;
}
.img-responsive {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.border-radius-32 {
  border-radius: 32px;
  overflow: hidden;
}
.section-dp {
  padding: 30px 0;
}
@media screen and (min-width: 1280px) {
  .section-dp {
    padding: 50px 0;
  }
}
.section-dp-2 {
  padding: 40px 0;
}
@media screen and (min-width: 1280px) {
  .section-dp-2 {
    padding: 60px 0;
  }
}
.bg-grey-50 {
  background: var(--grey-50);
}
.bg-trend-brand {
  background: rgba(42, 83, 156, 0.1);
}
.overflow-hidden {
  overflow: hidden;
}
.v-hidden {
  visibility: hidden;
}
.d-none {
  display: none;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}
.d-block {
  display: block;
}
.d-inline-block {
  display: inline-block;
}
.d-grid {
  display: grid;
}
@media screen and (min-width: 1200px) {
  .d-none-lg {
    display: none;
  }
  .d-flex-lg {
    display: flex;
  }
  .d-inline-flex-lg {
    display: inline-flex;
  }
  .d-block-lg {
    display: block;
  }
  .d-inline-block-lg {
    display: inline-block;
  }
  .d-grid-lg {
    display: grid;
  }
}
@media screen and (max-width: 1200px) {
  .d-none-xs {
    display: none;
  }
  .d-flex-xs {
    display: flex;
  }
  .d-inline-flex-xs {
    display: inline-flex;
  }
  .d-block-xs {
    display: block;
  }
  .d-inline-block-xs {
    display: inline-block;
  }
  .d-grid-xs {
    display: grid;
  }
}
.swiper-controls {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.swiper-controls .swiper-scrollbar {
  display: flex;
  max-width: 400px;
  width: 100%;
  align-items: center;
  position: relative;
  height: 6px;
  top: 0;
  background: var(--grey-100);
  border-radius: 4px;
}
.swiper-controls .swiper-scrollbar.blue {
  background: rgba(46, 46, 56, 0.2);
}
.swiper-controls .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 30px;
  background: var(--grey-600);
  height: 6px;
}
.swiper-controls .swiper-buttons {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.swiper-controls .swiper-buttons .swiper-button-next-2,
.swiper-controls .swiper-buttons .swiper-button-prev-2 {
  font-size: 24px;
}
.swiper-controls .swiper-buttons .swiper-button-next-2,
.swiper-controls .swiper-buttons .swiper-button-prev-2 {
  padding: 15px;
  box-sizing: border-box;
  color: var(--grey-600);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.swiper-controls .swiper-buttons .swiper-button-disabled {
  color: var(-grey-100);
}
.swiper-controls .btn-swiper {
  position: sticky;
  right: 0;
  left: 100%;
}
.swiper-controls.swiper-controls-split {
  position: relative;
  padding-bottom: 3px;
}
.swiper-controls.swiper-controls-split .swiper-buttons {
  position: absolute;
  right: 0;
  display: inline-flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .swiper-controls {
    column-gap: 40px;
    flex-wrap: wrap;
    row-gap: 12px;
  }
  .swiper-controls .swiper-scrollbar {
    max-width: 156px;
    width: 100%;
    height: 2px;
  }
  .swiper-controls .swiper-scrollbar .swiper-scrollbar-drag {
    height: 2px;
  }
  .swiper-controls .swiper-buttons {
    gap: 6px;
  }
  .swiper-controls .swiper-buttons .swiper-button-next-2,
  .swiper-controls .swiper-buttons .swiper-button-prev-2 {
    padding: 0;
    font-size: 16px;
  }
  .swiper-controls .btn {
    flex: 1;
    width: 100%;
    position: relative;
    left: unset;
    right: unset;
  }
}
/********* Hero Section *********/
.hero .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: calc(100% - 32px);
  margin: 0 auto;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid {
    grid-template-columns: 367px 753px;
    height: 832px;
    width: 1140px;
  }
}
@media screen and (min-width: 1440px) {
  .hero .hero-grid {
    grid-template-columns: 427px 873px;
    gap: 20px;
    width: 1320px;
  }
}
@media screen and (min-width: 1920px) {
  .hero .hero-grid {
    grid-template-columns: 580px 1180px;
    /* 1920px için 580px 20px gap 1180px right */
    height: 844px;
    width: 1780px;
    gap: 20px;
  }
}
.hero .hero-grid .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .grid-item {
    aspect-ratio: unset;
  }
}
.hero .hero-grid .grid-item .content {
  padding: 9px 12px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 32px 0 0;
  background: var(--white);
  width: 64%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .grid-item .content {
    padding: 28px 12px 15px 12px;
  }
}
.hero .hero-grid .grid-item .content .category {
  font-size: 10px;
  letter-spacing: -0.2px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  color: var(--grey-600);
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .grid-item .content .category {
    font-size: 12px;
    letter-spacing: -0.24px;
  }
}
.hero .hero-grid .grid-item .content h3 {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 30.8px */
  letter-spacing: -0.36px;
  color: var(--grey-800);
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .grid-item .content h3 {
    font-size: 28px;
    letter-spacing: -0.56px;
  }
}
.hero .hero-grid .grid-item .content p {
  color: var(--grey-700);
  font-size: 13.3px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 26px */
  letter-spacing: 0.13px;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .grid-item .content p {
    font-size: 20px;
    letter-spacing: 0.2px;
  }
}
.hero .hero-grid .grid-item .content:before {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  top: -32px;
  left: 0;
  background-image: url("../img/kosebent.svg");
  background-size: contain;
}
.hero .hero-grid .grid-item .content:after {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  right: -32px;
  bottom: 0;
  background-image: url("../img/kosebent.svg");
  background-size: contain;
}
.hero .hero-grid .grid-item figure {
  width: 100%;
  height: 100%;
  margin: 0;
}
.hero .hero-grid .grid-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-grid .hero-right {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px 5.7%;
  box-sizing: border-box;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .hero-right {
    gap: 20px;
  }
}
.hero .hero-grid .hero-right .grid-item {
  width: 100%;
  display: flex;
}
.hero .hero-grid .hero-right .grid-item .content-over {
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 0 32px 0 0;
  padding: 0 32px 35px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}
.hero .hero-grid .hero-right .grid-item .content-over .category {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.24px;
  color: var(--white);
}
.hero .hero-grid .hero-right .grid-item .content-over h3 {
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 30.8px */
  letter-spacing: -0.88px;
  color: var(--white);
}
.hero .hero-grid .hero-right .grid-item .content-over p {
  color: var(--white);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 26px */
  letter-spacing: 0.2px;
}
.hero .hero-grid .hero-right .grid-item .content-three-over {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 13px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .hero-right .grid-item .content-three-over {
    padding: 0 24px 27px;
  }
}
.hero .hero-grid .hero-right .grid-item .content-three-over .category {
  font-size: 10px;
  letter-spacing: -0.2px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  color: var(--white);
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .hero-right .grid-item .content-three-over .category {
    font-size: 12px;
    letter-spacing: -0.24px;
  }
}
.hero .hero-grid .hero-right .grid-item .content-three-over h3 {
  color: var(--white);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 17.6px */
  letter-spacing: -0.32px;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .hero-right .grid-item .content-three-over h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}
.hero .hero-grid .hero-right .grid-item.user-area .content-over {
  top: 0px;
  left: 0px;
  bottom: unset;
  right: 0px;
  display: flex;
  flex-direction: column;
  padding: 20px 16px 16px;
  gap: 18px;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .hero-right .grid-item.user-area .content-over {
    padding: 32px 28px;
    gap: 20px;
  }
}
.hero .hero-grid .hero-right .grid-item.user-area .content-over h3 {
  font-size: 16px;
  letter-spacing: -0.32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 30.8px */
  color: var(--pink-600);
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .hero-right .grid-item.user-area .content-over h3 {
    font-size: 28px;
    letter-spacing: -0.56px;
  }
}
.hero .hero-grid .hero-right .grid-item.user-area .content-over p {
  color: var(--grey-700, #434E61);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  font-size: 11px;
  letter-spacing: 0.11px;
  margin-top: 0px;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .hero-right .grid-item.user-area .content-over p {
    font-size: 16px;
    letter-spacing: 0.16px;
    margin-top: unset;
  }
}
.hero .hero-grid .hero-right .grid-item.user-area .content-over h4 {
  color: var(--grey-800, #3A4252);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.28px;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .hero-right .grid-item.user-area .content-over h4 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}
.hero .hero-grid .hero-right .grid-item.user-area .user-area-buttons {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  margin-top: -6px;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .hero-right .grid-item.user-area .user-area-buttons {
    gap: 12px;
  }
}
@media screen and (min-width: 1920px) {
  .hero .hero-grid .hero-right .grid-item.user-area .user-area-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.hero .hero-grid .hero-right .grid-item.user-area .user-area-buttons .user-btn {
  font-size: 11px;
  padding: 8px 26px;
  display: flex;
  align-items: center;
  width: auto;
  border-radius: 200px;
  background: #FFF;
  white-space: nowrap;
  gap: 12px;
  color: var(--grey-700, #434E61);
  text-align: center;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.22px;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .hero-right .grid-item.user-area .user-area-buttons .user-btn {
    font-size: 15px;
    padding: 8px 14px;
    letter-spacing: -0.3px;
  }
}
.hero .hero-grid .hero-right .grid-item:first-child {
  order: 1;
  aspect-ratio: 351/240;
}
@media screen and (max-width: 1279px) {
  .hero .hero-grid .hero-right .grid-item:first-child .content-over {
    gap: 8px;
    padding: 20px;
  }
  .hero .hero-grid .hero-right .grid-item:first-child .content-over h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
  .hero .hero-grid .hero-right .grid-item:first-child .content-over p {
    font-size: 14px;
    letter-spacing: 0.14px;
  }
}
.hero .hero-grid .hero-right .grid-item:nth-child(2) {
  order: 2;
  width: 100%;
  aspect-ratio: 351/214;
}
.hero .hero-grid .hero-right .grid-item:nth-child(3) {
  order: 3;
  width: calc(50% - 12px);
  height: 200px;
}
.hero .hero-grid .hero-right .grid-item:nth-child(4) {
  order: 4;
  width: calc(50% - 12px);
  height: 200px;
}
.hero .hero-grid .hero-right .grid-item:nth-child(5) {
  order: 5;
  width: calc(50% - 12px);
  height: 200px;
}
.hero .hero-grid .hero-right .grid-item:nth-child(6) {
  order: 6;
  width: calc(50% - 10px);
  height: 200px;
}
@media screen and (min-width: 1280px) {
  .hero .hero-grid .hero-right .grid-item:first-child {
    width: 463px;
    height: 466px;
    order: 1;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(2) {
    width: 270px;
    margin-right: 0;
    height: 466px;
    box-sizing: border-box;
    order: 2;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(3),
  .hero .hero-grid .hero-right .grid-item:nth-child(4),
  .hero .hero-grid .hero-right .grid-item:nth-child(5),
  .hero .hero-grid .hero-right .grid-item:nth-child(6) {
    width: 237.33px;
    height: 346px;
    order: 3;
    display: flex;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(5) {
    margin-right: 0;
    display: none;
    order: 4;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(6) {
    margin-right: 0;
    order: 5;
  }
}
@media screen and (min-width: 1440px) {
  .hero .hero-grid .hero-right .grid-item:first-child {
    width: 538px;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(2) {
    width: 315px;
    margin-right: 0;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(3),
  .hero .hero-grid .hero-right .grid-item:nth-child(4),
  .hero .hero-grid .hero-right .grid-item:nth-child(5),
  .hero .hero-grid .hero-right .grid-item:nth-child(6) {
    width: 277.66px;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(5) {
    margin-right: 0;
    display: none;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(6) {
    margin-right: 0;
  }
}
@media screen and (min-width: 1920px) {
  .hero .hero-grid .hero-right .grid-item:first-child {
    width: 730px;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(2) {
    width: 430px;
    margin-right: 0;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(3),
  .hero .hero-grid .hero-right .grid-item:nth-child(4),
  .hero .hero-grid .hero-right .grid-item:nth-child(5),
  .hero .hero-grid .hero-right .grid-item:nth-child(6) {
    width: 280px;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(5) {
    display: flex;
  }
  .hero .hero-grid .hero-right .grid-item:nth-child(6) {
    margin-right: 0;
  }
}
.hero .why-us {
  margin-top: 32px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--pink-600, #EB1B8C);
  position: relative;
  background-image: url("../img/why-us-mobile-center.svg");
  padding: 28px;
  height: 300px;
  background-repeat: repeat-x;
  background-position: 50px 0;
  background-size: auto 100%;
}
.hero .why-us:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background-image: url("../img/why-us-mobile.svg");
  background-position: 0 0;
  background-size: auto 100%;
  background-color: #fff;
}
.hero .why-us:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background-image: url("../img/why-us-mobile.svg");
  background-position: 100% 0;
  background-size: auto 100%;
  background-color: #fff;
}
@media screen and (min-width: 1280px) {
  .hero .why-us {
    background-image: url("../img/why-us-1280.svg");
    padding: 22px 110px 30px 42px;
    width: 1140px;
    margin-left: auto;
    margin-right: auto;
    height: 220px;
    flex-direction: row;
    align-items: center;
    background-repeat: no-repeat;
    background-position-x: 0;
  }
  .hero .why-us:before,
  .hero .why-us:after {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .hero .why-us {
    background-image: url("../img/why-us-1440.svg");
    padding: 48px 48px 68px 48px;
    width: 100%;
    gap: 64px;
  }
}
@media screen and (min-width: 1920px) {
  .hero .why-us {
    padding: 48px;
    height: 224px;
    background-image: url("../img/why-us.svg");
    background-size: contain;
  }
}
.hero .why-us .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 35.2px */
  z-index: 1;
  letter-spacing: -0.64px;
}
@media screen and (min-width: 1280px) {
  .hero .why-us .title {
    width: 272px;
    font-size: 56px;
    letter-spacing: -1.12px;
  }
}
@media screen and (min-width: 1920px) {
  .hero .why-us .title {
    width: 387px;
  }
}
.hero .why-us .numbers {
  display: flex;
  justify-content: space-between;
  width: auto;
  z-index: 1;
  flex-wrap: wrap;
  row-gap: 32px;
  align-items: center;
}
@media screen and (min-width: 1280px) {
  .hero .why-us .numbers {
    width: 669px;
    row-gap: 24px;
  }
}
@media screen and (min-width: 1440px) {
  .hero .why-us .numbers {
    flex-wrap: nowrap;
    width: 868px ;
  }
}
@media screen and (min-width: 1920px) {
  .hero .why-us .numbers {
    width: 1318px;
    justify-content: space-between;
    gap: normal;
  }
}
.hero .why-us .numbers .item {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 4px;
  width: 50%;
  white-space: break-spaces;
}
@media screen and (max-width: 1024px) {
  .hero .why-us .numbers .item:nth-child(2) {
    order: 4;
  }
  .hero .why-us .numbers .item:nth-child(2) small {
    display: flex;
    flex-direction: column;
  }
  .hero .why-us .numbers .item:nth-child(3) {
    order: 3;
  }
  .hero .why-us .numbers .item:nth-child(4) {
    order: 2;
  }
}
.hero .why-us .numbers .item span {
  font-size: 24px;
  letter-spacing: -0.48px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 48.4px */
}
@media screen and (min-width: 1280px) {
  .hero .why-us .numbers .item span {
    letter-spacing: -0.88px;
    font-size: 44px;
  }
}
.hero .why-us .numbers .item small {
  font-size: 12px;
  letter-spacing: -0.24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 19.8px */
}
@media screen and (min-width: 1280px) {
  .hero .why-us .numbers .item small {
    letter-spacing: -0.36px;
    font-size: 18px;
  }
}
.hero .why-us .gebe-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30.3px;
  height: 30.3px;
  padding: 10.8px;
  background-color: var(--pink-600, #EB1B8C);
  border-radius: 100%;
  display: flex;
  color: #fff;
  font-size: 28px;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .hero.section-dp {
    padding-top: 43px !important;
  }
}
/********* Bento Buttons *********/
.bento-read-more {
  position: absolute;
  top: 8px;
  border-radius: 100%;
  right: 8px;
  z-index: 2;
  width: 52px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #343A46;
  color: #343A46;
}
@media screen and (max-width: 768px) {
  .bento-read-more {
    width: 44px;
    height: 44px;
  }
}
.bento-read-more.pink {
  background: var(--white);
  color: var(--pink-600);
  border: 1px solid var(--pink-600);
}
.fill-black,
.fill-orange,
.fill-pink,
.fill-gray {
  background: rgba(101, 73, 226, 0.2);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 1;
  border-radius: 32px;
}
.fill-orange {
  background: rgba(231, 149, 11, 0.2);
}
/********* Default Tabs *********/
.tabs .tabs-buttons:not(.main-tabs) {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tabs .tabs-buttons:not(.main-tabs) li {
  color: rgba(82, 96, 119, 0.7);
  border-bottom: 2px solid var(--grey-200, #d5d9e2);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: 14px 28px;
  width: 345px;
}
@media screen and (max-width: 1280px) {
  .tabs .tabs-buttons:not(.main-tabs) li {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 13.2px */
    letter-spacing: -0.24px;
    padding: 14px 16px;
  }
}
.tabs .tabs-buttons:not(.main-tabs) li.active {
  color: var(--pink-600, #EB1B8C);
  border-bottom: 2px solid var(--pink-600, #EB1B8C);
}
.tabs .tabs-content:not(.main-tabs) {
  padding: 48px 0 32px;
}
.tabs .tabs-content:not(.main-tabs) .tabs-item {
  display: none;
}
.tabs .tabs-content:not(.main-tabs) .tabs-item.show {
  display: block;
}
.tabs .tabs-description {
  color: var(--grey-600, #526077);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 0.24px;
  margin-bottom: 48px;
}
/********* Section Weekly Pregnancy *********/
.weekly-pregnancy {
  background: var(--white);
}
.weekly-pregnancy .weekly-tabs {
  border-radius: 60px;
  background: var(--grey-50, #F6F7F9);
}
@media screen and (max-width: 1200px) {
  .weekly-pregnancy .weekly-tabs {
    border-radius: 24px;
    background: none;
  }
}
.weekly-pregnancy .weekly-tabs .tabs-buttons.main-tabs {
  background: var(--white);
  border-radius: 0 0 32px 0;
  display: inline-flex;
  align-items: center;
  padding: 12px 20px 20px;
  position: relative;
  box-sizing: border-box;
  gap: 52px;
}
.weekly-pregnancy .weekly-tabs .tabs-buttons.main-tabs:before {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  bottom: -32px;
  left: 0;
  background-image: url("../img/kosebent.svg");
  background-size: contain;
  rotate: 90deg;
}
.weekly-pregnancy .weekly-tabs .tabs-buttons.main-tabs:after {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  right: -32px;
  top: 0;
  background-image: url("../img/kosebent.svg");
  background-size: contain;
  rotate: 90deg;
}
@media screen and (max-width: 1200px) {
  .weekly-pregnancy .weekly-tabs .tabs-buttons.main-tabs {
    gap: 0;
    padding: 0;
  }
  .weekly-pregnancy .weekly-tabs .tabs-buttons.main-tabs:before,
  .weekly-pregnancy .weekly-tabs .tabs-buttons.main-tabs:after {
    display: none;
  }
}
.weekly-pregnancy .weekly-tabs .tabs-buttons.main-tabs li {
  color: #434E61;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 30.8px */
  letter-spacing: -0.56px;
  padding: 14px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .weekly-pregnancy .weekly-tabs .tabs-buttons.main-tabs li {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.36px;
    padding: 12px;
  }
  .weekly-pregnancy .weekly-tabs .tabs-buttons.main-tabs li .icon img {
    width: 24px;
  }
}
.weekly-pregnancy .weekly-tabs .tabs-buttons.main-tabs li.active {
  background: var(--pink-600, #EB1B8C);
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  color: #fff;
}
.weekly-pregnancy .weekly-tabs .tabs-content.main-tabs {
  padding: 46px 28px 36px;
}
@media screen and (max-width: 1200px) {
  .weekly-pregnancy .weekly-tabs .tabs-content.main-tabs {
    background: var(--grey-50, #F6F7F9);
    border-radius: 24px;
    padding: 20px 12px;
    margin-top: 24px;
  }
}
.weekly-pregnancy .weekly-tabs .tabs-content.main-tabs .tabs-item {
  display: none;
}
.weekly-pregnancy .weekly-tabs .tabs-content.main-tabs .tabs-item.show {
  display: block;
}
.weekly-swiper .swiper-slide {
  aspect-ratio: 1/1;
  width: 100%;
  height: 134px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 2px solid var(--grey-100);
  background: #FFF;
  display: flex;
  padding: 20px 20px 17px 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  flex: 1 0 0;
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
  .weekly-swiper .swiper-slide {
    height: 100px;
    padding: 16px 16px 11.5px 16px;
    margin-right: 10px;
  }
  .weekly-swiper .swiper-slide img {
    width: 37px;
  }
}
.weekly-swiper .swiper-slide span {
  color: #BC1670;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 19.8px */
  letter-spacing: -0.36px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .weekly-swiper .swiper-slide span {
    font-size: 12px;
    letter-spacing: -0.28px;
  }
}
.weekly-swiper .swiper-slide span:before {
  content: 'GEBELİKTE';
  color: #BC1670;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 13.2px */
  letter-spacing: -0.24px;
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .weekly-swiper .swiper-slide span:before {
    font-size: 10px;
    letter-spacing: -0.2px;
  }
}
.weekly-swiper .swiper-controls {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.weekly-swiper .swiper-scrollbar {
  display: flex;
  width: 400px;
  align-items: center;
  position: relative;
  height: 6px;
  top: 0;
  background: var(--grey-100);
  border-radius: 4px;
}
.weekly-swiper .swiper-scrollbar .swiper-scrollbar-drag {
  border-radius: 30px;
  background: var(--grey-600);
  height: 6px;
}
.weekly-swiper .swiper-buttons {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.weekly-swiper .swiper-buttons .swiper-button-next-2,
.weekly-swiper .swiper-buttons .swiper-button-prev-2 {
  font-size: 24px;
}
.weekly-swiper .swiper-buttons .swiper-button-next-2,
.weekly-swiper .swiper-buttons .swiper-button-prev-2 {
  padding: 15px;
  box-sizing: border-box;
  color: var(--grey-600);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}
.weekly-swiper .swiper-buttons .swiper-button-disabled {
  color: var(-grey-100);
}
.weekly-swiper.monthly-swiper .swiper-slide {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.weekly-swiper.monthly-swiper .swiper-slide span {
  text-align: left;
}
.weekly-swiper.monthly-swiper .swiper-slide span:before {
  content: 'BEBEĞİN';
  color: #BC1670;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 13.2px */
  letter-spacing: -0.24px;
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .weekly-swiper.monthly-swiper .swiper-slide span:before {
    font-size: 10px;
    letter-spacing: -0.2px;
  }
}
.home-tools-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
.home-tools-grid .title {
  width: calc(40% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .home-tools-grid .title {
    width: 100%;
    gap: 12px;
  }
}
.home-tools-grid .title h3 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 70.4px */
  letter-spacing: -1.28px;
  color: var(--grey-700);
}
.home-tools-grid .title p {
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 0.24px;
  color: var(--grey-600);
  max-width: 70%;
  margin-bottom: 12px;
}
@media screen and (max-width: 1200px) {
  .home-tools-grid .title p {
    font-size: 18px;
    letter-spacing: 0.18px;
    max-width: 100%;
  }
}
.home-tools-grid .item {
  background: var(--white);
  display: flex;
  padding: 32px 20px 20px 20px;
  flex-direction: column;
  border-radius: 32px;
  height: 236px;
  width: calc(20% - 20px);
  box-sizing: border-box;
  flex: 0 0 calc(20% - 20px);
  gap: 8px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .home-tools-grid .item {
    height: 148px;
    padding: 24px 16px 16px;
    box-sizing: border-box;
    flex: 0 0 calc(50% - 20px);
  }
}
.home-tools-grid .item .tool-title {
  color: var(--grey-800);
  font-size: 24px;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.48px;
  max-width: 177px;
}
@media screen and (max-width: 1200px) {
  .home-tools-grid .item .tool-title {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 17.6px */
    letter-spacing: -0.32px;
    max-width: 100%;
  }
}
.home-tools-grid .item span {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
  color: var(--grey-900);
  max-width: 143px;
  display: inline-block;
}
@media screen and (max-width: 1200px) {
  .home-tools-grid .item span {
    display: none;
  }
}
.home-tools-grid .item img {
  max-width: calc(100% - 143px);
  object-fit: cover;
  border-radius: 32px;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .home-tools-grid .item img {
    width: 60px;
    max-width: unset;
  }
}
/********* Accordion *********/
.accordion,
.like-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.accordion .accordion-item,
.like-accordion .accordion-item,
.accordion .like-accordion-item,
.like-accordion .like-accordion-item {
  background: var(--white);
  padding: 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 30px;
  border: 2px solid var(--Gebe_Grey-100, #ECEEF2);
}
@media screen and (max-width: 1200px) {
  .accordion .accordion-item,
  .like-accordion .accordion-item,
  .accordion .like-accordion-item,
  .like-accordion .like-accordion-item {
    padding: 16px;
    border-radius: 24px;
  }
}
.accordion .accordion-item .accordion-header,
.like-accordion .accordion-item .accordion-header,
.accordion .like-accordion-item .accordion-header,
.like-accordion .like-accordion-item .accordion-header,
.accordion .accordion-item .like-accordion-header,
.like-accordion .accordion-item .like-accordion-header,
.accordion .like-accordion-item .like-accordion-header,
.like-accordion .like-accordion-item .like-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.accordion .accordion-item .accordion-header h5,
.like-accordion .accordion-item .accordion-header h5,
.accordion .like-accordion-item .accordion-header h5,
.like-accordion .like-accordion-item .accordion-header h5,
.accordion .accordion-item .like-accordion-header h5,
.like-accordion .accordion-item .like-accordion-header h5,
.accordion .like-accordion-item .like-accordion-header h5,
.like-accordion .like-accordion-item .like-accordion-header h5 {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.56px;
  color: var(--grey-700);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .accordion .accordion-item .accordion-header h5,
  .like-accordion .accordion-item .accordion-header h5,
  .accordion .like-accordion-item .accordion-header h5,
  .like-accordion .like-accordion-item .accordion-header h5,
  .accordion .accordion-item .like-accordion-header h5,
  .like-accordion .accordion-item .like-accordion-header h5,
  .accordion .like-accordion-item .like-accordion-header h5,
  .like-accordion .like-accordion-item .like-accordion-header h5 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 19.8px */
    letter-spacing: -0.36px;
  }
}
.accordion .accordion-item .accordion-header h5:after,
.like-accordion .accordion-item .accordion-header h5:after,
.accordion .like-accordion-item .accordion-header h5:after,
.like-accordion .like-accordion-item .accordion-header h5:after,
.accordion .accordion-item .like-accordion-header h5:after,
.like-accordion .accordion-item .like-accordion-header h5:after,
.accordion .like-accordion-item .like-accordion-header h5:after,
.like-accordion .like-accordion-item .like-accordion-header h5:after {
  content: "\e90a";
  font-family: 'icomoon';
  display: flex;
  aspect-ratio: 1/1;
  min-width: 44px;
  max-width: 44px;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  border: 1px solid var(--grey-900, #343A46);
  background: #FFF;
}
.accordion .accordion-item .accordion-header h5.non-arrow:after,
.like-accordion .accordion-item .accordion-header h5.non-arrow:after,
.accordion .like-accordion-item .accordion-header h5.non-arrow:after,
.like-accordion .like-accordion-item .accordion-header h5.non-arrow:after,
.accordion .accordion-item .like-accordion-header h5.non-arrow:after,
.like-accordion .accordion-item .like-accordion-header h5.non-arrow:after,
.accordion .like-accordion-item .like-accordion-header h5.non-arrow:after,
.like-accordion .like-accordion-item .like-accordion-header h5.non-arrow:after {
  content: "";
  display: none;
}
.accordion .accordion-item .accordion-header .icon,
.like-accordion .accordion-item .accordion-header .icon,
.accordion .like-accordion-item .accordion-header .icon,
.like-accordion .like-accordion-item .accordion-header .icon,
.accordion .accordion-item .like-accordion-header .icon,
.like-accordion .accordion-item .like-accordion-header .icon,
.accordion .like-accordion-item .like-accordion-header .icon,
.like-accordion .like-accordion-item .like-accordion-header .icon {
  font-size: 24px;
  color: var(--grey-600);
}
.accordion .accordion-item .accordion-body,
.like-accordion .accordion-item .accordion-body,
.accordion .like-accordion-item .accordion-body,
.like-accordion .like-accordion-item .accordion-body {
  display: none;
}
.accordion .accordion-item .accordion-body.show,
.like-accordion .accordion-item .accordion-body.show,
.accordion .like-accordion-item .accordion-body.show,
.like-accordion .like-accordion-item .accordion-body.show {
  display: block;
  padding-top: 40px;
}
/********* Mini Category Badges *********/
.cat-badge {
  display: inline-flex;
  padding: 8px 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 200px;
  border: 1px solid var(--grey-100);
  background: var(--grey-50);
  box-sizing: border-box;
  cursor: pointer;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.3px;
  color: var(--grey-800);
  position: relative;
  white-space: nowrap;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .cat-badge {
    font-size: 13.3px;
  }
}
.cat-badge.active:before {
  content: "\e914";
  font-family: 'icomoon';
  font-size: 17px;
  color: var(--white);
}
.cat-badge.pink {
  background: var(--pink-50);
  color: var(--pink-800);
  border: 1px solid var(--pink-100);
}
.cat-badge.pink.active,
.cat-badge.pink:hover {
  background: var(--pink-800);
  border: 1px solid var(--pink-800);
  color: var(--white);
}
.cat-badge.yellow {
  background: var(--yellow-50);
  color: var(--yellow-600);
  border: 1px solid var(--yellow-100);
}
.cat-badge.yellow.active,
.cat-badge.yellow:hover {
  background: var(--yellow-600);
  border: 1px solid var(--yellow-600);
  color: var(--white);
}
.cat-badge.green {
  background: var(--green-50);
  color: var(--green-800);
  border: 1px solid var(--green-100);
}
.cat-badge.green.active,
.cat-badge.green:hover {
  background: var(--green-800);
  border: 1px solid var(--green-800);
  color: var(--white);
}
.cat-badge.blue {
  background: var(--blue-50);
  color: var(--blue-800);
  border: 1px solid var(--blue-100);
}
.cat-badge.blue.active,
.cat-badge.blue:hover {
  background: var(--blue-800);
  border: 1px solid var(--blue-800);
  color: var(--white);
}
.cat-badge.violet {
  background: var(--violet-50);
  color: var(--violet-800);
  border: 1px solid var(--violet-100);
}
.cat-badge.violet.active,
.cat-badge.violet:hover {
  background: var(--violet-800);
  border: 1px solid var(--violet-800);
  color: var(--white);
}
/******** Mini Badges Container *********/
.mini-badges-container {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  overflow-x: auto;
  margin-bottom: 40px;
}
.mini-badges-container::-webkit-scrollbar {
  display: none;
}
/********** Card Types **********/
.card {
  border-radius: 20px;
  border: 2px solid var(--grey-100, #ECEEF2);
  display: flex;
  min-height: 300px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
  overflow: hidden;
}
.card figure {
  height: 180px;
  width: 100%;
  aspect-ratio: 288.8/100;
  flex-shrink: 0;
}
.card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card .card-content {
  padding: 20px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card .category {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 13.2px */
  letter-spacing: -0.24px;
  color: var(--grey-600);
}
.card .card-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  color: var(--grey-800);
}
.card-swiper .swiper-slide {
  margin-right: 20px;
}
@media screen and (max-width: 1200px) {
  .card-swiper .swiper-slide {
    margin-right: 10px;
    max-width: 260px;
  }
}
/********** Category Card Grid **********/
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
/********** Big Card Component **********/
.big-card-section {
  display: grid;
  grid-template-columns: 40% 56%;
  grid-template-rows: 1fr;
  grid-column-gap: 4%;
  grid-row-gap: 0;
}
.big-card-section .section-title {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-end;
  justify-content: start;
}
.big-card-section .section-title h2 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 70.4px */
  letter-spacing: -1.28px;
  color: var(--grey-700);
}
.big-card-section .first-column {
  display: flex;
  flex-wrap: wrap;
  gap: 48px 32px;
}
.big-card-section .first-column .item {
  flex: 1;
  max-width: 266px;
  position: relative;
  height: fit-content;
  display: block;
}
.big-card-section .first-column .item figure {
  aspect-ratio: 216/173;
  width: 100%;
  position: relative;
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
}
.big-card-section .first-column .item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.big-card-section .first-column .item figure:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(180deg, rgba(46, 46, 56, 0) 0%, rgba(46, 46, 56, 0.8) 72.62%);
}
.big-card-section .first-column .item .content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  box-sizing: border-box;
  width: 100%;
  max-width: calc(100% - 48px);
}
.big-card-section .first-column .item .content h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  color: var(--white);
}
.big-card-section .first-column .item .content p,
.big-card-section .first-column .item .content .category {
  display: none;
}
.big-card-section .first-column .item:first-of-type {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 3;
  min-width: 100%;
}
.big-card-section .first-column .item:first-of-type figure {
  aspect-ratio: 856/416;
  width: 100%;
  position: relative;
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .big-card-section .first-column .item:first-of-type figure {
    aspect-ratio: 351/260;
    width: 100%;
  }
}
.big-card-section .first-column .item:first-of-type figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big-card-section .first-column .item:first-of-type figure:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
}
.big-card-section .first-column .item:first-of-type .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  bottom: unset;
  left: unset;
  right: unset;
}
@media screen and (max-width: 1200px) {
  .big-card-section .first-column .item:first-of-type .content {
    max-width: 100%;
  }
}
.big-card-section .first-column .item:first-of-type .content .category {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.12px;
  color: var(--grey-600);
  display: block;
}
.big-card-section .first-column .item:first-of-type .content h3 {
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 48.4px */
  letter-spacing: -0.88px;
  color: var(--grey-800);
}
@media screen and (max-width: 1200px) {
  .big-card-section .first-column .item:first-of-type .content h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}
.big-card-section .first-column .item:first-of-type .content p {
  color: var(--grey-600);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 26px */
  letter-spacing: 0.2px;
  display: block;
}
@media screen and (max-width: 1200px) {
  .big-card-section .first-column .item:first-of-type .content p {
    font-size: 14px;
    letter-spacing: 0.14px;
  }
}
@media screen and (max-width: 1200px) {
  .big-card-section .first-column {
    padding-bottom: 48px;
  }
  .big-card-section .first-column .big-card-swiper {
    height: fit-content;
  }
  .big-card-section .first-column .big-card-swiper .item {
    flex: 1;
    max-width: 160px;
    position: relative;
    height: fit-content;
    display: block;
  }
  .big-card-section .first-column .big-card-swiper .item figure {
    aspect-ratio: 1/1;
    width: 100%;
    position: relative;
    margin: 0;
    border-radius: 32px;
    overflow: hidden;
  }
  .big-card-section .first-column .big-card-swiper .item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin: 0;
  }
  .big-card-section .first-column .big-card-swiper .item figure:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(180deg, rgba(46, 46, 56, 0) 0%, rgba(46, 46, 56, 0.8) 72.62%);
  }
  .big-card-section .first-column .big-card-swiper .item .content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    box-sizing: border-box;
    width: 100%;
    max-width: calc(100% - 40px);
  }
  .big-card-section .first-column .big-card-swiper .item .content h3 {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.32px;
    color: var(--white);
  }
  .big-card-section .first-column .big-card-swiper .item .content p,
  .big-card-section .first-column .big-card-swiper .item .content .category {
    display: none;
  }
}
.big-card-section .second-column {
  overflow: hidden;
}
.big-card-section .second-column .section-title {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
  align-items: flex-end;
  justify-content: start;
}
@media screen and (max-width: 1200px) {
  .big-card-section .second-column .section-title {
    display: none;
  }
}
.big-card-section .second-column .section-title h2 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 70.4px */
  letter-spacing: -1.28px;
  color: var(--grey-700);
}
.big-card-section .second-column .h-card-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.big-card-section .second-column .h-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
}
.big-card-section .second-column .h-card figure {
  flex: 0 0 33%;
  border-radius: 24px;
  aspect-ratio: 308/173;
  width: 100%;
  position: relative;
  margin: 0;
  overflow: hidden;
}
.big-card-section .second-column .h-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.big-card-section .second-column .h-card .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-sizing: border-box;
}
.big-card-section .second-column .h-card .content .category {
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.12px;
  color: var(--grey-600);
}
.big-card-section .second-column .h-card .content h3 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.64px;
  color: var(--grey-800);
}
.big-card-section .second-column .h-card .content p {
  color: var(--grey-600);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
}
@media screen and (max-width: 1200px) {
  .big-card-section .second-column .h-card {
    gap: 12px;
  }
  .big-card-section .second-column .h-card figure {
    aspect-ratio: 113/119;
    min-width: 113px;
    max-width: 113px;
  }
  .big-card-section .second-column .h-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .big-card-section .second-column .h-card .content {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .big-card-section .second-column .h-card .content .category {
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.2px;
  }
  .big-card-section .second-column .h-card .content h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.36px;
    margin-bottom: 4px;
  }
  .big-card-section .second-column .h-card .content p {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 15.6px */
    letter-spacing: 0.12px;
  }
}
@media screen and (max-width: 1200px) {
  .big-card-section {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1900px) {
  .big-card-section {
    grid-template-columns: 50% 46%;
    grid-template-rows: 1fr;
    grid-column-gap: 4%;
  }
}
.hidden-section-title {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 48px;
  align-items: flex-start;
  justify-content: start;
}
@media screen and (min-width: 1200px) {
  .hidden-section-title {
    display: none;
  }
}
.hidden-section-title h2 {
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 44px */
  letter-spacing: -0.8px;
  color: var(--grey-700);
}
.mid-card-section {
  display: grid;
  gap: 48px;
  grid-template-columns: 521fr 1011fr;
}
.mid-card-section .first-column {
  height: 100%;
}
.mid-card-section .first-column .item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mid-card-section .first-column .item figure {
  border-radius: 32px;
  aspect-ratio: 1/1;
  width: 100%;
  position: relative;
  margin: 0;
  overflow: hidden;
}
.mid-card-section .first-column .item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mid-card-section .first-column .item .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mid-card-section .first-column .item .content .category {
  display: flex;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.12px;
  color: var(--grey-600);
}
.mid-card-section .first-column .item .content h3 {
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 48.4px */
  letter-spacing: -0.88px;
  color: var(--grey-800);
}
.mid-card-section .first-column .item .content p {
  color: var(--grey-600);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 26px */
  letter-spacing: 0.2px;
}
.mid-card-section .first-column .item .bento-read-more {
  top: 8px;
  left: 8px;
}
.mid-card-section .second-column {
  overflow-x: hidden;
  padding-bottom: 30px;
}
.mid-card-section .second-column .section-header {
  gap: 20px !important;
}
@media screen and (max-width: 1200px) {
  .mid-card-section .second-column .section-header {
    display: none;
  }
}
.mid-card-section .second-column .mid-card-swiper .item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mid-card-section .second-column .mid-card-swiper .item figure {
  border-radius: 20px;
  aspect-ratio: 316/400;
  width: 100%;
  position: relative;
  margin: 0;
  overflow: hidden;
}
.mid-card-section .second-column .mid-card-swiper .item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mid-card-section .second-column .mid-card-swiper .item .content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mid-card-section .second-column .mid-card-swiper .item .content .category {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.12px;
  color: var(--grey-600);
}
.mid-card-section .second-column .mid-card-swiper .item .content h3 {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.56px;
  color: var(--grey-800);
}
.mid-card-section .second-column .mid-card-swiper .item .hot-content {
  position: absolute;
  top: 8px !important;
  right: 9.2px !important;
  border-radius: 100%;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .mid-card-section {
    display: flex;
    flex-direction: column;
    gap: 40px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .mid-card-section .first-column .item {
    gap: 24px;
  }
  .mid-card-section .first-column .item figure {
    aspect-ratio: 351/260;
  }
  .mid-card-section .first-column .item .content {
    gap: 8px;
  }
  .mid-card-section .first-column .item .content .category {
    font-size: 10px;
    line-height: 110%;
    letter-spacing: -0.2px;
  }
  .mid-card-section .first-column .item .content h3 {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 26.4px */
    letter-spacing: -0.48px;
    margin-bottom: 4px;
  }
  .mid-card-section .first-column .item .content p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 18.2px */
    letter-spacing: 0.14px;
  }
  .mid-card-section .second-column .mid-card-swiper {
    padding-bottom: 10px;
  }
  .mid-card-section .second-column .mid-card-swiper .item {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .mid-card-section .second-column .mid-card-swiper .item figure {
    border-radius: 20px;
    aspect-ratio: 1/1.4;
    width: 100%;
    position: relative;
    margin: 0;
    overflow: hidden;
  }
  .mid-card-section .second-column .mid-card-swiper .item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mid-card-section .second-column .mid-card-swiper .item .content {
    gap: 8px;
  }
  .mid-card-section .second-column .mid-card-swiper .item .content .category {
    font-size: 10px;
    line-height: 110%;
    letter-spacing: -0.2px;
  }
  .mid-card-section .second-column .mid-card-swiper .item .content h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    letter-spacing: -0.36px;
  }
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 48px;
}
.section-header .section-title {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-header .section-title.unset-width {
  max-width: unset;
}
.section-header .section-title h2 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 70.4px */
  letter-spacing: -1.28px;
  color: var(--grey-800);
}
.section-header .section-title p {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 0.24px;
  color: var(--grey-600);
}
@media screen and (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .section-header .section-title {
    max-width: 100%;
    gap: 12px;
  }
  .section-header .section-title h2 {
    font-size: 40px;
    letter-spacing: -0.8px;
  }
  .section-header .section-title p {
    font-size: 18px;
    letter-spacing: 0.18px;
  }
}
.main-category-card-swiper {
  margin-bottom: 140px;
  margin-top: 48px;
}
@media screen and (max-width: 1200px) {
  .main-category-card-swiper {
    margin-top: 24px;
    margin-bottom: 60px;
  }
}
.main-category-card-swiper .card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  border: 0;
  padding: 0;
}
.main-category-card-swiper .card:before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(101, 73, 226, 0.2) 0%, rgba(101, 73, 226, 0.2) 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-category-card-swiper .card figure {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  box-sizing: border-box;
}
.main-category-card-swiper .card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main-category-card-swiper .card .card-content {
  position: absolute;
  bottom: 48px;
  padding: 0 24px;
}
@media screen and (max-width: 1200px) {
  .main-category-card-swiper .card .card-content {
    bottom: 20px;
  }
}
.main-category-card-swiper .card .card-content .card-title {
  color: #FFF;
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.88px;
}
@media screen and (max-width: 1200px) {
  .main-category-card-swiper .card .card-content .card-title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}
/********* QUIZ *********/
.quiz-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .quiz-container {
    gap: 0;
  }
}
.quiz-container .section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .quiz-container .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.quiz-container .section-header .section-title {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.quiz-container .section-header .section-title h2 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 70.4px */
  letter-spacing: -1.28px;
  color: var(--grey-800);
}
@media screen and (max-width: 1200px) {
  .quiz-container .section-header .section-title h2 {
    font-size: 40px;
    letter-spacing: -0.8px;
  }
}
.quiz-container .section-header .section-title p {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  /* 31.2px */
  letter-spacing: 0.24px;
  color: var(--grey-600);
}
@media screen and (max-width: 1200px) {
  .quiz-container .section-header .section-title p {
    font-size: 18px;
    letter-spacing: 0.18px;
  }
}
@media screen and (max-width: 768px) {
  .quiz-group-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .quiz-swiper .swiper-controls {
    margin-top: 0;
  }
  .mid-card-group-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.quiz-card {
  display: flex;
  padding: 12px 12px 20px 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  flex: 1 0 0;
  border-radius: 32px;
}
@media screen and (max-width: 768px) {
  .quiz-card {
    padding: 8px;
    border-radius: 20px;
    gap: 12px;
  }
}
.quiz-card figure {
  border-radius: 20px;
  aspect-ratio: 266/311;
  width: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .quiz-card figure {
    aspect-ratio: 146/194;
  }
}
.quiz-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quiz-card h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 44px;
}
@media screen and (max-width: 768px) {
  .quiz-card h3 {
    font-size: 16px;
    letter-spacing: -0.32px;
    height: unset;
    -webkit-line-clamp: unset;
  }
}
.quiz-card.pink {
  border: 1px solid #FFDDE7;
  background: #FFEEF3;
  color: #96125A;
}
.quiz-card.yellow {
  border: 1px solid #FDEBC8;
  background: #FEF7E9;
  color: #946810;
}
.quiz-card.green {
  border: 1px solid #CEF7F6;
  background: #EBFCFB;
  color: #008986;
}
.quiz-card.violet {
  border: 1px solid #DCDAFB;
  background: #F5F4FE;
  color: #4D4A93;
}
.quiz-card.blue {
  border: 1px solid #B9E4FE;
  background: #EAF4FA;
  color: #1D5678;
}
/********* TRENDING *********/
.trend-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: normal;
  padding: 24px 48px;
  border-radius: 100px;
  background: var(--pink-600);
}
@media screen and (max-width: 1200px) {
  .trend-header {
    padding: 16px 24px;
  }
}
.trend-header.blue {
  background: #2A539C;
}
.trend-header h3 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 39.6px */
  letter-spacing: -0.72px;
  color: var(--white);
  display: flex;
  white-space: nowrap;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .trend-header h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 19.8px */
    letter-spacing: -0.36px;
    white-space: unset;
  }
}
@media screen and (max-width: 1200px) {
  .trend-header .btn {
    padding: 10px 20px !important;
    font-size: 12px;
  }
  .trend-header .btn i {
    font-size: 14px;
  }
}
.trend-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.trend-item .hot-content {
  position: absolute;
  top: 8px;
  right: 9.2px;
  border-radius: 100%;
  background: #fff url("../img/icons/hot-icon.svg") no-repeat center;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.trend-item figure {
  border-radius: 32px;
  aspect-ratio: 29/18;
  width: 100%;
  position: relative;
  margin: 0;
  overflow: hidden;
  box-shadow: 0px 3px 15.5px 0px rgba(0, 0, 0, 0.25);
}
.trend-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.trend-item .date {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.12px;
  color: var(--grey-600);
}
@media screen and (max-width: 1200px) {
  .trend-item .date {
    font-size: 10px;
    letter-spacing: -0.2px;
  }
}
.trend-item h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.12px;
  color: var(--grey-800);
}
@media screen and (max-width: 1200px) {
  .trend-item h3 {
    font-size: 16px;
    line-height: 110%;
    /* 17.6px */
    letter-spacing: -0.32px;
    margin-top: -12px;
  }
}
/********* Page Loader Progress *********/
.page-loader {
  display: none;
  margin-top: 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
@media screen and (max-width: 1200px) {
  .page-loader {
    display: none;
  }
}
.page-loader .progress-bar {
  width: 100%;
  height: 12px;
  background: var(--grey-100);
  border-radius: 0;
  position: relative;
  overflow: hidden;
}
.page-loader .progress-bar .progress-bar-active {
  width: 0;
  height: 100%;
  background: var(--pink-600, #EB1B8C);
  border-radius: 0 30px 30px 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: width 0.2s linear;
  /* Daha akıcı genişleme efekti */
}
/*********** Breadcrumb *********/
/*********** Breadcrumb *********/
.breadcrumb {
  display: flex;
  padding: 6px 0;
  align-items: center;
  z-index: 2;
  position: relative;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.breadcrumb::-webkit-scrollbar {
  display: none;
}
.breadcrumb li {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.breadcrumb li a {
  max-width: 50ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--grey-600, #526077);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.24px;
  padding: 6px 7px;
  text-transform: uppercase;
}
.breadcrumb li.active a {
  color: var(--pink-50, #FEF1F9);
  font-weight: 700;
  border-radius: 100px;
  background: var(--grey-900, #343A46);
}
.breadcrumb li + li:before {
  background: var(--grey-600, #526077);
  width: 5px;
  height: 5.267px;
  border-radius: 100px;
  display: inline-block;
  content: '';
  margin-right: 5px;
}
/********* Category Page *********/
.category-page {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .category-page .main-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    overflow: hidden;
  }
  .category-page .main-category-grid .main-category-card {
    display: flex;
    flex-direction: column;
  }
  .category-page .main-category-grid .card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    height: unset;
  }
  .category-page .main-category-grid .card figure {
    aspect-ratio: 166/156;
    height: 156px;
    width: 100%;
  }
  .category-page .big-card-section .first-column {
    padding-bottom: 0;
    gap: 0 48px;
  }
}
@media screen and (min-width: 1920px) {
  .category-page {
    padding: 0 170px 0  70px;
  }
}
.category-page .sidebar {
  display: none;
}
@media screen and (min-width: 1200px) {
  .category-page .sidebar {
    display: flex;
    width: max-content;
    min-width: 252px;
    padding-right: 24px;
    white-space: nowrap;
    position: -webkit-sticky;
    position: sticky;
    top: 180px;
    align-self: flex-start;
    z-index: 3;
    max-height: calc(100vh - 180px - 24px);
    overflow-y: auto;
  }
  .category-page .sidebar::-webkit-scrollbar {
    display: none;
  }
}
.category-page .sidebar .sidebar-title {
  color: var(--grey800, #3A4252);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
  margin-bottom: 20px;
}
.category-page .sidebar .sidebar-categories {
  border-radius: 32px;
  background: var(--pink-50, #FEF1F9);
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: stretch;
}
.category-page .sidebar .sidebar-categories ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.category-page .sidebar .sidebar-categories ul li {
  display: flex;
  padding: 17px 20px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  color: var(--grey-900, #343A46);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
}
.category-page .sidebar .sidebar-categories ul li.has-sub.active,
.category-page .sidebar .sidebar-categories ul li.active {
  border-radius: 32px;
  background: #FFF;
  color: var(--pink-600, #EB1B8C);
}
.category-page .sidebar .sidebar-categories ul li.has-sub.active:after,
.category-page .sidebar .sidebar-categories ul li.active:after {
  content: '\e90c';
  font-family: 'icomoon';
  font-size: 24px;
}
.category-page .sidebar .sidebar-categories ul li:hover {
  border-radius: 32px;
  background: #FFF;
  color: var(--pink-600, #EB1B8C);
}
.category-page .sidebar .sidebar-subcategories {
  border-radius: 32px;
  background: var(--pink-50, #FEF1F9);
  display: flex;
  padding: 12px;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  align-self: baseline;
  margin-left: 20px;
  margin-top: 52px;
}
.category-page .sidebar .sidebar-subcategories .sub-menu {
  display: none;
}
.category-page .sidebar .sidebar-subcategories .open-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 32px;
  padding: 17px 20px;
  align-self: stretch;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
}
.category-page .sidebar .sidebar-subcategories .open-sub:hover,
.category-page .sidebar .sidebar-subcategories .open-sub.active {
  background: #FFF;
  color: var(--pink-600, #EB1B8C);
}
.category-page .sidebar .sidebar-subcategories .open-sub.active + .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 100%;
  background: #fff;
  margin: 8px 0;
  border-radius: 24px;
}
.category-page .sidebar .sidebar-subcategories .open-sub.active + .sub-menu li {
  padding: 12px;
  align-self: stretch;
  color: var(--grey-900, #343A46);
}
.category-page .sidebar .sidebar-subcategories .open-sub.active + .sub-menu li a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Nunito;
  font-size: 13.3px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 14.63px */
  letter-spacing: -0.266px;
}
.category-page .sidebar .sidebar-subcategories img {
  width: 20px;
  height: 20px;
}
.category-page .category-content {
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  z-index: 2;
}
@media screen and (min-width: 1200px) {
  .category-page .category-content {
    width: calc(100% - var(--sidebar-width-1) - 49px);
    padding: 30px;
  }
}
@media screen and (min-width: 1920px) {
  .category-page .category-content {
    width: calc(100% - var(--sidebar-width-1));
  }
}
.category-page h1 {
  color: var(--grey-700, #434E61);
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -1.28px;
}
@media screen and (max-width: 768px) {
  .category-page h1 {
    font-size: 40px;
    letter-spacing: -0.8px;
  }
}
.category-page h2 {
  color: var(--grey-700, #434E61);
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 61.6px */
  letter-spacing: -1.12px;
}
@media screen and (max-width: 768px) {
  .category-page h2 {
    font-size: 32px;
    letter-spacing: -0.64px;
  }
}
.category-page .category-weekly-pregnacy {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (min-width: 1920px) {
  .category-page .category-weekly-pregnacy .tabs-buttons {
    padding: 0 160px;
  }
}
.category-page .category-weekly-pregnacy .weekly-swiper .swiper-slide {
  aspect-ratio: 134/138;
  width: 100%;
  height: 138px;
  border-radius: 20px;
  border: 2px solid var(--grey-100);
  background: #FFF;
  display: flex;
  padding: 20px 20px 17px 20px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  flex: 1 0 0;
}
@media screen and (max-width: 768px) {
  .category-page .category-weekly-pregnacy .weekly-swiper .swiper-slide {
    aspect-ratio: 98.3/101;
    height: 101px;
    width: 100%;
    padding: 16px 16px 0 16px;
  }
}
.category-page .category-weekly-pregnacy .weekly-swiper .swiper-slide span {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 19.8px */
  letter-spacing: -0.36px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .category-page .category-weekly-pregnacy .weekly-swiper .swiper-slide span {
    font-size: 12px;
    letter-spacing: -0.24px;
  }
}
.category-page .category-weekly-pregnacy .weekly-swiper .swiper-slide span:before {
  content: 'GEBELİKTE';
  color: #BC1670;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 13.2px */
  letter-spacing: -0.24px;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .category-page .category-weekly-pregnacy .weekly-swiper .swiper-slide span:before {
    font-size: 10px;
    letter-spacing: -0.2px;
  }
}
.category-page.category-inner-page h2 {
  font-size: 54px;
}
@media screen and (min-width: 1200px) {
  .category-page.category-inner-page .category-content {
    width: calc(100% - var(--sidebar-width-2) - 77px);
  }
}
@media screen and (min-width: 1920px) {
  .category-page.category-inner-page .category-content {
    width: calc(100% - var(--sidebar-width-2));
  }
}
@media screen and (min-width: 1200px) {
  .category-page.category-inner-page .sidebar {
    min-width: 413px;
  }
}
.single-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-top: 48px;
}
.single-content .sidebar {
  display: none;
}
@media screen and (min-width: 1200px) {
  .single-content .sidebar {
    display: flex;
    width: 100%;
    padding-right: 24px;
    white-space: nowrap;
    flex-direction: column;
    max-width: 370px;
    gap: 20px;
    box-sizing: border-box;
  }
}
.single-content .sidebar .sidebar-title {
  color: var(--grey800, #3A4252);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
  margin-bottom: 20px;
}
.single-content .sidebar .sidebar-tools {
  border-radius: 24px;
  border: 1px solid var(--grey-100, #ECEEF2);
  background: #FFF;
  display: flex;
  width: 100%;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}
.single-content .sidebar .sidebar-tools .tool {
  display: flex;
  border-radius: 32px;
  height: 238px;
  padding: 32px 20px 20px 20px;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.single-content .sidebar .sidebar-tools .tool .title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.48px;
  color: var(--grey-800, #3A4252);
  width: 100%;
  max-width: 145px;
  white-space: normal;
}
.single-content .sidebar .sidebar-tools .tool p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
  color: var(--grey-800, #3A4252);
  width: 100%;
  max-width: 145px;
  white-space: normal;
  margin-top: 8px;
}
@media screen and (max-width: 1200px) {
  .single-content .sidebar .sidebar-tools .tool .title {
    font-size: 20px;
    max-width: unset;
  }
  .single-content .sidebar .sidebar-tools .tool p {
    font-size: 14px;
    max-width: unset;
  }
}
.single-content .sidebar .sidebar-tools .tool img {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.single-content .content {
  width: 100%;
  max-width: 100%;
  background: #fff;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .single-content .content {
    max-width: calc(100% - var(--sidebar-width-3));
    width: 100%;
    padding: 60px;
    box-sizing: border-box;
    background: #fff;
  }
}
.single-content .content .article a {
  font-weight: 700;
  text-decoration: underline;
}
.single-content .content .article b,
.single-content .content .article strong {
  font-weight: 700;
}
.single-content .content .article table {
  border: 1px solid;
  border-collapse: collapse;
  width: unset !important;
  max-width: 100%;
}
.single-content .content .article table tr {
  border-bottom: 1px solid;
}
.single-content .content .article table tr td {
  border: 1px solid;
  padding: 5px;
}
.single-content .content .article .thumbnail {
  margin: 48px 0;
}
@media screen and (max-width: 1200px) {
  .single-content .content .article .thumbnail {
    margin: 0;
  }
}
.single-content h1 {
  color: var(--grey-700, #434E61);
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -1.28px;
}
@media screen and (max-width: 768px) {
  .single-content h1 {
    font-size: 40px;
    letter-spacing: -0.8px;
  }
}
.ads-area {
  border-radius: 24px;
  border: 2px solid #ECEEF2;
  background: #FFF;
  width: 100%;
  box-sizing: border-box;
  padding: 24px;
  overflow: hidden;
  display: block;
}
.ads-area img {
  width: 100%;
  border-radius: 24px;
}
.four-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
}
.four-grid.swiper-container {
  display: block;
}
.darken-item {
  position: relative;
  height: fit-content;
  display: block;
}
.darken-item figure {
  aspect-ratio: 261/173;
  width: 100%;
  position: relative;
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .darken-item figure {
    aspect-ratio: 160.42/155.71;
    width: 100%;
  }
}
.darken-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.darken-item figure:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(180deg, rgba(46, 46, 56, 0) 0%, rgba(46, 46, 56, 0.8) 72.62%);
}
.darken-item .content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  box-sizing: border-box;
  width: 100%;
  max-width: calc(100% - 48px);
}
.darken-item .content h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  color: var(--white);
}
.darken-item .content p,
.darken-item .content .category {
  display: none;
}
.sub-category-card-swiper {
  margin-top: 48px;
}
.sub-category-card-swiper .card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  border: 0;
  padding: 0;
}
.sub-category-card-swiper .card:before {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.2) 100%), linear-gradient(0deg, rgba(101, 73, 226, 0.2) 0%, rgba(101, 73, 226, 0.2) 100%);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.sub-category-card-swiper .card figure {
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  box-sizing: border-box;
}
.sub-category-card-swiper .card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sub-category-card-swiper .card .card-content {
  position: absolute;
  bottom: 48px;
  padding: 0 24px;
}
@media screen and (max-width: 1200px) {
  .sub-category-card-swiper .card .card-content {
    bottom: 20px;
  }
}
.sub-category-card-swiper .card .card-content .card-title {
  color: #FFF;
  text-align: center;
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.88px;
}
@media screen and (max-width: 1200px) {
  .sub-category-card-swiper .card .card-content .card-title {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}
.trimester-card-item {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  border-radius: 20px;
  border: 2px solid var(--grey-100);
  background: #FFF;
  padding: 20px 20px 17px 20px;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 0 0;
  cursor: pointer;
}
.trimester-card-item .title {
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 1200px) {
  .trimester-card-item {
    padding: 16px 16px 11.5px 16px;
    margin-right: 10px;
  }
  .trimester-card-item img {
    width: 37px;
  }
}
.trimester-card-item h3 {
  color: #BC1670;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 19.8px */
  letter-spacing: -0.18px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .trimester-card-item h3 {
    font-size: 12px;
    letter-spacing: -0.28px;
  }
}
.trimester-card-item h3:before {
  content: 'GEBELİKTE';
  color: #BC1670;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 13.2px */
  letter-spacing: -0.12px;
  opacity: 0.8;
}
@media screen and (max-width: 1200px) {
  .trimester-card-item h3:before {
    font-size: 10px;
    letter-spacing: -0.2px;
  }
}
.trimester-card-item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
  color: var(--grey-700);
}
.trimester-swiper .swiper-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 12px;
}
.trimester-page h1 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 70.4px */
  margin-bottom: 32px;
  letter-spacing: -1.28px;
}
@media screen and (max-width: 1200px) {
  .trimester-page h1 {
    margin-bottom: 32px;
  }
}
.trimester-page .description {
  margin-bottom: 48px;
}
.trimester-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  margin-bottom: 64px;
}
@media screen and (max-width: 1200px) {
  .trimester-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .article {
    padding-bottom: 80px;
  }
}
.article .content-cover .article-meta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.article .content-cover .article-meta .excerpt {
  margin: 16px 24px;
  padding: 10px 18px;
  background: #fff;
  border-radius: 16px;
  font-size: 20px;
  line-height: 24px;
  color: var(--pink-500);
}
.article .content-cover .article-meta .excerpt p {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  /* number of lines to show */
  line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.article .content-cover .article-meta ul {
  margin: 20px 20px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.article .content-cover .article-meta ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey-700, #434E61);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.3px;
}
.article .content-cover .article-meta ul li b {
  font-weight: 700;
}
.article .content-cover .article-meta ul li i {
  width: 20px;
  height: 20px;
  border-radius: 109.091px;
  border: 0.545px solid #EB1B8C;
  background: #FFF;
  color: #EB1B8C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .article .content-cover .article-meta {
    position: relative;
  }
  .article .content-cover .article-meta:after,
  .article .content-cover .article-meta:before {
    display: none;
  }
  .article .content-cover .article-meta .excerpt {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  .article .content-cover {
    display: grid;
    grid-template-columns: 52.9% 45.5%;
    gap: 20px;
    margin: 48px 0;
  }
  .article .content-cover figure {
    position: relative;
    aspect-ratio: 640/360;
    overflow: hidden;
    border-radius: 32px;
  }
  .article .content-cover figure.thumbnail {
    margin: 0 !important;
  }
  .article .content-cover figure.thumbnail img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
  }
  .article .content-cover .article-meta {
    background: var(--grey-50, #F6F7F9);
    border-radius: 32px;
  }
}
@media screen and (min-width: 1200px) and screen and (max-width: 768px) {
  .article .content-cover figure.thumbnail img {
    border-radius: 20px;
  }
}
.article .weekly-navigator {
  margin: 32px 0 48px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid var(--grey-100);
  background: var(--grey-50);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .article .weekly-navigator--desktop {
    display: none;
  }
}
.article .weekly-navigator__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .article .weekly-navigator__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.article .weekly-navigator__header-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.article .weekly-navigator__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink-600);
}
.article .weekly-navigator__current {
  font-size: 22px;
  font-weight: 700;
  color: var(--grey-800);
  letter-spacing: -0.4px;
}
@media screen and (max-width: 768px) {
  .article .weekly-navigator__current {
    font-size: 18px;
  }
}
.article .weekly-navigator__header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .article .weekly-navigator__header-actions {
    width: 100%;
    justify-content: space-between;
  }
}
.article .weekly-navigator__selector {
  position: relative;
}
.article .weekly-navigator__selector-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 20px;
  border: 1.5px solid var(--pink-200);
  background: linear-gradient(135deg, var(--pink-50) 0%, rgba(255, 235, 245, 0.8) 100%);
  color: var(--pink-700);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 110px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(255, 58, 172, 0.08);
}
.article .weekly-navigator__selector-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.5s ease;
}
.article .weekly-navigator__selector-btn:hover,
.article .weekly-navigator__selector-btn:focus {
  background: linear-gradient(135deg, var(--pink-100) 0%, rgba(255, 200, 230, 0.9) 100%);
  border-color: var(--pink-300);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 58, 172, 0.15);
}
.article .weekly-navigator__selector-btn:hover::before,
.article .weekly-navigator__selector-btn:focus::before {
  left: 100%;
}
.article .weekly-navigator__selector-btn:hover .weekly-navigator__selector-icon,
.article .weekly-navigator__selector-btn:focus .weekly-navigator__selector-icon {
  transform: rotate(180deg);
}
.article .weekly-navigator__selector-btn:active {
  transform: translateY(0);
}
.article .weekly-navigator__selector-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.article .weekly-navigator__selector-current {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.3px;
}
.article .weekly-navigator__selector-icon {
  font-size: 12px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.8;
}
.article .weekly-navigator__selector-dropdown {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 320px;
  max-height: 400px;
  background: var(--white);
  border-radius: 24px;
  border: 1.5px solid var(--pink-100);
  box-shadow: 0 20px 60px rgba(255, 58, 172, 0.15), 0 0 0 1px rgba(255, 58, 172, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.article .weekly-navigator__selector-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.article .weekly-navigator__selector-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--pink-100);
  background: linear-gradient(135deg, var(--pink-50) 0%, rgba(255, 235, 245, 0.5) 100%);
}
.article .weekly-navigator__selector-header span {
  font-weight: 700;
  font-size: 14px;
  color: var(--pink-700);
  letter-spacing: -0.2px;
}
.article .weekly-navigator__selector-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--pink-100);
  color: var(--pink-600);
  cursor: pointer;
  transition: all 0.2s ease;
}
.article .weekly-navigator__selector-close:hover {
  background: var(--pink-50);
  border-color: var(--pink-200);
  color: var(--pink-700);
  transform: rotate(90deg);
}
.article .weekly-navigator__selector-close i {
  font-size: 16px;
}
.article .weekly-navigator__selector-list {
  max-height: 320px;
  overflow-y: auto;
  padding: 12px;
}
.article .weekly-navigator__selector-list::-webkit-scrollbar {
  width: 6px;
}
.article .weekly-navigator__selector-list::-webkit-scrollbar-track {
  background: var(--grey-50);
  border-radius: 999px;
}
.article .weekly-navigator__selector-list::-webkit-scrollbar-thumb {
  background: var(--pink-200);
  border-radius: 999px;
}
.article .weekly-navigator__selector-list::-webkit-scrollbar-thumb:hover {
  background: var(--pink-300);
}
.article .weekly-navigator__selector-item {
  display: block;
  padding: 12px 16px;
  border-radius: 14px;
  color: var(--grey-700);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 4px;
  position: relative;
}
.article .weekly-navigator__selector-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 0;
  background: var(--pink-500);
  border-radius: 0 3px 3px 0;
  transition: height 0.25s ease;
}
.article .weekly-navigator__selector-item:hover,
.article .weekly-navigator__selector-item:focus {
  background: linear-gradient(90deg, var(--pink-50) 0%, rgba(255, 235, 245, 0.5) 100%);
  color: var(--pink-700);
  padding-left: 20px;
  transform: translateX(2px);
}
.article .weekly-navigator__selector-item:hover::before,
.article .weekly-navigator__selector-item:focus::before {
  height: 60%;
}
.article .weekly-navigator__selector-item.is-current {
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--pink-600) 100%);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 58, 172, 0.25);
  padding-left: 20px;
}
.article .weekly-navigator__selector-item.is-current::before {
  height: 60%;
  background: var(--white);
  opacity: 0.3;
}
.article .weekly-navigator__selector-item.is-current:hover {
  background: linear-gradient(135deg, var(--pink-600) 0%, var(--pink-700) 100%);
  box-shadow: 0 6px 16px rgba(255, 58, 172, 0.3);
}
.article .weekly-navigator__nav-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.article .weekly-navigator__nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--pink-200);
  background: var(--white);
  color: var(--pink-600);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .article .weekly-navigator__nav-btn {
    padding: 10px 14px;
    font-size: 13px;
  }
}
.article .weekly-navigator__nav-btn i {
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .article .weekly-navigator__nav-btn i {
    font-size: 14px;
  }
}
.article .weekly-navigator__nav-btn:hover,
.article .weekly-navigator__nav-btn:focus {
  background: var(--pink-50);
  border-color: var(--pink-300);
  color: var(--pink-700);
  transform: translateY(-1px);
}
.article .weekly-navigator__nav-btn--disabled {
  pointer-events: none;
  opacity: 0.4;
  cursor: not-allowed;
}
@media screen and (max-width: 480px) {
  .article .weekly-navigator__nav-btn-text {
    display: none;
  }
}
.article .weekly-navigator__all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--pink-200);
  background: var(--white);
  color: var(--pink-600);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
}
@media screen and (max-width: 768px) {
  .article .weekly-navigator__all {
    padding: 10px 16px;
    font-size: 13px;
  }
}
.article .weekly-navigator__all:hover,
.article .weekly-navigator__all:focus {
  background: var(--pink-50);
  border-color: var(--pink-300);
  color: var(--pink-700);
}
.article .weekly-navigator__all[aria-disabled="true"] {
  pointer-events: none;
  opacity: 0.6;
}
.article .weekly-navigator__groups {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media screen and (max-width: 992px) {
  .article .weekly-navigator__groups {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .article .weekly-navigator__groups::-webkit-scrollbar {
    height: 6px;
  }
  .article .weekly-navigator__groups::-webkit-scrollbar-thumb {
    background: var(--grey-200);
    border-radius: 999px;
  }
}
.article .weekly-navigator__group {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--grey-100);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (max-width: 992px) {
  .article .weekly-navigator__group {
    min-width: 260px;
    scroll-snap-align: start;
  }
}
.article .weekly-navigator__group.is-active {
  border-color: var(--pink-300);
  box-shadow: 0 12px 24px rgba(255, 58, 172, 0.12);
}
.article .weekly-navigator__group-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--grey-800);
  margin: 0;
}
@media screen and (max-width: 768px) {
  .article .weekly-navigator__group-title {
    font-size: 16px;
  }
}
.article .weekly-navigator__weeks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.article .weekly-navigator__week {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 14px;
  background: var(--grey-50);
  color: var(--grey-700);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.article .weekly-navigator__week:hover,
.article .weekly-navigator__week:focus {
  background: var(--pink-100);
  color: var(--pink-700);
  transform: translateY(-1px);
}
.article .weekly-navigator__week.is-current {
  background: var(--pink-500);
  color: var(--white);
  box-shadow: 0 8px 16px rgba(255, 58, 172, 0.2);
}
.article .weekly-nav-bar--desktop {
  position: relative;
  margin: 32px 0 48px;
  padding: 20px 24px;
  border-radius: 24px;
  border: 1px solid var(--pink-100);
  background: linear-gradient(135deg, var(--pink-50) 0%, rgba(255, 235, 245, 0.5) 100%);
  box-shadow: 0 4px 20px rgba(255, 58, 172, 0.08);
}
@media screen and (max-width: 1200px) {
  .article .weekly-nav-bar--desktop {
    display: none;
  }
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__container {
  padding: 0;
  gap: 16px;
  align-items: flex-start;
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__btn {
  width: 60px;
  height: 56px;
  box-sizing: border-box;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid var(--pink-200);
  box-shadow: 0 2px 8px rgba(255, 58, 172, 0.1);
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__btn i {
  font-size: 20px;
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__btn:hover {
  background: var(--pink-100);
  border-color: var(--pink-300);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 58, 172, 0.15);
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__btn--disabled {
  opacity: 0.4;
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__weeks-scroll {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-200) transparent;
  padding-bottom: 8px;
  margin-bottom: -8px;
  padding-top: 2px;
  margin-top: -2px;
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__weeks-scroll::-webkit-scrollbar {
  height: 6px;
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__weeks-scroll::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__weeks-scroll::-webkit-scrollbar-thumb {
  background: var(--pink-200);
  border-radius: 999px;
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__weeks-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--pink-300);
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__weeks-list {
  gap: 10px;
  padding: 0;
  align-items: center;
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__week-item {
  min-width: 60px;
  min-height: 56px;
  box-sizing: border-box;
  padding: 8px 12px;
  border-radius: 14px;
  background: var(--white);
  border: 1.5px solid var(--pink-100);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__week-item:hover {
  background: var(--pink-50);
  border-color: var(--pink-200);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 58, 172, 0.1);
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__week-item.is-current {
  background: linear-gradient(135deg, var(--pink-500) 0%, var(--pink-600) 100%);
  border-color: var(--pink-500);
  box-shadow: 0 6px 20px rgba(255, 58, 172, 0.25);
  transform: none;
  position: relative;
  z-index: 1;
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__week-item.is-current:hover {
  background: linear-gradient(135deg, var(--pink-600) 0%, var(--pink-700) 100%);
  box-shadow: 0 8px 24px rgba(255, 58, 172, 0.3);
  transform: translateY(-2px);
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__week-number {
  font-size: 16px;
}
.article .weekly-nav-bar--desktop .weekly-nav-bar__week-label {
  font-size: 11px;
}
.article .weekly-nav-bar--mobile {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
}
@media screen and (min-width: 1201px) {
  .article .weekly-nav-bar--mobile {
    display: none;
  }
}
.article .weekly-nav-bar__container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 12px;
  max-width: 100%;
}
.article .weekly-nav-bar__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 44px;
  box-sizing: border-box;
  border-radius: 10px;
  background: var(--grey-50);
  color: var(--pink-600);
  text-decoration: none !important;
  transition: all 0.2s ease;
  flex-shrink: 0;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
.article .weekly-nav-bar__btn i {
  font-size: 18px;
  line-height: 1;
}
.article .weekly-nav-bar__btn:active {
  background: var(--pink-50);
  color: var(--pink-700);
  transform: scale(0.95);
}
.article .weekly-nav-bar__btn--disabled {
  pointer-events: none;
  opacity: 0.3;
  cursor: not-allowed;
}
.article .weekly-nav-bar__weeks-scroll {
  flex: 1;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.article .weekly-nav-bar__weeks-scroll::-webkit-scrollbar {
  display: none;
}
.article .weekly-nav-bar__weeks-list {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 4px;
  min-width: max-content;
}
.article .weekly-nav-bar__week-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  min-height: 44px;
  box-sizing: border-box;
  padding: 6px 8px;
  border-radius: 10px;
  background: var(--grey-50);
  color: var(--grey-700);
  font-weight: 600;
  text-decoration: none !important;
  text-align: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
  gap: 2px;
}
.article .weekly-nav-bar__week-item:active {
  background: var(--pink-50);
  color: var(--pink-700);
  transform: scale(0.95);
}
.article .weekly-nav-bar__week-item.is-current {
  background: var(--pink-500);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 58, 172, 0.3);
}
.article .weekly-nav-bar__week-number {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}
.article .weekly-nav-bar__week-label {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  opacity: 0.9;
}
.article .table-list .title {
  border-radius: 30px;
  border: 2px solid var(--grey-100, #ECEEF2);
  background: #FFF;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 30.8px */
  letter-spacing: -0.56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  cursor: pointer;
  margin-bottom: 22px;
}
.article .table-list .title:after {
  border-radius: 100px;
  border: 1px solid var(--grey-900, #343A46);
  background: #FFF;
  content: "\e90a";
  font-family: 'icomoon';
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}
.article .table-list .list {
  display: none;
  padding: 24px 24px 24px 32px;
  border-radius: 30px;
  border: 2px solid #F5F4FE;
  background: #FFF;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .article .table-list .list {
    padding: 24px 16px;
  }
}
.article .table-list .list ul {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .article .table-list .list ul {
    gap: 16px;
  }
}
.article .table-list .list ul li {
  display: flex;
  align-items: center;
  color: var(--grey-700, #434E61);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.48px;
}
@media screen and (max-width: 768px) {
  .article .table-list .list ul li {
    font-size: 16px;
  }
}
.article .table-list .list ul li a {
  text-decoration: unset !important;
}
.article .table-list .list ul li:after {
  content: "\e900";
  transform: rotate(45deg);
  font-family: 'icomoon';
  font-size: 24px;
  margin-left: auto;
  color: var(--grey-700, #434E61);
}
@media screen and (max-width: 768px) {
  .article .table-list .list ul li:after {
    font-size: 16px;
  }
}
.article .table-list.active .title:after {
  box-shadow: 0px 0px 0px 2px rgba(235, 27, 140, 0.2);
  transform: rotate(180deg);
}
.article .table-list.active .list {
  display: block;
}
.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--grey-800, #434E61);
}
.article h2 {
  font-size: 36px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 110% !important;
  letter-spacing: -0.72px !important;
}
.article h3 {
  font-size: 28px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 110% !important;
  letter-spacing: -0.56px !important;
}
.article p {
  margin-bottom: 20px;
}
.article ul li {
  list-style: disc;
  margin-left: 16px;
  margin-bottom: 8px;
}
.tools-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 100%;
  margin-bottom: 100px;
  margin-top: 48px;
}
@media screen and (max-width: 1200px) {
  .tools-page-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 12px;
    grid-row-gap: 20px;
  }
}
.tools-page-grid .tool {
  display: flex;
  padding: 32px 20px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  flex: 1 0 0;
  border-radius: 32px;
  text-align: center;
}
.tools-page-grid .tool figure {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tools-page-grid .tool figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tools-page-grid .tool h3 {
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.48px;
  color: var(--grey-800, #434E61);
}
.tools-page-grid .tool p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
  color: var(--grey-900, #343A46);
}
.tool-card {
  display: flex;
  border-radius: 32px;
  height: 238px;
  padding: 32px 20px 20px 20px;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.tool-card .title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.48px;
  color: var(--grey-800, #3A4252);
  width: 100%;
  max-width: 145px;
  white-space: normal;
}
.tool-card p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
  color: var(--grey-800, #3A4252);
  width: 100%;
  max-width: 145px;
  white-space: normal;
  margin-top: 8px;
}
@media screen and (max-width: 1200px) {
  .tool-card .title {
    font-size: 20px;
    max-width: unset;
  }
  .tool-card p {
    font-size: 14px;
    max-width: unset;
  }
}
.tool-card img {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.single-tool .tool-header {
  margin: 48px 0;
  display: flex;
  padding: 60px 20px;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  border-radius: 32px;
  justify-content: center;
  text-align: center;
}
.single-tool .tool-header .tool-icon {
  display: flex;
  width: 120px;
  height: 120px;
  padding: 9px 12.29px 13.585px 10.294px;
  justify-content: center;
  align-items: center;
}
.single-tool .tool-header .tool-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.single-tool .tool-header .single-tool-title {
  color: var(--grey-700, #434E61);
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 70.4px */
  letter-spacing: -1.28px;
  margin: 0;
}
.single-tool .tool-header .single-tool-description {
  max-width: 681px;
  margin: 24px auto;
}
.single-tool .tool-header .tool-calculator {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 364px;
  box-sizing: border-box;
}
.single-tool .tool-header .tool-calculator.w-100 {
  max-width: 100%;
}
.single-tool .tool-header .tool-calculator .form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}
.single-tool .tool-header .tool-calculator .form-group label {
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
  color: var(--grey-700, #434E61);
}
.single-tool .tool-header .tool-calculator .form-group .input-group {
  position: relative;
}
.single-tool .tool-header .tool-calculator .form-group .input-group .input-group-append {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
}
.single-tool .tool-header .tool-calculator .form-group .input-group .input-group-append .icon {
  font-size: 24px;
}
.single-tool .tool-header .tool-calculator .form-group input {
  outline: none;
  background: #FFF;
  border-radius: 20px;
  border: 1px solid var(--Gebe_Grey-100, #ECEEF2);
  padding: 0 16px;
  height: 48px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
  color: var(--grey-900, #343A46);
  width: -webkit-fill-available;
  width: -moz-fill-available;
}
.single-tool .tool-header .tool-calculator .form-group input::placeholder {
  color: var(--grey-600);
}
.single-tool .tool-header .tool-calculator .calculate-btn img {
  width: 24px;
  height: 24px;
}
.single-tool .tool-header .retry-btn img {
  width: 24px;
  height: 24px;
}
.single-tool .tool-header .sub-title {
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 30.8px */
  letter-spacing: -0.56px;
  color: var(--grey-700, #434E61);
}
.single-tool .article .article-meta ul {
  margin: 48px 0;
  display: flex;
  gap: 16px;
  width: 50%;
  flex-wrap: wrap;
}
@media screen and (max-width: 1200px) {
  .single-tool .article .article-meta ul {
    width: 100%;
  }
}
.single-tool .article .article-meta ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--grey-700, #434E61);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  letter-spacing: -0.3px;
}
.single-tool .article .article-meta ul li b {
  font-weight: 700;
}
.single-tool .article .article-meta ul li i {
  width: 20px;
  height: 20px;
  border-radius: 109.091px;
  border: 0.545px solid #EB1B8C;
  background: #FFF;
  color: #EB1B8C;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.baby-name-suggestion {
  border-radius: 30px;
  border: 2px solid #F5F4FE;
  background: #FFF;
  display: flex;
  padding: 24px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}
.baby-name-suggestion .title {
  color: var(--grey-800, #3A4252);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 39.6px */
  letter-spacing: -0.72px;
}
.baby-name-suggestion .baby-name-categories {
  overflow-x: auto;
  width: 100%;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer and Edge */
}
.baby-name-suggestion .baby-name-categories::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, and Opera */
}
.baby-name-suggestion .baby-name-categories ul {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
}
.baby-name-suggestion .baby-name-categories ul li {
  border-radius: 200px;
  border: 1px solid var(--grey-100, #ECEEF2);
  background: var(--grey-50, #F6F7F9);
  white-space: nowrap;
  padding: 8px 14px;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.3px;
  color: var(--grey-800, #3A4252);
}
.baby-name-suggestion .baby-name-categories ul li:hover,
.baby-name-suggestion .baby-name-categories ul li.active {
  border-radius: 30px;
  background: linear-gradient(133deg, #8BFFF2 6.08%, #FCE18C 94.72%);
  font-weight: 700;
}
.baby-name-suggestion .baby-name-categories.cat-colors ul li:hover,
.baby-name-suggestion .baby-name-categories.cat-colors ul li.active {
  background: linear-gradient(133deg, #C8CCFD 6.08%, #FEE5F5 94.72%);
}
.baby-name-suggestion .baby-names-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 1200px) {
  .baby-name-suggestion .baby-names-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.baby-name-suggestion .baby-names-grid .baby-name-card {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: flex-start;
  text-align: left;
  gap: 8px;
  border-radius: 20px;
  border: 2px solid #ECEEF2;
  background: #FFF;
  padding: 20px;
}
.baby-name-suggestion .baby-names-grid .baby-name-card .name {
  color: var(--violet-800, #4732A1);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.18px;
}
.baby-name-suggestion .baby-names-grid .baby-name-card .meaning {
  color: var(--grey-700, #434E61);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
}
.tool-trimester-title {
  font-size: 56px !important;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 61.6px */
  letter-spacing: -1.12px;
}
.gender-flex {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: 100%;
}
.gender-flex .gender {
  border-radius: 20px;
  border: 1px solid var(--grey-100, #ECEEF2);
  background: #FFF;
  display: flex;
  height: 48px;
  align-items: center;
  gap: 8px;
  width: 50%;
}
.gender-flex .gender.active,
.gender-flex .gender:hover {
  background: var(--cyan-50, #E0FDFB);
}
@media screen and (max-width: 1200px) {
  .gender-flex {
    flex-direction: column;
  }
  .gender-flex .gender {
    width: 100%;
  }
}
.alphabetical-filter {
  width: 100%;
  border-radius: 12px;
  display: flex;
  flex-direction: row;
  padding: 12px 24px;
  align-items: center;
  gap: 14px;
  align-self: stretch;
  background: var(--violet-50, #EEF0FF);
  overflow-x: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer and Edge */
  height: 54px;
  box-sizing: border-box;
}
.alphabetical-filter::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, and Opera */
}
.alphabetical-filter a {
  display: flex;
  height: 30px;
  width: 30px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex: 1 0 0;
  color: var(--grey-600, #526077);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
  cursor: pointer;
}
.alphabetical-filter a.active,
.alphabetical-filter a:hover {
  border-bottom: 1px solid var(--grey-900, #343A46);
}
.dictionary-swiper {
  overflow: hidden;
  width: 100%;
}
.dictionary-swiper .swiper-slide {
  display: flex;
  aspect-ratio: 1/1;
  width: 44px;
  height: 44px;
}
.dictionary-swiper .swiper-slide a {
  display: flex;
  padding: 8px 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 12px;
  border: 1px solid var(--grey-600, #526077);
  background: #FFF;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.32px;
  color: var(--grey-600, #526077);
}
@media screen and (min-width: 1200px) {
  .dictionary-swiper .swiper-wrapper {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .dictionary-swiper .swiper-controls {
    display: none;
  }
  .dictionary-swiper .swiper-slide {
    width: 82px;
    height: 86px;
    box-sizing: border-box;
  }
  .dictionary-swiper .swiper-slide a {
    font-size: 20px;
    letter-spacing: -0.4px;
  }
}
.dictionary-search .search-box {
  display: flex;
  height: 60px;
  padding: 13px 26px;
  box-sizing: border-box;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.dictionary-search .search-box input {
  outline: none;
  border: none;
  height: 100%;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
  color: var(--grey-900, #343A46);
  width: -webkit-fill-available;
  width: -moz-fill-available;
}
.dictionary-search .search-box input::placeholder {
  color: var(--grey-600, #526077);
}
.dictionary-search .search-results {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 48px 0;
}
.dictionary-search .search-results .item {
  position: relative;
  border-radius: 20px;
  border: 2px solid #ECEEF2;
  background: #FFF;
  display: flex;
  padding: 20px;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  box-sizing: border-box;
  flex-direction: column;
}
.dictionary-search .search-results .item .title {
  color: var(--cyan-800, #066969);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.18px;
  width: calc(100% - 60px);
}
.dictionary-search .search-results .item .description {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
  color: var(--grey-700, #434E61);
  width: calc(100% - 60px);
}
.dictionary-search .search-results .item .button {
  border-radius: 100px;
  border: 1px solid var(--grey-900, #343A46);
  background: #FFF;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 54px;
  height: 54px;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .dictionary-search .search-results .item .title {
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.12px;
    width: calc(100% - 52px);
  }
  .dictionary-search .search-results .item .description {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 15.6px */
    letter-spacing: 0.12px;
    width: calc(100% - 52px);
  }
  .dictionary-search .search-results .item .button {
    width: 44px;
    height: 44px;
    font-size: 14px;
  }
}
.custom-select {
  position: relative;
  height: unset;
}
.custom-select .select-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: relative;
  outline: none;
  background: #FFF;
  border-radius: 20px;
  border: 1px solid var(--Gebe_Grey-100, #ECEEF2);
  padding: 0 16px;
  height: 48px;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
  color: var(--grey-900, #343A46);
  width: -webkit-fill-available;
  width: -moz-fill-available;
}
.custom-select .select-trigger:after {
  content: "\e90a";
  font-family: 'icomoon';
  font-size: 20px;
  position: absolute;
  right: 16px;
}
.custom-select .select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 9999;
  border-radius: 20px;
  margin-top: 12px;
  background: white;
  display: none;
  padding: 12px;
}
.custom-select .select-options .scroll-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  overflow-y: auto;
  box-sizing: border-box;
  position: relative;
  gap: 8px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 156px;
}
.custom-select .select-options .scroll-wrapper::-webkit-scrollbar {
  width: 3px;
}
.custom-select .select-options .scroll-wrapper::-webkit-scrollbar-thumb {
  background: #bbb;
  border-radius: 24px;
}
.custom-select .select-options .scroll-wrapper::-webkit-scrollbar-track {
  background: transparent;
}
.custom-select .select-options .select-option {
  cursor: pointer;
  color: var(--Gebe_Grey-600, #526077);
  /* Label/Medium/Medium/Desktop */
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
  min-height: 28px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  width: 100%;
  box-sizing: border-box;
}
.custom-select .select-options .select-option:hover,
.custom-select .select-options .select-option.active {
  background: var(--pink-50, #FEF1F9);
}
.custom-select.open .select-options {
  display: flex;
  flex-direction: column;
}
.tool-calendar {
  margin-top: 20px;
  margin-bottom: 20px;
  display: none;
  padding: 16px 20px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  border-radius: 20px;
  border: 2px solid #ECEEF2;
  background: #FFF;
}
.multi-calendar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.calendar-header-title {
  color: var(--grey-700, #434E61);
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}
.calendar-header {
  color: var(--grey-700, #434E61);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
  padding: 8px 14px;
  width: 44px;
  height: 30px;
  box-sizing: border-box;
}
.calendar-day,
.empty {
  text-align: center;
  padding: 8px 14px;
  width: 44px;
  height: 30px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-400, #8695AA);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -0.3px;
}
.other-month {
  color: var(--grey-200, #BFC5D2);
}
.fertile-day {
  background-color: var(--cyan-50, #E0FDFB);
  border-radius: 12px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  color: var(--cyan-900, #066969);
}
.ovulation-day {
  background-color: var(--cyan-50, #E0FDFB);
  border-radius: 12px;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  color: var(--cyan-900, #066969);
}
.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.calendar-nav button {
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}
.gender-radio-button {
  width: 100%;
}
.gender-radio-button input {
  display: none;
}
.gender-radio-button input + label {
  display: flex;
  padding: 0 16px;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  align-self: stretch;
  border-radius: 20px;
  height: 48px;
  border: 1px solid var(--grey-100, #ECEEF2);
  background: var(--white);
  cursor: pointer;
}
.gender-radio-button input + label:before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/RadioButton.svg");
}
.gender-radio-button input:checked + label:before {
  background: url("../img/RadioButtonChecked.svg");
}
.bebek-asi-takvimi-detail {
  position: relative;
  flex-direction: column;
}
.bebek-asi-takvimi-detail::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../img/asi-takvimi-bg.png');
  background-size: 177%;
  background-position: top;
  opacity: 0.3;
  z-index: 0;
}
.bebek-asi-takvimi-detail > * {
  position: relative;
  z-index: 1;
}
.bebek-asi-takvimi-detail h3 {
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 70.4px */
  letter-spacing: -1.28px;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail h3 {
    font-size: 32px;
    font-style: normal;
    letter-spacing: -0.64px;
  }
}
.bebek-asi-takvimi-detail .period {
  display: flex;
  gap: 11.29%;
  flex-wrap: nowrap;
  align-items: center;
  height: 400px;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period {
    flex-direction: column;
    height: auto;
  }
}
.bebek-asi-takvimi-detail .period > div {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  box-sizing: border-box;
}
.bebek-asi-takvimi-detail .period > div.period-text {
  display: flex;
  flex-direction: column;
  background: #FFF;
  align-items: baseline;
}
.bebek-asi-takvimi-detail .period > div.period-text span {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 13.2px */
  letter-spacing: -0.24px;
  color: var(--grey-600, #526077);
  margin-bottom: 12px;
}
.bebek-asi-takvimi-detail .period > div.period-text h4 {
  font-size: 44px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 48.4px */
  letter-spacing: -0.88px;
  color: var(--grey-800, #3A4252);
  margin-bottom: 19px;
}
.bebek-asi-takvimi-detail .period > div.period-text p {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 26px */
  letter-spacing: 0.2px;
  color: var(--grey-700, #434E61);
}
.bebek-asi-takvimi-detail .period > div.period-image {
  position: relative;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image {
    width: 100%;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .period-months {
  padding: 14px 20px;
  border-radius: 20px;
  border: 1.888px solid #ECEEF2;
  background: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  margin-top: 260px;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .period-months {
    margin-top: 120px;
    width: 100%;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .period-months .item {
  flex: 1 1 0;
  /* eşit genişlikte paylaştır */
  display: flex;
  flex-direction: column;
  gap: 7.55px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bebek-asi-takvimi-detail .period > div.period-image .period-months .item .item-title {
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
  color: var(--grey-900, #343A46);
  padding: 8px 0;
  justify-content: center;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  box-sizing: border-box;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .period-months .item .item-title {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 15.6px */
    letter-spacing: 0.12px;
    justify-content: center;
    align-items: baseline;
    height: 47.2px;
    text-align: center;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .period-months .item .item-date {
  background: var(--violet-50, #EEF0FF);
  padding: 8px 12px;
  border-radius: 12px;
  display: flex;
  height: 60px;
  justify-content: center;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  color: var(--violet-900);
  white-space: wrap;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .period-months .item .item-date {
    font-size: 16px;
    letter-spacing: -0.32px;
    padding: 8px 0;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .image-1 {
  width: 250.003px;
  height: 280px;
  flex-shrink: 0;
  aspect-ratio: 250/280;
  position: absolute;
  left: 170px;
  top: 15px;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .image-1 {
    width: 125.002px;
    height: 140px;
    aspect-ratio: 125/140;
    left: unset;
    right: 0;
    top: 0;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .image-2 {
  width: 325.079px;
  height: 280px;
  flex-shrink: 0;
  aspect-ratio: 325.08/280;
  position: absolute;
  right: 40px;
  margin-top: 10px;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .image-2 {
    width: 180.91px;
    height: 174px;
    aspect-ratio: 180.91/174;
    right: 20px ;
    top: 10px;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .image-3 {
  width: 200.512px;
  height: 280px;
  flex-shrink: 0;
  aspect-ratio: 200.51/280;
  position: absolute;
  left: 60px;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .image-3 {
    width: 85.934px;
    height: 120px;
    aspect-ratio: 85.93/120;
    left: 0;
  }
  .bebek-asi-takvimi-detail .period > div.period-image .image-3 img {
    transform: scaleX(-1);
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .image-4 {
  width: 194.569px;
  height: 280px;
  flex-shrink: 0;
  aspect-ratio: 194.57/280;
  position: absolute;
  right: 60px;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .image-4 {
    width: 83.387px;
    height: 120px;
    aspect-ratio: 83.39/120;
    right: 0;
    top: 5px;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .image-5 {
  width: 151.811px;
  height: 280px;
  flex-shrink: 0;
  aspect-ratio: 151.81/280;
  position: absolute;
  left: 60px;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .image-5 {
    width: 65.062px;
    height: 120px;
    aspect-ratio: 65.06/120;
    left: 0;
    top: 10px;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .image-6 {
  width: 217.818px;
  height: 280px;
  flex-shrink: 0;
  aspect-ratio: 217.82/280;
  position: absolute;
  right: 60px;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .image-6 {
    width: 93.351px;
    height: 120px;
    aspect-ratio: 93.35/120;
    right: 0;
    top: 5px;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .image-7 {
  width: 241.152px;
  height: 280px;
  flex-shrink: 0;
  aspect-ratio: 241.15/280;
  position: absolute;
  left: 40px;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .image-7 {
    width: 103.351px;
    height: 120px;
    aspect-ratio: 103.35/120;
    left: 0;
    top: 10px;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .image-8 {
  width: 190.436px;
  height: 280px;
  flex-shrink: 0;
  aspect-ratio: 190.44/280;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .image-8 {
    width: 81.615px;
    height: 120px;
    aspect-ratio: 81.62/120;
    right: 0;
    top: 5px;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image .image-9 {
  width: 151.811px;
  height: 280px;
  flex-shrink: 0;
  aspect-ratio: 151.81/280;
  position: absolute;
  left: 60px;
  top: 0;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period > div.period-image .image-9 {
    width: 65.062px;
    height: 120px;
    aspect-ratio: 65.06/120;
    left: 0;
    top: 10px;
  }
}
.bebek-asi-takvimi-detail .period > div.period-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bebek-asi-takvimi-detail .period:nth-child(2n+1) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail .period:nth-child(2n+1) {
    flex-direction: column;
    height: auto;
  }
}
.bebek-asi-takvimi-detail .period:nth-child(2n+1) > .period-image {
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .bebek-asi-takvimi-detail {
    gap: 60px;
  }
}
.special-vaccines h4 {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 39.6px */
  letter-spacing: -0.72px;
  color: var(--grey-800, #3A4252);
  margin-bottom: 32px;
}
.special-vaccines p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 23.4px */
  letter-spacing: 0.18px;
  color: var(--grey-600, #434E61);
  margin-bottom: 32px;
}
.special-vaccines .swiper-slide {
  width: 100%;
  height: auto;
  padding: 32px 8px;
  background: var(--violet-50, #EEF0FF);
  border-radius: 32px;
  text-align: center;
  color: var(--violet-700, #583BC7);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 17.6px */
  letter-spacing: -0.32px;
}
.special-vaccines .swiper-slide:before {
  content: '';
  background-image: url('../img/special-vaccine.svg');
  width: 92.5px;
  height: 14px;
  display: block;
  margin: 0 auto 12px;
}
@media screen and (min-width: 1200px) {
  .special-vaccines p {
    margin-bottom: 0;
  }
  .special-vaccines .special-vaccines-slider .swiper-wrapper {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
    margin-top: 80px;
  }
  .special-vaccines .special-vaccines-slider .swiper-wrapper .swiper-slide {
    width: 100%;
    height: auto;
    flex: 1 1 0;
    padding: 32px 20px;
    background: var(--violet-50, #EEF0FF);
    border-radius: 32px;
    text-align: center;
    color: var(--violet-700, #583BC7);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 26.4px */
    letter-spacing: -0.48px;
  }
  .special-vaccines .special-vaccines-slider .swiper-wrapper .swiper-slide:before {
    content: '';
    background-image: url('../img/special-vaccine.svg');
    width: 158.57px;
    height: 24px;
    display: block;
    margin: 0 auto 12px;
  }
}
.vki-detail {
  display: none;
}
.vki-detail.show {
  display: flex;
  padding: 24px;
  flex-direction: column;
  gap: 40px;
  align-self: stretch;
  border-radius: 30px;
  border: 2px solid #F5F4FE;
  background: #FFF;
}
.vki-detail.show > div:nth-child(1) {
  margin: 0 auto;
}
.vki-detail.show .vki-chart {
  width: 400px;
  height: 200px;
  background: url("../img/vki-chart.svg") no-repeat center center;
  position: relative;
  margin-bottom: 50px;
  background-size: contain;
}
@media screen and (max-width: 1200px) {
  .vki-detail.show .vki-chart {
    width: 311px;
    height: 172px;
  }
}
.vki-detail.show .vki-arrow {
  width: 46px;
  height: 100px;
  background: url("../img/vki-arrow.svg") no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: flex;
}
@media screen and (max-width: 1200px) {
  .vki-detail.show .vki-arrow {
    width: 34px;
    height: 74px;
  }
}
.vki-detail .subtitle,
.vki-detail #vki-result-number {
  color: var(--grey-800, #3A4252);
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 30.8px */
  letter-spacing: -0.56px;
  margin-bottom: 16px;
}
.vki-detail .subtitle + span,
.vki-detail #vki-result-number + span {
  display: block;
  text-align: center;
}
.vki-detail .description {
  text-align: left;
}
.vki-detail .vki-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .vki-detail .vki-detail-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.vki-detail .vki-detail-grid > div {
  border-radius: 20px;
  border: 2px solid #FDF1C4;
  background: #FFF;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 23.4px */
  letter-spacing: 0.18px;
  color: var(--grey-700, #3A4252);
}
@media screen and (max-width: 1200px) {
  .vki-detail .vki-detail-grid > div {
    font-size: 13.3px;
    letter-spacing: 0.133px;
  }
}
.vki-detail .vki-detail-grid > div span {
  color: var(--violet-800, #583BC7);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 30.8px */
  letter-spacing: -0.56px;
  display: block;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .vki-detail .vki-detail-grid > div span {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.36px;
  }
}
.vki-detail .vki-detail-grid > div:after {
  position: absolute;
  content: '';
  right: 20px;
  top: 20px;
}
.vki-detail .vki-detail-grid > div:nth-child(1):after {
  background: url("../img/vki-div-1.png") no-repeat center center;
  width: 46.427px;
  height: 45px;
  background-size: contain;
}
.vki-detail .vki-detail-grid > div:nth-child(2):after {
  background: url("../img/vki-div-2.png") no-repeat center center;
  width: 64.622px;
  height: 45px;
  background-size: contain;
}
.vki-detail .vki-detail-grid > div:nth-child(3):after {
  background: url("../img/vki-div-3.png") no-repeat center center;
  width: 53.246px;
  height: 45px;
  background-size: contain;
}
.login-page {
  display: flex;
  box-sizing: border-box;
  gap: 20px;
  margin: 80px 0 160px;
}
.login-page > div {
  flex: 1 0 0;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .login-page {
    flex-direction: column;
    margin: 31px 0 84px;
  }
  .login-page > div {
    flex: 1 0 100%;
    overflow: visible;
  }
}
.login-tabs {
  border-radius: 60px;
  background: var(--grey-50, #F6F7F9);
}
@media screen and (max-width: 1200px) {
  .login-tabs {
    border-radius: 24px;
  }
}
.login-tabs .tabs-buttons.main-tabs {
  background: var(--white);
  border-radius: 0 0 32px 0;
  display: inline-flex;
  align-items: center;
  padding: 12px 20px 20px;
  position: relative;
  box-sizing: border-box;
  gap: 52px;
}
.login-tabs .tabs-buttons.main-tabs:before {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  bottom: -32px;
  left: 0;
  background-image: url("../img/kosebent.svg");
  background-size: contain;
  rotate: 90deg;
}
.login-tabs .tabs-buttons.main-tabs:after {
  width: 32px;
  height: 32px;
  content: "";
  position: absolute;
  right: -32px;
  top: 0;
  background-image: url("../img/kosebent.svg");
  background-size: contain;
  rotate: 90deg;
}
.login-tabs .tabs-buttons.main-tabs li {
  color: #434E61;
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 30.8px */
  letter-spacing: -0.56px;
  padding: 14px 28px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .login-tabs .tabs-buttons.main-tabs li {
    font-size: 13.3px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    letter-spacing: -0.266px;
  }
  .login-tabs .tabs-buttons.main-tabs li .icon img {
    width: 24px;
  }
}
.login-tabs .tabs-buttons.main-tabs li.active {
  background: var(--pink-600, #EB1B8C);
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  color: #fff;
}
@media screen and (max-width: 1200px) {
  .login-tabs .tabs-buttons.main-tabs {
    gap: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .login-tabs .tabs-content.main-tabs {
    background: var(--grey-50, #F6F7F9);
    border-radius: 24px;
    padding: 20px 12px;
    margin-top: 24px;
  }
}
.login-tabs .tabs-content.main-tabs .tabs-item {
  display: none;
  padding: 71px 133px 97px;
}
@media screen and (max-width: 1200px) {
  .login-tabs .tabs-content.main-tabs .tabs-item {
    padding: 0 12px;
  }
}
.login-tabs .tabs-content.main-tabs .tabs-item.wizard-form {
  padding: 71px 49px 97px;
}
@media screen and (max-width: 1200px) {
  .login-tabs .tabs-content.main-tabs .tabs-item.wizard-form {
    padding: 0 12px;
  }
}
.login-tabs .tabs-content.main-tabs .tabs-item.show {
  display: block;
}
.login-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.login-form .form-group label {
  color: var(--grey-900, #343A46);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
}
.login-form .form-group input[type='text'],
.login-form .form-group input[type='email'],
.login-form .form-group input[type='password'],
.login-form .form-group input[type='number'] {
  color: var(--grey-600, #526077);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  padding: 4px 15px;
  height: 56px;
  border-radius: 20px;
  border: 1px solid var(--grey-100, #ECEEF2);
  background: #FFF;
  box-sizing: border-box;
  width: 100%;
}
.login-form .form-group input[type='text']:not(:placeholder-shown),
.login-form .form-group input[type='email']:not(:placeholder-shown),
.login-form .form-group input[type='password']:not(:placeholder-shown),
.login-form .form-group input[type='number']:not(:placeholder-shown) {
  border: 1px solid var(--grey-100, #FFA1DE);
}
.login-form .form-group input[type='text']:focus,
.login-form .form-group input[type='email']:focus,
.login-form .form-group input[type='password']:focus,
.login-form .form-group input[type='number']:focus {
  outline: none;
  border: 1px solid var(pink-300, #FFA1DE);
}
.login-form .form-group input[type='text'].error,
.login-form .form-group input[type='email'].error,
.login-form .form-group input[type='password'].error,
.login-form .form-group input[type='number'].error {
  border: 1px solid #FF4A4A;
}
.login-form .form-group input[type='text'].error + .help-block,
.login-form .form-group input[type='email'].error + .help-block,
.login-form .form-group input[type='password'].error + .help-block,
.login-form .form-group input[type='number'].error + .help-block {
  color: #FF4A4A;
  display: block;
}
.login-form .form-group input[type='text'].error:focus,
.login-form .form-group input[type='email'].error:focus,
.login-form .form-group input[type='password'].error:focus,
.login-form .form-group input[type='number'].error:focus {
  border: 1px solid #FF4A4A;
}
.login-form .form-group .help-block {
  color: var(--grey-900, #343A46);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.3px;
  display: none;
}
.login-form .form-group + .form-group {
  margin-top: 32px;
}
@media screen and (max-width: 1200px) {
  .login-form .form-group + .form-group {
    margin-top: 0;
  }
}
.login-form .form-group.username-group {
  width: 241px;
}
@media screen and (max-width: 1200px) {
  .login-form .form-group.username-group {
    width: 100%;
  }
}
.login-form .form-group .input-group {
  position: relative;
}
.login-form .form-group .input-group .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 16px;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .login-form .form-group {
    margin-bottom: 24px;
    width: 100%;
  }
}
.login-form .remember-me {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 16px 0;
}
.login-form .remember-me .remember-me-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}
.login-form .remember-me .remember-me-checkbox input[type='checkbox'] {
  display: none;
}
.login-form .remember-me .remember-me-checkbox input[type='checkbox'] + label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: var(--grey-600, #526077);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
}
.login-form .remember-me .remember-me-checkbox input[type='checkbox'] + label::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M19.5 3.1875H4.5C4.1519 3.1875 3.81806 3.32578 3.57192 3.57192C3.32578 3.81806 3.1875 4.1519 3.1875 4.5V19.5C3.1875 19.8481 3.32578 20.1819 3.57192 20.4281C3.81806 20.6742 4.1519 20.8125 4.5 20.8125H19.5C19.8481 20.8125 20.1819 20.6742 20.4281 20.4281C20.6742 20.1819 20.8125 19.8481 20.8125 19.5V4.5C20.8125 4.1519 20.6742 3.81806 20.4281 3.57192C20.1819 3.32578 19.8481 3.1875 19.5 3.1875ZM19.6875 19.5C19.6875 19.5497 19.6677 19.5974 19.6326 19.6326C19.5974 19.6677 19.5497 19.6875 19.5 19.6875H4.5C4.45027 19.6875 4.40258 19.6677 4.36742 19.6326C4.33225 19.5974 4.3125 19.5497 4.3125 19.5V4.5C4.3125 4.45027 4.33225 4.40258 4.36742 4.36742C4.40258 4.33225 4.45027 4.3125 4.5 4.3125H19.5C19.5497 4.3125 19.5974 4.33225 19.6326 4.36742C19.6677 4.40258 19.6875 4.45027 19.6875 4.5V19.5Z' fill='%23343A46'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-form .remember-me .remember-me-checkbox input[type='checkbox']:checked + label::before {
  content: '\2713';
}
.login-form .remember-me .forgot-password {
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 13.2px */
  letter-spacing: -0.24px;
  color: var(--grey-900, #343A46);
}
.login-form .login-btn {
  width: 100%;
}
.login-form .login-with {
  display: flex;
  flex-direction: column;
}
.login-form .login-with .or {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1px;
  background: var(--grey-200, #BFC5D2);
  width: 364px;
  margin: 32px auto 16px;
}
@media screen and (max-width: 1200px) {
  .login-form .login-with .or {
    width: 100%;
  }
}
.login-form .login-with span {
  color: var(--grey-500, #8695AA);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
  text-align: center;
  margin: 0 auto;
  display: block;
  width: 66px;
  position: relative;
  background: #F6F7F9;
}
.login-form .login-with .social-login {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 29px;
  width: 100%;
  max-width: 514px;
  box-sizing: border-box;
  margin: 0 auto;
}
.login-form .login-with .social-login li {
  flex: 1 0 0;
}
.login-form .login-with .social-login li a {
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .login-form .login-with .social-login li a img {
    width: 16px;
  }
}
.login-form .three-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 20px;
}
.login-form .three-grid + p {
  color: var(--grey-600, #526077);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 23.4px */
  letter-spacing: 0.18px;
  margin-bottom: 32px;
}
.login-form .three-grid .form-group {
  margin: 0 !important;
}
.login-form .three-grid .form-group .custom-select .select-trigger {
  height: 56px;
}
@media screen and (max-width: 1200px) {
  .login-form .three-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 32px;
    width: 100%;
  }
}
.wizard-form .description {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 23.4px */
  letter-spacing: 0.18px;
  color: var(--grey-600, #434E61);
  margin-bottom: 32px;
}
.wizard-form .step {
  display: none;
}
.wizard-form .step.active {
  display: block;
}
.membership-type-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  width: 100%;
}
.membership-type-buttons .radio-button {
  border-radius: 20px;
  border: 1px solid var(--grey-100, #ECEEF2);
  background: #FFF;
  display: flex;
  height: 48px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  padding: 0 16px;
}
.membership-type-buttons .radio-button input[type="radio"] {
  display: none;
}
.membership-type-buttons .radio-button input[type="radio"] + label {
  color: var(--grey-900, #343A46);
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.3px;
  width: -webkit-fill-available;
  width: -moz-available;
  width: fill-available;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.membership-type-buttons .radio-button input[type="radio"] + label:after {
  background: url("../img/wizard-radio-button.svg");
  content: "";
  width: 24px;
  height: 24px;
}
.membership-type-buttons .radio-button input[type="radio"]:checked + label:after {
  background: url("../img/wizard-radio-button-checked.svg");
}
.form-group-flex {
  display: flex;
  gap: 32px;
  align-items: baseline;
}
.form-group-flex > div {
  flex: 1 0 0;
}
@media screen and (max-width: 1200px) {
  .form-group-flex {
    flex-direction: column;
    gap: 0;
  }
  .form-group-flex > div {
    flex: 1 0 100%;
  }
}
.login-swiper {
  margin-bottom: 20px;
}
.login-swiper img {
  border-radius: 32px;
}
.login-swiper .swiper-pagination {
  width: auto;
  margin: 0 auto;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 16px;
  background: rgba(246, 247, 249, 0.26);
  backdrop-filter: blur(2px);
  bottom: 15px;
  padding: 0 15px;
}
.login-swiper .swiper-pagination .swiper-pagination-bullet {
  background: var(--grey-100, #ECEEF2);
  width: 10px;
  height: 10px;
}
.login-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--pink-200, #FFCBEE);
}
@media screen and (max-width: 1200px) {
  .login-swiper .swiper-slide {
    aspect-ratio: 343/411;
    display: flex;
  }
  .login-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.login-why-us {
  margin-top: 32px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--pink-600, #EB1B8C);
  position: relative;
  background-image: url("../img/why-us-mobile-center.svg");
  padding: 28px;
  height: 300px;
  background-repeat: repeat-x;
  background-position: 50px 0;
  background-size: auto 100%;
}
@media screen and (max-width: 1200px) {
  .login-why-us {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.login-why-us:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 100%;
  background-image: url("../img/why-us-mobile.svg");
  background-position: 0 0;
  background-size: auto 100%;
  background-color: #fff;
}
.login-why-us:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 100%;
  background-image: url("../img/why-us-mobile.svg");
  background-position: 100% 0;
  background-size: auto 100%;
  background-color: #fff;
}
.login-why-us .div1 {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 35.2px */
  letter-spacing: -0.64px;
  color: var(--pink-600, #EB1B8C);
  z-index: 1;
}
.login-why-us .div1 .gebe-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30.3px;
  height: 30.3px;
  padding: 10.8px;
  background-color: var(--pink-600, #EB1B8C);
  border-radius: 100%;
  display: flex;
  color: #fff;
  font-size: 28px;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.login-why-us .div1 .gebe-icon .icon {
  color: #fff;
}
.login-why-us .div2,
.login-why-us .div3,
.login-why-us .div4,
.login-why-us .div5 {
  width: 50%;
  z-index: 1;
}
@media screen and (min-width: 1200px) {
  .login-why-us {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    background: none;
    height: unset;
    padding: 0;
    margin-top: 32px;
    width: 100%;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-between;
    color: var(--pink-600, #EB1B8C);
    position: relative;
  }
  .login-why-us:before,
  .login-why-us:after {
    display: none;
  }
  .login-why-us .gebe-icon {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30.3px;
    height: 30.3px;
    padding: 10.8px;
    background-color: var(--pink-600, #EB1B8C);
    border-radius: 100%;
    display: flex;
    color: #fff;
    font-size: 28px;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .login-why-us .div1 {
    grid-area: 1 / 1 / 2 / 3;
    position: relative;
  }
  .login-why-us .div1 .inverted-radius-top-right {
    background: var(--pink-50, #FFF0F6);
    border-radius: 32px;
    height: 149px;
    position: absolute;
    z-index: 0;
    width: 100%;
  }
  .login-why-us .div1 .title {
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 39.6px */
    letter-spacing: -0.72px;
    color: var(--pink-600);
    position: relative;
    z-index: 1;
    margin: 45px 0 24px 24px;
  }
  .login-why-us .div2 {
    grid-area: 1 / 3 / 2 / 4;
  }
  .login-why-us .div3 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .login-why-us .div4 {
    grid-area: 2 / 2 / 3 / 3;
  }
  .login-why-us .div5 {
    grid-area: 2 / 3 / 3 / 4;
  }
  .login-why-us .div2,
  .login-why-us .div3,
  .login-why-us .div4,
  .login-why-us .div5 {
    display: flex;
    padding: 24px;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    gap: 8px;
    align-self: stretch;
    border-radius: 30px;
    border: 1px solid var(--grey-100, #ECEEF2);
    background: #FFF;
    height: 149px;
    box-sizing: border-box;
    width: unset;
    z-index: 0;
  }
  .login-why-us .div2 p,
  .login-why-us .div3 p,
  .login-why-us .div4 p,
  .login-why-us .div5 p {
    color: var(--pink-600, #EB1B8C);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 39.6px */
    letter-spacing: -0.72px;
    text-align: right;
  }
  .login-why-us .div2 p span,
  .login-why-us .div3 p span,
  .login-why-us .div4 p span,
  .login-why-us .div5 p span {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 19.8px */
    letter-spacing: -0.36px;
    display: block;
  }
}
.dashboard {
  display: grid;
  grid-template-columns: 237px 1fr;
  gap: 64px;
  margin-top: 70px;
  padding-bottom: 160px;
  align-items: start;
}
.dashboard .sidebar {
  border-radius: 32px;
  background: var(--pink-50, #FEF1F9);
  box-sizing: border-box;
  padding: 12px;
}
.dashboard .sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard .sidebar ul li {
  display: flex;
  height: 51px;
  padding: 17px 20px;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  border-radius: 32px;
  box-sizing: border-box;
  color: var(--grey-900, #ECEEF2);
  position: relative;
  cursor: pointer;
}
.dashboard .sidebar ul li.active,
.dashboard .sidebar ul li:hover {
  background: #fff;
  color: var(--pink-600, #EB1B8C);
}
.dashboard .sidebar ul li.active:after,
.dashboard .sidebar ul li:hover:after {
  content: '\e90a';
  font-family: 'icomoon', sans-serif;
  transform: rotate(-90deg);
}
.dashboard .content .login-form {
  margin-top: 48px;
  border-radius: 32px;
  background: var(--Gebe_Grey-50, #F6F7F9);
  box-sizing: border-box;
  padding: 60px;
}
.dashboard .content .login-form .form-group-flex {
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .dashboard {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
    padding-bottom: 80px;
  }
  .dashboard .sidebar {
    background: none;
    border-radius: 0;
    overflow: hidden;
  }
  .dashboard .sidebar ul {
    flex-direction: row;
    display: flex;
    gap: 8px;
    white-space: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
  }
  .dashboard .sidebar ul::-webkit-scrollbar {
    display: none;
  }
  .dashboard .sidebar ul li {
    border-radius: 20px;
    border: 1px solid var(--grey-100, #ECEEF2);
    display: flex;
    height: 44px;
    padding: 8px 14px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 13.3px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 14.63px */
    letter-spacing: -0.266px;
    color: var(--grey-800, #3A4252);
  }
  .dashboard .sidebar ul li.active,
  .dashboard .sidebar ul li:hover {
    border: 1px solid var(--grey-100, #ECEEF2);
    background: var(--pink-50, #FEF1F9);
    color: var(--pink-600, #EB1B8C);
  }
  .dashboard .sidebar ul li:after {
    display: none;
  }
  .dashboard .content .login-form {
    margin: 0;
    display: flex;
    padding: 40px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
  }
  .dashboard .content .login-form .form-group-flex {
    gap: 24px !important;
    width: 100%;
  }
  .dashboard .content .login-form .form-group-flex.mobile-reverse {
    flex-direction: column-reverse;
  }
  .dashboard .content .login-form .form-group-flex.mobile-reverse > * {
    flex: 1 0 100%;
    width: 100%;
  }
  .dashboard .content .login-form .form-group-flex .form-group {
    margin: 0;
  }
  .dashboard .content .login-form .form-group-flex + .form-group-flex {
    margin-top: 24px;
  }
}
.dashboard .login-form .form-group {
  position: relative;
  width: 100%;
  min-height: 84px;
}
.dashboard .half-form {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
}
.dashboard .half-form > .form-group {
  margin: 0;
}
@media screen and (max-width: 1200px) {
  .dashboard .half-form {
    width: 100%;
  }
}
.bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #23272E;
  z-index: 9998;
  opacity: 0.4;
}
.d-flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.children-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
.children-list .child-item {
  cursor: pointer;
  border-radius: 20px;
  border: 1px solid var(--grey-100, #ECEEF2);
  background: #FFF;
  padding: 24px 20px;
  display: flex;
  gap: 4px;
  flex-direction: column;
  align-items: flex-end;
  color: var(--grey-600, #526077);
}
.children-list .child-item .age {
  text-align: right;
  font-size: 13.3px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 14.63px */
  letter-spacing: -0.266px;
}
.children-list .child-item .child-content {
  display: flex;
  gap: 8px;
  align-items: center;
  width: 100%;
}
.children-list .child-item .child-content h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
}
.children-list .child-item .child-content span {
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.3px;
}
.children-list .add-child {
  display: flex;
  height: 115px;
  padding: 24px 20px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: var(--grey-600, #526077);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  border-radius: 20px;
  border: 1px solid var(--grey-200, #D5D9E2);
  background: var(--grey-50, #F6F7F9);
  box-sizing: border-box;
  width: 100%;
  cursor: pointer;
}
.children-list .add-child .icon {
  color: var(--grey-900, #343A46);
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .children-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.notice-modal {
  display: none;
}
.notice-modal .close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 42px;
  cursor: pointer;
  color: var(--pink-600, #EB1B8C);
}
.notice-modal.show {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  display: flex;
  width: 580px;
  height: 504px;
  padding: 60px 70px 80px 70px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-shrink: 0;
  border-radius: 32px;
  border: 2px solid rgba(250, 58, 172, 0.5);
  background: #FFF;
  box-sizing: border-box;
}
.notice-modal.show.full-width {
  padding: 24px;
}
.notice-modal.show.full-width .login-form {
  width: 100%;
}
.notice-modal.show.full-width .login-form button {
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  .notice-modal.show {
    width: calc(100% - 32px) !important;
  }
}
.notice-modal .title {
  color: var(--grey-700, #434E61);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.48px;
}
.notice-modal .form-group-flex {
  gap: 20px !important;
  justify-content: center !important;
  width: 100%;
}
.notice-modal .form-group-flex > button {
  flex: 1 0 50%;
}
@media screen and (max-width: 1200px) {
  .notice-modal {
    width: 100%;
    height: auto;
    padding: 24px;
  }
  .notice-modal .form-group-flex {
    flex-direction: column-reverse;
    gap: 20px !important;
  }
  .notice-modal .form-group-flex > button {
    flex: 1 2 100%;
    width: 100%;
    white-space: nowrap;
  }
}
.header-search-expand {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  flex-direction: column;
  z-index: 9999;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .header-search-expand {
    background: #fff;
  }
  .header-search-expand .container {
    height: calc(100dvh - 86px);
    overflow-y: scroll;
  }
  .header-search-expand .container::-webkit-scrollbar {
    display: none;
  }
}
.header-search-expand .search-bar {
  background: var(--gebe-grey-800, #23272E);
  height: 86px;
  z-index: 9999;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-search-expand .search-bar {
    background: #fff;
  }
  .header-search-expand .search-bar .container {
    height: unset !important;
  }
}
.header-search-expand .header-search-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  gap: 36px;
}
.header-search-expand .close-search-button {
  color: var(--pink-600, #EB1B8C);
  font-size: 24px;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  border: 1px solid var(--pink-600, #EB1B8C);
  border-radius: 100px;
  box-sizing: border-box;
}
.header-search-expand .search-results {
  border-radius: 32px;
  border: 2px solid rgba(250, 58, 172, 0.5);
  background: #FFF;
  padding: 60px 70px 80px 70px;
  position: relative;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 500fr 500fr 240fr;
  column-gap: 80px 60px;
  grid-template-rows: auto;
  box-sizing: border-box;
  gap: 40px;
}
.header-search-expand .search-results[data-type="autocomplete"] {
  display: grid;
  grid-template-columns: 2fr 1fr;
}
.header-search-expand .search-results[data-type="returning-user"] {
  display: grid;
  grid-template-columns: 394fr 500fr 355fr;
  column-gap: 80px 40px;
}
@media screen and (max-width: 1200px) {
  .header-search-expand .search-results {
    grid-template-columns: 1fr !important;
    padding: 0px;
    gap: 24px;
    border: 0;
  }
}
.header-search-expand .search-results .search-widget {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.header-search-expand .search-results .search-widget .search-widget-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-search-expand .search-results .search-widget .search-widget-title h3 {
  color: var(--grey-800, #3A4252);
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 30.8px */
  letter-spacing: -0.56px;
}
@media screen and (max-width: 1200px) {
  .header-search-expand .search-results .search-widget .search-widget-title h3 {
    font-size: 24px;
    letter-spacing: -0.48px;
  }
}
@media screen and (max-width: 1200px) {
  .header-search-expand .search-results .search-widget .search-widget-title span,
  .header-search-expand .search-results .search-widget .search-widget-title a {
    color: var(--grey-900, #343A46);
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 110%;
    /* 13.2px */
    letter-spacing: -0.24px;
  }
}
.header-search-expand .search-results .search-results-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .header-search-expand .search-results .search-results-list {
    grid-template-columns: 1fr;
  }
}
.header-search-expand .search-results .search-results-list li {
  width: 100%;
}
.header-search-expand .search-results .search-results-list li a {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 14px;
  border: 1px solid #ECEEF2;
}
.header-search-expand .search-results .search-results-list li a figure {
  border-radius: 14px;
  aspect-ratio: 1/1;
  overflow: hidden;
  min-width: 60px;
  max-width: 60px;
}
.header-search-expand .search-results .search-results-list li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-search-expand .search-results .recommend-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header-search-expand .search-results .recommend-articles li {
  width: 100%;
}
.header-search-expand .search-results .recommend-articles li a {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 14px;
  border: 1px solid #ECEEF2;
  box-sizing: border-box;
}
.header-search-expand .search-results .recommend-articles li a figure {
  border-radius: 14px;
  aspect-ratio: 1/1;
  overflow: hidden;
  min-width: 105px;
  max-width: 105px;
}
.header-search-expand .search-results .recommend-articles li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-search-expand .search-results .recommend-articles li a .article {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header-search-expand .search-results .recommend-articles li a .article .category {
  color: var(--grey-600, #526077);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 13.2px */
  letter-spacing: -0.24px;
  text-transform: uppercase;
}
.header-search-expand .search-results .recommend-articles li a .article h4 {
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  color: var(--grey-700, #434E61);
  margin: 0 !important;
}
.header-search-expand .search-results .recommend-articles li a .article p {
  color: var(--grey-700, #434E61);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
}
.header-search-expand .search-results[data-type="autocomplete"] .recommend-articles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.header-search-expand .search-results[data-type="autocomplete"] .recommend-articles li {
  width: 100%;
}
.header-search-expand .search-results[data-type="autocomplete"] .recommend-articles li a {
  display: flex;
  padding: 12px 16px;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  border-radius: 14px;
  border: 1px solid #ECEEF2;
}
.header-search-expand .search-results[data-type="autocomplete"] .recommend-articles li a figure {
  border-radius: 14px;
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 60px;
}
.header-search-expand .search-results[data-type="autocomplete"] .recommend-articles li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-search-expand .search-results .popular-search ul,
.header-search-expand .search-results .history-search ul {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.header-search-expand .search-results .popular-search ul li,
.header-search-expand .search-results .history-search ul li {
  display: flex;
  padding: 8px;
  gap: 8px;
  align-items: center;
  width: max-content;
  color: var(--grey-800, #3A4252);
  border: 1px solid #ECEEF2;
  border-radius: 14px;
  box-sizing: border-box;
  height: 50px;
}
@media screen and (max-width: 1200px) {
  .header-search-expand .search-results .popular-search ul li,
  .header-search-expand .search-results .history-search ul li {
    height: 40px;
  }
}
.header-search-expand .search-results .popular-search ul li a,
.header-search-expand .search-results .history-search ul li a {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.36px;
}
@media screen and (max-width: 1200px) {
  .header-search-expand .search-results .popular-search ul li a,
  .header-search-expand .search-results .history-search ul li a {
    font-size: 12px;
    letter-spacing: -0.24px;
  }
}
.header-search-expand .search-results .popular-search ul li {
  background: rgba(254, 241, 249, 0.5);
}
.header-search-expand .search-results .popular-search ul li a {
  background: rgba(254, 241, 249, 0.5);
  color: var(--pink-600, #EB1B8C);
}
.header-search-expand .search-results .popular-search ul li span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 13.2px */
  letter-spacing: -0.24px;
  color: var(--grey-500, #3A4252);
}
@media screen and (max-width: 1200px) {
  .header-search-expand .search-results .popular-search ul li span {
    font-size: 10px;
    letter-spacing: -0.2px;
  }
}
.header-search-expand .search-results .history-search ul li {
  background: rgba(246, 247, 249, 0.5);
}
.header-search-expand .search-results .history-search ul li span {
  width: 24px;
  height: 24px;
  display: flex;
}
.header-search-expand .search-results .history-search ul li span:before {
  content: '\e923';
  font-family: 'icomoon', sans-serif;
  position: relative;
  font-size: 24px;
  color: var(--grey-500, #3A4252);
  margin-top: 2px;
}
@media screen and (max-width: 1200px) {
  .header-search-expand .search-results .history-search ul li span {
    width: 16px;
    height: 16px;
  }
  .header-search-expand .search-results .history-search ul li span:before {
    font-size: 16px;
    margin-top: -2px;
  }
}
.header-search-expand .search-results .tools ul li a {
  border-radius: 14px;
  border: 1px solid #ECEEF2;
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  align-items: center;
  margin-bottom: 20px;
  height: 62px;
  padding: 16px;
  box-sizing: border-box;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  color: var(--grey-700, #434E61);
}
.header-search-expand .search-results .tools ul li a img {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1200px) {
  .header-search-expand .search-results .tools ul li a {
    height: 48px;
    margin-bottom: 12px;
    flex-direction: row-reverse;
    gap: 8px;
    justify-content: flex-end;
    border: 0;
    padding: 0;
  }
  .header-search-expand .search-results .tools ul li a img {
    width: 20px;
    height: 20px;
  }
}
.header-search-expand input,
.header-search-expand input:focus {
  width: 100%;
  max-width: calc(100% - 78px);
  border-radius: 100px;
  border: 2px solid rgba(250, 58, 172, 0.5);
  background: #FFF;
  outline: 0;
  height: 42px;
  box-sizing: border-box;
  padding: 0 26px;
}
body.search-focused .top-header {
  z-index: 1;
  /* arka planda kalsın */
}
body.mega-open {
  overflow: hidden;
  /* örnek */
}
@media screen and (min-width: 1281px) {
  body.mega-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 999;
    pointer-events: none;
  }
}
.bebek-burcu-detail {
  display: none;
}
.bebek-burcu-detail.show {
  display: flex;
  border-radius: 30px;
  border: 2px solid #F5F4FE;
  background: #FFF;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  align-self: stretch;
  box-sizing: border-box;
}
.bebek-burcu-detail .burc-ozellikler {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .bebek-burcu-detail .burc-ozellikler {
    grid-template-columns: repeat(1, 1fr);
  }
}
.bebek-burcu-detail .burc-ozellikler > div {
  border-radius: 20px;
  padding: 2px;
}
.bebek-burcu-detail .burc-ozellikler > div .bg-white {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1 0 0;
  border-radius: 18px;
  background: #FFF;
  padding: 20px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}
.bebek-burcu-detail .burc-ozellikler > div img {
  width: 60px;
  height: 60px;
}
.bebek-burcu-detail .burc-ozellikler > div span {
  color: var(--grey-800, #3A4252);
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.48px;
}
.search-page {
  padding: 70px 0;
  display: grid;
  grid-template-columns: 1206fr 430fr;
  gap: 80px;
}
.search-page .sidebar {
  display: none;
}
@media screen and (min-width: 1200px) {
  .search-page .sidebar {
    display: flex;
    white-space: nowrap;
    flex-direction: column;
    gap: 20px;
    box-sizing: border-box;
  }
}
.search-page .sidebar .sidebar-title {
  color: var(--grey800, #3A4252);
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.96px;
  margin-bottom: 20px;
}
.search-page .sidebar .sidebar-tools {
  border-radius: 24px;
  border: 1px solid var(--grey-100, #ECEEF2);
  background: #FFF;
  display: flex;
  width: 100%;
  padding: 24px;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}
.search-page .sidebar .sidebar-tools .tool {
  display: flex;
  border-radius: 32px;
  height: 238px;
  padding: 32px 20px 20px 20px;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.search-page .sidebar .sidebar-tools .tool .title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.48px;
  color: var(--grey-800, #3A4252);
  width: 100%;
  max-width: 145px;
  white-space: normal;
}
.search-page .sidebar .sidebar-tools .tool p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 20.8px */
  letter-spacing: 0.16px;
  color: var(--grey-800, #3A4252);
  width: 100%;
  max-width: 145px;
  white-space: normal;
  margin-top: 8px;
}
@media screen and (max-width: 1200px) {
  .search-page .sidebar .sidebar-tools .tool .title {
    font-size: 20px;
    max-width: unset;
  }
  .search-page .sidebar .sidebar-tools .tool p {
    font-size: 14px;
    max-width: unset;
  }
}
.search-page .sidebar .sidebar-tools .tool img {
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.search-page .search-title {
  color: var(--grey-700, #434E61);
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 70.4px */
  letter-spacing: -1.28px;
}
.search-page ul.result-list li {
  margin-bottom: 20px;
}
.search-page ul.result-list li a {
  display: flex;
  flex-direction: row;
  border-radius: 20px;
  height: auto;
}
.search-page ul.result-list li a figure {
  height: 100%;
  width: 184px;
  aspect-ratio: 184/121;
}
.search-page ul.result-list li a > div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  gap: 20px;
  flex: 1 0 0;
}
.search-page ul.result-list li a > div h3 {
  color: var(--grey-800, #3A4252);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.48px;
  margin: 0;
}
.search-page ul.result-list li a > div p {
  color: var(--grey-700, #434E61);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 23.4px */
  letter-spacing: 0.18px;
}
.authors .author-search {
  height: 60px;
  padding: 13px 26px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  display: flex;
  width: 100%;
  position: relative;
  margin: 48px 0;
}
.authors .author-search:before {
  font-family: 'icomoon', sans-serif;
  content: '\e91c';
  position: absolute;
  font-size: 16px;
}
.authors .author-search input {
  width: calc(100% - 20px);
  padding-left: 30px;
  height: 100%;
  border: none;
  outline: none;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
  color: var(--grey-900, #343A46);
}
.authors .authors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .authors .authors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.authors-grid-item {
  display: flex;
  padding: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex: 1 0 0;
  border-radius: 32px;
  background: var(--pink-50, #FEF1F9);
  box-sizing: border-box;
}
.authors-grid-item figure {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  min-width: 80px;
  max-width: 80px;
  border-radius: 120px;
  border: 3.333px solid #FFF;
}
@media screen and (min-width: 1920px) {
  .authors-grid-item figure {
    min-width: 120px;
    max-width: 120px;
  }
}
.authors-grid-item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.authors-grid-item h3 {
  color: var(--grey-800, #3A4252);
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  text-align: center;
  letter-spacing: -0.36px;
  margin: 16px 0 8px 0;
}
@media screen and (min-width: 1920px) {
  .authors-grid-item h3 {
    font-size: 28px;
    letter-spacing: -0.56px;
  }
}
.authors-grid-item p {
  color: var(--grey-700, #434E61);
  text-align: center;
  font-size: 13.3px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.133px;
}
@media screen and (min-width: 1920px) {
  .authors-grid-item p {
    font-size: 18px;
    letter-spacing: 0.18px;
  }
}
@media screen and (min-width: 1920px) {
  .single-author .authors-grids-item figure {
    min-width: 180px !important;
    max-width: 180px !important;
  }
}
.author-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.author-articles .card {
  height: auto;
}
.author-articles .card figure {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 0;
}
.author-articles .card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-articles .card > div {
  box-sizing: border-box;
  padding: 24px;
}
.author-articles .card h3 {
  color: var(--grey-800, #3A4252);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.48px;
  margin: 0 ;
}
.author-articles .card p {
  color: var(--grey-700, #434E61);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 23.4px */
  letter-spacing: 0.18px;
}
.author-form-page .form-title {
  color: var(--grey-800, #3A4252);
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 39.6px */
  letter-spacing: -0.72px;
  margin-bottom: 20px;
}
.author-form-page p {
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 23.4px */
  letter-spacing: 0.18px;
  color: var(--grey-600, #434E61);
}
.author-form-page p + p {
  margin-top: 20px;
}
.author-form-page .form-group {
  margin: 60px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 50%;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 1200px) {
  .author-form-page .form-group {
    width: 100%;
  }
}
.author-form-page .form-group label {
  color: var(--grey-900, #343A46);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
}
.author-form-page .form-group label + span {
  color: var(--grey-900, #343A46);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
}
.author-form-page .form-group input[type="text"],
.author-form-page .form-group input[type="email"],
.author-form-page .form-group input[type="password"] {
  border-radius: 20px;
  border: 1px solid var(--grey-100, #ECEEF2);
  background: #FFF;
  display: flex;
  height: 54px;
  padding: 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  box-sizing: border-box;
}
.author-form-page .form-group input[type="text"]::placeholder,
.author-form-page .form-group input[type="email"]::placeholder,
.author-form-page .form-group input[type="password"]::placeholder {
  color: var(--grey-600, #526077);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
}
.author-form-page .form-group .radio-checkbox {
  border-radius: 20px;
  border: 1px solid var(--grey-100, #ECEEF2);
  background: #FFF;
  display: flex;
  height: 54px;
  padding: 16px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  box-sizing: border-box;
  justify-content: flex-start;
  width: auto;
}
.author-form-page .form-group .radio-checkbox label {
  color: var(--grey-900, #343A46);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.author-form-page .form-group .radio-checkbox label::before {
  content: '';
  display: inline-block;
  min-width: 24px;
  width: 24px;
  height: 24px;
  background: url("../img/RadioButton.svg");
  box-sizing: border-box;
  margin-right: 12px;
}
.author-form-page .form-group .radio-checkbox input[type="radio"] {
  display: none;
}
.author-form-page .form-group .radio-checkbox input[type="radio"] + label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: url("../img/RadioButton.svg");
  box-sizing: border-box;
  margin-right: 12px;
}
.author-form-page .form-group .radio-checkbox input[type="radio"]:checked + label::before {
  background: url("../img/RadioButtonChecked.svg");
}
.author-form-page .form-group .radio-checkbox input[type="checkbox"] {
  display: none;
}
.author-form-page .form-group .radio-checkbox input[type="checkbox"] + label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  box-sizing: border-box;
  margin-right: 12px;
  background: url("../img/CheckboxButton.svg");
}
.author-form-page .form-group .radio-checkbox input[type="checkbox"]:checked + label::before {
  background: url("../img/CheckboxButtonChecked.svg");
}
.author-form-page .form-group .radio-checkbox button {
  width: max-content;
}
.author-form-page button[type="submit"],
.author-form-page button[type="reset"] {
  width: 100%;
  margin-bottom: 10px;
}
.subscription-page .option-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.subscription-page .option-group h3 {
  color: var(--grey-900, #343A46);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
}
.subscription-page .option-group input {
  display: none;
}
.subscription-page .option-group input + label {
  border-radius: 20px;
  border: 1px solid var(--grey-100, #ECEEF2);
  background: #FFF;
  color: var(--grey-600, #526077);
  display: flex;
  height: 75px;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  box-sizing: border-box;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  /* 22px */
  letter-spacing: -0.4px;
  justify-content: space-between;
  padding: 0 16px;
}
.subscription-page .option-group input + label:after {
  content: "";
  background-image: url("../img/ToggleLeft.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 41px;
}
.subscription-page .option-group input:checked + label:after {
  background: url("../img/ToggleRight.svg");
}
.subscription-page .spouse-info {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}
.subscription-page .spouse-info .form-group {
  margin: 0;
}
.subscription-page .spouse-info .form-group + .form-group {
  margin: 0 !important;
}
.hot-content {
  position: absolute;
  right: 30px;
  top: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  z-index: 9;
}
.hot-content figure {
  aspect-ratio: 1/1 !important;
  border-radius: 100% !important;
  min-width: 60px !important;
  max-width: 60px !important;
  overflow: hidden !important;
}
.hot-content figure img {
  object-fit: contain !important;
  width: 100% !important;
  height: 100% !important;
}
.trend-posts-wrapper {
  overflow: hidden;
  position: relative;
}
.trend-posts {
  display: flex;
  gap: 20px;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .trend-posts {
    margin-top: 40px;
  }
}
.trend-posts .card {
  flex: 0 0 calc((100% - 60px) / 4);
  min-width: 0;
  position: relative;
  box-sizing: border-box;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .trend-posts .card {
    flex: 0 0 100%;
  }
}
.trend-posts .card figure {
  display: flex;
  position: relative;
  aspect-ratio: 418/246;
}
.trend-posts .card figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.trend-posts .card .hot-content {
  position: absolute;
  right: 8px;
  top: 6px;
}
.trend-posts .card .hot-content figure {
  height: unset;
  width: unset;
}
.trend-posts .card h3 {
  color: var(--Gebe_Grey-800, #3A4252);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  /* 26.4px */
  letter-spacing: -0.48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trend-posts .card p {
  color: var(--Gebe_Grey-700, #434E61);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  /* 23.4px */
  letter-spacing: 0.18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trend-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trend-pagination ul {
  display: flex;
  list-style: none;
  margin: 0;
  border-radius: 12px;
  padding: 12px 24px;
  height: 54px;
  box-sizing: border-box;
  gap: 14px;
  background: var(--Gebe_Grey-50, #F6F7F9);
  justify-content: center;
  flex-shrink: 0;
}
.trend-pagination ul li {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--Gebe_Grey-600, #526077);
  text-align: center;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  /* 16.5px */
  letter-spacing: -0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}
.trend-pagination ul li:hover:not(.active):not(.disabled) {
  color: var(--Gebe_Grey-900, #343A46);
  border-bottom: 1px solid var(--Gebe_Grey-900, #343A46);
}
.trend-pagination ul li.active {
  color: var(--Gebe_Grey-900, #343A46);
  border-bottom: 1px solid var(--Gebe_Grey-900, #343A46);
}
.trend-pagination ul li.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.trend-pagination .prev-next-button {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.trend-pagination .prev-next-button span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  color: var(--Gebe_Grey-600, #526077);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}
.trend-pagination .prev-next-button span:hover:not(.disabled) {
  color: var(--Gebe_Grey-600, #526077);
}
.trend-pagination .prev-next-button span.disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media screen and (max-width: 768px) {
  .trend-pagination {
    margin-top: 20px;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .trend-pagination ul {
    gap: 4px;
    padding: 8px 12px;
    height: auto;
    min-width: 0;
    flex: 1;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .trend-pagination ul::-webkit-scrollbar {
    display: none;
  }
  .trend-pagination ul li {
    width: 32px;
    height: 32px;
    font-size: 13px;
    flex-shrink: 0;
  }
  .trend-pagination ul li.pagination-dots {
    width: auto;
    min-width: 20px;
    padding: 0 4px;
    line-height: 32px;
  }
  .trend-pagination .prev-next-button {
    flex-shrink: 0;
    gap: 6px;
  }
  .trend-pagination .prev-next-button span {
    width: 32px;
    height: 32px;
    font-size: 18px;
  }
}
/*# sourceMappingURL=style.css.map */