body {
  background-color: #3C153B;
  box-sizing: border-box;
}

.hero-padding {
  width: 100%;
}

.hero {
  background-color: green;
  height: 100vh;
  width: 100%;

}

.hero-cover {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-cover__bg {
  z-index: 5;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.hero-cover__img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 3;
  background-image: url('../img/cover.jpg');
  background-size: cover;
  background-position: center;
}

.hero-cover__logo {
  width: 90%;
  max-width: 1000px;
  position: absolute;
  left: 46.5%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: 20;
}

.hero-slogan {
  z-index: 50;
  position: absolute;
  left: 46.5%;
  top: 75%;
  transform: translate(-50%, -50%);
  line-height: 99.5px;
  font-weight: strong;
  font-size: 90px;

  color: white;
}

.news {
  width: 100%;
  background-color: #F7F8FD;
  height: 400px;
}

.news__title {
  text-align: center;
}

.news-card {
  color: #444444;
  font-weight: bold;
}

.news-card-title{
}
.news-card-content {
}

.news-card-action {

}

.blogs {
  width: 100%;
  height: 400px;
  background-color: white;
}

.footer {
  width: 100%;
  height: 300px;
  background-color: #3d3d3d;
}
