@charset "UTF-8";


/*  VARIABLES  */

:root {
  --body-text: #60718D;
  --blue: #60718D;
  --white: #ffffff;
  --black: #070606;
}


 /*  FONTS  */


 /* OVERRIDES */

 .container {
  max-width: 100%;
 }
 @media screen and (min-width: 767px) {
  .container {
    max-width: 95%;
   }
 }
 @media screen and (min-width: 1200px) {
  .container {
    max-width: 1140px;
   }
 }

 
  /*  GLOBAL */

header,
  nav,
  main,
  footer,
  section,
  aside {
    display: block;
    position: relative;
  }

  .muli {
    font-family: "muli", sans-serif;
    font-weight: 400;
    font-style: normal;
  }

  html {
    scroll-behavior: smooth;
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    background: #f4f8f9;
    font-family: "sofia-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--body-text);
    font-size: 15px;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  @media screen and (min-width: 575px) {
    body {
      font-size: 15px;
    }
  }
  @media screen and (min-width: 1200px) {
    body {
      font-size: 16px;
    }
  }
  @media screen and (min-width: 1500px) {
    body {
      font-size: 17px;
    }
  }


  /*  HEADER */

  header {
    background-color: #fff;
    position: relative;
    border-bottom: solid 8px #B6D4D9;
    width: 100%;
    z-index: 999;
  }

  #header {
    display: block;
    text-align: center;
    max-width: 375px;
    margin: auto;
    padding: 35px 0;
    position: relative;
  }
  #sr-logo {
    display: block;
    width: 225px;
    position:relative;
    outline: 0;
    border: 0;
    z-index: 999;
  }
  header h1 {
    font-size: clamp(1.9rem ,2.55vw, 3rem);
    line-height: 1.1em;
    font-weight: 400;
    margin: 0 0 15px;
    padding: 0;
  }
  header p {
    font-size: 15px;
    margin: 0px;
  }
  @media screen and (min-width: 575px) {
    #header {
      text-align: left;
      max-width: 100%;
      padding: 30px 0 15px 250px;
    }
    header h1 {
      margin: 0 0 5px;
    }
    #sr-logo {
      position:absolute;
      top: 10px;
      left: 0;
      border: solid 4px #B6D4D9;
    }
  }
  @media screen and (min-width: 767px) {
    #header {
      padding: 30px 0 15px 260px;
    }

    header p {
      font-size: 18px;
    }
  }

  strong {
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.3;
  }

  @media screen and (min-width: 992px) {
    strong {
      font-size: 1.5rem;
    }

    .body-content {
      padding: 40px 0 20px 0;
      max-width: 800px;
    }
  }
  

  /* GLOBAL LINKS */

  a.link,
  a.link:visited {
    color: var(--blue);
    text-decoration: none;
    outline: 0;
    border:  0;
    transition: all 0.5s;
  }
  a.link:hover {
    color: var(--blue);
    text-decoration: underline;
    outline: 0;
    border:  0;
    transition: all 0.5s;
  }
  a.link-black,
  a.link-black:visited {
    color: var(--black);
    text-decoration: none;
    outline: 0;
    border:  0;
    transition: all 0.5s;
  }
  a.link-black:hover {
    color: var(--black);
    text-decoration: underline;
    outline: 0;
    border:  0;
    transition: all 0.5s;
  }
  a.link-white,
  a.link-white:visited {
    color: var(--white);
    text-decoration: none;
    outline: 0;
    border:  0;
    transition: all 0.5s;
  }
  a.link-white:hover {
    color: var(--white);
    text-decoration: underline;
    outline: 0;
    border:  0;
    transition: all 0.5s;
  }
  .white {
    color: var(--white);
  }
  .bg-white {
    background-color: var(--white);
  }
  .black {
    color: var(--black);
  }
  .bg-black {
    background-color: var(--black);
  }
  .blue {
    color: var(--blue);
  }
  .bg-blue {
    background-color: var(--blue);
  }

  .flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .text-normal {
    text-transform: none;
  }



  h1, h2, h3, h4, h5, h6 {
    line-height: 1em;
    margin: 10px 0;
  }
  h1 {
    color: var(--blue);
  }

  h2 {
    color: var(--blue);
    font-size: 1.75rem;
    font-weight: 300;
    line-height: 1.15em;
  }
  @media screen and (min-width: 575px) {
    h2 {
      font-size: 1.95rem;
    }
  }
  @media screen and (min-width: 992px) {
    h2 {
      font-size: 2.25rem;
    }
  }

  h3 {
    color: var(--blue);
    font-size: 26px;
  }

  h4 {
    color: var(--blue);
    font-size: 14px;
    font-weight: 300;
  }

  h5 {
    color: var(--blue);
    font-size: 26px;
  }


  /*  SLIDESHOW */

  #main-slideshow img {
    display: block;
    width: 100%;
  }
  #main-slideshow .splide__pagination {
    bottom: -35px
  }
  #main-slideshow .splide__pagination__page.is-active {
    background-color: #6e8099;
  }
  #main-slideshow .splide__pagination__page {
    background-color: #b7d4d9;
  }


  /*  PAGES */

  #intro {
    background: url('../images/universal/bg-intro.svg') no-repeat right bottom / cover;
  }
  #intro p {
    margin: 20px 0 25px;
  }
  @media screen and (min-width: 500px) {
  }



  /*  BUTTON */

	.bttn,
	.bttn:visited {
	  display: inline-block;
    background-color: transparent;
	  color: #fff;
	  font-size: 14px;
	  font-weight: bold;
    text-align: center;
	  text-decoration: none;
	  text-transform: uppercase;
    width: 100%;
	  outline: 0;
	  border: solid 1px #fff;
	  border-radius: 0px;
	  padding: 10px 50px;
	  cursor: pointer;
	  transition: all 0.5s;
	}
	.bttn:hover {
    background-color: rgba(0,0,0,0.15);
	  color: #fff;
	  text-decoration: none;
	  outline: 0;
	  border: solid 1px #fff;
	}

  #contact {
    background-color: #fff;
    display: inline-block;
    margin: 25px auto;
    padding: 25px 35px 45px;
    box-shadow: 0 0 5px #bbb;
  }
  #contact p {
    font-size: 18px;
    font-weight: bold;
  }
  #contact a,
	#contact a:visited {
	  display: inline-block;
	  color: var(--blue);
	  font-size: 18px;
	  font-weight: 500;
    text-align: center;
	  text-decoration: none;
	  outline: 0;
	  border-bottom: solid 1px #B6D4D9;
	  cursor: pointer;
	  transition: all 0.5s;
	}
	#contact a:hover {
	  color: var(--blue);
	  text-decoration: none;
	  outline: 0;
	  border-color: var(--body-text);
	}
  @media screen and (min-width: 767px) {
    #contact a,
	  #contact a:visited {
      font-size: 26px;
    }
  }
  


  /*  FOOTER */

  footer {
    background-color: var(--blue);
    color: var(--white);
    clear: both;
    position: relative;
  }
  footer article {
    max-width: 400px;
    margin: 15px auto;
  }
  footer p.in-the-know {
    display: inline-block;
    font-size: 14px;
    position: relative;
  }
  footer p.leasing-info {
    font-size: 1.125em;
    line-height: 1.25em;
  }
  footer p a,
  footer p a:visited {
    display: inline-block;
    color: #fff;
    text-decoration: underline;
    outline: 0;
    border: 0;
  }
  footer p a:hover {
    color: #fff;
    text-decoration: none;
    outline: 0;
    border: 0;
  }
  @media screen and (min-width: 767px) {
    footer p.in-the-know {
      font-size: 1.3rem;
      line-height: 1.25em;
    }
    footer p.leasing-info {
      font-size: 0.8em;
      line-height: 1.25em;
    }
  }


  /*  COPYRIGHT */

  #copyright {
    padding: 15px;
  }
  #affiliates {
    display: inline-block;
    width: 100%;
    max-width: 320px;
    position: relative;
  }
  #affiliates a.beach {
    display: inline-block;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 190px;
    height: 100%;
    outline: 0;
    border: 0;
  }
  #affiliates a.swain {
    display: inline-block;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 190px;
    width: 160px;
    height: 100%;
    outline: 0;
    border: 0;
  }
  #copyright p {
    color: #B6D4D9;
    font-size: 11px;
    line-height: 14px;
    margin: 0;
    vertical-align: middle;
  }
  #copyright a,
  #copyright a:visited {
    color: #B6D4D9;
    text-decoration: none;
    outline: 0;
    border: 0;
    transition: all 0.5s;
  }
  #copyright a:hover {
    color: #B6D4D9;
    text-decoration: underline;
    outline: 0;
    border: 0;
  }
  @media screen and (min-width: 992px) {
    #copyright p {
      font-size: 0.8em;
      line-height: 1.25em;
    }
    #copyright img {
      max-width: 325px;
    }
  }



  /*----------------------------------  GLOBAL MEDIA QUERIES */

  @media screen and (min-width: 575px) {}

  @media screen and (min-width: 767px) {}

  @media screen and (min-width: 992px) {}

  @media screen and (min-width: 1200px) {}

  @media screen and (min-width: 1500px) {}