/**
 * @author Thomas S. Butler
 * @abstract This is the main CSS (style sheet) for the application.
 * @copyright 2020 Grey Street Systems, LLC.
 */

/* Import app CSS */
@import url("app.css");

/* Import swiper CSS */
@import url("vendor/swiper.css");

/* Import legal CSS */
@import url("legal.css");

/* CSS Overrides */

h1 {
  font-family: 'Raleway-bold', sans-serif;
  font-size: 60px;
  margin-bottom: 8px;
}

h2 {
  font-family: 'Raleway-bold', sans-serif;
  font-size: 48px;
  margin-bottom: 8px;
}

p {
  font-family: 'RobotoLight', sans-serif;
  font-size: 1.4em;
}

p.larger {
  font-size: 1.6em;
}

body.loading .navigation,
body.loading .pages {
  visibility: hidden;
}

.pages {
  position: relative;
  background: transparent;
  overflow-y: auto;
  overflow-x: hidden;
  min-height: 0%;
}

.pages,
.header {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -ms-overflow-scrolling: touch;
  -o-overflow-scrolling: touch;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: transform 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -moz-transition: transform 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -ms-transition: transform 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -o-transition: transform 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition: transform 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
}

.page.fill {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.page.active,
.page.show,
.section.active,
.section.show {
  display: block;
}

.page-content.fullscreen,
.page-content.fullscreen .content {
  width: 100vw !important;
  height: 100vh !important;
  padding: 0px !important;
  margin: 0 auto !important;
  padding-bottom: 0px !important;
}

.pages .sections {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 auto;
  padding: 0px;
  text-align: center;
}

.pages .section {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  padding-top: 120px;
  padding-bottom: 120px;
  background: #F0F0F0;
  color: #111111;
  text-align: center;
}

.pages .section-inner {
  position: relative;
  width: 90%;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
  text-align: center;
}

.pages .section.full,
.pages .section.footer {
  width: 100%;
  max-width: 100%;
  padding: 0px;
}

.pages .section h1 {
  font-family: 'Raleway-thin', sans-serif;
  font-size: 60px;
  margin-bottom: 48px;
}

.pages .section h2 {
  font-family: 'Raleway-thin', sans-serif;
  font-size: 28px;
  margin-bottom: 8px;
}

.pages .section p {
  font-family: 'OpenSans', sans-serif;
  font-size: 1.25em;
  margin-bottom: 48px;
}

.pages .section.green {
  background: #2C8641;
  color: #FFFFFF;
}

.pages .section.grey {
  background: #888888;
  color: #FFFFFF;
}

.pages .section.dark {
  background: #555555;
  color: #F0F0F0;
}

.pages .section.blue {
  background: #134E76;
  color: #F0F0F0;
}

.pages .section.green a,
.pages .section.grey a,
.pages .section.dark a,
.pages .section.blue a {
  color: #FFFFFF;
  opacity: 0.75;
}

.pages .section.green a:hover,
.pages .section.grey a:hover,
.pages .section.dark a:hover,
.pages .section.blue a:hover,
.pages .section.green a:active,
.pages .section.grey a:active,
.pages .section.dark a:active,
.pages .section.blue a:active,
.pages .section.green a:focus,
.pages .section.grey a:focus,
.pages .section.dark a:focus,
.pages .section.blue a:focus {
  color: #FFFFFF;
  text-decoration: underline;
  opacity: 1;
}

/* Modal Overrides */

.modal-content,
.minimal .modal-inner {
  color: #333333;
  background: #111111;
}

.modal .tabs .nav-tabs {
  border-bottom: none !important;
  border-bottom-color: transparent !important;
}

.modal .nav-tabs .tab a {
  color: #CCCCCC;
}

.modal .nav-tabs .tab.active a {
  border: none;
  border-bottom: 2px solid #134E76;
  color: #EEEEEE;
}

.modal .nav-tabs .tab:hover,
.modal .nav-tabs .tab:hover a,
.modal .nav-tabs .tab.active:hover,
.modal .nav-tabs .tab.active:hover a {
  background: transparent !important;
  background-color: transparent !important;
  color: #EEEEEE;
}

.modal .nav-tabs .tab.active:hover {
  color: #EEEEEE !important;
}

a.close-modal,
a.close-modal i {
  color: #FFFFFF !important;
}

.modal.dark .content-inner a {
  color: #134E76 !important;
}

/* Section Overrides */

.section.core h1 {
  margin-bottom: 80px;
}

.core-text .text-inner {
  padding-left: 12px;
  padding-right: 12px;
}

.core-text .text-inner p {
  text-align: left;
}

.section.focus {
  min-height: 640px;
  padding-bottom: 40px;
}

.focus-box {
  cursor: pointer;
  margin-bottom: 28px;
}

.focus-box p {
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  opacity: 1;
}

.icon-container {
  padding: 28px;
  text-align: center;
  padding-bottom: 0px;
  margin: 0 auto;
}

.icon-container img {
  width: 100%;
  max-width: 155px;
  margin: 0 auto;
  -webkit-transition: all 500ms ease-in-out;
  -moz-transition: all 500ms ease-in-out;
  -ms-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  opacity: 0.65;
}

.focus-box:hover p {
  opacity: 0.45;
}

.focus-box:hover .icon-container img {
  max-width: 185px;
  opacity: 1;
}

/* Featured Items */

.feature-box {
  cursor: pointer;
  position: relative;
  padding: 0 0 0 94px;
}

.feature-box p {
  text-align: left;
  font-size: 1.1em !important;
  line-height: 1.9 !important;
  font-weight: 400 !important;
  text-transform: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.feature-box h2 {
  text-align: left;
  font-family: 'Raleway-bold', sans-serif !important;
  line-height: 1.2 !important;
  font-weight: bold !important;
  font-size: 18px !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  margin: 0 !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.feature-icon > i {
  display: block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  background-color: #134E76;
  background-image: url('../img/svg-mask.svg');
  background-size: 100% 100%;
  font-size: 28px;
  color: #FFFFFF;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -webkit-transition: font-size 300ms ease-in-out;
  -moz-transition: font-size 300ms ease-in-out;
  -ms-transition: font-size 300ms ease-in-out;
  -o-transition: font-size 300ms ease-in-out;
  transition: font-size 300ms ease-in-out;
}

.feature-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  border: 2px solid #134E76;
  padding: 3px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.feature-icon,
.feature-icon:before {
  -webkit-transform: translate3d(0,0,0);
  -moz-transform: translate3d(0,0,0);
  -ms-transform: translate3d(0,0,0);
  -o-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  -webkit-transition: opacity 300ms ease-in-out;
  -moz-transition: opacity 300ms ease-in-out;
  -ms-transition: opacity 300ms ease-in-out;
  -o-transition: opacity 300ms ease-in-out;
  transition: opacity 300ms ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000;
  -moz-perspective: 1000;
  -ms-perspective: 1000;
  -o-perspective: 1000;
  perspective: 1000;
}

.feature-icon:before {
  position: absolute;
  bottom: -33px;
  left: 5%;
  content: "";
  height: 10px;
  width: 90%;
  background: -webkit-radial-gradient(center,ellipse,rgba(0,0,0,.35) 0,transparent 80%);
  background: -o-radial-gradient(center,ellipse,rgba(0,0,0,.35) 0,transparent 80%);
  background: radial-gradient(ellipse at center,rgba(0,0,0,.35) 0,transparent 80%);
  opacity: 0;
}

.feature-box:hover
.feature-icon:before {
  opacity: 1;
}

.feature-box:hover .feature-icon > i {
  font-size: 34px;
}

/* Form Overrides */

.form {
  max-width: 100%;
}

.input-control input {
  padding-bottom: 0px;
  height: 55px;
}

.input-control textarea {
  height: 150px;
}

a.btn:hover,
a.btn:focus,
a.btn:active {
  text-decoration: none !important;
}

/* Loader Overrides */

.site-loader .site-loader-spinner {
  width: 80%;
  height: auto;
  max-width: 200px;
  max-height: 200px;
  margin-top: -40px !important;
  margin-left: -100px !important;
  top: 35%;
}

.site-loader img {
  width: 100%;
  height: auto;
  max-width: 200px;
}

.site-loader-spinner img.svg {
  width: auto !important;
  height: 50px !important;
  margin: 0 !important;
  opacity: 0.45;
  position: absolute;
  left: -1px;
  top: 75px;
}

.ajax-loader {
  display: none;
  text-align: center;
  margin: 0 auto;
  height: auto;
  width: 32px;
  height: 32px;
  position: fixed;
  padding: 18px;
  color: #EEEEEE;
  top: 50%;
  left: 50%;
  line-height: 0px !important;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border: 1px solid rgba(0,0,0,0.95);
  border-radius: 4px;
  background: rgba(0,0,0,0.90);
  box-shadow: 0 4px 4px -1px rgba(0,0,0,.6);
  -webkit-box-shadow: 0 4px 4px -1px rgba(0,0,0,.6);
  -moz-box-shadow: 0 4px 4px -1px rgba(0,0,0,.6);
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  z-index: 12000;
}

.ajax-loader .loadtext {
  text-align: center;
  margin: 0 auto;
  height: auto;
  width: 100%;
  position: relative;
  padding: 0px;
  padding-top: 55px;
  margin-top: -5px;
  color: #CCCCCC;
  background: url('../../img/loader.gif') 50% 10px transparent no-repeat;
  font-weight: 200;
  font-size: 13px;
  text-transform: uppercase;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

body.loaddata .ajax-loader {
  display: block;
}

body.loaddata .overlay {
  background-color: rgba(255, 255, 255, 0.55);
  visibility: visible;
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

@media screen and (max-width: 768px) {
  .site-loader .site-loader-spinner {
    margin-top: -40px !important;
    margin-left: -100px !important;
  }
}

/* Website Header */

.header {
  padding: 0;
}

.header.topheader {
  background: transparent;
  background-color: transparent;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  padding: 0;
  padding-top: 60px;
  padding-right: 28px;
}

.header .logo {
  position: absolute;
  max-width: 325px;
  left: 80px;
  top: 65px;
}

.header.topheader.dark {
  background: #111111;
  background-image: linear-gradient(141deg, #111111 0%, #0084b2 51%, #333333 75%);
  background-image: linear-gradient(141deg, #111111 0%, #222222 51%, #0084b2 75%);
  background-image: linear-gradient(141deg, #111111 0%, #222222 51%, #333333 75%);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.33);
  -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.33);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.33);
  padding: 0 !important;
  opacity: 1;
}

.header.topheader.dark .logo {
  position: absolute;
  top: 0px;
}

.logo-container {
  width: auto;
}

/* Header Navigation */

.header ul.navbar {
  margin-top: 68px;
  list-style: none;
  position: absolute;
  width: auto;
}

.header ul.navbar.right {
  right: 48px;
}

.header ul.navbar li {
  font-family: 'RalewayLight', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  width: auto;
  margin-right: 18px;
}

.header ul.navbar a {
  text-transform: uppercase;
  margin-bottom: 18px;
  color: #FFFFFF;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: opacity 200ms ease-in-out;
  -moz-transition: opacity 200ms ease-in-out;
  -ms-transition: opacity 200ms ease-in-out;
  -o-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}

.header ul.navbar a:hover {
  opacity: 0.50;
}

.header.topheader.dark ul.navbar {
  margin-top: 28px;
}

body.fixed .header .logo {
  max-width: 225px;
  left: 32px;
  top: 0px;
}

body.fixed .header.topheader {
  background: #111111;
  background-image: linear-gradient(141deg, #111111 0%, #0084b2 51%, #333333 75%);
  background-image: linear-gradient(141deg, #111111 0%, #222222 51%, #0084b2 75%);
  background-image: linear-gradient(141deg, #111111 0%, #222222 51%, #333333 75%);
  -webkit-box-shadow: 0 1px 3px 0 rgba(0,0,0,.33);
  -moz-box-shadow: 0 1px 3px 0 rgba(0,0,0,.33);
  box-shadow: 0 1px 3px 0 rgba(0,0,0,.33);
  padding: 0 !important;
  opacity: 1;
}

body.fixed .header ul.navbar {
  margin-top: 28px;
}

body.fixed .header ul.navbar li {
  font-size: 20px;
  margin-right: 18px;
}

body.fixed .header.topheader.dark ul.navbar {
  margin-top: 20px;
}

/* Link Items */

.link-head {
  color: #FFFFFF;
  font-size: 28px;
  font-family: 'Raleway-bold', sans-serif;
  text-transform: uppercase;
}

.link-item {
  font-family: 'OpenSans-light', sans-serif;
  font-size: 16px;
  margin-bottom: 18px;
  cursor: pointer;
}

.link-item > a {
  margin: 0;
  padding: 0;
  -webkit-transition: all 200ms ease-in-out;
  -moz-transition: all 200ms ease-in-out;
  -ms-transition: all 200ms ease-in-out;
  -o-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
  position: relative;
  color: #EEEEEE;
  text-decoration: none;
  cursor: pointer;
}

.link-item > a:after {
  content: "";
  position: absolute;
  bottom: -4px;
  width: 0px;
  height: 1px;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
  opacity: 0;
}

.link-item > a:after {
  left: 0;
  background-color: #FFFFFF;
  opacity: 0.50;
}

.link-item > a:hover {
  color: #FFFFFF;
  opacity: 1;
}

.link-item > a:hover:before,
.link-item > a:hover:after {
  width: 100%;
  opacity: 0.50;
}

.top-links {
  position: relative;
  width: 100%;
  z-index: 350;
}

.top-links .link-list {
  float: right;
  padding: 12px;
  padding-top: 42px;
  padding-right: 95px;
}

.top-links .link-item {
  display: inline-block;
  font-family: 'RalewayLight', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 18px;
  cursor: pointer;
  margin-right: 12px;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

.top-links .link-item > a {
  position: relative;
  text-shadow: 2px 2px 5px rgba(88, 88, 88, 1);
  color: #CCCCCC;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  transition: none;
}

.top-links .link-item > a {
  -webkit-transition: color 400ms ease-in-out;
  -moz-transition: color 400ms ease-in-out;
  -ms-transition: color 400ms ease-in-out;
  -o-transition: color 400ms ease-in-out;
  transition: color 400ms ease-in-out;
}

.top-links .link-item > a:after {
  left: auto;
  background-color: transparent;
  opacity: 0.80;
}

.top-links .link-item > a:hover {
  color: #FFFFFF;
}

body.fixed .top-links .link-item {
  font-size: 15px;
  text-shadow: none !important;
  margin-bottom: 18px;
  margin-right: 12px;
}

body.fixed .top-links .link-list {
  float: right;
  padding: 12px;
  padding-top: 28px;
  padding-right: 48px;
}

body.fixed .top-links .link-item > a {
  color: #AAAAAA;
}

body.fixed .top-links .link-item > a:hover {
  color: #FFFFFF;
}

/* Mobile links Menu */

body.menu {
  overflow: hidden !important;
  overflow-x: hidden !important;
  overflow-y: hidden !important;
}

.top-links .link-list.mobile {
  display: none;
  text-align: center;
  padding-right: 0px;
}

body.fixed .top-links .link-list.mobile {
  padding-right: 0px;
}

.top-links .link-list.mobile .link-item {
  display: block;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  font-size: 28px;
  margin-bottom: 0px;
  cursor: pointer;
  margin-right: 0px;
  padding-right: 0px;
}

.top-links .link-list.mobile .menu-backdrop,
.top-links .link-list.mobile .menu-control {
  position: fixed;
  width: 50px;
  height: 50px;
  font-size: 30px;
  text-align: center;
  border-radius: 100%;
  right: 25px;
  top: 25px;
}

.top-links .link-list.mobile .menu-backdrop {
  background: transparent;
  pointer-events: none;
  right: 50px;
  top: 50px;
  -webkit-transform: translate3d(50%, -50%, 0);
  -moz-transform: translate3d(50%, -50%, 0);
  -ms-transform: translate3d(50%, -50%, 0);
  -o-transform: translate3d(50%, -50%, 0);
  transform: translate3d(50%, -50%, 0);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
  -webkit-transition: transform 400ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -moz-transition: transform 400ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -ms-transition: transform 400ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -o-transition: transform 400ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition: transform 400ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
}

.top-links .link-list.mobile.open .menu-backdrop {
  background: #333333;
  width: 300vw;
  height: 300vh;
  -webkit-transform: translate3d(50%, -50%, 0);
  -moz-transform: translate3d(50%, -50%, 0);
  -ms-transform: translate3d(50%, -50%, 0);
  -o-transform: translate3d(50%, -50%, 0);
  transform: translate3d(50%, -50%, 0);
}

.top-links .link-list.mobile.open .menu-watermark {
  position: absolute;
  width: 200px;
  height: 200px;
  left: 50%;
  margin-top: 140px;
  margin-left: -180px;
  background-image: url('../img/logo-opaque.png');
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.25;
}

.top-links .link-list.mobile .menu-control {
  color: #888888;
  padding-top: 4px;
  cursor: pointer;
  margin-top: 12px;
  margin-right: 8px;
  -webkit-user-select: none;
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  -o-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0ms;
  -moz-transition: transform 0ms;
  -ms-transition: transform 0ms;
  -o-transition: transform 0ms;
  transition: transform 0ms;
}

.top-links .link-list.mobile.open .menu-control {
  -webkit-transform: rotate(-180deg) translateY(12px);
  -moz-transform: rotate(-180deg) translateY(12px);
  -ms-transform: rotate(-180deg) translateY(12px);
  -o-transform: rotate(-180deg) translateY(12px);
  transform: rotate(-180deg) translateY(12px);
  -webkit-transition: transform 400ms;
  -moz-transition: transform 400ms;
  -ms-transition: transform 400ms;
  -o-transition: transform 400ms;
  transition: transform 400ms;
}

.top-links .link-list.mobile .menu-items {
  position: relative;
  font-weight: bold;
  font-size: 40px;
  letter-spacing: normal;
  color: #AAAAAA;
  width: 100vw;
  text-align: center;
  opacity: 0;
  margin-top: 0px;
  margin-right: 0px;
  padding-right: 0px;
  pointer-events: none;
  visibility: hidden;
  max-height: 0px;
}

.top-links .link-list.mobile.open .menu-items {
  visibility: visible;
  max-height: auto;
  margin-top: 100px;
}

.top-links .link-list.mobile .link-item > a {
  width: 100%;
  margin-right: 0px;
  padding-right: 0px;
  color: #AAAAAA !important;
}

.top-links .link-list.mobile .link-item > a:hover {
  color: #FFFFFF !important;
}

.top-links .link-list.mobile .icon-menu {
  display: block;
}

.top-links .link-list.mobile .icon-cancelme {
  display: none;
}

.top-links .link-list.mobile.open .icon-menu {
  display: none;
}

.top-links .link-list.mobile.open .icon-cancelme {
  display: block;
}

.top-links .link-list.mobile .menu-items div {
  transition: 1s;
  opacity: 0;
  margin-top: 0px;
  margin-right: 0px;
  padding-right: 0px;
  width: 100%;
}

.top-links .link-list.mobile.open .menu-items {
  pointer-events: auto;
  opacity: 1;
}

.top-links .link-list.mobile.open .menu-items div {
  opacity: 1;
  margin-top: 28px;
}

/* Animation Elements */

.anim {
  visibility: hidden;
}

.anim.animate {
  visibility: visible;
}

/* Angled Elements */

.angle-cover-one,
.angle-cover-two {
  display: block;
  position: absolute;
  background: #000000;
  visibility: visible;
  opacity: 0.35;
  width: 80%;
  height: 280%;
  top: -95%;
  transform: rotate(-30deg);
  max-width: 1300px;
  right: -200px;
  text-align: left;
  -webkit-transition-delay: 1400ms;
  -moz-transition-delay: 1400ms;
  -ms-transition-delay: 1400ms;
  -o-transition-delay: 1400ms;
  transition-delay: 1400ms;
  -webkit-transition: max-width 1100ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -moz-transition: max-width 1100ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -ms-transition: max-width 1100ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -o-transition: max-width 1100ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition: max-width 1100ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  z-index: 3;
}

.angle-cover-two {
  right: -125px;
}

/* Button Overrides */

.btn-container .btn {
  display: inline-block;
}

.btn.ghost {
  padding: 6px 18px;
  color: #888888;
  background: transparent;
  background-color: transparent;
  border: 1px solid rgba(136,136,136,0.75);
  text-decoration: none;
  opacity: 0.65;
}

.btn.ghost:hover,
.btn.ghost:focus,
.btn.ghost:active {
  padding: 6px 18px;
  color: #FFFFFF;
  border: 1px solid rgba(136,136,136,1);
  background: rgba(136,136,136,1);
  text-decoration: none;
  opacity: 1;
}

/* Home Screen Slides */

.swiper-container {
  width: 100%;
  height: 100%;
  background: #eee;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #eee;
  background-repeat: no-repeat;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-container .cover {
  position: absolute;
  background: url('../img/darkstripe.png');
  overflow: hidden;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  min-width: 100vw;
  visibility: visible;
  opacity: 0.35;
  z-index: 100;
  pointer-events: none;
  touch-action: none;
}

.swiper-slide .slide-inner {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0px;
  left: 0px;
}

.swiper-slide .angle-cover-one,
.swiper-slide .angle-cover-two {
  max-width: 0px;
  z-index: 999;
}

.swiper-slide .angle-cover-two {
  z-index: 995;
}

.swiper-slide.swiper-slide-active .angle-cover-one,
.swiper-slide.swiper-slide-active .angle-cover-two {
  max-width: 1300px;
}

.swiper-slide.swiper-slide-next .angle-cover-one,
.swiper-slide.swiper-slide-prev .angle-cover-one,
.swiper-slide.swiper-slide-next .angle-cover-two,
.swiper-slide.swiper-slide-prev .angle-cover-two {
  -webkit-transition-delay: 500ms;
  -moz-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  transition-delay: 500ms;
  -webkit-transition: top 1100ms ease-in-out;
  -moz-transition: top 1100ms ease-in-out;
  -ms-transition: top 1100ms ease-in-out;
  -o-transition: top 1100ms ease-in-out);
  transition: top 1100ms ease-in-out;
  max-width: 0px;
  top: 0;
}

.swiper-slide .text-block {
  display: block;
  position: absolute;
  background: transparent;
  visibility: hidden;
  opacity: 0;
  width: 100%;
  max-width: 525px;
  right: 225px;
  bottom: -200px;
  text-align: left;
  -webkit-transition: opacity 1900ms ease-in-out, bottom 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -moz-transition: opacity 1900ms ease-in-out, bottom 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -ms-transition: opacity 1900ms ease-in-out, bottom 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -o-transition: opacity 1900ms ease-in-out, bottom 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition: opacity 1900ms ease-in-out, bottom 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  z-index: 9999;
}

.swiper-slide .text-item {
  padding-top: 18px;
  padding-right: 28px;
}

.swiper-slide p {
  font-family: 'RobotoLight', sans-serif;
  font-size: 1.4em;
  color: #FFFFFF;
  text-align: left;
  text-shadow: 2px 2px 5px rgba(88, 88, 88, 1);
  padding: 0;
  margin: 0;
  margin-top: 18px;
  margin-bottom: 24px;
}

.swiper-slide h1 {
  font-family: 'Raleway-bold', sans-serif;
  font-size: 48px;
  margin-bottom: 8px;
  color: #FFFFFF;
  text-align: left;
  text-shadow: 2px 2px 5px rgba(88, 88, 88, 1);
  padding: 0;
  margin: 0;
}

.swiper-slide img {
  width: 100% !important;
}

.swiper-slide .text-block .color {
  color: #40c25e;
  cursor: pointer;
  opacity: 0.75;
}

.swiper-slide .text-block .color:hover,
.swiper-slide .text-block .color:active,
.swiper-slide .text-block .color:focus {
  text-decoration: underline;
  opacity: 1;
}

.swiper-slide .text-block .color.blue {
  color: #13C2FF;
}

.swiper-slide .text-block p,
.swiper-slide .text-block h1,
.swiper-slide .text-block span {
  opacity: 1;
  -webkit-transition: opacity 800ms ease-in-out;
  -moz-transition: opacity 800ms ease-in-out;
  -ms-transition: opacity 800ms ease-in-out;
  -o-transition: opacity 800ms ease-in-out;
  transition: opacity 800ms ease-in-out;
}

.swiper-slide .text-block.show {
  bottom: 20%;
  visibility: visible;
  opacity: 1;
}

.swiper-slide.depart .text-block.show {
  opacity: 0;
}

.swiper-slide.depart .angle-cover-one,
.swiper-slide.depart .angle-cover-two {
  -webkit-transition-delay: 400ms;
  -moz-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  transition-delay: 400ms;
  -webkit-transition: max-width 600ms ease-in-out;
  -moz-transition: max-width 600ms ease-in-out;
  -ms-transition: max-width 600ms ease-in-out;
  -o-transition: max-width 600ms ease-in-out;
  transition: max-width 600ms ease-in-out;
  max-width: 0px;
}

.swiper-slide.depart .text-block p,
.swiper-slide.depart .text-block h1,
.swiper-slide.depart .text-block span {
  opacity: 0;
  -webkit-transition: opacity 800ms ease-in-out;
  -moz-transition: opacity 800ms ease-in-out;
  -ms-transition: opacity 800ms ease-in-out;
  -o-transition: opacity 800ms ease-in-out;
  transition: opacity 800ms ease-in-out;
}

/* Accept Cookie Notice */

.cookie-notice {
  position: fixed;
  top: -100%;
  height: 125px;
  width: 100%;
  background: #0084B2;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-overflow-scrolling: touch;
  -moz-overflow-scrolling: touch;
  -ms-overflow-scrolling: touch;
  -o-overflow-scrolling: touch;
  -webkit-transition: top 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -moz-transition: top 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -ms-transition: top 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  -o-transition: top 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  transition: top 700ms cubic-bezier(0.91, 0.01, 0.6, 0.99);
  z-index: 9910;
}

.cookie-notice .cookie-notice-container {
  position: relative;
  height: 100%;
  width: 100%;
  padding: 28px;
  padding-bottom: 40px;
  overflow: hidden;
}

.cookie-notice .content,
.cookie-notice .content {
  position: relative;
  height: 100%;
  width: 100%;
}

.cookie-notice .cookie-notice-text {
  font-family: 'OpenSans', sans-serif;
  font-size: 1em;
  color: #FFFFFF;
  position: relative;
  text-align: left;
  margin: 0 auto;
  margin-right: 128px;
  padding-top: 8px;
}

.cookie-notice a {
  color: #FFFFFF;
  opacity: 0.75;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: opacity 400ms ease-in-out;
  -moz-transition: opacity 400ms ease-in-out;
  -ms-transition: opacity 400ms ease-in-out;
  -o-transition: opacity 400ms ease-in-out;
  transition: opacity 400ms ease-in-out;
}

.cookie-notice a:hover {
  opacity: 1;
  text-decoration: underline;
}

.cookie-notice .cookie-notice-close {
  position: absolute;
  width: 100px;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  right: 65px;
  top: 36px;
  z-index: 10;
  pointer-events: all;
  touch-action: all;
}

.cookie-notice .cookie-notice-close i {
  color: #FFFFFF;
  opacity: 0.45;
  font-size: 2.5em;
  text-align: center;
  margin: 0 auto;
  cursor: pointer;
  -webkit-transition: opacity 400ms ease-in-out;
  -moz-transition: opacity 400ms ease-in-out;
  -ms-transition: opacity 400ms ease-in-out;
  -o-transition: opacity 400ms ease-in-out;
  transition: opacity 400ms ease-in-out;
  pointer-events: none;
  touch-action: none;
}

.cookie-notice .cookie-notice-close:hover i {
  opacity: 1;
}

body.cookie-consent .pages,
body.cookie-consent .header {
  -webkit-transform: translateY(125px);
  -moz-transform: translateY(125px);
  -ms-transform: translateY(125px);
  -o-transform: translateY(125px);
  transform: translateY(125px);
}

body.cookie-consent .cookie-notice {
  top: 0px;
}

@media screen and (max-width: 1880px) {
  .cookie-notice .cookie-notice-textt {
    font-size: 1.2em;
    margin-right: 100px;
    padding-top: 6px;
  }
  .cookie-notice .cookie-notice-close {
    top: 18px;
  }
  .cookie-notice .cookie-notice-close i {
    font-size: 2.5em;
  }
}

@media screen and (max-width: 1680px) {
  .cookie-notice .cookie-notice-text {
    padding-top: 0px;
  }
  .cookie-notice .cookie-notice-close {
    width: 60px;
    right: 8px;
    top: 20px;
  }
  .cookie-notice .cookie-notice-close i {
    font-size: 2.25em;
  }
}

@media screen and (max-width: 1280px) {
  .cookie-notice {
    height: 155px;
  }
  .cookie-notice .cookie-notice-text {
    font-size: 1.2em;
    margin-right: 100px;
    padding-top: 8px;
  }
  .cookie-notice .cookie-notice-close {
    width: 60px;
    right: 8px;
    top: 30px;
  }
  body.cookie-consent .pages,
  body.cookie-consent .header {
    -webkit-transform: translateY(155px);
    -moz-transform: translateY(155px);
    -ms-transform: translateY(155px);
    -o-transform: translateY(155px);
    transform: translateY(155px);
  }
}

@media screen and (max-width: 1080px) {
  .cookie-notice .cookie-notice-text {
    font-size: 1.15em;
  }
  .cookie-notice .cookie-notice-close {
    width: 60px;
    right: 8px;
  }
}

@media screen and (max-width: 980px) {
  .cookie-notice .cookie-notice-text {
    font-size: 1em;
    margin-right: 80px;
    padding-top: 8px;
  }
  .cookie-notice .cookie-notice-close {
    width: 65px;
    right: 5px;
  }
}

@media screen and (max-width: 820px) {
  .cookie-notice .cookie-notice-text {
    font-size: 0.95em;
    margin-right: 65px;
    padding-top: 8px;
  }
  .cookie-notice .cookie-notice-close {
    width: 55px;
    right: 5px;
    top: 30px;
  }
}

@media screen and (max-width: 768px) {
  .cookie-notice .cookie-notice-text {
    font-size: 1.25em;
  }
  .cookie-notice .cookie-notice-close {
    right: -2px;
    top: 34px;
  }
}

@media screen and (max-width: 680px) {
  .cookie-notice .cookie-notice-text {
    font-size: 1.15em;
    margin-right: 60px;
    padding-top: 4px;
  }
  .cookie-notice .cookie-notice-close {
    width: 40px;
    right: 0px;
    top: 8px;
  }
  .cookie-notice .cookie-notice-close i {
    font-size: 2.5em;
  }
}

@media screen and (max-width: 620px) {
  .cookie-notice {
    height: 195px;
  }
  body.cookie-consent .pages,
  body.cookie-consent .header {
    -webkit-transform: translateY(195px);
    -moz-transform: translateY(195px);
    -ms-transform: translateY(195px);
    -o-transform: translateY(195px);
    transform: translateY(195px);
  }
}

@media screen and (max-width: 465px) {
  .cookie-notice {
    height: 235px;
  }
  .cookie-notice .cookie-notice-text {
    margin-right: 50px;
  }
  .cookie-notice .cookie-notice-close {
    width: 40px;
    right: 0px;
    top: 0px;
  }
  .cookie-notice .cookie-notice-close i {
    font-size: 2em;
  }
  body.cookie-consent .pages {
    -webkit-transform: translateY(235px);
    -moz-transform: translateY(235px);
    -ms-transform: translateY(235px);
    -o-transform: translateY(235px);
    transform: translateY(235px);
  }
}

@media screen and (max-width: 380px) {
  .cookie-notice {
    height: 215px;
  }
  .cookie-notice .cookie-notice-text {
    font-size: 1.15em;
    margin-right: 18px;
    padding-top: 0px;
  }
  .cookie-notice .cookie-notice-close {
    width: 28px;
    right: -8px;
    top: -4px;
  }
  .cookie-notice .cookie-notice-close i {
    font-size: 1.65em;
  }
  body.cookie-consent .pages,
  body.cookie-consent .header {
    -webkit-transform: translateY(215px);
    -moz-transform: translateY(215px);
    -ms-transform: translateY(215px);
    -o-transform: translateY(215px);
    transform: translateY(215px);
  }
}

@media screen and (max-width: 360px) {
  .cookie-notice .cookie-notice-text {
    font-size: 1.1em;
  }
}

@media screen and (max-width: 320px) {
  .cookie-notice {
    height: 225px;
  }
  .cookie-notice .cookie-notice-text {
    font-size: 1.075em;
  }
  body.cookie-consent .pages,
  body.cookie-consent .header {
    -webkit-transform: translateY(225px);
    -moz-transform: translateY(225px);
    -ms-transform: translateY(225px);
    -o-transform: translateY(225px);
    transform: translateY(225px);
  }
}

@media screen and (max-width: 300px) {
  .cookie-notice .cookie-notice-text {
    font-size: 0.95em;
  }
}

/* Address Container */

.address-container {
  position: relative;
}

.address-container a {
  color: #40c25e;
}

.address-block {
  position: relative;
  width: auto;
  max-width: 210px;
  text-align: left;
  padding-top: 18px !important;
  padding-right: 28px !important;
  float: right;
}

.address-block p {
  font-family: 'Roboto', sans-serif;
  padding-left: 8px !important;
  opacity: 0.85;
}

.address-container img {
  position: relative;
  max-width: 185px;
  margin-bottom: 18px;
}

/* Website Footer */

.pages .section.footer {
  padding-top: 0px;
}

.footer {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 400px;
  margin: 0 auto;
  text-align: center;
  margin-top: 0px;
  background: transparent;
  background-color: transparent;
  background-image: transparent;
  color: #FFFFFF;
  font-size: 12px;
  pointer-events: none;
  touch-action: none;
}

.footer-content {
  position: fixed;
  width: 100%;
  bottom: 0;
  text-align: center;
  z-index: -1;
  pointer-events: none;
  touch-action: none;
}

.footer-content h2 {
  font-family: 'Raleway-thin', sans-serif;
  font-size: 28px;
  opacity: 1;
}

.footer .footer-container {
  position: relative;
  height: auto;
  margin: 0 auto;
  text-align: left;
  width: 90%;
  max-width: 1365px;
  background: transparent;
  background-color: transparent;
  background-image: none;
  color: #FFFFFF;
  font-size: 12px;
  padding: 28px;
  padding-top: 0px;
  padding-left: 40px !important;
  pointer-events: none;
  touch-action: none;
}

.footer a {
  position: relative;
  height: fit-content;
  width: fit-content;
  pointer-events: all;
  touch-action: all;
}

.footer p,
.footer p a,
.footer span {
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  clear: both;
  width: auto;
}

.footer p {
  font-size: 14px;
  opacity: 0.65;
}

.footer ul,
.footer li {
  list-style: none;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 12px;
  padding-left: 0px;
  padding-right: 0px;
  display: inline;
}

.footer .link-block {
  margin-bottom: 48px;
}

.footer .link-head {
  margin-bottom: 18px;
}

.footer .link-item {
  margin-top: 8px;
  line-height: 28px;
}

.footer-block {
  position: relative;
}

.footer .bottom-container {
  position: relative;
  margin-top: 0px;
}

.footer .copyright-container {
  position: relative;
  font-family: 'OpenSans-light', sans-serif;
  text-align: left;
}

.footer .copyright {
  position: relative;
  width: 100%;
  height: 100px;
  bottom: 0px;
  font-family: 'OpenSans-light', sans-serif;
  font-size: 13px;
  text-align: left;
  color: #888888;
  margin-top: 18px !important;
  padding: 12px !important;
  padding-left: 0px !important;
  border-top: solid 1px #555555;
  z-index: 2;
}

.footer .legal-links {
  position: relative;
}

.footer .legal-links .legal-link {
  position: relative;
  display: inline-block;
  font-family: 'OpenSans', sans-serif;
  font-size: 13px;
  text-align: left;
  color: #EEEEEE;
  margin-top: 18px;
  margin-right: 10px;
}

.footer .legal-links .legal-link a {
  position: relative;
  text-decoration: none;
  color: #EEEEEE;
  opacity: 0.75;
}

.footer .legal-links .legal-link a:hover {
  text-decoration: underline;
  color: #FFFFFF;
  opacity: 1;
}

/* Responsive Conditionals */

@media screen and (max-width: 1780px) {
  .angle-cover-one,
  .angle-cover-two {
    width:  90%;
    height: 280%;
    top: -95%;
    right: -560px;
  }
  .angle-cover-two {
    top: -90%;
    right: -480px;
  }
  .swiper-slide .text-block {
    max-width: 450px;
    right: 180px;
  }
  .swiper-slide .text-item {
    padding-top: 18px;
    padding-right: 28px;
  }
  .swiper-slide p {
    font-size: 1.2em;
    margin-top: 18px;
    margin-bottom: 24px;
  }
  .swiper-slide h1 {
    font-size: 42px;
    margin-bottom: 8px;
    padding: 0;
    margin: 0;
  }
}

@media screen and (max-width: 1480px) {
  .angle-cover-one,
  .angle-cover-two {
    width:  90%;
    height: 280%;
    top: -95%;
    right: -460px;
  }
  .angle-cover-two {
    top: -90%;
    right: -380px;
  }
  .swiper-slide .text-block {
    max-width: 425px;
    right: 125px;
  }
  .swiper-slide .text-item {
    padding-top: 18px;
    padding-right: 28px;
  }
  .swiper-slide p {
    font-size: 1.15em;
    margin-top: 18px;
    margin-bottom: 24px;
  }
  .swiper-slide h1 {
    font-size: 40px;
    margin-bottom: 8px;
    padding: 0;
    margin: 0;
  }
}

@media screen and (max-width: 1280px) {
  .swiper-slide .text-block {
    max-width: 385px;
    right: 55px;
  }
  .swiper-slide .text-item {
    padding-top: 18px;
    padding-right: 28px;
  }
  .swiper-slide p {
    font-size: 1em;
    margin-top: 18px;
    margin-bottom: 24px;
  }
  .swiper-slide h1 {
    font-size: 36px;
    margin-bottom: 8px;
    padding: 0;
    margin: 0;
  }
}

@media screen and (max-width: 1220px) {
  .header.topheader {
    padding-top: 40px;
    padding-right: 8px;
  }
  .header .logo {
    max-width: 255px;
    left: 60px;
    top: 45px;
  }
  .footer .social-icons {
    margin-right: -18px;
  }
}

@media screen and (max-width: 1128px) {
  .footer .social-icons {
    margin-right: -8px;
  }
}

@media screen and (max-width: 1080px) {
  .swiper-slide .text-block {
    max-width: 325px;
    right: 55px;
  }
  .swiper-slide .text-item {
    padding-top: 18px;
    padding-right: 28px;
  }
  .swiper-slide p {
    font-size: 0.95em;
    margin-top: 18px;
    margin-bottom: 24px;
  }
  .swiper-slide h1 {
    font-size: 32px;
    margin-bottom: 8px;
    padding: 0;
    margin: 0;
  }
}

@media screen and (max-width: 1026px) {
  .header .logo {
    max-width: 225px;
    left: 60px;
    top: 45px;
  }
  .top-links .link-list {
    padding-top: 36px;
    padding-right: 65px;
  }
  .top-links .link-item {
    font-size: 16px;
  }
  .footer .link-head {
    font-size: 24px;
  }
  @media screen and (min-height: 1200px) {
    .angle-cover-one,
    .angle-cover-two {
      width: 80%;
      height: 300%;
      top: -115%;
      right: -500px;
      transform: rotate(30deg);
      max-width: 1300px;
    }
    .angle-cover-two {
      right: -420px;
    }
    .swiper-slide.start {
      background-position: -600px;
    }
    .swiper-slide.two {
      background-position: -900px;
    }
    .swiper-slide.three {
      background-position: -800px;
    }
    .swiper-slide.four {
      background-position: -400px;
    }
    .swiper-slide.five {
      background-position: -600px;
    }
  }
}

@media screen and (max-width: 980px) {
  .footer .link-head {
    font-size: 22px;
  }
  .footer .social-list i {
    font-size: 18px;
    padding-left: 18px;
  }
}

@media screen and (max-width: 848px) {
  .footer .copyright {
    font-size: 12px;
  }
  .footer .social-list i {
    font-size: 18px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 800px) {
  .angle-cover-one,
  .angle-cover-two {
    width: 80%;
    height: 300%;
    top: -115%;
    right: -360px;
    transform: rotate(30deg);
    max-width: 1300px;
  }
  .angle-cover-two {
    right: -300px;
  }
}

@media screen and (max-width: 780px) {
  .footer .link-head {
    font-size: 20px;
  }
  .link-item {
    font-size: 15px;
  }
  .form-group {
    max-width: 95%;
  }
}

@media screen and (max-width: 768px) {
  .bg-overlay {
    display: none;
  }
  .grid-sm-1,
  .grid-sm-1-1,
  .grid-sm-5-5 {
    width: 100%;
  }
  .header.topheader {
    padding-top: 28px;
    padding-right: 8px;
  }
  .header .logo {
    max-width: 200px;
    left: 36px;
    top: 28px;
  }
  .top-links .link-list {
    padding-top: 32px;
    padding-right: 42px;
  }
  .top-links .link-item {
    font-size: 16px;
  }
  .pages .section-inner {
    width: 80%;
  }
  .pages .section h1 {
    font-size: 42px;
    margin-bottom: 48px;
  }
  form {
    margin-left: -18px !important;
  }
  .swiper-slide .text-block.show {
    bottom: 15%;
  }
  .footer .footer-container {
    width: 80%;
    padding-left: 28px !important;
  }
  .footer-content h2 {
    text-align: center !important;
    font-size: 26px;
    margin-bottom: 48px;
  }
  .footer .link-block {
    display: none;
  }
  .footer .copyright {
    text-align: center !important;
    height: auto;
  }
  .footer .legal-links {
    text-align: center;
  }
  .footer .copyright-container {
    position: relative;
    text-align: center;
    padding-left: 0px !important;
  }
  .footer .copyright {
    height: auto;
    text-align: center;
    padding: 0px !important;
    padding-left: 0px !important;
    padding-top: 12px !important;
    padding-bottom: 18px !important;
  }
  .footer .social-list {
    padding: 0px;
  }
  .footer .social-icons {
    position: relative;
    width: auto;
    float: none;
    margin: 0 auto;
  }
  .footer .link-block {
    margin-bottom: 36px !important;
  }
  .footer .link-head {
    font-size: 40px;
  }
  .footer .link-item {
    font-size: 20px;
  }
  .footer .logo-container,
  .footer .stats-container {
    display: none;
  }
  .footer .address-block {
    text-align: center !important;
    margin: 0 auto;
    float: none;
  }
  .footer .social-list i.icon-twitter {
    padding-left: 0px !important;
  }
}

@media screen and (max-width: 680px) {
  .top-links .link-list {
    padding-top: 28px;
    padding-right: 36px;
  }
  .top-links .link-item {
    font-size: 16px;
    margin-bottom: 18px;
    margin-right: 12px;
  }
  body.fixed .top-links .link-list {
    padding-top: 28px;
    padding-right: 48px;
  }
}

@media screen and (max-width: 640px) {
  .header .logo {
    position: absolute;
    left: 18px !important;
    top: 5px !important;
  }
  body.fixed .logo {
    margin-top: 8px;
    max-height: 45px;
  }
  .top-links .link-list.mobile .menu-control {
    margin-top: 0px;
    margin-right: 0px;
  }
  .top-links .link-list.normal {
    display: none;
  }
  .top-links .link-list.mobile {
    display: block;
  }
  .top-links .link-item {
    font-size: 14px;
    margin-bottom: 18px;
    margin-right: 12px;
  }
  body.fixed .top-links .link-list {
    padding-top: 28px;
    padding-right: 18px;
  }
  body.fixed .top-links .link-list.mobile .menu-control {
    top: 18px;
    padding-top: 4px;
    margin-top: 2px;
    margin-right: -5px;
  }
  body.fixed .top-links .link-list.mobile.open .menu-control {
    transform: rotate(-180deg) translateY(12px);
  }
  .form-group {
    max-width: 100%;
  }
  .scroll-top {
    bottom: 36px;
    right: 36px;
  }
}

@media screen and (max-width: 600px) {
  .pages .section h1 {
    font-size: 40px;
    margin-bottom: 36px;
  }
}

@media screen and (max-width: 590px) {
  .btn.ghost {
    width: 100%;
    min-width: 240px;
    max-width: 300px;
    text-align: center;
    margin: 0 auto;
  }
  .top-links .link-list.mobile.open .menu-watermark {
    left: 55%;
  }
}

@media screen and (max-width: 548px) {
  .swiper-slide .text-block.show {
    bottom: 12%;
  }
  .swiper-slide .text-block {
    max-width: 85%;
    right: 28px;
  }
  .swiper-slide .text-item {
    padding-top: 18px;
    padding-right: 28px;
  }
  .swiper-slide p {
    font-size: 1.25em;
  }
  .swiper-slide h1 {
    font-size: 42px;
  }
}

@media screen and (max-width: 480px) {
  .pages .section h1 {
    font-size: 42px;
    margin-bottom: 48px;
  }
  .angle-cover-one,
  .angle-cover-two {
    width: 80%;
    height: 300%;
    top: -95%;
    right: -140px;
  }
  .angle-cover-two {
    top: -90%;
    right: -60px;
  }
  .swiper-slide h1 {
    font-size: 38px;
  }
}

@media screen and (max-width: 420px) {
  .btn.ghost {
    margin-left: 4px;
  }
  .swiper-slide .text-item {
    padding-right: 0px;
  }
  .swiper-slide p {
    font-size: 1.15em;
  }
  .swiper-slide h1 {
    font-size: 32px;
  }
  .top-links .link-list.mobile.open .menu-watermark {
    left: 64%;
  }
}

@media screen and (max-width: 380px) {
  .btn-large,
  .btn.ghost {
    min-width: 200px;
    padding: 6px 12px;
    font-size: 16px;
  }
  .pages .section h1 {
    font-size: 36px;
    margin-bottom: 28px;
  }
  .angle-cover-one,
  .angle-cover-two {
    width: 80%;
    height: 300%;
    top: -115%;
    right: -100px;
  }
  .angle-cover-two {
    top: -100%;
    right: -80px;
  }
  .swiper-slide p {
    font-size: 1em;
  }
  .swiper-slide h1 {
    font-size: 28px;
  }
  .feature-box {
    padding: 0 0 0 0;
  }
  .feature-icon {
    display: none;
  }
  .footer .link-block {
    margin-bottom: 28px !important;
  }
  .footer .link-head {
    font-size: 28px;
  }
  .footer .link-item {
    font-size: 18px;
  }
  .footer .legal-links {
    margin-top: 18px;
  }
  .footer .legal-links .legal-link {
    margin-top: 4px;
  }
}
