* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
}

section {
  width: 100%;
  display: flex;
}

.section {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}

.section-item {
  height: 230px;
  position: relative;
  /*border: 1px solid white;*/

}

.section-item-height {
  height: 450px;
}

.section-item-height .section-title h2 {
  margin-top: 210px;
}

.section-item-height .section-title:hover h2 {
  margin: 250px 0px 30px 0px;
  transition: 0.5s;
}

.section-item-height .section-title:hover p {
  opacity: 1;
  transition: 0.5s;
}

.section-title {
  position: absolute;
  text-align: center;
  margin: auto;
  left: 0;
  right: 0;
  color: white;
  height: 100%;
  width: 100%;
  cursor: pointer;
  background: radial-gradient(50% 50% at 50% 50%, #02132B 0%, rgb(2 19 43 / 32%) 0%);
}

.section-title h2 {
  font-size: 16px;
  text-shadow: 0px 4px 4px #00000080;
  margin-top: 110px;
  transition: 0.3s;
  text-transform: uppercase;
}

.section-title p {
  opacity: 0;
  transition: 0.3s;
  padding: 0px 100px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 20px;
}

.section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-title:hover {
  background-color: #02132B;
  opacity: 0.8;
  transition: 0.5s;
}

.section-title:hover h2 {
  margin: 96px 0px 22px 0px;
  transition: 0.5s;
}

.section-title:hover p {
  opacity: 1;
  transition: 0.5s;
}

.width-full {
  width: 100%
}

.width-six {
  width: 60%
}

.width-four {
  width: 40%
}

@media (max-width: 1300px) {
  section {
    width: 100%;
    display: block;
    padding-top: 80px;
  }

  .section-title p {
    padding: 0px 10px;
  }

  .section {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-top: 0px;
  }

  .section-item {
    height: 162px;
  }

  .section-title h2 {
    margin-top: 70px;
  }

  .section-title:hover h2 {
    margin: 50px 0px 12px 0px;
    transition: 0.5s;
  }

  .section-item-height .section-title h2 {
    margin-top: 70px;
  }

  .section-item-height .section-title:hover h2 {
    margin: 50px 0px 12px 0px;
    transition: 0.5s;
  }

}