.bannerPublicity {
  width: 90%;
  margin: auto;
  background: #006bb2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  padding: 20px;
  margin-bottom: 20px;
}
.bannerPublicity img {
  width: 140px;
}
.bannerPublicity h1 {
  color: white;
  width: 60%;
  max-width: 550px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 300;
  margin: auto;
}
.bannerPublicity button {
  background-color: transparent;
  border: transparent;
  cursor: pointer;
}
.buttonText {
  background: transparent;
  border: transparent;
  color: #ffcc29;
  border-bottom: 2px solid #ffcc29 !important;
  padding-bottom: 2px;
  font-weight: 400;
  font-size: 18px;
}
.buttonArrow {
  display: none;
}
.buttonArrow img {
  width: 30px;
}
.backgroundPopupBanner {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  right: 0;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  transition: 1s all ease-in-out;
}
.open{
  visibility: visible;
}
.popupBanner {
  background: white;
  display: flex;
  flex-direction: column;
  width: 70%;
  max-width: 700px;
  position: relative;
  padding: 30px;
  justify-content: center;
  align-items: center;
  color: #006bb2;
  text-align: center;
  border-bottom: 10px solid #006bb2;
  max-height: 95vh;
  overflow: hidden;
}
.logoPopupBanner {
  width: 200px;
  margin-bottom: 20px;
}
.cross {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  cursor: pointer;
}
.popupBanner h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0;
}
.popupBanner h2 + p {
  color: #006bb2;
  font-size: 17px;
  margin-bottom: 20px;
  max-width: 500px;
  line-height: 24px;
}
.benfitsTop {
  display: flex;
  justify-content: space-between;
  align-items: inherit;
}
.benfitsTop .benefit{
  width: 49%!important;
}
.benefit {
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 20px;
  padding-top: 0px;
  width: 100%;
  margin-bottom: 10px;
  text-align: initial;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.benefit h3 {
  text-transform: uppercase;
  font-size: 15px;
  color: #006bb2;
  font-weight: 600;
  margin-bottom: 5px;
  min-height: 32px;
  height:auto;
}
.benefit span{
  color: rgba(0, 0, 0, 0.5);
  font-size: 15px;
}

.bannerPublicity{
  cursor: pointer;
}


@media screen and (max-width: 768px) {
  .bannerPublicity img+img{
    width: 40px;
  }
  .buttonArrow{
    display: block;
  }
  .buttonText{
    display: none;
  }
  .bannerPublicity h1{
    font-size: 14px;
    line-height: 16px;
    width: 65%;
  }
  .bannerPublicity{
    padding: 20px 20px !important;
    margin-top:20px;
  }
  .popupBanner{
    width: 90%;
    padding: 20px;
    max-height: 90vh;
    overflow: hidden;
    overflow-y: scroll;
    justify-content: start;
  }
  .benefit{
    justify-content: start;
  }
}