.flexOrtala {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
}

body,
html {
  margin: 0;
  padding: 0;
}

.amblem img {
  width: 50px;
  margin-right: 30px;
}

.hero-slide {
  margin-top: 3.5rem;
  height: 95vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 990px) {
  .hero-slide {
    width: 100%;
    height: 50vh;
    padding: 0.5rem;
  }
}

.hero-slide .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.z-2 {
  z-index: 2;
}

.custom-navbar {
  background-color: rgba(0, 0, 0, 0.5);
}

section {
  padding: 80px 20px;
}

.nav-item:hover {
  background-color: white;
  border-radius: 0.5rem;
}

.nav-item:hover > a {
  color: #333;
}

div.portfolio {
  width: 100%;
  margin: 5rem auto;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto auto auto;
  grid-template-rows: 500px;
}
@media (max-width: 990px) {
  div.portfolio {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    height: 1500px;
  }
}
div.portfolio > div {
  overflow: hidden;
  position: relative;
  border-radius: 0.5rem;
}
div.portfolio > div > div:nth-child(1) {
  background-position: center center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  transition: transform 0.3s linear, filter 0.3s cubic-bezier(0, 0.94, 0.58, 1);
}
@media (max-width: 990px) {
  div.portfolio > div > div:nth-child(1) {
    height: 500px;
  }
}
div.portfolio > div > div:nth-child(2) {
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: -100%;
  top: 1vh;
  width: calc(100% - 2vh);
  height: calc(100% - 2vh);
  border-radius: 0.5rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  padding: 0.6rem;
  box-sizing: border-box;
}
div.portfolio > div > div:nth-child(2) > h4 {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  position: relative;
}
div.portfolio > div > div:nth-child(2) > h4::after {
  content: "";
  transition: width 0.5s linear;
  border-bottom: 2px solid white;
  width: 10%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
}
div.portfolio > div > div:nth-child(2) > p {
  color: white;
  font-size: 1.2rem;
  text-align: justify;
}
div.portfolio > div:hover > div:nth-child(1) {
  filter: blur(10px);
  transform: scale(1.2);
}
div.portfolio > div:hover > div:nth-child(2) {
  left: 1vh;
}
div.portfolio > div:hover > div:nth-child(2) > h4::after {
  width: 100%;
}

.baslik h3 {
  margin-top: 2rem;
  font-size: 30px;
  color: #333;
  font-weight: bold;
}/*# sourceMappingURL=main.css.map */