:root {
  --black: #000000;
  --white: #ffffff;
  --gray: #f5f5f5;
  --light-gray: #f8f8f8;
  --dark-gray: #ebebeb;
  --blue: #007bff;
  --light-blue: #e6f0ff;
  --dark-blue: #0056b3;
  --green: #28a745;
  --light-green: #e6f4ea;
  --dark-green: #1e7e34;
  --red: #dc3545;
  --light-red: #f8e6e7;
  --dark-red: #c82333;
  --yellow: #ffc107;
  --light-yellow: #fff3cd;
  --dark-yellow: #c69500;
  --acibadem-blue: #2c4964;
  --acibadem: #062c73;
  --font-raleway: 'Raleway', sans-serif;
}
body {
  font-family: var(--font-raleway);
  font-size: 16px;
  color: var(--black);
  background-color: var(--white);
  line-height: 1.42857143;
  margin: 0;
  padding: 0;
}
header {
  background-color: var(--white);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  width: 100%;
  position: fixed;
  z-index: 9;
  border-bottom: 1px solid #ccc;
}
header .topbar {
  background-color: var(--light-blue);
  color: var(--acibadem-blue);
  padding: 10px 0;
}
header .topbar a {
  color: var(--acibadem-blue);
}
header .topbar a:hover {
  color: var(--acibadem);
}
header .topbar .topbar__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 991px) {
  header .topbar .topbar__content {
    flex-direction: column;
  }
}
header .topbar .topbar__content .topbar__content__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  header .topbar .topbar__content .topbar__content__left {
    justify-content: space-between;
  }
}
header .topbar .topbar__content .topbar__content__left .topbar__content__left__icon {
  margin-right: 10px;
}
header .topbar .topbar__content .topbar__content__left .topbar__content__left__text {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  header .topbar .topbar__content .topbar__content__left .topbar__content__left__text {
    font-size: 12px;
  }
}
header .topbar .topbar__content .topbar__content__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
header .topbar .topbar__content .topbar__content__right .topbar__content__right__icon {
  margin-right: 10px;
}
header .topbar .topbar__content .topbar__content__right .topbar__content__right__text {
  font-size: 16px;
  font-weight: 600;
}
header .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
@media screen and (max-width: 991px) {
  header .header {
    padding: 10px 0;
  }
}
header .logo {
  width: 100%;
  max-width: 200px;
  display: block;
}
@media screen and (max-width: 991px) {
  header .logo {
    max-width: 150px;
  }
}
header .logo img {
  width: 100%;
}
header .menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
header .menu ul li a {
  font-size: 16px;
  font-weight: 600;
  color: var(--acibadem-blue);
}
header .menu ul li a:hover {
  color: var(--acibadem);
}
header.fixed .topbar {
  display: none;
}
.btn {
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.375rem 1.75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 1.25rem;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}
.btn.btn-primary {
  color: #fff;
  background-color: var(--blue);
  border-color: var(--blue);
}
.btn.btn-primary:hover {
  color: #fff;
  background-color: var(--dark-blue);
  border-color: var(--dark-blue);
}
.btn.btn-secondary {
  color: #fff;
  background-color: var(--acibadem-blue);
  border-color: var(--acibadem-blue);
}
.btn.btn-secondary:hover {
  color: #fff;
  background-color: var(--acibadem);
  border-color: var(--acibadem);
}
.btn.btn-success {
  color: #fff;
  background-color: var(--green);
  border-color: var(--green);
}
.btn.btn-success:hover {
  color: #fff;
  background-color: var(--dark-green);
  border-color: var(--dark-green);
}
.btn.btn-danger {
  color: #fff;
  background-color: var(--red);
  border-color: var(--red);
}
.btn.btn-danger:hover {
  color: #fff;
  background-color: var(--dark-red);
  border-color: var(--dark-red);
}
.btn.btn-warning {
  color: #fff;
  background-color: var(--yellow);
  border-color: var(--yellow);
}
.btn.btn-warning:hover {
  color: #fff;
  background-color: var(--dark-yellow);
  border-color: var(--dark-yellow);
}
.hero {
  height: auto;
  /*
  background-image: url("../img/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
   */
  background: var(--acibadem);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 150px 0 0;
}
@media screen and (max-width: 991px) {
  .hero {
    height: auto;
    padding: 137px 0 0;
    background-position: left;
  }
}
.hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.hero .hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 991px) {
  .hero .hero__content {
    flex-direction: column;
    gap: 0;
  }
}
.hero .hero__content .hero__content__left,
.hero .hero__content .hero__content__right {
  width: 50%;
}
@media screen and (max-width: 991px) {
  .hero .hero__content .hero__content__left,
  .hero .hero__content .hero__content__right {
    width: calc(100% + 30px);
  }
}
.hero .hero__content .hero__content__left form,
.hero .hero__content .hero__content__right form {
  background: var(--acibadem);
  padding: 30px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, auto);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.hero .hero__content .hero__content__left form .div1,
.hero .hero__content .hero__content__right form .div1 {
  grid-area: 1 / 1 / 2 / 3;
}
.hero .hero__content .hero__content__left form .div2,
.hero .hero__content .hero__content__right form .div2 {
  grid-area: 2 / 1 / 3 / 2;
}
.hero .hero__content .hero__content__left form .div3,
.hero .hero__content .hero__content__right form .div3 {
  grid-area: 2 / 2 / 3 / 3;
}
.hero .hero__content .hero__content__left form .div4,
.hero .hero__content .hero__content__right form .div4 {
  grid-area: 3 / 1 / 4 / 2;
}
.hero .hero__content .hero__content__left form .div5,
.hero .hero__content .hero__content__right form .div5 {
  grid-area: 3 / 2 / 4 / 3;
}
.hero .hero__content .hero__content__left form .div6,
.hero .hero__content .hero__content__right form .div6 {
  grid-area: 4 / 1 / 5 / 3;
}
.hero .hero__content .hero__content__left form .div7,
.hero .hero__content .hero__content__right form .div7 {
  grid-area: 5 / 1 / 6 / 3;
}
.hero .hero__content .hero__content__left form .div8,
.hero .hero__content .hero__content__right form .div8 {
  grid-area: 6 / 1 / 7 / 3;
}
@media screen and (max-width: 991px) {
  .hero .hero__content .hero__content__left form,
  .hero .hero__content .hero__content__right form {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.hero .hero__content .hero__content__left form .title,
.hero .hero__content .hero__content__right form .title {
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
}
.hero .hero__content .hero__content__left form .title b,
.hero .hero__content .hero__content__right form .title b,
.hero .hero__content .hero__content__left form .title strong,
.hero .hero__content .hero__content__right form .title strong {
  font-weight: 700;
}
.hero .hero__content .hero__content__left form p,
.hero .hero__content .hero__content__right form p {
  color: var(--white) !important;
}
.hero .hero__content .hero__content__title {
  font-size: 48px;
  font-weight: 500;
  color: var(--acibadem);
  margin-bottom: 20px;
}
.hero .hero__content .hero__content__title b,
.hero .hero__content .hero__content__title strong {
  font-weight: 700;
}
.hero .hero__content .hero__content__text {
  font-size: 24px;
  font-weight: 400;
  color: var(--acibadem);
  margin-bottom: 20px;
  padding: 16px;
}
.hero .hero__content .hero__content__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .hero__content .hero__content__btn {
  margin-top: 20px;
}
.hero .hero__content__carousel img {
  max-height: 400px !important;
  width: auto;
}
section {
  padding: 50px 0;
}
section .title-area {
  margin-bottom: 50px;
}
section .title-area .title {
  font-size: 48px;
  font-weight: 700;
  color: var(--acibadem);
  margin-bottom: 20px;
}
section .title-area .text {
  font-size: 24px;
  font-weight: 400;
  color: var(--acibadem);
  margin-bottom: 20px;
}
.acibadem-stats {
  background-color: var(--light-blue);
}
.acibadem-stats .icon-grid {
  /* grid auto columns max 4 columns  */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 20px;
}
.acibadem-stats .icon-grid .icon-box {
  text-align: center;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  width: 100%;
  box-sizing: border-box;
  color: var(--acibadem);
}
.lp-text-section .flex-area {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.lp-text-section .flex-area .text-area {
  width: 60%;
  box-sizing: border-box;
  color: var(--acibadem-blue);
}
.lp-text-section .flex-area .text-area p {
  margin-bottom: 20px;
}
.lp-text-section .flex-area .image-area {
  width: 40%;
}
.lp-text-section .flex-area .image-area img {
  max-width: 100%;
}
.lp-text-section .flex-area.left {
  flex-direction: row-reverse;
}
.lp-text-section .flex-area.top,
.lp-text-section .flex-area.bottom {
  flex-direction: column;
}
.lp-text-section .flex-area.top .text-area,
.lp-text-section .flex-area.bottom .text-area {
  width: 100%;
}
.lp-text-section .flex-area.top .image-area,
.lp-text-section .flex-area.bottom .image-area {
  width: 40%;
}
.lp-text-section .flex-area.top .image-area img,
.lp-text-section .flex-area.bottom .image-area img {
  max-width: 100%;
}
.lp-text-section .flex-area.top {
  flex-direction: column-reverse;
}
@media screen and (max-width: 991px) {
  .lp-text-section .flex-area {
    flex-direction: column-reverse;
  }
  .lp-text-section .flex-area .left,
  .lp-text-section .flex-area .right,
  .lp-text-section .flex-area .top,
  .lp-text-section .flex-area .bottom {
    flex-direction: column-reverse;
  }
  .lp-text-section .flex-area .text-area {
    width: 100%;
  }
  .lp-text-section .flex-area .image-area {
    width: 100%;
  }
  .lp-text-section .flex-area .image-area img {
    max-width: 100%;
  }
}
.doctor-flex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-auto-rows: auto;
  grid-gap: 20px;
}
.doctor-flex .figure {
  display: flex;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.doctor-flex .figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-group label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--dark-gray);
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease-in-out;
  resize: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: var(--acibadem);
}
select {
  --webkit-appearance: none;
  width: 100%;
  padding: 10px;
  border: 1px solid var(--dark-gray);
  border-radius: 5px;
  outline: none;
  transition: all 0.3s ease-in-out;
}
select:focus {
  border-color: var(--acibadem);
}
.before-after-landing {
  padding: 50px 0;
}
.before-after-landing .ba-title {
  font-size: 48px;
  font-weight: 400;
  color: var(--acibadem);
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .before-after-landing .ba-title {
    font-size: 32px;
  }
}
.consultation-button {
  background-color: #25d366;
  color: #fff !important;
  border-color: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  margin: 10px auto;
}
.consultation-button:hover {
  background-color: #128c7e;
  border-color: #128c7e;
}
.consultation-button:before {
  content: "\f232";
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  margin-right: 10px;
  display: inline-flex;
}
.short-form-area {
  background: var(--light-green);
  padding: 50px 0;
}
.short-form-area .title {
  font-size: 32px;
  font-weight: 400;
  color: var(--acibadem);
  margin-bottom: 20px;
}
.short-form-area form {
  background: var(--acibadem);
  padding: 20px;
}
.short-form-area form button {
  width: 100%;
}
.w-100 {
  width: 100% !important;
}
/*# sourceMappingURL=style-1.css.map */