/*---------------------- reset html styles -----------------------
------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;700&display=swap');
/*reset margins and padding*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,blockquote,th,tt,table,tr,td{margin:0;padding:0}

/* Remove borders */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

fieldset,
img {
  border: 0;
}

abbr,
acronym {
  border: 0;
}

label:not([class]) {
  border: 0 !important;
    font-weight: 700;
  font-size: 1.1rem;
}

/* Remove border around linked images */
img {
  border: 0;
  max-width: 100%;
  height: auto;
}

iframe {
  border: 0;
}

/* Reset font-size and -weight */
address,
caption,
cite,
code,
dfn,
th,
var {
  font-style: normal;
  font-weight: normal
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: normal;
  color: #222;
}

p,
blockquote,
big {
  font-size: 1em;
}

/* Remove styling from all list items */
ol,
ul,
li {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.error404,
body[id="404"] #gridMain form {
  padding: 10px;
}

/*---------------------- start Foundation styles ------------------------
------------------------------------------------------------------*/
body {
  margin: 0px auto;
  background: #fff;
  font-family:"Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #333;
  min-height: 1024px;
}

/*---------------------- general text styles ----------------------*/
p {
  font-size: 13px;
  margin-bottom: 5px;
  line-height: 1.5em;
}

a {
  color: #BE1E2D;
  text-decoration: none;
  outline: none;
}

a:hover {
  color: #6B0006;
}

/*---------------------- general layout styles ----------------------*/
.clear {
  clear: both;
}

#wrapper {
  text-align: center;
  flex-direction: column;
}

/*---------------------- header styles ----------------------*/
#header {
  position: relative;
  text-align: left;
  width: 1280px;
  height: 140px;
  margin: 0px auto;
  max-width: 100%;
  display: flex;
}

#logo {
  margin: auto 0;
  width: 200px;
  height: 120px;
  max-width: 48%;
  box-sizing: border-box;
  padding: 5px;
}

@media (max-width:  640px) {
  #header {
    position: sticky;
    top: 0;
    box-shadow: 0px 3px 2px 0px #3333;
    height: 80px;
    z-index: 2;
    background: #fff;
  }
  #logo {
    width: 117px;
    height: 53px;
    transition: 1s;
  }
}

#logo a {
  display: block;
  background: url(../images/foundation-logo.png) no-repeat center;
  background-size: contain;
  height:100%;
  transition: 3s ease-in 2s;
  transform: scale(1);
}
 

a.hamburger {
  margin: auto 10px;
  color: #BE1E2D;
}

#logo a span {
  display: none;
}

#message {
  float: left;
  width: 225px;
  height: 110px;
  background: url(../images/foundation_bubble.gif) no-repeat;
}

#message p {
  color: #666;
  font-size: 13px;
  line-height: 1.4em;
  font-family: Georgia, Times, serif;
  font-style: italic;
  text-align: center;
  margin: 10px auto;
  padding: 0px 30px;
}

#message a {
  color: #666;
  border-bottom: 1px dotted #aaa;
}

#message a:hover {
  color: #333;
}

#requestDemo {
  margin: auto 5px auto auto;
  position: relative;
  top: 0px;
  box-sizing: border-box;
  padding: 12px;
  max-width: 50%;
}

#requestDemo p {
  color: #888;
  font-size: 11px;
  text-align: center;
  margin: 0;
}

#requestDemoBtn {
  margin: 0px 10px;
}



#requestDemoBtn a {
  display: flex;
  height: 35px;
  background: #8e0c15;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-transform: lowercase;
  font-weight: 700;
  font-size: 16px;
  text-shadow: 0px 0px 1px #555;
  padding: 1px 18px;
  margin-top: 9px;
  transition: 222ms;
}
#requestDemoBtn a:hover {
  background: #61070e;
}

@media (max-width:  640px) {
  #requestDemo {
    padding: 5px;
  }
  #requestDemoBtn a {
    height: 20px;
    font-size: 12px;
    padding: 1px 9px;
  }
}

/*---------------------- topNav styles ----------------------*/
#topNav {
  text-align: left;
  width: 100%;
  margin: 0px auto;
  max-width: 100%;
  position: sticky;
  top: 0;
  box-sizing: border-box;
  background: #fff;
  z-index: 2;
  box-shadow: 0px 3px 2px 0px #3333;
}

div#topNav ul {
  padding: 0;
  margin: auto;
  width: 1080px;
  max-width: 100%;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
}

div#topNav ul li.fdn-nav-icon {
    width: 30px;
    flex: none;
    position: relative;
    overflow: hidden;

}

div#topNav ul li.fdn-nav-icon img {
  height:auto;
  width: 100%;
  max-width: 100%;
  position: absolute;
  left: -100px;
  transition: 288ms ease-out;
}
div#topNav.uk-sticky-fixed ul li.fdn-nav-icon img {
  left:  0;
}
div#topNav ul li {
  flex: 1;
  text-align: center;
}


#topNav li a {
  color: #222;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  line-height: 32px;
  display: block;
  height: 30px;
  background: #fefefe;
  position: relative;
  float: none;
}
#topNav li a:hover {
  text-decoration: none;
  background: #75030b;
  color: #fff;
}

#topNav li a.active {
  background: #75030b;
  cursor: default;
  text-decoration: none;
  color: #fff;
}

#topNav li a.active::after {
    content: ' ';
    display: block;
    text-indent: -9999em;
    position: absolute;
    bottom: -8px;
    right: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(0, 0, 0, 0);
    border-right: 8px solid rgba(0, 0, 0, 0);
    border-top: 8px solid #75030b;
    z-index: 2;
}

/*---------------------- Content styles ----------------------*/
#topContent {
  text-align: left;
  width: 100%;
  margin: 0px auto;
 
  max-width: 100%;
  background: #fff;
  padding: 10px 0;
  min-height: 100px;
  position: relative;
  display: flex;
  box-sizing: border-box;

}
#topContent > div {
  width: 1280px;
  max-width: 100%;
  box-sizing: border-box;
  margin: auto;
    display: flex;
    flex-wrap: wrap;
  justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}
#botContentBkg {
  width: 100%;
  box-sizing: border-box;
}

#botContent {
  text-align: left;
  width: 1280px;
  margin: 0px auto;
  max-width: 100%;
}

/*---------------------- Home styles ----------------------*/
#homeHead {
  float: left;
  width: 380px;
  margin-top: 20px;
  margin-left: 10px;
    align-self: flex-start;
}

#homeHead h2 {
  font-size: 23px;
  line-height: 1.3em;
  margin:20px 0 10px;
  padding: 8px;
}

#homeHead p {
  text-align: right;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 16px;
}

#homeHead a {

}

#homeHead a:hover {
  border-bottom: 1px dotted #6B0006;
}

#homeGallery {
  flex: 1;
  margin-left: 10px;
  max-width: calc(100% - 10px);
  background-size: contain;
  margin-top: 20px;
}


#homeGallery a {
  cursor: pointer;
}

@media (max-width: 800px) {
  #homeHead {
    order: 10;
    width: 90%;
    margin: auto;
  }
  #homeHead h2 {
      background: #0000007d;
  }
  #homeGallery {
   flex: none;
  margin: auto auto 20px;
  max-width: 90%;
  order: 1;
}
}

#contentHome {
  text-align: left;
  width: 960px;
  margin: 0px auto;
  max-width: 100%;
}

#contentHome h3.subHead {
  font-size: 16px;
  margin-left: 10px;
}

#contentHome h3.subHead span {
  font-family: Georgia, serif;
  font-size: 27px;
  font-style: italic;
  color: #8e0c15;
}

#homeScreenshots {
  margin-top: 20px;
}

.examples {
  float: left;
  width: 220px;
  margin: 0px 10px;
}

.screenshotQuote {
  font-size: 12px;
  font-family: Georgia, serif;
  font-style: italic;
  margin-top: 10px;
}

.screenshotSource {
  font-size: 12px;
  font-style: italic;
  text-align: right;
}

p.showcaseLink {
  margin: 10px;
  margin-top: 25px;
}

/* slideshow */
#loader {
  background-color: white;
  display: inline;
  float: left;
  height: 330px;
  overflow: hidden;
  margin: 10px;
  width: 540px;
  position: relative;
  text-align: center;
  max-width: calc(100% - 20px);
  box-sizing: border-box;
}

#loader img {
width: 540px;
  height: auto;
  max-width: 100%;
}

.loading {
  background: url( '../images/loadingIcon.gif' ) no-repeat 50% 50%;
  height: 100%;
  width: 100%;
  z-index: 10;
}

/*---------------------- Features styles ----------------------*/
#featuresHead {
  width: 50%;
  padding:  10px;
  box-sizing: border-box;

}


#featuresHead h2 {
  font-size: 28px;
  line-height: 1.3em;
  font-weight: bold;
  margin-bottom: 5px;
}

#featuresHighlight {
   width: 50%;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width:  640px) {
  #featuresHead,
  #featuresHighlight {
    width: 100%;
  }
}

#featuresHighlight ul {
  margin: 30px 0px 20px 20px;
}

#featuresHighlight li {
  font-size: 18px;
  line-height: 1.3em;
  margin-bottom: 10px;
  display: flex;
}

#featuresHighlight li:before {
  content: "";
  background: #900;
  width: 9px;
  height: 9px;
  border-radius: 100px;
  margin-right: 8px;
  margin-top: 8px;
  flex: none;
  box-shadow: inset 2px 1px 4px 0px #eeeeeeb3, inset -2px -1px 2px 0px #4444, 1px 1px 3px -1px #444;
}

.featuresList {
  max-width: 100%;
  width: calc(100% * 1/3.001);
  padding:0 10px;
  box-sizing: border-box;
}

@media (max-width:  640px) {
  .featuresList {
    width: 80%;
    margin: auto;
  }
}

.featuresList .uk-accordion-content {
  margin-top: 0;
}
.featuresList .uk-accordion-title::before {
    filter: invert(1) brightness(1.5);
    transition: 188ms ease-out;
}
.featuresList  .uk-accordion>:nth-child(n+2) {
  margin: 0;
}
.featuresList h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  margin-bottom: 15px;
  margin-top: 15px;
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  color:  #000;
}
.featuresList h3 a {
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color:  #000;
}

.featuresList h3 a:hover {
  text-decoration: none;
}

.featuresList h4 {
  margin: 10px 0px 0px 0px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3em;
}

.featuresList h4.modules {
  margin: 10px 0px 0px 0px;
  font-weight: normal;
}

.featuresList ul {
  margin: 5px 0px 15px 0px;
}

ul.featureToggle li {
  margin-left: 20px;
  list-style: disc;
  margin-bottom: 8px;
  line-height: 1.3em;
}

.featuresList .featureButton {
  background:#75030b;
  padding: 10px;
  margin: 0;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #fff;
  font-weight: 700;
}

.featuresList .featureButton:hover {
 background: #0e4856;
}


.featuresList .featureToggle {
  background: #CCCCD1;
  margin: 0;
  padding: 10px;
  font-size: 16px;
}

.featuresList ul li ul li {
  list-style-type: circle;
}

/*---------------------- Add Ons styles ----------------------*/
#addonsHead {
  float: left;
  width: 380px;
  margin: 10px 0px 20px 10px;
}

#addonsHead h2 {
  font-size: 28px;
  line-height: 1.3em;
  font-weight: bold;
  margin-bottom: 5px
}

#addonsHighlight {
  float: left;
  margin-left: 100px;
  width: 380px;
}

#addonsHighlight ul {
  margin: 30px 0px 20px 20px;
}

#addonsHighlight li {
  font-size: 18px;
  line-height: 1.3em;
  margin-bottom: 10px;
  list-style: outside url(../images/bullet_red.png);
}

#addonsHighlight li small {
  font-size: 12px;
}

#addonsHighlight li a,
#addonsHead a {
  color: #fff;
  border-bottom: 1px dotted #aaa;
}

#addonsHighlight li a:hover,
#addonsHead a:hover {
  border-color: #fff;
}

.addon {
  margin: 10px;
  clear: both;
}

.addon h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  margin-bottom: 15px;
  margin-top: 15px;
}

.addon h4 {
  margin: 10px 0px 0px 0px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.3em;
}

.addon h4.modules {
  margin: 10px 0px 0px 0px;
  font-weight: normal;
}

.addon ul {
  margin: 5px 0px 15px 0px;
}

.addon li {
  margin-left: 20px;
  list-style: disc;
  margin-bottom: 8px;
  line-height: 1.3em;
}

/*---------------------- Showcase styles ----------------------*/

#showcaseHead h2 {
  margin-bottom: 5px;
  font-size: 3rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.4;
  color: #222;
  text-decoration: none;
  text-transform: lowercase;
  width: 100%;
}

#showcaseQuote {
  float: left;
  margin-left: 100px;
  margin-top: 30px;
  width: 380px;
  max-width: 100%;
}

#showcaseQuote p.quote {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 18px;
}

#showcaseQuote p.source {
  text-align: right;
  margin-bottom: 20px;
  font-style: italic;
}

#showcaseQuote a {
  color: #6B0006
}

#showcaseQuote a:hover {
  border-bottom: 1px dotted #6B0006;
}

#showcaseLogos,
#showcaseScreens {
  margin: 0px 10px 20px;
  padding:0 10px 10px;
  text-align: center;
}

#showcaseScreens {
  opacity: 0;
  animation: fadeInShowcase 450ms ease-in 1000ms 1 forwards;
}

@keyframes fadeInShowcase {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

ul.tabnav{
      margin:0 auto 0 20px;
        max-width: 100%;
        box-sizing: border-box;
        display: -webkit-flex;
        display: flex;
    }

    .tabnav li {
      margin: 20px 5px;
      overflow: hidden;
    }
    
    .tabnav li a {
      font-size: 2.5em;
      padding: 4px 25px;
      color:#222;
      text-align:left;
      display: flex;
      outline: 0 none;
      font-weight: 700;
      height: 100%;
      flex-wrap: wrap;
      flex-direction: column;
      line-height: 1.25;
      border-radius: 10px 10px 0 0;
    }
    .tabnav li a:hover {
      text-decoration: none;
      background:#eee;
    }
    .tabnav li a span {
        display: block;
        font-style: italic;
        font-size: .8em;
        opacity: .7;
        font-weight: 300;
    }
    .tabnav li.uk-active a{
      position:relative;
    }
    .showcaseHeader h2 {
        text-align: left;
        font-size: 3em;
        font-weight: 700;
        color: #535355;
        margin: 0 0 10px;
    }
    .showcaseHeader h4 {
      text-align: left;
      font-size: 16px;
      color: #666;
      margin: 5px 0 0;
      display: block;
    }

    @media (max-width:  640px) {
      .tabnav li a {
        font-size: 1.5rem;
        padding: 4px 12px;
      }
    }


#showcaseScreens ul.uk-switcher {
  padding: 10px;
  border: thin solid #222;
  border-radius: 10px;
}
#showcaseScreens .tabnav li {
  border: thin solid transparent;
  border-bottom-color: #222;
  margin-bottom: 0;
  position: relative;
  bottom: -1px;
  border-radius: 10px 10px 0 0;
  user-select: none;
}
#showcaseScreens .tabnav li.uk-active {
  border: thin solid #222;
  border-bottom-color: #fff;
}

div#showcaseScreens div#foundation,
div#showcaseScreens div#custom {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.showcaseHeader {
  flex: none;
  width: 100%;
  max-width: 100%;
  margin: 10px auto;
}

#showcaseLogos img {
  margin: 10px;
  width: 130px;
  height: 50px;
}

#showcaseScreens div a {
  display: flex;
  width: 100%;
  flex-direction: column;
  flex-wrap: wrap;  
  transition: 200ms ease-out;
  border-radius: 0;
  font-size: 1.7em;
  color: #FFF;
  text-align: center;
  box-sizing: border-box;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0px 0px 7px 1px #555;
}
#showcaseScreens div a.fdn-air {
  text-decoration: none !important;
}
#showcaseScreens div a .uk-overlay {
  color: #fff;
    position: relative!important;
  background: #333;
}
#showcaseScreens div a span.siteTitle {
  font-weight: 700;
    font-size: 1.6rem;
 text-align: center;
  display: block;
  margin: 5px 0 10px;
}

#showcaseScreens div a span.siteInfo {
  font-size: 12px;
  font-weight: 400;
    display: none;
  margin: 10px 10px 0;
  text-align: center;
}
#showcaseScreens div a span.site-footer {
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin: 5px 0 0px;
  line-height: 1.25;
}

@media (max-width:  998px) and (min-width:  640px) {
  #showcaseScreens div a {
    font-size: 1em;
  }
  #showcaseScreens div a span.siteTitle {
    font-size: 1.4em;
  }
}

div#showcaseScreens .uk-grid > h3 {
  font-weight: 700;
  font-size: 24px;
}

#showcaseScreens div a:hover {
  background-color: #BE1E2D;
  box-shadow: 0px 0px 14px 1px #555;
}

#showcaseScreens img {
  width: 100%;
  height: auto;
  margin: 0;
  max-width: 100%;
  box-sizing: border-box;
}

#showcaseScreens span.siteInfo {
  color: #eee;
  font-size: 12px;
}

div#groupBreakout {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
    width: 100%;
}
div#groupBreakout h3 {
  flex:none;
  width: 100%;
  font-weight: 700;
  font-size: 2em;
  margin: 10px auto;
}
/*---------------------- Team styles ----------------------*/
#teamHead {
  margin: 10px 0px 20px 10px;
}

#teamHead h2 {
  font-size: 28px;
  line-height: 1.3em;
  font-weight: bold;
  margin-bottom: 5px
}

#teamHead p {
  width: 700px;
}

#teamManagement h3,
#teamDevelopers h3 {
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
  border-bottom: 1px solid #666;
  padding-bottom: 5px;
  margin: 15px 10px;
}

.teamMember {
  float: left;
  margin: 10px;
  width: 460px;
}

.teamMember img {
  float: left;
  margin: 0px 20px 20px 0px;
}

.teamMember h4 {
  font-size: 18px;
  font-weight: bold;
}

/*---------------------- Contact styles ----------------------*/
#contactHead {
  margin: 10px 0px 20px 10px;
  justify-content: flex-start;
}

#contactHead h2 {
  margin-bottom: 5px;
      font-size: 3rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.4;
  text-decoration: none;
  text-transform: lowercase;
}

#contactText {
  margin: 20px 10px;
}
@media (min-width: 980px) {
  #contactText {
    float: left;
    width: 300px;
   }
}
#contactText p {
  font-size: 20px;
  margin-bottom: 15px;
}

#contactForm {
  float: left;
  width: 620px;
  margin: 20px 10px;
  background: #fff;
}

#contactForm form {
  margin: 20px;
}

#contactForm .text {
  width: 300px;
  margin: 3px 0px 20px 0px;
  font-family: Helvetica, Arial, san-serif;
  font-size: 15px;
  padding: 5px;
  border: 1px solid #aaa;
}

#contactForm .text:focus {
  background: #fff;
}

#contactForm select {
  margin: 3px 0px;
}

#contactForm textarea {
  width: 566px;
  height: 150px;
  max-width: 100%;
  box-sizing: border-box;
  margin: 3px 0px 20px 0px;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 15px;
  padding: 5px;
  border: 1px solid #aaa;
  resize: vertical;
}

#contactForm .submit {
  cursor: pointer;
  width: 80px;
}

#reservation {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #aaa;
  background: #d8e0e2 url(../images/reservation_bkg.jpg) repeat-x;
}

#contactForm .error {
  border: 1px solid #BE1E2D;
  background: #FFD4D7;
}

#contactForm .errorText {
  color: #BE1E2D;
  font-size: 11px;
  padding-left: 5px;
}

.thanks {
  height: 300px;
  padding: 20px 0px;
}

.thanks h3 {
  padding: 0px 20px 10px 20px;
  font-size: 24px;
}

/*---------------------- Footer styles ----------------------*/
#footer {
  width: 980px;
  margin: 0px auto;
  margin-top: 40px;
  border-top: thin solid #ccc;
  max-width: 100%;
  padding: 8px;
  box-sizing: border-box;
  text-align: center;
}

#footer p {
  color: #888;
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 11px;
  padding: 10px 0px;
}

#footer a {
  color: #888;
  border-bottom: 1px dotted #888;
}

#footer a:hover {
  color: #333;
}
.blogImageLeft {
  float: left;
  margin: 20px 20px 20px 0;
}
.blogImageRight {
  float: right;
  margin: 20px 0 20px 20px;
}
.showcaseHeader h3 {
  text-align: left;
  margin: 15px 0;
  font-size: 19px;
}
.showcaseHeader h3 span {
  color: #fff;
  font-weight: 700;
  background: #0f4b5b;
  padding:8px;
}

.pwf-slider {

}

.pwf-slider .uk-overlay-primary {
  background: rgba(34,34,34,.9);
}

.pwf-slider .pwf-slider-text-block h3 {
  font-size: 2rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}
.pwf-slider-features-button {
  display: inline-flex;
  margin: 10px;
  background: #8e0c15;
  align-items: center;
  align-self: center;
  padding: 4px 15px;
  font-family: 'Montserrat';
  font-weight: 700;
  color: #fff;
  font-size:9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 2px 2px 8px 1px #333;
  transition: 188ms ease-out;
}
.pwf-slider-features-button:hover {
  transform: scale(1.02);
}

@media (max-width: 640px) {
  .pwf-slider .pwf-slider-text-block h3 {
    font-size: 1.4rem;
  }
  .pwf-slider-features-button {
    padding: 4px 10px;
  }
}