#mc-brite{
 overflow-x:hidden;
}
header.header,
section.section--hero{
    background: var(--mc-color-dark);
    color: var(--mc-color-white);
}

header.header{
    padding:4rem 0;
}

section.section--hero{
    padding:2rem 0 4rem 0;
}

section.section--hero div[class*="col"]{
    display:flex;
    align-items: center;
}

.section.section--hero .rounded-image{
    position:relative;
}

.section.section--hero .rounded-image .rounded-image__image-container{
    object-fit:cover;
    overflow:hidden;
    border-radius: 20rem;
    width: 20rem;
}

.section.section--hero .rounded-image .rounded-image__image-container img{
    width:100%;
    height:100%;
}

.section.section--hero .rounded-image::after{
    content:'';
    position: absolute;
    right: -20vh;
    top:0;
    width: 20rem;
    height: 20rem;
    border-radius: 20rem;
    border: 0.375rem solid var(--mc-color-primary);
}


@media (max-width:768px){
  header.header{
   padding:0.75rem 0 2rem 0;
  }
  section.section--hero{
   padding:1rem 0 2rem 0;
  }
  .section.section--hero .rounded-image{
    margin-bottom: 3rem;
    width: 100%;
  }
  .section.section--hero .rounded-image .rounded-image__image-container{
    position: relative;
    z-index: 1;
    width: 75vw;
    float: right;
  }

  .section.section--hero .rounded-image::after{
    z-index: 0;
    right: unset;
    left: 0rem;
    width: 50vw;
    height: 50vw;
    border: 0.25rem solid var(--mc-color-primary);
  }
}


/* LEGACY CSS */
html,body {
    font-family: 'Raleway', sans-serif;  
}
.thankyou-page ._header {
    background: #fee028;
    padding: 100px 30px;
    text-align: center;
    background: #062045 center/cover no-repeat;
}
.thankyou-page ._header .logo {
    max-width: 200px;
    margin: 0 auto 50px;
}
.thankyou-page ._header .logo img {
    width: 100%;
}
.thankyou-page ._header h1 {
    font-size: 65px;
    font-weight: 800;
    color: white;
    margin: 0;
}
.thankyou-page ._body {
    margin: -70px 0 30px;
}
.thankyou-page ._body ._box {
    margin: auto;
    max-width: 80%;
    padding: 50px;
    background: white;
    border-radius: 3px;
    box-shadow: 0 0 35px rgba(10, 10, 10,0.12);
    -moz-box-shadow: 0 0 35px rgba(10, 10, 10,0.12);
    -webkit-box-shadow: 0 0 35px rgba(10, 10, 10,0.12);
}
.thankyou-page ._body ._box h2 {
    font-size: 32px;
    font-weight: 600;
    color: #68478c;
}
.thankyou-page ._footer {
    text-align: center;
    padding: 50px 30px;
}

.thankyou-page ._footer .btn {
    background: #68478c;
    color: white;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    letter-spacing: 0.8px;
    padding: 20px 33px;
    text-transform: uppercase;
}