article{
    min-height: 100vh;
}
section{
    padding:1rem 5rem 4rem 5rem;
}
h1{
    text-align:center;
    line-height:7rem
}
.col{
    position: relative;
    width: 60%;
    margin-bottom: 5rem;
}
.col:before {
    content: '';
    position: absolute;
    top: 15%;
    right: -20%;
    background-image: url('/static/theme/img/logoicon.svg');
    -moz-background-size: contain;
      -o-background-size: contain;
         background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 10rem;
    height: 10rem;
    z-index: -1;
}
.col:nth-child(odd){
    margin-left: 40%;
}
.col:nth-child(odd):before {
    top: 25%;
    left: -20%;
    right: auto;
}
.image{
    aspect-ratio:13/9;
    -moz-background-size:cover;
    -o-background-size:cover;
    background-size:cover;
    background-repeat:no-repeat;
    background-position:center;
    -webkit-border-radius:.571rem;
    -moz-border-radius:.571rem;
    border-radius:.571rem;
    position:relative;
    overflow:hidden
}
.image:before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    right:0;
    bottom:0;
    width:100%;
    height:100%;
    z-index:1;
    background:-webkit-gradient(linear,left top,left bottom,from(rgba(196,156,126,.6)),to(rgba(255,255,255,0)));
    background:-webkit-linear-gradient(top,rgba(196,156,126,.6) 0,rgba(255,255,255,0) 100%);
    background:-moz-linear-gradient(top,rgba(196,156,126,.6) 0,rgba(255,255,255,0) 100%);
    background:-o-linear-gradient(top,rgba(196,156,126,.6) 0,rgba(255,255,255,0) 100%);
    background:linear-gradient(180deg,rgba(196,156,126,.6) 0,rgba(255,255,255,0) 100%)
}
.border{
    border:1px solid #c49c7e;
    -webkit-border-radius:.571rem;
    -moz-border-radius:.571rem;
    border-radius:.571rem;
    position:absolute;
    aspect-ratio:10/6;
    width:100%;
    height:auto;
    z-index:2;
    top:2rem;
    right:2rem;
}
.text {
    background: rgba(246, 237, 232, 0.9);
    -webkit-border-radius: .571rem;
    -moz-border-radius: .571rem;
    border-radius: .571rem;
    padding: 1.2rem 2rem;
    position: absolute;
    bottom: 3rem;
    max-width: 60%;
    left: -1rem;
    z-index: 2;
}
.text h2{
    color: #c49c7e;
}
.text .btn{
    display: inline-block;
    width: 100%;
    max-width: 14rem;
}
@media screen and (max-width: 1200px){
    .text {
        max-width: 80%;
    }
}

@media screen and (max-width: 1000px){
    .col {
        width: 90%;
    }
    .col:nth-child(2n+1) {
        margin-left: 10%;
    }
}
@media screen and (max-width: 700px){
section {
    padding: 1rem 1rem 2rem 1rem;
  }
  .col {
    width: 100%;
  }
  .col:nth-child(2n+1) {
    margin-left: 0%;
  }
  .text {
    max-width: 100%;
    left: auto;
    bottom: auto;
    margin-top: 1rem;
    position: relative;
  }
  .border {
    top: -0.5rem;
    right: 0.5rem;
  }
}