html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

@font-face {
  font-family: 'din-bold';
  src: url("../fonts/din-bold.ttf") format("truetype");
}
@font-face {
  font-family: 'din-light';
  src: url("../fonts/din-light.ttf") format("truetype");
}
@font-face {
  font-family: 'din-regular';
  src: url("../fonts/din-regular.ttf") format("truetype");
}
@font-face {
  font-family: 'compacta-bold';
  src: url("../fonts/compacta-bold.ttf") format("truetype");
}
html, body, * {
  box-sizing: border-box;
}

body {
  background: #FFF;
}

h2 {
  font-family: 'din-bold';
}

h3 {
  font-family: 'din-regular';
}

a {
  text-decoration: none;
}

.section-title {
  font-size: 30px;
  margin: 35px 0 0 25px;
  position: relative;
}
.section-title:before {
  content: "" "";
  position: absolute;
  height: 22px;
  width: 30px;
  left: -25px;
  top: -14px;
  background: url("../img/title-corner.png") center/contain no-repeat;
  display: none;
}

.text-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 30px 0 30px 25px;
}
.text-container p {
  padding: 0 25px 20px 0;
  font-family: 'din-regular';
  font-size: 12px;
  line-height: 18px;
}
.text-container p:first-child {
  font-family: 'din-bold';
}

.section-image {
  width: 100%;
  height: 267px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.owl-controls {
  position: absolute;
  bottom: 30px;
  right: 80px;
}
.owl-controls .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.owl-controls .owl-nav .owl-prev {
  background: url("../img/carousel-prev.png") center/contain no-repeat;
  height: 30px;
  width: 30px;
  font-size: 0px;
  margin: 0 50px 0 0;
}
.owl-controls .owl-nav .owl-next {
  background: url("../img/carousel-next.png") center/contain no-repeat;
  height: 30px;
  width: 30px;
  font-size: 0px;
}

.wrap {
  max-width: 1140px;
  width: 100%;
}

@media (min-width: 630px) {
  .section-title {
    margin: 70px 0 0 100px;
  }
  .section-title:before {
    display: block;
  }

  .section-image {
    height: 800px;
  }

  .text-container {
    margin: 30px 0 30px 100px;
    -ms-flex-wrap: initial;
        flex-wrap: initial;
  }
  .text-container p {
    padding: 0 50px 0 0;
  }
}
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: fixed;
  width: 100%;
  z-index: 9999999;
}
header .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.scrolled {
  background: #b8b8b8;
  top: 0;
  width: 100%;
}

.fixed {
  position: fixed;
  top: 0;
}

.burger-container {
  z-index: 9999;
  position: fixed;
  top: 10px;
  right: 10px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.burger-container #burger {
  width: 35px;
  height: 8px;
  position: relative;
  display: block;
  margin: -4px auto 0;
  top: 40%;
}
.burger-container #burger .bar {
  width: 100%;
  height: 7px;
  display: block;
  position: relative;
  background: #141414;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.burger-container #burger .bar.topBar {
  -webkit-transform: translateY(0px) rotate(0deg);
          transform: translateY(0px) rotate(0deg);
}
.burger-container #burger .bar.midBar {
  -webkit-transform: translateY(4px) rotate(0deg);
          transform: translateY(4px) rotate(0deg);
}
.burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(8px) rotate(0deg);
          transform: translateY(8px) rotate(0deg);
}

.mobile-nav {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  height: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out, background 1s ease-out;
          transition: all 0.5s ease-out, background 1s ease-out;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
  z-index: 1;
}
.mobile-nav .icon {
  display: inline-block;
  position: absolute;
  height: 100%;
  line-height: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  color: #FFF;
  font-size: 22px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mobile-nav .icon.icon-bag {
  right: 0;
  top: 0;
  left: auto;
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
          transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-transition-delay: 0.65s;
          transition-delay: 0.65s;
}
.mobile-nav ul.menu {
  position: relative;
  display: block;
  padding: 30px 48px 0 48px;
  list-style: none;
}
.mobile-nav ul.menu li.menu-item {
  border-bottom: 1px solid #333;
  margin-top: 5px;
  -webkit-transform: scale(1.15) translateY(-30px);
          transform: scale(1.15) translateY(-30px);
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
          transition: transform 0.5s cubic-bezier(0.4, 0.01, 0.165, 0.99), opacity 0.6s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.mobile-nav ul.menu li.menu-item:nth-child(1) {
  -webkit-transition-delay: 0.49s;
          transition-delay: 0.49s;
}
.mobile-nav ul.menu li.menu-item:nth-child(2) {
  -webkit-transition-delay: 0.42s;
          transition-delay: 0.42s;
}
.mobile-nav ul.menu li.menu-item:nth-child(3) {
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}
.mobile-nav ul.menu li.menu-item:nth-child(4) {
  -webkit-transition-delay: 0.28s;
          transition-delay: 0.28s;
}
.mobile-nav ul.menu li.menu-item:nth-child(5) {
  -webkit-transition-delay: 0.21s;
          transition-delay: 0.21s;
}
.mobile-nav ul.menu li.menu-item:nth-child(6) {
  -webkit-transition-delay: 0.14s;
          transition-delay: 0.14s;
}
.mobile-nav ul.menu li.menu-item:nth-child(7) {
  -webkit-transition-delay: 0.07s;
          transition-delay: 0.07s;
}
.mobile-nav ul.menu li.menu-item a {
  display: block;
  position: relative;
  color: #141414;
  font-weight: 100;
  text-decoration: none;
  font-size: 22px;
  line-height: 2.35;
  font-weight: 200;
  width: 100%;
  font-family: 'din-regular';
}
.mobile-nav.active-nav {
  height: 100vh;
  background-color: white;
  -webkit-transition: all 0.3s ease-in, background 0.5s ease-in;
          transition: all 0.3s ease-in, background 0.5s ease-in;
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
  position: fixed;
  z-index: 9;
}
.mobile-nav.active-nav .burger-container {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.mobile-nav.active-nav .burger-container #burger .bar {
  -webkit-transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
          transition: all 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.mobile-nav.active-nav .burger-container #burger .bar.topBar {
  -webkit-transform: translateY(4px) rotate(45deg);
          transform: translateY(4px) rotate(45deg);
}
.mobile-nav.active-nav .burger-container #burger .bar.midBar {
  display: none;
}
.mobile-nav.active-nav .burger-container #burger .bar.btmBar {
  -webkit-transform: translateY(3px) rotate(-45deg);
          transform: translateY(3px) rotate(-45deg);
}
.mobile-nav.active-nav ul.menu li.menu-item {
  -webkit-transform: scale(1) translateY(0px);
          transform: scale(1) translateY(0px);
  opacity: 1;
}
.mobile-nav.active-nav ul.menu li.menu-item:nth-child(1) {
  -webkit-transition-delay: 0.27s;
          transition-delay: 0.27s;
}
.mobile-nav.active-nav ul.menu li.menu-item:nth-child(2) {
  -webkit-transition-delay: 0.34s;
          transition-delay: 0.34s;
}
.mobile-nav.active-nav ul.menu li.menu-item:nth-child(3) {
  -webkit-transition-delay: 0.41s;
          transition-delay: 0.41s;
}
.mobile-nav.active-nav ul.menu li.menu-item:nth-child(4) {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}
.mobile-nav.active-nav ul.menu li.menu-item:nth-child(5) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}
.mobile-nav.active-nav ul.menu li.menu-item:nth-child(6) {
  -webkit-transition-delay: 0.62s;
          transition-delay: 0.62s;
}
.mobile-nav.active-nav ul.menu li.menu-item:nth-child(7) {
  -webkit-transition-delay: 0.69s;
          transition-delay: 0.69s;
}
.mobile-nav.active-nav .icon.icon-bag {
  -webkit-transform: translateX(75px);
          transform: translateX(75px);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.menu-opened {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.menu-opened #burger .bar {
  -webkit-transition: all 0.4s;
          transition: all 0.4s;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.menu-opened #burger .bar.topBar {
  -webkit-transform: translateY(9px) rotate(45deg);
          transform: translateY(9px) rotate(45deg);
}
.menu-opened #burger .bar.midBar {
  display: none;
}
.menu-opened #burger .bar.btmBar {
  -webkit-transform: translateY(2px) rotate(-45deg);
          transform: translateY(2px) rotate(-45deg);
}

nav {
  width: 100%;
  display: none;
}
nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
nav ul li {
  padding: 0 20px;
  text-transform: uppercase;
  font-family: 'din-bold';
}
nav ul li a {
  text-decoration: none;
  color: #141414;
}

.get-in-touch {
  display: none;
  background: #1d1d1b;
  color: white;
  height: 80px;
  font-family: 'din-bold';
  font-size: 15px;
  text-transform: uppercase;
}
.get-in-touch p {
  padding: 5px 30px 0 10px;
}

@media (min-width: 920px) {
  .burger-container {
    display: none;
  }

  nav {
    display: block;
  }

  .get-in-touch {
    display: block;
  }
}
footer .seventh-section {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .seventh-section .left-section .section-title {
  margin: 25px 0 25px 25px;
}
footer .seventh-section .right-section .bottom-text {
  text-align: left;
  font-family: 'din-bold';
  padding: 25px 0 25px 5px;
  font-size: 8px;
}
footer .seventh-section .right-section .top-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
footer .seventh-section .right-section .top-row .contact-square {
  height: 200px;
}
footer .seventh-section .right-section .top-row .knight-frank {
  background: url("../img/knight-frank.svg") center/cover no-repeat;
}
footer .seventh-section .right-section .top-row .contact-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #e6e3e2;
  padding: 0 0 0 10px;
}
footer .seventh-section .right-section .top-row .contact-details p {
  font-family: 'din-bold';
  text-transform: uppercase;
  font-size: 20px;
  padding: 0 0 7px 0;
}
footer .seventh-section .right-section .top-row .contact-details a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-family: 'din-regular';
  padding: 0 0 5px 0;
}
footer .seventh-section .right-section .bottom-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
footer .seventh-section .right-section .bottom-row .contact-square {
  height: 200px;
}
footer .seventh-section .right-section .bottom-row .termsandconditions {
  padding: 7px;
}
footer .seventh-section .right-section .bottom-row .termsandconditions p {
  font-family: 'din-regular';
  font-size: 8px;
  padding: 0 0 5px 0;
}
footer .seventh-section .right-section .bottom-row .termsandconditions p:first-child {
  font-family: 'din-bold';
}
footer .seventh-section .right-section .bottom-row .capita {
  background: #c6c6c6;
  padding: 20px 0 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
footer .seventh-section .right-section .bottom-row .capita p {
  font-family: 'din-regular';
  font-size: 12px;
}
footer .seventh-section .right-section .bottom-row .capita .contact-capita-image {
  background: url("../img/capita.png") center/contain no-repeat;
  height: 35px;
  width: 170px;
}
footer .seventh-section .right-section .bottom-row .royal-london {
  background: #a8a6a2;
  padding: 20px 0 10px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
footer .seventh-section .right-section .bottom-row .royal-london p {
  font-family: 'din-regular';
  font-size: 12px;
}
footer .seventh-section .right-section .bottom-row .royal-london .royal-london-image {
  background: url("../img/royal-london.png") center/contain no-repeat;
  height: 84px;
  width: 130px;
}

@media (min-width: 520px) {
  footer .seventh-section .right-section {
    padding: 0;
  }
  footer .seventh-section .right-section .bottom-text {
    text-align: center;
    padding: 25px 0 25px 0px;
  }
  footer .seventh-section .right-section .top-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .seventh-section .right-section .top-row .contact-square {
    width: 200px;
    height: 160px;
  }
  footer .seventh-section .right-section .top-row .contact-square p {
    font-size: 16px;
  }
  footer .seventh-section .right-section .bottom-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .seventh-section .right-section .bottom-row .contact-square {
    width: 200px;
  }
}
@media (min-width: 720px) {
  footer .seventh-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  footer .seventh-section .right-section .top-row .contact-details a {
    font-size: 12px;
  }
}
.logo {
  background: url("../img/rsh-logo.png") center/contain no-repeat;
  height: 70px;
  width: 166px;
  margin: 10px 0;
}

.masthead {
  height: 100vh;
  background: url("../img/regent-square-house.png") center/cover no-repeat;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
}
.masthead .middle-box {
  background: #8cc0c8;
  width: 120px;
  height: 130px;
  position: absolute;
  right: 0;
  bottom: 0;
}
.masthead .middle-box h3 {
  padding: 15px 0 0 15px;
  font-size: 30px;
  color: white;
  font-family: 'din-bold';
}
.masthead .middle-box h3 span {
  font-family: 'din-light';
}
.masthead .bottom-left-box {
  position: absolute;
  bottom: 0px;
  color: white;
  background: #1d1d1b;
  width: 200px;
  height: 200px;
}
.masthead .bottom-left-box h3 {
  padding: 20px 0 0 25px;
  font-size: 25px;
  line-height: 25px;
}
.masthead .bottom-left-box p {
  font-family: 'din-light';
  padding: 10px 0 0 25px;
  font-size: 18px;
}

@media (min-width: 630px) {
  .masthead .logo {
    height: 92px;
    width: 300px;
    margin: 25px 0;
  }
  .masthead .middle-box {
    right: initial;
    left: 51%;
    bottom: 80px;
  }
  .masthead .bottom-left-box {
    width: 180px;
    height: 180px;
  }
  .masthead .bottom-left-box h3 {
    font-size: 20px;
  }
  .masthead .bottom-left-box p {
    font-size: 15px;
  }
}
.first-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 1140px;
  margin: 0 auto;
}
.first-section .left-section .landmark-image-bottom {
  background: url("../img/rsh-image-two.jpg") center/cover no-repeat;
  height: 327px;
  display: none;
}
.first-section .right-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.first-section .right-section .landmark-image-right {
  background: url("../img/rsh-image-one.png") center/cover no-repeat;
  height: 315px;
  margin: 0;
}
.first-section .right-section .callout {
  background: #ece8d8;
  height: inherit;
}
.first-section .right-section .callout h2 {
  font-family: 'din-light';
  padding: 25px 0 25px 0;
  margin: 0px 25px 0 25px;
  font-size: 27px;
  line-height: 35px;
}

@media (min-width: 630px) {
  .first-section .left-section .landmark-image-bottom {
    display: block;
  }
  .first-section .right-section .callout h2 {
    margin: 0px 60px 0 45px;
    padding: 50px 0 65px 0;
    font-size: 30px;
    line-height: initial;
  }
}
@media (min-width: 880px) {
  .first-section .right-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    position: relative;
  }
  .first-section .right-section .landmark-image-right {
    width: 60%;
  }
  .first-section .right-section .callout {
    width: 50%;
  }
}
@media (min-width: 1140px) {
  .first-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .first-section .left-section .landmark-image-bottom {
    height: 220px;
  }
  .first-section .right-section {
    display: block;
  }
  .first-section .right-section .landmark-image-right {
    width: 440px;
    margin: -80px 0 0 0;
  }
  .first-section .right-section .callout {
    width: auto;
  }
}
.second-section .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  border-bottom: 2px solid black;
}
.second-section .wrap .left-section .text-container {
  margin: 30px 0 10px 25px;
}
.second-section .wrap .left-section .text-container ul {
  padding: 0px 30px 0px 0;
}
.second-section .wrap .left-section .text-container ul li {
  list-style-image: url("../img/rsh-list-style.jpg");
  margin: 2px 0 0 0;
  font-family: 'din-regular';
  font-size: 12px;
  line-height: 18px;
}
.second-section .wrap .left-section .text-container:last-child {
  margin: 10px 0 30px 45px;
}
.second-section .wrap .right-section .top-right-image {
  background: url("../img/rsh-image-three.jpg") center/cover no-repeat;
  height: 200px;
  width: initial;
}
.second-section .wrap .right-section .image-container {
  max-width: initial;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.second-section .wrap .right-section .image-container .second-section-right-image {
  height: 200px;
  width: 50%;
}
.second-section .wrap .right-section .image-container .keyboard-image {
  background: url("../img/rsh-image-four.jpg") center/cover no-repeat;
}
.second-section .wrap .right-section .image-container .light-image {
  background: url("../img/rsh-image-five.jpg") center/cover no-repeat;
}
.second-section .wrap .right-section .image-container .second-light-image {
  background: url("../img/rsh-image-six.jpg") center/cover no-repeat;
}
.second-section .wrap .right-section .image-container .stairs-image {
  background: url("../img/rsh-image-seven.jpg") center/cover no-repeat;
}

@media (min-width: 630px) {
  .second-section .wrap .left-section .text-container {
    margin: 30px 0 10px 100px;
  }
  .second-section .wrap .left-section .text-container ul {
    width: 50%;
    padding: 15px 30px 0px 0;
  }
  .second-section .wrap .left-section .text-container:last-child {
    margin: 10px 0 0px 100px;
  }

  .right-section .image-container .section-section-right-image {
    width: 25%;
    height: 300px;
  }
}
@media (min-width: 1125px) {
  .second-section .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .second-section .wrap .right-section .top-right-image {
    width: 440px;
  }
  .second-section .wrap .right-section .image-container {
    max-width: 440px;
  }
  .second-section .wrap .right-section .image-container .second-section-right-image {
    width: 50%;
    height: 200px;
  }
}
.third-section {
  background: white;
}
.third-section .section-container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.third-section .section-container .widescreen-container {
  display: none;
}
.third-section .section-container .left-section .top-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 47px 0 0 0;
  height: 150px;
}
.third-section .section-container .left-section .top-section .f1-mod {
  margin: 0 50px;
}
.third-section .section-container .left-section .top-section .f1-mod h2 {
  font-family: 'compacta-bold';
  font-size: 60px;
  position: relative;
}
.third-section .section-container .left-section .top-section .f1-mod h2:before {
  content: "" "";
  position: absolute;
  height: 100px;
  width: 100px;
  left: -25px;
  top: -14px;
  background: url("../img/title-corner-long.png") center/contain no-repeat;
}
.third-section .section-container .left-section .top-section .f1-mod p {
  font-family: 'din-bold';
}
.third-section .section-container .left-section .top-section .f1-mod p span {
  font-family: 'din-regular';
}
.third-section .section-container .left-section .top-section .f2-mod {
  padding: 0 10px;
  margin: 0 0 0 50px;
}
.third-section .section-container .left-section .top-section .f2-mod h2 {
  font-family: 'compacta-bold';
  font-size: 60px;
  position: relative;
}
.third-section .section-container .left-section .top-section .f2-mod h2:before {
  content: "" "";
  position: absolute;
  height: 100px;
  width: 100px;
  left: -25px;
  top: -14px;
  background: url("../img/title-corner-long.png") center/contain no-repeat;
}
.third-section .section-container .left-section .top-section .f2-mod p {
  font-family: 'din-bold';
  font-size: 30px;
  line-height: 18px;
  padding: 10px 0 0 0;
}
.third-section .section-container .left-section .top-section .f2-mod p span {
  font-family: 'din-regular';
  font-size: 20px;
}
.third-section .section-container .left-section .bottom-section .map-container {
  margin: 30px 30px 10px 30px;
}
.third-section .section-container .right-section {
  width: auto;
  margin: 0 25px 80px 30px;
}
.third-section .section-container .right-section h2 {
  margin: 20px 0 0 0;
  font-size: 43px;
}
.third-section .section-container .right-section p {
  font-family: 'din-regular';
  padding: 15px 0;
  font-size: 13px;
  line-height: 21px;
}
.third-section .section-container .right-section p:nth-child(odd) {
  padding: 0px;
}
.third-section .section-container .right-section .first-p {
  font-family: 'din-bold';
}
.third-section .section-container .right-section .office-download-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: absolute;
  left: 0;
}
.third-section .section-container .right-section .office-download-container a {
  margin: 0 auto;
}
.third-section .section-container .right-section .office-download-container a .download-button {
  background: #141414;
  color: white;
  height: 80px;
  font-family: 'din-bold';
  margin: 0 50px 0 0;
  text-align: center;
  width: 100%;
  max-width: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
}
.third-section .section-container .right-section .office-download-container .brochure {
  display: block !important;
}
.third-section .section-container .owl-controls {
  top: 50px;
  right: 20px;
}
.third-section .section-container .owl-controls .owl-prev {
  margin: 0 20px 0 0;
}
.third-section .key {
  background: url("../img/floorplans-key.png") center/contain no-repeat;
  height: 27px;
  width: 127px;
  margin: 0 0 50px 30px;
}

@media (min-width: 1000px) {
  .third-section .section-container .widescreen-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .third-section .section-container .left-section .top-section {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    height: initial;
  }
  .third-section .section-container .left-section .top-section .sq {
    font-size: 20px;
    font-family: 'din-bold';
  }
  .third-section .section-container .left-section .top-section .active-mod {
    opacity: 1 !important;
  }
  .third-section .section-container .left-section .top-section .f1-mod {
    display: block;
    opacity: 0.2;
  }
  .third-section .section-container .left-section .top-section .f2-mod {
    margin: 0;
    opacity: 0.2;
  }
  .third-section .section-container .left-section .top-section .f2-mod h2:before {
    display: block;
  }
  .third-section .section-container .left-section .bottom-section {
    max-width: none;
    background: none;
  }
  .third-section .section-container .left-section .bottom-section .map-container {
    display: none;
  }
  .third-section .section-container .left-section .bottom-section .map-container img {
    height: 400px;
    width: 600px;
  }
  .third-section .section-container .left-section .bottom-section .default-map {
    display: block;
  }
  .third-section .section-container .right-section {
    margin: 0 0 50px 100px;
  }
  .third-section .section-container .right-section h2 {
    font-size: 30px;
    margin: 50px 0 0 0;
  }
  .third-section .section-container .right-section .office-download-container {
    position: initial;
    width: auto;
  }
  .third-section .section-container .right-section .office-download-container .brochure-download {
    display: block !important;
  }
  .third-section .section-container .right-section .office-download-container .f-download {
    display: none;
  }
  .third-section .section-container .right-section .office-download-container .f-download-default {
    display: block;
  }
  .third-section .section-container .right-section .office-download-container a {
    width: auto;
    margin: 0;
  }
  .third-section .section-container .right-section .office-download-container a .download-button {
    width: 110px;
    height: 106px;
    font-size: 16px;
    text-align: left;
    padding: 10px 0 0 10px;
    display: block;
  }
  .third-section .floorplans-mobile {
    display: none;
  }
}
@media (min-width: 1125px) {
  .third-section .section-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .third-section .section-container .left-section .top-section {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 50px 0 0 100px;
  }
  .third-section .section-container .left-section .bottom-section {
    margin: 0 0 0 30px;
  }
  .third-section .section-container .right-section {
    width: 440px;
  }
  .third-section .section-container .right-section p {
    max-width: 300px;
    padding: 35px 0;
  }
  .third-section .section-container .right-section .office-download-container .download-button {
    height: 110px;
  }
}
.fourth-section .section-carousel .park-image {
  background: url("../img/rsh-park-image.jpg") center/cover no-repeat;
}
.fourth-section .section-carousel .owl-controls {
  top: 30px;
  right: 10px;
}
.fourth-section .section-carousel .owl-controls .owl-prev {
  margin: 0 30px 0 0;
}

@media (min-width: 630px) {
  .fourth-section .section-carousel .owl-controls {
    display: block;
  }
}
.fifth-section {
  position: relative;
}
.fifth-section .fifth-section-callout {
  background: #cecd72;
  font-size: 30px;
  font-family: 'din-regular';
  color: white;
  padding: 30px 20px 20px 20px;
  line-height: 35px;
  z-index: 99;
  top: -100px;
}
.fifth-section .fifth-section-container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fifth-section .left-section .section-title {
  margin: 40px 0 0 25px;
}
.fifth-section .left-section .text-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fifth-section .left-section .text-container .first-p {
  padding: 0 50px 20px 0;
}
.fifth-section .right-section ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}
.fifth-section .right-section ul li {
  padding: 0 5px 5px 5px;
  font-family: 'din-regular';
}
.fifth-section .right-section ul .active {
  color: #95bec8;
}
.fifth-section .right-section .map {
  height: 480px;
  max-width: 550px;
  width: 100%;
  margin: 0 auto;
}
.fifth-section .right-section .active {
  display: block !important;
}
.fifth-section .right-section .street-map {
  background: url("../img/rsh-street-map.png") center/cover no-repeat;
}
.fifth-section .right-section .motorway-map {
  background: url("../img/rsh-motorway-map.jpg") center/cover no-repeat;
}
.fifth-section .right-section .a-roads-map {
  background: url("../img/rsh-a-roads-map.jpg") center/cover no-repeat;
}
.fifth-section .right-section .ariel-map {
  background: url("../img/rsh-ariel-map.jpg") center/cover no-repeat;
}
.fifth-section .right-section .owl-controls {
  top: 30px;
  right: 30px;
}
.fifth-section .right-section .owl-controls .owl-prev {
  margin: 0 30px 0 0;
}

@media (min-width: 630px) {
  .fifth-section .fifth-section-callout {
    width: 300px;
    position: absolute;
  }
  .fifth-section .left-section .section-title {
    margin: 240px 0 0 100px;
  }
  .fifth-section .right-section {
    margin: 0;
  }
  .fifth-section .right-section ul {
    padding: 50px 0 0 80px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: initial;
        flex-wrap: initial;
    max-width: 500px;
    margin: 0 auto;
  }
  .fifth-section .right-section ul li {
    padding: 0 10px;
  }
  .fifth-section .right-section .map {
    margin: 20px auto 30px auto;
  }
  .fifth-section .right-section .owl-controls {
    top: -30px;
    right: 66px;
  }
}
@media (min-width: 1070px) {
  .fifth-section .fifth-section-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .fifth-section .fifth-section-container .left-section {
    max-width: 450px;
  }
  .fifth-section .fifth-section-container .right-section {
    width: 60%;
    margin: 0 0 30px 0;
  }
  .fifth-section .fifth-section-container .right-section ul {
    margin: 0;
  }
}
.sixth-section .section-carousel .inside-image {
  background: url("../img/rsh-inside-image.png") center/cover no-repeat;
}
.sixth-section .section-carousel .owl-controls {
  bottom: 0;
  top: 30px;
  right: 30px;
}
.sixth-section .section-carousel .owl-controls .owl-prev {
  margin: 0 30px 0 0;
}
