.cont_with_bg {
  position: relative;
}

.cont_with_bg .bg_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.cont_with_bg .bg_wrap .bg_img {
  position: absolute;
  left: 0;
  right: 0;
  background-color: rgb(255,255,255);
  top: 0;
  bottom: 0;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center center;
  background-size: cover;
}

.cont_with_bg .main {
  position: relative;
}

.cont_with_bg .flex_row {
  margin-right: -15px;
  margin-left: -15px;
}

.cont_with_bg .section_cont {
  margin-right: auto;
  margin-left: auto;
  width: 90%;
  background: rgba(255,255,255,0.8);
  max-width: 600px;
  padding: 60px;
  position: relative;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.cont_with_bg .section_cont h2 {
  font-size: calc(2rem* 1);
  line-height: normal;
}

.cont_with_bg .section_cont .btn-wrap a {
  background-color: rgb(221,15,15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  transition: background-color .15s cubic-bezier(.08,.91,.36,.98);
  padding: 0.5rem 0.75rem;
  min-width: 3rem;
  margin-top: 0.5rem;
  margin-right: 0.5rem;
  border-radius: 0.25rem;
  min-height: 3rem;
  font-size: 1rem;
  color: rgb(255,255,255);
}

.cont_with_bg .section_cont .btn-wrap a div {
  margin: 0 0.5rem;
  display: inline-block;
  vertical-align: middle;
}

.cont_with_bg .section_cont .btn-wrap a:hover {
  background-color: #f02d2d;
}

.cont_with_bg .section_cont .btn-wrap {
  margin-top: 1.5rem;
}

.cont_with_bg .section_cont::after {
  content: "";
  position: absolute;
  left: -16px;
  right: -16px;
  top: -16px;
  bottom: -16px;
  border: 4px solid #fffc;
  pointer-events: none;
}

.cont_with_bg .content {
  padding: calc((1rem + 8*((100vw - 414px)/1266))* 1) 0;
}

.cont_with_bg .section_cont p {
  margin-bottom: margin-bottom: calc((1.5rem + 4*((100vw - 414px)/1266))* 1);;
}
.cont_with_bg .content-wrapper {
  padding-right: 15px;
  padding-left: 15px;
}




@media screen and (min-width: 1680px){
  .cont_with_bg .content {
    padding: 1.5rem 0;
  }
  .cont_with_bg .section_cont p {
    margin-bottom: 1.75rem;
  }
}

@supports (backdrop-filter:blur(20px)){
  .cont_with_bg .section_cont {
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(20px) saturate(125%);
  }
}



@media (max-width: 575.99px){
  .cont_with_bg .section_cont {
    padding: 30px;
  }
  .cont_with_bg .section_cont::after {
    margin: 8px;
  }
}

@media screen and (max-width: 414px){
  .cont_with_bg .content {
    padding: 1rem 0;
  }
  .cont_with_bg .section_cont p {
    margin-bottom: 1.5rem;
  }
}



