@charset "UTF-8";
body {
  margin: 0;
  padding: 0;
}

:root {
  --resim: url("image/background-1.jpg");
  --metin: "DERASEN İNŞAAT" ;
}

nav {
  background-color: rgb(23, 89, 133);
}
nav > ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}
nav > ul > li {
  border-right: 1px solid white;
}
nav > ul > li > a {
  display: block;
  padding: 0.5rem;
  background-color: rgb(23, 89, 133);
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.5s ease;
}
nav > ul > li > a:hover {
  background-color: white;
  color: rgb(23, 89, 133);
}
nav > ul > li.b {
  background-color: rgb(23, 89, 133);
  padding-left: 31rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.5s ease;
}
nav > ul > li.b:hover {
  background-color: white;
  color: rgb(23, 89, 133);
}

.flex-orta, div.proje div.projeList > div > div, div.slide::after {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
}

div.slide {
  width: 100%;
  height: 66.6666666667vh;
  transition: background-image 0.5s ease;
  background-image: var(--resim);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: relative;
}
div.slide::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
div.slide::after {
  content: var(--metin);
  color: white;
  font-size: 42px;
  position: absolute;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.icon-house::before {
  content: "🏡";
}

.icon-office::before {
  content: "🏢";
}

.icon-briefcase::before {
  content: "💼";
}

.services {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 80%;
  margin: 3rem auto;
}
.services > div {
  transition: box-shadow 0.4s ease;
  padding: 0.5rem;
  margin-right: 0.5rem;
  border: 3px solid rgb(23, 89, 133);
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 0 0px #333;
  cursor: pointer;
}
.services > div > div:nth-child(1) {
  font-size: 50px;
  padding: 0.3rem 0;
}
.services > div > div:nth-child(2) {
  color: #333;
  font-weight: bold;
  font-size: 18px;
}
.services > div > div:nth-child(3) {
  color: #333;
  text-align: justify;
  margin-top: 0.5rem;
}
.services > div:hover {
  box-shadow: 0 0 50px #333;
}

div.proje {
  width: 80%;
  margin: 0 auto;
}
div.proje div.projeList {
  display: grid;
  gap: 10px;
  grid-template-columns: auto auto auto auto;
  grid-template-rows: 33.3333333333vw 33.3333333333vw 33.3333333333vw 33.3333333333vw 33.3333333333vw;
}
div.proje div.projeList > div {
  border: 1px solid #333;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
div.proje div.projeList > div > img {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
}
div.proje div.projeList > div > div {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 32px;
  color: white;
  font-weight: bold;
  transition: background-color 0.3s linear;
}
div.proje div.projeList > div > div:hover {
  background-color: transparent;
}

div.footer {
  margin-top: 3rem;
  bottom: -30%;
  padding: 0.5rem;
  width: 100%;
  background-color: rgb(23, 89, 133);
  color: white;
}
div.footer > p {
  width: 80%;
  margin: 0 auto;
  font-size: 20px;
  text-align: center;
}/*# sourceMappingURL=index7.css.map */