@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translate(0); } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%; }
  @media (max-width: 1200px) {
    html {
      font-size: 50%; } }
  @media (max-width: 1000px) {
    html {
      font-size: 45%; } }
  @media (max-width: 900px) {
    html {
      font-size: 40%; } }
  @media (max-width: 600px) {
    html {
      font-size: 30%; } }

body {
  font-family: "lato", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #777;
  padding: 0 3rem 0 3rem;
  box-sizing: border-box; }
  @media (max-width: 600px) {
    body {
      padding: 0; } }

h2 {
  margin-bottom: 3rem; }

a {
  text-decoration: none; }

.row {
  margin-bottom: 2rem;
  margin: 0 10rem; }

.heading-secondary {
  font-size: 3.5rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  color: #54483A;
  letter-spacing: .2rem;
  transition: all .2s;
  text-align: center; }

.heading-4 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400; }
  .heading-4 .heading-3 {
    font-size: 2rem; }

.heading-4 {
  font-size: 2.4rem; }
  .heading-4--light {
    color: #f7f7f7; }
  .heading-4--dark {
    color: #54483A; }

.u-center-text {
  text-align: center !important; }

.u-margin-bottom-small {
  margin-bottom: 1.5rem !important; }

.u-margin-bottom-medium {
  margin-bottom: 4rem !important; }

.u-margin-bottom-big {
  margin-bottom: 8rem !important; }

.u-margin-top-big {
  margin-top: 8rem !important; }

.u-margin-top-medium {
  margin-top: 5rem !important; }

.u-margin-top-huge {
  margin-top: 10rem !important; }

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  padding: 1rem 4rem;
  display: inline-block;
  border-radius: 10rem;
  transition: all .2s;
  position: relative;
  font-size: 1.8rem;
  letter-spacing: .2rem;
  border: none;
  cursor: pointer; }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn--white {
  background-color: #fff;
  color: #777; }
  .btn--white::after {
    background-color: #B28451;
    opacity: .5; }

.btn--green {
  background-color: #55c57a;
  color: #fff; }
  .btn--green::after {
    background-color: #55c57a; }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all .4s; }

.btn--animated {
  animation: moveInBottom .5s ease-out .75s;
  animation-fill-mode: backwards; }

.btn-text:link, .btn-text:visited {
  font-size: 1.8rem;
  color: #55c57a;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #55c57a;
  padding: 3px;
  transition: all .2s;
  letter-spacing: .1rem; }

.btn-text:hover {
  background-color: #55c57a;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); }

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0); }

.features {
  display: grid;
  grid-template-rows: 25rem 30rem;
  grid-template-columns: repeat(3, 1fr);
  grid-column: center-start / center-end;
  align-items: start;
  padding: 5rem 5rem;
  background-color: #eee;
  grid-gap: 0;
  border-radius: 3rem;
  border: .5rem solid #B28451; }
  @media (max-width: 700px) {
    .features {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: repeat(3, 25rem); } }
  @media (max-width: 450px) {
    .features {
      grid-template-columns: repeat(1, 1fr);
      grid-template-rows: repeat(6, 18rem);
      padding: 0;
      grid-row-gap: 5rem; } }
  .features .support {
    grid-column: 1 / -1;
    text-align: center; }
    .features .support__long-copy {
      line-height: 145%;
      color: #54483A;
      font-size: 1.9rem;
      width: 70%;
      margin-left: 15%;
      margin-bottom: 4rem; }
      @media (max-width: 400px) {
        .features .support__long-copy {
          width: 100%;
          margin-left: 0; } }
  .features .feature {
    float: left;
    width: 33.3333%;
    margin-bottom: 1rem;
    display: grid;
    grid-template-columns: min-content 1fr;
    grid-row-gap: 1.5rem;
    grid-column-gap: 2.5rem;
    transition: color .5s; }
    @supports (display: grid) {
      .features .feature {
        width: auto;
        margin-bottom: 0; } }
    .features .feature__icon {
      fill: #c69963;
      width: 3.5rem;
      height: 4.5rem;
      grid-row: 1 / span 2;
      transform: translateY(-2rem); }
    .features .feature__icon:hover {
      color: #ffb900; }
    .features .feature__text {
      font-size: 1.9rem; }

@media (max-width: 400px) {
  .last {
    padding-bottom: 4rem; } }

.container {
  align-self: center;
  width: 100%;
  z-index: 300;
  grid-column: 1 / 2; }
  @media (max-width: 600px) {
    .container {
      padding-bottom: 3rem; } }
  @media (max-width: 400px) {
    .container {
      padding-top: 5rem;
      padding-bottom: 3rem; } }

.acc {
  border-radius: 3rem;
  overflow: hidden; }
  @media (max-width: 400px) {
    .acc {
      border-radius: 0; } }
  .acc__paragraph {
    color: black;
    font-size: 1.2rem; }
  .acc__qa {
    font-size: 13px;
    background-color: rgba(0, 0, 0, 0.4);
    color: #f9f7f6;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    font-family: "lato", sans-serif;
    letter-spacing: .1rem;
    position: relative; }
    @media (max-width: 650px) {
      .acc__qa {
        font-size: 10px; } }
    @media (max-width: 600px) {
      .acc__qa {
        font-size: 9.5px; } }
    @media (max-width: 500px) {
      .acc__qa {
        font-size: 7.1px; } }
    @media (max-width: 400px) {
      .acc__qa {
        font-size: 6.7px; } }
    @media (max-width: 350px) {
      .acc__qa {
        font-size: 5.5px; } }
    @media (max-width: 300px) {
      .acc__qa {
        font-size: 5.4px; } }
    .acc__qa:hover {
      border-bottom: 0.3rem solid #B28451; }
    .acc__qa:after {
      color: #c69963;
      content: '+';
      position: absolute;
      right: 2rem;
      font-size: 4rem;
      top: 50%;
      transform: translateY(-50%); }
  .acc__content {
    background-color: #f7f7f7;
    display: none; }
    .acc__content* {
      margin-top: 0;
      line-height: 5rem; }
    .acc__content--content-inner {
      padding: 1.5rem; }

.acc.active h3:after {
  content: '-'; }

.header__text-box1 {
  position: absolute;
  top: 15rem;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; }
  @media (max-width: 700px) {
    .header__text-box1 {
      top: 17rem; } }
  @media (max-width: 500px) {
    .header__text-box1 {
      top: 25rem; } }
  @media (max-width: 400px) {
    .header__text-box1 {
      top: 20rem; } }
  .header__text-box1__heading-primary1 {
    color: #fff;
    text-transform: uppercase; }
    .header__text-box1__heading-primary1--main1 {
      display: block;
      font-size: 3.75rem;
      font-weight: 700;
      letter-spacing: 1rem;
      animation-name: moveInLeft;
      animation-duration: 1s;
      animation-timing-function: ease-out;
      text-shadow: 0.1rem 0.4rem 0.1rem #B28451; }
      @media (max-width: 600px) {
        .header__text-box1__heading-primary1--main1 {
          font-size: 5rem; } }
      @media (max-width: 400px) {
        .header__text-box1__heading-primary1--main1 {
          font-size: 3rem; } }
      @media (max-width: 400px) {
        .header__text-box1__heading-primary1--main1 {
          font-size: 3rem; } }
    .header__text-box1__heading-primary1--sub1 {
      display: block;
      font-size: 2.75rem;
      font-weight: 400;
      letter-spacing: 1rem;
      animation: moveInRight 1s ease-out;
      margin-bottom: 2rem;
      text-shadow: 0.1rem 0.2rem 0.1rem #B28451; }
      @media (max-width: 650px) {
        .header__text-box1__heading-primary1--sub1 {
          font-size: 2.75rem;
          width: 50rem; } }
      @media (max-width: 600px) {
        .header__text-box1__heading-primary1--sub1 {
          font-size: 4rem;
          width: 66rem; } }
      @media (max-width: 400px) {
        .header__text-box1__heading-primary1--sub1 {
          font-size: 2.75rem;
          width: 50rem; } }

.enquire__text-box2 {
  justify-self: center;
  align-self: center;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 3rem;
  height: 20rem;
  width: 40rem;
  text-align: center;
  grid-column: 2 / -2;
  display: flex;
  align-items: center; }
  @media (max-width: 700px) {
    .enquire__text-box2 {
      position: absolute;
      bottom: 2%; } }
  @media (max-width: 376px) {
    .enquire__text-box2 {
      bottom: -2px; } }
  .enquire__text-box2__enquire-primary2 {
    color: #fff;
    text-transform: uppercase; }
    .enquire__text-box2__enquire-primary2--sub2 {
      font-size: 3rem;
      font-weight: 400;
      letter-spacing: .2rem;
      animation: moveInRight 1s ease-out;
      margin-bottom: .5rem;
      text-shadow: 0 .3rem .3rem #B28451; }

.father {
  margin: auto auto;
  transform: translateY(8rem);
  width: 90%;
  height: 80%;
  display: grid;
  grid-column-gap: 3rem;
  grid-template-columns: 55% 45%; }
  @media (max-width: 700px) {
    .father {
      grid-template-columns: 100%;
      height: 100%;
      transform: translateY(0rem); } }
  @media (max-width: 600px) {
    .father {
      grid-template-columns: 100%;
      height: 80%;
      transform: translateY(0rem);
      grid-column-gap: 0rem; } }
  @media (max-width: 400px) {
    .father {
      width: 100%;
      height: 90%; } }

.header {
  height: 100vh;
  position: relative;
  background-image: linear-gradient(to right bottom, rgba(25, 52, 83, 0.2), rgba(51, 51, 51, 0.5)), url(/img/hero.jpg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  position: relative;
  margin-bottom: 2rem;
  justify-content: center;
  width: 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  border-radius: 0 0 3rem 3rem;
  border-right: .5rem solid #B28451;
  border-left: .5rem solid #B28451;
  border-bottom: .5rem solid #B28451; }
  @media (max-width: 700px) {
    .header {
      height: 100vh; } }
  @media (max-width: 600px) {
    .header {
      height: 95vh; } }
  @media (max-width: 376px) {
    .header {
      height: 100vh; } }
  .header__img-nav__logo {
    position: absolute;
    width: 10rem;
    height: 7rem;
    transition: 0.6s;
    top: 2rem;
    left: 5rem; }
    @media (max-width: 351px) {
      .header__img-nav__logo {
        top: 1rem;
        left: 2.5rem; } }

.header__text-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center; }
  .header__text-box__heading-primary {
    color: #fff;
    text-transform: uppercase; }
    .header__text-box__heading-primary--main {
      display: block;
      font-size: 4rem;
      font-weight: 400;
      animation-name: moveInLeft;
      animation-duration: 1s;
      animation-timing-function: ease-out; }
    .header__text-box__heading-primary--sub {
      display: block;
      font-size: 2rem;
      font-weight: 700;
      animation: moveInRight 1s ease-out;
      margin-bottom: 2rem; }

.social {
  position: fixed;
  z-index: 100;
  height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translate(-29rem, 0); }
  @media (max-width: 600px) {
    .social {
      transform: translate(-26rem, 0);
      height: 30vh; } }
  @media (max-width: 400px) {
    .social {
      transform: translate(-26rem, 0);
      height: 40vh; } }

.social a {
  color: #54483A;
  background-color: rgba(0, 0, 0, 0.13);
  font-size: 2rem;
  font-weight: 700;
  display: block;
  margin: .5rem;
  padding: 2rem;
  width: 30rem;
  text-align: right;
  border-radius: 5rem;
  transition: 1s;
  transition-property: transform; }

.social a:hover {
  transform: translate(14rem, 0); }

.social i {
  margin-left: 1rem;
  font-size: 3rem;
  width: 3rem;
  height: 3rem; }

.social a:nth-child(1) i {
  color: #1da0f0; }

.social a:nth-child(3) i {
  color: #25D366; }

.social a:nth-child(2) i {
  color: transparent;
  background-image: linear-gradient(45deg, #FFDF9E, #e56969, #8a49a1);
  -webkit-background-clip: text;
  font-weight: 600; }

.social a:nth-child(4) i {
  color: #25D366; }

.social a .fab {
  transform: translate(6px, 5px); }
  @media (max-width: 600px) {
    .social a .fab {
      transform: translate(6px, 2px); } }

.footer {
  background-color: #142538;
  padding: 8rem;
  border-radius: 3rem 3rem 0 0;
  border-top: .5rem solid #B28451;
  border-right: .5rem solid #B28451;
  border-left: .5rem solid #B28451; }

.nav {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  grid-gap: 2rem;
  align-items: center;
  padding-left: 0; }
  .nav__link:link, .nav__link:visited {
    font-size: 1.4rem;
    border: .1rem solid #B28451;
    border-radius: 10rem;
    color: #B28451;
    text-decoration: none;
    font-family: "Josefin Sans", sans-serif;
    text-transform: uppercase;
    text-align: center;
    padding: 1.5rem;
    display: block;
    transition: all .2s; }
  .nav__link:hover, .nav__link:active {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px); }

.copyright {
  font-size: 1.4rem;
  color: white;
  margin-top: 6rem;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  width: 80%; }

.heshe {
  font-size: 1.8rem;
  color: darkgray;
  transition: all .3s;
  text-decoration: none; }
  .heshe:hover {
    transform: scale(1.05);
    box-shadow: 0 1rem 3rem black; }
  .heshe:active {
    transform: scale(0.9);
    box-shadow: 0 .5rem 2rem black; }

.popup .overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  z-index: 400;
  display: none; }

.popup__content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  width: 55vw;
  height: 65vh;
  z-index: 500;
  text-align: center;
  border-radius: 3rem;
  padding: 2rem;
  box-sizing: border-box;
  font-family: "Open Sans",sans-serif; }
  @media (max-width: 900px) {
    .popup__content {
      height: 85vh;
      width: 80vw; } }

.popup .close-btn {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 30px;
  height: 30px;
  background: #a17746;
  color: #fff;
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-align: center;
  border-radius: 50%; }
  @media (max-width: 420px) {
    .popup .close-btn {
      width: 25px;
      height: 25px;
      font-size: 20px;
      top: 20px;
      line-height: 25px; } }

.popup.active .overlay {
  display: block; }

.popup.active .popup__content {
  transition: all 300ms ease-in-out;
  transform: translate(-50%, -50%) scale(1); }

.popup__logo {
  position: absolute;
  width: 10rem;
  height: 7rem;
  transition: 0.6s;
  left: 20px;
  top: 20px; }

.popup__paragraph {
  font-size: 1.75rem;
  grid-row: 2 / 3;
  grid-column: 1 / -1;
  width: 100%; }
  @media (max-width: 900px) {
    .popup__paragraph {
      grid-row: 2 / 3;
      grid-column: 1 / -1; } }
  @media (max-width: 420px) {
    .popup__paragraph {
      font-size: 1.5rem; } }

.popup__address {
  font-size: 2rem;
  grid-column: 1 / 2;
  grid-row: 3 / 4;
  width: 100%; }
  @media (max-width: 900px) {
    .popup__address {
      grid-row: 3 / 4;
      grid-column: 1 / -1; } }
  @media (max-width: 420px) {
    .popup__address {
      font-size: 1.75rem;
      color: black; } }

.popup__map {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  border-radius: 3rem;
  grid-column: 2 / 3;
  grid-row: 3 / 4; }
  @media (max-width: 900px) {
    .popup__map {
      grid-row: 4 / -1;
      grid-column: 1 / -1;
      margin-left: 0;
      margin-right: 0;
      width: 100%; } }

.popup__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-gap: 1px;
  padding-bottom: 2rem; }
  @media (max-width: 900px) {
    .popup__content {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(4, 1fr); } }
