.pb-banner {
	position: relative;
	border-radius: 80px 40px;
	overflow: hidden;
	min-height: 180px;
	background: #111;
	max-width: 1920px;
	margin: 0 auto 50px;
	display: block;
	padding: 30px 0 20px 60px;
}

.pb-banner__bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center -120px;
  background-repeat: no-repeat;
}

.pb-banner__overlay{
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, rgba(0,0,0,.4), rgba(0,0,0,.01)); */
}

.pb-banner__content{
  position: relative;
  z-index: 2;
  padding: 22px;
  color: #fff;
  max-width: 820px;
}

.pb-banner__content * {
    color: #fff !important
}

.pb-banner__title {
	margin: 0 0 8px;
	font-size: 30px;
	line-height: 1.2;
	font-weight: 600;
	font-family: 'Lora' !important;
}

.pb-banner__text p{
    margin: 0 !important;  
    opacity: 1;
	font-family: "Lora", serif !important;
	font-weight: 300 !important;
	font-style: normal !important;
	font-size: 22px !important;
	letter-spacing: 0 !important;
	line-height: 1.4 !important;
}

.pb-banner__btn{
  display: inline-block;
  background: #fff;
  color: #111;
  text-decoration: none;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 12px;
}
.pb-banner__btn:hover{
  opacity: .92;
}

@media all and (max-width: 600px) {
    .pb-banner {
        padding: 20px 10px;
        border-radius: 40px;
        margin: -10px -15px 40px;
    }
    .pb-banner__bg{
        background-position: center center;
    }
    .pb-banner__content {
        padding: 0 20px;
    }
    .pb-banner__title {
        font-size: 23px;
        line-height: 1.1;
        text-shadow: 1px 1px 5px #000, -1px -1px 5px #000;
    }
    .pb-banner__text p {
        font-size: 18px !important;
        line-height: 1.2 !important;
        text-shadow: 1px 1px 5px #000, -1px -1px 5px #000;
    }
}