.ws-fullwidthpanel .ws-panel-background {
  padding: 2rem 1.5rem;
  border-radius: 2rem;
  background-size: cover;
}

.ws-fullwidthpanel .ws-panel-background::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2rem;
}

.ws-fullwidthpanel .ws-panel-content {
  position: relative;
  z-index: 2;
}

.ws-fullwidthpanel .ws-panel-content .ws-fullwidthpanel-title,
.ws-fullwidthpanel .ws-panel-content .ws-fullwidthpanel-subtitle,
.ws-fullwidthpanel .ws-panel-content .ws-fullwidthpanel-body {
  color:#fff;
}

.ws-fullwidthpanel .ws-panel-content .ws-fullwidthpanel-title {
  margin-bottom: 2rem;
  text-align: center;
}

.ws-fullwidthpanel .ws-panel-content .ws-fullwidthpanel-subtitle {
  margin-bottom: 1rem;
  text-align: center;
}

.ws-fullwidthpanel .ws-panel-content .ws-fullwidthpanel-body {
  margin-bottom: 3rem;
}

.ws-fullwidthpanel .ws-fullwidthpanel-buttons {
  display: flex;
  justify-content: center;
  grid-gap: 1rem;
  flex-direction: column;
}

.ws-fullwidthpanel .ws-fullwidthpanel-button {
  color:#fff;
  border:solid 1px #fff;
  border-radius: 5rem;
  line-height: 1;
  display: inline-block;
  padding: 1rem 1.25rem;
  font-weight: 600;
}

@media screen and (min-width: 768px) {

  .ws-fullwidthpanel .ws-panel-background {
    padding: 3rem;
  }

  .ws-fullwidthpanel .ws-panel-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem;
  }

  .ws-fullwidthpanel .ws-panel-content.ws-panel-content-col2 {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
  }

  .ws-fullwidthpanel .ws-panel-content .ws-fullwidthpanel-title {
    margin-bottom: 3rem;
  }

  .ws-fullwidthpanel .ws-panel-content .ws-fullwidthpanel-subtitle {
    margin-bottom: 1.5rem;
    
  }

  .ws-fullwidthpanel .ws-panel-content .ws-fullwidthpanel-subtitle.text-left {
    text-align: left;
  }

  .ws-fullwidthpanel .ws-panel-content .ws-fullwidthpanel-subtitle.text-right {
    text-align: right;
  }

  .ws-fullwidthpanel .ws-panel-content .ws-fullwidthpanel-body.ws-fullwidthpanel-col2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 2rem;
  }

  .ws-fullwidthpanel .ws-fullwidthpanel-buttons {
    flex-direction: row;
  }

  .ws-fullwidthpanel .ws-fullwidthpanel-button:hover {
    background-color: #fff;
    color: #262B65;
  }
  
}