@charset "UTF-8";
/*
  *░░░░░░░░░░░░░░░░▄▄█████████████░░░░▄███*
  *░░░░░░░░░░░░░░▄████████████████▄▄████▀░*
  *░░░░░░░░░░░░░░▀████████████████████▀░░░*
  *░░░░░░░░░░░░░░░███████████████▀░█▀░░░░░*
  *░░░░░░░░░░░░░░░▀█░░░░▀▀▀▀▀░░░░░░░▀▄░░░░*
  *░░░░░░░░░░░░░░░░█░░░░░░░░▀▀▀▄░░░░▀█▄░░░*
  *░░░░░░░░░░░░░░░░█░░░░░▄▄▀██▀█░▄▀▀█▀█░░░*
  *░░░░░░░░░░░░░░░▄█▄░░░░▀▄░░░▄▀░░▀▄▄▄▀░░░*
  *░░░░░░░░░░░░░░█▄▄▄░░░░░░███▄▄▄▄░░░█▄░░░*
  *░░░░░░░░░░░░░░▀▄█▄░░░░░░▄▀░░░░▀▀▀▀░░▀▄░*
  *░░░░░░░░░░░░░░▄▄█░░░░░░█░░░░░░░░░░░░░░█*
  *░░░░░░░░░░░░░████░░░░░█░░▄▀▄▀▄▀▄▀▄▀▄▀▄█*
  *░░░░░░░░░▄▄█████░░░░░░▀▄▀░░░░░░▄█░░░░░░*
  *░░░░░░▄█████████▄░░░░░░░░░░░░▄█░░░░░░░░*
  *░░░▄▄███████████▀▀▄▄▄░░░░░▄███▄░░░░░░░░*
  *░▄██████████████░░░░▀▀▀▀▀▀▀░████▄░░░░░░*
  *▄███████████████░░░░░░░░░░░░█████▄░░░░░*
  *█████████████████▄▄▄▄▄▄▄▄▄▄▄██████▄░░░░*
*/
/*
  ! Built with ❤️ by erkamkaraoglan.com.tr
  ? info@erkamkaraoglan.com.tr
*/
/* // ! Grid Kullanımı
@include grid('grid-template-rows', '1fr 2fr', 10px, 20px);
@include grid('grid-template-columns, 'repeat(3, auto)', 10px, 15px);
*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  --section-padding: clamp(2em, 8vw, 4em);
  --container-padding: clamp(2.5em, 8vw, 8em);
  --gap-padding: clamp(1.5em, 4vw, 2.5em);
  --font-size-sm: clamp(0.8rem, -0.11vw + 0.84rem, 0.75rem);
  --font-size-base: clamp(1rem, 0vw + 1rem, 1rem);
  --font-size-md: clamp(1.25rem, 0.18vw + 1.19rem, 1.33rem);
  --font-size-lg: clamp(1.56rem, 0.47vw + 1.4rem, 1.78rem);
  --font-size-xl: clamp(1.95rem, 0.9vw + 1.64rem, 2.37rem);
  --font-size-xxl: clamp(2.44rem, 1.56vw + 1.91rem, 3.16rem);
  --font-size-xxxl: clamp(3.05rem, 2.52vw + 2.19rem, 4.21rem);
  line-height: 1.1; }
  @media (max-width: 1200px) {
    * {
      --container-padding: 5vw; } }
  @media (max-width: 520px) {
    * {
      --container-padding: 2.2vw;
      --gap-padding: 2.2vw; } }

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box; }

a {
  color: #494948;
  text-decoration: none;
  transition: 0.5s; }
  a:hover, a:focus, a:active {
    color: #6f6f6f;
    outline: none !important; }

button {
  outline: none !important;
  color: #494948; }
  button:focus, button:active {
    outline: none !important; }

b,
strong {
  font-weight: 600; }

p {
  margin: 0px; }

ul {
  margin: 0px;
  padding: 0px;
  list-style: none; }
  ul li {
    list-style: none;
    padding: 0px; }

::selection {
  color: #000;
  background: #dbdbdb; }

::-moz-selection {
  color: #000;
  background: #dbdbdb; }

::-webkit-input-placeholder {
  color: #6f6f6f;
  text-overflow: ellipsis; }

::-moz-placeholder {
  color: #6f6f6f;
  text-overflow: ellipsis;
  opacity: 1; }

::-ms-input-placeholder {
  color: #6f6f6f;
  text-overflow: ellipsis;
  opacity: 1; }

::focus {
  outline: 0 !important; }

h1 {
  font-size: var(--font-size-xxxl); }

h2 {
  font-size: var(--font-size-xxl); }

h3 {
  font-size: var(--font-size-xl); }

h4 {
  font-size: var(--font-size-lg); }

h5 {
  font-size: var(--font-size-md); }

h6 {
  font-size: var(--font-size-base); }

p {
  font-size: var(--font-size-sm); }

span {
  font-size: var(--font-size-sm); }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 1rem;
  margin-top: 0; }

section {
  padding-top: var(--section-padding);
  padding-bottom: var(--section-padding); }

body {
  font-family: "Poppins", sans-serif;
  color: #494948; }

.container {
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  max-width: 75em; }

.container.large {
  padding-left: var(--gap-padding);
  padding-right: var(--gap-padding); }

.container.medium {
  padding-left: calc(var(--container-padding) * 2);
  padding-right: calc(var(--container-padding) * 2); }

.container.small {
  padding-left: calc(var(--container-padding) * 3);
  padding-right: calc(var(--container-padding) * 3); }

.header {
  background-color: #fff;
  padding: 1rem 0; }
  .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .header__inner .logo a img {
      height: 60px;
      position: relative;
      z-index: 999999; }
    .header__inner .menu {
      height: 60px;
      display: flex;
      align-items: flex-end; }
      .header__inner .menu ul {
        display: flex;
        gap: 20px; }
        .header__inner .menu ul li {
          position: relative; }
          .header__inner .menu ul li .dropdown-toggle {
            display: flex;
            align-items: center; }
          .header__inner .menu ul li .dropdown {
            display: none;
            position: absolute;
            top: 100%;
            margin-top: 16px;
            background: #53acbb;
            z-index: 999999;
            padding: 14px;
            width: 200px; }
            .header__inner .menu ul li .dropdown li a {
              text-decoration: none;
              display: block;
              color: #fff;
              margin-bottom: 15px; }
            .header__inner .menu ul li .dropdown li:last-child a {
              margin-bottom: 0; }
        .header__inner .menu ul a {
          text-transform: uppercase; }
      @media (max-width: 992px) {
        .header__inner .menu {
          display: none; } }
    .header__inner .scoilHeader {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      height: 60px; }
      @media (max-width: 520px) {
        .header__inner .scoilHeader {
          display: none; } }
      .header__inner .scoilHeader a img {
        width: 30px; }
    .header__inner .toggle {
      position: relative;
      z-index: 99999; }
      .header__inner .toggle button {
        background-color: transparent;
        border: none;
        font-size: 29px; }
        .header__inner .toggle button i {
          color: #000; }
          .header__inner .toggle button i:before {
            transform: rotate(-90deg); }
        .header__inner .toggle button .ri-close-line {
          color: #000; }
  .header .mobilMenu {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: 100vh;
    z-index: 99999; }
    .header .mobilMenu ul {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%; }
      .header .mobilMenu ul li .dropdown {
        height: auto; }
  .header .sosyalMobil {
    display: flex;
    position: absolute;
    bottom: 0;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    width: 100%; }

.xs-none {
  display: none; }
  @media (max-width: 520px) {
    .xs-none {
      display: block; } }
  @media (max-width: 992px) {
    .xs-none {
      display: block; } }

.no-padding {
  padding-top: unset;
  padding-bottom: unset; }

.slider {
  background-color: #01aebc;
  position: relative;
  overflow: hidden; }
  .slider .text {
    position: absolute;
    right: 3rem;
    bottom: 3rem;
    width: 60%;
    text-align: right; }
    @media (max-width: 520px) {
      .slider .text {
        width: 100%;
        right: 1rem;
        bottom: 1rem; } }
    .slider .text h2 {
      font-weight: 200;
      color: #fff;
      margin: 0;
      text-shadow: 1px 2px 3px #000;
      border-bottom: 3px solid #bababa; }
      @media (max-width: 520px) {
        .slider .text h2 {
          font-size: var(--font-size-base); } }
      .slider .text h2:first-child {
        margin-right: 12rem;
        border-bottom: none; }
        @media (max-width: 520px) {
          .slider .text h2:first-child {
            margin-right: 2rem; } }

.homeBar {
  margin-top: -3px;
  position: relative;
  z-index: 999;
  background: #fff; }
  @supports (display: grid) {
    .homeBar__inner {
      display: grid;
      grid-template-columns: repeat(4, auto);
      grid-gap: 0px 0px; } }
  @media (max-width: 520px) {
    .homeBar__inner {
      display: flex;
      flex-direction: column; } }
  .homeBar__inner .title {
    background: #53acbb;
    position: relative;
    padding-right: 0px !important; }
    .homeBar__inner .title::after {
      content: "";
      display: block;
      position: absolute;
      right: -40px;
      top: 0;
      display: block;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 46px 0 45px 40px;
      border-color: transparent transparent transparent #53acbb; }
      @media (max-width: 1200px) {
        .homeBar__inner .title::after {
          border-width: 39px 0 31px 21px;
          right: -20px; } }
      @media (max-width: 520px) {
        .homeBar__inner .title::after {
          content: none; } }
    .homeBar__inner .title .text h5 {
      font-weight: 200 !important;
      text-transform: capitalize !important;
      font-size: calc(var(--font-size-base) * 1.18) !important; }
  .homeBar__inner .whatsapp {
    background-color: #b657b4;
    padding-left: 3rem !important; }
    @media (max-width: 520px) {
      .homeBar__inner .whatsapp {
        padding-left: 25px !important; } }
  .homeBar__inner .randevu {
    background-color: #5389bb; }
  .homeBar__inner .mail {
    background-color: #b2b657; }
  .homeBar__inner .box {
    display: flex;
    padding: 25px;
    gap: 15px;
    color: #fff; }
    @media (max-width: 1200px) {
      .homeBar__inner .box {
        padding: 15px; } }
    .homeBar__inner .box .text h5 {
      margin-bottom: 5px;
      font-weight: bold;
      color: #fff;
      text-transform: uppercase;
      font-size: var(--font-size-base); }
    .homeBar__inner .box .text p {
      font-weight: bold; }
    .homeBar__inner .box .text a {
      font-weight: 300;
      color: #fff; }
      @media (max-width: 1200px) {
        .homeBar__inner .box .text a {
          font-size: 12px; } }
    .homeBar__inner .box .images img {
      width: 35px;
      height: 30px; }

.cocukHome {
  padding-top: 0; }
  .cocukHome__title {
    text-align: center;
    padding: 0 calc(var(--container-padding) * 1.5) var(--section-padding); }
    .cocukHome__title h3 {
      font-weight: 300; }
    .cocukHome__title p {
      font-weight: 200;
      font-size: var(--font-size-md); }
  @supports (display: grid) {
    .cocukHome__inner {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 15px 15px; } }
  @supports (display: grid) {
    .cocukHome__inner {
      display: grid;
      grid-template-rows: repeat(2, 1fr);
      grid-gap: 15px 15px; } }
  @media (max-width: 520px) {
    .cocukHome__inner {
      display: flex;
      flex-direction: column; } }
  .cocukHome__inner .wrapper a {
    display: block;
    position: relative; }
    .cocukHome__inner .wrapper a img {
      width: 100%; }
    .cocukHome__inner .wrapper a h4 {
      position: absolute;
      left: 50%;
      top: 80%;
      transform: translate(-50%, -80%);
      -webkit-transform: translate(-50%, -80%);
      -moz-transform: translate(-50%, -80%);
      -ms-transform: translate(-50%, -80%);
      -o-transform: translate(-50%, -80%);
      margin-bottom: 0;
      color: #fff;
      text-align: center;
      font-weight: 300;
      width: 100%;
      font-size: calc(var(--font-size-md) * 1.4);
      text-transform: uppercase; }

.footer {
  background-color: #cbe6ea;
  padding: var(--section-padding) 0 0; }
  .footer__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 3rem; }
    .footer__inner .logo a img {
      height: 80px; }
      @media (max-width: 520px) {
        .footer__inner .logo a img {
          width: 100%;
          height: auto; } }
    .footer__inner .contact ul {
      display: flex;
      gap: 40px; }
      @media (max-width: 520px) {
        .footer__inner .contact ul {
          display: flex;
          flex-direction: column; } }
      .footer__inner .contact ul li a {
        display: flex;
        gap: 20px; }
        .footer__inner .contact ul li a img {
          height: 30px; }
        .footer__inner .contact ul li a .text h5 {
          margin-bottom: 5px; }
  .footer__corp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--section-padding);
    padding-bottom: 10px;
    font-size: 13px;
    gap: 15px; }
    @media (max-width: 520px) {
      .footer__corp {
        display: flex;
        flex-direction: column; } }
    .footer__corp p {
      font-size: 11px; }
    .footer__corp ul {
      display: flex;
      gap: 10px; }
      .footer__corp ul li a {
        width: 35px;
        height: 35px;
        display: grid;
        place-content: center;
        background-color: #778285;
        color: #fff;
        border-radius: 30px; }
    .footer__corp .right a {
      font-size: 10px; }
      .footer__corp .right a img {
        height: 13px; }

.bract {
  background-color: #01aebc;
  margin-bottom: -3px;
  position: relative; }
  .bract .container {
    position: relative; }
  .bract__inner .text {
    position: absolute;
    right: calc(var(--container-padding) * 1.2);
    bottom: 30px;
    border-bottom: 1px solid #eee;
    width: 50%;
    text-align: right; }
    .bract__inner .text h2 {
      font-weight: 200;
      color: #fff;
      margin: 0;
      text-shadow: 1px 2px 3px #000; }

.contentPages {
  position: relative;
  background-color: #fff;
  margin-bottom: -3px; }
  @supports (display: grid) {
    .contentPages__kurumsal {
      display: grid;
      grid-template-columns: 30% 1fr;
      grid-gap: 30px 30px; } }
  @media (max-width: 520px) {
    .contentPages__kurumsal {
      display: flex;
      flex-direction: column; } }
  .contentPages__kurumsal .images {
    display: flex;
    flex-direction: column;
    gap: 30px; }
    .contentPages__kurumsal .images img {
      width: 100%; }
  .contentPages__kurumsal .text h2 {
    font-weight: 300;
    color: #01aebc; }
  .contentPages__kurumsal .text b {
    margin-bottom: 10px;
    display: block; }
  .contentPages__kurumsal .text p {
    margin-bottom: 10px;
    font-size: calc(var(--font-size-base) / 1.1);
    line-height: 1.5; }
  .contentPages__hastalik {
    display: flex;
    flex-direction: column;
    gap: 30px; }
    .contentPages__hastalik .images img {
      width: 100%; }
    .contentPages__hastalik .text h3 {
      font-weight: 300; }
    .contentPages__hastalik .text p {
      margin-bottom: 10px;
      font-size: calc(var(--font-size-base) / 1.1);
      line-height: 1.5; }
    .contentPages__hastalik .socialMedia {
      padding: 2rem 0;
      border-top: 1px solid #cbcbcb;
      border-bottom: 1px solid #cbcbcb; }
      .contentPages__hastalik .socialMedia ul {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px; }
        .contentPages__hastalik .socialMedia ul li a {
          width: 40px;
          height: 40px;
          display: grid;
          place-content: center;
          border-radius: 30px;
          background-color: #778285;
          color: #fff; }
    .contentPages__hastalik .rightLeftBtn {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%; }
      .contentPages__hastalik .rightLeftBtn a {
        border: 1px solid #cbcbcb;
        color: #01aebc;
        padding: 10px;
        display: flex;
        align-items: center;
        gap: 10px; }
  @supports (display: grid) {
    .contentPages__haberler {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      grid-gap: 30px 30px; } }
  @media (max-width: 520px) {
    .contentPages__haberler {
      display: flex;
      flex-direction: column; } }
  .contentPages__haberler .box a img {
    width: 100%; }
  .contentPages__haberler .box a h6 {
    margin-top: 10px; }
  @supports (display: grid) {
    .contentPages__videolar {
      display: grid;
      grid-template-columns: repeat(3,1fr);
      grid-gap: 30px 30px; } }
  @media (max-width: 520px) {
    .contentPages__videolar {
      display: flex;
      flex-direction: column; } }
  .contentPages__videolar .box a img {
    width: 100%;
    height: 250px; }
  .contentPages__videolar .box a h6 {
    margin-top: 10px; }
  @supports (display: grid) {
    .contentPages__sosyalmedya {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      grid-gap: 30px 30px; } }
  @media (max-width: 520px) {
    .contentPages__sosyalmedya {
      display: flex;
      flex-direction: column; } }
  .contentPages__sosyalmedya .box a img {
    width: 100%;
    height: 250px; }
  .contentPages__sosyalmedya .box a h6 {
    margin-top: 10px; }

.contactPages {
  padding-top: 0; }
  @supports (display: grid) {
    .contactPages__inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 0px 0px; } }
  @media (max-width: 520px) {
    .contactPages__inner {
      display: flex;
      flex-direction: column; } }
  .contactPages__inner .form {
    background-color: #fff;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid #eee;
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee; }
    .contactPages__inner .form form {
      display: flex;
      flex-direction: column;
      gap: 10px; }
      .contactPages__inner .form form input,
      .contactPages__inner .form form textarea {
        border-radius: 0;
        border: 1px solid #494948;
        background-color: transparent;
        padding: 10px; }
      .contactPages__inner .form form textarea {
        height: 90px; }
      .contactPages__inner .form form button {
        float: right;
        width: 120px;
        background-color: #000;
        height: 40px;
        color: #fff;
        border: none; }

/*# sourceMappingURL=style.css.map */



.col-md-4 {
width:25%;
float:left;
}

.col-md-4 img {width:95%;margin:20px;}

.video_box {float: left;width:50%; }
.video_box iframe {margin:20px ;width:97% !important}


@media (max-width: 720px) {

  .col-md-4 img {width:75% !important}
  .col-md-4 {width:50% !important}
  .video_box { width:100%; }
  .bract__inner .text h2 {
    font-size:18px !important
  }

 }