@charset "UTF-8";
*:focus {
  outline: 0;
}

.ft-ar {
  font-family: Arial;
}

body, html {
  height: calc(100% - 50px);
}

form {
  display: block;
  position: relative;
}
@media (max-width: 1024px) {
  form {
    text-align: center;
  }
}
form .search-cont {
  display: block;
  margin: 0 auto;
  width: 50%;
  position: relative;
}
@media (max-width: 1024px) {
  form .search-cont {
    width: 100%;
  }
}
form .search-cont input {
  display: block;
  width: 100%;
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
  border-radius: 20px;
  border: 3px solid #e8e8e8;
  transition: all 0.5s ease;
}
form .search-cont input:focus {
  border: 3px solid rgba(15, 29, 62, 0.5);
}
form .search-cont input::placeholder {
  color: #999;
}
form .search-cont .button {
  position: absolute;
  right: 6px;
  top: 6px;
  font-weight: 500;
  color: #fff;
  background-color: #0F1D3E;
  border: 0;
  cursor: pointer;
}
form .search-cont .button:hover {
  background-color: #222;
}
form .all-projects {
  position: absolute;
  display: inline-block;
  right: 10px;
  top: 3px;
  font-weight: 500;
  background-color: #0F1D3E !important;
  border: 0;
  color: #fff;
  cursor: pointer;
  vertical-align: top;
}
@media (max-width: 1024px) {
  form .all-projects {
    position: relative;
    margin-top: 5px;
  }
}
form .all-projects:hover {
  background-color: #102556 !important;
}

section {
  display: block;
  background-color: #f5f6fa;
}
section .head {
  display: block;
  font-size: 44px;
  font-weight: 700;
  padding: 40px 15%;
  background-color: #0F1D3E;
  color: #fff;
}
@media (max-width: 1024px) {
  section .head {
    padding: 30px 5%;
    font-size: 32px;
  }
}
section .project-bg {
  display: block;
  position: sticky;
  top: 0;
  width: 100%;
  height: 500px;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1024px) {
  section .project-bg {
    height: 200px;
  }
}
section .project-bg .mask {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000000;
  background: linear-gradient(1deg, rgba(0, 0, 0, 0.51) 9%, rgba(0, 0, 0, 0.23) 37%, rgba(237, 221, 83, 0) 51%);
}
section .project-bg h1 {
  display: block;
  position: absolute;
  left: 50%;
  bottom: 5%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}
@media (max-width: 1024px) {
  section .project-bg h1 {
    font-size: 24px;
  }
}
section .page-content {
  display: block;
  padding: 20px 15%;
  font-size: 0;
}
@media (max-width: 1024px) {
  section .page-content {
    padding: 20px 5%;
  }
}
section .page-content .text-content {
  display: block;
  font-size: 0;
}
section .page-content .text-content img {
  display: inline-block;
  vertical-align: top;
  width: 40%;
  height: auto;
  border-radius: 10px;
}
@media (max-width: 1024px) {
  section .page-content .text-content img {
    width: 100%;
  }
}
section .page-content .text-content .text {
  display: inline-block;
  vertical-align: top;
  width: 60%;
  padding: 0 0 0 20px;
}
@media (max-width: 1024px) {
  section .page-content .text-content .text {
    width: 100%;
    padding: 0 0 0 0;
  }
}
section .page-content .text-content .text h4 {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
}
section .page-content .text-content .text p {
  display: block;
  font-size: 16px;
  padding: 10px 0 30px 0;
  font-weight: 300;
  line-height: 1.8;
}
section .breadcrumb {
  display: block;
  padding: 30px 15%;
  background-color: #f9fafc;
}
@media (max-width: 1024px) {
  section .breadcrumb {
    padding: 14px 5%;
  }
}
section .breadcrumb ul {
  display: block;
}
section .breadcrumb ul li {
  display: inline-block;
  vertical-align: top;
}
section .breadcrumb ul li img {
  display: inline-block;
  width: 16px;
  height: auto;
}
section .breadcrumb ul li a {
  display: block;
  padding: 0 5px;
  font-size: 14px;
  color: #989898;
}
@media (max-width: 1024px) {
  section .breadcrumb ul li a {
    font-size: 14px;
    padding: 0 2px;
  }
}
section .breadcrumb ul li a:hover {
  color: #0F1D3E;
}
section ul.list {
  display: block;
  background-color: #F5F6FA;
  padding: 20px 15%;
}
section ul.list li.item {
  display: inline-block;
  width: 16%;
  background-color: #fff;
  border-radius: 6px;
  margin: 0 1px;
  overflow: hidden;
}
section ul.list li.item a {
  display: block;
  padding: 8px;
}
section ul.list li.item a:hover {
  background-color: #d8e0e3;
}
section ul.list li.item a .icon {
  display: inline-block;
  width: 24px;
  height: auto;
}
section ul.list li.item a h3 {
  display: inline-block;
  vertical-align: top;
  width: calc(100% - 32px);
  font-size: 14px;
  font-weight: 500;
  color: #0F1D3E;
  padding: 4px 0;
}
section article {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  font-size: 0;
}
@media (max-width: 1024px) {
  section article {
    padding: 10px 0;
  }
}
section article .item {
  display: inline-block;
  width: 24%;
  vertical-align: top;
  height: auto;
  padding: 16px 16px;
  margin: 0.5%;
  text-align: center;
  background-color: #fff;
  border-radius: 16px;
}
@media (max-width: 1024px) {
  section article .item {
    width: 100%;
    margin: 0.5% 0;
  }
}
section article .item img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
section article .item.list-item {
  padding: 6px;
  height: 350px;
}
section article .item:hover {
  background-color: #e2e6f5;
}
section article .item .img-crop {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}
section article .item .img-crop.h235 {
  max-height: 235px;
}
section article .item .img-crop img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}
section article .item h3 {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0F1D3E;
  padding: 20px 0;
}
section article .item p {
  display: block;
  font-size: 12px;
  color: #4d5673;
  font-weight: 400;
  line-height: 150%;
}
section article .project-row {
  display: block;
  width: 100%;
  padding: 5px;
  background-color: #eeeeee;
  margin-bottom: 5px;
  border-radius: 6px;
  border: 1px solid #e1e5f0;
  font-size: 14px;
}
section article .project-row:hover {
  background-color: #d8e0e3;
}
section article .project-row .date-year {
  display: inline-block;
  padding: 10px 5px;
  background-color: #222;
  color: #fff;
  font-size: 16px;
  vertical-align: top;
  border-radius: 4px;
  min-width: 52px;
  text-align: center;
}
section article .project-row .row-detail {
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 1024px) {
  section article .project-row .row-detail {
    width: calc(100% - 62px);
  }
}
section article .project-row .row-detail .name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0F1D3E;
  padding: 10px 0 0 5px;
}
@media (max-width: 1024px) {
  section article .project-row .row-detail .name {
    padding: 0 0 0 5px;
    font-size: 14px;
    font-weight: 600;
  }
}
section article .project-row .row-detail .detail-text {
  display: block;
  font-size: 14px;
  color: rgba(77, 86, 115, 0.71);
  font-weight: 400;
  line-height: 1.8;
  padding: 0 5px 10px 5px;
  font-style: italic;
}
section .project-detail {
  display: block;
  width: 100%;
  font-size: 0;
}
section .project-detail .left {
  display: inline-block;
  width: 40%;
  padding: 5%;
  vertical-align: top;
}
section .project-detail .left h1 {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #0F1D3E;
  padding: 20px 0;
}
section .project-detail .left p {
  display: block;
  font-size: 16px;
  color: #4d5673;
  font-weight: 400;
  line-height: 1.8;
}
section .project-detail .right {
  display: inline-block;
  width: 60%;
  padding: 5% 0;
}
section .project-detail .right .img-scroll {
  display: inline-block;
  width: 100%;
  height: calc(100% - 0px);
  font-size: 0;
  white-space: nowrap;
}
section .project-detail .right .img-scroll .owl-carousel {
  height: 100%;
}
section .project-detail .right .img-scroll .owl-carousel .owl-stage-outer {
  height: 100%;
}
section .project-detail .right .img-scroll .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
section .project-detail .right .img-scroll .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
}
section .project-detail .right .img-scroll .owl-carousel .owl-stage-outer .owl-stage .owl-item .img-crop {
  display: inline-block;
  width: 100%;
  height: 100%;
  vertical-align: top;
  cursor: pointer;
  overflow: hidden;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
  transform: translateZ(0); /* GPU hızlandırması */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
section .project-detail .right .img-scroll .owl-carousel .owl-stage-outer .owl-stage .owl-item .img-crop:hover {
  transform: scale3d(1.05, 1.05, 1) translateZ(0);
}
section .project-detail .right .img-scroll-2 {
  display: inline-block;
  width: 100%;
  height: calc(100% - 0px);
  font-size: 0;
  white-space: nowrap;
}
section .project-detail .right .img-scroll-2 .owl-carousel {
  height: 500px;
}
section .project-detail .right .img-scroll-2 .owl-carousel .owl-stage-outer {
  height: 100%;
}
section .project-detail .right .img-scroll-2 .owl-carousel .owl-stage-outer .owl-stage {
  height: 100%;
}
section .project-detail .right .img-scroll-2 .owl-carousel .owl-stage-outer .owl-stage .owl-item {
  height: 100%;
  border-radius: 10px;
}
section .project-detail .right .img-scroll-2 .owl-carousel .owl-stage-outer .owl-stage .owl-item .img-crop {
  display: inline-block;
  width: 100%;
  height: 100%;
  vertical-align: top;
  cursor: pointer;
  overflow: hidden;
  background-attachment: scroll;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  will-change: transform;
  transform: translateZ(0); /* GPU hızlandırması */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
section .project-detail .right .img-scroll-2 .owl-carousel .owl-stage-outer .owl-stage .owl-item .img-crop:hover {
  transform: scale3d(1.05, 1.05, 1) translateZ(0);
}
section .project-detail .bottom {
  display: block;
  padding: 20px 0;
}
section .project-detail .bottom .table-tech {
  display: block;
  width: 100%;
  padding: 20px 5%;
  background-color: #d9eaed;
}
section .project-detail .bottom .table-tech ul {
  display: block;
}
section .project-detail .bottom .table-tech ul li {
  display: inline-block;
  vertical-align: top;
  width: 100%;
  font-size: 0;
  color: #0F1D3E;
  padding: 5px 0;
}
section .project-detail .bottom .table-tech ul li strong {
  display: inline-block;
  width: 100px;
  font-weight: bold !important;
  font-size: 14px;
}
section .project-detail .bottom .table-tech ul li span {
  display: inline-block;
  width: calc(100% - 100px);
  font-weight: 400;
  font-size: 14px;
}