$kav_blue: #00214d;
$kav_red: #bf290e;
$kav_gold: #997461;
$small: 767px;
$medium: 991px;
$large: 1300px;
@import url("https://fonts.googleapis.com/css2?family=Comforter&family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,400&display=swap");
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans" !important;
}
.btn-custom-blue {
  color: #fff;
  background-color: $kav_blue;
  border-radius: 0px;
  border: none;
  &:hover {
    color: $kav_red;
  }
}
.col-20{
  flex: 0 0 auto;
  width: 20%;
}
.btn-custom-red {
  color: #fff;
  background-color: $kav_red;
  border-radius: 0px;
  border: none;
  &:hover {
    color: $kav_blue;
  }
}
.btn-custom-blue-border {
  color: $kav_blue;
  border-radius: 0px;
  border: 1px solid $kav_blue;
  &:hover {
    color: $kav_red;
    border: 1px solid $kav_red;
  }
}
a {
  text-decoration: none;
  color: $kav_red;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
button:focus {
  outline: 0;
  box-shadow: none;
}
.no-wrap-row {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
}
.full-blur{
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  backdrop-filter: blur(5px) brightness(0.5);
  z-index: 10;
  opacity: 1;
}
.note{
  font-size: 12px;
}

.contact {
  position: fixed;
  top: -375px;
  left: calc(50% - 275px);
  width: 550px;
  z-index: 12;
  text-align: center;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  .top-contact-form-container {
    background-color: #0000007a;
    padding: 15px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
  }
  .contact-input {
    background-color: rgba(255, 255, 255, 0.09);
    color: #fff;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    font-size: 14px;
  }
  .contact-input::placeholder {
    color: #cacaca;
  }
  .contact-input:focus {
    outline: 0;
    box-shadow: none;
  }
  .contact-input:-webkit-autofill,
  .contact-input:-webkit-autofill:hover,
  .contact-input:-webkit-autofill:focus,
  .contact-input:-webkit-autofill:active {
    border: none;
    border-bottom: 1px solid #ccc;
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
  }
  .send-contact {
    background-color: $kav_red;
    border: none;
    padding: 5px 30px;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 200;
  }
  .contact-button {
    background: #bf290e;
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-weight: 500;
    svg {
      margin-right: 5px;
    }
  }
  .form-check {
    text-align: left;
  }
  .form-check-label {
    color: #fff;
    font-size: 14px;
  }
  .contact-text {
    p {
      font-size: 14px;
      color: #f7f7f7;
    }
  }
}
.bottom-fixed{
  position: fixed;
  bottom: 0px;
  width: 100%;
  z-index: 99999999;
}
.open-mobile-contact{
  background-color: #bf290e;
  border: none;
  padding: 5px 30px;
  font-size: 14px;
  margin-top: 10px;
  font-weight: 200;
  margin-left: 10px;
  margin-bottom: 10px;
  color: #fff;
  border-radius: 14px;
  z-index: 9999999;
  display: none;
}
.mobile-contact-modal {
  position: fixed;
  top: 0px;
  left: 0px;
  bottom: 0px;
  right: 0px;
  z-index: 99999;
  background: #fff;
  padding: 10vh 4vw;
  max-width: 100%;
  text-align: center;
  .close-mobile-contact{
    position: fixed;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
  }
  .contact-text {
    p {
      font-size: 14px;
      color: #000;
    }
  }
  .form-check {
    text-align: left;
  }
  .form-check-label {
    color: #fff;
    font-size: 14px;
  }
  .contact-input {
    background-color: rgba(255, 255, 255, 0.09);
    color: #000;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0px;
    font-size: 14px;
  }
  .contact-input::placeholder {
    color: #000;
  }
  .contact-input:focus {
    outline: 0;
    box-shadow: none;
  }
  .contact-input:-webkit-autofill,
  .contact-input:-webkit-autofill:hover,
  .contact-input:-webkit-autofill:focus,
  .contact-input:-webkit-autofill:active {
    border: none;
    border-bottom: 1px solid #000;
    -webkit-text-fill-color: #000;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
  }
  .send-contact {
    background-color: $kav_red;
    border: none;
    padding: 5px 30px;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 200;
  }
}
.open-contact {
  top: 0px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.is-hidden{
  display: none !important;
  opacity: 0;
  transition: 0.3s;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  .web-action-button{
    margin-left: auto;
    display: flex;
    .btn{
      &:focus{
        outline: 0;
        box-shadow: none;
      }
      &:hover{
        color: $kav_red;
      }
    }
    .btn-languages{
      padding: 2px;
      color:#fff;
      font-size: 13px;
    }
    .btn-search{
      color:#fff;
      font-size: 17px;
    }

  }
  .nav {
    width: 100%;
    width: 100%;
    background: #00214d;
  }
  .overlay {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    overflow-x: hidden;
    transition: 0.4s;
    display: flex;
    .menu-item {
      padding: 0px;
      text-decoration: none;
      font-size: 22px;
      color: #ffffff;
      display: block;
      transition: 0.2s;
      margin-bottom: 15px;
      text-transform: uppercase;
      font-weight: 400;
      letter-spacing: 2px;
        &:hover {
        padding: 0px;
        text-decoration: none;
        font-size: 22px;
        color: $kav_red;
        display: block;
        transition: 0.3s;
        margin-bottom: 15px;
        text-transform: uppercase;
        font-weight: 400;
        letter-spacing: 2px;
      }
    }
    .overlay-content {
      position: relative;
      top: 30%;
      width: 100%;
      text-align: center;
    }
    .full-menu {
      width: 25%;
      background-color: $kav_blue;
      height: 100vh;
      display: inline-block;
      transition: 0.4s;
    }
    .menu-project {
      width: 75%;
      height: 100vh;
      background: #fff;
      padding: 0px 0vh;
      display: flex;
      flex-wrap: wrap;
      align-content: center;
      transition: 0.3s;
      padding: 0px 25vh;
      .row {
        opacity: 0;
        justify-content: center;
        transition: 0.3s;
      }
      &.active{
        .row{
          opacity: 1;
        }
      }
      .kav-konut-slogan {
        font-size: 1.7em;
        letter-spacing: 3px;
        font-weight: 300;
        margin-bottom: 0px;
      }
      .menu-title-project-text {
        width: 100%;
        margin: auto;
        color: #6b6b6b;
        font-size: 0.8rem;
      }
      .project-item{
        height: 70vh;
      }
    }
    .collapse-nav-button {
      position: absolute;
      top: 0px;
      right: 0px;
      padding: 30px 35px;
    }
    .collapse-nav-button:hover svg {
      fill: $kav_red;
    }
  }
  .menu_width {
    width: 100vw;
  }

  .nav-button {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    padding: 25px;
  }
  .nav-button:hover svg {
    fill: $kav_red;
  }
  .go {
    margin-left: 100%;
    display: none;
  }
  .kocaeli-kav-konut-logo {
    margin: 15px 30px;
  }
}

.home-slider-section {
  width: 100%;
  height: 100vh;
  .carousel-buttons {
    position: absolute;
    bottom: 50px;
    left: 10vw;
    z-index: 1;
    display: flex;
    button {
      width: auto;
      position: relative;
      display: flex;
      padding: 5px;
      background: $kav_red;
    }
  }
  .carousel-inner {
    width: 100%;
    height: 100vh;
    .carousel-item {
      height: 100%;
      img {
        height: 100%;
        object-fit: cover;
      }
    }
    .slide-info {
      position: absolute;
      bottom: 35vh;
      color: #fff;
      max-width: calc(100% - 20vw);
      width: calc(100% - 20vw);
      left: 10vw;
      p {
        max-width: 100%;
      }
      .header-project-location {
        background-color: $kav_red;
        padding: 3px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 100;
        svg {
          width: 11px;
          vertical-align: text-bottom;
          margin-bottom: 3px;
        }
      }
      h2 {
        font-size: 5rem;
        font-weight: 400;
        letter-spacing: 4px;
      }
      .btn {
        padding: 5px 20px;
        margin-right: 20px;
        border-radius: 2px;
        svg {
          margin-right: 5px;
        }
        .file-svg {
          width: 12px;
          vertical-align: text-bottom;
          margin-bottom: 2px;
        }
        .dot-svg {
          width: 15px;
          vertical-align: middle;
        }
      }
    }
    img {
      filter: brightness(0.5);
    }
  }
}

.home-kav-konut {
  padding: 15vh;
  .kav-konut-slogan {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 2em;
    letter-spacing: 3px;
    font-weight: 300;
  }
  p {
    margin: auto;
    width: 55%;
    display: block;
  }
}
.home-kav-konut-about {
  .home-left-project {
    padding: 0px;
    .left-project-img {
      width: 100%;
      height: 550px;
      object-fit: cover;
    }
  }
  .kav-konut-about {
    margin-left: -150px;
    width: 450px;
    margin-top: 74px;
    background: #fff;
    padding: 35px 50px;
    border-width: 3px;
    border-style: solid;
    border-image: linear-gradient(to right, $kav_gold, #ffffff 80%);
    border-image-slice: 1;
    h2 {
      color: #956f5b;
      letter-spacing: 10px;
      font-weight: 300;
    }
  }
}
.home-project {
  padding-bottom: 10vh;
  .projects-title {
    margin: 9vh 0px;
    h3 {
      font-size: 2em;
      letter-spacing: 3px;
      font-weight: 300;
    }
    p {
      width: 70%;
      margin: auto;
      color: rgb(107, 107, 107);
    }
  }
}
.project-item{
  overflow: hidden;
  padding: 0px 10px;
  height: 75vh;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
  img{
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0px;
    top: 0px;
    bottom: 0px;
    object-fit: cover;
  }
  .project-status{
    z-index: 9991;
    position: absolute;
    background: #bf290e;
    width: 220px;
    color: #fff;
    text-align: center;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-35deg);
    top: 25px;
    left: -65px;
    font-size: 13px;
  }
  .project-title-area{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0px;
    background: #00214db7;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.5s;
  }
  .project-title{
    color: #fff;
    opacity: 1;
    position: absolute;
    width: 100%;
    left: 0px;
    z-index: 9999;
    text-align: center;
    top: 45%;
    transition: all 1s;
    font-size: 19px;
  }
  .project-info{
    position: absolute;
    z-index: 9999;
    bottom: 10%;
    width: 100%;
    left: 0px;
    background-color: #00214dbe;
    color:#fff;
    opacity: 0;
    transition:opacity 0.5s;
    text-align: center;
    padding: 10px;
  }
  &:hover{
    .project-title-area{
      opacity: 0;
    }
    .project-title{
      top:20%;
      background-color: #00214dbe;
      padding: 5px 0px;
    }
    .project-info{
      opacity: 1;
    }
  }
}
.service-section {
  padding: 0px 0px 5em 0px;
  h2 {
    font-size: 2em;
    letter-spacing: 3px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px;
  }
  .service-footer {
    font-size: 1em;
    letter-spacing: 3px;
    font-weight: 300;
    text-align: center;
    margin-top: 20px;
  }
  .service-box {
    h3 {
      font-size: 1.5em;
      font-weight: 400;
    }
    .sb-icon {
      margin-bottom: 30px;
      width: 100px;
      height: 125px;
      text-align: center;
      position: relative;
      overflow: hidden;
      background-color: transparent;
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s;
      .sb-img-icon {
        position: absolute;
        left: 0;
        bottom: 0;
        -webkit-transition: all 0.3s;
        -o-transition: all 0.3s;
        transition: all 0.3s;
        .dark {
          opacity: 0.2;
          max-height: 70px;
          -webkit-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s;
        }
        .light {
          display: none;
          opacity: 0.2;
          -webkit-transition: all 0.3s;
          -o-transition: all 0.3s;
          transition: all 0.3s;
        }
      }
      &::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        background: #fff;
        left: 25px;
        top: -80px;
        -webkit-transform: rotate(-65deg);
        -ms-transform: rotate(-65deg);
        transform: rotate(-65deg);
      }
    }
    &:hover {
      .sb-icon {
        background-color: $kav_blue;
      }
      .sb-icon .sb-img-icon .light {
        opacity: 1;
        display: block;
      }
      .dark {
        display: none;
      }
      .sb-icon .sb-img-icon {
        left: 15px;
        margin-bottom: 5px;
      }
    }
  }
}

.news-from-us {
  background: rgb(0, 33, 77);
  background: linear-gradient(
    121deg,
    rgba(0, 33, 77, 1) 0%,
    rgba(0, 33, 77, 0.9528186274509804) 38%,
    rgba(191, 41, 14, 0.927608543417367) 74%,
    rgba(191, 41, 14, 1) 100%
  );
  padding: 5vh;
  &.page {

    background: #fff;
    .all-news-title {
      margin-bottom: 5vh;
      position: relative;
      &:after {
        content: attr(data-title);
        position: absolute;
        top: -10px;
        font-size: 90px;
        font-weight: 700;
        color: transparent;
        line-height: 1;
        -webkit-text-stroke: 1px #000;
        z-index: -1;
        font-family: "Roboto Condensed", sans-serif;
        opacity: 0.1;
        left: 0;
        width: calc(100% - 2.5vw);
        text-align: center;
        z-index: 1;
        overflow: hidden;
      }
      p {
        width: 70%;
        margin: auto;
        color: #000;
        z-index: 9;
      }
    }
  }
  .all-news-title {
    margin-bottom: 5vh;
    h4 {
      font-size: 2em;
      letter-spacing: 3px;
      font-weight: 300;
      color: #fff;
    }
    p {
      width: 70%;
      margin: auto;
      color: #000;
      color: #fff;
    }
  }
  .news-item-container{
    z-index: 7;
  }
  .news-item {
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 20px 0px rgba(168, 168, 168, 0.35);
    -moz-box-shadow: 0px 0px 20px 0px rgba(168, 168, 168, 0.35);
    box-shadow: 0px 0px 20px 0px rgba(168, 168, 168, 0.35);
    height: 100%;
    .infos{
      color: #00214d;
      span{
        font-size: 13px;
        font-weight: 500;
        color: rgba(0, 33, 77, 0.719);
      }
    }
    img {
      width: 100%;
      max-width: 100%;
      height: 185px;
      object-fit: cover;
      border-bottom: 1px solid #ccc;
    }
    .news-item-info {
      display: flex;
      flex-direction: column;
      height: 100%;
      padding: 15px;
      .btn-custom-blue-border {
        margin: auto;
        display: block;
        width: fit-content;
        padding: 5px 25px;
      }
      h5 {
        font-size: 20px;
        a {
          color: $kav_blue;
          text-decoration: none;
        }
      }
      p {
        font-size: 17px;
        flex: 1;
      }
    }
  }
}

.project-top-section {
  width: 100%;
  height: 100vh;
  &.project-contact-page{
    .project-top{
      img{
        filter: brightness(0.3);
      }
    } 
    .form-check{
      width: fit-content;
      margin: auto;
    }
    .slide-info {
      bottom: 15vh !important;
    }
    .contact-input {
      background-color: rgba(255, 255, 255, 0.09);
      color: #fff;
      border: none;
      border-bottom: 1px solid #ccc;
      border-radius: 0px;
      font-size: 14px;
    }
    .contact-input::placeholder {
      color: #cacaca;
    }
    .contact-input:focus {
      outline: 0;
      box-shadow: none;
    }
    .contact-input:-webkit-autofill,
    .contact-input:-webkit-autofill:hover,
    .contact-input:-webkit-autofill:focus,
    .contact-input:-webkit-autofill:active {
      border: none;
      border-bottom: 1px solid #ccc;
      -webkit-text-fill-color: #fff;
      -webkit-box-shadow: 0 0 0px 1000px transparent inset;
      transition: background-color 5000s ease-in-out 0s;
    }
    .top-contact-form{
      text-align: left;
    }
    h2 {
      font-size: 4rem !important;
      font-weight: 400;
      letter-spacing: 4px;
    }
    .contact-text{
      font-size: 14px;
    }
  }
  .project-top {
    height: 100%;
    img {
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6);
    }
    .slide-info {
      position: absolute;
      bottom: 25vh;
      color: #fff;
      width: 100%;

      text-align: center;
      .header-project-location {
        background-color: $kav_red;
        padding: 3px 15px;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 100;
        svg {
          width: 11px;
          vertical-align: text-bottom;
          margin-bottom: 3px;
        }
      }
      h2 {
        font-size: 5rem;
        font-weight: 400;
        letter-spacing: 4px;
      }
      h5 {
        margin-top: 20px;
        margin-bottom: 0px;
        letter-spacing: 6px;
        font-weight: 200;
      }
      .btn {
        padding: 5px 20px;
        margin-right: 20px;
        border-radius: 2px;
        svg {
          margin-right: 5px;
        }
        .file-svg {
          width: 12px;
          vertical-align: text-bottom;
          margin-bottom: 2px;
        }
        .dot-svg {
          width: 15px;
          vertical-align: middle;
        }
      }
    }
  }
}
.project-about {
  padding-top: 15vh;
  padding-bottom: 10vh;
  .kav-konut-slogan {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 2em;
    letter-spacing: 3px;
    font-weight: 300;
  }
  p {
    margin: auto;
    width: 75%;
    display: block;
  }
}
.project-e-katalog{
  position: relative;
  padding: 7vh;
  &:after {
    content: attr(data-title);
    position: absolute;
    top: 5vh;
    font-size: 90px;
    font-weight: 700;
    color: transparent;
    line-height: 1;
    -webkit-text-stroke: 1px #000;
    z-index: -1;
    font-family: "Roboto Condensed", sans-serif;
    opacity: 0.1;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
    overflow: hidden;
  }
  .kav-konut-slogan {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 2em;
    letter-spacing: 3px;
    font-weight: 300;
  }
  p {
    margin: auto;
    width: 75%;
    display: block;
  }
  .btn {
    display: block;
    padding: 5px 20px;
    margin:auto;
    border-radius: 2px;
    font-size: 17px;
    width: fit-content;
    svg {
      margin-right: 5px;
    }
    .file-svg {
      width: 12px;
      vertical-align: text-bottom;
      margin-bottom: 2px;
    }
    .dot-svg {
      width: 15px;
      vertical-align: middle;
    }
  }
}
.project-second-about {
  padding: 4vh 0px 8vh;
  background: #00214d;
  color: #fff;
  .kav-konut-slogan {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 2em;
    letter-spacing: 3px;
    font-weight: 300;
  }
  p {
    margin: auto;
    width: 55%;
    display: block;
  }
}

.project-milestones {
  position: relative;
  width: 100%;
  padding: 25px;
  &:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: url("../images/kav-konut-concept-yahyakaptan-banner-1.jpg");
    background-position: center;
    filter: brightness(0.7);
  }
  .milestone {
    min-height: 110px;
    padding-left: 43px;
    padding-top: 25px;
    position: relative;
    color: #fff;
    h2 {
      margin-bottom: 0;
      font-size: 45px;
      display: inline-block;
      float: left;
      position: relative;
      z-index: 1;
    }
    p {
      float: left;
      font-size: 14px;
      margin-top: 5px;
      margin-left: 10px;
      line-height: 1.5;
      position: relative;
      z-index: 1;
      font-weight: 500;
    }
  }
}
.project-galery-section {
  padding-bottom: 10vh;
  .nav-tabs {
    justify-content: center;
    margin-bottom: 15px;
    border-bottom: none;
    .galery-tab-items {
      .galery-tab-button {
        background-color: transparent;
        border: none;
        font-size: 18px;
        margin-right: 15px;
        color: #ccc;
        padding: 0px;
        font-weight: 400;
        &.active {
          color: $kav_red;
        }
        &::after {
          color: #ccc;
          font-weight: 100;
          margin-left: 15px;
          font-size: 30px;
          content: "/";
        }
      }
      &:last-child {
        .galery-tab-button {
          &::after {
            content: "";
          }
        }
      }
    }
  }
  .projects-title {
    margin: 9vh 0px 1vh;
    h3 {
      font-size: 2em;
      letter-spacing: 3px;
      font-weight: 300;
    }
  }
  .project-galery {
    .galery-item {
      margin-bottom: 30px;
      img {
        width: 100%;
        height: 350px;
        object-fit: cover;
      }
    }
  }
}
.project-floor-plans {
  padding-top: 10vh;
  padding-bottom: 10vh;
  .nav-tabs {
    justify-content: center;
    margin-bottom: 15px;
    border-bottom: none;
    .floor-tab-items {
      .floor-tab-button {
        background-color: transparent;
        border: none;
        font-size: 25px;
        margin-right: 15px;
        color: #ccc;
        padding: 0px;
        font-weight: 400;
        &.active {
          color: $kav_blue;
        }
        &::after {
          color: #ccc;
          font-weight: 100;
          margin-left: 15px;
          font-size: 30px;
          content: "/";
        }
      }
      &:last-child {
        .floor-tab-button {
          &::after {
            content: "";
          }
        }
      }
    }
  }
  .kav-konut-slogan {
    margin-bottom: 20px;
    font-size: 2em;
    letter-spacing: 3px;
    font-weight: 300;
  }
  .floor-plans-row {
    justify-content: center;
  }
  .col-4 {
    padding-bottom: 20px;
    .floor-plan-item {
      border: 1px solid $kav_blue;
      .col-12 {
        text-align: center;
        img {
          width: 50%;
          height: auto;
          display: inline-block;
        }
        .floor-plan-title {
          background-color: $kav_blue;
          color: #fff;
          font-size: 1.2rem;
          padding: 5px;
          font-weight: 200;
          letter-spacing: 2px;
        }
        .brut {
          display: block;
          font-size: 14px;
          font-weight: 500;
          margin-bottom: 5px;
        }
        .floor-plan-pictures {
          word-spacing: -5px;
        }
      }
    }
  }
}

.project-film {
  padding-top: 10vh;
  padding-bottom: 10vh;
  background: rgb(0, 33, 77);
  background: linear-gradient(
    121deg,
    rgba(0, 33, 77, 1) 0%,
    rgba(0, 33, 77, 0.9528186274509804) 38%,
    rgba(191, 41, 14, 0.927608543417367) 74%,
    rgba(191, 41, 14, 1) 100%
  );
  .kav-konut-slogan {
    margin-bottom: 50px;
    font-size: 2em;
    letter-spacing: 3px;
    font-weight: 300;
    color: #fff;
  }
}

.project-contact {
  position: relative;
  padding: 8vh;
  color: #fff;
  &:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: url("../images/kav-konut-concept-yahyakaptan-banner-1.jpg");
    background-position: center;
    filter: brightness(0.4);
    z-index: -1;
  }
  .top-contact-form-container {
    background-color: #ffffff1a;
    padding: 6vh 3vw;
    border-radius: 10px;
  }
  .contact-input {
    background-color: transparent;
    color: #fff;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    font-size: 14px;
  }
  .contact-input::placeholder {
    color: #959595;
  }
  .contact-input:focus {
    outline: 0;
    box-shadow: none;
  }
  .contact-input:-webkit-autofill,
  .contact-input:-webkit-autofill:hover,
  .contact-input:-webkit-autofill:focus,
  .contact-input:-webkit-autofill:active {
    border: none;
    border-bottom: 1px solid #ccc;
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
  }
  .send-contact {
    background-color: $kav_red;
    border: none;
    padding: 5px 30px;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 200;
  }
  .contact-button {
    background: #00214d;
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-weight: 500;
    svg {
      margin-right: 5px;
    }
  }
  .form-check {
    text-align: left;
  }
  .form-check-label {
    color: #fff;
    font-size: 14px;
  }
  .contact-text {
    p {
      font-size: 13px;
      color: #f7f7f7;
    }
  }
  .project-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    h4 {
      font-size: 2.5em;
      font-weight: 400;
      letter-spacing: 2px;
    }
  }
}
.contact-page {
  position: relative;
  padding: 9vh;
  color: #000;
  .contact-col{
    &:after {
      content: attr(data-title);
      position: absolute;
      top: -5px;
      font-size: 150px;
      font-weight: 700;
      color: transparent;
      line-height: 1;
      -webkit-text-stroke: 1px #000;
      z-index: -1;
      font-family: "Roboto Condensed", sans-serif;
      opacity: 0.1;
      left: 0;
      width: calc(100% - 2.5vw);
      text-align: center;
      overflow: hidden;
    }
  }
  .top-contact-form-container {
    margin-right: 15px;
    background-color: #121213;
    padding: 3vh 3vw;
    border-radius: 10px;
    color:#fff;
    p{
      font-size: 13px;
    }
    option{
      color:#000;
      font-weight: 400;
    }
  }
  .contact-input {
    background-color: transparent;
    color: #fff;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    font-size: 14px;
  }
  .contact-input::placeholder {
    color: rgb(223, 223, 223);
  }
  .contact-input:focus {
    outline: 0;
    box-shadow: none;
  }
  .contact-input:-webkit-autofill,
  .contact-input:-webkit-autofill:hover,
  .contact-input:-webkit-autofill:focus,
  .contact-input:-webkit-autofill:active {
    border: none;
    border-bottom: 1px solid #ccc;
    -webkit-text-fill-color: #fff;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset;
    transition: background-color 5000s ease-in-out 0s;
  }
  .send-contact {
    background-color: $kav_red;
    border: none;
    padding: 5px 30px;
    font-size: 18px;
    margin-top: 10px;
    font-weight: 200;
  }
  .contact-button {
    background: #00214d;
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    font-weight: 500;
    svg {
      margin-right: 5px;
    }
  }
  .form-check {
    text-align: left;
  }
  .form-check-label {
    color: #fff;
    font-size: 14px;
  }
  .contact-text {
    p {
      font-size: 13px;
      color: #f7f7f7;
    }
  }
  .project-contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    h4 {
      font-size: 2.5em;
      font-weight: 400;
      letter-spacing: 2px;
      text-align: center;
    }
    p{
      text-align: center;
    }
  }
  .kav-konut-contact-info{
    padding: 3vh 0px;
    table{
      width: 100%;
      margin-top: 20px;
      td{
        &.icon{
          width: 60px;
          font-size: 25px;
          text-align: center;
        }
        i{
          color:$kav_blue
        }
      }
    }
    .phone-number,
    .address,
    .email {
      display: block;
      color: #000000;
      text-decoration: none;
      font-size: 18px;
    }
    p {
      margin-bottom: 0px;
    }
    ul.social-media {
      margin-top: 20px;
      margin-bottom: 0px;
      padding-left: 0px;
      text-align: center;
      li {
        display: inline-block;
        list-style: none;
        a {
          color: $kav_blue;
          font-size: 40px;
          margin-right: 7px;
        }
      }
    }
  }
}
.projects-page{
  padding-bottom: 10vh;
  padding-top: 5vh;
  .projects-title {
    margin-top: 4vh;
    margin-bottom: 4vh;
  }
  .nav-tabs {
    justify-content: center;
    margin-bottom: 15px;
    border-bottom: none;
    .project-tab-items {
      .project-tab-button {
        background-color: transparent;
        border: none;
        font-size: 18px;
        margin-right: 15px;
        color: #ccc;
        padding: 0px;
        font-weight: 500;
        &.active {
          color: $kav_red;
        }
        &::after {
          color: #ccc;
          font-weight: 100;
          margin-left: 15px;
          font-size: 30px;
          content: "/";
        }
      }
      &:last-child {
        .project-tab-button {
          &::after {
            content: "";
          }
        }
      }
    }
  }
}
footer {
  background-color: #121213;
  padding: 7vh;
  color: #8d8d8d;
  .kav-konut-logo {
    img {
      margin-bottom: 10px;
      width: 40%;
    }
  }
  .kav-konut-about {
    font-size: 0.8rem;
    color: #8d8d8d;
    margin-right: 40px;
    margin-bottom: 25px;
  }
  .phone-number,
  .address,
  .email {
    display: block;
    color: #8d8d8d;
    text-decoration: none;
    margin-top: 5px;
    font-size: 14px;
    i {
      margin-right: 5px;
    }
    &:hover {
      color: #fff;
    }
  }
  p {
    margin-bottom: 0px;
  }
  ul.social-media {
    margin-bottom: 0px;
    padding-left: 0px;
    li {
      display: inline-block;
      list-style: none;
      a {
        color: #8d8d8d;
        font-size: 30px;
        margin-right: 7px;
        &:hover {
          color: #fff;
        }
      }
    }
  }
  .footer-menu-area {
    padding: 0px 15px;
    .footer-menu {
      padding-left: 0px;
      li {
        list-style: none;
        margin-bottom: 5px;
        a {
          color: #8d8d8d;
          text-decoration: none;
          font-size: 14px;
          margin-bottom: 15px;
          &:hover {
            color: #fff;
          }
        }
      }
    }
  }
  .footer-kav-konut-contact {
    padding-left: 20px;
  }
}
.breadcrumb-item{
  color:#fff !important;
}
.news-image{
  float: left;
  padding-right: 20px;
  padding-bottom: 20px;
}
.news{
  margin-top: 95px;  
  margin-bottom: 25px;
  .breadcrumb-item{
    color:#000 !important;
  }
}
.page-top-section {
  width: 100%;
  height: 180px;
  position: relative;
  margin-top: 75px;
  .page-top {
    height: 100%;
    img {
      height: 100%;
      object-fit: cover;
      filter: brightness(0.6);
    }
    .page-info {
      position: absolute;
      bottom: 10px;
      color: #fff;
      width: 100%;
      h1 {
        font-size: 4rem;
        font-weight: 400;
        letter-spacing: 4px;
      }
    }
  }
}

.page-about {
  padding: 10vh;
  position: relative;
  .kav-konut-slogan {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 2em;
    letter-spacing: 3px;
    font-weight: 300;
  }
  p {
    margin: auto;
    display: block;
  }
  .about-image{
    img{
      height: 100%;
      object-fit: cover;
    }
  }
}
.page-about-first-desc {
  padding: 10vh;
  padding-top: 0px;
  position: relative;
  .about-col {
    position: relative;
    &:after {
      content: attr(data-title);
      position: absolute;
      top: -50px;
      font-size: 95px;
      font-weight: 700;
      color: transparent;
      line-height: 1;
      -webkit-text-stroke: 1px #000;
      z-index: -1;
      font-family: "Roboto Condensed", sans-serif;
      opacity: 0.1;
      left: 0;
      width: calc(100% - 2.5vw);
      text-align: left;
      overflow: hidden;
    }
    &:first-child {
      padding-right: 2.5vw;
    }
    &:last-child {
      padding-left: 2.5vw;
    }
  }
}
.bariz-medya {
  background-color: #151519;
  padding: 15px;
  font-size: 13px;
}
.no-wrap{
  display: block;
  white-space:nowrap;
  overflow:auto;
  width: 100%;
  text-align: center;
  font-size: 0px;
  .col-20{
    display: inline-block;
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media screen and (max-width: $large) {
  header {
    .overlay {
      .menu-project {
        padding: 0px 10vh;
      }
    }
  }
}
@media screen and (max-width: $medium) {
  .container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl{
    overflow: hidden;
  }
  .tablet-hidden {
    display: none !important;
  }
  header {
    .overlay {
      .full-menu {
        width: 100%;
        &.active{
          width: 100%;
        }
      }
    }
  }
  .home-kav-konut {
    p {
      width: 100%;
    }
  }
  .news-from-us {
    .news-item {
      margin-bottom: 30px;
    }
    .row {
      justify-content: center;
    }
  }
  footer {
    .footer-menu-area {
      margin-bottom: 20px;
    }
    .footer-kav-konut-about {
      margin-bottom: 20px;
    }
  }
  header {
    .overlay {
      .menu-project {
        padding: 0px 5vh;
      }
    }
  }
  .service-section {
    .row {
      justify-content: center;
    }
  }
  .all-project{
    .no-wrap{
      max-width: 100vw;
      overflow:auto;
      flex-wrap: nowrap;
      .col-20{
        width: 32%;
      }
    }
  }
}

@media screen and (max-width: $small) {
  .page-top-section {
    .page-top {
      .page-info {
        h1 {
          font-size: 2.2rem;
        }
      }
    }
  }
  .open-mobile-contact{
    display: block;
  }
  .page-about {
    padding: 40px 15px;
  }
  .page-about-first-desc {
    padding: 40px 15px;
  }
  .contact-page {
    padding: 2vh;
    .contact-col{
      &:after {
        font-size: 70px;
      }
    }
  }
  .page-about-first-desc {
    .about-col {
      &:after {
        font-size: 50px;
      }
    }
  }
  .news-from-us {
    &.page {
      .all-news-title {
        &:after {
          font-size: 50px;
        }
      }
    }
  }
  .project-e-katalog{
    &:after {
      font-size: 50px;
    }
  }
  .mobile-hidden {
    display: none !important;
  }
  .full-blur{
    display: none;
  }
  .project-galery {
    .galery-item {
      margin-bottom: 10px !important;
      img {
        height: 150px !important;
      }
    }
  }
  .project-e-katalog{
    padding: 3vh;
  }
  .home-kav-konut-about {
    .kav-konut-about {
      margin-left: auto !important;
      margin-right: auto !important;
      border: none;
      margin-top: -100px;
      padding: 35px 5vw;
    }
    .home-right-about {
      padding: 0px;
    }
  }
  .home-kav-konut {
    padding: 10vh 5vw;
  }
  .news-from-us {
    padding: 5vh 5vw;
  }
  .home-slider-section {
    .carousel-inner {
      .slide-info {
        h2 {
          font-size: 3rem;
        }
      }
    }
  }
  .home-project {
    .projects-title {
      p {
        width: 100%;
      }
    }
    .container-fluid {
      padding: 0px;
    }
  }
  .all-project{
    .col-20{
      width: 50% !important;
    }
  }
  .service-section {
    .service-box {
      .sb-icon {
        margin: auto;
      }
    }
  }
  .home-slider-section {
    .carousel-inner {
      .slide-info {
        left: 5vw;
      }
    }
  }
  .project-top-section {
    .project-top {
      .slide-info {
        h2 {
          font-size: 3rem;
        }
      }
    }
  }
  .project-about {
    padding: 10vh 5vw;
    p {
      width: 100%;
    }
  }
  .project-film {
    iframe {
      height: 320px;
    }
  }
  .project-contact {
    padding: 8vh 5vw;
    .mobile-reverse {
      flex-direction: column-reverse;
    }
  }
  footer {
    padding: 7vh 5vw;
  }
}
.project-features{
  padding-bottom: 10vh;
  .features-images{
    position: relative;
    height: 100%;
    img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      position: absolute;
      z-index: 1;
      transition: all 1s;
      -moz-transition: all 1s;
      -webkit-transition: all 1s;
      -ms-transition: all 1s;
      -o-transition: all 1s;
      opacity: 0;
      object-position: left;
      &.active{
        opacity: 1;
        object-position: center;
      }
    }
  }
  .accordion-button{
    padding: 7px 10px;
    font-size: 15px;
    background-color: #ffffff;
    color:#000;
  }
  .accordion-button::after{
    width: 1rem;
    height: 1rem;
    background-size: 0.9rem;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAxNiAxNicgZmlsbD0nI2JmMjkwZSc+PHBhdGggZmlsbC1ydWxlPSdldmVub2RkJyBkPSdNMS42NDYgNC42NDZhLjUuNSAwIDAgMSAuNzA4IDBMOCAxMC4yOTNsNS42NDYtNS42NDdhLjUuNSAwIDAgMSAuNzA4LjcwOGwtNiA2YS41LjUgMCAwIDEtLjcwOCAwbC02LTZhLjUuNSAwIDAgMSAwLS43MDh6Jy8+PC9zdmc+);
  }
  .accordion-button:not(.collapsed){
    background-color: $kav_blue;
    color:#fff;
  }
}
.cookie-space{
  height: 29px;
}
#cookie {
  padding: 5px 10px;
  background: rgba(0, 33, 77, 0.74);
  color: #f1f1f1;
  box-shadow: 0 2px 3px rgba(51, 51, 51, 0.25);
  font-size: 13px;
  text-align: center;
  z-index: 99;
  button {
    border: 0;
    padding: 5;
    box-shadow: none;
    margin-left: 5px;
    cursor: pointer;
    background-color: transparent;
    color:#fff;
    position: fixed;
    bottom: 5px;
    right: 5px;
    &:hover {
      box-shadow: 0 1px 1px rgba(51, 51, 51, 0.5);
    }
  }
}

.project-drag{
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}