:root {
  --border: #d1d1d1;
  --black: #000;
  --light-red: #fc324a;
  --red: #e8374d;
  --white: #fff;
  --dark-grey: #222;
  --grey: #353535;
}

* {
	margin: 0;
	padding: 0;
}

html { height: 100%; }

body {
	box-sizing: border-box;
	font: 400 18px 'Source Sans 3', sans-serif;
  font-optical-sizing: auto;
	min-height: 100%;
  padding: 133px 0 304px !important;
	position: relative;
}

h1, h2 {
	font: 400 32px 'ABeeZee', sans-serif;
	margin: 1em 0;
}

h2:first-child { margin-top: 0; }

h3 {
	font: 400 24px 'ABeeZee', sans-serif;
	margin: 1.5em 0 1em 0;
	text-transform: uppercase;
}

h4 {
	font: 400 20px 'ABeeZee', sans-serif;
	margin: 1.33em 0 0.889em 0;
}

p {
	line-height: 1.5em;
	margin: 1em 0;
}

p.smaller {
  font-size: 14px;
  font-style: italic;
}

p:first-of-type { margin-top: 0; }

p:last-of-type { margin-bottom: 0; }

a { transition: all 0.25s ease; }

strong { font-weight: 600; }

img,
iframe,
video {
  max-width: calc(100vw - 40px);
  vertical-align: middle;
}

.button {
	background-color: var(--red);
	border-radius: 5px;
	color: var(--white) !important;
	display: inline-block;
	font-weight: 400;
	padding: 10px 20px;
	text-decoration: none;
	text-transform: uppercase;
}

.button:hover { background-color: var(--light-red); }

.pull-left {
	float: left;
	margin: 0 2em 1em 0;
}

.pull-right {
	float: right;
	margin: 0 0 1em 2em;
}

.border { border: 1px solid var(--border); }

.text-red { color: var(--red); }

/* ==========================================================================
   Header
   ========================================================================== */

.header-wrapper {
	background-color: var(--black);
	position: fixed;
		top: 0;
	width: 100%;
	z-index: 998;
}

.header {
	color: #fff;
	display: grid;
	font-family: 'ABeeZee', sans-serif;
  gap: 26px 20px;
	grid-template-columns: auto 1fr;
  margin: 0 auto;
  max-width: 1600px;
	padding: 30px 20px;
  place-items: center end;
}

.header .logo { grid-row: 1 / span 2; }

.header .tagline { font-size: 24px; }

#menu-main-menu {
	display: flex;
  gap: 40px;
  flex-flow: row wrap;
	list-style: none;
}

#menu-main-menu a {
	color: var(--white);
	display: block;
  font-size: 16px;
	text-decoration: none;
  text-transform: uppercase;
}

#menu-main-menu a:hover { color: var(--red); }

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

#mainMenu {
  background-color: var(--black);
  height: 100vh;
  overflow-x: hidden;
  position: fixed;
    top: 0;
    right: 0;
  transition: 1s;
  width: 0;
  z-index: 999;
}

#mainMenu.show { width: 100%; }

#mainMenu ul { list-style: none; }

.mobile-menu { margin: 30px; }

.mobile-menu a {
  color: var(--white);
  display: block;
  font-size: 18px;
  margin: 20px 0;
  text-decoration: none;
  white-space: nowrap;
}

/* ==========================================================================
    Mobile Menu Toggle
    ========================================================================== */
  
#openMenu {
  background-color: var(--black);
  display: none;
  padding: 20px 15px;
  position: fixed;
    top: 0;
    right: 0;
  transition: .5s;
  width: 41px;
  z-index: 999;
}

#openMenu.open {
  background-color: var(--black);
  color: #fff;
}

#menuTitle {
  position: relative;
  text-align: center;
  transition: .5s;
}
  
/* ==========================================================================
    Mobile Menu Icon Transition Effect
    ========================================================================== */
  
#btn {
  cursor: pointer;
  display: block;
  height: 30px;
  position: relative;
  transition: .5s;
  z-index: 200;
}

#btn .icon,
#btn .icon::before,
#btn .icon::after {
  background: var(--white);
  content: '';
  display: block;
  height: 2px;
  position: absolute;
  transition: top ease .5s .5s, transform ease .5s;
  width: 41px;
}

#btn .icon {
  top: 14px;
  left: 2px;
}

#btn .icon::before { top: -8px; }

#btn .icon::after { top: 8px; }

#btn.active .icon { background: transparent; }

#btn.active .icon::before { transform: rotate(45deg); }

#btn.active .icon::after { transform: rotate(-45deg); }

#btn.active .icon::before,
#btn.active .icon::after {
  background-color: #fff;
  top: 0;
  transition: top ease .5s, transform ease .5s .5s;
}

/* ==========================================================================
   Sub-Header
   ========================================================================== */

.sub-header-wrapper { background-color: var(--red); }

.sub-header {
	color: var(--white);
	font: 400 24px 'ABeeZee', sans-serif;
  margin: 0 auto;
  max-width: 1600px;
	padding: 20px;
	text-align: center;
}

.sub-header .credentials {
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.sub-header .promo { margin-bottom: 20px; }

.sub-header .dates {
  font-style: italic;
  font-weight: 700;
}

.sub-header a {
	color: #fff;
	text-decoration: none;
}

.sub-header a:hover { text-decoration: underline; }

/* ==========================================================================
   Banner
   ========================================================================== */

.banner {
  position: relative;
  z-index: 0;
}

.banner img { max-width: 100%; }

/* ==========================================================================
   Section 1
   ========================================================================== */

.section1-wrapper { background-color: var(--red); }

.section1 {
  color: var(--white);
  margin: 0 auto;
  max-width: 1600px;
  padding: 40px 20px;
	position: relative;
	z-index: 100;
}

.section1 h2 {
  margin: 1em 0 0;
  text-align: center;
}

.section1 .grid {
  background-color: var(--white);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin-top: -140px;
}

.section1 .grid-item { overflow: hidden; }

.section1 .grid-item:first-child {
  align-self: center;
  color: var(--black);
  padding: 30px;
}

.grid-item :first-child { margin-top: 0; }

.section1 .grid-item a { color: var(--red); }

.section1 .grid-item img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .5s ease-in-out;
  width: 100%;
}

.section1 .grid-item:hover img { transform: scale(1.25) rotate(5deg); }

/* ==========================================================================
   Section 2
   ========================================================================== */

.section2-wrapper { background: var(--dark-grey) url("../images/bg.jpg") left top repeat; }

.section2 {
  color: #fff;
  margin: 0 auto;
  max-width: 1600px;
  padding: 60px 20px;
}

.section2 .grid {
  display: grid;
  gap: 20px 40px;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.section2 .grid-item {
	background-color: var(--grey);
	padding: 30px 30px 100px 30px;
	position: relative;
}

.section2 h3 {
	align-items: center;
	border-bottom: 1px solid var(--black);
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 30px;
	padding: 20px 0 40px;
	text-align: center;
}

.section2 a { color: var(--red); }

.price {
	color: var(--red);
	font-size: 52px;
	font-weight: 700;
	line-height: 36px;
	margin-bottom: 30px;
	text-align: center;
}

.price span {
	color: #fff;
	font-size: 18px;
	font-weight: 400;
	line-height: 20px;
	margin-right: 2px;
	vertical-align: top;
}

.section2 .button-wrapper {
	position: absolute;
		right: 30px;
		bottom: 30px;
		left: 30px;
	text-align: center;
}

/* ==========================================================================
   Section 3
   ========================================================================== */

.section3-wrapper {
  background: var(--dark-grey) url("../images/bg.jpg") left top repeat;
  padding: 60px 20px;
}

.section3 {
	background-color: var(--grey);
	box-sizing: border-box;
	color: var(--white);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  margin: 0 auto;
  max-width: 1600px;
}

.section3 .contact { padding: 40px; }

.section3 a { color: var(--red); }

/* ==========================================================================
   Content
   ========================================================================== */

.content {
	color: var(--dark-grey);
  margin: 60px auto;
  max-width: 1600px;
	padding: 0 20px;
}

.content a { color: var(--red); }

.content ul,
.content ol {
	line-height: 1.5em;
	margin: 1em 0;
  overflow: hidden;
}

.content li { margin: 0.25em 0 0 1em; }

.content li:first-child { margin-top: 0; }

.content table {
	border-collapse: collapse;
	width: 100%;
}

.content td {
	border: 1px solid var(--border);
	padding: 5px 10px;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer-wrapper {
	background-color: var(--red);
	position: absolute;
		bottom: 0;
	width: 100%;
}

.logos {
  background-color: var(--black);
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
  justify-content: center;
  padding: 40px 20px;
}

.footer {
	color: var(--white);
	display: flex;
	flex-flow: row wrap;
	font: 400 16px 'ABeeZee', sans-serif;
  gap: 30px 20px;
	justify-content: space-between;
  margin: 0 auto;
  max-width: 1600px;
  padding: 40px 20px;
}

#menu-bottom-menu {
	display: flex;
  flex-flow: row wrap;
  gap: 10px 20px;
  justify-content: center;
	list-style: none;
}

.bottom-menu a {
  color: var(--white);
  display: block;
  text-decoration: none;
}

/* ==========================================================================
   Mobile
   ========================================================================== */

@media only screen  
and (max-width : 1329px) {

body { padding-bottom: 353px !important; }

.section2 .grid { gap: 20px; }

.footer {
  justify-content: center;
  text-align: center;
}

}

@media only screen  
and (max-width : 1199px) {

body { padding: 0 !important; }

.header-wrapper { position: relative; }

.header {
  grid-template-columns: auto;
  justify-items: center;
}

.sub-header { font-size: 20px; }

.sub-header .credentials { font-size: 16px; }

.section1 .grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: -80px;
}

.section1 .grid-item:first-child { grid-column: 1 / span 2; }

.footer-wrapper { position: relative; }

}

@media only screen  
and (max-width : 1023px) {

.header .tagline { font-size: 20px; }

.section2 .grid,
.section3 { grid-template-columns: auto; }

}

@media only screen  
and (max-width : 767px) {

h1, h2 { font-size: 28px; }

.pull-left,
.pull-right {
  float: none;
  margin: 1em 0;
}

.header .tagline { text-align: center; }

.main-menu { display: none; }

#openMenu { display: block; }

.banner {
  background: url("../images/banner1.jpg") left center no-repeat;
  background-size: cover;
  height: 300px;
}

.banner #wds_container1_0 { display: none; }

.section1 .grid {
  grid-template-columns: auto;
  margin-top: 0;
}

.section1 .grid-item:first-child { grid-column: auto; }

}