body {
  font-family: "Lato", sans-serif;
  margin: 0px;
    background-color:#f2f2f2;
}

.container {
  display: grid;
  grid-template-columns: 1fr;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 22px;
}

.left-side {
  display: flex;
}

.nav-wrapper > .left-side > div {
  margin-right: 20px;
  text-transform: uppercase;
  font-size: 1rem;
}

.nav-wrapper > .right-side > div {
  margin-right: 20px;
  text-transform: uppercase;
  font-size: 1rem;
  color: #136c68
}

.nav-link-wrapper {
  height: 22px;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.5s;
}

.active-nav-link {
  border-bottom: 2px solid #136c68;
}

.active-nav-link a {
  color: white;
}

.nav-link-wrapper a {
  color: #8a8a8a;
  text-decoration: none;
  transition: color 0.5s;
}

.nav-link-wrapper:hover {
  border-bottom: 2px solid white;
}

.nav-link-wrapper a:hover {
  color: white;
}

.portfolio-items-wrapper {
  display: grid;
  grid-template-columns: 1fr ;
}

.portfolio-item-wrapper {
  position: relative;
}

.portfolio-img-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 300px;
  width: 100%;
}

.img-text-wrapper {
  position: absolute;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  padding-left: 100px;
  padding-right: 100px;
}

.img-text-wrapper .subtitle {
  transition: 1s;
  color: transparent;
}

.image-blur {
  transition: 1s;
  filter: brightness(15%);
}

.img-text-wrapper:hover .subtitle {
  color: lightseagreen;
  font-weight: 600;
}

.logo-wrapper img {
  width:100%;
  margin-bottom: 20px;
}

/*  Home Style */
.home-item-wrapper {
  position: relative;
}

.home-image-blur {
  transition: 1s;
  filter: brightness(15%);
}

.home-logo-wrapper img {
  width:100%;
}

.home-img-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
}


.home-image-wrapper img {
  width: 100%;
}

.home-content-wrapper {
  padding: 30px;
}

/*Design*/

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

.samll{
font: 0.1rem;
}
