@media screen and (min-width: 960px) {
  #root-header {
    height: 100px;
  }
}

#root-header-mobile {
  height: 66px;
}
@media screen and (min-width: 768px) {
  #root-header-mobile {
    height: 75px;
  }
}

.container-home {
  padding-left: 16px;
  padding-right: 16px;
  margin: 0 auto;
  min-height: calc(100vh - 138px);
  padding-top: 66px;
}
@media (min-width: 768px) {
  .container-home {
    padding-top: 100px;
    min-height: calc(100vh - 66px);
  }
}
@media (min-width: 960px) {
  .container-home {
    padding-left: 0;
    padding-right: 0;
    max-width: 876px;
  }
}
@media (min-width: 1280px) {
  .container-home {
    max-width: 1200px;
  }
}
@media (min-width: 1440px) {
  .container-home {
    max-width: 1280px;
  }
}

.wp-block-lazyblock-home-v3 {
  display: flex;
  flex-direction: column;
}

.home4 {
  max-width: 1280px;
  max-height: 834px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 40px;
}
.home4 a {
  text-decoration: none;
  color: #FFF;
}
.home4 .bg {
  background-color: rgba(0, 0, 0, 0.231372549);
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.home4 .item {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.5s;
  width: 100%;
  height: 193px;
}
@media screen and (min-width: 540px) {
  .home4 .item {
    height: 294px; /*16:9 522x294*/
  }
}
@media screen and (min-width: 768px) {
  .home4 .item {
    height: 221px; /*1,60*/
  }
}
@media screen and (min-width: 960px) {
  .home4 .item {
    height: 264px; /*1,60*/
  }
}
@media screen and (min-width: 1280px) {
  .home4 .item {
    height: 387px; /*1,60 620x387*/
  }
}
.home4 .item .title1, .home4 .item .title2 {
  text-align: center;
  margin: 0 60px;
  font-size: 26px;
  line-height: 35px;
}
.home4 .item .icon {
  max-width: 45%;
}
.home4 .item .title2 {
  display: none;
}
.home4 .item:hover {
  cursor: pointer;
  scale: 1.05;
  transition: 0.5s;
  box-shadow: 0px 0px 10px 1px;
}
.home4 .item:hover .bg > .title2 {
  display: block;
}
.home4 .item:hover .bg > .icon, .home4 .item:hover .title1 {
  display: none;
}