@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Poppins' , sans-serif;
    overflow-x: hidden;
}

a{
    text-decoration: none;
}

li{
    list-style-type: none;
}


.container{
    padding: 0 100px 0 100px;
}

header{
    z-index: 999;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    transition: 0.5s ease;
    background-color: rgba(0, 0, 0, 0.342);
}




header .navigation{
    position: relative;

}

header .tel{
  color: white;
  background-color: #028ACC;
  padding: 10px;
  transition: .5s;
  border-radius: 5px;
}

header .tel:hover{
  color: #028ACC;
  background-color: white;
  transition: .5s;
}

header .navigation .navigation-items a{
    position: relative;
    color: #fff;
    font-size: 1em;
    font-weight: 500;
    text-decoration: none;
    margin-left: 30px;
    transition: 0.3s ease;
    
}

header .navigation .navigation-items a:before{
    content: '';
    position: absolute;
    background: #fff;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    transition: 0.3s ease;
}

header .navigation .navigation-items a:hover:before{
    width: 100%;
}


.home{
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #028ACC;
}

.home:before{
    z-index: 777;
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}

.home .content {
    z-index: 888;
    color: #fff;
    width: 70%;
    display: none;
}

.home .content.activ{
    display: block;
}


.home .content p {
    text-align: right;
    font-size: 26px;
    font-weight: 600;
    text-decoration: underline;
}


.home video{
    z-index: 000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home .images{
  z-index: 000;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-navigation{
    z-index: 888;
    position: relative;
    display: flex;
    flex-direction: column;
}




.slider-navigation .nav-btn a{
  color: white;
  font-size: 18px;
  transition: .5s;
}

.slider-navigation .nav-btn a:hover{
  color: #028ACC;
  transition: .5s;
}



.slider-navigation .nav-btn:not(:last-child){
    margin-bottom: 20px;
}


.video-slide{   
    position: absolute;
    width: 100%;
    clip-path: circle(0% at 0 50%);
}

.video-slide.activ{
    clip-path: circle(150% at 0 50%);
    transition: 2s ease;
    transition-property: clip-path;
}

@media (max-width: 1000px) {
    header{
        padding: 12px 20px;
    }

    section{
        padding: 100px 20px;
    }

    .home .media-icons{
        right: 15px;
    }

    header .navigation{
        display: none;
    }

    header .navigation.activ{
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        background: rgba(1, 1, 1, 0.5);
    }

    header .navigation .navigation-items a{
        color: #fff;
        font-size: 1.2em;
        margin: 20px;
    }

    header .navigation .navigation-items a:before{
        background: #fff;
        height: 5px;
    }

    header .navigation.activ .navigation-items{
        background: #0289cca1;
        width: 600px;
        max-width: 600px;
        margin: 20px;
        padding: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 5px;
        box-shadow: 0 5px 25px rgb(1 1 1 / 20%);
    }

    .menu-btn{
        background: url(img/menu.png)no-repeat;
        background-size: 30px;
        background-position: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .menu-btn.activ{
        z-index: 999;
        background: url(img/close.png)no-repeat;
        background-size: 25px;
        background-position: center;
        transition: 0.3s ease;
    }

    header .tel{
      display: none;
    }
    .site-map{
      flex-direction: column;
    }
}


@media (max-width: 600px){
  .slider-navigation .nav-btn a{
    font-size: 14px; 
  }
  .home .content p {
    font-size: 22px;
  }
  
}


.ikili{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.ikili .katalog{
  background-color: #75B325;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 30px;
  font-weight: 500;
  width: 50%;
  cursor: pointer;
  transition: 1s;
}

.ikili .katalog:hover{
  background-color: #ececec;
  color: #75B325;
  transition: 1s;
}

.ikili .sertifika{
  background-color: #028ACC;
  color: #fff;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-size: 30px;
  font-weight: 500;
  width: 50%;
  cursor: pointer;
  transition: 1s;
}

.ikili .sertifika:hover{
  background-color: #ececec;
  color: #028ACC;
  transition: 1s;
}

.hikaye{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.hikaye .resim{
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  width: 500px;
}


.hikaye .yazi{
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 500px;
}

.hikaye .yazi h4{
  color: #75B325;
  font-size: 24px;
}

.hikaye .yazi h2{
  color: #028ACC;
  font-size: 36px;
  margin-top: -10px;
}

.asd{
  position: relative;
  display: inline-flex;
  width: 300px;
  height: 55px;
  perspective: 1000px;
}
.asd a{
  font-size: 19px;
  letter-spacing: 1px;
  transform-style: preserve-3d;
  transform: translateZ(-25px);
  transition: transform .25s;
}
.asd a:before,
.asd a:after{
  position: absolute;
  content: "TARİHÇEMİZİN DEVAMI >";
  height: 55px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #028ACC;
  box-sizing: border-box;
  border-radius: 5px;
}
.asd a:before{
  color: #fff;
  background: #028ACC;
  transform: rotateY(0deg) translateZ(25px);
}
.asd a:after{
  color: #028ACC;
  transform: rotateX(90deg) translateZ(25px);
}
.asd a:hover{
  transform: translateZ(-25px) rotateX(-90deg);
}


.projeler{
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #ececec;
}

.projeler .yazi h4{
  color: #75B325;
  font-size: 24px;
}

.projeler .yazi h2{
  color: #028ACC;
  font-size: 36px;
  margin-top: -10px;
  margin-bottom: 50px;
}

.proje-resimler{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.proje-resimler .kutu{
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: 1s;
}

.proje-resimler .kutu:hover{
  transform: scale(0.9);
  transition: 1s;
}

.proje-resimler .kutu h1{
  position: absolute;
  font-size: 70px;
  color: rgba(255, 255, 255, 0.466);
  bottom: 50px;
  padding-left: 20px;
}

.proje-resimler .kutu a{
  position: absolute;
  font-size: 20px;
  color: #fff;
  bottom: 6px;
  width: 100%;
  height: 60px;
  background-color: #0289cc94;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.neler{
  padding-top: 50px;
  padding-bottom: 50px;
}

.neler .yazi h4{
  color: #75B325;
  font-size: 24px;
}

.neler .yazi h2{
  color: #028ACC;
  font-size: 36px;
  margin-top: -10px;
  margin-bottom: 50px;
}

.galeri{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.galeri .galeri-kutu{
  transition: 0.5s;
}

.galeri .galeri-kutu:hover{
  transform: scale(1.1);
  transition: 0.5s;
}


@media only screen and (max-width: 768px) {
  .ikili .katalog{
    font-size: 18px;
  }
  .ikili .sertifika{
    font-size: 18px;
  }
}


@media only screen and (max-width: 1220px) {
  .bar{
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  .hikaye{
    justify-content: center;
  }
  .menu-1{
    display: none;
  }
  .ikili{
    display: flex;
    flex-direction: column;
  }
  .ikili .sertifika{
    width: 100%;
  }
  .ikili .katalog{
    width: 100%;
  }
  .ikili .sertifika img{
    width: 30%;
  }
  .ikili .katalog img{
    width: 30%;
  }
  .container{
    padding: 0 10px 0 10px;
  }

  .projeler{
    padding-top: 50px;
  }
  .proje-resimler{
    display: flex;
    justify-content: center;
  }
  .proje-resimler .kutu{
    margin-bottom: 50px;
  }
  .neler{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .btn{
    display: none;
  }
  .galeri{
    display: flex;
    justify-content: center;
  }
  .copyright {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  h1 a {
    display: block;
  }
}


.footer{
  background-color: #0F61AE;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 60px;
  padding-top: 30px;
}

.footer-menu{
  padding-top: 30px;
  padding-left: 20px;
}

.footer p{
  padding-top: 10px;
}

.footer a{
  color: #D0D0D0;
  margin-top: 10px;
  font-size: 14px;
  transition: 0.5s;
}

.footer a:hover{
  color: #fff;
  transition: 0.5s;
}

.footer h4{
  color: #75B325;
  font-size: 18px;
}

.footer li{
  color: #D0D0D0;
  padding-bottom: 5px;
  font-size: 14px;
}

.footer li:hover{
  color: #fff;
}

.copyright{
  color: #fff;
  background-color: #028ACC;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}

.copyright p{
  font-size: 14px;
}

.copyright a{
  font-size: 14px;
  color: #fff;
  transition: 0.5s;
}

.copyright a:hover{
  color: #0F61AE;
  transition: 0.5s;
}

.scrollup {
  padding: 10px 10px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: none;
  background-color: #028ACC;
  color: white;
  border-radius: 50px;
  z-index: 1;
}
.titlee {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
  margin-top: 150px;
  line-height: 80px;
}

.titlee h1 {
	background-image: url(https://media.giphy.com/media/3osxYsSSxjWhZw0BUY/giphy.gif);
	background-size: cover;
	color: transparent;
	-moz-background-clip: text;
	-webkit-background-clip: text;
	font-size: 70px;
}


.titlee h2{
  color: #028ACC;
  font-size: 55px;
}

.site-map{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.site-map ul{
  padding-top: 20px;
  display: flex;
}

.site-map ul a{
  color: #9c9c9c;
}


.iso img{
  width: 100px;
}

.kurumsal-ikili{
  padding-top: 20px;
  display: flex;
  padding-bottom: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.left-menu{
  width: 250px;
}

.left-menu h1{
  color: #028ACC;
}

.left-menu a{
  color: #000000;
  transition: .5s;
}

.left-menu a:hover{
  color: #028ACC;
  transition: .5s;
}

.left-menu li{
  padding-top: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #028ACC;
  width: 200px;
}

.yazı-alanı{
  width: 750px;
}

.yazı-alanı h1{
  color: #75B325;
  padding-bottom: 40px;
}


.left-menu .activee a{
  color: #028ACC;
}

.yazı-alanı li{
  text-align: center;
  margin-bottom: 20px;
}

.yazı-alanı .bir{
  color: #028ACC;
  background-color: #ececec;
  padding: 10px;
  transition: .5s;
}
.yazı-alanı .bir:hover{
  background-color: #dfdfdf;
  transition: .5s;
}
.yazı-alanı .iki{
  color: #028ACC;
  background-color: #ececec;
  padding: 10px;
  transition: .5s;
}
.yazı-alanı .iki:hover{
  background-color: #dfdfdf;
  transition: .5s;
}
.yazı-alanı .uc{
  color: #028ACC;
  padding: 10px;
  background-color: #ececec;
  transition: .5s;
}
.yazı-alanı .uc:hover{
  background-color: #dfdfdf;
  transition: .5s;
}
.yazı-alanı .dort{
  color: #028ACC;
  background-color: #ececec;
  padding: 10px;
  transition: .5s;
}

.yazı-alanı .dort:hover{
  background-color: #dfdfdf;
  transition: .5s;
}

.yazı-alanı .ulu{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.yazı-alanı .ulu .dort{
  width: 360px;
}

.yazı-alanı h3{
  font-size: 16px;
  font-weight: 300;
}

.yazı-alanı .isim{
  font-weight: 700;
}

.yazı-alanı h5{
  font-size: 16px;
  font-weight: 300;
  color: #9c9c9c;
}

.yazı-alanı .b{
  color: #028ACC;
  font-size: 20px;
  font-weight: 700;
}

.kutuu{
  position: relative;
  background-color: #e6e6e6;
  padding: 20px;
  margin-bottom: 20px;
  transition: .5s;
}

.kutuu:hover{
  background-color: #0F61AE;
  transition: .5s;
}

.kutuu p{
  color: #000;
  transition: .5s;
}

.logokutu{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.logo4{
  padding: 20px;
  background-color: #e6e6e6;
  text-align: center;
  transition: .5s;
  width: 175px;
  margin-bottom: 10px;
}

.logo4:hover{
  background-color: #0F61AE;
  transition: .5s;
}

.logo4 p{
  color: #000;
}

.logokutu i{
  font-size: 30px;
  color: #028ACC;
}





.fa-bookmark , .fa-file , .fa-file-pdf{
  position: absolute;
  font-size: 60px;
  color: #028ACC;
  margin-top: 40px;
  margin-left: 650px;
  z-index: 1;
}


.hover-overlay-container {
  position: relative;
  width: 600px;
  margin-bottom: 20px;
}

.hover-overlay-container:hover .overlay-text-container {
  opacity: 0.8;
}

.hover-overlay-container .overlay-image {
  display: block;
  width: 100%;
  height: auto;
}

.hover-overlay-container .overlay-text-container {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #028ACC;
}

.hover-overlay-container .overlay-text-container .overlay-text {
  color: #fff;
  font-size: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
}

.resimler{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 20px;
}

.kurumsal-icerik{
  
  background-image: url(img/back2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.kurumsal-icerikk h1{
  padding-top: 20px;
  padding-bottom: 20px;
  color: #75B325;
}

.accordion {
  background-color: #028ACC;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
  transition: 0.5s;
  font-weight: 600;
}

.active, .accordion:hover {
  background-color: #0F61AE;
}

.accordion:after {
  content: '\002B';
  color: #fff;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.active:after {
  content: "\2212";
}

.panel {
  padding: 0 18px;
  background-color: #f6f6f6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.detail{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.card {
  position: relative;
  width: 300px;
  height: 400px;
  background: #232323;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 50px;
  margin-bottom: 50px;
}

.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #028ACC;
  clip-path: circle(150px at 80% 20%);
  transition: 0.5s ease-in-out;
}

.card:hover:before {
  clip-path: circle(300px at 80% -20%);
}

.card:after {
  content: "gaski";
  position: absolute;
  top: 50%;
  font-size: 6em;
  font-weight: 800;
  font-style: italic;
  color: rgba(255, 255, 255, 0.04);

}

.card .imgBx {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  width: 100%;
  height: 100%;
  transition: .5s;
}

.card:hover .imgBx {
  top: 0%;
  transform: translateY(-15%);
  /* bug  */
}

.card .imgBx img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(20deg);
  width: 270px;
}

.card .contentBx {
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 100px;
  text-align: center;
  transition: 1s;
  z-index: 90;
}

.card:hover .contentBx {
  height: 160px;
}

.card .contentBx h2 {
  position: relative;
  font-weight: 600;
  letter-spacing: 1px;
  color: #fff;
}

.card .contentBx .size,
.card .contentBx .color {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  transition: .5s;
  opacity: 0;
  visibility: hidden;
}

.card:hover .contentBx .size {
  opacity: 1;
  visibility: visible;
  transition-delay: .5s;
}

.card:hover .contentBx .color {
  opacity: 1;
  visibility: visible;
  transition-delay: .6s;
}

.card .contentBx .size h3,
.card .contentBx .color h3 {
  color: white;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-right: 10px;
}

.card .contentBx .size span {
  width: 150px;
  height: 26px;
  text-align: center;
  line-height: 26px;
  font-size: 14px;
  display: inline-block;
  color: #111;
  background: #fff;
  margin: 0 5px;
  transition: .5s;
  color: #111;
  border-radius: 4px;
  cursor: pointer;
}

.card .contentBx .color img{
  margin-left: 5px;
}




.accordionn {
  width: 100%;
  height: 250px;
  overflow: hidden;
  margin: 50px auto;
}
.accordionn ul {
  width: 100%;
  display: table;
  table-layout: fixed;
  margin: 0;
  padding: 0;
}
.accordionn ul li {
  display: table-cell;
  vertical-align: bottom;
  position: relative;
  width: 20%;
  height: 250px;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 500ms ease;
}
.accordionn ul li div {
  display: block;
  overflow: hidden;
  width: 100%;
}
.accordionn ul li div a {
  display: block;
  height: 250px;
  width: 100%;
  position: relative;
  z-index: 3;
  vertical-align: bottom;
  padding: 15px 20px;
  box-sizing: border-box;
  color: #fff;
  text-decoration: none;
  transition: all 200ms ease;
}
.accordionn ul li div a * {
  opacity: 0;
  margin: 0;
  width: 100%;
  text-overflow: ellipsis;
  position: relative;
  z-index: 5;
  white-space: nowrap;
  overflow: hidden;
  -webkit-transform: translateX(-20px);
  transform: translateX(-20px);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.accordionn ul li div a h2 {
  text-overflow: clip;
  font-size: 24px;
  margin-bottom: 2px;
  top: 160px;
}
.accordionn ul li div a p {
  top: 160px;
  font-size: 13.5px;
}
.accordionn ul li:nth-child(1) {
  background-image: url("img/projeler/enerji-p.png");
}
.accordionn ul li:nth-child(2) {
  background-image: url("img/projeler/insaat-p.png");
}
.accordionn ul li:nth-child(3) {
  background-image: url("img/projeler/cevre-p.png");
}
.accordionn ul li:nth-child(4) {
  background-image: url("img/projeler/imalat-p.png");
}
.accordionn ul li:nth-child(5) {
  background-image: url("img/projeler/hizmet-p.png");
}

.accordionn ul:hover li, .accordionn ul:focus-within li {
  width: 8%;
}
.accordionn ul li:focus {
  outline: none;
}
.accordionn ul:hover li:hover,
.accordionn ul li:focus, .accordionn ul:focus-within li:focus {
  width: 60%;
}
.accordionn ul:hover li:hover a,
.accordionn ul li:focus a, .accordionn ul:focus-within li:focus a {
  background: rgba(0, 0, 0, 0.4);
}
.accordionn ul:hover li:hover a *,
.accordionn ul li:focus a *, .accordionn ul:focus-within li:focus a * {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.accordionn ul:hover li {
  width: 8% !important;
}
.accordionn ul:hover li a * {
  opacity: 0 !important;
}
.accordionn ul:hover li:hover {
  width: 36% !important;
}
.accordionn ul:hover li:hover a {
  background: rgba(0, 0, 0, 0.4);
}
.accordionn ul:hover li:hover a * {
  opacity: 1 !important;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

.mobil{
  display: none;
}

@media screen and (max-width: 600px) {

  .accordionn {
    display: none;
  }

  .mobil{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .boxx{
    cursor: pointer;
  }
  
}


.wrapper{
  margin: 100px auto;
  max-width: 1100px;
}
.wrapper nav{
  display: flex;
  justify-content: center;
}
.wrapper .items{
  display: flex;
  max-width: 720px;
  width: 100%;
  justify-content: space-between;
}
.items span{
  padding: 7px 25px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #007bff;
  border-radius: 50px;
  border: 2px solid #007bff;
  transition: all 0.3s ease;
}
.items span.active,
.items span:hover{
  color: #fff;
  background: #007bff;
}

.gallery{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.gallery .image{
  width: calc(100% / 2);
  padding: 7px;
}
.gallery .image span{
  display: flex;
  width: 100%;
  overflow: hidden;
}
.gallery .image img{
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}
.gallery .image:hover img{
  transform: scale(1.1);
}
.gallery .image.hide{
  display: none;
}
.gallery .image.show{
  animation: animate 0.4s ease;
}
@keyframes animate {
  0%{
    transform: scale(0.5);
  }
  100%{
    transform: scale(1);
  }
}

.preview-box{
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 1200px;
  width: 100%;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 3px;
  padding: 0 5px 5px 5px;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.2);
}
.preview-box.show{
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}
.preview-box .details{
  padding: 13px 15px 13px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.details .title{
  display: flex;
  font-size: 18px;
  font-weight: 400;
}
.details .title p{
  font-weight: 500;
  margin-left: 5px;
}
.details .icon{
  color: #007bff;
  font-style: 22px;
  cursor: pointer;
}
.preview-box .image-box{
  width: 100%;
  display: flex;
}
.image-box img{
  width: 100%;
  border-radius: 0 0 3px 3px;
  max-height: 600px;
}
.shadow{
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0,0,0,0.4);
}
.shadow.show{
  display: block;
}

@media (max-width: 1000px) {
  .gallery .image{
    width: calc(100% / 3);
  }
}
@media (max-width: 800px) {
  .gallery .image{
    width: calc(100% / 2);
  }
}
@media (max-width: 700px) {
  .wrapper nav .items{
    max-width: 600px;
  }
  nav .items span{
    padding: 7px 15px;
  }
}
@media (max-width: 600px) {
  .wrapper{
    margin: 30px auto;
  }
  .wrapper nav .items{
    flex-wrap: wrap;
    justify-content: center;
  }
  nav .items span{
    margin: 5px;
  }
  .gallery .image{
    width: 100%;
  }
  .hover-overlay-container .overlay-text-container .overlay-text{
    font-size: 20px;
  }
}

.merkez{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ile{
  width: 280px;
  height: 200px;
  padding: 20px 20px;
  margin-bottom: 10px;
  background-color: #2a2a2a;
  color: white;
  transition: 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 50px;
}
.ile:hover{
  background-color: #7a7a7a;
  transition: 0.5s;
}

.ile a{
  color: white;
}

.ile h3{
  color: #75B325;
}

.iletisimm{
  color: #75B325;
  margin-bottom: 20px;
  margin-top: 20px;
}

.iletisimmm{
  color: #75B325;
  margin-bottom: 20px;
}

.altyapi{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.alt-resim{
  width: 600px;
  
}


.alt-detay{
  width: 500px;
  display: flex;
  justify-content: center;
}
