/*---------------------- 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;
}

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: #E7EDEE url(../images/bkg.jpg) repeat-x;
  font-family:"Open Sans", Helvetica, Arial, sans-serif;
  font-size: 12px;
  color: #333;
}

/*---------------------- 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: 980px;
  height: 140px;
  margin: 0px auto;
  max-width: 100%;
}

#logo {
  float: left;
  width: 200px;
  height: 140px;
  max-width: 48%;
  box-sizing: border-box;
  padding: 5px;
}

#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);
}
#logo a:hover {
  transform: scale(1.04);
}

#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 {
  float: right;
  position: relative;
  top: 26px;
  box-sizing: border-box;
  padding: 12px;
  border: thin solid #0d4756;
  border-radius: 3px;
  background: #e4e9ec;
  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;
}

/*---------------------- topNav styles ----------------------*/
#topNav {
  text-align: left;
  width: 980px;
  height: 140px;
  margin: 0px auto;
  height: 40px;
  max-width: 100%;
}

div#topNav ul {
  padding: 0;
  margin: 0;
  display: -webkit-flex;
  display: flex;
}

div#topNav ul li {
  flex: 1;
  text-align: center;
}


#topNav li a {
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  line-height: 32px;
  display: block;
  height: 30px;
  background: #0a3841;
  background: -webkit-linear-gradient(top,  #125668 0%,#0a3841 100%);
  background: linear-gradient(to bottom,  #125668 0%,#0a3841 100%);
  position: relative;
  float: none;
}
#topNav li a:hover {
  text-decoration: none;
  background: #082d35;
  background: -webkit-linear-gradient(top,  #0b3a46 0%,#082d35 100%);
   background: linear-gradient(to bottom,  #0b3a46 0%,#0e3b4a 100%);
}

#topNav li a.active {
  background: #75030b;
  background: -webkit-linear-gradient(top,  #b71b29 0%,#75030b 100%);
  background: linear-gradient(to bottom, #b71b29 0%,#75030b 100%);
  cursor: default;
}

#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;
}

/*---------------------- Content styles ----------------------*/
#topContent {
  text-align: left;
  width: 980px;
  margin: 0px auto;
  color: #fff;
  max-width: 100%;
}

#botContentBkg {
  background: #E7EDEE url(../images/bkg_content.jpg) repeat-x;
}

#botContent {
  text-align: left;
  width: 980px;
  margin: 0px auto;
  padding-top: 10px;
  max-width: 100%;
}

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

#homeHead h2 {
  font-size: 26px;
  line-height: 1.3em;
  margin-bottom: 10px
}

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

#homeHead a {
  color: #6B0006
}

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

#homeGallery {
  float: left;
  width: 560px;
  height: 350px;
  margin-left: 10px;
  background: url(../images/slideshow_bkg.jpg) no-repeat;
  max-width: calc(100% - 10px);
  background-size: contain;
}

#homeGallery a {
  cursor: pointer;
}

#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;
}

#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 {
  float: left;
  width: 380px;
  margin: 10px 0px 20px 10px;

}

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

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

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

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

.featuresList {
  max-width: 300px;
  width: calc(33% - 20px);
  margin: 10px;
}

.featuresList 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;
}

.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;
}

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

.featuresList .featureButton {
  background: url("/publishwithfoundation/images/plus.gif") no-repeat 280px center #ABC;
  border-bottom: 1px solid #CCC;
  padding: 5px 20px 5px 5px;
  color: #333;
  margin: 0;
  cursor: pointer;
  text-overflow: ellipsis;
  overflow: hidden;
}

.featuresList .featureButton:hover {
  color: #000;
}

.featuresList .featureButton.vis {
  background: url("/publishwithfoundation/images/minus.gif") no-repeat 280px center #789;
  color: #FFF;
}

.featuresList .featureToggle {
  background: #CCCCD1;
  margin: 0;
  padding-top: 10px;
  padding-bottom: 10px;
}

.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 {
  float: left;
  width: 380px;
  margin: 10px 0px 20px 10px;
  max-width: 100%;
}

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

#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: 20px 10px;
  padding: 10px;
  background: #f3f6f7;
  text-align: center;
}

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 a {
width: calc(33% - 26px);
  margin: 13px;
  box-shadow: 0px 0px 16px 1px #ccc;
  padding: 5px;
  transition: 200ms ease-out;
  background-color: #789;
  border-radius: 0;
  font-size: 1.7em;
  color: #FFF;
  text-align: center;
  box-sizing: border-box;
}
#showcaseScreens a.fdn-air {
  background-color: #0F4A5A;
}

@media (max-width: 640px) {
  #showcaseScreens a {
    width: calc(50% - 10px);
  }
}
#showcaseScreens a span.siteInfo {
  font-size: 12px;
}

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

#showcaseScreens img {
  width: 275px;
  height: auto;
  margin: 0;
  border: 2px solid #456;
  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;
}

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

#contactText {
  float: left;
  width: 300px;
  margin: 20px 10px;
}

#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;
  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;
}