:root {
  --blue: #0093d7;
  --dark-blue: #017eb8;
  --light-blue: #7ebee7;
  --text: #505050;
  --bg: #f5f5f5;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Black.ttf);
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-BlackItalic.ttf);
  font-weight: 900;
  font-style: italic;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-BoldItalic.ttf);
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Medium.ttf);
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-MediumItalic.ttf);
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Italic.ttf);
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Light.ttf);
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-LightItalic.ttf);
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-Thin.ttf);
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: Poppins;
  src: url(../assets/fonts/Poppins/Poppins-ThinItalic.ttf);
  font-weight: 100;
  font-style: italic;
}

body {
  font-family: "Poppins";
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.global-h {
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.global-h1 {
  font-size: 54px;
}

.global-h2 {
  font-weight: 500;
  font-size: 42px;
  letter-spacing: 0.25px;
  color: #000000;
}

.global-h3 {
  font-size: 30px;
}

.global-h4 {
  font-size: 24px;
}

.global-h5 {
  font-size: 18px;
}

.global-p {
  color: var(--text);
  font-size: 16px;
  margin: 0;
}

.global-btn {
  background-color: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 15px;
  border: none;
  display: inline-block;
  border-radius: 10px;
}

.global-btn:hover {
  background-color: var(--dark-blue);
}

.s-padding {
  padding: 100px 0;
}

@media (max-width: 1366px) {
  .global-h2 {
    font-size: 36px;
  }
}
@media (max-width: 991px) {
  .s-padding {
    padding: 50px 0;
  }

  .br-desktop {
    display: none;
  }

  .global-h1 {
    font-size: 38px;
  }

  .global-h2 {
    font-size: 32px;
  }

  .global-h3 {
    font-size: 24px;
  }

  .global-h4 {
    font-size: 20px;
  }

  .global-h5 {
    font-size: 16px;
  }

  .global-p {
    font-size: 14px;
  }
}

header {
  position: fixed;
  top: 0;
  z-index: 3;
  width: 100%;
  padding: 20px 0;
}
header.fixed {
  background-color: #fff;
  box-shadow: 0px 1px 4px 0px #00000040;
}

.header-logo img {
  height: 60px;
}

.sign-button {
  line-height: 50px;
  height: 50px;
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  border-radius: 10px;
  padding: 0 30px;
}
.sign-in {
  color: var(--blue);
  border: 1px solid #fff;
  background-color: #fff;
}
header.fixed .sign-in {
  border: 1px solid #dfdfdf;
}

.sign-in:hover {
  background-color: #ededed;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.sign-up {
  background: linear-gradient(
    247.83deg,
    #389bc8 3.34%,
    #3bb5e6 50%,
    #2f5aa6 96.66%
  );
  color: #fff;
}
.sign-up:hover {
  border: 1px solid var(--blue);
  background: #dfdfdf;
  color: var(--blue);
}

@media (max-width: 991px) {
  .header-logo img {
    height: 40px;
  }
  header {
    padding: 15px 0;
  }
  .sign-button {
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    font-weight: 600;
    padding: 0 15px;
    white-space: nowrap;
  }
}

.s1 {
  position: relative;
  background: #f5f5f5;
  padding-top: 150px;
}

.s1-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(images/s1-bg.jpg) no-repeat top right/cover;
  mix-blend-mode: multiply;
  opacity: 0.58;
  pointer-events: none;
}
.s1 .s1-content h1 {
  line-height: 115.99999999999999%;
  color: var(--blue);
  font-weight: 600;
  font-size: 48px;
  margin-bottom: 15px;
}
.s1 .s1-content p {
  font-size: 16px;
  color: #000000;
  margin-bottom: 30px;
}
.s1-content {
  /* height: calc(100% - 300px); */
}
.s1-content img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
}
.s1-infos {
  padding: 15px 0 30px;
}
.s1-each {
  backdrop-filter: blur(10.5px);
  border: 0.5px solid #a7a7a7bf;
  border-radius: 30px;
  padding: 30px;
}
.s1-each img {
  margin-bottom: 10px;
  height: 44px;
}

.s1-each h2 {
  font-weight: 600;
  font-size: 20px;
  color: var(--blue);
  margin-bottom: 15px;
}
.s1-each p {
  color: #696969;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}
@media (max-width: 1366px), (max-height: 800px) {
}

@media (max-width: 1200px) {
  .s1 .s1-content h1 {
    font-size: 42px;
  }
}
@media (max-width: 991px) {
  .s1 {
    padding-top: 100px;
  }
  .s1-content img {
    margin-top: 50px;
  }
  .s1 .s1-content h1 {
    font-size: 36px;
  }
}

.s2 {
  background-color: var(--bg);
  padding: 150px 0;
  position: relative;
}
.s2::before {
  position: absolute;
  content: "";
  background-image: url(images/s2-bg.png);
  right: 0;
  top: 0;
  width: 40%;
  height: 60%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  pointer-events: none;
}
.s2::after {
  position: absolute;
  content: "";
  background-image: url(images/s2-bg2.png);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 40%;
  height: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  pointer-events: none;
}
.s2-sub-title {
  color: var(--blue);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.25px;
  margin-bottom: 10px;
}
.s2 h2 {
  margin-bottom: 30px;
}
.s2 p {
  font-size: 16px;
  color: #49454f;
  line-height: 20px;
}
.s2 h3 {
  color: #505050;
  font-weight: 600;
  font-size: 36px;
  margin: 30px 0;
}
.s2 h3 span {
  color: var(--blue);
}

.s2 img {
  width: 100%;
  position: relative;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
}
@media (max-width: 1366px) {
  .s2 {
    padding: 100px 0;
  }
  .s2 h2 {
    font-size: 36px;
  }
  .s2 h3 {
    font-size: 28px;
  }
  .s2-sub-title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .s2 {
    padding: 50px 0;
  }
}

.s3 {
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
  position: relative;
  z-index: 1;
}

.s3 h2 {
  margin-bottom: 15px;
}

.s3-each {
  text-align: center;
}

.s3-each img {
  width: 100%;
  max-width: 292px;
  height: 335px;
  object-fit: contain;
  margin-bottom: 15px;
}

.s3-each h4 {
  margin-bottom: 10px;
  height: 60px;
}

.s3-each p {
  margin-bottom: 15px;
}

.s3-button {
  background-color: white;
  font-weight: 400;
  font-size: 14px;
  color: var(--blue);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0 30px;
  border: 1px solid var(--blue);
  border-radius: 10px;
}
.c-avantajlarimiz-wrap:hover {
  cursor: pointer;
}
.c-avantajlarimiz-wrap:hover .s3-button {
  background-color: var(--bg);
}
.s3-each:hover .s3-button {
  background-color: var(--blue);
  color: white;
}

@media (max-width: 991px) {
  .s3-each h4 {
    margin-bottom: 10px;
    height: unset;
  }

  .s3-each img {
    height: unset;
  }
  .s3-p {
    margin-bottom: 15px;
  }
}

.contacts {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

.contacts a {
  display: block;
}

.contacts a img {
  width: 50px;
}

.header-user img {
  height: 30px;
  filter: brightness(0) saturate(100%) invert(33%) sepia(68%) saturate(2423%)
    hue-rotate(176deg) brightness(101%) contrast(101%);
}

@media (max-width: 991px) {
  .contacts {
    right: 15px;
    bottom: 15px;
  }

  .contacts a img {
    width: 40px;
  }
}

.s4 {
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
  position: relative;
}

.s4 h2 {
  margin-bottom: 15px;
}

.s4 p {
  margin-bottom: 15px;
}

.s4 .global-btn {
  margin-bottom: 50px;
}

.s4-each {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #e1e1e1;
  border-radius: 12px;
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.s4-each-img {
  height: 80px;
  display: flex;
  align-items: end;
  justify-content: center;
}

@media (max-width: 991px) {
  .s4 h2 {
    text-align: center;
  }

  .s4 p {
    text-align: center;
  }

  .s4 .global-btn {
    margin-left: auto;
    margin-right: auto;
  }

  .s4-btn-mobile {
    text-align: center;
  }
  .s4 .global-subtitle {
    text-align: center;
  }
}

.s4 svg {
  fill: #505050;
}

.s4-each:hover {
  border: 1px solid var(--blue);
  background-color: var(--blue);
}

.s4-each:hover h5 {
  color: white;
}

.s4-each:hover svg {
  fill: white;
}

.s4-each:hover img {
  filter: brightness(500%);
}

.s4-right {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  position: sticky;
  top: 30px;
}

.s4-right-each {
  display: flex;
  margin-bottom: 20px;
  align-items: center;
}

.s4-right-each span {
  border: 1px solid var(--text);
  color: var(--text);
  padding: 20px;
  display: inline-flex;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.s4-right-each span:hover {
  border: 1px solid var(--blue);

  color: var(--blue);
}

.s4-right-one {
  justify-content: space-around;
}

.s4-right-two {
  justify-content: center;
  gap: 50px;
}

.s4-right-three {
  justify-content: space-between;
}

.s4-right-one span:first-of-type {
  font-size: 32px;
  font-weight: 700;
}

.s4-right-one span:last-of-type {
  font-size: 28px;
  font-weight: 500;
}

.s4-right-two span:first-of-type {
  font-size: 28px;
  font-weight: 400;
}

.s4-right-two span:last-of-type {
  font-size: 22px;
  font-weight: 300;
}

.s4-right-three span:nth-of-type(1) {
  font-size: 22px;
  font-weight: 300;
}

.s4-right-three span:nth-of-type(2) {
  font-size: 32px;
  font-weight: 700;
}

.s4-right-three span:nth-of-type(3) {
  font-size: 22px;
  font-weight: 300;
}

@media (max-width: 1400px) {
  .s4 svg {
    max-height: 60px;
  }

  .s4-each-img {
    height: 60px;
  }

  .s4-each-img img {
    max-height: 60px;
  }

  .s4-each {
    gap: 10px;
    margin-bottom: 24px;
  }
}

@media (max-width: 1200px) {
  .s4-right-one span:first-of-type {
    font-size: 28px;
  }

  .s4-right-one span:last-of-type {
    font-size: 24px;
  }

  .s4-right-two span:first-of-type {
    font-size: 24px;
  }

  .s4-right-two span:last-of-type {
    font-size: 18px;
  }

  .s4-right-three span:nth-of-type(1) {
    font-size: 18px;
  }

  .s4-right-three span:nth-of-type(2) {
    font-size: 28px;
  }

  .s4-right-three span:nth-of-type(3) {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .s4-right-one span:first-of-type {
    font-size: 26px;
  }

  .s4-right-one span:last-of-type {
    font-size: 22px;
  }

  .s4-right-two span:first-of-type {
    font-size: 22px;
  }

  .s4-right-two span:last-of-type {
    font-size: 16px;
  }

  .s4-right-three span:nth-of-type(1) {
    font-size: 16px;
  }

  .s4-right-three span:nth-of-type(2) {
    font-size: 26px;
  }

  .s4-right-three span:nth-of-type(3) {
    font-size: 16px;
  }
}

.s5-h2 {
  margin-bottom: 15px;
}

.s5 .s5-p {
  margin-bottom: 50px;
}

#sss-accordion .accordion-button::after {
  display: none !important;
}

#sss-accordion .accordion-button,
#sss-accordion .accordion-body {
  background-color: var(--bg);
  color: var(--text);
}

#sss-accordion .accordion-button {
  font-size: 18px;
  padding: 25px 15px 25px 50px;
  position: relative;
}

#sss-accordion .accordion-button::before {
  position: absolute;
  top: 50%;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  left: 15px;
  background-image: url(images/cross.svg);
  width: 13px;
  z-index: 1;
  transition: all 0.3s ease;
  height: 13px;
  transform: translateY(-50%) rotate(45deg);
}

#sss-accordion .accordion-body {
  font-size: 16px;
}

#sss-accordion .accordion-button:focus {
  outline: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed):before {
  transform: translateY(-50%) rotate(0deg) !important;
}

.s5-img {
  margin-top: 50px;
}

.s5-img img {
  width: 100%;
}

.s5 {
  /* padding-bottom: 0 !important ; */
  box-shadow: 0px 2px 8px 0px rgba(99, 99, 99, 0.2);
}

.footer-top {
  background-color: var(--bg);
  padding: 150px 0 50px;
}

.footer-bottom {
  background-color: #fdfdfd;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #e1e1e1;
}
.footer-infos {
  border-top: 0.5px solid #50505040;
  padding-top: 50px;
}
.footer-bottom span {
  color: var(--text);
  font-size: 12px;
  font-weight: 300;
}

.social {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: end;
}

.footer-top-top {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  justify-content: space-between;
}

.footer-logo {
  height: 50px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li a {
  font-size: 14px;
  color: var(--text);
  font-weight: 300;
}

.footer-contact li a:hover {
  color: var(--blue);
}

.footer-kvkks {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  row-gap: 10px;
}

.footer-kvkks li a {
  font-size: 14px;
  color: var(--text);
  font-weight: 300;
}

.footer-kvkks li a:hover {
  color: var(--blue);
}

@media (max-width: 991px) {
  .footer-contact {
    margin-bottom: 30px;
  }

  .footer-top-top {
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
  .footer-top {
    background-color: var(--bg);
    padding: 50px 0 50px;
  }
  .social {
    padding-left: 5px;
    justify-content: start;
  }

  .footer-kvkks {
    flex-direction: column;
    align-items: start;
  }
}

.s3-modal h2 {
  margin-bottom: 15px;
}

.s3-modal p {
  text-align: justify;
}

.s3-modal .modal-dialog {
  max-width: 1200px;
  width: 80%;
}

.s3-modal .modal-dialog .modal-body {
  background-image: url(images/modal-bg.png);
  background-repeat: no-repeat;
  border-radius: 12px;
  background-position: 100%;
  padding-left: 50px !important;
  position: relative;
}

.modal-close-custom {
  position: absolute;
  right: 0;
  background-color: var(--bg);
  border: 1px solid #e1e1e1;
  border-radius: 6px;
  height: 30px;
  width: 30px;
  top: 0;
  transform: translate(50%, -50%);
}

@media (max-width: 991px) {
  .s3-modal .modal-dialog {
    width: calc(100% - 1rem);
  }

  .s3-modal .modal-dialog .modal-body {
    padding: 15px !important;
  }
}

.avantajlarimiz-top {
  text-align: center;
}

.global-subtitle {
  color: var(--blue);
  font-weight: 500;
}

.c-avantajlarimiz-container {
  background: #fff;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
}

.c-avantajlarimiz-wrapper {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 5rem;
}

.c-avantajlarimiz-wrapper .c-avantajlarimiz-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* justify-content: center; */
  gap: 0.5rem;
  width: calc(33.3% - 1rem);
}

.c-avantajlarimiz-wrapper
  .c-avantajlarimiz-wrap
  .c-avantajlarimiz-wrap-image
  > img {
  width: 70%;
  aspect-ratio: 4/4;
}

.c-avantajlarimiz-wrapper .c-avantajlarimiz-wrap .c-avantajlarimiz-wrap-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-avantajlarimiz-wrap-title > span {
  font-weight: 700;
  color: #505050;
  font-size: 20px;
}

.c-avantajlarimiz-wrap-text > p {
  text-align: center;
  font-size: 14px;
  width: 80%;
  color: #5e5e5e;
  display: -webkit-box;
  line-height: 20px;
  height: 60px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-avantajlarimiz-wrap-text {
  display: flex;
  justify-content: center;
}

.c-avantajlarimiz-wrapper .c-avantajlarimiz-wrap button.s3-button {
  padding: 7px 30px;
}

section#neden-clinall {
  margin-top: 0rem;
  padding-bottom: 3rem;
  padding-top: 3rem;
}

section.s5.s-padding .col-lg-10.offset-lg-1 {
  margin-left: 0;
  width: 100%;
}

.alanlarimiz-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.alanlarimiz-wrapper .alanlarimiz-left {
  width: 50%;
  /* padding-left: 13rem; */
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.alanlarimiz-wrapper .alanlarimiz-left > div {
  width: 70%;
}

.alanlarimiz-right {
  width: 50%;
  position: relative;
  min-height: 354px;
}

.alanlarimiz-right .alanlarimiz-right-list {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -97px;
  z-index: 2;
  width: 240px;
}

.alanlarimiz-right .alanlarimiz-right-image {
  display: flex;
  width: 100%;
  position: relative;
  /* min-height: 730px; */
  aspect-ratio: 1.3;
}

.alanlarimiz-right .alanlarimiz-right-image > ul {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0 !important;
  padding: 0 !important;
}

.alanlarimiz-right .alanlarimiz-right-image > ul > li > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 0 0 20px;
}

.alanlarimiz-right .alanlarimiz-right-image > ul > li {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.alanlarimiz-right .alanlarimiz-right-list > ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.alanlarimiz-right .alanlarimiz-right-list > ul > li {
  padding: 1.5rem 2rem;
  background: #00000066;
  background-blend-mode: multiply;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  border-radius: 14px;
  cursor: pointer;
  justify-content: space-between;
}

.alanlarimiz-right .alanlarimiz-right-list > ul > li > span {
  color: #fff;
  font-weight: 500;
  font-size: 17px;
  width: calc(100% - 70px);
  display: flex;
  line-height: 26px;
  flex-direction: column;
}

.alanlarimiz-right .alanlarimiz-right-list > ul > li > img {
  width: 38px;
  height: 38px;
}

.alanlarimiz-right .alanlarimiz-right-list > ul > li.active-list {
  background: #5393d5;
  background-blend-mode: multiply;
}

.alanlarimiz-right .alanlarimiz-right-image > ul > li.active-list-image {
  z-index: 1;
}

.alanlarimiz-wrapper .alanlarimiz-left .alanlarimiz-mini-baslik > span {
  font-size: 20px;
  font-weight: 500;
  color: #0093d7;
}

.alanlarimiz-wrapper .alanlarimiz-left .alanlarimiz-baslik > span {
  font-weight: 600;
  font-size: 45px;
  color: var(--default);
  letter-spacing: -1px;
}

.alanlarimiz-wrapper .alanlarimiz-left .alanlarimiz-aciklama > p {
  font-size: 16px;
  font-weight: 400;
  /* text-align: justify; */
}

.alanlarimiz-right .alanlarimiz-right-list > ul > li > span {
  font-size: 19px;
  font-weight: 600;
}

.alanlarimiz-wrapper .alanlarimiz-left.p-left {
  padding-left: 7.5rem;
}

.alanlarimiz-text > span {
  color: #0495d7;
  font-size: 24px;
}

.alanlarimiz-text {
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.alanlarimiz-content-list {
  position: absolute;
  width: 100%;
  right: 84%;
  bottom: 9%;
  display: flex;
  justify-content: end;
  opacity: 0;
  flex-direction: column;
}

.alanlarimiz-content-list > ul {
  padding: 0;
  /* background: #f5f5f5; */
  width: 84%;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  align-items: center;
}

.alanlarimiz-content-list > ul > li {
  width: 26.3%;
  display: flex;
  align-items: center;
}

.alanlarimiz-content-list > ul > li > span {
  color: var(--default);
  display: flex;
  gap: 0.2rem;
  font-size: 13px;
  /* font-family: 'Poppins'; */
  align-items: center;
}

.alanlarimiz-content-list > ul > li > span > i {
  background: linear-gradient(
    90deg,
    rgba(56, 154, 199, 1) 0%,
    rgba(59, 169, 217, 1) 10%,
    rgba(59, 187, 237, 1) 34%,
    rgba(45, 152, 214, 1) 75%,
    rgba(47, 86, 163, 1) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 16px;
}

.alanlarimiz-right
  .alanlarimiz-right-image
  > ul
  > li.active-list-image
  .alanlarimiz-content-list {
  opacity: 1;
}

.alanlarimiz-content-list > span {
  width: fit-content;
  display: flex;
  background: linear-gradient(
    90deg,
    rgba(56, 154, 199, 1) 0%,
    rgba(59, 169, 217, 1) 25%,
    rgba(59, 187, 237, 1) 50%,
    rgba(45, 152, 214, 1) 75%,
    rgba(47, 86, 163, 1) 100%
  );
  color: #fff;
  padding: 0.5rem;
  border-radius: 10px;
  margin-bottom: 1rem;
}
@media (max-width: 1400px) {
  .alanlarimiz-right .alanlarimiz-right-list > ul > li {
    padding: 15px 20px;
  }

  .alanlarimiz-right .alanlarimiz-right-list > ul > li > span {
    font-size: 18px;
    width: calc(100% - 70px);
    display: flex;
    line-height: 35px;
    flex-direction: column;
  }

  .alanlarimiz-right .alanlarimiz-right-list > ul > li > img {
    width: 35px;
    height: 35px;
  }
}
div#sss-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: none !important;
  /* padding-top: 2rem; */
  border-radius: 0;
}

div#sss-accordion .accordion-item {
  border-radius: 20px !important;

  border-bottom: none;
  border-radius: 20px !important;
  border: 1px solid #e3e3e3;
  background: #f5f5f5;
}

#sss-accordion .accordion-button {
  border-radius: 20px !important;
  border: none !important;
  background: none !important;
  outline: none !important;
  font-family: "Poppins";
  font-weight: 500;
  font-size: 16px;
}

.footer-contact-content {
}

.footer-contact-content .footer-adress > a {
  color: #5e5e5e;
  font-size: 16px;
  width: 80%;
  display: flex;
}

.footer-contact-info > ul {
  padding: 0;
  list-style: none;
  margin: 0;
  width: 100%;
  /* display: flex; */
  /* flex-direction: column; */
  /* align-items: baseline; */
  /* justify-content: center; */
}

.footer-contact-info > ul > li {
  text-align: center;
}

.footer-contact-info > ul > li > a {
  color: #5e5e5e;
  font-size: 16px;

  font-weight: 300;
  padding-left: 2rem;
}

.footer-contact-info > ul > li > a > i {
  font-size: 1rem;
}

.footer-top-top {
  margin: 0;
}
.footer-sign-up {
  background: linear-gradient(
    277.09deg,
    #022d79 -16.82%,
    #3bb5e6 39.17%,
    #3bb5e6 79.17%,
    #389bc8 99.26%
  );
  text-align: center;
  padding: 120px 15px;
  border-radius: 20px;
  margin-bottom: 150px;
  position: relative;
}
.footer-sign-up::before {
  position: absolute;
  content: "";
  background-image: url(images/footer-bg-1.png);
  right: 0;
  top: 0;
  width: 50%;
  height: 70%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  pointer-events: none;
}
.footer-sign-up::after {
  position: absolute;
  content: "";
  background-image: url(images/footer-bg-2.png);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 40%;
  height: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  pointer-events: none;
}
.footer-sign-up h2 {
  color: #fff;
  font-weight: 500;
  font-size: 40px;
  margin-bottom: 30px;
}
.footer-sign-up h2 span {
  font-weight: 700;
}
.footer-sign-up p {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 30px;
}
.footer-sign-up a {
  color: var(--blue);
  font-weight: 600;
  background-color: white;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 30px;
}
@media (max-width: 1025px) {
  .alanlarimiz-right .alanlarimiz-right-image > ul > li > img {
    border-radius: 20px;
  }
}
@media (max-width: 991px) {
  .footer-sign-up {
    padding: 50px 15px;
    margin-bottom: 50px;
  }
  .footer-sign-up h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .footer-sign-up p {
    margin-bottom: 30px;
  }
  .footer-contact-info > ul > li {
    text-align: left;
  }
  .footer-contact-info > ul > li > a {
    padding-left: 0;
  }
}
div#sss-accordion .accordion-item .accordion-collapse .accordion-body {
  border-radius: 20px !important;
  padding: 1rem 2.5rem;
  font-size: 13px;
  color: #5e5e5e;
}

@media screen and (min-width: 1800px) {
  .alanlarimiz-wrapper .alanlarimiz-left.p-left {
    padding-left: 16rem;
  }

  .alanlarimiz-content-list {
    bottom: 25%;
    right: 76%;
  }

  .container {
    max-width: 85%;
  }
}

@media screen and (min-width: 2500px) {
  .alanlarimiz-wrapper .alanlarimiz-left.p-left {
    padding-left: 20rem;
  }

  .alanlarimiz-content-list {
    bottom: 41%;
    right: 76%;
  }
}
@media screen and (min-width: 1200px) {
  .avantajlarimiz-mobile {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .p-button {
    display: none;
  }

  .alanlarimiz-mobile {
    display: none;
  }
}

@media screen and (max-width: 1440px) {
  .alanlarimiz-content-list > ul {
    width: 100%;
    /* justify-content: center; */
  }

  .alanlarimiz-content-list {
    bottom: 0;
  }

  .alanlarimiz-wrapper .alanlarimiz-left > div {
    width: 78%;
  }

  .alanlarimiz-text > span {
    font-size: 20px;
  }

  section.s5.s-padding h2 {
    font-size: 30px;
    margin-top: 1rem;
  }

  section.s5.s-padding h2.accordion-header {
    margin: 0;
  }

  #sss-accordion .accordion-button {
    margin-top: 0;
  }
}

@media screen and (max-width: 1350px) {
  .alanlarimiz-right .alanlarimiz-right-image {
    min-height: 660px;
    /* overflow: hidden; */
  }
}

@media screen and (max-width: 1200px) {
  .alanlarimiz-right .alanlarimiz-right-list > ul > li {
    padding: 1rem 2rem;
  }

  .alanlarimiz-right .alanlarimiz-right-list {
    width: 220px;
    left: -80px;
  }

  .alanlarimiz-right .alanlarimiz-right-list > ul > li > span {
    font-size: 15px;
  }

  .alanlarimiz-content-list {
    bottom: -34px;
  }

  .alanlarimiz-wrapper .alanlarimiz-left.p-left {
    padding-left: 3.5rem;
  }
}

@media screen and (max-width: 1025px) {
  .alanlarimiz-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .alanlarimiz-wrapper .alanlarimiz-left {
    padding: 0 !important;
    width: 100%;
  }

  .alanlarimiz-wrapper .alanlarimiz-left > div {
    width: 100% !important;
  }

  section#alanlarimiz {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  section#iletisim
    .iletisim-wrapper
    .iletisim-wrapper-left
    .iletisim-aciklama
    > p {
    width: 100%;
    /* font-size: 16px; */
  }

  .alanlarimiz-right {
    width: 80%;
  }

  .alanlarimiz-right .alanlarimiz-right-list {
    top: 60%;
  }

  .alanlarimiz-content-list {
    top: 0;
    right: 0 !important;
    height: fit-content;
    justify-content: center !important;
  }

  .alanlarimiz-right .alanlarimiz-right-image > ul > li {
    padding-top: 5rem;
  }
}

@media screen and (max-width: 1440px) {
  .avantajlarimiz-top > h2 {
    font-size: 30px;
    margin-top: 1rem;
  }

  .alanlarimiz-wrapper .alanlarimiz-left .alanlarimiz-aciklama > p {
    font-size: 14px;
  }
}

@media screen and (max-width: 1350px) {
  .c-avantajlarimiz-wrap-text > p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media screen and (max-width: 1024px) {
  .alanlarimiz-right .alanlarimiz-right-image {
    overflow: hidden;
  }
}

@media screen and (max-width: 992px) {
  .footer-contact-content {
    width: 100%;
  }

  .footer-contact-content > .footer-adress > * {
    width: 100% !important;
  }
}

@media screen and (max-width: 1199px) {
  .c-avantajlarimiz-container {
    display: none;
  }
}

.avantajlarimiz-mobile {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.advantage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.advantage-item .advantage-item-image > img {
  width: 60%;
  aspect-ratio: 4/4;
}

.advantage-item .advantage-item-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.advantage-item .advantage-item-content {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 80%;
}

.advantage-item .advantage-item-content .advantage-item-text {
  text-align: center;
  color: #505050;
  font-size: 14px;
}

.advantage-item .advantage-item-title {
  font-size: 22px;
  width: 100%;
  text-align: center;
  font-weight: 500;
  color: #505050;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 769px) {
  .c-avantajlarimiz-container {
    display: none;
  }

  .alanlarimiz-wrapper .alanlarimiz-left .alanlarimiz-aciklama > p {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    margin-bottom: 50px;
    text-align: justify;
  }

  .alanlarimiz-wrapper .alanlarimiz-left .alanlarimiz-aciklama.acik > p {
    max-height: fit-content;
  }

  .advantageSwiper .swiper-button-next::after,
  .advantageSwiper .swiper-button-prev::after {
    font-size: 22px;
  }

  .p-button {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .p-button > button {
    text-transform: capitalize;
    color: aliceblue;
    color: #5e5e5e;
    font-size: 16px;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }

  .advantage-item .s3-button {
    padding: 7px 30px;
  }

  .c-avantajlarimiz-wrapper .c-avantajlarimiz-wrap {
    width: calc(50% - 1rem);
  }

  section#iletisim .iletisim-wrapper {
    padding: 2rem;
  }

  section#iletisim .iletisim-wrapper .iletisim-wrapper-left {
    padding: 0;
  }

  .c-bottom-wrapper {
    display: none;
  }

  .alanlarimiz-content-list > ul > li {
    width: 33.3%;
  }

  .alanlarimiz-content-list > ul > li > span {
    font-size: 11px;
  }

  .c-avantajlarimiz-container {
    display: none;
  }

  .avantajlarimiz-mobile {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .advantageSwiper .swiper-button-next::after,
  .advantageSwiper .swiper-button-prev::after {
    font-size: 22px;
  }

  .alanlarimiz-right {
    display: none;
  }

  .alanlarimiz-mobile {
    display: block;
  }

  .alanlarimiz-mobile
    .alanlarimizSwiper
    .swiper-wrapper
    .swiper-slide
    .alanlarimiz-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 2rem;
  }

  .alanlarimiz-mobile
    .alanlarimizSwiper
    .swiper-wrapper
    .swiper-slide
    .alanlarimiz-item
    .alanlarimiz-content {
    width: fit-content;
    padding: 0.7rem 1rem;
    background: rgb(83, 147, 213);
    background: linear-gradient(
      0deg,
      rgba(83, 147, 213, 0.3449754901960784) 0%,
      rgba(83, 147, 213, 1) 100%
    );
    position: absolute;
    top: 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    height: 82px;
    padding-left: 1rem;
  }

  .alanlarimiz-mobile
    .alanlarimizSwiper
    .swiper-wrapper
    .swiper-slide
    .alanlarimiz-item
    .alanlarimiz-content
    > img {
    width: 41px;
  }

  .alanlarimiz-mobile
    .alanlarimizSwiper
    .swiper-wrapper
    .swiper-slide
    .alanlarimiz-item
    .alanlarimiz-content
    > span {
    color: #fff;
    width: 70%;
    display: flex;
    font-weight: 600;
    font-size: 16px;
  }

  .alanlarimiz-mobile
    .alanlarimizSwiper
    .swiper-wrapper
    .swiper-slide
    .alanlarimiz-item
    .alanlarimiz-item-image {
  }

  .alanlarimiz-mobile
    .alanlarimizSwiper
    .swiper-wrapper
    .swiper-slide
    .alanlarimiz-item
    .alanlarimiz-item-image
    > img {
    /* height: 500px; */
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 4/4;
    object-fit: cover;
  }

  .alanlarimizSwiper .swiper-button-next,
  .alanlarimizSwiper .swiper-button-prev {
    top: 146px;
  }

  .alanlarimizSwiper .swiper-button-next::after,
  .alanlarimizSwiper .swiper-button-prev::after {
    font-size: 25px;
  }

  .alanlarimiz-mobile
    .alanlarimizSwiper
    .swiper-wrapper
    .swiper-slide
    .alanlarimiz-item
    .alanlarimiz-content-list
    > ul {
    width: 100%;
  }

  .alanlarimiz-mobile
    .alanlarimizSwiper
    .swiper-wrapper
    .swiper-slide
    .alanlarimiz-item
    .alanlarimiz-content-list {
    top: -39px;
    opacity: 1;
  }

  .alanlarimiz-aciklama {
    margin-bottom: 2rem;
  }

  #sss-accordion .accordion-button {
    font-size: 15px;
    padding: 25px 9px 25px 50px;
  }

  section#alanlarimiz {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

@media screen and (max-width: 600px) {
  .c-avantajlarimiz-wrapper .c-avantajlarimiz-wrap {
    width: 100%;
  }
}

@media screen and (max-width: 426px) {
  .alanlarimiz-mobile
    .alanlarimizSwiper
    .swiper-wrapper
    .swiper-slide
    .alanlarimiz-item
    .alanlarimiz-item-image
    > img {
    height: 420px;
  }

  #sss-accordion .accordion-button {
    padding: 15px 9px 15px 50px;
  }
}

.paketlerimiz {
  background-color: var(--bg);
  position: relative;
}
.paketlerimiz::before {
  position: absolute;
  content: "";
  background-image: url(images/paket-bg1.png);
  left: 0;
  top: 0;
  width: 50%;
  opacity: 0.8;
  height: 60%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top;
  pointer-events: none;
}
.paketlerimiz::after {
  position: absolute;
  content: "";
  background-image: url(images/paket-bg2.png);
  right: 0;
  bottom: 0;
  width: 50%;
  height: 60%;
  background-size: contain;
  opacity: 0.8;
  background-repeat: no-repeat;
  background-position: right top;
  pointer-events: none;
}
.table-paketler {
  margin-top: 100px;
}

.table > :not(caption) > * > * {
  background-color: transparent !important ;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-bg-type: #e9e9e9b0 !important;
}
.table-responsive-custom {
  width: 100%;
  overflow-x: auto;
}
.table-responsive-custom table {
  min-width: 800px; /* Table genişliği, ihtiyacınıza göre ayarlayın */
}
th,
.table-paketler td {
  width: 25%;
}
tbody td:not(:first-child) {
  text-align: center;
}
tbody td {
  color: #000000;
  height: 50px;
  line-height: 50px;
  padding: 0 15px !important;
}
tbody td:first-child {
  font-weight: 500;
}

.table-bordered > :not(caption) > * > * {
  border: 0.5px solid #50505020 !important;
}

.paket-free {
  text-align: center !important;
  padding: 0 !important;
}
.paket-free-inner {
  border-top-left-radius: 30px !important;
  padding: 20px 30px 30px;
  border: 0.5px solid #50505020;
  border-bottom: none !important;
}
.paket-free-inner.premium {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 30px !important;
}
.paket-free h5 {
  color: #000000 !important;
  font-weight: 500 !important;
  font-size: 24px;
  margin-bottom: 20px;
}
.paket-free div {
  color: #0b5077;
  font-weight: 600;
  font-size: 42px;
}
.paket-free div span {
  color: #5792b2;
  font-weight: 300;
  font-style: italic;
  display: block;
  margin-top: -10px;
  font-size: 16px;
  margin-bottom: 20px;
}
.paket-free a {
  border: 1px solid var(--blue);
  border-radius: 30px;
  color: var(--blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  font-size: 16px;
  justify-content: center;
  height: 50px;
  background: transparent;
}

.paket-free a:hover {
  background: #e9e9e9b0 !important;
}
.paket-pro {
  padding: 0 !important;
  text-align: center !important;
}

.paket-pro-inner {
  border-top-left-radius: 30px !important;
  background: linear-gradient(
    120.44deg,
    #389bc8 -3.12%,
    #3bb5e6 38.99%,
    #3bb5e6 63.67%,
    #00328c 117.43%
  );
  border-top-right-radius: 30px !important;
  padding: 40px 30px 30px;
  border: 0.5px solid #50505020;
  position: relative;
  border-bottom: none !important;
}
.paket-pro-inner::before {
  content: "Tercih Edilen";
  position: absolute;
  left: 50%;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 400;
  display: flex;
  height: 35px;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  font-size: 14px;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50px;
  z-index: 1;
  white-space: nowrap;
  background: linear-gradient(270deg, #2f5aa6 0%, #3bb5e6 50%, #389bc8 100%);
}
.paket-pro h5 {
  color: #fff !important;
  font-weight: 500 !important;
  font-size: 24px;
  margin-bottom: 30px;
}
.paket-pro div {
  color: #fff;
  font-weight: 400;
}
.paket-pro div strong {
  color: #fff;
  font-weight: 600;
  font-size: 42px;
}
.paket-pro div span {
  color: #fff;
  font-weight: 300;
  font-style: italic;
  display: block;
  margin-top: -10px;
  font-size: 16px;
  margin-bottom: 20px;
}
.paket-pro a {
  border: 1px solid var(--blue);
  border-radius: 30px;
  color: var(--blue);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  background: #fff;
}

.paket-pro a:hover {
  background: #e9e9e9b0 !important;
}
.paket-free-inner.premium div {
  color: #0b5077;
  font-size: 16px;
  font-weight: 400 !important;
}
.paket-free-inner.premium div strong {
  color: #0b5077;
  font-weight: 600;
  font-size: 42px;
}
.paket-free-inner.premium div span {
  color: #0b5077;
  font-weight: 300;
  font-style: italic;
  display: block;
  margin-top: -10px;
  font-size: 16px;
  margin-bottom: 20px;
}
.horizontal-scroll {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 220px;
}
.horizontal-scroll img {
  height: 50px;
}
@media (max-width: 1400px) {
  th,
  .table-paketler td {
    width: 20%;
  }
  tbody tr td:first-child {
    width: 40%;
  }
  .paket-free h5,
  .paket-pro h5 {
    font-size: 20px;
  }
  .paket-free div {
    font-size: 32px;
  }
  .paket-pro div strong {
    font-size: 32px;
  }
  .paket-free-inner.premium div strong {
    font-size: 32px;
  }
  .paket-pro-inner::before {
    padding: 0 20px;
  }
  .paket-pro a {
    height: 35px;
    font-size: 14px;
  }
  .paket-free a {
    height: 35px;
    font-size: 14px;
  }
  .paket-free-inner {
    padding: 15px 20px 20px;
  }
  .paket-pro-inner {
    padding: 30px 20px 20px;
  }
}
@media (max-width: 991px) {
  tbody td {
    line-height: unset;
    height: unset;
    padding: 10px 15px !important;
    font-size: 14px;
  }
  .paket-free div span {
    font-size: 14px;
  }
  .paket-pro div span {
    font-size: 14px;
  }
  .paket-free-inner.premium div span {
    font-size: 14px;
  }
  .table-paketler {
    margin-top: 30px;
  }
}

.klinik-kayit-ol {
  height: 100vh;
  width: 100%;
  display: flex;
}
.klinik-kayit-ol-left {
  width: 50%;
  height: 100%;
}
.klinik-kayit-ol-right {
  background: #0079b1b8;
  background-blend-mode: multiply;
  background-image: url(images/kayit-ol-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 50%;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.klinik-kayit-ol-right-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.klinik-kayit-ol-right-content-each {
  height: 75px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 600px;
  justify-content: left;
  gap: 10px;
  background: #ffffff26;
  padding: 0 30px;
  color: white;
  border: 0.5px solid #a7a7a7bf;
  backdrop-filter: blur(10.5px);
}

.klinik-kayit-ol-left {
  height: 100%;
  width: 50%;
  padding: 100px 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.klinik-kayit-ol-left-content {
  width: 100%;
  max-width: 600px;
}
.klinik-kayit-ol-left-content h2 {
  font-size: 32px;
  color: #505050;
  font-weight: 600;
  margin-bottom: 15px;
}
.klinik-kayit-ol-left-content p {
  font-weight: 300;
  font-size: 16px;
  color: #000000;
  margin-bottom: 30px;
}
.klinik-kayit-ol-left-content .form-paketler-input {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #0093d7;
  color: #757575;
  background: #f6f5f7;
  font-size: 16px;
  height: 54px;
  line-height: 54px;
  margin-bottom: 20px;
  padding: 0 15px;
}
@media (max-height: 800px) and (min-width: 991px) {
  .klinik-kayit-ol {
    height: unset !important;
  }
  .klinik-kayit-ol-right {
    height: 100vh;
  }
}
.form-paket-title {
  margin-bottom: 20px;
}
.form-paket-title span {
  font-weight: 700;
  color: #000000;
  font-size: 16px;
}
.form-paket-title a {
  font-weight: 500;
  color: var(--blue);
  font-style: italic;
  text-decoration: underline;
  font-size: 16px;
}
.form-paketler {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.form-paket-each {
  background: #f6f5f7;
  flex: 1 0 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 5px;
  color: #000000;
}
.form-paket-each input {
  display: none;
}
.form-paket-each span {
  font-weight: 600;
  display: block;
  font-style: italic;
  margin-top: 10px;
  font-weight: 300;
}
.form-paket-each label {
  display: block;
  width: 100%;
  height: 100%;
  padding: 30px 15px;
  border: 1px solid #0093d7;
  border-radius: 5px;
  cursor: pointer;
}
#verification-code {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.code-input {
  width: 55px;
  height: 55px;
  font-size: 24px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #0093d7;
  background-color: #f6f5f7;
}

.form-paket-each input:checked + label {
  border: 2px solid #0093d7;
  color: #0093d7;
}
.back-button {
  border: none;
  background: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 2px;
  color: #505050;
  margin-bottom: 20px;
}
.resend-code {
  font-size: 14px;
  font-weight: 400;
  color: #000000;
}
.resend-code span {
  text-decoration: underline;
  color: #0093d7;
  cursor: pointer;
}
.form-belge label {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #0093d7;
  color: #757575;
  background: #f6f5f7;
  font-size: 16px;
  height: 54px;
  line-height: 54px;
  margin-bottom: 20px;
  padding: 0 15px;
}
#form-hakkında {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #0093d7;
  color: #757575;
  background: #f6f5f7;
  font-size: 16px;
  height: 54px;
  line-height: 54px;
  padding: 0 15px;
  height: 170px;
  max-height: 170px;
  min-height: 170px;
  margin-top: 20px;
}
#belge-belge + label {
  margin-top: 20px;
}
.form-checks {
  color: #505050 !important;
  font-weight: 500;
}
.form-checks a {
  color: #505050 !important;
  font-weight: 700;
  text-decoration: underline;
}
@media (max-width: 991px) {
  .klinik-kayit-ol {
    height: unset;
    display: flex;
    flex-direction: column;
  }
  .klinik-kayit-ol-left {
    width: 100%;
    height: unset;
  }
  .klinik-kayit-ol-right {
    width: 100%;
    padding: 100px 15px;
    margin-top: 30px;
  }
  .klinik-kayit-ol-right-content-each {
    font-size: 14px;
  }
  .form-paket-each label {
    padding: 15px;
  }
  .code-input {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
.next-button {
  border: none;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.next-button span {
  font-weight: 600;
}
#step-2 {
  display: none;
}
.custom-select {
  position: relative;
}

.custom-select select {
  display: none;
}

.select-selected {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #0093d7;
  color: #757575;
  background: #f6f5f7;
  font-size: 16px;
  height: 54px;
  line-height: 54px;
  margin-bottom: 20px;
  padding: 0 15px;
}
.select-selected:hover {
  background: #fff;
  color: #0093d7;
}

.select-selected:after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  width: 16px;
  transition: all 0.3s ease;
  height: 10px;
  background: url(images/dropdown.svg);
}

.select-items div,
.select-selected {
  cursor: pointer;
  user-select: none;
  width: 100%;
  color: #757575;
  background: #f6f5f7;
  font-size: 16px;
  height: 54px;
  line-height: 54px;
  padding: 0 15px;
}
.select-items div {
  border-bottom: 1px solid #757575;
}
.select-items div:last-child {
  border: none;
}
/*style items (options):*/
.select-items {
  position: absolute;
  background-color: #f6f5f7;
  top: 100%;
  left: 0;
  border: 1px solid #0093d7;
  border-top: none;
  right: 0;
  overflow: hidden;
  z-index: 2;
  border-radius: 5px;
}

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background: #fff;
  color: #0093d7;
}

.disabled-paket {
  border: 2px solid #53535363 !important;
  background: #e9e9e9 !important;
  color: #53535363 !important;
}
