:root {
  --white: white;
  --black: #1d1d1d;
  --dark-grey: #33383f;
  --light-grey: #99a4af;
  --dim-grey: #495158;
  --grey: #626a72;
  --gradient-red: rgba(255, 1, 1, .15);
  --back-grey: #f5f6f7;
  --gradient-pink: rgba(239, 152, 207, .25);
  --gradient-blue: rgba(122, 167, 255, .32);
  --rw-blue: #0e32a5;
  --silver: #e7ecf0;
  --soft-grey: #cbd5df;
  --rw-pink: #0e32a5/*#66df3e*/;
  --black-50pc: rgba(0, 0, 0, .5);
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-users-userformpagewrap {
  height: 100vh;
  max-width: 340px;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.w-users-userformheader {
  text-align: center;
}

.w-users-userloginformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformbutton {
  width: 100%;
  text-align: center;
}

.w-users-userformfooter {
  justify-content: space-between;
  margin-top: 12px;
  display: flex;
}

.w-users-userformerrorstate {
  margin-left: 20px;
  margin-right: 20px;
  position: absolute;
  top: 100%;
  left: 0%;
  right: 0%;
}

.w-users-userresetpasswordformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-userformsuccessstate {
  display: none;
}

.w-users-usersignupformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-users-usersignupverificationmessage {
  display: none;
}

.w-users-userupdatepasswordformwrapper {
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.w-users-useraccountwrapper {
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5;
  padding: 20px;
}

.w-users-blockcontent {
  background-color: #fff;
  border-bottom: 1px solid #e6e6e6;
  border-left: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  margin-bottom: 20px;
  padding: 20px;
}

.w-users-blockheader {
  background-color: #fff;
  border: 1px solid #e6e6e6;
  justify-content: space-between;
  align-items: baseline;
  padding: 4px 20px;
  display: flex;
}

.w-users-useraccountformsavebutton {
  text-align: center;
  margin-right: 8px;
}

.w-users-useraccountformcancelbutton {
  text-align: center;
  color: #333;
  background-color: #d3d3d3;
}

body {
  background-color: var(--white);
  color: var(--black);
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 20px;
  display: block;
}

h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 45px;
  font-weight: 500;
  line-height: 1.25em;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.4em;
}

h4 {
  color: var(--dark-grey);
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4em;
}

h5 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

h6 {
  color: var(--light-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.5em;
}

p {
  /*opacity: .9;*/
  color: var(--dim-grey);
  text-transform: none;
  margin-bottom: 16px;
  padding-bottom: 22px;
  /*font-family: Libre Baskerville, sans-serif;*/
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
}

a {
  color: var(--grey);
  text-decoration: none;
  transition: color .2s;
}

a.text:hover{color:rgba(255,255,255,0.8);}

ul {
  margin-top: 0;
  margin-bottom: 16px;
  padding-left: 20px;
}

li {
  opacity: .9;
  color: var(--dim-grey);
  margin-bottom: 8px;
  /*font-family: Libre Baskerville, sans-serif;*/
  font-size: 18px;
  line-height: 1.4em;
}

img {
  max-width: 100%;
  display: inline-block;
}

label {
  color: var(--grey);
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 400;
  display: block;
}

em {
  letter-spacing: -.5px;
  font-style: italic;
}

blockquote {
  border-left: 5px solid var(--gradient-red);
  color: var(--dark-grey);
  margin-bottom: 16px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.4em;
}

figcaption {
  text-align: center;
  margin-top: 12px;
}

.page-wrapper {
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  background-color: var(--back-grey);
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.page-wrapper.light-grey {
  background-color: var(--back-grey);
}

.page-wrapper.hide {
  display: none;
}

.section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.light-grey {
  background-color: var(--back-grey);
  position: relative;
}

.section.small {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.light-color-gradient {
  background-color: var(--back-grey);
  background-image: linear-gradient(54deg, rgba(255, 131, 122, .25), rgba(255, 131, 122, 0) 28%), linear-gradient(241deg, var(--gradient-pink), rgba(239, 152, 207, 0) 36%);
  position: relative;
}

.section.daek-page-header {
  background-color: var(--black);
  background-image: radial-gradient(circle farthest-corner at 0% 50%, var(--gradient-red), rgba(0, 0, 0, 0) 47%), radial-gradient(circle farthest-corner at 30% 150%, var(--gradient-blue), rgba(0, 0, 0, 0) 58%);
  color: var(--white);
  padding-top: 96px;
  padding-bottom: 32px;
}

.section.black-gradient {
  z-index: 555;
  width: 100%;
  background-color: var(--black);
  background-image: radial-gradient(circle farthest-corner at 0% 100%, var(--rw-blue) 58%, #365abe);
  color: var(--white);
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.section.light-page-header {
  background-color: var(--back-grey);
  background-image: radial-gradient(circle at 0%, rgba(255, 1, 1, .13), rgba(0, 0, 0, 0) 41%), radial-gradient(circle at 30% 150%, rgba(122, 167, 255, .24), rgba(0, 0, 0, 0) 54%);
  padding-top: 96px;
  padding-bottom: 32px;
}

.section.rw-blue-gradient {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(54deg, rgba(29, 29, 29, .75), rgba(255, 131, 122, 0) 37%), linear-gradient(241deg, rgba(117, 195, 223, .44), rgba(239, 152, 207, 0) 36%), linear-gradient(56deg, #021657, #0e32a5 46%, rgba(0, 0, 0, 0)), url('../images/town1.jpeg');
  background-position: 0 0, 0 0, 0 0, 0 0;
  background-size: auto, auto, auto, cover;
  position: relative;
}

.section.rw-blue-gradient.og {
  background-color: #0e32a5;
  background-image: linear-gradient(54deg, rgba(29, 29, 29, .75), rgba(255, 131, 122, 0) 37%), radial-gradient(circle at 100% 0, rgba(95, 164, 233, .62), rgba(239, 152, 207, 0) 28%);
  background-position: 0 0, 0 0;
  background-size: auto, auto;
}

.section.rw-blue-gradient.og.v2 {
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(54deg, rgba(29, 29, 29, .75) 10%, rgba(255, 131, 122, 0) 37%), linear-gradient(132deg, rgba(0, 0, 15, .62) 13%, rgba(239, 152, 207, 0) 28%), url('../images/rw-bg-01-duotone.png');
  background-position: 0 0, 0 0, 50%;
  background-size: auto, auto, cover;
  background-clip: padding-box;
}

.section.rotater {
  height: auto;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.section.rotater.blue {
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section._1000vh {
  min-height: 1000vh;
  position: relative;
}

.section.white {
  z-index: 2;
  background-color: var(--white);
}

.section.white._100vh {
  height: auto;
  min-height: 200vh;
  background-color: var(--back-grey);
}

.section.testimonial {
  background-color: var(--white);
}

.section.flytrough {
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  min-width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}

.section.full-height {
  height: 100vw;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 9px;
  flex: none;
  margin-bottom: 8px;
  padding: 8px 28px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  transition: box-shadow .2s, transform .2s, border-color .2s, color .2s, background-color .2s;
  box-shadow: 0 2px rgba(32, 32, 32, .05);
}

.button:hover {
  background-color: var(--dark-grey);
}

.button:active {
  background-color: var(--grey);
  transform: translate(0, 2px);
  box-shadow: 0 0 rgba(32, 32, 32, 0);
}

.button.no-margin {
  margin-left: 0;
  margin-right: 0;
}

.button.outline {
  background-color: var(--white);
  box-shadow: inset 0 0 0 1px var(--dim-grey);
  color: var(--black);
}

.button.outline:hover {
  background-color: var(--silver);
}

.button.outline:active {
  background-color: var(--dim-grey);
  color: var(--white);
}

.button.light {
  background-color: var(--back-grey);
  box-shadow: none;
  color: var(--grey);
}

.button.light:hover {
  background-color: var(--silver);
  color: var(--grey);
}

.button.light:active {
  background-color: var(--soft-grey);
  color: var(--dark-grey);
}

.button.light.mobile-hidden {
  box-shadow: inset 0 0 0 1px var(--silver);
}

.button.disabled {
  background-color: var(--back-grey);
  box-shadow: none;
  opacity: .7;
  color: var(--soft-grey);
}

.button.disabled:active {
  transform: none;
}

.button.subscribe {
  margin-bottom: 0;
  margin-left: -24px;
  padding-left: 22px;
  padding-right: 22px;
}

.button.dark {
  background-color: var(--rw-pink);
}

.button.dark:hover {
  background-color: var(--dark-grey);
}

.button.dark:active {
  background-color: var(--light-grey);
}

.button.white {
  background-color: var(--white);
  color: var(--black);
  font-weight: 500;
}

.button.white:hover {
  background-color: var(--silver);
}

.button.white:active {
  background-color: var(--soft-grey);
}

.button.pink {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.button.rw-btn {
  direction: ltr;
  text-align: left;
  text-transform: none;
  white-space: normal;
  background-color: #cf42cf;
  flex: 0 auto;
  align-self: flex-start;
}

.button.rw-btn:hover {
  background-color: var(--dark-grey);
}

.spacer {
  height: 48px;
  background-color: var(--silver);
}

.spacer._64 {
  width: 64px;
  height: 64px;
  background-color: rgba(0, 0, 0, 0);
}

.spacer._32 {
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 6px;
}

.spacer._24 {
  width: 24px;
  height: 24px;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0);
}

.spacer._48 {
  width: 48px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 6px;
}

.spacer._128 {
  width: 128px;
  height: 128px;
  background-color: rgba(0, 0, 0, 0);
}

.spacer._80 {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0);
}

.spacer._96 {
  width: 96px;
  height: 96px;
  height: 96px;
  background-color: rgba(94, 178, 244, 0);
}

.spacer._32 {
  height: 32px;
  background-color: rgba(0, 0, 0, 0);
}

.spacer._16 {
  width: 16px;
  height: 16px;
  background-color: rgba(0, 0, 0, 0);
  flex: none;
}

.text-box {
  z-index: 5;
  width: 100%;
  max-width: none;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.text-box.center-align {
  text-align: center;
  align-self: center;
  margin-left: auto;
  margin-right: auto;
}

.text-box._550px {
  max-width: 550px;
}

.text-box._500px {
  max-width: none;
  display: block;
  position: relative;
}

.text-box.centered {
  margin-left: auto;
  margin-right: auto;
}

.text-box.hero {
  z-index: 6;
  margin-bottom: 100px;
  padding-bottom: 0;
}

.text-box.hero.relative {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 3%;
  display: block;
}

.text-box.cta-text {
  max-width: none;
  border: 1px #000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.text-box.contact-form {
  width: 100%;
  max-width: none;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 0;
  margin-right: auto;
  display: block;
  position: relative;
}

._12-columns {
  background-color: var(--white);
  flex-flow: wrap;
  align-content: stretch;
  justify-content: center;
  align-items: center;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.flex-horizontal {
  flex-wrap: nowrap;
  justify-content: flex-start;
  display: flex;
}

._12-columns.align-top {
  align-items: flex-start;
}

._12-columns.align-left {
  justify-content: flex-start;
}

._12-columns._100padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.container {
  z-index: 12;
  width: 100%;
  height: 98vh;
  max-width: 1230px;
  min-height: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  position: relative;
}

.container.v2 {
  min-height: 83vh;
}

.container._100vh {
  height: 100vh;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.container.caltoaction {
  height: auto;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
  position: absolute;
}

.container.contact-form {
  height: auto;
  min-height: auto;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 170px;
  padding-bottom: 99px;
  display: flex;
}

.container._500vh {
  height: 500vh;
}

.container.hide {
  display: none;
}

.color-block {
  width: 100%;
  height: 60px;
  background-color: var(--black);
  border-radius: 5px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.color-block.grey {
  background-color: var(--grey);
}

.color-block.light-grey {
  background-color: var(--light-grey);
}

.color-block.dark-grey {
  background-color: var(--dark-grey);
}

.color-block.back-grey {
  border: 1px solid var(--silver);
  background-color: var(--back-grey);
}

.color-block.soft-grey {
  background-color: var(--soft-grey);
}

.color-block.silver {
  background-color: var(--silver);
}

.color-block.white {
  border: 1px solid var(--silver);
  background-color: #fff;
}

.color-block.soft-red {
  border: 1px solid var(--silver);
  background-color: var(--gradient-red);
}

.color-block.soft-blue {
  border: 1px solid var(--silver);
  background-color: var(--gradient-blue);
}

.color-block.soft-pink {
  border: 1px solid var(--silver);
  background-color: var(--gradient-pink);
}

.white {
  color: #fff;
  font-weight: 300;
}

.column-styleguide {
  width: 100%;
  height: 40px;
  background-color: var(--silver);
  border-radius: 2px;
  margin-bottom: 20px;
}

.column {
  min-height: 32px;
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column.desk-10 {
  width: 83.33%;
}

.column.desk-10.centred {
  align-items: center;
}

.column.desk-12 {
  width: 100%;
  background-color: #0f0;
}

.column.desk-11 {
  width: 91.66%;
}

.column.desk-6 {
  width: 50%;
  align-items: flex-start;
}

.column.desk-5 {
  width: 41.66%;
}

.column.desk-1 {
  width: 8.33%;
  flex: 0 auto;
}

.column.desk-4 {
  width: 33.33%;
}

.column.desk-9 {
  width: 75%;
}

.column.desk-3 {
  width: 25%;
  flex: none;
}

.column.desk-2 {
  width: 16.66%;
}

.column.desk-7 {
  width: 58.3333%;
}

.column.desk-8 {
  width: 66.6667%;
}

.column.centered {
  align-items: center;
}

.ds-block {
  margin-bottom: 32px;
  font-size: 18px;
}

.horizontal-line {
  width: 100%;
  height: 1px;
  background-color: var(--silver);
  margin-bottom: 36px;
}

.horizontal-line.design-system {
  position: relative;
  bottom: -80px;
}

.rich-text {
  text-align: left;
}

.rich-text img {
  border-radius: 5px;
}

.rich-text h4, .rich-text h3 {
  margin-top: 24px;
}

.nav-content {
  flex-direction: row;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  margin-left: 24px;
  display: flex;
  position: relative;
}

.nav-cta-button-container {
  color: #0e32a5;
  align-items: center;
  display: block;
}

.menu-button.w--open {
  color: rgba(9, 106, 208, .2);
  background-color: #fff;
}

.nav-bar {
  z-index: 200;
  width: 100%;
  border-bottom: 1px solid var(--back-grey);
  background-color: var(--white);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.nav-bar.v2 {
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0);
  border: 1px #000;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.nav-bar.v2.blue {
  height: 70px;
  background-color: rgba(0, 0, 0, .75);
  border: 1px #000;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.logo-div {
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  display: block;
}

.nav-logo {
  transition: opacity .2s;
}

.nav-logo:hover {
  opacity: .75;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-link {
  color: var(--grey);
  cursor: pointer;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
  text-decoration: none;
  transition: color .2s ease-in-out;
  display: block;
}

.footer-link:hover {
  opacity: 1;
  color: var(--black);
}

.footer-link.w--current {
  opacity: 1;
}

.footer-links-container {
  flex-direction: column;
  display: flex;
}

.footer {
  z-index: 0;
  width: 100%;
  /*background-color: rgba(0, 0, 0, 0);*/
  background-color: var(--back-grey);
  padding-top: 24px;
  padding-bottom: 24px;
  display: block;
  position: relative;
}

.icon {
  width: 64px;
  height: 64px;
  color: #fff;
  margin-bottom: 16px;
  font-size: 24px;
}

.icon.large {
  width: 128px;
  height: 128px;
}

.search-banner {
  text-align: center;
  justify-content: space-between;
  align-items: center;
  margin-right: auto;
  padding-right: 4px;
  font-size: 14px;
  line-height: 1.4em;
  display: none;
}

.nav-dropdown {
  color: var(--dark-grey);
  border-radius: 5px;
  margin-left: 6px;
  margin-right: 2px;
  padding: 5px 22px 5px 8px;
  font-weight: 500;
  line-height: 26px;
  transition: color .2s;
  position: relative;
}

.nav-dropdown:hover {
  opacity: 1;
  color: #1b9cca;
}

.nav-dropdown.w--current {
  color: #096ad0;
  font-weight: 700;
  transition-property: none;
}

.paragraph.small {
  opacity: .75;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 1.4em;
}

.paragraph.small.rev {
  color: var(--back-grey);
  padding-left: 0;
}

.paragraph.large {
  font-size: 20px;
  line-height: 1.5em;
}

.paragraph.large.rev {
  color: #fff;
  text-align: left;
  margin-top: 836px;
}

.paragraph.large.cta-para {
  display: block;
}

.paragraph.medium {
  color: var(--white);
  text-align: left;
  font-size: 18px;
}

.paragraph.small {
  opacity: .75;
  font-size: 14px;
  line-height: 1.4em;
}

.paragraph.rev {
  color: var(--dim-grey);
  padding-left: 24px;
  padding-right: 24px;
}

.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.nav-menu {
  text-align: right;
  margin-right: 6px;
}

.ds-menu-brand {
  width: 160px;
  margin-bottom: 50px;
  margin-left: 30px;
}

.ds-menu {
  width: 100%;
}

.ds-menu-link {
  width: 100%;
  color: var(--silver);
  border-left: 4px solid rgba(0, 0, 0, 0);
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 27px;
}

.ds-menu-link:hover {
  color: var(--soft-grey);
}

.ds-menu-link.w--current {
  background-color: var(--dark-grey);
  color: var(--white);
  padding-right: 0;
  font-weight: 500;
}

.ds-nav {
  width: 240px;
  background-color: var(--black);
  background-image: radial-gradient(circle farthest-corner at 0% 100%, var(--gradient-red), rgba(0, 0, 0, 0) 43%);
  padding-top: 40px;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
  overflow: auto;
}

.form-radio-button {
  margin-bottom: 16px;
  padding-left: 24px;
}

.radio-button {
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.radio-button.w--redirected-checked {
  border-width: 6px;
  border-color: #197dff;
}

.form-error {
  background-color: var(--silver);
  color: var(--black);
  border-radius: 6px;
  padding: 16px;
  font-size: 14px;
  line-height: 18px;
}

.form {
  margin-bottom: 0;
}

.checkbox-field {
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin-bottom: 16px;
  padding-left: 24px;
  display: flex;
  position: relative;
}

.check-box {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  margin-left: -24px;
  margin-right: 10px;
}

.check-box.w--redirected-checked {
  background-color: #197dff;
  background-position: 50%;
  background-size: 16px;
  border-color: #197dff;
}

.ds-content {
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 240px;
  display: flex;
  position: relative;
}

.form-success {
  width: 100%;
  background-color: var(--silver);
  color: var(--dark-grey);
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 16px;
  line-height: 1.4em;
}

.form-success.dark {
  background-color: var(--dim-grey);
  color: var(--white);
}

.ds-section {
  z-index: 0;
  text-align: left;
  padding: 60px 80px 48px 60px;
  position: relative;
}

.ds-section.header {
  background-color: var(--back-grey);
  color: var(--black);
}

.ds-title {
  color: var(--dark-grey);
  margin-bottom: 8px;
}

.ds-section-header {
  margin-bottom: 50px;
}

.text-field {
  height: 44px;
  min-width: 120px;
  border: 1px solid var(--silver);
  background-color: var(--back-grey);
  border-radius: 9px;
  margin-bottom: 16px;
  padding: 19px 12px;
  font-size: 15px;
  line-height: 1.4em;
  transition: border-color .2s;
}

.text-field:focus {
  border-color: var(--dark-grey);
}

.text-field::-ms-input-placeholder {
  color: var(--soft-grey);
}

.text-field::placeholder {
  color: var(--soft-grey);
}

.text-field.no-margin {
  margin-bottom: 0;
}

.text-field._45pc {
  width: 100%;
  min-width: auto;
}

.ebook-box {
  width: 100%;
  height: 100%;
  color: var(--black);
  text-align: left;
  border-radius: 4px;
  flex-direction: column;
  transition: transform .2s, opacity .2s;
  overflow: hidden;
}

.ebook-box:hover {
  transform: translate(0, -3px);
}

.ebook-thumbnail {
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
}

.text-area {
  min-height: 161px;
  border: 1px solid var(--silver);
  background-color: var(--back-grey);
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 16px;
  font-size: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .01);
}

.text-area::-ms-input-placeholder {
  color: var(--soft-grey);
}

.text-area::placeholder {
  color: var(--soft-grey);
}

.text-area.lot {
  width: 100%;
  min-width: auto;
}

.tabs-menu {
  width: 100%;
  justify-content: center;
  margin-bottom: 48px;
  display: flex;
}

.vertical-tab {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 24px;
}

.tab-link {
  border-bottom: 2px solid var(--silver);
  opacity: .5;
  color: var(--grey);
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  flex: 0 auto;
  margin-left: 0;
  margin-right: 0;
  padding: 15px 20px;
  font-size: 18px;
}

.tab-link:hover {
  border-bottom-color: var(--soft-grey);
  color: var(--grey);
}

.tab-link.w--current {
  opacity: 1;
  color: #197dff;
  background-color: rgba(0, 0, 0, 0);
  border-bottom-color: #197dff;
  font-weight: 600;
}

.ds-description {
  max-width: 400px;
  color: var(--grey);
}

.small-button {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 8px;
  flex: none;
  margin-bottom: 16px;
  padding: 5px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  transition: transform .2s, border-color .2s, color .2s, box-shadow .2s, background-color .2s;
  box-shadow: 0 1px rgba(0, 0, 0, .06);
}

.small-button:hover {
  background-color: var(--dark-grey);
  color: #fff;
}

.small-button:active {
  background-color: var(--dim-grey);
  transform: translate(0, 1px);
  box-shadow: 0 0 rgba(0, 0, 0, .06);
}

.small-button.light {
  background-color: var(--back-grey);
  box-shadow: none;
  color: var(--grey);
  margin-right: 0;
}

.small-button.light:hover {
  background-color: var(--silver);
}

.small-button.light:active {
  background-color: var(--soft-grey);
  color: var(--dark-grey);
}

.small-button.dark {
  background-color: var(--dim-grey);
  box-shadow: none;
  margin-right: 0;
}

.small-button.dark:hover {
  background-color: var(--dark-grey);
}

.small-button.dark:active {
  background-color: var(--black);
}

.nav-container {
  width: 100%;
  height: 70px;
  max-width: 1230px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 50px;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
}

.error-2 {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.nav-link {
  color: var(--back-grey);
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  margin-left: 4px;
  margin-right: 4px;
  padding: 6px 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  transition: background-color .2s, transform .2s, color .2s;
}

.nav-link:hover, .nav-link:active {
  color: #cf42cf;
}

.nav-link.w--current {
  color: var(--back-grey);
}

.nav-link.cta-button {
  box-shadow: 0 2px 0 0 var(--back-grey);
  color: var(--white);
  background-color: #cf42cf;
  border-radius: 8px;
  padding-left: 20px;
  padding-right: 20px;
  transition: box-shadow .2s, background-color .2s, transform .2s, color .2s;
}

.nav-link.cta-button:hover {
  background-color: var(--dark-grey);
}

.nav-link.cta-button:active {
  background-color: var(--grey);
  box-shadow: 0 0 0 0 var(--silver);
  transform: translate(0, 1px);
}

.form-dropdown {
  width: 100%;
  height: 44px;
  border: 1px solid var(--silver);
  background-color: var(--back-grey);
  color: var(--light-grey);
  border-radius: 6px;
  margin-bottom: 16px;
  padding: 8px 12px;
  font-size: 15px;
  position: relative;
}

.form-dropdown:focus {
  color: #37474e;
}

.form-dropdown::-ms-input-placeholder {
  color: #999;
  font-size: 15px;
}

.form-dropdown::placeholder {
  color: #999;
  font-size: 15px;
}

.field-block {
  z-index: 1;
  width: 100%;
  min-height: 20px;
  min-width: 50px;
  border: 1px solid rgba(0, 0, 0, 0);
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  margin-bottom: 8px;
  display: flex;
}

.error {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.footer-header {
  color: var(--light-grey);
  letter-spacing: .6px;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
}

.footer-container {
  width: 100%;
  max-width: 1230px;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 50px;
  display: block;
}

.ds-colour-block {
  width: 12.5%;
  padding-right: 16px;
  display: inline-block;
}

.ds-colour-grid {
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

.ds-module {
  min-height: 100px;
  min-width: 100px;
  background-color: var(--silver);
  border-radius: 2px;
  flex-direction: column;
  display: flex;
  position: relative;
}

._1-2-grid {
  width: 100%;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._2-1-grid {
  width: 100%;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.heading {
  font-weight: 600;
  display: block;
}

.heading.h1 {
  text-align: left;
  margin-bottom: 18px;
  font-size: 46px;
  line-height: 1.25em;
}

.heading.h1.small-margin {
  margin-bottom: 6px;
}

.heading.h1.rev {
  width: auto;
  max-width: none;
  color: #fff;
  text-align: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  font-size: 35px;
  font-weight: 400;
  display: block;
  position: static;
}

.heading.h2 {
  margin-bottom: 16px;
  font-size: 36px;
  line-height: 1.3em;
}

.heading.h2.cta-h2 {
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
}

.heading.h3 {
  margin-bottom: 12px;
  font-size: 26px;
  line-height: 1.4em;
}

.heading.h3.no-margin {
  margin-bottom: 0;
}

.heading.h4 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.45em;
}

.heading.h5 {
  color: var(--dark-grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

.heading.h6 {
  color: var(--grey);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5em;
}

.heading.large-h1 {
  margin-bottom: 16px;
  font-size: 64px;
  line-height: 1.15em;
}

.error-3 {
  width: 100%;
  max-width: 1230px;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.licenses-grid {
  grid-column-gap: 96px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.utility-page-wrap {
  width: 100vw;
  height: 90vh;
  max-height: 100%;
  max-width: 100%;
  min-height: auto;
  background-color: var(--black);
  color: var(--white);
  background-image: radial-gradient(circle at 50% 0, rgba(239, 152, 207, .2), rgba(0, 0, 0, 0) 57%), radial-gradient(circle at 0 20%, rgba(122, 167, 255, .25), rgba(0, 0, 0, 0) 42%);
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.utility-page-wrap.center-align {
  background-image: radial-gradient(circle farthest-corner at 50% -20%, rgba(239, 152, 207, .2), rgba(0, 0, 0, 0) 61%), radial-gradient(circle farthest-corner at 0% 20%, var(--gradient-blue), rgba(0, 0, 0, 0) 42%);
  text-align: center;
}

.utility-page-content {
  /*width: 380px;*/
  width: 100%;  
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.utility-page-form {
  width: 100%;
  max-width: 400px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.visible-spacer {
  background-color: var(--silver);
  border-radius: 2px;
  margin-bottom: 24px;
  display: inline-block;
}

.email-form {
  max-width: 450px;
  flex-direction: row;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.email-form.center-align {
  max-width: none;
  min-width: 320px;
  color: #34b620;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.section-top {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  display: flex;
}

._3-grid {
  width: 100%;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._4-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.email-subscribe {
  width: 100%;
  grid-column-gap: 12px;
  justify-content: center;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-top: 16px;
  display: flex;
  position: relative;
}

.search {
  align-items: flex-start;
  margin-bottom: 0;
}

.terms-card {
  z-index: 2;
  max-width: 800px;
  background-color: #fff;
  border-radius: 12px;
  margin-top: -180px;
  margin-left: auto;
  margin-right: auto;
  padding: 80px 64px 48px;
  position: relative;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .06);
}

.popular-posts-grid {
  width: 100%;
  grid-column-gap: 80px;
  grid-row-gap: 64px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container-2 {
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  min-height: 50px;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
}

.hidden {
  display: none;
}

.search-bar {
  width: 280px;
  height: 36px;
  border: 1px solid var(--back-grey);
  background-color: var(--back-grey);
  color: var(--black);
  background-image: url('../images/MagnifyingGlass-Grey.svg');
  background-position: 8px;
  background-repeat: no-repeat;
  background-size: 18px;
  border-radius: 6px;
  margin-bottom: 0;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 32px;
  font-size: 15px;
  font-weight: 400;
  transition: border-color .2s;
}

.search-bar:hover, .search-bar:focus {
  border-color: var(--soft-grey);
}

.search-bar::-ms-input-placeholder {
  color: var(--light-grey);
}

.search-bar::placeholder {
  color: var(--light-grey);
}

.search-section {
  flex-direction: row;
  align-items: center;
  display: flex;
}

.card-text-link {
  width: 100%;
  max-width: 450px;
  color: var(--black);
  text-align: left;
  border-radius: 4px;
  flex-direction: column;
  transition: transform .2s, opacity .2s;
  overflow: hidden;
}

.card-text-link:hover {
  color: var(--dark-grey);
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-card {
  width: 60%;
  background-color: var(--white);
  color: var(--black);
  text-align: left;
  border-radius: 12px;
  padding: 40px;
}

.title-tag {
  color: var(--light-grey);
  margin-bottom: 12px;
  font-weight: 500;
}

.cta-banner {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-top: 1px solid var(--silver);
  border-bottom: 1px solid var(--silver);
  text-align: left;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  display: grid;
  position: relative;
  overflow: hidden;
}

.error-4 {
  width: 100%;
  max-width: 1230px;
  min-height: 50px;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
  display: block;
  position: relative;
}

.grey-text-link {
  border-bottom: 1px solid var(--soft-grey);
  color: var(--grey);
}

.grey-text-link:hover {
  border-bottom-color: var(--light-grey);
  color: var(--dark-grey);
}

.banner-section {
  z-index: 200;
  background-color: var(--white);
  background-image: radial-gradient(circle at 25% -20%, rgba(122, 167, 255, .15), rgba(255, 255, 255, 0) 52%), radial-gradient(circle at 100% 0, rgba(255, 1, 1, .08), rgba(255, 255, 255, 0) 25%);
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}

.banner-container {
  max-width: 1080px;
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.banner {
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4em;
  display: flex;
}

.banner-link {
  color: var(--light-grey);
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  line-height: 1.3em;
  text-decoration: none;
  display: inline;
}

.banner-link:hover {
  color: #d4e9ff;
}

.hero-grid {
  grid-template-rows: auto;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  display: none;
  position: relative;
}

.hero-illustration {
  mix-blend-mode: multiply;
  margin-left: auto;
  margin-right: auto;
}

.large-3-grid {
  width: 100%;
  grid-column-gap: 48px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer-grid {
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr 1fr 1fr;
}

.footer-logo-block {
  max-width: 650px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.ebook-header-block {
  height: 50px;
  max-width: 650px;
  position: relative;
}

.ebook-page-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 400px;
}

.ebook-cover {
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.ebook-mobile-block {
  height: 50px;
  max-width: 650px;
  display: none;
  position: relative;
}

.full-page-wrapper {
  width: 100%;
  max-width: none;
  background-color: var(--black);
  background-image: radial-gradient(circle farthest-corner at 100% 100%, var(--gradient-blue), transparent 44%), radial-gradient(circle farthest-corner at 0% 100%, var(--gradient-red), transparent 32%);
  color: var(--white);
  align-items: center;
  padding: 24px 12px;
}

.form-page-logo {
  width: 190px;
}

.form-card-header {
  text-align: center;
  margin-bottom: 32px;
}

.admin-form-card {
  width: 100%;
  max-width: 380px;
  background-color: var(--white);
  color: var(--black);
  border-radius: 12px;
  padding: 40px;
}

.admin-form-card.center-align {
  text-align: center;
}

.form-card-footer {
  grid-column-gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 14px;
}

.below-card-link {
  color: var(--light-grey);
  margin-top: 24px;
  font-size: 14px;
  display: inline-block;
}

.below-card-link:hover {
  color: var(--soft-grey);
}

.checkbox-label {
  flex: 1;
  font-size: 14px;
  display: inline-block;
}

.white-text-link {
  border-bottom: 1px solid var(--grey);
  color: var(--white);
  transition: border-color .2s, color .2s;
}

.white-text-link:hover {
  border-bottom-color: var(--soft-grey);
  color: var(--soft-grey);
}

.field-label {
  color: #202020;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
}

.field-label.no-margin {
  margin-bottom: 0;
}

.field-label.lot {
  color: var(--back-grey);
}

.account-header {
  border-style: none none solid;
  border-bottom-color: #e7ecf0;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.account-info-wrapper {
  margin-top: 24px;
}

.account-card {
  width: 100%;
  max-width: 380px;
  background-color: var(--white);
  color: var(--black);
  border-radius: 12px;
  padding: 24px 32px;
}

.account-page-wrapper {
  width: 100vw;
  height: 90vh;
  max-height: 100%;
  max-width: 100%;
  min-height: 650px;
  background-color: var(--silver);
  color: var(--white);
  background-image: radial-gradient(circle at 50% 0, rgba(239, 152, 207, .2), rgba(0, 0, 0, 0) 57%), radial-gradient(circle at 0 20%, rgba(122, 167, 255, .25), rgba(0, 0, 0, 0) 42%);
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.form-2-grid {
  grid-column-gap: 24px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
}

.verification-box {
  text-align: center;
}

.form-page-logo-link {
  margin-bottom: 32px;
  transition: opacity .2s, color .2s;
}

.form-page-logo-link:hover {
  opacity: .9;
}

.flex {
  z-index: 5;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: auto;
}

.flex.floor {
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 22px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.flex.middle {
  justify-content: center;
}

.flex._100vh {
  min-height: 100vh;
}

.flex.hidden {
  display: none;
}

.divider {
  width: 100%;
  height: 100px;
  background-color: var(--white);
}

.divider.grid-bg {
  background-image: url('../images/pm-maze.gif');
  background-position: 50%;
  background-size: auto;
}

.rotating {
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.rotating._001 {
  z-index: 4;
  background-image: url('../images/rot1d-dith.gif'), url('../images/rot1s-dith.gif');
  background-position: 50%, 50%;
  background-repeat: repeat, no-repeat;
  background-size: 100%, auto;
  display: flex;
  position: absolute;
}

.rotating._001.hidden {
  background-image: none;
  background-position: 0 0;
  background-size: auto;
}

.rotating._002 {
  z-index: 3;
  background-image: url('../images/rot2d-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  display: flex;
  position: absolute;
}

.rotating._002.hidden {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.rotating._003 {
  z-index: 2;
  perspective: 1000px;
  background-image: url('../images/rot3d-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
}

.rotating._003.hidden {
  background-image: none;
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
}

.rotating._004 {
  z-index: 1;
  background-image: url('../images/rot4d-dith.gif');
  background-size: auto;
  position: absolute;
}

.rotating._004.hidden {
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  position: relative;
}

.rotating._004.border {
  border: 1px solid #d8c328;
}

.rotating._014 {
  background-image: url('../images/rot-014-dith.gif');
  background-position: 50%;
  background-size: auto;
  position: absolute;
}

.rotating._013 {
  background-image: url('../images/rot-013-dith.gif');
  background-position: 50%;
  background-size: auto;
}

.rotating._012 {
  background-image: url('../images/rot-012-dith.gif');
  background-position: 50%;
  background-size: auto;
}

.rotating._011 {
  background-image: url('../images/rot011-dith.gif');
  background-position: 50%;
  background-size: auto;
}

.rotating._024 {
  background-image: url('../images/rot-024-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.rotating._023 {
  background-image: url('../images/rot-023-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.rotating._022 {
  background-image: url('../images/rot-022-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.rotating._021 {
  background-image: url('../images/rot-021-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.rotating._023b {
  background-image: url('../images/rot-022B-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.rotating._01 {
  background-image: url('../images/rot-01-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
}

.rotating._02 {
  background-image: url('../images/rot-02-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
}

.rotating._03 {
  background-image: url('../images/rot-03-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
}

.rotating._04 {
  background-image: url('../images/rot-04-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
}

.rotating._05 {
  background-image: url('../images/rot-05-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
}

.rotating._51 {
  background-image: url('../images/rot-051-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
}

.rotating._52 {
  background-image: url('../images/rot-052-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
}

.rotating._53 {
  background-image: url('../images/rot-053-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
}

.rotating._54 {
  background-image: url('../images/rot-054-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
}

.rotating._55 {
  background-image: url('../images/rot-055-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  position: absolute;
}

.home {
  width: 100%;
  height: 100vh;
  background-color: #0e32a5;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.home.hidden {
  display: none;
}

.image {
  width: 25%;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

.image.home {
  width: 50%;
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  transition: opacity .2s;
  display: block;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image.fade-in {
  z-index: 5;
  width: 100%;
  max-width: 260px;
  margin-bottom: 60px;
  padding-top: 80px;
  position: relative;
}

.image-003 {
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.bg-container {
  width: 100%;
  height: 100vh;
  perspective: 1000px;
  background-image: url('../images/rot4-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
}

.image-002 {
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.disc {
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  transform: rotate(0);
}

.disc.bg {
  perspective: none;
  background-image: url('../images/rot4-dith.gif');
  background-position: 50%;
  background-size: auto;
  transform: rotate(0);
}

.disc.bg.hidden {
  min-height: 100vh;
  justify-content: center;
  display: none;
}

.disc.hidden {
  display: flex;
}

.disc._03 {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/rot3-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  display: flex;
  transform: rotate(0);
}

.disc._002 {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/rot2-dith.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  transform: rotate(0);
}

.disc._001 {
  height: auto;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/rot1-dith.gif');
  background-repeat: no-repeat;
  background-size: auto;
  transform: rotate(0);
}

.image-bg {
  max-width: none;
  min-height: 100vh;
  min-width: auto;
  display: none;
}

.overflow {
  width: 2240px;
  overflow: auto;
}

.body {
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
}

.circle-div {
  z-index: 10;
  width: auto;
  height: auto;
  background-color: #b9569c;
  border-radius: 50%;
  position: relative;
}

.circle-div.top {
  z-index: 11;
  width: 635px;
  height: 635px;
  background-color: var(--grey);
  background-image: url('../images/rot4.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.circle-div.top-1 {
  width: 900px;
  height: 900px;
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/rot4.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: auto;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.image-4 {
  width: 2360px;
  height: 1080px;
  max-width: none;
  display: block;
}

.disc-content {
  position: relative;
}

.rotating-container {
  width: 100%;
  height: 100vh;
  min-height: auto;
  perspective: none;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.rot-content {
  z-index: 10;
  perspective: 990px;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.dot {
  width: 24px;
  height: 24px;
  background-color: var(--rw-pink);
  border-radius: 50%;
  justify-content: center;
  align-items: flex-start;
  margin-top: 2px;
  margin-right: 16px;
  display: block;
  transform: scale(.01);
}

.testimonial {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 25px;
  display: flex;
  position: relative;
}

.testimonial.vh {
  height: 100%;
}

.testimonial-container {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial-textbox {
  width: 100%;
  max-width: 760px;
  color: var(--dim-grey);
  text-align: center;
  margin-top: 66px;
  margin-bottom: 66px;
  /*font-family: Libre Baskerville, sans-serif;*/
  font-size: 28px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.75em;
}

.testimonial-textbox.bodycopy {
  text-align: left;
  margin-top: 45px;
  margin-bottom: 60px;
  font-size: 18px;
  font-style: normal;
}

.testimonial-textbox.bodycopy.rev {
  color: var(--white);
}

.testimonial-textbox.bodycopy.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.project-heading {
  color: var(--dim-grey);
  text-transform: none;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 600;
}

.project-heading.main {
  color: var(--dim-grey);
  text-transform: none;
  font-size: 44px;
  font-weight: 700;
}

.project-heading.main.rev {
  color: var(--white);
}

.project-heading.centred {
  text-align: center;
}

.project-heading.show {
  justify-content: center;
  align-items: center;
  display: flex;
}

.project-heading.minor {
  color: var(--light-grey);
  margin-bottom: 13px;
  font-size: 32px;
}

.project-details {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 700;
}

.project-details.pink {
  color: var(--rw-pink);
  margin-bottom: 0;
  padding-left: 24px;
  padding-right: 24px;
}

.images {
  background-color: var(--back-grey);
  margin-top: 0;
}

.images-container {
  background-color: var(--back-grey);
  flex-flow: wrap;
  align-content: flex-end;
  justify-content: center;
  align-items: center;
  display: flex;
}

.surveying {
  max-height: none;
  min-height: 0;
  background-color: var(--back-grey);
  margin-top: 0;
  padding-top: 170px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.surveying.padding-top-100px {
  padding-top: 100px;
}

.surveying.padding-top-100px.hidden {
  display: flex;
}

.surveying.project-details {
  min-height: 73vh;
  flex-direction: column;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.surveying.with-header {
  background-image: url('../images/civil-eng-Ridgeway.jpg');
  background-position: 50% -135%;
  background-repeat: no-repeat;
  background-size: contain;
}

.overlay {
  z-index: 222;
  width: 100%;
  height: 100vh;
  background-color: var(--black);
  opacity: 1;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.overlay.white {
  background-color: var(--white);
  display: none;
}

.overlay.reversed {
  background-color: var(--back-grey);
  display: none;
}

.overlay.test {
  display: none;
}

.load-svg {
  justify-content: center;
  align-items: center;
  display: flex;
}

.load-svg.white {
  display: none;
}

.content {
  z-index: 2;
  width: 100%;
  /*max-width: 70rem;*/
  max-width:1230px;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
    padding-left:3em;
    padding-right:3em;
}

.content._50pc {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.content.pm {
  background-color: var(--white);
  padding-top: 60px;
  padding-left: 60px;
  padding-right: 60px;
}

.content.grey-bg {
  margin-bottom: 0;
}

.text01 {
  max-width: 60%;
  margin-top: 16px;
  margin-bottom: 50px;
  font-size: 18px;
  line-height: 1.7em;
}

.h1-rw {
  margin-bottom: 1px;
}

.searchlight {
  height: 100%;
  max-height: none;
  min-height: auto;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.html-embed {
  width: 100%;
  height: 100%;
  min-height: auto;
  overflow: hidden;
}

.contact-bar {
  min-height: 20vh;
  background-color: #0e32a5;
  background-image: linear-gradient(34deg, rgba(0, 0, 0, .5), #0e32a5 45%);
  padding: 36px 64px;
  display: none;
}

.long-logo {
  max-width: 900%;
}

.cta-container {
  background-color: var(--rw-blue);
  background-image: radial-gradient(circle farthest-corner at 100% 0%, #3668be, var(--rw-blue) 58%);
  color: #fff;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 60px;
  padding-bottom: 60px;
  display: block;
}

.cta-text {
  max-width: none;
  border-style: none solid;
  border-width: 1px;
  border-color: var(--white);
  text-align: left;
  padding-left: 22px;
  padding-right: 22px;
}

.cta-content {
  width: 100%;
  max-width: 1230px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 76px 50px;
  display: flex;
}

.cta-content.hidden {
  display: none;
}

.cta-logo-container {
  width: 100%;
  max-width: 250px;
  padding-bottom: 0;
  padding-right: 32px;
}

.cta-logo {
  width: 100%;
  max-width: none;
  padding-left: 22px;
  padding-right: 22px;
}

.cta-heading {
  margin-bottom: 12px;
  font-size: 35px;
}

.icon-container {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 80px;
  display: flex;
}

.icon-card {
  width: 22%;
  min-height: 50px;
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  display: flex;
}

.icon-card.hidden {
  display: none;
}

.icon-01 {
  width: 100%;
  max-width: 100px;
}

.icon-text {
  color: var(--dim-grey);
  text-align: center;
  padding-top: 12px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}

.icon-02 {
  width: 100%;
  max-width: 107px;
}

.icon-03 {
  max-width: 100px;
}

.icon-04 {
  max-width: 107px;
}

.civil-engineering {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.civil-engineering.hidden {
  display: none;
}

.ce-left {
  width: 47%;
  align-items: center;
  display: flex;
}

.ce-right {
  width: 47%;
  height: 500px;
  align-items: center;
  display: flex;
}

.ce-container {
  width: 100%;
  max-width: 900px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.ce-img {
  width: 100%;
}

.town-planning {
  width: 100%;
  min-height: 70vh;
  background-image: linear-gradient(243deg, rgba(0, 0, 0, 0), var(--black-50pc) 14%, var(--rw-blue) 59%, #1d1d1d), url('../images/town1.jpeg');
  mix-blend-mode: normal;
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  padding-top: 200px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.town-planning.hidden {
  display: none;
}

.ce-slide-in {
  opacity: 1;
}

.cityscape {
  z-index: -1;
  width: 100%;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.h2-rw {
  color: var(--rw-pink);
  -webkit-text-stroke-color: var(--rw-pink);
  text-transform: capitalize;
  /*font-family: Libre Baskerville, sans-serif;*/
  font-size: 27px;
  font-style: italic;
  font-weight: 400;
}

.h2-rw.pink {
  color: var(--dim-grey);
  font-family: Inter, sans-serif;
  font-size: 29px;
  font-style: normal;
}

.recent-projects {
  width: 100%;
  max-width: 70rem;
  padding-top: 60px;
}

.recent-grid {
  width: 100%;
  min-height: 60px;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 32px;
  display: flex;
}

.recent-card {
  width: 30%;
  min-height: 60px;
  border: 1px none var(--soft-grey);
  background-color: var(--soft-grey);
  background-image: none;
  border-radius: 0;
  padding: 5px;
}

.recent-card._001 {
  border-radius: 0;
}

.recent-card._001:hover {
  border-style: none;
}

.recent-card._002 {
  background-color: var(--soft-grey);
  border-radius: 0;
}

.recent-card._002:hover {
  border-style: none;
}

.recent-card._003 {
  background-color: var(--soft-grey);
  border-radius: 0;
}

.recent-card._003:hover {
  border-style: none;
}

.recent-image {
  max-width: 60%;
  padding: 24px;
}

.card-link {
  border: 3px solid var(--back-grey);
  color: var(--rw-blue);
  padding-bottom: 16px;
  transition: transform .2s, color 1s;
  transform: scale(1);
}

.card-link:hover {
  border: 3px solid var(--rw-pink);
  transform: scale(1.05);
}

.see-all-link {
  color: var(--soft-grey);
  font-size: 18px;
  font-weight: 700;
  text-decoration: underline;
  transition: color .2s;
  position: static;
}

.see-all-link:hover, .see-all-link:active {
  color: var(--rw-pink);
}

.project-management {
  width: 100%;
  max-width: 100%;
  background-color: var(--back-grey);
  background-image: url('../images/pm-maze.gif');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.project-management.hidden {
  display: none;
}

.pm-bg-processing {
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 100%;
  background-color: var(--rw-blue);
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.pm-content {
  background-color: var(--white);
  margin-bottom: 60px;
  padding: 60px;
}

.body-2 {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.contact-info {
  width: 34%;
  text-align: left;
  align-self: flex-start;
  margin-left: 23px;
  padding-top: 0;
}

.contact-logo {
  max-width: 170px;
  margin-bottom: 32px;
  margin-left: auto;
}

.pink {
  color: var(--rw-pink);
  font-family: Inter, sans-serif;
  font-weight: 700;
}

.body-3 {
  background-color: var(--rw-blue);
  align-items: center;
  display: flex;
}

.rw-navbar {
  width: 100%;
  height: 70px;
  background-color: rgba(0, 0, 0, .75);
  position: fixed;
}

.nav-link-2 {
  color: var(--back-grey);
  letter-spacing: .2px;
  text-transform: none;
  cursor: pointer;
  padding: 33px 0 28px;
  font-size: 15px;
  font-weight: 500;
  transition: color .3s ease-in-out;
  border-bottom: 3px solid transparent;
}

.nav-link-2:hover {
  /*color: var(--rw-pink);*/
  border-bottom-color: #ffffff; 
}

.nav-link-2.w--current {
  /*border-bottom: 3px solid var(--rw-pink);*/
  border-bottom-color: #ffffff;  
  color: var(--back-grey);
}

.nav-link-2.contact {
  background-color: var(--rw-pink);
}

.dropdown-toggle {
  color: var(--back-grey);
  padding: 0 18px 0 0;
}

.dropdown-item {
  height: 250px;
  background-color: var(--white);
  text-align: center;
  border-right: 1px solid #ddd;
  flex-wrap: wrap;
  flex: 1;
  align-items: flex-end;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.dropdown-item:hover {
  background-color: #f3f5fa;
}

.dropdown-item.home-btn {
  width: 100%;
  max-width: 250px;
  border: 1px solid var(--rw-pink);
  border-radius: 44px;
  margin: 22px 22px 22px 0;
  transition: transform .2s, background-color .3s;
  transform: scale(.95);
}

.dropdown-item.home-btn:hover {
  border-width: 2px;
  border-color: var(--rw-pink);
  background-color: #f3f5fa/*rgba(102, 223, 62, .07)*/;
  transform: scale(1);
}

.dropdown-item.rw {
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
}

.logo-wrapper {
  align-self: center;
  margin-right: 42px;
  padding-left: 0;
}

.logo-wrapper.page-transition {
  opacity: 1;
  transition: transform .1s, color .2s;
}

.logo-wrapper.page-transition:hover {
  opacity: .9;
}

.logo-wrapper.page-transition.w--current {
  flex: none;
  align-self: auto;
}

.dropdown-icon {
  width: 60px;
  height: 60px;
}

.centered_w1 {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 2em;
  padding-right: 2em;
  display: block;
}

.centered_w1.nav-wrapper {
  z-index: 2;
  max-width: 1230px;
  background-color: rgba(0, 0, 0, 0);
  justify-content: space-between;
  align-items: center;
  padding-left: 3em;
  padding-right: 3em;
  display: flex;
  position: relative;
}

.icon-2 {
  color: #ffffff;
  margin-right: 0;
  padding-top: 1px;
}

.nav-main {
  z-index: 99999;
  width: 100%;
  height: 84px;
  opacity: 1;
  background-color: rgba(0, 0, 0, .95);
  border-bottom: 1px #bebebe;
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.dropdown-list {
  height: 250px;
  max-height: 250px;
  background-color: var(--back-grey);
  display: none;
  top: 84px;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.dropdown-list.rw.w--open {
  background-color: rgba(0, 0, 0, 0);
}

.nav-point-wrapper {
  margin-left: 0;
  margin-right: 0;
  padding-left: 18px;
  padding-right: 18px;
  position: static;
}

.nav-point-wrapper.dropdown {
  opacity: 1;
  color: var(--back-grey);
  margin-left: 0;
  margin-right: 0;
  padding-right: 13px;
}

.nav-point-wrapper.last-nav-item {
  padding-right: 0;
}

.dropdown-item-wrapper {
  z-index: 1;
  height: 250px;
  max-height: 250px;
  box-shadow: none;
  color: #0f0;
  background-color: #f7f9fc;
  display: flex;
}

.dropdown-item-wrapper.rw {
  background-color: rgba(0, 0, 0, 0);
}

.nav-menu-2 {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: static;
}

.logo-2 {
  width: 125px;
  margin-top: 2px;
}

.dropdown-icon-wrapper {
  width: 100%;
  padding-top: 40px;
}

.dropdown-icon-wrapper.rw {
  width: 70%;
  background-color: var(--white);
}

.dropdown-link {
  color: var(--rw-pink);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  text-decoration: none;
}

.dropdown-description-wrapper {
  width: 100%;
  padding-bottom: 48px;
  padding-left: 24px;
  padding-right: 24px;
}

.infotext {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 22px;
}

.infotext.grey {
  color: #909090;
}

.tallboy {
  width: 10vw;
  height: 200vh;
}

.button-2 {
  background-color: var(--rw-pink);
  border: 1px solid var(--rw-pink);
  border-radius: 7px;
}

.button-2:hover {
  background-color: var(--dark-grey);
  border-color:var(--dark-grey);
}

.button-2.no-margin {
  border-style: none;
}

.page-dropdown-overlay {
  z-index: 99;
  background-color: rgba(0, 0, 0, .4);
  display: flex;
  position: fixed;
  top: 82px;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  margin-top: 12px;
}

.contact-heading {
  color: var(--rw-pink);
  margin-bottom: 33px;
  font-size: 22px;
}

.paragraph-2 {
  margin-top: 0;
}

.paragraph-3 {
  border-left: 1px none var(--back-grey);
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 44px;
}

.postal-para {
  padding-top: 13px;
  padding-bottom: 14px;
}

.h3-rw {
  color: var(--dim-grey);
  margin-bottom: 16px;
  padding-bottom: 12px;
  font-size: 25px;
  font-weight: 500;
  line-height: 16px;
}

.rw-list {
  width: 780px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto auto auto auto auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.rw-list._760 {
  width: 100%;
  max-width: 760px;
}

.rw-list._2-col {
  grid-template-columns: 1fr 1fr;
}

.section-pan {
  width: 100%;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  display: none;
}

.pan-container {
  width: 100%;
  height: 100vh;
  text-align: center;
  object-fit: fill;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.pan-content {
  width: 3089px;
  height: 1080px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(-15%);
}

.image-5 {
  width: 3089px;
  height: 1080px;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.map-section {
  z-index: 98;
  width: 100%;
  height: 100vh;
  max-height: 100vh;
  max-width: 100%;
  min-height: 100vh;
  min-width: 100%;
  background-color: rgba(0, 0, 0, 0);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.map-div {
  width: 100%;
  height: 100vh;
  background-color: #c1d815;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.blank-section {
  z-index: 1;
  width: 100%;
  height: auto;
  min-height: auto;
  min-width: 100%;
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(rgba(14, 50, 165, .15), rgba(51, 56, 63, .15));
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.blank-section.rel {
  display: none;
  position: relative;
}

.map-container {
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.html-embed-2 {
  overflow: hidden;
}

.test-section {
  width: 100%;
  height: 100vh;
  background-color: var(--silver);
  justify-content: center;
  align-items: center;
  margin-top: auto;
  display: flex;
}

.blank-div {
  z-index: 99;
  width: 100%;
  height: 100vh;
  min-width: auto;
  justify-content: center;
  align-items: center;
  padding-right: 0;
  display: flex;
  position: absolute;
}

._100vh-div {
  width: 100%;
  height: 100vh;
  background-color: var(--silver);
  display: none;
}

.new-section {
  width: 100%;
  height: 60vh;
  background-color: var(--back-grey);
}

.lot-block {
  background-color: #142149;
  border-radius: 12px;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 22px;
  display: flex;
}

.lot-number-block {
  width: 37%;
}

.rev {
  width: 100%;
  color: var(--back-grey);
}

.grid-2 {
  grid-template-rows: auto auto;
}

.contacr-form {
  width: 100%;
}

.form-block {
  justify-content: space-between;
  display: flex;
}

.post-image {
  cursor: zoom-in;
  margin-bottom: 60px;
}

.post-image._760 {
  width: 100%;
  max-width: 760px;
}

.post-image.no-margin {
  max-width: 228px;
  cursor: zoom-in;
  margin-bottom: 0;
  margin-right: 32px;
}

.flythrough {
  width: 100%;
  height: 100vh;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.flythrough-image {
  width: 100%;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(0, -40%);
}

.flythrough-image.grey {
  z-index: 98;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.flythrough-gradient {
  z-index: 99;
  opacity: 1;
  mix-blend-mode: multiply;
  background-color: #5361ef;
  background-image: linear-gradient(155deg, #5361ef, #3ae7ff);
  justify-content: space-between;
  align-items: stretch;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

._760-image {
  width: 100%;
  max-width: 760px;
  margin-bottom: 60px;
}

.grid-3 {
  max-width: 760px;
  flex: 0 auto;
  grid-template-rows: auto;
}

.animation {
  width: 100%;
  height: 100vh;
  background-color: rgba(141, 184, 229, .22);
  justify-content: center;
  align-items: center;
  display: flex;
}

.anim-container {
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  perspective: 1000px;
  transform-origin: 0 0;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: visible;
  transform: none;
}

.anim-content {
  width: 80%;
  height: 50vh;
  background-color: var(--rw-blue);
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  transform: rotate(0);
}

.anim-content:hover {
  transform: none;
}

.anim-image1 {
  z-index: 999;
  width: 100%;
  max-width: 300px;
  min-width: auto;
  padding: 44px 50px;
  position: absolute;
  transform: rotate(0);
}

.anim-image1:hover {
  transform: none;
}

.anim-card {
  width: 150px;
  height: 150px;
  background-color: var(--rw-pink);
  transform-origin: 50%;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.anim-card:hover {
  transform-origin: 50%;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.a-card {
  z-index: 888;
  width: 654px;
  height: 654px;
  background-color: var(--rw-pink);
  border-radius: 0%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  transform: translate(0)translate(0);
}

.a-card.hide {
  display: none;
}

.image-6 {
  width: 100%;
  height: 100%;
  max-height: 100%;
  padding: 19px;
}

.i-1 {
  max-width: none;
  background-color: #b12d2d;
  border-radius: 0;
}

._2-col-grid._25-75._760 {
  max-width: 760px;
  grid-template-columns: 2.5fr 7.5fr;
}

._2-col-grid._760 {
  max-width: 760px;
}

._2-col-grid._760._30-70 {
  grid-column-gap: 50px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 2.75fr 7.25fr;
  grid-auto-columns: 1fr;
  margin-top: 32px;
  display: grid;
}

/* NEW BIO AREA - LINDSAY TODD MAR 2024. */
.rw-team-bios{margin-top:3em;}

.rw-team-bio .bio-heading{position:relative;padding-right:50px;margin-top:20px;}
.bio-title{line-height:0.8em;font-weight:600;}
.rw-team-bio .bio-content{display:none;}
.rw-team-bio .show-modal{display:block;}
.rw-team-bio a.bio-btn{position:absolute;top:0px;right:0px;width:40px;height:40px;transition: transform 0.2s ease-in-out;}
.rw-team-bio a.bio-btn:hover{transform:scale(1.05);}
.rw-team-bio small, #bio-modal small{letter-spacing:1px;font-size:11px;font-weight:400;text-transform:uppercase;}

#bio-modal{background-color: var(--back-grey);z-index:100000;display:block;position:fixed;width:100%;height:100%;top:0;left:0;transform: translate(100%, 0px);transition: transform 0.5s ease-in-out;padding:4em 3em 3em 3em;overflow:auto;}
#bio-modal.show{transform: translate(0%, 0px);}

/*#bio-modal .w-layout-grid._1-2-grid{grid-template-columns: 3fr 7fr;}*/
#bio-modal-content p{font-size:15px;text-align:justify;}
#bio-modal-title{margin-top:20px;}
a.close-btn{position:absolute;top:1.5em;right:1.5em;width:15px;height:15px;}
a.close-btn img{transition: transform 0.2s ease-in-out;}
a.close-btn.bottom{display:none;top:unset;bottom:0;right:-1.5em;}
a.close-btn.bottom:before{position:absolute;content:'CLOSE';right:25px;top:4px;font-size:12px;line-height:15px;}
a.close-btn:hover img{transform:scale(1.2);}

body.no-scroll{overflow:hidden;}

#bg-video{width: 100vw;height: 100vh;object-fit: cover;position: fixed;left: 0;right: 0;top: 0;bottom: 0;z-index: -1;}
#bg-image{width: 100vw;height: 100vh;position: fixed;left: 0;right: 0;top: 0;bottom: 0;z-index: -1;background: url("../video/rw-frame-3-video-poster-mob.jpg") no-repeat;background-size: cover;display:none;}
.section.rotater:after{position:absolute;content:'';width:100%;height:100%;left: 0;right: 0;top: 0;bottom: 0;background-color:rgba(0,0,0,0.3);}

/* Extra changes. */
.nav-main{background-color:rgba(0,0,0,0.75) !important;}
.nav-main.contact-pg{background-color:rgba(0,0,0,0.95) !important;}
span.cta-heading{font-weight:500;margin-top:0px;line-height:1.25em;}
.h1.heading.bodycopy{font-weight:600;font-size:46px;text-align:center;line-height:1.1em;}
.h1.heading.bodycopy > .h1-sub{font-size:24px;text-transform:uppercase;letter-spacing:3px;}
.h2.heading.bodycopy{font-weight:500;font-size:24px;}

p.bodycopy.w-spaced{margin-bottom:0px;padding-bottom:0px;}
p.bodycopy.spaced{text-align:left;letter-spacing:1px;line-height:1.5em;margin-bottom:0px;padding-bottom:0px;padding-top:2.5em;}

.utility-page-wrap.rw-bg {background: url("../images/rygate-and-west-page-bg.jpg") no-repeat;background-size: cover;background-position:center center;}

.rw-page{
    max-height: none;
    min-height: 0;
    background-color: var(--back-grey);
    margin-top: 0;
    padding-top: 170px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}
.rw-page.rw-heading:after{position:absolute;content:'';top:0px;left:0px;width:100%;height:240px;/*background: url("../images/rygate-and-west-404-bg.jpg") no-repeat;*/background: url("../images/rygate-and-west-page-header.jpg") no-repeat; background-size: cover;background-position:center center;}
.rw-page.rw-heading h1.h1.heading.project-heading{color:#ffffff;margin-bottom:80px;}
.rw-page p.bodycopy a:hover{color:var(--black);}

.w-layout-grid._1-grid.rw-surveying{display:none;}

.rw-border{border-top:1px solid rgb(99,99,99);display:block;width:100%;max-width:1230px;margin:60px auto 32px;}
.rw-button{color:var(--dim-grey) !important;font-size:18px;background-color:transparent !important;border:1px solid rgba(99,99,99,0.1);box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;padding:1em;margin-bottom:0px;transition: all 0.2s ease-in;letter-spacing:0.5px;line-height:1.1em !important;}
.rw-button:hover{background-color:#000 !important;color:#ffffff !important;}

.rw-intro-footer-text{line-height:1.1em !important;text-transform:uppercase;letter-spacing:3px;}
.rw-intro-footer-text > span{display:block;}

/* TEAM BLOCK. */
.rw-about{background-color: var(--white);flex-direction: column;justify-content: center;align-items: center;padding: 0px 25px;display: flex;position: relative;}
.rw-about h2.h1.heading.bodycopy{position:relative;display:inline;/*width:100%;text-align:left;*/font-size:35px;margin:0px auto 60px;padding:0px;}
/*.rw-about h2.h1.heading.bodycopy:after{position:absolute;content:'';width:150px;height:2px;background-color:var(--dim-grey);bottom:-18px;left:55px;}*/
.rw-team{position:relative;z-index:1;width:100%;height:300px;background: url("../images/bios/rw-team-bg-horizontal.jpg") no-repeat;background-size: cover;background-position:center center;display:block;text-align:center;padding-top:135px;}
.rw-team:before{position:absolute;content:'';width:100%;height:100%;top:0px;left:0px;background-color:rgba(0,0,0,0.15);transition: background-color .2s;}
.rw-team > span{position:relative;z-index:2;color:#ffffff;font-size:38px;line-height:1.1em;font-weight:500;}
.rw-team:hover:before{background-color:rgba(0,0,0,0.1);}

/* SERVICES BLOCKS. */
.rw-services{width:100%;background-color:var(--rw-blue);background-image: radial-gradient(circle farthest-corner at 0% 100%, var(--rw-blue) 58%, #365abe);padding:100px 32px;position: relative;}
.rw-services:after{position:absolute;content:'';width:100%;height:100%;top:0px;left:0px;background: url("../images/rygate-and-west-amp-bg.png") no-repeat;background-size:contain;background-position:left bottom;opacity:0.05;z-index:1;overflow: hidden;}
.rw-services > div{z-index:2;position: relative;}
.rw-services h2{color:#ffffff;margin-bottom:60px;}
.rw-services h2.h1.heading.bodycopy{position:relative;display:block;text-align:center;}
/*.rw-services h2.h1.heading.bodycopy:after{position:absolute;content:'';width:150px;height:2px;background-color:#ffffff;bottom:-18px;left:calc(50% - 75px);}*/
.rw-services h2.h1.heading.bodycopy{font-size:35px;}
.rw-services h3.h3.heading.bodycopy{font-size:22px;}
.rw-services h2.h1.heading.bodycopy, .rw-services h3.h3.heading.bodycopy, .rw-services p.bodycopy, .rw-services p.h2.heading.bodycopy{color:#ffffff;margin:0px auto 60px;padding:0px;}
.rw-services p.heading.bodycopy{margin:60px auto 0px;}
.rw-services .w-layout-grid{max-width:1230px;margin:0 auto;grid-row-gap: 32px;grid-column-gap: 32px;}
.rw-service-block.w-inline-block{overflow:hidden;position:relative;min-height:300px;z-index:3;box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 8px 0px;}
.rw-service-block.w-inline-block:after{position:absolute;content:'';width:100%;height:100%;top:0px;left:0px;background: url("../images/rygate-and-west-amp-transparent.png") no-repeat;background-size:120px;background-position:left bottom;}
.rw-service-block.w-inline-block .rw-service-block-overlay{position:absolute;content:'';width:100%;height:100%;top:0px;left:0px;background-color:rgba(0,0,0,0.4);transition: background-color .2s;}
.rw-service-block.w-inline-block .dropdown-description-wrapper{position:absolute;bottom:0;z-index:3;padding-left:120px;padding-right:34px;padding-bottom:34px;}
.rw-service-block.w-inline-block .dropdown-link{text-align:right;font-size:24px;color:#ffffff;letter-spacing:1px;line-height:1.2em;opacity:1;}
.rw-service-block.w-inline-block p.dropdown-link{transition:opacity 0.4s ease-in-out 0.2s;}
.rw-service-block.w-inline-block.active p.dropdown-link{transition:none;}
.rw-service-block.w-inline-block:hover .rw-service-block-overlay{/*background-color:rgba(14,50,165,0.3);*/background-color:rgba(0,0,0,0.65);}

.rw-service-block.rw-service-surveying{background: url("../images/farmland2-p-2000.jpg") no-repeat;background-size: cover;background-position:right bottom;}
.rw-service-block.rw-service-civil-eng{background: url("../images/civil-eng-footer.jpg") no-repeat;background-size: cover;background-position:right bottom;}
.rw-service-block.rw-service-town-planning{background: url("../images/town-planning-footer-2.jpg") no-repeat;background-size: cover;background-position:right bottom;}
.rw-service-block.rw-service-project-mgmt{background: url("../images/project-management-footer-2.jpg") no-repeat;background-size: cover;background-position:right bottom;}

.rw-services .rw-button, .utility-page-wrap .rw-button{position:relative;z-index:3;display:block;max-width:220px;margin:40px auto 0px;color:var(--black) !important;background-color:#ffffff !important;}
.rw-services .rw-button:hover, .utility-page-wrap .rw-button:hover{background-color:#000 !important;color:#ffffff !important;}

.services-excerpt{max-height:0;color:#ffffff;font-size:13px;font-weight:400;letter-spacing:1px;margin:0 0 0 auto;padding:0px;width:70%;text-align:right;transition:max-height 0.2s ease-in-out;opacity:0;line-height:1.3em;}
.rw-services .w-layout-grid._3-grid .services-excerpt{width:100%;}
.rw-service-block.w-inline-block:hover .services-excerpt{max-height:100%;opacity:1;}
.rw-service-block.w-inline-block:hover p.dropdown-link{opacity:0;}

.utility-page-wrap .rw-button{width:150px;}

/* CALL TO ACTION. */
.rw-cta{width:100%;background-color:var(--rw-blue);background-image: radial-gradient(circle farthest-corner at 0% 100%, var(--rw-blue) 58%, #365abe);padding:100px 32px 100px 32px;position:relative;}
.rw-cta h3.h3.heading.bodycopy, .rw-cta h4.h4.heading.bodycopy{max-width:1230px;text-align:center;color:#ffffff;margin:0px auto 22px;padding:0px;}
.rw-cta h3.h3.heading.bodycopy{font-size:22px;}
.rw-cta h4.h4.heading.bodycopy{margin:0px auto;font-size:16px;}
.rw-cta:after{position:absolute;content:'';width:100%;height:100%;top:0px;left:0px;background: url("../images/rygate-and-west-amp-bg.png") no-repeat;background-size:80%;background-position:left center;opacity:0.05;z-index:1;}
.rw-cta > div{position:relative;z-index:2;}
.rw-cta .rw-button{display:block;max-width:220px;margin:40px auto 0px;color:var(--black) !important;background-color:#ffffff !important;}
.rw-cta .rw-button:hover{background-color:#000 !important;color:#ffffff !important;}

/* NAV. */
.nav-main.rw-nav .nav-link-2, .nav-main.rw-nav .nav-point-wrapper.last-nav-item > .button-2.w-button{text-transform:uppercase;font-size:14px;font-weight:600;letter-spacing:1px;}

.rw-contact:after{position:absolute;content:'';width:100%;height:100%;top:0px;left:0px;background: url("../images/rygate-and-west-amp-bg.png") no-repeat;background-size:cover;background-position:left bottom;opacity:0.05;z-index:556;}
.rw-contact > div{position: relative;z-index:557;}

/* FOOTER. */
.rw-pre-footer{position:relative;width:100%;height:200px;background: url("../images/rygate-and-west-pre-footer.jpg") no-repeat;background-size: cover;background-position:40% center;}

.rw-footer{padding:60px 0px 180px 0px !important;background:#000000;}
.rw-footer > .cta-container{background:none !important;}
.rw-footer > .cta-container{padding:0px !important;}
.rw-footer > .cta-container .rw-logo{width:100%;height:100%;background: url("../images/rygate-and-west-banner-footer.png") no-repeat;background-size: contain;background-position:left top;}
/*
.rw-footer > .cta-container > .cta-grid{max-width:100% !important;grid-template-columns: 1fr 1fr;padding:0px;justify-items:unset;}
.rw-footer > .cta-container > .cta-grid .grid-4{grid-template-columns: 1fr 1fr 1fr 1fr;}
*/
.rw-footer .cta-text{min-height:260px;margin-top:0px;padding:0px 30px 0px 0px;width:100%;border:none;}
.rw-footer .cta-text .w-layout-grid.grid.address-grid:last-child{margin-top:22px;}
.rw-footer .cta-heading{font-size:28px;}
.rw-footer .rw-institute-logos.w-layout-grid._4-grid{opacity:0.3;align-items:center;}
.rw-footer .rw-institute-logos .cta-image{padding:0px 22px 0px 0px;max-height:110px;}

.rw-footer .socials a{transition: opacity 0.2s ease-in;}
.rw-footer .socials a:hover{opacity:0.8;}

.rw-copyright{position:absolute;bottom:20px;left:25px;}
.rw-copyright p.bodycopy{margin-bottom:0px;padding:0px;font-size:11px;color:#ffffff;opacity:0.8;}

/*.social-icon.reviews{padding-left:4px;margin-left:4px;}*/

@media screen and (min-width: 1920px) {
    #bio-modal ._1-2-grid{grid-template-columns: 2fr 8fr;}
    
    .rw-team{height:15vw;padding-top:9vw;}
    .rw-services:after{background-size:80%;}
    
    .rw-footer .cta-text{min-height:300px;margin-top:50px;}
    .rw-footer .rw-institute-logos .cta-image{padding:0px 62px 0px 0px;}
}

/* NEW TIMELINE AREA - LINDSAY TODD MAR 2024. */
.rw-timeline-heading{margin-top:3em;text-align:center !important;}
.w-layout-grid.rw-timeline{margin-top:3em;grid-row-gap: 0px;grid-column-gap: 0px;}
.rw-timeline-left, .rw-timeline-right{position:relative;padding:1em;}
.rw-timeline-left{text-align:right;}

/* Central line. */
.rw-timeline-left:before, .rw-timeline-right:before{position:absolute;content:'';width:1px;height:100%;background-color:var(--rw-blue);top:0;left:0px;}
.rw-timeline-left:before{left:unset;right:-1px;}

/* Dot marker. */
.rw-timeline-left:after, .rw-timeline-right:after{position:absolute;content:'';width:18px;height:18px;background-color:var(--rw-blue);top:1.75em;left:-8.5px;border-radius:9px;}
.rw-timeline-left:after{left:unset;right:-9.5px;}

.rw-timeline > .first{padding-top:0px;}
.rw-timeline > .first:after{top:0.75em;}

.rw-timeline > .last{padding-bottom:0px;}
.rw-timeline > .last p{padding-bottom:0px;margin-bottom:0px;}

@media screen and (max-width: 1600px) {
    .rw-services:after, .rw-cta:after{background-size:cover;}
}
/*
@media screen and (max-width: 1400px) {
    .rw-cta:after{background-size:120%;}
}*/

@media screen and (max-width: 1280px) {
    .rw-footer .cta-heading{font-size:22px;}
}

@media screen and (max-width: 991px) {
    .w-layout-grid._2-grid.rw-surveying,.w-layout-grid._3-grid.rw-surveying{display:none;}
    .w-layout-grid._1-grid.rw-surveying{display:block;}
    /*p.bodycopy.spaced{padding-top:0px;margin-top:16px;}*/
    
    .centered_w1.nav-wrapper, .rw-page > .content, .rw-services, .rw-cta, #bio-modal, .rw-contact > .container.contact-form{padding-left:25px;padding-right:25px;}
    .rw-services .w-layout-grid{grid-row-gap: 25px;grid-column-gap: 25px;}
    .rw-services .w-layout-grid._3-grid{grid-template-columns: 1fr !important;}
    .rw-services .w-layout-grid._3-grid .services-excerpt{width:70%;}
    .rw-service-block.w-inline-block .dropdown-link{font-size:20px;}
    
    .rw-services:after, .rw-cta:after{background-size:120%;}
    
    .rw-contact .contact-info{margin-left:0;}
    .rw-contact:after{opacity:0;}
    
    a.close-btn{right:25px;}
    a.close-btn.bottom{right:0px;}
    
    .rw-pre-footer{height:100px;}
    
    .rw-footer{padding-top:25px !important;}
    .rw-footer .w-layout-grid._2-grid{grid-template-columns: 1fr !important;}
    .rw-footer .rw-institute-logos.w-layout-grid._4-grid{grid-column-gap: 16px; grid-template-columns: 1fr 1fr 1fr 1fr !important;}
    .rw-footer .cta-heading{margin-bottom:30px;}
    .rw-footer .cta-text .w-layout-grid.grid.address-grid{margin-top:22px;grid-row-gap: 10px !important;}
    .rw-footer .cta-text .w-layout-grid.grid.address-grid:last-child{grid-row-gap: 22px !important;}
    .rw-footer .cta-text{min-height:auto;padding:60px 25px 0px 25px;}
    .rw-footer .rw-logo{min-height:35vw;}
    .rw-footer .rw-institute-logos .cta-image{padding:0px 25px 0px 25px;}
    /*.rw-footer .rw-institute-logos .cta-image:nth-of-type(3),.rw-footer .rw-institute-logos .cta-image:nth-of-type(4){padding:0px;}*/
}
@media screen and (max-width: 768px) {
    
    a.close-btn.bottom{display:block;}
    
    .rw-timeline-heading{text-align:left !important;}
    .w-layout-grid.rw-timeline{grid-template-columns: 1fr;}
    .rw-timeline-left{text-align:left;}
    .rw-timeline-left:before{left:0px;right:unset;}
    .rw-timeline-left:after{left:-8.5px;right:unset;}
    
    #bg-video {display: none;}
    #bg-image {display:block;}
    
    .rw-services .w-layout-grid{grid-template-columns: 1fr !important;}
    .rw-service-block.w-inline-block{min-height:250px;}
    .rw-services p.h2.heading.bodycopy{font-size:18px;}
    .rw-services:after, .rw-cta:after{background-size:150%;}
    
    .rw-team{height:125vw;background: url("../images/bios/rw-team-bg-stacked.jpg") no-repeat;background-size: cover;background-position:center center;}
}

@media screen and (max-width: 480px) {
    .h1.heading.bodycopy{font-size:44px;}
    .h1.heading.bodycopy > .h1-sub{font-size:15px;}
    .h2.heading.bodycopy{font-size:20px;}
    .rw-about h2.h1.heading.bodycopy, .rw-services h2.h1.heading.bodycopy{font-size:28px;}
    
    /*.rw-about h2.h1.heading.bodycopy:after{width:79px;left:65px;}
    .rw-services h2.h1.heading.bodycopy:after{width:79px;left:calc(50% - 39px);}*/
    .rw-service-block.w-inline-block .dropdown-link{font-size:18px;}
    .rw-service-block.w-inline-block .dropdown-description-wrapper{padding-left:100px;}
    .rw-service-block.w-inline-block:after{background-size:100px;}
    .services-excerpt{width:100% !important;}
    
    .rw-intro-footer-text{width:100% !important;}
    .rw-intro-footer-text > span:last-child{line-height:18px !important;margin-top:16px !important;}
    
    .rw-pre-footer{height:80px;}
    .rw-footer{padding-bottom:120px !important;}
    .rw-footer .rw-institute-logos.w-layout-grid._4-grid{grid-template-columns: 1fr 1fr !important;}
    
    /*.social-icon.reviews{padding-left:0px;margin-left:-2px;max-width:40px;max-height:40px;}*/
}

.pad-b-12 {
  padding-bottom: 12px;
}

.bodycopy {
  max-width: 760px;
  color: var(--dim-grey);
  text-align: justify;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 60px;
  padding-top: 22px;
  /*font-family: Libre Baskerville, sans-serif;*/
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75em;
}

.bodycopy.rev {
  color: #fff;
}

.bodycopy.no-margin {
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
}

.bodycopy.project-copy {
  max-width: 610px;
  padding-right: 44px;
}

.list-item {
  max-width: 760px;
}

.paragraph-4 {
  color: var(--dim-grey);
  /*font-family: Libre Baskerville, sans-serif;*/
  font-size: 18px;
}

.home-btn-container {
  width: 100%;
  max-width: 1280px;
  grid-column-gap: 82px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding: 22px;
  display: grid;
}

.cta-column {
  width: 100%;
  align-items: center;
  display: flex;
}

.cta-image {
  padding: 22px 22px 0;
}

.cta-image.small {
  max-width: 160px;
  padding-top: 12px;
}

.grid-4 {
  grid-column-gap: 1px;
  grid-row-gap: 0px;
  grid-template-columns: 1.25fr 1fr;
  align-content: stretch;
  align-items: center;
  justify-items: center;
}

.grid-5 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
  align-content: center;
  justify-content: center;
  align-items: center;
  justify-items: center;
}

.cta-grid {
  width: 100%;
  max-width: 1280px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr 1fr;
  align-content: center;
  align-items: center;
  padding-right: 22px;
}

.scroll-icon {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.rw-hero-grid {
  z-index: 9999;
  width: 100%;
  height: 100%;
  min-height: 100%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template: "Area Area Area" minmax(auto, .33fr)
                 "Area-2 Area-3 Area-4" minmax(auto, .33fr)
                 "Area-5 Area-5 Area-5" minmax(auto, .33fr)
                 / 1.25fr minmax(200px, 250px) 1.25fr;
  align-content: stretch;
  justify-content: space-between;
  align-items: center;
  justify-items: center;
  position: relative;
}

.anniversary {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: auto auto 0%;
  padding-top: 0;
  padding-bottom: 16px;
  display: flex;
  position: relative;
}

.text {
  color: var(--white);
  font-family: Inter, sans-serif;
}

.text.b-margin {
  margin-bottom: 22px;
  padding-bottom: 0;
}

.text.b-margin-zero {
  margin-bottom: 0;
  padding-bottom: 0;
}

.hero-logo-image {
  width: 100%;
  max-width: 250px;
}

.date {
  background-color: var(--rw-pink);
  color: var(--white);
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 6px 12px;
  font-size: 20px;
  display: inline-block;
}

.date.small {
  margin-right: 12px;
  font-size: 18px;
}

.subhead {
  color: var(--dim-grey);
  margin-bottom: 8px;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
}

.float-left {
  float: left;
}

.div-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.project-grid {
  width: 100%;
  max-width: 70rem;
  min-width: 6%;
  grid-column-gap: 69px;
  grid-row-gap: 16px;
  background-color: var(--silver);
  grid-template: "Area"
                 "."
                 "."
                 / 3fr 2fr;
  grid-auto-columns: 1fr;
  padding-left: 55px;
  padding-right: 55px;
  display: grid;
}

.heading-2 {
  text-transform: none;
}

.project-container {
  width: 100%;
  max-width: 70rem;
  border-left: 0px solid var(--light-grey);
  background-color: var(--silver);
  opacity: 1;
  border-radius: 22px;
  margin-top: 55px;
  margin-bottom: 55px;
  padding: 55px 55px 34px;
}

.project-container.small {
  border-left: 14px solid var(--soft-grey);
  padding-bottom: 34px;
  font-size: 14px;
}

.background-image {
  width: 22rem;
  height: 22rem;
  background-image: url('../images/Projects-Amaroo.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 50px;
}

.background-image.the-lakes {
  width: 18.5rem;
  height: 18.5rem;
  background-image: url('../images/Projects-The-Lakes.png');
  margin-bottom: 0;
}

.background-image.amaroo {
  height: 15.4rem;
  margin-bottom: 0;
}

.background-image.surf-beach {
  height: 20.1rem;
  background-image: url('../images/Projects-Surf-Beach-Treatment-Works.png');
}

.background-image.mogendoura {
  height: 14.8rem;
  background-image: url('../images/Projects-Mogendoura-Bridge.png');
}

.project-flex {
  display: flex;
}

.project-flex.vertical {
  flex-direction: column;
}

.lightbox-link {
  width: auto;
  float: right;
  padding-left: 32px;
}

.green-bold {
  color: var(--rw-pink);
  font-weight: 700;
}

.location {
  color: #3f88cc;
  text-transform: none;
  margin-bottom: 22px;
  /*font-family: Libre Baskerville, sans-serif;*/
  font-size: 18px;
  font-weight: 700;
}

.services-text {
  color: var(--dim-grey);
  -webkit-text-stroke-color: var(--dim-grey);
  text-transform: none;
  margin-bottom: 0;
  padding-bottom: 0;
  /*font-family: Libre Baskerville, sans-serif;*/
  font-size: 14px;
}

.project-para {
  text-align: justify;
  font-size: 16px;
}

.nav-heading {
  font-family: Inter, sans-serif;
}

.address-rev {
  color: var(--white);
  font-family: Inter, sans-serif;
}

.green {
  color: var(--rw-pink);
}

.flex-social {
  justify-content: space-between;
  display: flex;
}

.social-icon {
  width: 100%;
  max-height: 40px;
  max-width: 40px;
  min-height: 40px;
  min-width: 40px;
  margin-top: 4px;
  padding-left: 10px;
}

.loader-html {
  width: 150px;
  height: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.overlay-2 {
  z-index: 222;
  width: 100%;
  height: 100vh;
  opacity: 1;
  background-color: #1d1d1d;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.overlay-2.reversed {
  background-color: #f5f6f7;
  display: none;
}

.rw-overlay {
  z-index: 99999;
  width: 100%;
  height: 100vh;
  background-color: var(--black);
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.rw-overlay.reversed {
  background-color: var(--back-grey);
}

.html-embed-4 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.html-embed-5 {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}

.html-container {
  width: 100%;
  height: 100%;
  max-height: 200px;
  max-width: 200px;
}

.search-result-wrapper {
  display: none;
}

.paragraph-5 {
  text-align: center;
  margin-top: 120px;
  margin-bottom: 100px;
  padding-bottom: 0;
}

@media screen and (min-width: 1280px) {
  .section.light-color-gradient.hidden {
    display: block;
  }

  .section.rw-blue-gradient.og {
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.rw-blue-gradient.og.v2 {
    height: 99vh;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .section.rotater {
    min-height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section.rotater.blue {
    background-color: #0e32a5;
  }

  .button.pink {
    background-color: #cf42cf;
  }

  .text-box.hero {
    margin-bottom: 12%;
  }

  .text-box.hero.relative {
    width: auto;
    margin-bottom: 0%;
    display: block;
    /*position: relative;*/
  }

  .text-box.cta-text {
    justify-content: center;
    padding-right: 16px;
  }

  .container, .container.v2 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .container._100vh {
    height: 100vh;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-left: 100px;
    padding-right: 100px;
    display: flex;
  }

  .container.hide {
    display: none;
  }

  .nav-bar.v2 {
    background-color: rgba(0, 0, 0, 0);
    border-bottom-style: none;
    position: absolute;
  }

  .nav-link.cta-button {
    background-color: #cf42cf;
  }

  .banner-container {
    max-width: 1140px;
  }

  .hero-illustration {
    width: 40%;
    max-width: 300px;
  }

  .divider.grid-bg {
    background-color: var(--silver);
    background-image: url('../images/pm-maze.gif');
    background-position: 50%;
    background-size: auto;
    background-attachment: scroll;
  }

  .rotator {
    display: block;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .rotator._06 {
    display: inline-block;
    overflow: hidden;
  }

  .rotator._05 {
    display: inline-block;
    position: absolute;
    overflow: hidden;
  }

  .rotator._04 {
    display: inline-block;
    position: absolute;
    transform: translate(0);
  }

  .rotator._03 {
    display: inline-block;
    position: absolute;
    transform: rotate(180deg);
  }

  .rotator._02 {
    display: inline-block;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: translate(-10px, 19px)rotate(-60deg);
  }

  .rotator._01 {
    transition: opacity .2s;
    display: inline-block;
    position: fixed;
    top: -1%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: translate(-24px, 14px)rotate(69deg);
  }

  .rotating {
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0);
    justify-content: center;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .rotating._01 {
    background-image: url('../images/rw-bg-01-duotone-01.png');
    background-position: 50%;
    background-size: auto;
    display: flex;
    transform: rotate(-63deg);
  }

  .rotating._02 {
    background-image: url('../images/rw-bg-01-duotone-02.png');
    background-position: 50%;
    background-size: auto;
    display: flex;
    transform: translate(-24px, -5px);
  }

  .rotating._03 {
    background-image: url('../images/rw-bg-01-duotone-03.png');
    background-position: 50%;
    background-size: auto;
    transform: translate(-24px, -10px);
  }

  .rotating._04 {
    background-image: url('../images/rw-bg-01-duotone-04.png');
    background-position: 50%;
    background-size: auto;
    transform: scale(1.6);
  }

  .rotating._05 {
    background-image: url('../images/rw-bg-01-duotone-05.png');
    background-position: 50%;
    background-size: auto;
  }

  .rotating._001 {
    background-image: url('../images/rot1-dith.gif');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: auto;
    transform: rotate(90deg);
  }

  .rotating._002 {
    background-image: url('../images/rot2-dith.gif');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: auto;
    transform: rotate(-90deg);
  }

  .rotating._003 {
    transform: rotate(-180deg);
  }

  .rotating._004 {
    background-image: url('../images/rot4-dith.gif');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: auto;
    transform: rotate(0);
  }

  .rotating._51 {
    background-image: url('../images/rot-051-dith_1.gif');
    background-position: 50%;
    background-size: auto;
  }

  .bg-container {
    background-image: url('../images/rot4-dith.gif');
    background-position: 50%;
    background-size: auto;
    transform: none;
  }

  .disc._03, .disc._002, .disc._001 {
    transform: rotate(0);
  }

  .body {
    padding-left: 0;
    padding-right: 0;
  }

  .rotating-container {
    position: relative;
  }

  .surveying.padding-top-100px.hidden {
    display: none;
  }

  .cta-container {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .cta-text {
    padding-left: 33px;
    padding-right: 33px;
  }

  .cta-logo {
    padding-left: 22px;
    padding-right: 22px;
  }

  .cta-heading {
    margin-bottom: 22px;
  }

  .civil-engineering.hidden, .project-management.hidden {
    display: none;
  }

  .grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .grid.address-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .cta-image {
    padding-bottom: 12px;
  }

  .cta-image.small {
    padding-top: 12px;
  }

  .cta-grid {
    max-width: 1280px;
    grid-template-columns: 1fr 2fr 1fr;
    align-items: center;
    justify-items: center;
  }

  .scroll-icon {
    z-index: 999;
    width: auto;
    height: auto;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 10%;
    margin-bottom: 0%;
    display: flex;
    position: relative;
    top: auto;
    bottom: 10%;
    left: 0%;
    right: 0%;
  }

  .html-embed-3 {
    justify-content: center;
    align-items: flex-end;
    display: flex;
  }

  .rw-hero-grid {
    z-index: 9999;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template: "first-row-first-col first-row-first-col first-row-first-col" minmax(auto, .33fr)
                   "second-row-first-col second-row-second-col second-row-third-col" minmax(auto, .33fr)
                   "third-row-first-col third-row-first-col third-row-first-col" minmax(auto, .33fr)
                   / 1.33fr .66fr 1.33fr;
    position: relative;
  }

  .anniversary {
    justify-content: center;
    display: flex;
  }

  .text {
    color: var(--white);
  }

  .project-container {
    border-left-width: 0;
    border-radius: 22px;
  }

  .background-image.the-lakes {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 991px) {
  .button {
    position: relative;
  }

  .text-box.cta-text {
    justify-content: space-between;
    padding-left: 0;
    padding-right: 0;
  }

  .text-box.contact-form {
    width: 100%;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .container.contact-form {
    flex-direction: column;
    padding-left: 48px;
    padding-right: 48px;
  }

  .column {
    width: 50%;
  }

  .column.desk-3 {
    width: 33.33%;
    flex-wrap: nowrap;
  }

  .ds-block {
    margin-bottom: 40px;
  }

  .menu-icon {
    color: #096ad0;
  }

  .nav-content {
    justify-content: flex-end;
    margin-left: 16px;
  }

  .menu-button {
    padding-top: 18px;
  }

  .menu-button.w--open {
    color: #096ad0;
    background-color: rgba(0, 0, 0, 0);
  }

  .nav-bar.v2 {
    border-style: none;
    border-width: 0;
  }

  .logo-div {
    flex: 0 auto;
  }

  .nav-logo {
    flex: 1;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .search-banner {
    display: none;
  }

  .nav-dropdown {
    text-align: center;
    flex: 1;
    margin-left: 0;
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 15px;
    display: block;
  }

  .ds-menu-brand {
    margin-bottom: 0;
    top: 5px;
  }

  .ds-menu {
    z-index: 500;
    border-bottom: 1px solid var(--silver);
    background-color: #197dff;
    padding-top: 16px;
    padding-bottom: 16px;
    display: block;
    position: absolute;
    top: 80px;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .ds-nav {
    z-index: 10;
    width: 100%;
    padding-top: 20px;
    position: -webkit-sticky;
    position: sticky;
    bottom: auto;
    left: auto;
    overflow: visible;
  }

  .ds-content {
    margin-left: 0;
    position: static;
  }

  .ds-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .small-button {
    position: relative;
  }

  .nav-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
    font-size: 15px;
  }

  .nav-link.cta-button {
    padding-left: 16px;
    padding-right: 16px;
  }

  .footer-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  ._1-2-grid, ._2-1-grid {
    margin-left: 0;
  }

  .heading.h1 {
    font-size: 40px;
  }

  .heading.h1.rev {
    font-size: 32px;
  }

  .error-3 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .licenses-grid {
    grid-column-gap: 40px;
    margin-left: 0;
  }

  .ds-body {
    flex-direction: column;
    display: flex;
  }

  .ds-menu-button {
    color: var(--white);
    margin-right: 12px;
    top: -10px;
  }

  .ds-menu-button.w--open {
    background-color: #197dff;
    border-radius: 40px;
  }

  .email-form.center-align {
    min-width: 460px;
    align-items: flex-start;
    padding-top: 23px;
    padding-bottom: 58px;
  }

  ._3-grid, ._4-grid {
    grid-template-columns: 1fr 1fr;
  }

  .terms-card {
    padding-top: 64px;
  }

  .popular-posts-grid {
    grid-template-columns: 1fr;
  }

  .container-2 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .search-bar {
    width: 220px;
    font-size: 14px;
  }

  .form-card {
    width: 100%;
  }

  .error-4 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .banner-section {
    padding-left: 60px;
    padding-right: 60px;
  }

  .banner-container {
    text-align: center;
  }

  .large-3-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr .8fr;
  }

  /*.surveying {
    padding-left: 30px;
    padding-right: 30px;
  }*/

  .cta-text {
    width: 100%;
    border-right-style: none;
    padding-right: 22px;
  }

  .cta-content {
    flex-direction: column;
    align-items: center;
  }

  .cta-logo-container {
    max-width: 170px;
    padding-bottom: 70px;
    padding-right: 0;
  }

  .cta-logo {
    padding-top: 12px;
  }

  .civil-engineering {
    padding-left: 30px;
    padding-right: 30px;
  }

  .town-planning {
    padding-left: 33px;
    padding-right: 33px;
  }

  .project-management {
    padding-left: 32px;
    padding-right: 32px;
  }

  .contact-info {
    width: 100%;
    text-align: left;
    padding-top: 100px;
    padding-bottom: 39px;
  }

  .nav-link-2 {
    color: var(--white);
    padding-top: 22px;
    padding-bottom: 22px;
    font-size: 32px;
    font-weight: 400;
    line-height: 1.5rem;
    text-decoration: none;
    display:inline-block;
  }

  .nav-link-2:hover {
    color: var(--white);
    -webkit-text-stroke-color: transparent;
  }

  /*.nav-link-2.w--current {
    padding-bottom: 2px;
  }*/

  .nav-link-2.indent {
    margin-left: 42px;
  }

  .dropdown-toggle.w--open {
    display: none;
  }

  .dropdown-item.home-btn {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .logo-wrapper {
    flex: 1;
    margin-top: 1px;
  }

  .logo-wrapper.page-transition.w--current {
    flex: 1;
  }

  .centered_w1 {
    padding-left: 42px;
    padding-right: 42px;
  }

  .centered_w1.nav-wrapper {
    height: 83px;
    align-items: center;
    margin-top: 0;
  }

  .dropdown-list.w--open {
    display: block;
  }

  .nav-point-wrapper {
    width: 100%;
    background-color: var(--black);
    text-align: left;
    padding-left: 10%;
    padding-right: 10%;
    display: block;
  }

  .nav-point-wrapper.dropdown {
    padding-right: 10%;
    display: none;
  }

  /*.nav-point-wrapper.last-nav-item, .dropdown-item-wrapper.rw {
    display: none;
  }*/
    
  .nav-point-wrapper.last-nav-item > .button-2.w-button{
    background-color:transparent;
    border-color:transparent;
    padding:22px 0px;
    font-size: 32px;
    line-height:1.5rem;
    transition: color .3s ease-in-out;
    border-top:none;
    border-left:none;
    border-right:none;
    border-bottom: 3px solid transparent;
    border-radius:0px;
    }
    .nav-point-wrapper.last-nav-item > .button-2.w-button.w--current, .nav-point-wrapper.last-nav-item > .button-2.w-button:hover{ border-bottom-color: #ffffff;}

  .nav-menu-2 {
    width: 100%;
    height: 100vh;
    background-color: var(--black);
    flex-direction: column;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding-top: 42px;
    display: flex;
  }

  .logo-2 {
    width: 106px;
  }
/* LT 02.11.2023. */
  .dropdown-item:not(.home-btn) .dropdown-icon-wrapper,  .dropdown-item:not(.home-btn) .dropdown-description-wrapper {
    display: none;
  }
    
  .surveying .rw-list._2-col {
  grid-template-columns: unset;
}

  .infotext.grey {
    font-size: 13px;
  }

  .page-dropdown-overlay {
    display: none;
  }

  .nav-menu {
    width: 100%;
    height: 100vh;
    background-color: var(--back-grey);
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .grid {
    grid-template-rows: auto;
    grid-template-columns: .5fr 1fr;
  }

  .grid.address-grid {
    width: 100%;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  .paragraph-3 {
    width: 100%;
    padding-right: 0;
  }

  .rw-list._760 {
    width: 100%;
  }

  .form-block {
    flex-direction: column;
  }

  .post-image._760 {
    width: 100%;
  }

  .home-btn-container {
    grid-column-gap: 18px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    align-content: center;
    justify-content: center;
    justify-items: center;
  }

  .cta-image.small {
    max-width: 130px;
  }

  .grid-4 {
    width: 100%;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    justify-content: start;
  }

  .cta-grid {
    grid-template: ". ."
                   "Area Area"
                   / 1fr 2fr;
    align-items: start;
    justify-items: center;
    padding-right: 0;
  }

  .background-image.the-lakes {
    width: 16rem;
    height: 16rem;
  }

  .background-image.amaroo {
    width: 18rem;
    height: 12rem;
  }

  .background-image.surf-beach {
    width: 17rem;
    height: 17rem;
  }

  .background-image.mogendoura {
    width: 16rem;
    height: 16rem;
  }

  .lightbox-link {
    padding-left: 22px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 14px;
  }
    
  .project-para {
    font-size: 14px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.daek-page-header, .section.light-page-header {
    padding-top: 80px;
    padding-bottom: 16px;
  }

  .button.light.mobile-hidden {
    display: none;
  }

  .spacer {
    height: 32px;
  }

  .spacer._64 {
    height: 48px;
  }

  .spacer._80 {
    width: 64px;
    height: 64px;
  }

  .text-box.hero {
    margin-bottom: 22px;
  }

  ._12-columns {
    flex-wrap: wrap;
  }

  ._12-columns.flex-horizontal {
    flex-flow: wrap;
    margin-bottom: 0;
  }

  .column.desk-6, .column.desk-5, .column.desk-4, .column.desk-9, .column.desk-7, .column.desk-8 {
    width: 100%;
  }

  .nav-content {
    border-top: 1px solid var(--silver);
    background-color: var(--white);
    margin-left: 0;
    padding-top: 20px;
    padding-bottom: 40px;
    position: absolute;
    overflow: auto;
  }

  .nav-cta-button-container {
    flex-direction: column;
    align-items: stretch;
    margin-top: 10px;
  }

  .menu-button {
    z-index: 999999;
    width: 56px;
    height: 56px;
    color: var(--rw-pink);
    justify-content: center;
    align-items: center;
    margin-right: -12px;
    padding: 16px;
  }

  .nav-bar {
    border: 1px #000;
  }

  .nav-bar.v2 {
    border-style: none;
    border-color: rgba(0, 0, 0, 0);
  }

  .logo-div {
    margin-right: auto;
  }

  .footer-logo {
    padding-left: 0;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
    display: flex;
  }

  .nav-dropdown {
    padding-top: 13px;
    padding-bottom: 13px;
    font-size: 16px;
  }

  .nav-dropdown:hover {
    transform: none;
  }

  .paragraph {
    font-size: 15px;
  }

  .nav-menu {
    text-align: center;
    margin-right: 0;
    padding-right: 0;
  }

  .ds-menu-brand.w--current {
    margin-top: 14px;
  }

  .ds-content {
    margin-left: 0;
  }

  .ds-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-field.no-margin {
    width: 100%;
    min-width: 290px;
  }

  .tabs-menu {
    flex-wrap: wrap;
  }

  .tab-link {
    width: auto;
  }

  .nav-container {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-link {
    text-align: center;
    margin-left: 25px;
    margin-right: 25px;
    padding-top: 12px;
    padding-bottom: 12px;
    font-size: 16px;
  }

  .nav-link:hover {
    transform: none;
  }

  .field-block {
    min-height: auto;
  }

  .footer-container {
    flex-direction: column;
  }

  .ds-colour-block {
    width: 25%;
  }

  ._1-2-grid, ._2-1-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .heading.h1 {
    font-size: 35px;
  }

  .heading.h1.rev {
    font-size: 26px;
  }

  .heading.h2 {
    margin-bottom: 16px;
    font-size: 28px;
  }

  .heading.h4 {
    font-size: 20px;
  }

  .heading.large-h1 {
    font-size: 48px;
  }

  .licenses-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .email-form.center-align {
    min-width: 411px;
    padding-bottom: 0;
  }

  .section-top {
    text-align: center;
  }

  ._3-grid {
    grid-template-columns: 1fr;
  }

  .terms-card {
    padding-top: 48px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .popular-posts-grid {
    grid-template-columns: 1fr;
  }

  .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .search-bar {
    width: 100%;
  }

  .cta-banner {
    text-align: center;
    flex-direction: column;
    grid-template-columns: auto;
    padding: 40px;
  }

  .banner-section {
    text-align: left;
    justify-content: flex-start;
    padding-left: 30px;
    padding-right: 30px;
  }

  .banner-container {
    text-align: left;
  }

  .banner {
    text-align: left;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-illustration {
    width: 120px;
    margin-left: 0;
  }

  .large-3-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr .8fr;
  }

  .footer-logo-block {
    margin-bottom: 40px;
  }

  .ebook-header-block {
    height: auto;
    display: none;
  }

  .ebook-page-grid {
    grid-template-columns: 1fr;
  }

  .ebook-mobile-block {
    height: auto;
    display: block;
  }

  .divider {
    height: 50px;
  }

  .image {
    width: 25%;
  }

  .image.fade-in {
    max-width: 180px;
    margin-bottom: 0;
    padding-top: 22px;
  }

  .dot {
    width: 22px;
    font-size: 12px;
    line-height: 12px;
  }

  .testimonial {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .testimonial-textbox {
    font-size: 20px;
  }

  .surveying.padding-top-100px {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content._50pc {
    padding-top: 0;
    padding-bottom: 0;
  }

  .cta-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .cta-heading {
    font-size: 32px;
  }

  .icon-container {
    padding-bottom: 40px;
  }

  .icon-card {
    width: 20%;
  }

  .icon-text {
    font-size: 17px;
    line-height: 19px;
  }

  .civil-engineering {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .town-planning {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .project-management {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pm-content {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .nav-link-2 {
    padding-top: 17px;
    padding-bottom: 17px;
    font-size: 1.5rem;
    line-height: 1rem;
  }
  .nav-point-wrapper.last-nav-item > .button-2.w-button{
    padding:17px 0px;
    font-size: 1.5rem;
    line-height:1rem;
  }

  .nav-link-2.indent {
    font-size: 1.5rem;
  }

  .dropdown-item.home-btn {
    margin-top: 0;
    margin-bottom: 0;
  }

  .logo-wrapper.page-transition {
    margin-right: 0;
  }

  .centered_w1 {
    padding-left: 36px;
    padding-right: 36px;
  }

  .nav-main {
    height: 80px;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .page-dropdown-overlay {
    display: none;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .grid.address-grid {
    grid-row-gap: 7px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .cta-image.small {
    max-width: 110px;
  }

  .text, .text.no {
    margin-bottom: 0;
    padding-bottom: 12px;
  }

  .background-image.the-lakes {
    width: 100%;
  }

  .background-image.amaroo {
    width: 100%;
    height: 17rem;
    margin-bottom: 0;
  }

  .background-image.surf-beach, .background-image.mogendoura {
    width: 100%;
    margin-bottom: 0;
  }

  .lightbox-link {
    width: 100%;
    margin-bottom: 32px;
    padding-left: 0;
  }

  .social-icon {
    max-width: 40px;
    min-height: 32px;
    min-width: 32px;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 28px;
  }

  .button {
    width: 100%;
    font-size: 16px;
    line-height: 1.8em;
  }

  .button.subscribe {
    margin-left: 0;
  }

  .button.rw-btn {
    text-align: center;
    margin-bottom: 22px;
  }

  .text-box.hero {
    width: 90%;
    margin-bottom: 80px;
  }

  ._12-columns.flex-horizontal {
    flex-direction: row;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .container.contact-form {
    padding-left: 25px;
    padding-right: 25px;
  }

  .color-block {
    margin-bottom: 20px;
  }

  .column {
    margin-bottom: 0;
  }

  .column.desk-6, .column.desk-5, .column.desk-3 {
    width: 100%;
  }

  .menu-button {
    flex: 0 auto;
  }

  .search-banner {
    justify-content: space-between;
  }

  .paragraph.large.cta-para, .paragraph.medium {
    font-size: 16px;
  }

  .ds-menu-brand {
    margin-left: 16px;
  }

  .ds-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .text-field {
    width: 100%;
  }

  .text-field.no-margin {
    min-width: 220px;
  }

  .text-area {
    width: 100%;
  }

  .nav-container {
    height: 64px;
    padding: 2px 20px;
  }

  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading.h1 {
    font-size: 30px;
  }

  .heading.h1.rev {
    width: 228px;
    font-size: 21px;
  }

  .heading.large-h1 {
    font-size: 42px;
  }

  .error-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ds-menu-button {
    margin-right: 6px;
  }

  .email-form {
    width: 100%;
    flex-direction: column;
  }

  .email-form.center-align {
    min-width: 0;
    padding-bottom: 0;
  }

  ._4-grid {
    grid-template-columns: 1fr;
  }

  .email-subscribe {
    width: 100%;
    grid-row-gap: 12px;
    flex-direction: column;
  }

  .search {
    flex-direction: column;
  }

  .terms-card {
    padding-top: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .container-2 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .search-bar {
    width: 100%;
  }

  .form-card {
    padding: 24px;
  }

  .title-tag {
    margin-bottom: 6px;
  }

  .cta-banner {
    padding: 32px;
  }

  .error-4 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner-section {
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .banner {
    text-align: left;
    justify-content: space-between;
  }

  .banner-link {
    width: 100%;
    flex: 0 auto;
  }

  .form-page-logo {
    width: 160px;
  }

  .admin-form-card, .account-card {
    padding: 28px;
  }

  .form-2-grid {
    grid-template-columns: 1fr;
  }

  .form-page-logo-link {
    margin-bottom: 24px;
  }

  .divider {
    height: 50px;
  }

  .image {
    width: 50%;
  }

  .image.fade-in {
    width: 80%;
  }

  .dot {
    width: 18px;
    height: 22px;
    font-size: 8px;
    line-height: 8px;
  }

  .testimonial {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .testimonial-textbox {
    margin-top: 32px;
    margin-bottom: 32px;
    font-size: 18px;
  }

  .testimonial-textbox.bodycopy {
    margin-top: 22px;
    margin-bottom: 22px;
    font-size: 16px;
  }

  .project-heading {
    font-size: 20px;
  }

  .project-heading.main {
    font-size: 28px;
  }

  .project-heading.minor {
    font-size: 24px;
  }

  .project-details {
    font-size: 16px;
  }

  /*.surveying {
    padding-top: 130px;
  }*/

  .surveying.padding-top-100px {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .content._50pc {
    padding-top: 0;
  }

  .h1-rw {
    margin-bottom: 0;
  }

  .cta-text {
    border-left-style: none;
  }

  .cta-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .cta-logo {
    width: 70%;
  }

  .cta-heading {
    font-size: 26px;
  }

  .icon-container {
    width: 100%;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
  }

  .icon-card {
    width: 48%;
  }

  .icon-text {
    font-size: 17px;
    line-height: 20px;
  }

  .civil-engineering {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .ce-left {
    width: 100%;
  }

  .ce-right {
    width: 100%;
    height: auto;
  }

  .ce-container {
    flex-direction: column;
  }

  .town-planning {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 50px;
  }

  .project-management {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .pm-content {
    padding-left: 22px;
    padding-right: 22px;
  }

  .contact-logo {
    max-width: 143px;
  }

  .nav-link-2 {
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 1rem;
  }

  .nav-link-2.indent {
    padding-left: 0;
    font-size: 1rem;
  }
    
    .nav-point-wrapper.last-nav-item > .button-2.w-button{
    font-size: 1rem;
  }

  .dropdown-item.home-btn {
    height: 200px;
    max-width: 200px;
  }

  .centered_w1 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-dropdown-overlay {
    display: none;
  }

  .grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .grid.address-grid {
    grid-row-gap: 0px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .contact-heading {
    font-size: 18px;
  }

  .paragraph-2 {
    margin-top: 17px;
  }

  .paragraph-3 {
    border-left-style: none;
    padding-left: 0;
  }

  .h3-rw {
    padding-bottom: 0;
    font-size: 20px;
  }

  .rw-list {
    width: 100%;
  }

  .grid-2 {
    justify-content: space-between;
  }

  .post-image._760 {
    margin-bottom: 22px;
  }

  .bodycopy {
    margin-top: 22px;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.5em;
  }

  .bodycopy.project-copy {
    padding-right: 0;
  }

  .list-item {
    margin-bottom: 0;
    font-size: 15px;
  }

  .home-btn-container {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .cta-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .text, .text.no {
    margin-bottom: 0;
    padding-bottom: 12px;
  }

  .date.small {
    font-size: 15px;
  }

  .project-container {
    padding: 26px;
  }

  .background-image.the-lakes {
    height: 9rem;
  }

  .background-image.amaroo {
    height: 10.7rem;
  }

  .background-image.surf-beach {
    height: 10rem;
  }

  .background-image.mogendoura {
    height: 9rem;
  }

  .location, .services-text {
    font-size: 15px;
  }

  .flex-social {
    flex-direction: column;
  }

  .social-icon {
    max-height: 32px;
    max-width: 32px;
    margin-right: 10px;
    padding-left: 0;
  }

  .paragraph-5 {
    margin-top: 72px;
  }
}

#w-node-bd749e6a-a0b5-f4a8-fb13-7c77e8c52ebb-1a841480 {
  grid-area: Area-3;
  align-self: center;
}

#w-node-bd749e6a-a0b5-f4a8-fb13-7c77e8c52ebc-1a841480 {
  grid-area: 3 / 1 / 4 / 4;
  align-self: auto;
  justify-self: auto;
}

#w-node-_0c54310e-5c8a-003c-39dc-2f86c99660e2-1a841480 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d177dda0-c0f7-f7fe-780f-01feee67cd76-cf3fcb86, #w-node-d177dda0-c0f7-f7fe-780f-01feee67cd77-cf3fcb86, #w-node-d177dda0-c0f7-f7fe-780f-01feee67cd78-cf3fcb86, #w-node-d177dda0-c0f7-f7fe-780f-01feee67cd79-cf3fcb86, #w-node-_748d7ae3-453b-7f30-beb4-b8ff79d6ca8f-cf3fcb86, #w-node-_997e50ed-937f-2d99-2cfb-e6b7f1ee3474-cf3fcb86, #w-node-_1a42f14d-1b6d-7c3d-61c7-b8fa35529944-cf3fcb86, #w-node-c5479f46-ce56-3532-0b27-dd03e7ca29e6-cf3fcb86 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_4e5cd748-e656-0af2-ff10-f707220d203d-bf8414ac {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ac2f0fa6-813e-cc65-4953-f56d3a25fdd6-bf8414ac, #Property-Address.w-node-_06dfd8c4-a861-0792-a39a-6c35f5a45b17-bf8414ac {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_86aa05f2-2a0a-318f-7a68-3809bad37fd4-bf8414ac {
  justify-self: start;
}

#w-node-_62b23e3845c1a6d0f6be4e4900000000001b-f18414ce {
  margin-top: 20px;
  margin-bottom: 20px;
}

#w-node-_62b23e3845c1a6d0f6be4e49000000000020-f18414ce {
  border: 1px solid #e6e6e6;
}

#w-node-_62b23e3845c1a6d0f6be4e49000000000021-f18414ce {
  margin-top: 10px;
}

#w-node-_62b23e3845c1a6d0f6be4e49000000000024-f18414ce {
  position: initial;
  margin-left: 0;
  margin-right: 0;
}

#w-node-_1558ce13-01dc-b71f-1f0e-42679f41fdc6-9e09ac7b, #w-node-_79811dd4-ad8a-9119-4e31-b1dfe508eb2a-bbea2b5b, #w-node-_79811dd4-ad8a-9119-4e31-b1dfe508eb30-bbea2b5b, #w-node-_79811dd4-ad8a-9119-4e31-b1dfe508eb32-bbea2b5b, #w-node-_5de6d4bb-22cf-c747-2dc5-95344e7ff505-bbea2b5b, #w-node-_5de6d4bb-22cf-c747-2dc5-95344e7ff507-bbea2b5b, #w-node-_5de6d4bb-22cf-c747-2dc5-95344e7ff50b-bbea2b5b, #w-node-_5de6d4bb-22cf-c747-2dc5-95344e7ff50d-bbea2b5b, #w-node-bed2a9e8-153c-6f02-0416-3eea836d61e1-bbea2b5b, #w-node-bed2a9e8-153c-6f02-0416-3eea836d61e3-bbea2b5b, #w-node-bed2a9e8-153c-6f02-0416-3eea836d61e7-bbea2b5b, #w-node-_3aa752fb-bc97-0799-531c-d2335a437063-bbea2b5b, #w-node-_3aa752fb-bc97-0799-531c-d2335a437065-bbea2b5b, #w-node-_3aa752fb-bc97-0799-531c-d2335a437069-bbea2b5b, #w-node-_3aa752fb-bc97-0799-531c-d2335a43706b-bbea2b5b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1280px) {
  #w-node-bd749e6a-a0b5-f4a8-fb13-7c77e8c52ebb-1a841480 {
    grid-area: second-row-second-col;
    align-self: center;
  }

  #w-node-bd749e6a-a0b5-f4a8-fb13-7c77e8c52ebc-1a841480 {
    grid-area: third-row-first-col;
    align-self: center;
    justify-self: center;
  }

  #w-node-bd749e6a-a0b5-f4a8-fb13-7c77e8c52ec1-1a841480 {
    grid-area: third-row-first-col;
  }
}

@media screen and (max-width: 991px) {
  #w-node-e332293e-46f7-766c-db34-932924997381-cf3fcb86 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-d177dda0-c0f7-f7fe-780f-01feee67cd75-cf3fcb86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_0c54310e-5c8a-003c-39dc-2f86c99660e2-1a841480 {
    order: -9999;
  }

  #w-node-b8d7be4a-ce45-83ab-5947-02d204c8bff0-cf3fcb86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_828e323f-2156-ec66-0a83-b531a1edc377-cf3fcb86, #w-node-b32678e6-1123-947c-0ac6-06bb1966cccb-cf3fcb86 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


