/* ! -------------reset */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ! -------------variables */
body {
  min-height: 100%;
  line-height: 22px;
  font-family: "Exo 2", sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100%;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  height: 100%;
  min-height: 100%;
}

.noScroll {
  overflow: hidden;
}

.module {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.menuTrigger {
  display: block;
  font-size: 32px;
}
@media screen and (min-width: 850px) {
  .menuTrigger {
    display: none;
  }
}

.mobileMenu {
  display: none;
  position: fixed;
  z-index: 1000;
  bottom: 16px;
  top: 16px;
  left: 16px;
  right: 16px;
  box-shadow: 0 0 32px black;
  background-color: #9EC7EF;
  padding: 32px 16px 16px 16px;
}
@media screen and (min-width: 850px) {
  .mobileMenu {
    display: none;
  }
}
.mobileMenu li a {
  display: block;
  text-align: center;
  text-decoration: none;
  color: #EFEFF0;
  font-size: 32px;
  padding: 16px;
}
.mobileMenu .closeMenu {
  position: absolute;
  top: 8px;
  right: 8px;
}
.mobileMenu .closeMenu i {
  color: #1A1A1A;
  font-size: 24px;
}

.nav1, .nav2 {
  background-color: #EFEFF0;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.nav1 a, .nav2 a {
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  display: block;
}
.nav1 a:first-of-type, .nav2 a:first-of-type {
  color: #0055BA;
}
.nav1 a:last-of-type, .nav2 a:last-of-type {
  color: #FF0000;
  text-align: right;
}

.nav2 {
  grid-template-columns: 1fr 150px 110px;
  justify-content: center;
  align-items: center;
}
.nav2 img {
  width: 256px;
}
.nav2 a:nth-of-type(2) {
  color: #0055BA !important;
}

.logoWrap {
  text-align: center;
}
.logoWrap img {
  width: 512px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.stars {
  padding-top: 48px;
  position: relative;
}
.stars:before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  width: 100%;
  height: 32px;
  background-image: url(../images/stars-07.png);
  background-repeat: repeat-x;
  background-size: 32px;
  background-position: center center;
}
.stars.whiteBackground:before {
  background-image: url(../images/stars-blu-07.png);
}

.starDec {
  width: 160px;
  margin-bottom: 16px;
}

.blueBackground {
  background-color: #00408C;
  color: white;
  padding-top: 48px;
}
.blueBackground h1, .blueBackground h2, .blueBackground h3, .blueBackground h4, .blueBackground h5, .blueBackground h6 {
  color: #9EC7EF;
}

.flag {
  padding-top: 96px;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 600px) {
  .flag {
    padding-top: 128px;
  }
}
@media screen and (min-width: 800px) {
  .flag {
    padding-top: 160px;
  }
}
@media screen and (min-width: 2000px) {
  .flag {
    padding-top: 224px;
  }
}
.flag:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  width: 100%;
  background-image: url(../images/flag.jpg);
  background-position-y: -100px;
  background-position-x: center;
  background-size: 600px auto;
  height: 96px;
  background-repeat: no-repeat;
  z-index: -1;
}
@media screen and (min-width: 600px) {
  .flag:before {
    background-position-y: -250px;
    background-size: 1300px auto;
    height: 160px;
  }
}
@media screen and (min-width: 1300px) {
  .flag:before {
    background-position-y: -275px;
    background-size: 1600px 400px;
    height: 160px;
  }
}
@media screen and (min-width: 1600px) {
  .flag:before {
    background-position-y: -150px;
    background-size: 2000px 300px;
  }
}
@media screen and (min-width: 2000px) {
  .flag:before {
    background-position-y: -600px;
    background-size: 2600px auto;
    padding-top: 224px;
    height: 224px;
  }
}

.grayGradient {
  background: linear-gradient(transparent, #EFEFF0);
}

.whiteBackground h1, .whiteBackground h2, .whiteBackground h3, .whiteBackground h4, .whiteBackground h5, .whiteBackground h6 {
  color: #FF0000;
}

@media screen and (min-width: 600px) {
  .twoColumn .module {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 16px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 32px;
  }
}
.twoColumn .module .column {
  padding: 16px;
}
.twoColumn .module .column img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

@media screen and (min-width: 800px) {
  .twoThirdColumn .module {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 16px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
.twoThirdColumn .module .column {
  padding: 16px;
}

@media screen and (min-width: 800px) {
  .accordian {
    margin-bottom: 32px;
  }
}
.accordian li {
  background-color: rgba(0, 85, 186, 0.1);
  color: #0055BA;
  padding: 16px;
  margin-bottom: 2px;
  position: relative;
  transition: all ease 0.3s;
}
.accordian li:after {
  position: absolute;
  width: 16px;
  height: 16px;
  right: 16px;
  top: 22px;
  content: "";
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid #0055BA;
}
.accordian li:hover {
  background-color: #0055ba;
  color: white;
}
.accordian li:hover:after {
  border-left: 8px solid #9EC7EF;
}
.accordian li .title {
  font-size: 24px;
}
.accordian li .content {
  height: 0px;
  overflow: hidden;
  transition: all ease 0.3s;
  opacity: 0;
}
.accordian li .content.open {
  margin-top: 16px;
  opacity: 1;
  height: auto;
}

input, select, text area {
  background-color: rgba(0, 85, 186, 0.1);
  color: #0055BA;
  padding: 16px;
  margin-bottom: 2px;
  position: relative;
  transition: all ease 0.3s;
  display: block;
  width: 100%;
  font-size: 24px;
  line-height: 33px;
  margin-bottom: 8px;
  border-radius: 5px;
}
input:hover, select:hover, text area:hover {
  background-color: #0055ba;
  color: white;
}

input[type=file] {
  line-height: 0px;
}

select {
  height: 60px;
  border-radius: 0px !important;
  border: 0px solid transparent;
}
select:focus {
  outline: none;
}

.center {
  text-align: center;
}

h1, .h1Style {
  font-size: 48px;
  line-height: 44px;
  margin-bottom: 16px;
}

h2, .h2Style {
  font-size: 32px;
  line-height: 44px;
  margin-bottom: 16px;
  font-weight: 700;
}

blockquote {
  background-color: #00408C;
  font-weight: 700;
  color: #9EC7EF;
  padding: 32px 32px 32px 48px;
  font-size: 20px;
  line-height: 32px;
  margin-top: 16px;
  margin-bottom: 16px;
  position: relative;
}
blockquote:before {
  content: "";
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 20px;
  color: #fff;
  font-size: 64px;
  background-image: url(../images/quotes-08.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 800px) {
  blockquote {
    margin-top: 64px;
    margin-bottom: 32px;
  }
}

p, .pStyle {
  margin-bottom: 16px;
}

.btn {
  background-color: #D02122;
  border-radius: 15px;
  padding: 16px 48px;
  font-size: 24px;
  line-height: 24px;
  font-weight: 800;
  display: inline-block;
  margin-top: 8px;
  color: #fff;
  text-transform: uppercase;
  border-bottom: 8px solid #9C191A;
  transition: all ease 0.3s;
  cursor: pointer;
  letter-spacing: 2px;
  text-decoration: none;
}
.btn:hover {
  background-color: #9C191A;
  text-shadow: 0px 0px 8px #D02122;
}

.interiorPage section:first-of-type {
  margin-top: 48px;
}
.interiorPage .column h2 {
  color: #0055BA;
  border-bottom: 4px solid #EFEFF0;
  padding-bottom: 8px;
}
.interiorPage .column h2 .price {
  font-size: 24px;
  color: #FF0000;
  float: right;
}

.checkoutWrap .uploadButtonWrap {
  display: none;
}
.checkoutWrap .uploadButtonWrap.showButton {
  display: block;
}

.uploadControls {
  opacity: 0.2;
}
.uploadControls.showUploadButton {
  opacity: 1;
}

.uploadButton {
  background-color: #0055BA;
  color: white;
  padding: 8px 16px;
  display: inline-block;
  margin-left: 16px;
}

textarea {
  height: 100px;
}

input[type=image] {
  background-color: white;
  padding-left: 0px;
  padding-right: 0px;
  border: solid transparent 0px;
}
input[type=image]:hover {
  background-color: white;
}

input[type=submit] {
  border-top: solid transparent 0px;
  border-left: solid transparent 0px;
  border-right: solid transparent 0px;
}
.showButtons {
  display: block;
}

.hideButtons {
  display: none;
}
