:root {
  --white-smoke: #eef2f5;
  --black: #001019;
  --gainsboro: #dee2e5;
  --dark-slate-grey: #1f4a47;
  --misty-rose: #f4dfe2;
  --white: white;
  --dim-grey: #484848;
  --neon-green: #eaff01;
  --lgren: #94d7c5;
  --burlywood: #f9c684;
  --blue-violet: #663de4;
  --bej: #fbfaf5;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  background-color: var(--white-smoke);
  color: var(--black);
  letter-spacing: -.3px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 150%;
}

h1 {
  letter-spacing: -.3px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  letter-spacing: -.3px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

p {
  letter-spacing: -.3px;
  margin-bottom: 0;
}

a {
  color: var(--black);
  text-decoration: underline;
}

.section {
  font-family: Paytone One, sans-serif;
  font-weight: 400;
}

.content_wrapper {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.content_wrapper.content_align_center {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.content_wrapper.content_align_center.text_align_center, .content_wrapper.text_align_center {
  text-align: center;
}

.line_divider {
  width: 100%;
  height: 1px;
  background-color: var(--gainsboro);
}

.spacing_8 {
  height: 8px;
}

.spacing_16 {
  height: 16px;
}

.spacing_24 {
  height: 24px;
}

.spacing_32 {
  height: 32px;
}

.spacing_48 {
  height: 48px;
}

.text_align_center {
  text-align: center;
}

.profile_wrapper {
  width: 120px;
  height: 120px;
  border: 6px solid var(--dark-slate-grey);
  background-color: var(--dark-slate-grey);
  background-image: url('../images/AET.jpg');
  background-position: 50%;
  background-size: contain;
  border-radius: 500px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  display: flex;
}

.profile_image {
  max-height: 100px;
  max-width: 100px;
  object-fit: cover;
  border-radius: 500px;
}

.text_wrapper.wrapper_medium {
  max-width: 380px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text_wrapper.yatay {
  margin-top: 48px;
  display: flex;
}

.flex_wrapper {
  display: flex;
}

.flex_wrapper.flex_center {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
}

.flex_wrapper.flex_distribute {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.flex_wrapper.flex_distribute.flex_alignt_top {
  align-items: flex-start;
}

.flex_wrapper.flex_distribute.event_card_2 {
  background-color: var(--misty-rose);
  border-radius: 32px;
  padding: 24px;
}

.flex_wrapper.flex_distribute.link_block {
  background-color: var(--white);
  color: var(--black);
  border-radius: 16px;
  padding: 25px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all .4s;
}

.flex_wrapper.flex_distribute.link_block:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.flex_wrapper.flex_left {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.flex_wrapper.flex_left.flex_gap_medium {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.flex_wrapper.flex_right {
  justify-content: flex-end;
}

.flex_wrapper.flex_vertical {
  flex-direction: column;
}

.flex_wrapper.flex_vertical.card_link {
  height: 186px;
  border: 1px solid var(--gainsboro);
  color: var(--black);
  border-radius: 16px;
  justify-content: space-between;
  padding: 24px;
  font-weight: 600;
  text-decoration: none;
  transition: all .4s;
}

.flex_wrapper.flex_vertical.card_link:hover {
  border-color: var(--white);
  background-color: var(--white);
}

.flex_wrapper.flex_vertical.flex_distribute.flex_left {
  align-items: flex-start;
}

.icon_20x20 {
  width: 20px;
  height: 20px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text_color_grey {
  color: var(--dim-grey);
  font-family: Outfit, sans-serif;
}

.text_color_grey.text_width_small {
  max-width: 17ch;
}

.text_color_grey.text_width_medium {
  max-width: 46ch;
  font-family: Outfit, sans-serif;
}

.icon_wrapper {
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, .6);
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  padding: 10px;
  transition: all .4s;
  display: flex;
  overflow: hidden;
}

.icon_wrapper:hover {
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
}

.icon_24x24 {
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button_icon {
  height: 48px;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: var(--white);
  color: var(--black);
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  font-weight: 500;
  text-decoration: none;
  transition: all .4s;
  display: flex;
}

.button_icon:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, .05);
}

.button_icon.accent_button {
  background-color: var(--neon-green);
  color: var(--white);
}

.button_icon.accent_button:hover {
  box-shadow: 0 6px 20px rgba(120, 63, 243, .1);
}

.button_icon.button_outline {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
}

.icon_16x16 {
  width: 16px;
  height: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.highlights_grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.highlight_card {
  background-color: #070707;
  border-radius: 32px;
  padding: 24px;
}

.highlight_card.green {
  background-color: var(--lgren);
  background-image: url('../images/IMG_1444-min.jpeg'), url('../images/social_bg.svg');
  background-position: 50%, 100% 0;
  background-repeat: repeat, no-repeat;
  background-size: cover, auto;
}

.highlight_card.green.st_profil_kart {
  background-color: var(--lgren);
  background-image: url('../images/social_bg.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: auto;
}

.highlight_card.white {
  background-color: var(--lgren);
  background-image: url('../images/white_bg_pattern.svg');
  background-repeat: no-repeat;
  background-size: auto;
}

.highlight_card.pink {
  background-color: var(--misty-rose);
  background-image: url('../images/purbple_g_pattern.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.highlight_card.black {
  background-color: var(--black);
  color: var(--white);
}

.highlight_card.siyah {
  background-color: var(--black);
  background-image: url('../images/purbple_g_pattern.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.highlight_card.bg_bluish {
  background-color: #783ff3;
}

.icon_48x48 {
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.spacing_20 {
  height: 20px;
}

.display_large {
  font-family: Paytone One, sans-serif;
  font-size: 54px;
}

.font_weight_bold {
  letter-spacing: -.1px;
  font-weight: 700;
}

.spacing_4 {
  height: 4px;
}

.text_color_green {
  color: var(--dark-slate-grey);
  font-family: Outfit, sans-serif;
}

.text_color_green.altcizgi {
  text-decoration: underline;
}

.text_color_black {
  color: var(--black);
}

.text_color_black.font_weight_bold {
  font-family: Paytone One, sans-serif;
}

.icon_64x64 {
  width: 64px;
  height: 64px;
}

.text_color_muted {
  opacity: .6;
  font-family: Outfit, sans-serif;
}

.availability_grid {
  height: 300px;
  max-height: 300px;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.availability_column {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.small_text {
  font-size: 12px;
}

.availability_graph_item {
  height: 100%;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.graph_bar {
  height: auto;
  background-color: var(--gainsboro);
  border-radius: 32px;
  flex-direction: column;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  padding: 24px;
  font-weight: 600;
  display: flex;
}

.graph_bar.available {
  background-color: var(--black);
  color: var(--white);
  flex: 0 auto;
}

.graph_bar.available.monday {
  height: 66%;
  min-height: auto;
}

.graph_bar.available.tuesday {
  display: none;
}

.graph_bar.available.wednesday {
  height: 50%;
  min-height: auto;
}

.graph_bar.available.thursday {
  height: 80%;
  min-height: auto;
  background-color: var(--burlywood);
}

.graph_bar.available.friday {
  height: 35%;
  background-color: var(--misty-rose);
  color: var(--black);
}

.blog_grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
}

.article_item {
  color: var(--black);
  text-decoration: none;
}

.article_image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 32px;
}

.button {
  height: 48px;
  background-color: var(--blue-violet);
  text-align: center;
  border-radius: 16px;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  transition: all .4s;
  display: flex;
}

.button:hover {
  background-color: var(--black);
}

.button.background_white {
  background-color: var(--white);
  color: var(--black);
  text-align: center;
  letter-spacing: 2px;
  font-family: Paytone One, sans-serif;
  font-weight: 400;
}

.button.background_white:hover {
  background-color: var(--black);
  color: var(--white);
}

.button.full_width {
  width: 100%;
  background-color: var(--blue-violet);
  letter-spacing: 1px;
}

.form-block {
  margin-bottom: 16px;
}

.input_field {
  height: 48px;
  background-color: var(--gainsboro);
  border: 1px #000;
  border-radius: 16px;
  margin-bottom: 0;
  font-family: Outfit, sans-serif;
}

.input_field:focus {
  border-style: solid;
  border-color: var(--black);
}

.form_2col_grid {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
}

.event_card {
  height: 350px;
  color: var(--white);
  background-image: linear-gradient(rgba(0, 0, 0, 0), #0a1b1a), url('../images/Rectangle-33.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  border-radius: 32px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  display: flex;
  overflow: hidden;
}

.date_card {
  width: 80px;
  height: 80px;
  background-color: var(--blue-violet);
  text-align: center;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  display: flex;
}

.event_image {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 16px;
}

.link_cloud_grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
}

._3_col_grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.icon_32x32 {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.product_item {
  color: var(--black);
  text-decoration: none;
}

.product_image_wrapper {
  height: 320px;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.product_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.discount_tag {
  background-color: var(--lgren);
  border-radius: 500px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  position: absolute;
  top: 12px;
  bottom: auto;
  left: auto;
  right: 12px;
}

.book_item {
  color: var(--black);
  text-decoration: none;
}

.book_image {
  border: 4px none var(--white);
  border-radius: 16px;
}

.ad_card {
  width: 100%;
  height: auto;
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  background-color: var(--gainsboro);
  color: var(--black);
  border-radius: 32px;
  justify-content: space-between;
  padding: 24px;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.ad_card_image {
  max-width: 250px;
  object-fit: cover;
  border-radius: 16px;
}

.section_title {
  font-family: Outfit, sans-serif;
  font-weight: 700;
}

.switch {
  padding: 12px;
  position: fixed;
  top: auto;
  bottom: 20px;
  left: auto;
  right: 20px;
}

.text-block {
  color: var(--black);
  font-family: Paytone One, sans-serif;
}

.beyaz_baslik {
  color: var(--white);
}

.text_color_beyaz {
  color: var(--dim-grey);
}

.text_color_beyaz.text_width_small {
  max-width: 17ch;
  color: var(--white);
}

.text_color_beyaz.text_width_medium {
  max-width: 46ch;
}

._2-1col_grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr .25fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.heading, .text-block-2 {
  font-family: Paytone One, sans-serif;
}

.heading-2 {
  letter-spacing: -.1px;
  font-family: Paytone One, sans-serif;
  font-weight: 400;
}

.subheader_bold {
  font-family: Paytone One, sans-serif;
  font-weight: 700;
}

.minnak_text {
  font-family: Outfit, sans-serif;
}

.body {
  background-color: var(--white-smoke);
}

.depo_grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.depo_h1 {
  font-family: Paytone One, sans-serif;
}

.comment_header {
  color: var(--black);
  font-family: Paytone One, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.divider {
  height: 1px;
  background-color: var(--gainsboro);
}

.comment_text {
  color: var(--black);
  -webkit-text-stroke-color: var(--black);
  font-family: Outfit, sans-serif;
}

.comment_card {
  background-color: var(--gainsboro);
  border-radius: 32px;
  padding: 24px;
}

.comment_card.green {
  background-color: var(--lgren);
  background-image: url('../images/IMG_1444-min.jpeg'), url('../images/social_bg.svg');
  background-position: 50%, 100% 0;
  background-repeat: repeat, no-repeat;
  background-size: cover, auto;
}

.comment_card.green.st_profil_kart {
  background-image: url('../images/social_bg.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: auto;
}

.comment_card.white {
  background-color: var(--lgren);
  background-image: url('../images/white_bg_pattern.svg');
  background-repeat: no-repeat;
  background-size: auto;
}

.comment_card.pink {
  background-color: var(--misty-rose);
  background-image: url('../images/purbple_g_pattern.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.comment_card.black {
  background-color: var(--black);
  color: var(--white);
}

.comment_card.siyah {
  background-color: var(--black);
  background-image: url('../images/purbple_g_pattern.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

._2-1_col_grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

._2-1_col_grid.vertical_scroll {
  grid-template-columns: 1fr 1fr;
}

.biyo_heading2 {
  color: var(--white-smoke);
  text-align: left;
  letter-spacing: -.1px;
  font-family: Paytone One, sans-serif;
}

.biyografi_card {
  background-color: #070707;
  border-radius: 32px;
  padding: 24px;
}

.biyografi_card.green {
  background-color: var(--lgren);
  background-image: url('../images/IMG_1444-min.jpeg'), url('../images/social_bg.svg');
  background-position: 50%, 100% 0;
  background-repeat: repeat, no-repeat;
  background-size: cover, auto;
}

.biyografi_card.green.st_profil_kart {
  background-image: url('../images/social_bg.svg');
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: auto;
}

.biyografi_card.white {
  background-color: var(--lgren);
  background-image: url('../images/white_bg_pattern.svg');
  background-repeat: no-repeat;
  background-size: auto;
}

.biyografi_card.pink {
  background-color: var(--misty-rose);
  background-image: url('../images/purbple_g_pattern.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.biyografi_card.black {
  background-color: var(--black);
  color: var(--white);
}

.biyografi_card.siyah {
  background-color: var(--black);
  background-image: url('../images/purbple_g_pattern.svg');
  background-position: 100% 100%;
  background-repeat: no-repeat;
  background-size: auto;
}

.biyografi_card.bg_bluish {
  background-color: #783ff3;
  position: relative;
}

.ust_banner {
  width: auto;
  height: 40px;
  background-color: var(--neon-green);
  border-radius: 32px;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.link {
  color: var(--black);
  text-align: center;
  letter-spacing: .3px;
  font-family: Paytone One, sans-serif;
  text-decoration: none;
}

.biyo_text {
  color: var(--gainsboro);
  font-family: Outfit, sans-serif;
}

.div-block {
  align-items: center;
  display: flex;
}

.heading-3 {
  letter-spacing: 1px;
  font-size: 42px;
  font-weight: 400;
}

.acik {
  letter-spacing: 1.4px;
}

.neon-bg {
  background-color: var(--neon-green);
  padding-left: 5px;
  padding-right: 5px;
}

.slide {
  background-image: url('../images/hooked.png');
  background-position: 50%;
  background-repeat: repeat-y;
  background-size: 200px 300px;
  background-attachment: scroll;
}

.slider {
  background-color: #eef2f5;
}

.slide-overlay {
  z-index: 9999;
  height: 125px;
  background-color: var(--gainsboro);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.slide-nav {
  display: none;
}

.slide-text {
  font-family: Outfit, sans-serif;
}

.image {
  width: 100%;
  border-radius: 32px;
}

.div-block-2 {
  border-radius: 32px;
}

.link_text {
  font-family: Outfit, sans-serif;
  font-weight: 700;
}

.logo_wrapper {
  align-items: center;
  display: flex;
}

.image-2 {
  background-image: url('../images/Terapi-Günlüğüm.jpg');
  background-position: 0%;
  background-size: cover;
}

.eski_fiyat {
  margin-right: 10px;
  font-size: 18px;
  text-decoration: line-through;
}

.cta_subtext {
  margin-top: 24px;
  font-family: Outfit, sans-serif;
}

.heading-5 {
  background-color: var(--neon-green);
  letter-spacing: 0;
  border-radius: 12px;
  align-items: center;
  padding: 5px 10px;
  text-decoration: none;
}

.heading-6 {
  letter-spacing: 1px;
}

.text-span {
  font-family: Outfit, sans-serif;
  font-size: 16px;
}

.logo-h3 {
  letter-spacing: 1px;
  font-size: 42px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  ._2-1_col_grid.vertical_scroll {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 16px;
  }

  p {
    font-size: 15px;
  }

  .section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .spacing_48 {
    height: 32px;
  }

  .profile_wrapper {
    width: 110px;
    height: 110px;
  }

  .profile_image {
    max-height: 90px;
    max-width: 90px;
  }

  .text_wrapper.wrapper_medium.center_mobile {
    text-align: center;
    align-items: center;
  }

  .flex_wrapper.flex_center {
    flex-wrap: wrap;
  }

  .flex_wrapper.flex_center.mobile_vertical {
    flex-direction: column;
  }

  .flex_wrapper.flex_distribute.flex_alignt_top {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .flex_wrapper.flex_distribute.event_card_2 {
    text-align: center;
    border-radius: 24px;
    flex-direction: column;
  }

  .flex_wrapper.flex_distribute.link_block {
    line-height: 1.5;
  }

  .flex_wrapper.flex_left {
    font-size: 14px;
  }

  .flex_wrapper.flex_left.flex_gap_medium {
    flex-direction: column;
  }

  .flex_wrapper.flex_vertical.card_link {
    height: 150px;
    border-color: var(--white);
    background-color: var(--white);
  }

  .flex_wrapper.flex_vertical.flex_distribute.flex_left.center_mobile {
    text-align: center;
    align-items: center;
  }

  .icon_wrapper {
    width: 40px;
    height: 40px;
  }

  .button_icon.button_outline.full_width {
    width: 100%;
  }

  .highlights_grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .highlight_card {
    border-radius: 24px;
  }

  .display_large {
    font-size: 50px;
  }

  .graph_bar {
    border-radius: 24px;
    padding: 16px;
  }

  .graph_bar.available {
    font-size: 10px;
    line-height: 130%;
  }

  .article_image {
    height: 110px;
    border-radius: 24px;
  }

  .event_card {
    border-radius: 24px;
  }

  ._3_col_grid {
    grid-template-columns: 1fr;
  }

  ._3_col_grid.vertical_scroll {
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 20px;
    overflow: auto;
  }

  .product_image_wrapper {
    height: 190px;
    border-radius: 24px;
  }

  .discount_tag {
    font-size: 10px;
  }

  .book_item {
    width: 180px;
  }

  .ad_card {
    height: auto;
    border-radius: 24px;
    flex-direction: column;
    align-items: center;
    padding-left: 16px;
    padding-right: 16px;
  }

  .ad_card_image {
    width: 100%;
    max-width: none;
  }

  .section_title {
    text-align: center;
  }

  .comment_card {
    background-color: var(--gainsboro);
    border-radius: 24px;
  }

  ._2-1_col_grid {
    grid-template-columns: 1fr;
  }

  ._2-1_col_grid.vertical_scroll {
    grid-template-columns: 1fr;
    padding-bottom: 20px;
    position: relative;
    overflow: visible;
  }

  .biyografi_card {
    border-radius: 24px;
  }

  .ust_banner {
    padding: 5px 10px;
  }

  .heading-3 {
    font-size: 28px;
  }

  .heading-5 {
    background-color: var(--neon-green);
  }

  .image-3 {
    position: absolute;
    top: 12%;
    bottom: auto;
    left: auto;
    right: 8%;
  }

  .image-4 {
    position: absolute;
    top: 36%;
    bottom: auto;
    left: 60%;
    right: auto;
  }

  .image-5 {
    position: absolute;
    top: auto;
    bottom: 3%;
    left: 53%;
    right: auto;
  }

  .logo-h3 {
    font-size: 25px;
  }
}

#w-node-ca2327f1-9efa-1a8e-ea64-eda1506a0fdb-cc022690 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_7dc2427a-0a61-0b5c-baa2-ce4f7e24753b-cc022690, #w-node-_221d9723-3ca4-2b2c-7b53-cbe483aa69cc-cc022690 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_535388e4-c6dc-0dfe-fc88-75462ef528bb-cc022690 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-_0affa520-84ea-408b-8e87-19d2b404c817-cc022690 {
  grid-area: 3 / 3 / 4 / 4;
  align-self: center;
}

#w-node-_11ec025f-2ad6-91fd-4d25-5f34fd2eb0fe-cc022690 {
  grid-area: 2 / 2 / 3 / 4;
}

#w-node-_58875a47-48b9-dfae-6889-7818be88a9fb-cc022690 {
  grid-area: 1 / 3 / 2 / 4;
  align-self: center;
}

#w-node-_45bae7db-d85d-60bc-5d95-a5aa67dd6329-cc022690 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_01504fcf-27f0-5c3d-8115-908e39f410f2-cc022690 {
  grid-area: 2 / 1 / 3 / 2;
  align-self: center;
}

#w-node-_083a7642-17f8-53ae-3029-972be8294125-cc022690 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_7a285be3-560b-cb55-e91a-4e596d9346d4-cc022690 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-e0db22bd-e2e8-24ea-8c0a-8413c95d3084-cc022690 {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-_721f6378-d977-1669-97fa-6bab471c05c7-cc022690 {
  grid-area: 1 / 3 / 2 / 4;
  justify-self: end;
}

#w-node-c20981f7-87b4-7879-4964-e16035a86bd9-cc022690, #w-node-c20981f7-87b4-7879-4964-e16035a86be4-cc022690, #w-node-f371108b-2579-8fd8-bce5-c362ceb230b0-cc022690, #w-node-_3fc5f2de-6d0d-2651-5238-8f920a2433b6-cc022690, #w-node-b30c40e5-c260-70d6-8f73-ad4727ac5b29-cc022690 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_03e10dc9-c8d1-ccc5-7166-62b6ccc6fdd4-e0f755ce {
  grid-area: 1 / 1 / 2 / 3;
  justify-self: center;
}

#w-node-_77ae22bc-1497-42e9-7950-d689632964fd-e0f755ce {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_3f3eb7a8-04e2-037f-2803-9ba54f4f57ac-e0f755ce {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: center;
}

#w-node-_5e63d1a8-5dcf-a51e-23e3-7745f42d0f72-e0f755ce, #w-node-_5e63d1a8-5dcf-a51e-23e3-7745f42d0f7a-e0f755ce, #w-node-_5e63d1a8-5dcf-a51e-23e3-7745f42d0f82-e0f755ce, #w-node-_5e63d1a8-5dcf-a51e-23e3-7745f42d0f8a-e0f755ce, #w-node-_5e63d1a8-5dcf-a51e-23e3-7745f42d0f92-e0f755ce, #w-node-_0e0f51b0-0b02-c388-d07d-1c6b6223ddb4-e0f755ce, #w-node-_0e0f51b0-0b02-c388-d07d-1c6b6223ddbf-e0f755ce {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-_535388e4-c6dc-0dfe-fc88-75462ef528bb-cc022690 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_0affa520-84ea-408b-8e87-19d2b404c817-cc022690 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    align-self: center;
  }

  #w-node-_11ec025f-2ad6-91fd-4d25-5f34fd2eb0fe-cc022690, #w-node-_58875a47-48b9-dfae-6889-7818be88a9fb-cc022690, #w-node-_45bae7db-d85d-60bc-5d95-a5aa67dd6329-cc022690, #w-node-_01504fcf-27f0-5c3d-8115-908e39f410f2-cc022690, #w-node-_083a7642-17f8-53ae-3029-972be8294125-cc022690 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


