/* Settings */
/* (max site width) */
/* (base font size) */
/* (default font) */
/* (default font wieght) */
/* (spacing variable) */
/* (minimum page magin - left and right gap on mobile) */
/* (same as above, but with unit) */
/* (where the site goes mobile) */
@import url("https://fonts.googleapis.com/css2?family=Spartan:wght@100;400;700&display=swap");
/* TEXT SHADOW */
/* BOX SHADOW */
/* TRANSFORM  */
/* TRANSFORM ORIGIN */
/* TRANSITION */
/* calculate ems */
/* calculate rems */
/* calculate page margin */
/* responsive version of $sv (spacing variable) set above */
/* spacing variable mixin - used for padding and margins, the second variable is a multiplier */
/* calculate the view width based on a fixed value
 $prop : the property to set (if its hieght or width, max- will be set too
 $w : the width the calculate 
 $mw : the max with, ie the value to calculate the variable related to, defaults to the $site-width
*/
/* set a property to the value page margin - useful for blocks that arent rows but should sit inside it */
/* reset input areas to default styles */
/* accessible version of display: none; */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  background-color: white;
  font-size: 20px;
  font-family: "Spartan", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#wrapper {
  overflow: hidden;
  position: relative;
}

#page {
  width: 100%;
  overflow: hidden;
}

.row {
  width: calc(100% - 20px);
  max-width: 1228px;
  margin: auto;
}

.row .row {
  width: 100%;
}

.row.collapse {
  max-width: 700px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .row {
    width: calc(100% - 20px);
  }
}

.rowbreaker {
  width: 100vw;
  margin-left: -1.6025641026vw;
}

@media screen and (min-width: 1248px) {
  .rowbreaker {
    margin-left: calc((-100vw + 1228px) / 2);
  }
}

@media screen and (max-width: 1248px) {
  .rowbreaker {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 766px) {
  .rowbreaker {
    margin-left: -10px;
  }
}

.display-none {
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  margin: 0;
  border: 0;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.appearance-none {
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border-radius: 0;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}

.appearance-none::-ms-expand {
  display: none;
}

.display-mob, .mobile-only {
  display: none;
}

.row_nw {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.row_w {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.col_nw {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.col_w {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: vertical;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex_c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.jc-sb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.jc-sa {
  -ms-flex-pack: distribute;
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  justify-content: space-around;
}

.jc-se {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  justify-content: space-evenly;
}

.jc-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
}

.jc-fs {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  justify-content: flex-start;
}

.jc-fe {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

.ai-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.ai-fs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  align-items: flex-start;
}

.ai-fe {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .display-mob {
    display: block;
  }
  .mobile-only {
    display: inline-block;
  }
  .desktop-only {
    display: none;
  }
}

pre {
  color: #5a1313;
}

html {
  background-color: #2B2422;
  color: #2B2422;
}

@media screen and (max-width: 1023px) {
  html {
    font-size: 15px;
  }
}

header .row {
  height: 68px;
}

header .logo {
  display: block;
  width: 140px;
  height: 35px;
  background-image: url("../img/logo.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

header .menu {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 70%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 70%;
  -ms-flex: 0 0 70%;
  flex: 0 0 70%;
  flex-basis: 916px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  header .menu {
    flex-basis: 73.3974358974vw;
  }
}

header .menu .menu-main-menu-container {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -moz-box-flex: 1;
  -moz-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

header .menu ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  -webkit-justify-content: space-evenly;
  -moz-justify-content: space-evenly;
  justify-content: space-evenly;
  list-style: none;
}

header .menu ul li {
  margin-left: auto;
}

header .menu ul li a {
  display: block;
  color: #F0F0F0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.7rem;
  padding: 10px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  header .menu ul li a {
    padding: 0.8012820513vw;
  }
}

header .menu .fb {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 28px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 28px;
  -ms-flex: 0 0 28px;
  flex: 0 0 28px;
  height: 28px;
  background-image: url("../img/fb.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 30px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  header .menu .fb {
    margin-left: 2.4038461538vw;
  }
}

@media screen and (max-width: 766px) {
  header .row {
    height: auto;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  header .logo {
    margin: 10px auto 10px 10px;
  }
  header .menu ul {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 10px 0;
  }
  header .menu ul li {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
  header .menu ul li a {
    font-size: 14px;
  }
  header #menuopener {
    display: block;
    width: 45px;
    height: 45px;
    position: relative;
    margin-left: auto;
  }
  header #menuopener > span, header #menuopener > span::before, header #menuopener > span::after {
    display: block;
    content: '';
    height: 3px;
    width: 33px;
    background-color: #E9AA22;
    position: absolute;
    left: 0px;
  }
  header #menuopener > span {
    top: calc(50% - 2px);
    left: 6px;
  }
  header #menuopener > span::before {
    top: -8px;
  }
  header #menuopener > span::after {
    top: 8px;
  }
  header #menutoggle:not(:checked) ~ .menu {
    height: 0;
    overflow: hidden;
  }
}

main {
  min-height: calc(100vh - 321px);
  background-color: white;
}

footer {
  height: 220px;
  color: white;
  font-size: 0.7rem;
  padding: 40px 0px 5px 0px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  footer {
    padding: 3.2051282051vw 0vw 0.4006410256vw 0vw;
  }
}

footer a {
  color: white;
  text-decoration: none;
}

footer .phone {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 13%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 13%;
  -ms-flex: 0 0 13%;
  flex: 0 0 13%;
  padding-top: 10px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  footer .phone {
    padding-top: 0.8012820513vw;
  }
}

footer .address {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 27%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 27%;
  -ms-flex: 0 0 27%;
  flex: 0 0 27%;
  padding-top: 10px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  footer .address {
    padding-top: 0.8012820513vw;
  }
}

footer .acknowledgement {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 55%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 55%;
  -ms-flex: 0 0 55%;
  flex: 0 0 55%;
  padding: 10px 0px 10px 100px;
  background-image: url("../img/yellow-star.svg");
  background-position: center left;
  background-size: 74px 74px;
  background-repeat: no-repeat;
  margin-left: auto;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  footer .acknowledgement {
    padding: 0.8012820513vw 0vw 0.8012820513vw 8.0128205128vw;
  }
}

footer .c {
  margin-left: 32%;
  padding-top: 50px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  footer .c {
    padding-top: 4.0064102564vw;
  }
}

footer .c8 {
  margin-left: auto;
  padding-top: 50px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  footer .c8 {
    padding-top: 4.0064102564vw;
  }
}

@media screen and (max-width: 766px) {
  footer .phone, footer .address {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-top: 20px;
  }
  footer .acknowledgement {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-top: 20px;
  }
  footer .c {
    margin: auto;
    padding-top: 20px;
  }
  footer .c8 {
    padding-top: 20px;
  }
}

/* Classes */
.rta h2 {
  font-size: 1.65rem;
  margin-bottom: 1em;
  font-weight: 700;
}

.rta h3 {
  font-size: 1.4rem;
  margin-bottom: 1em;
  color: #AF482A;
  font-weight: 700;
}

.rta h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1em;
}

.rta h5 {
  color: #AF482A;
  font-size: 1.5rem;
  margin-bottom: 1em;
  font-weight: 700;
}

.rta p {
  margin-bottom: 1em;
}

.rta ul, .rta ol {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.rta ul li, .rta ol li {
  margin-bottom: 0.5rem;
}

.rta ul ul, .rta ul ol, .rta ol ul, .rta ol ol {
  margin-top: 1rem;
}

.rta a {
  color: #AF482A;
}

.rta form fieldset {
  border: none;
}

.rta form legend {
  font-size: 1.4rem;
  margin-bottom: 1em;
  color: #2B2422;
  font-weight: 700;
}

.rta form input, .rta form textarea, .rta form select {
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border-radius: 0;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  background-color: white;
  width: 100%;
  outline: none;
  font-size: 0.8rem;
}

.rta form input::-ms-expand, .rta form textarea::-ms-expand, .rta form select::-ms-expand {
  display: none;
}

.rta form .frm_form_field {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  margin-bottom: 10px;
  background-color: white;
  padding: 10px;
  border: 1px solid #F0F0F0;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .rta form .frm_form_field {
    margin-bottom: 0.8012820513vw;
  }
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .rta form .frm_form_field {
    padding: 0.8012820513vw;
  }
}

.rta form .frm_form_field label {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 120px;
  -moz-box-flex: 0;
  -moz-flex: 0 0 120px;
  -ms-flex: 0 0 120px;
  flex: 0 0 120px;
  font-size: 0.8rem;
}

.rta form .frm_submit {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  justify-content: flex-end;
}

.rta form .frm_submit input, .rta form .frm_submit button {
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border-radius: 0;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  background-color: #AF482A;
  color: white;
  padding: 10px 20px 10px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
}

.rta form .frm_submit input::-ms-expand, .rta form .frm_submit button::-ms-expand {
  display: none;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .rta form .frm_submit input, .rta form .frm_submit button {
    padding: 0.8012820513vw 1.6025641026vw 0.8012820513vw 1.6025641026vw;
  }
}

.rta form .frm_verify {
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  margin: 0;
  border: 0;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.texture {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.texture:before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.texture.texture-1:before {
  background-image: url("../img/texture-1.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: cover;
}

.texture.texture-2:before {
  background-image: url("../img/texture-2.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 100%;
}

.texture.texture-3:before {
  background-image: url("../img/texture-3.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: cover;
}

.texture.texture-4:before {
  background-image: url("../img/texture-4.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-size: cover;
}

.texture ~ * {
  position: relative;
  z-index: 2;
}

/* BLOCKS */
.cblock.homepage_banner {
  height: 60.8173076923vw;
  max-height: 759px;
  position: relative;
}

.cblock.homepage_banner .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #AF482A;
}

.cblock.homepage_banner .image {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 37vw;
  background-image: var(--bg);
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
}

.cblock.homepage_banner .row {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.cblock.homepage_banner .row .content {
  width: 58.3333333333vw;
  max-width: 728px;
  color: white;
}

.cblock.homepage_banner .row .content h2 {
  font-weight: 700;
  font-size: 2.25rem;
  text-transform: uppercase;
  margin-bottom: 100px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.homepage_banner .row .content h2 {
    margin-bottom: 8.0128205128vw;
  }
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.homepage_banner .row .content h2 {
    font-size: 3.6057692308vw;
  }
}

.cblock.homepage_banner .row .content p {
  padding-left: 100px;
  background-image: url("../img/yellow-star.svg");
  background-position: top left;
  background-size: 84px 84px;
  background-repeat: no-repeat;
}

@media screen and (max-width: 766px) {
  .cblock.homepage_banner {
    height: auto;
  }
  .cblock.homepage_banner .image {
    display: none;
  }
  .cblock.homepage_banner .row .content {
    width: 100vw;
    padding: 40px 0;
  }
  .cblock.homepage_banner .row .content h2 {
    margin-bottom: 40px;
    font-size: 22px;
  }
}

.cblock.page_title {
  position: relative;
}

@media screen and (min-width: 767px) {
  .cblock.page_title {
    height: 30.0480769231vw;
    max-height: 375px;
  }
}

.cblock.page_title .background {
  position: absolute;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  background-color: #AF482A;
}

.cblock.page_title .row {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  -moz-align-items: center;
  align-items: center;
}

.cblock.page_title .row .content {
  width: 58.3333333333vw;
  max-width: 728px;
  color: white;
  padding: 40px 0px 40px 0px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.page_title .row .content {
    padding: 3.2051282051vw 0vw 3.2051282051vw 0vw;
  }
}

.cblock.page_title .row .content h2 {
  font-weight: 700;
  font-size: 2.25rem;
  text-transform: uppercase;
}

.cblock.introduction {
  background-color: #E6DBCE;
  padding: 40px 0px 40px 0px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.introduction {
    padding: 3.2051282051vw 0vw 3.2051282051vw 0vw;
  }
}

.cblock.introduction .content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -moz-box-flex: 0;
  -moz-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.cblock.introduction .image {
  display: none;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -moz-box-flex: 0;
  -moz-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  flex-basis: 500px;
  height: 500px;
  background-image: url("../img/sand-star.svg");
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: auto;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.introduction .image {
    flex-basis: 40.0641025641vw;
  }
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.introduction .image {
    height: 40.0641025641vw;
  }
}

.cblock.introduction .image.hasimage:before {
  display: block;
  content: '';
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 38.8621794872vw;
  max-height: 485px;
  width: 40.0641025641vw;
  max-width: 500px;
  position: absolute;
  top: -160px;
  left: 0;
  z-index: 1;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.introduction .image.hasimage:before {
    top: -12.8205128205vw;
  }
}

@media screen and (min-width: 767px) {
  .cblock.introduction {
    padding: 100px 0px 100px 0px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1248px) and (min-width: 767px) {
  .cblock.introduction {
    padding: 8.0128205128vw 0vw 8.0128205128vw 0vw;
  }
}

@media screen and (min-width: 767px) {
  .cblock.introduction .content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 70%;
    -moz-box-flex: 0;
    -moz-flex: 0 0 70%;
    -ms-flex: 0 0 70%;
    flex: 0 0 70%;
    flex-basis: 500px;
    margin-left: 105px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1248px) and (min-width: 767px) {
  .cblock.introduction .content {
    flex-basis: 40.0641025641vw;
  }
}

@media screen and (min-width: 767px) and (max-width: 1248px) and (min-width: 767px) {
  .cblock.introduction .content {
    margin-left: 8.4134615385vw;
  }
}

@media screen and (min-width: 767px) {
  .cblock.introduction .image {
    display: block;
  }
}

.cblock.call_to_actions .ctas, .cblock.call_to_actions .news_items, .cblock.news_listing .ctas, .cblock.news_listing .news_items {
  position: relative;
  z-index: 2;
  margin-left: -5px;
  margin-right: -5px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.call_to_actions .ctas, .cblock.call_to_actions .news_items, .cblock.news_listing .ctas, .cblock.news_listing .news_items {
    margin-left: -0.4006410256vw;
    margin-right: -0.4006410256vw;
  }
}

.cblock.call_to_actions .ctas .item, .cblock.call_to_actions .news_items .item, .cblock.news_listing .ctas .item, .cblock.news_listing .news_items .item {
  margin-left: 5px;
  margin-right: 5px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -moz-box-flex: 1;
  -moz-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-decoration: none;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.call_to_actions .ctas .item, .cblock.call_to_actions .news_items .item, .cblock.news_listing .ctas .item, .cblock.news_listing .news_items .item {
    margin-left: 0.4006410256vw;
    margin-right: 0.4006410256vw;
  }
}

.cblock.call_to_actions .ctas .item .image, .cblock.call_to_actions .news_items .item .image, .cblock.news_listing .ctas .item .image, .cblock.news_listing .news_items .item .image {
  display: block;
  height: 24.8397435897vw;
  max-height: 310px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #F0F0F0;
}

.cblock.call_to_actions .ctas .item .title, .cblock.call_to_actions .news_items .item .title, .cblock.news_listing .ctas .item .title, .cblock.news_listing .news_items .item .title {
  height: 80px;
  background-color: #AF482A;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 10px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.call_to_actions .ctas .item .title, .cblock.call_to_actions .news_items .item .title, .cblock.news_listing .ctas .item .title, .cblock.news_listing .news_items .item .title {
    padding: 0.8012820513vw;
  }
}

@media screen and (max-width: 766px) {
  .cblock.call_to_actions .ctas, .cblock.call_to_actions .news_items, .cblock.news_listing .ctas, .cblock.news_listing .news_items {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cblock.call_to_actions .ctas .item, .cblock.call_to_actions .news_items .item, .cblock.news_listing .ctas .item, .cblock.news_listing .news_items .item {
    -webkit-flex-basis: 100%;
    -moz-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 766px) and (max-width: 1248px) and (min-width: 767px) {
  .cblock.call_to_actions .ctas .item, .cblock.call_to_actions .news_items .item, .cblock.news_listing .ctas .item, .cblock.news_listing .news_items .item {
    margin-bottom: 0.4006410256vw;
  }
}

@media screen and (max-width: 766px) {
  .cblock.call_to_actions .ctas .item .image, .cblock.call_to_actions .news_items .item .image, .cblock.news_listing .ctas .item .image, .cblock.news_listing .news_items .item .image {
    height: 50vw;
  }
}

.cblock.call_to_actions {
  background-color: #E6DBCE;
  position: relative;
  padding-bottom: 40px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.call_to_actions {
    padding-bottom: 3.2051282051vw;
  }
}

.cblock.call_to_actions:before {
  display: block;
  content: '';
  width: 100vw;
  height: 160px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: white;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.call_to_actions:before {
    height: 12.8205128205vw;
  }
}

.cblock.news_listing {
  margin-top: 20px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.news_listing {
    margin-top: 1.6025641026vw;
  }
}

@media screen and (min-width: 767px) {
  .cblock.news_listing {
    margin-top: -60px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1248px) and (min-width: 767px) {
  .cblock.news_listing {
    margin-top: -4.8076923077vw;
  }
}

@media screen and (min-width: 767px) {
  .cblock.news_listing .news_items .item {
    max-width: 33%;
  }
}

.cblock.form {
  padding: 40px 0px 100px 0px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.form {
    padding: 3.2051282051vw 0vw 8.0128205128vw 0vw;
  }
}

.cblock.form .form {
  background-color: #F0F0F0;
  max-width: 812px;
  margin: auto;
  padding: 40px;
}

@media screen and (max-width: 1248px) and (min-width: 767px) {
  .cblock.form .form {
    padding: 3.2051282051vw;
  }
}

@media screen and (max-width: 766px) {
  .cblock.form .form {
    padding: 20px;
  }
}

.cblock.rich_text .content {
  padding: 40px 20px;
}

@media screen and (min-width: 767px) {
  .cblock.rich_text .content {
    padding: 80px 208px 80px 208px;
  }
}

@media screen and (min-width: 767px) and (max-width: 1248px) and (min-width: 767px) {
  .cblock.rich_text .content {
    padding: 6.4102564103vw 16.6666666667vw 6.4102564103vw 16.6666666667vw;
  }
}

@media screen and (min-width: 767px) {
  .cblock.rich_text .content p, .cblock.rich_text .content ul {
    padding: 0px 104px 0px 104px;
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 767px) and (max-width: 1248px) and (min-width: 767px) {
  .cblock.rich_text .content p, .cblock.rich_text .content ul {
    padding: 0vw 8.3333333333vw 0vw 8.3333333333vw;
  }
}

@media screen and (min-width: 767px) {
  .cblock.rich_text .content p li, .cblock.rich_text .content ul li {
    margin-top: 5px;
  }
}

/*# sourceMappingURL=styles.css.map */
