body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.wrapper {
  width: 100%;
  height: 100vh;

  display: flex;
  flex-direction: column;
}
.header {
  background-color: #284259;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-wrap {
  flex: 1;
  display: flex;
  flex-direction: row;
}
.box {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding: 60px;
}

.box::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  opacity: 0.4;
  transition: all 0.3s;
}
.box img {
  z-index: 1;
}
.box-logo {
  transition: all 0.3s;
}
.effect:hover .box-logo {
  transform: scale(1.5);
}
.effect:hover::after {
  opacity: 0.1;
}

.company-logo {
  position: absolute;
  width: 200px;
  height: auto;
  left: 50%;
  margin-left: -100px;
  z-index: 2;
  top: 70px;
}
.under {
  text-transform: uppercase;
  font-size: 56px;
  color: #fff;
  font-weight: bold;
  z-index: 1;
  text-align: center;
}
@media (max-width: 1399.98px) {
}
@media (max-width: 1199.98px) {
}

@media (max-width: 991.98px) {
  .effect:hover .box-logo {
    transform: scale(1.2);
  }
  .under {
    font-size: 48px;
  }
}
@media (max-width: 767.98px) {
  .box-wrap {
    flex-direction: column;
  }
  .under {
    font-size: 42px;
  }
}

@media (max-width: 575.98px) {
  .box img {
    width: 200px;
    height: 80px;
  }
  .under {
    font-size: 28px;
  }
  .company-logo {
    top: 50px;
    width: 100px;
    margin-left: -50px;
  }
}
