/* FRAMEWORKS */

/* core */
html, body {
  padding: 0;
  margin: 0;
  cursor: default;
  overflow-x: hidden }

/* modules */
.mod-custom.custom {
  display: flex;
  box-sizing: border-box;
  flex-flow: row wrap;
  justify-content: center;
  padding: 0 50px;
  margin: 0 }

/* color scheme */
:root {
  --rokeby: #0d171f }


/* typography */
body, p h1, h2, h3 { font-family: fleur, sans-serif; }


/* links */
a {
  box-sizing: border-box;
  font-family: fleur, sans-serif;
  color: var(--rokeby);
  text-decoration: none;
  -moz-transition: all 1s 0s ease-out;
  -o-transition: all 1s 0s ease-out;
  -ms-transition: all 1s 0s ease-out;
  transition: all 1s 0s ease-out;
  cursor: pointer }


/* logo */
a.logo:hover { transform: scale(1.05) }


/* keyframes */
@keyframes reveal { 0% { opacity: 0 } 100% { opacity: 1 }}

@keyframes scale { from { -webkit-transform: scaleX(0); -moz-transform: scaleX(0); -o-transform: scaleX(0); -ms-transform: scaleX(0); transform: scale(0) } to { -webkit-transform: scaleX(1); -moz-transform: scaleX(1); -o-transform: scaleX(1); -ms-transform: scaleX(1); transform: scale(1) }}

@keyframes scaleY { from { -webkit-transform: scaleY(0); -moz-transform: scaleY(0); -o-transform: scaleY(0); -ms-transform: scaleY(0); transform: scaleY(0) } to { -webkit-transform: scaleY(1); -moz-transform: scaleY(1); -o-transform: scaleY(1); -ms-transform: scaleY(1); transform: scaleY(1) }}

@keyframes scaleX { from { -webkit-transform: scaleX(0); -moz-transform: scaleX(0); -o-transform: scaleX(0); -ms-transform: scaleX(0); transform: scaleX(0) } to { -webkit-transform: scaleX(1); -moz-transform: scaleX(1); -o-transform: scaleX(1); -ms-transform: scaleX(1); transform: scaleX(1) }}

@keyframes rotate { 0% { -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -o-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg) } 100% { -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -o-transform: rotate(360deg); -ms-transform: rotate(360deg); transform: rotate(360deg) }}


/* HOMEPAGE */

/* landing module */
body.homepage > .mod-custom.custom:nth-of-type(1) { 
  height: 100vh;
  padding-top: 50px }
  
  @media (min-width:1081px) { body.homepage > .mod-custom.custom:nth-of-type(1) { max-height: 100vh; padding-top: 100px; overflow: hidden }}

/* logo */
body.homepage a.logo { 
  display: block;
  position: relative;
  width: 100vw;
  max-width: 700px;
  text-align: center;
  align-self: flex-end;
  margin: 0 auto;
  opacity: 0;
  animation-name: reveal;
  animation-duration: 2.5s;
  animation-delay: 0.5s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards }

  @media (min-width:581px) { body.homepage a.logo { width: 50vw }}
  @media (min-width:1081px) { body.homepage a.logo { width: 45vw }}
  @media (min-width:1600px) { body.homepage a.logo { width: 35vw }}
  @media (min-width:1921px) { body.homepage a.logo { width: 25vw }}

body.homepage a.logo svg { width: 100% }

body.homepage a.logo svg path { 
  -webkit-transition: all 0.5s 0s ease-out;
  -moz-transition: all 0.5s 0s ease-out;
  -o-transition: all 0.5s 0s ease-out;
  -ms-transition: all 0.5s 0s ease-out;
  transition: all 0.5s 0s ease-out }

body.homepage a.logo:hover { transform: scale(1.1) }

body.homepage a.logo #left-line, body.homepage a.logo #right-line { fill: none;
  stroke: #AAAAAA;
  stroke-width: 1px;
  -webkit-transform: scaleX(0); 
  -moz-transform: scaleX(0);
  -o-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  animation-name: scaleX;
  animation-duration: 0.5s;
  animation-delay: 2.75s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards }

body.homepage a.logo #left-line { transform-origin: left }
body.homepage a.logo #right-line { transform-origin: right }


/* Join Us */
body.homepage h2 {
  flex: 1 1 100%;
  align-self: flex-start;
  font-size: 34px;
  line-height: 30px;
  text-align: center;
  color: #000000;
  font-weight: bold;
  letter-spacing: 1px;
  padding: 0;
  margin: 20px 0 0;
  opacity: 0;
  animation-name: reveal;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards }

  @media (min-width:1600px) { body.homepage h2 { font-size: 20px; margin: 30px 0 0 }}
  @media (min-width:1921px) { body.homepage h2 { font-size: 40px; line-height: 36px }}


/* McLean VA */
body.homepage p {
  flex: 1 1 100%;
  font-size: 30px;
  line-height: 26px;
  color: #000000;
  font-weight: bold;
  text-align: center;
  opacity: 0;
  animation-name: reveal;
  animation-duration: 2s;
  animation-delay: 2s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards }

  @media (min-width:1921px) { body.homepage p { font-size: 36px; line-height: 32px }}



/* links */
body.homepage div.links {
  display: flex;
  flex: 1 1 100%;
  flex-flow: row wrap;
  align-content: center;
  align-items: center;
  padding-bottom: 50px;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -o-transform: scale(0);
  -ms-transform: scale(0);
  animation: scale;
  animation-duration: 0.5s;
  animation-delay: 2.75s;
  animation-iteration-count: 1;
  animation-timing-function: ease;
  animation-fill-mode: forwards }


/* Link 1 */
body.homepage a.link-1 {
  flex: 1 1 100%;
  font-size: 26px;
  color: #000000;
  font-weight: bold;
  text-align: center;
  padding: 0 0 30px }

  @media (min-width:1081px) { body.homepage a.link-1 { flex: 0 0 50%; font-size: 34px; text-align: left; padding: 0 50px; order: 1 }}

body.homepage a.link-1:hover { transform: scale(1.05) translateY(-5px) }


/* Link 2 */
body.homepage a.link-2 {
  display: block;
  flex: 1 1 100%;
  align-self: flex-end;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 0 }
    
  @media (min-width:1081px) { body.homepage a.link-2 { flex: 0 0 50%; font-size: 34px; text-align: right; order: 3 }}

body.homepage a.link-2:hover { transform: scale(1.05) translateY(-5px) }

body.homepage a.link-2 > span { 
  font-size: 30px;
  font-style: italic;
  padding-right: 10px }

  @media (min-width:1081px) { body.homepage a.link-2 > span:nth-of-type(2) { font-size: 44px }}

body.homepage a.link-2 i { font-size: 24px; color: #646464 }