/* ---- Theme Variables ---- */
/* Font */
/* Colors */
/* Transitions */
/* Element radius */
/*---- General - Theme Styles ----*/
html {
  font-size: 16px;
}

body {
  font-family: Lato, Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #212121;
  padding-top: 95px;
}

body.imagetop {
  padding-top: 0;
}

p {
  line-height: 1.65em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Lato, Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 700;
}

table {
  width: 100%;
}

a {
  color: #601069;
}

a, .btn {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

a:hover, .btn:hover {
  text-decoration: none;
}

a:focus, .btn:focus {
  outline: none;
  text-decoration: none;
}

figcaption {
  padding-top: 8px;
  font-size: .85em;
}

hr.short {
  max-width: 30px;
  margin-left: auto;
  margin-right: auto;
}

/* Helpers */
.overlay {
  background-color: rgba(33, 33, 33, 0.25);
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 40;
  -webkit-transition: .3s all;
  transition: .3s all;
}

.delimited {
  margin-bottom: 20px;
}

.badge {
  font-weight: 400;
  border-radius: 3px;
  padding: 4px 8px;
}

.badge.badge-success {
  background-color: rgba(0, 200, 83, 0.12);
  color: #00C853;
}

.badge.badge-danger {
  background-color: rgba(242, 71, 56, 0.12);
  color: #F24738;
}

.avatar {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #e9eaed;
}

.underline {
  position: relative;
}

.underline::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: 8px;
  height: 30%;
  background-color: rgba(96, 16, 105, 0.15);
  -webkit-transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 500ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.animatedin {
  opacity: 0;
  -webkit-transform: translateY(18px);
          transform: translateY(18px);
  -webkit-transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.animatedin.in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animatedin.stop {
  -webkit-transform: none;
          transform: none;
}

/* Dropdown Menu */
.dropdown-menu {
  padding: 0;
  margin: 0;
  border: 1px solid #d5d7dd;
  border: none;
  border-radius: 3px;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.125);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.125);
  font-size: .92rem;
}

.dropdown-menu .dropdown-item {
  font-size: 13px;
  padding: 14px 28px;
  color: rgba(33, 33, 33, 0.85);
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgba(233, 234, 237, 0.5);
  color: #212121;
}

.dropdown-menu.dropdown-menu--withicons > li > a {
  padding-right: 60px;
  position: relative;
}

.dropdown-menu.dropdown-menu--withicons > li > a i {
  position: absolute;
  right: 26px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: .35;
}

.dropdown-menu.dropdown-menu--animated {
  display: block;
  visibility: hidden;
  opacity: 0;
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transform: scale(0.94) translateY(20px);
          transform: scale(0.94) translateY(20px);
}

.show > .dropdown-menu:not(.animated) {
  display: block;
}

.show > .dropdown-menu--animated {
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1) translateY(0);
          transform: scale(1) translateY(0);
}

/* Modal */
.modal .close {
  position: absolute;
  right: 0;
  top: 0;
  font-size: .85em;
  margin: 0;
  -webkit-transition: .2s all;
  transition: .2s all;
  outline: none !important;
}

.modal .close i {
  -webkit-transition: .2s all;
  transition: .2s all;
  display: inline-block;
}

.modal .close:hover i {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.modal-content {
  border: none;
  border-radius: 3px;
  position: relative;
}

.modal-header {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: none;
  position: relative;
}

.modal-title {
  text-align: center;
  font-size: .9em;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.modal__inner {
  max-width: 240px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  text-decoration: none;
  border: none;
  border-radius: 3px;
  padding: 16px 32px;
  font-size: 15px;
  line-height: 1em;
  font-weight: 700;
  color: #fff;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn:hover {
  text-decoration: none;
  border: none;
}

.btn:focus {
  outline: none !important;
}

.btn-primary,
.btn-primary:focus {
  background-color: #601069;
  color: #fff;
}

.btn-primary:hover, .btn-primary:active,
.btn-primary:focus:hover,
.btn-primary:focus:active {
  background-color: #781484 !important;
  color: #fff;
}

.btn-outline,
.btn-outline:focus {
  background-color: transparent;
  -webkit-box-shadow: inset 0 0 0 2px #fff;
          box-shadow: inset 0 0 0 2px #fff;
  color: #fff;
}

.btn-outline:hover,
.btn-outline:focus:hover {
  background-color: #fff;
  color: #212121;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn--wide {
  min-width: 300px;
}

.btn-default {
  background-color: #fff;
  color: #601069;
}

.btn-default:hover {
  background-color: #eee;
  color: #601069;
}

.btn-text {
  border-bottom: 1px solid rgba(59, 175, 218, 0.35);
  color: #3BAFDA;
}

.btn-text:hover {
  color: #212121;
  border-bottom-color: transparent;
}

.btn-text-white {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-text-white:hover {
  color: #601069;
  border-bottom-color: transparent;
}

.btn-text-muted {
  color: rgba(33, 33, 33, 0.65);
  border-bottom-color: rgba(33, 33, 33, 0.15);
}

.btn-text-muted:hover {
  border-bottom-color: transparent;
  color: #212121;
}

.text-muted .btn-text-white {
  color: rgba(255, 255, 255, 0.55);
}

.text-muted .btn-text-white:hover {
  color: #601069;
  border-bottom-color: transparent;
}

.btn-back {
  font-size: 14px;
  color: rgba(33, 33, 33, 0.55);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  line-height: 1.1em;
}

.btn-back:hover {
  color: #212121;
}

.btn-back i {
  margin-right: 8px;
}

.btn-back .poolicon-arrow {
  display: inline-block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  position: relative;
  top: -1px;
}

.btn-closemenu {
  display: none;
}

.btn--withicon i {
  margin-right: 6px;
  position: relative;
  font-size: .9em;
  top: 1px;
}

.btn-backHome {
  color: #fff;
  position: relative;
  z-index: 13;
  top: 25px;
  padding: 12px 5px;
}

.btn-backHome:hover {
  color: rgba(255, 255, 255, 0.8);
}

.btn-backHome i {
  display: inline-block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-right: 8px;
  font-size: .9em;
  position: relative;
  top: 1px;
}

.btn--withlasticon i {
  margin-left: 8px;
  position: relative;
  max-height: 33px;
  top: 1px;
  margin-top: -2px;
  margin-bottom: -2px;
  -webkit-transition: .2s ease-out;
  transition: .2s ease-out;
  display: inline-block;
}

.btn--withlasticon .poolicon-arrow,
.btn--withlasticon .poolicon-arrow-alt {
  font-size: .7em;
  position: relative;
  top: -1px;
}

.btn--withlasticon:hover .poolicon-arrow,
.btn--withlasticon:hover .poolicon-arrow-alt {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
}

/* Table */
.table > thead > tr > th {
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.2em;
}

.table > tbody > tr > td {
  line-height: 1.2em;
  border-top-color: rgba(255, 255, 255, 0.12);
}

.table .text-large {
  font-size: 1.1em;
}

.table-tight > tbody > tr > td {
  padding-top: 9px;
  padding-bottom: 9px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.15);
}

.row-highlight {
  background-color: #601069 !important;
}

.row-highlight .text-large {
  font-size: 1.4em;
}

.row-highlight > td {
  vertical-align: middle;
}

.row-highlight--light {
  background-color: rgba(96, 16, 105, 0.55) !important;
}

.row-highlight--light > td {
  border-top: 1px solid #212121;
  vertical-align: middle;
}

/* Header & Navbar */
.site-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.site-header--center .navbar-expand-lg {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.navbar {
  padding: 0;
}

.navbar-nav {
  padding: 25px 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.navbar-nav .nav-item {
  margin: 0 12px;
}

.navbar-nav .nav-link {
  color: rgba(33, 33, 33, 0.85);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: 0.03em;
}

.navbar-nav .nav-link:hover {
  color: #212121;
}

.navbar-nav .btn-primary {
  margin-left: 7px;
}

.imagetop .navbar-nav .nav-link {
  color: #fff;
}

.imagetop .navbar-nav .nav-link:hover {
  color: rgba(255, 255, 255, 0.85);
}

.imagetop .navbar-brand {
  color: #fff;
}

.imagetop .navbar-brand:hover {
  color: #fff;
}

.imagetop .navbar-brand--gp {
  padding-left: 0;
  padding-top: 12px;
}

.navbar-brand {
  padding: 8px 15px;
  text-align: center;
  -webkit-transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
  color: #601069;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-brand:hover {
  color: #601069;
}

.navbar-brand .alyve-by-gv {
  -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 260px;
  height: auto;
}

.navbar-brand .gp-by-gv {
  width: 300px;
  height: auto;
}

.navbar-brand .gp-by-gv g > * {
  fill: #fff;
}

.navbar-brand .grass-valley-logo {
  -webkit-transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 400ms cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 200px;
  height: auto;
}

.navbar-brand .grass-valley-logo #type > * {
  fill: #fff;
}

.navbar-brand .navbar-brand__tagline {
  font-size: 12px;
  margin: 0;
  margin-top: 4px;
  margin-left: 12px;
}

.btn-closemenu {
  position: absolute;
  right: 0;
  top: 0;
  padding: 20px 26px;
  color: rgba(33, 33, 33, 0.4);
  font-size: 1.2em;
  display: none;
}

.btn-closemenu:hover {
  color: rgba(33, 33, 33, 0.8);
}

.mobilebar {
  background-color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 50px;
  z-index: 39;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 350ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 100%;
  -webkit-box-shadow: 0 10px 18px rgba(33, 33, 33, 0.1);
          box-shadow: 0 10px 18px rgba(33, 33, 33, 0.1);
}

.mobilebar .btn-primary {
  padding: 12px 15px;
  font-size: 12px;
  letter-spacing: 0;
}

.mobilebar .btn-primary:hover {
  background-color: #fff;
  color: #601069;
}

.mobilebar .btn-backHome {
  color: #999;
  top: auto;
  margin-left: 6px;
  font-size: 13px;
}

.mobilebar .btn-backHome i {
  top: -1px;
}

.mobilebar .btn-backHome:hover {
  color: rgba(0, 0, 0, 0.8);
}

.mobilebar__actions {
  padding: 2px;
  padding-right: 7px;
  -webkit-box-flex: .7;
      -ms-flex: .7;
          flex: .7;
}

.mobilebar__actions--last {
  text-align: right;
}

.mobilebar__branding .grass-valley-logo {
  width: 130px;
  height: auto;
  vertical-align: middle;
}

.mobilebar__branding .alyve-by-gv {
  width: 150px;
}

.mobilebar__branding .alyve-by-gv #main > * {
  fill: #000;
}

.mobilebar__branding .gp-by-gv {
  padding-top: 6px;
}

.btn-mobilemenu {
  padding: 14px 14px;
  background-color: transparent;
  border: 0;
}

.btn-mobilemenu .title {
  color: #601069;
  font-size: 10px;
  font-weight: 700;
  float: left;
  margin-left: 5px;
  -webkit-transition: .2s all;
  transition: .2s all;
}

.btn-mobilemenu .bars {
  float: left;
}

.btn-mobilemenu .icon-bar {
  display: block;
  background-color: #601069;
  -webkit-transition: .2s all ease-out;
  transition: .2s all ease-out;
  width: 28px;
  height: 2px;
}

.btn-mobilemenu .icon-bar + .icon-bar {
  margin-top: 6px;
}

.btn-mobilemenu .icon-bar.icon-bar2 {
  width: 24px;
}

.btn-mobilemenu .icon-bar.icon-bar3 {
  width: 20px;
}

.btn-mobilemenu:hover {
  color: #601069;
}

.btn-mobilemenu:hover .title {
  color: #601069;
}

.btn-mobilemenu:hover .icon-bar {
  background-color: #601069;
}

.btn-mobilemenu:hover .title {
  color: #601069;
}

.btn-mobilemenu:hover .icon-bar1 {
  -webkit-transform: scale(0.8, 1);
          transform: scale(0.8, 1);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}

.btn-mobilemenu:hover .icon-bar3 {
  -webkit-transform: scale(0.85, 1);
          transform: scale(0.85, 1);
  -webkit-transform-origin: 0 50%;
          transform-origin: 0 50%;
}

/*---- Main Content ----*/
/* Layout */
.p-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 700px;
  padding-top: 70px;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-left: 25px;
  padding-right: 25px;
}

.p-slide::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(33, 33, 33, 0.4);
}

.p-slide .btn-text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-slide .btn-text:hover {
  color: rgba(255, 255, 255, 0.85);
}

.p-slide .btn-text i {
  font-size: 2em;
}

.p-slide--home {
  background-image: url(../img/hero.jpg);
}

.p-slide--gp {
  background-image: url(../img/hero-gaming.jpg);
}

.p-slide--short {
  min-height: 550px;
}

.p-slide--gp .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-slide__msg {
  position: relative;
  z-index: 2;
  max-width: 50%;
  color: #fff;
}

.p-slide__msg h1 {
  margin-bottom: 20px;
  font-size: 2.9em;
}

.p-slide__msg p {
  font-size: 1.15em;
  margin-bottom: 40px;
}

.p-slide__msg ul {
  margin-bottom: 40px;
}

.p-slide__showcase {
  position: relative;
  z-index: 4;
  margin-left: 35px;
  margin-bottom: -120px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.p-slide__promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-slide__promo .img {
  width: 100%;
  height: auto;
}

.p-slide__mob {
  margin-right: -80px;
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.p-slide__mob video {
  position: absolute;
  width: 76%;
  height: auto;
  left: 12%;
  top: 13%;
  z-index: 1;
}

.p-slide__tv {
  position: relative;
}

.p-slide__tv video {
  position: absolute;
  width: 99%;
  height: auto;
  left: .5%;
  top: 1.2%;
  z-index: 1;
}

.p-slide__cta .btn {
  margin: 3px;
}

.p-slide__cta .btn-outline {
  -webkit-box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35) !important;
          box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35) !important;
}

.p-slide__cta .btn-outline .gvicon-play {
  font-size: 1.3em;
  margin-top: -8px;
  margin-bottom: -8px;
}

.p-slide__quote {
  text-align: center;
  padding-top: 35px;
  color: #fff;
}

.p-slide__quote p {
  font-size: 1.1em;
  margin: 0;
}

.p-slide__quote p img {
  width: 17px;
  height: auto;
  position: relative;
  top: -2px;
  margin-right: 4px;
}

.p-slide__quote .text-muted {
  font-size: .8em;
  color: rgba(255, 255, 255, 0.65) !important;
}

.hero-img {
  width: 100%;
  height: auto;
  display: none;
}

.circ {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}

.circbadge {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  padding: 10px;
  padding-bottom: 20px;
  text-align: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 700;
  background-color: rgba(188, 205, 120, 0.85);
  position: absolute;
  right: 0;
  bottom: 35px;
}

.circbadge p {
  line-height: 1.25em;
  margin: 0;
  margin-top: 5px;
}

.circbadge i {
  font-size: 2.8em;
}

#map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.subpromo {
  background-color: #E9EAED;
  padding: 15px 35px;
}

.subpromo p {
  margin: 0;
}

.subpromo__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.subpromo__logos {
  padding-left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.subpromo__logos img {
  width: 115px;
  margin: 0 5px;
  border-radius: 4px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: .5s ease-out;
  transition: .5s ease-out;
}

.subpromo__logos img:hover {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}

.subpromo__logos .grid--small {
  min-width: 400px;
}

.subpromo__logos .grid--small .stat-val, .subpromo__logos .grid--small .stat-desc {
  color: #212121;
}

.subpromo__logos .grid--small .grid__item:not(:first-child) {
  border-left: 1px solid rgba(33, 33, 33, 0.1);
}

/* Content */
.cblock {
  margin: 180px 0;
}

.cblock--main {
  margin-top: 80px;
}

.cblock--promo {
  margin-bottom: 0;
}

.cblock--feats {
  margin-top: 180px;
}

.cblock--bg {
  background-color: #E9EAED;
  padding: 140px 0;
}

.cblock--getintouch {
  background-image: url(../img/get-in-touch-gp-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 100px 0;
}

.cblock--getintouch .cblock__head {
  color: #fff;
}

.cblock--getintouch .grid--dual {
  max-width: 970px;
  margin: 0 auto;
}

.cblock--getintouchgp {
  background-image: url(../img/get-in-touch-gp-bg.jpg);
}

.cblock__inner {
  max-width: 970px;
  margin: 0 auto;
}

.cblock__head {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  margin-bottom: 45px;
  width: 100%;
  text-align: center;
}

.cblock__head h2 {
  font-size: 2.4em;
  line-height: 1.1em;
  margin-bottom: 25px;
}

.cblock__head .text-muted {
  color: rgba(33, 33, 33, 0.55);
}

.cblock__body {
  width: 100%;
}

.cblock--cta {
  text-align: center;
  margin-top: 150px;
}

.cblock--ctafat,
.cblock--ctafated {
  background-image: url(../img/subscribe-bg.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 90px 0;
}

.cblock--ctafat .cblock__head,
.cblock--ctafated .cblock__head {
  margin-bottom: 18px;
  max-width: 850px;
}

.cblock--ctafat .cblock__head h2,
.cblock--ctafated .cblock__head h2 {
  color: #fff;
}

.cblock--ctafat .btn-primary,
.cblock--ctafated .btn-primary {
  background-color: #601069;
}

.cblock--ctafat .btn-primary:hover,
.cblock--ctafated .btn-primary:hover {
  background-color: #74137f;
}

.cblock__img img {
  width: 100%;
  height: auto;
}

blockquote {
  position: relative;
  padding-left: 20px;
  border-left: solid 11px rgba(96, 16, 105, 0.1);
  margin: 35px 0;
  margin-left: 20px;
  font-size: 1.1em;
}

.blockquote--generic {
  margin: 50px 0;
  margin-left: 25px;
}

.blockquote__author {
  font-size: 13px;
  color: rgba(33, 33, 33, 0.65);
}

.drop:first-child:first-letter {
  float: left;
  font-weight: 700;
  font-size: 90px;
  line-height: 60px;
  padding-top: 8px;
  padding-right: 8px;
  padding-left: 3px;
}

.cblock--promo {
  margin-top: 0;
}

.cblock--ctasimple {
  background-color: #601069;
  padding: 80px 35px;
  color: #fff;
}

.cblock--ctasimple .row-cols {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  max-width: 970px;
  margin: 0 auto;
}

.cblock--ctasimple .cblock__head {
  margin-bottom: 18px;
  text-align: left;
  max-width: inherit;
  margin: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.cblock--ctasimple .cblock__head h2 {
  color: #fff;
  font-size: 2.2em;
}

.cblock--ctasimple .cblock__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  margin-left: 35px;
}

.cblock__topintro {
  margin-top: 0;
}

.cblock__intro {
  font-size: 1.25em;
  line-height: 1.45em;
  color: rgba(255, 255, 255, 0.65);
}

.cblock__superhighlight {
  font-size: 1.35em;
  line-height: 1.55em;
}

.cblock__highlight {
  font-size: 1.25em;
  line-height: 1.6em;
  font-weight: 300;
}

.cblock__fullimg img {
  width: 100%;
  height: auto;
}

.cblock__cta {
  padding-top: 12px;
  text-align: right;
}

.box {
  background-color: #E9EAED;
  padding: 65px;
  border-radius: 3px;
}

.box .cblock__head,
.box .cblock__body {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.box .cblock__head {
  margin-bottom: 50px;
}

.box--articletool {
  background-color: #601069;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
}

.box--articletool:hover {
  color: #fff;
  -webkit-box-shadow: 0 0 0 2px #601069;
          box-shadow: 0 0 0 2px #601069;
}

.box--articletool .box__body {
  padding: 45px 65px;
}

.box--articletool .box__img {
  padding: 45px 65px;
  padding-bottom: 0;
}

.box--articletool h2 {
  font-size: 1.9em;
}

.box--articletool .list-checks {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 3px 20px;
  font-weight: 700;
}

.box--articletool .list-checks > li::before {
  color: #3BAFDA;
}

/* Stats grid */
.grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 15px;
  width: 100%;
}

.grid__item {
  text-align: center;
}

.grid__item p {
  margin: 0;
  line-height: 1.6em;
}

.grid__item h5 {
  font-size: 1.35em;
  line-height: 1.2em;
  margin: 25px 0;
}

.grid--feats {
  margin-top: 55px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid--feats .grid__copy {
  max-width: 270px;
  margin: 0 auto;
  padding: 0 15px;
}

.grid--feats .grid__img {
  -webkit-box-shadow: 0 8px 18px rgba(38, 45, 57, 0.1);
          box-shadow: 0 8px 18px rgba(38, 45, 57, 0.1);
}

.grid--feats .grid__img img {
  width: 100%;
  height: auto;
}

.grid--topfeats {
  margin-bottom: -180px;
}

.grid--topfeats .grid__item {
  background-color: #fff;
  -webkit-box-shadow: 0 8px 25px rgba(38, 45, 57, 0.1);
          box-shadow: 0 8px 25px rgba(38, 45, 57, 0.1);
  border-radius: 3px;
  text-align: left;
}

.grid--topfeats .grid__copy {
  max-width: 350px;
  padding: 35px 30px;
}

.grid--topfeats .grid__copy h4 {
  margin: 25px 0;
  font-size: 1.6em;
}

.grid--topfeats .grid__img {
  width: 100px;
  height: auto;
}

.grid--contact {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  margin-top: -480px;
  position: relative;
  z-index: 1;
}

.grid--contact .grid__item {
  background-color: #fff;
  -webkit-box-shadow: 0 8px 25px rgba(38, 45, 57, 0.1);
          box-shadow: 0 8px 25px rgba(38, 45, 57, 0.1);
  border-radius: 3px;
  text-align: left;
}

.grid--contact .grid__copy {
  max-width: 540px;
  padding: 35px 30px;
  margin: 0 auto;
}

.grid--nav {
  margin-top: 65px;
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid--nav .grid__item {
  border-radius: 3px;
  text-align: left;
  color: rgba(33, 33, 33, 0.4);
  background-color: rgba(233, 234, 237, 0.5);
  max-height: 400px;
}

.grid--nav .grid__item:hover {
  color: rgba(33, 33, 33, 0.8);
  -webkit-box-shadow: inset 0 0 0 1px rgba(38, 45, 57, 0.12), 0 4px 15px rgba(38, 45, 57, 0.05);
          box-shadow: inset 0 0 0 1px rgba(38, 45, 57, 0.12), 0 4px 15px rgba(38, 45, 57, 0.05);
}

.grid--nav .grid__item.active {
  background-color: #fff;
  -webkit-box-shadow: 0 8px 25px rgba(38, 45, 57, 0.1);
          box-shadow: 0 8px 25px rgba(38, 45, 57, 0.1);
}

.grid--nav .grid__item.active .grid__copy h5 {
  color: #601069;
}

.grid--nav .grid__item.active .grid__copy p {
  min-height: 300px;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.grid--nav .grid__copy {
  max-width: 350px;
  padding: 35px 30px;
}

.grid--nav .grid__copy h5 {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.3em;
}

.grid--nav .grid__copy p {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1000ms cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.grid--navgp {
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
}

.grid--navgpvert {
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  grid-gap: 10px;
}

.grid--navgpvert .grid__item {
  max-height: inherit;
}

.grid--navgpvert .grid__item.active .grid__copy h5 {
  margin-bottom: 15px;
}

.grid--navgpvert .grid__item.active .grid__copy p {
  min-height: inherit;
  max-height: inherit;
}

.grid--navgpvert .grid__copy {
  max-height: inherit;
}

.grid--navgpvert .grid__copy h5 {
  margin-bottom: 0;
}

.grid--media {
  -ms-grid-columns: 1fr 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 10px;
  margin-bottom: 50px;
}

.grid--media .grid__item {
  position: relative;
}

.grid--media .grid__item:nth-child(even) {
  bottom: -70px;
}

.grid--media .grid__img {
  position: relative;
}

.grid--media .grid__img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 65%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.4)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.grid--media .grid__img img {
  width: 100%;
}

.grid--media .grid__copy {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  text-align: center;
}

.grid--mediagp {
  -ms-grid-columns: 1fr 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 12px;
}

.grid--dual {
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
}

.promo-slider-ui {
  width: 100%;
  margin-bottom: -130px;
}

.slick-slide {
  outline: none;
}

.cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.orvert {
  font-size: .85em;
  color: rgba(33, 33, 33, 0.4);
  margin: 0 8px;
}

.list-stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-stats > li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-right: 20px;
}

.list-stats > li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  padding-left: 20px;
}

.list-stats p {
  margin: 0;
}

.list-stats small {
  font-size: .5em;
}

.list-withicons {
  margin: 0;
}

.list-withicons > li {
  position: relative;
  padding-left: 50px;
  margin: 16px 0;
  min-height: 38px;
}

.list-withicons .list-picto {
  position: absolute;
  left: 0;
  width: 35px;
  height: 35px;
  background-color: rgba(59, 175, 218, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 3px;
  font-size: 1.3em;
  color: #3BAFDA;
}

.list-checks {
  margin: 0;
}

.list-checks > li {
  position: relative;
  padding-left: 35px;
  margin: 4px 0;
}

.list-checks > li::before {
  content: "\e902";
  font-family: "poolicon";
  position: absolute;
  left: 0;
  font-size: .7em;
  margin-top: 3px;
}

.list-checks--circled > li {
  margin: 12px 0;
}

.list-checks--circled > li::before {
  content: "\e90f";
  font-size: 1.3em;
  color: #601069;
  margin-top: -3px;
}

/* Contacts */
.contacts {
  margin-top: -75px;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding: 75px 60px;
}

.contacts__inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: 1fr 1fr;
  grid-gap: 100px;
  max-width: 970px;
  margin: 0 auto;
}

.contact {
  font-size: 1.1em;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 15px 0;
}

.contact i {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50px;
  height: 50px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  background-color: rgba(96, 16, 105, 0.15);
  margin-right: 12px;
  color: #601069;
}

a.contact {
  color: #601069;
}

a.contact:hover {
  color: #F38634;
}

.contact--loc {
  display: none;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 400;
  font-size: 13px;
}

.contact--loc p {
  line-height: 1.4em;
}

.addressbox {
  background-color: #fff;
  border-radius: 3px;
  max-width: 370px;
  font-size: .9em;
  padding: 20px 30px;
}

.addressbox p {
  line-height: 1.35em;
}

.addressbox .btn-text {
  color: #F38634;
  border-bottom: rgba(243, 134, 52, 0.65);
}

.addressbox .btn-text:hover {
  border-bottom-color: transparent;
  color: #F38634;
}

/* Forms */
.form .form-control {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  font-size: 14px;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 3px;
  border: 1px solid rgba(33, 33, 33, 0.12);
  height: 38px;
  color: #212121;
  -webkit-box-shadow: 0 2px 6px rgba(33, 33, 33, 0.05);
          box-shadow: 0 2px 6px rgba(33, 33, 33, 0.05);
}

.form .form-control:focus {
  border-color: #8798A3;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form .form-control.form-area {
  height: auto;
}

.form .form-control::-webkit-input-placeholder {
  color: rgba(33, 33, 33, 0.5);
}

.form .form-control::-moz-placeholder {
  color: rgba(33, 33, 33, 0.5);
}

.form .form-control:-ms-input-placeholder {
  color: rgba(33, 33, 33, 0.5);
}

.form .form-control:-moz-placeholder {
  color: rgba(33, 33, 33, 0.5);
}

.form .form-control--lined {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(33, 33, 33, 0.12);
  padding-left: 0;
}

.form .form-control--lined:focus {
  -webkit-box-shadow: 0 1px 0 #8798A3;
          box-shadow: 0 1px 0 #8798A3;
}

.form .form-group > label {
  font-weight: 400;
  font-size: 13px;
  color: rgba(33, 33, 33, 0.6);
  margin-bottom: 4px;
}

.form .form-group .form__error {
  display: none;
  font-size: 13px;
  padding: 4px 0;
  color: #F24738;
}

.form .has-error .form-control {
  border-color: #F24738;
}

.form .has-error .form__error {
  display: block;
}

.form .help-block {
  font-size: 13px;
  color: rgba(38, 45, 57, 0.55);
  margin-top: 7px;
}

.form--contact .form-group {
  margin-bottom: 5px;
}

.form--contact .form-control {
  font-size: 1em;
  border: none;
}

.form--contact .form-control:focus {
  -webkit-box-shadow: 0 5px 10px rgba(38, 45, 57, 0.46);
          box-shadow: 0 5px 10px rgba(38, 45, 57, 0.46);
}

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.custom-checkbox .custom-control-label {
  font-size: 14px;
  padding-top: 2px;
}

.custom-checkbox .custom-control-label::before {
  -webkit-box-shadow: inset 0 0 0 1px rgba(33, 33, 33, 0.12) !important;
          box-shadow: inset 0 0 0 1px rgba(33, 33, 33, 0.12) !important;
  background-color: #fff;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #F38634;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.list-aboutfeat {
  max-width: 300px;
}

.list-aboutfeat > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.list-aboutfeat > li + li {
  margin-top: 35px;
}

.list-aboutfeat img {
  width: 50px;
  height: auto;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 30px;
}

.list-aboutfeat p {
  font-size: 1.1em;
  font-weight: 700;
  margin: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  line-height: 1.25em;
}

.partners--top {
  margin-bottom: 120px;
}

.partners--bottom {
  margin-top: 60px;
}

.list-partners li {
  padding: 0 10px;
  text-align: center;
}

.list-partners img {
  width: 110px;
  height: auto;
  margin: 0 auto;
}

.interaction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.interaction__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.interaction__promo {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-left: 35px;
  text-align: right;
  width: 70%;
}

.interaction__slider {
  width: 100%;
  position: relative;
}

.interaction__slider .slide {
  text-align: center;
}

.interaction__slider .slide img {
  margin: 0 auto;
  max-width: 670px;
}

/* Video & Image gallery */
.video-slide video {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 10px 28px rgba(33, 33, 33, 0.15);
          box-shadow: 0 10px 28px rgba(33, 33, 33, 0.15);
}

.video-slide__caption {
  text-align: center;
  padding-top: 8px;
}

.video-slide__caption h5 {
  margin: 0;
  margin-bottom: 4px;
}

.video-gallery-nav .nav-item {
  padding: 0 12px;
  text-align: center;
  opacity: .65;
  -webkit-transition: .2s all;
  transition: .2s all;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.video-gallery-nav .nav-item:hover {
  opacity: 1;
  cursor: pointer;
}

.video-gallery-nav .nav-item img {
  width: 100%;
  height: auto;
}

.video-gallery-nav .nav-item.slick-current {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.image-gallery .slick-list {
  padding: 25px 0;
}

.image-slide {
  padding: 0 15px;
  -webkit-transition: .25s ease-out;
  transition: .25s ease-out;
}

.image-slide:hover {
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

.image-slide:hover img {
  -webkit-box-shadow: 0 5px 18px rgba(33, 33, 33, 0.07);
          box-shadow: 0 5px 18px rgba(33, 33, 33, 0.07);
}

.image-slide img {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 0 8px 25px rgba(33, 33, 33, 0.1);
          box-shadow: 0 8px 25px rgba(33, 33, 33, 0.1);
  -webkit-transition: .25s ease-out;
  transition: .25s ease-out;
  border-radius: 4px;
}

/*---- Footer ----*/
.site-footer {
  margin-top: 80px;
  padding-bottom: 60px;
  font-size: .85em;
  color: rgba(33, 33, 33, 0.65);
}

.site-footer p {
  line-height: 1.25em;
}

.site-footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 900px;
  margin: 0 auto;
}

.site-footer__col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
}

.site-footer__col--branding,
.site-footer__col--soc {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 300px;
}

.site-footer__col--soc {
  text-align: right;
}

.site-footer__branding {
  max-width: 180px;
}

.site-footer__branding .site-footer__branding {
  width: 160px;
  height: auto;
}

.site-footer__branding p {
  font-size: .9em;
  color: rgba(96, 16, 105, 0.45);
}

.site-footer__about {
  max-width: 220px;
  text-align: left;
  display: inline-block;
}

.site-footer__about p {
  line-height: 1.4em;
  margin: 0;
}

.site-footer__about p + p {
  margin-top: 8px;
}

.list-links {
  margin: 0;
}

.list-links--links {
  margin-top: -5px;
}

.list-links--links a {
  display: block;
  padding: 7px 0;
  color: rgba(33, 33, 33, 0.65);
  line-height: 1.1em;
}

.list-links--links a:hover {
  color: #601069;
}

.list-links--soc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.list-links--soc > li {
  margin-right: 15px;
}

.site-footer__copy {
  margin-top: 50px;
  margin-bottom: 0;
  text-align: center;
}

.site-footer__copy p {
  opacity: .45;
}

.schedule {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden;
  min-height: 250px;
}

.schedule__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 200%;
}

.schedule__inner > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.schedule__thankyou .poolicon-checkmark {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #00C853;
  width: 50px;
  height: 50px;
  border: 1px solid #00C853;
  border-radius: 50%;
  margin-bottom: 15px;
}

.form--schedule .form-control {
  height: 46px;
}

/*---- Misc ----*/
.iti {
  display: block;
}

.iti__country-list {
  color: #222;
}

.iti__country {
  -webkit-transition: .2s all;
  transition: .2s all;
  font-size: 14px;
}

.tooltipster-default .tooltipster-content {
  font-family: Akkurat, "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-size: 12px;
  line-height: 1.2em;
}

.tooltip.top .tooltip-arrow {
  display: none;
}

.tooltipster-default {
  border: none;
  background-color: #fff;
  font-size: 14px;
  color: #212121;
  -webkit-box-shadow: 0 2px 8px rgba(33, 33, 33, 0.1);
          box-shadow: 0 2px 8px rgba(33, 33, 33, 0.1);
}

.tooltip_content {
  display: none;
}

.apexcharts-yaxis-texts-g text,
.apexcharts-xaxis-texts-g text {
  fill: #fff;
}

.slick-dotted.slick-slider {
  margin-bottom: 50px;
}

.slick-dots {
  bottom: -45px;
}

.slick-dots li button {
  -webkit-transition: .2s all;
  transition: .2s all;
}

.slick-dots li button::before {
  -webkit-transition: .2s all;
  transition: .2s all;
  color: #212121;
  font-size: 6px;
  opacity: .15;
}

.slick-dots li.slick-active button::before {
  color: #212121;
  opacity: .65;
}

.slick-prev,
.slick-next {
  padding: 12px 10px;
  -webkit-transition: .2s all;
  transition: .2s all;
  width: auto;
  height: auto;
}

.slick-prev::before,
.slick-next::before {
  color: rgba(33, 33, 33, 0.35);
  -webkit-transition: .2s all;
  transition: .2s all;
  font-family: "poolicon";
}

.slick-prev:hover::before,
.slick-next:hover::before {
  color: rgba(33, 33, 33, 0.65);
}

@font-face {
  font-family: 'poolicon';
  src: url("../webfonts/poolicon.ttf?e0o769") format("truetype"), url("../webfonts/poolicon.woff?e0o769") format("woff"), url("../webfonts/poolicon.svg?e0o769#seedzicon") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="poolicon-"], [class*=" poolicon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'poolicon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.poolicon-ngo:before {
  content: "\e916";
}

.poolicon-gov:before {
  content: "\e917";
}

.poolicon-ent:before {
  content: "\e918";
}

.poolicon-uni:before {
  content: "\e919";
}

.poolicon-arrow-long:before {
  content: "\e915";
}

.poolicon-responsive:before {
  content: "\e914";
}

.poolicon-language:before {
  content: "\e910";
}

.poolicon-plagiarism:before {
  content: "\e911";
}

.poolicon-refaccuracy:before {
  content: "\e912";
}

.poolicon-refactuality:before {
  content: "\e913";
}

.poolicon-checkmark-circle:before {
  content: "\e90f";
}

.poolicon-arrow:before {
  content: "\e900";
}

.poolicon-arrow-alt:before {
  content: "\e901";
}

.poolicon-checkmark:before {
  content: "\e902";
}

.poolicon-email:before {
  content: "\e903";
}

.poolicon-location:before {
  content: "\e904";
}

.poolicon-phone:before {
  content: "\e905";
}

.poolicon-play:before {
  content: "\e906";
}

.poolicon-plus:before {
  content: "\e907";
}

.poolicon-quote:before {
  content: "\e908";
}

.poolicon-warning:before {
  content: "\e909";
}

.poolicon-x:before {
  content: "\e90a";
}

.poolicon-fb:before {
  content: "\e90b";
}

.poolicon-in:before {
  content: "\e90c";
}

.poolicon-li:before {
  content: "\e90d";
}

.poolicon-pooltext:before {
  content: "\e90e";
}

@media screen and (max-height: 1000px) {
  .site-side__branding {
    padding-bottom: 35px;
  }
}

@media screen and (min-width: 1100px) {
  .grid--location {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .grid--location .grid__item {
    margin-left: 15px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr;
        grid-template-columns: auto 1fr;
    -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    margin-left: 25px;
  }
  .grid--location .grid__item .grid__intro {
    min-height: inherit;
    margin-bottom: 0;
  }
  .grid--location .grid__img {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
    margin: 0;
    margin-left: -35px;
  }
  .grid--location .grid__stats {
    width: auto;
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 25px;
  }
  .grid--location .grid__content,
  .grid--location .grid__stats {
    padding-left: 25px;
    padding-right: 20px;
  }
}

@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
  .content .cblock .container {
    max-width: 1200px;
  }
  .content .cblock--promo .container {
    max-width: 1400px;
  }
  .modal-xl {
    max-width: 1140px;
  }
  .circbadge {
    right: -30px;
  }
  .signup {
    position: relative;
  }
  .signup__pop {
    margin: 0;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    text-align: center;
    background-color: #2D9BD7;
    padding: 12px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    position: absolute;
    right: -10px;
    top: -60px;
  }
  .signup__pop p {
    margin: 0;
    line-height: 1.1em;
    font-size: 13px;
    color: #fff;
  }
  .signup__pop .large {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    margin-right: auto !important;
  }
  .signup__pop hr {
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    margin: 12px auto;
    max-width: 40px;
    width: 100%;
  }
  .signup__popinner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (min-width: 1300px) {
  .container {
    max-width: 1400px;
  }
  .signup__pop {
    position: absolute;
    right: -50px;
    top: -60px;
  }
}

@media only screen and (max-width: 1300px) {
  .box--sideimgright .box__body--imgright .box__img img {
    max-width: 380px;
  }
  .box--sideimgleft .box__body--imgleft .box__img img {
    max-width: 420px;
  }
}

@media only screen and (max-width: 1200px) {
  .site-header .container {
    max-width: inherit;
  }
  .navbar-nav .nav-item {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .navbar-brand {
    padding-left: 0;
    margin-right: 0;
  }
  .navbar-brand i {
    font-size: 1.1em;
  }
  .cblock .p-slide__msg h1,
  .p-slide__msg h1 {
    font-size: 2.2em;
  }
  .cblock h1 {
    font-size: 2.2em;
  }
  .cblock h2 {
    font-size: 1.9em;
  }
  .hero-img {
    margin-bottom: 10px;
  }
  .block h5 {
    font-size: 1.6em;
  }
  .block .table {
    margin-top: 15px;
    font-size: .9em;
  }
  .block .table .stat-val {
    font-size: 1.4em;
  }
  .block__copy {
    font-size: .9em;
  }
  .block__head p {
    font-size: .9em;
    line-height: 1.3em;
  }
  .box--articletool .box__body {
    padding-right: 0;
  }
  .grid--nav .grid__copy {
    max-width: inherit;
    padding: 20px 18px;
  }
  .grid--nav .grid__copy h5 {
    font-size: 1.15em;
  }
  .site-footer__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    text-align: center;
  }
  .site-footer__col--branding,
  .site-footer__col--soc {
    width: 100%;
    text-align: center;
  }
  .site-footer__col--branding {
    padding-bottom: 35px;
  }
  .site-footer__branding {
    margin: 0 auto;
  }
  .site-footer__col--soc {
    padding-top: 35px;
    text-align: center;
  }
  .site-footer__about {
    text-align: center;
  }
  .list-links--soc {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .site-footer__copy {
    text-align: center;
  }
  .page-landing .p-slide__msg h1 {
    font-size: 2.4em;
    margin-left: auto;
    margin-right: auto;
  }
  .page-landing .cblock--ctalanding-authors .cblock__head {
    margin-bottom: 25px;
  }
  .page-landing .cblock--ctalanding-authors .cblock__head h2 {
    font-size: 2.4em;
  }
}

@media only screen and (max-width: 1100px) {
  .blocks--contact .block {
    width: calc(100% - 20px);
  }
}

@media only screen and (max-width: 991px) {
  body {
    padding-top: 50px;
  }
  .mobilebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .showmenu .site-header {
    left: 0;
    -webkit-box-shadow: 8px 0 20px rgba(33, 33, 33, 0.1);
            box-shadow: 8px 0 20px rgba(33, 33, 33, 0.1);
  }
  .showmenu .overlay {
    opacity: 1;
    visibility: visible;
  }
  .site-header {
    -webkit-transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 400ms cubic-bezier(0.23, 1, 0.32, 1);
    position: fixed;
    left: -250px;
    width: 250px;
    top: 0;
    height: 100vh;
    background-color: #fff;
    z-index: 50;
  }
  .site-header .navbar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    width: 100%;
    height: 100%;
  }
  .site-header > .container {
    display: block;
    height: 100%;
    padding: 0;
  }
  .site-header .dropdown-menu,
  .site-header .dropdown-menu--animated {
    display: none;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .site-header .dropdown-menu .dropdown-item,
  .site-header .dropdown-menu--animated .dropdown-item {
    text-align: center;
  }
  .navbar-brand {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 18px 25px;
    color: #601069;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .navbar-brand i {
    font-size: 1em;
  }
  .navbar-brand:hover {
    color: #601069;
  }
  .navbar-toggler {
    display: none;
  }
  .navbar-collapse {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    width: 100%;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
  }
  .navbar-nav {
    width: 100%;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow-y: auto;
  }
  .navbar-nav .nav-item {
    width: 100%;
    text-align: center;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .navbar-nav-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    padding: 15px 0;
  }
  .navbar-nav .nav-link,
  .imagetop .navbar-nav .nav-link {
    color: rgba(33, 33, 33, 0.85);
    font-size: 1.05em;
    padding: 15px 12px;
    text-align: center;
  }
  .navbar-nav .nav-link:hover,
  .imagetop .navbar-nav .nav-link:hover {
    color: #212121;
  }
  .navbar-nav .btn-primary,
  .imagetop .navbar-nav .btn-primary {
    min-width: 200px;
  }
}

@media only screen and (max-width: 992px) {
  body {
    padding-top: 50px;
  }
  .container {
    max-width: inherit;
  }
  .navbar-brand {
    padding: 35px 25px;
  }
  .navbar-brand .grass-valley-logo {
    width: 140px;
  }
  .navbar-brand .grass-valley-logo #type > * {
    fill: #000;
  }
  .navbar-brand .alyve-by-gv {
    width: 150px;
  }
  .navbar-brand .alyve-by-gv #main > * {
    fill: #000;
  }
  .navbar-brand .gp-by-gv #main > * {
    fill: #000;
  }
  .navbar-nav .nav-item {
    margin: 0;
  }
  .navbar-nav .btn-default {
    background-color: #601069;
    color: #fff;
  }
  .navbar-nav .btn-default:hover {
    background-color: #74137f;
    color: #fff;
  }
  .navbar-nav-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .cblock h1 {
    font-size: 3em;
    margin-bottom: 25px;
  }
  .cblock h2 {
    font-size: 1.9em;
  }
  .cblock {
    margin: 70px 0;
  }
  .cblock--bg {
    padding: 80px 0;
  }
  .cblock--main {
    padding-top: 55px;
    margin-bottom: 150px;
  }
  .cblock--promo,
  .cblock--contact {
    margin-top: 0;
    margin-bottom: 0;
  }
  .cblock__head {
    padding-left: 35px;
    padding-right: 35px;
  }
  .cblock__sect {
    font-size: 11px;
  }
  .cblock__highlight {
    font-size: 1.2em;
  }
  .promo-slider-ui {
    margin-bottom: -115px;
  }
  .grid--media {
    padding-left: 15px;
    padding-right: 15px;
  }
  .grid--dual {
    padding-left: 35px;
    padding-right: 35px;
  }
  .blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blocks .block {
    width: calc(100% - 20px);
  }
  .block .table .stat-val {
    font-size: 1.8em;
  }
  .grid__item .small {
    font-size: 13px;
  }
  .testimonial blockquote p {
    font-size: 1.15em;
  }
  .grid--nav {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
  }
  .grid--nav .grid__item {
    max-height: inherit;
    height: 250px;
    max-height: inherit;
    min-height: inherit;
  }
  .grid--nav .grid__copy h5 {
    margin-bottom: 12px;
  }
  .site-footer {
    padding-top: 50px;
  }
  .site-footer .site-footer__links,
  .site-footer .site-footer__connect {
    width: 100% !important;
  }
  .site-footer__links {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .site-footer__links > * {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-slide--contact {
    padding: 35px 0;
  }
  .contacts__inner {
    grid-gap: 35px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .addressbox {
    top: 0;
  }
  .container--cta {
    max-width: inherit;
  }
  .blogarticle__head h1 {
    font-size: 2.4em;
  }
  .page-nav .nav-item + .nav-item {
    margin-top: 24px !important;
  }
  .page-nav .nav-link {
    font-size: 14px;
    margin: 0;
  }
  .p-slide__landing {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .signup {
    max-width: inherit;
    margin-top: 35px;
  }
  .signup__pop {
    margin-bottom: 0;
  }
  .testimonials--landing {
    padding: 0 25px;
  }
  .testimonials--landing .testimonial__inner {
    margin: 0;
    padding: 0 25px;
  }
  .page-landing .featblocks {
    margin-top: 100px !important;
  }
  .page-landing .featblock {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-landing .featblock:nth-child(odd) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page-landing .featblock__img {
    max-width: 600px;
  }
  .fullsignup__promo {
    display: none;
  }
  .fullsignup__signup {
    width: 100%;
  }
  .about {
    padding: 0 25px;
  }
  .p-slide--gp {
    padding-bottom: 170px;
  }
  .p-slide--gp .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-slide__msg {
    max-width: 80%;
    padding-top: 35px;
    margin: 0 auto;
  }
  .p-slide__msg h1 {
    text-align: center;
  }
  .p-slide__showcase {
    margin-left: 0;
    margin-top: 25px;
  }
  .p-slide__mob {
    margin-top: -20px;
  }
  .interaction {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .interaction__promo {
    width: auto;
    padding-left: 0;
  }
  .interaction__slider .slide img {
    max-width: 55%;
  }
  .cblock--ctasimple .row-cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cblock--ctasimple .btn {
    margin-top: 30px;
  }
  .cblock--ctasimple .cblock__head,
  .cblock--ctasimple .cblock__body {
    text-align: center;
  }
  .grid--navgpalt .grid__item {
    height: 180px;
  }
  .grid--navgp {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
  }
  .grid--navgp .grid__item {
    height: auto;
  }
}

@media screen and (min-width: 769px) {
  .blocks--sponsors .block__copy {
    min-height: 180px;
  }
}

@media only screen and (min-width: 768px) {
  .grid--steps .grid__item {
    position: relative;
  }
  .grid--steps .grid__item:not(:last-child)::after {
    content: "";
    display: inline-block;
    width: 42px;
    height: 14px;
    background-image: url(../img/steps-arrow-hor.png);
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%;
    position: absolute;
    top: 50px;
    left: 90%;
  }
  .featblock:nth-child(odd) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 992px) {
  .scrolled .site-header,
  .scrolled.imagetop .site-header {
    background-color: #fff;
    -webkit-box-shadow: 0 8px 24px rgba(33, 33, 33, 0.1);
            box-shadow: 0 8px 24px rgba(33, 33, 33, 0.1);
  }
  .scrolled .site-header .btn-backHome,
  .scrolled.imagetop .site-header .btn-backHome {
    display: none;
  }
  .scrolled .navbar-nav,
  .scrolled.imagetop .navbar-nav {
    padding: 8px 0;
  }
  .scrolled .navbar-nav .nav-link,
  .scrolled.imagetop .navbar-nav .nav-link {
    color: rgba(33, 33, 33, 0.85);
    padding-left: .8rem;
    padding-right: .8rem;
  }
  .scrolled .navbar-nav .nav-link:hover,
  .scrolled.imagetop .navbar-nav .nav-link:hover {
    color: #601069;
  }
  .scrolled .navbar-nav .btn-default,
  .scrolled.imagetop .navbar-nav .btn-default {
    background-color: #601069;
    color: #fff;
  }
  .scrolled .navbar-nav .btn-default:hover,
  .scrolled.imagetop .navbar-nav .btn-default:hover {
    background-color: #74137f;
    color: #fff;
  }
  .scrolled .navbar-brand .grass-valley-logo,
  .scrolled.imagetop .navbar-brand .grass-valley-logo {
    width: 170px;
  }
  .scrolled .navbar-brand .grass-valley-logo #type > *,
  .scrolled.imagetop .navbar-brand .grass-valley-logo #type > * {
    fill: #000;
  }
  .scrolled .navbar-brand .alyve-by-gv,
  .scrolled.imagetop .navbar-brand .alyve-by-gv {
    width: 200px;
  }
  .scrolled .navbar-brand .alyve-by-gv #main > *,
  .scrolled.imagetop .navbar-brand .alyve-by-gv #main > * {
    fill: #000;
  }
  .scrolled .navbar-brand .gp-by-gv,
  .scrolled.imagetop .navbar-brand .gp-by-gv {
    width: 270px;
  }
  .scrolled .navbar-brand .gp-by-gv g > *,
  .scrolled.imagetop .navbar-brand .gp-by-gv g > * {
    fill: #000;
  }
  .cblock--intro h2 {
    margin-top: -70px;
  }
  .grid--steps .grid__item:not(:last-child)::after {
    width: 52px;
    top: 60px;
    left: 92%;
  }
  .page-blog .site-header {
    background-color: #fff;
  }
  .btn-lg {
    font-size: 1.12em;
    padding: 22px 40px;
  }
}

@media only screen and (max-width: 768px) {
  .cblock--intro {
    padding: 80px 0;
  }
  .section-head {
    max-width: 600px;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
  .btn {
    font-size: 12px;
  }
  .btn--wide {
    min-width: 240px;
  }
  .mobilebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .mobilebar .btn-primary {
    font-size: 12px;
    padding: 12px 10px;
  }
  .mobilebar__actions {
    padding-right: 3px;
  }
  .mobilebar__branding .grass-valley-logo {
    width: 110px;
  }
  .mobilebar__branding .gp-by-gv {
    width: 130px;
    height: auto;
  }
  .p-slide {
    padding: 0;
    min-height: 650px;
    background-image: url(../img/hero-mobile.jpg);
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 28px;
  }
  .p-slide::before {
    background-color: rgba(33, 33, 33, 0.2);
  }
  .p-slide--gp {
    background-image: url(../img/hero-gaming.jpg);
  }
  .p-slide__msg,
  .cblock .p-slide__msg {
    width: 100%;
    text-align: center;
    max-width: inherit;
    padding: 0 15px;
  }
  .p-slide__msg h1,
  .cblock .p-slide__msg h1 {
    font-size: 1.5em;
    margin-bottom: 9px;
  }
  .p-slide__msg p,
  .cblock .p-slide__msg p {
    font-size: .95em;
    line-height: 1.3em;
    margin-bottom: 15px;
  }
  .p-slide__cta .btn {
    min-width: 200px;
  }
  .cblock {
    margin: 50px 0;
  }
  .cblock h2 {
    font-size: 1.6em;
  }
  .cblock--bg {
    padding: 70px 0;
  }
  .cblock--promo {
    margin-top: 0;
    margin-bottom: 0;
  }
  .cblock--contact {
    margin-top: 0;
  }
  .cblock--cta {
    margin: 55px 0;
  }
  .cblock--cta .cblock__head,
  .cblock--cta .cblock__body {
    padding-left: 25px;
    padding-right: 25px;
  }
  .cblock--cta .cblock__head h2 {
    line-height: 1.35em;
    font-size: 1.7em;
  }
  .cblock__head {
    margin-bottom: 20px;
  }
  .cblock__head h2 {
    font-size: 1.6em;
  }
  .cblock__superhighlight {
    font-size: 1.2em;
  }
  .top-msg p {
    font-size: 1.05em;
  }
  .grid--feats {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .testimonial__inner {
    text-align: center;
  }
  .faq__head {
    padding: 25px 25px;
    padding-left: 45px;
    font-size: 1.1em;
  }
  .faq__head::before {
    margin-left: -30px;
    font-size: 13px;
  }
  .site-footer {
    font-size: .9em;
  }
  .site-footer h5 {
    margin-top: 40px;
    margin-bottom: 15px;
  }
  .site-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .site-footer__col--branding {
    padding-bottom: 35px;
  }
  .site-footer__col--branding .grass-valley-logo {
    width: 140px;
    height: auto;
  }
  .list-links--links {
    margin-top: 0;
  }
  .list-links--links a {
    padding: 12px 15px;
  }
  .contacts {
    padding: 35px 30px;
  }
  .contact i {
    width: 40px;
    height: 40px;
  }
  .contact--loc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .addressbox {
    display: none;
  }
  .p-slide--short {
    min-height: 300px;
    padding: 20px;
  }
  .page-nav,
  .page-tabs {
    display: none;
  }
  .form--nav {
    display: block;
  }
  .cblock--ctasimple {
    padding: 50px 20px;
  }
  .cblock--ctasimple .row-cols {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .cblock--ctasimple .cblock__head {
    text-align: center;
    padding: 0;
  }
  .cblock--ctasimple .cblock__head h2 {
    font-size: 1.6em;
    line-height: 1.35em;
  }
  .cblock--ctasimple .cblock__body {
    margin-left: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-top: 25px;
    text-align: center;
  }
  .cblock--ctasimple .cblock__body .btn {
    min-width: 240px;
  }
  .cblock--main {
    margin-bottom: 130px;
  }
  .grid--topfeats {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .grid--topfeats .grid__item {
    padding: 0;
  }
  .grid--topfeats .grid__img {
    width: 72px;
  }
  .grid--topfeats .grid__copy h4 {
    margin: 16px 0;
    font-size: 1.4em;
  }
  .grid--nav {
    margin-top: 45px;
    margin-bottom: 70px;
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
    grid-gap: 6px;
  }
  .grid--nav .grid__item {
    min-height: 64px;
    height: auto;
  }
  .grid--nav .grid__copy {
    padding: 15px 25px;
  }
  .grid--nav .grid__copy h5 {
    margin-bottom: 0;
    font-size: 1.2em;
  }
  .grid--nav .grid__copy p {
    display: none;
  }
  .grid--media {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-gap: 1px;
  }
  .cblock--getintouch {
    margin-top: -20px;
    background-image: url(../img/get-in-touch-bg-mobile.jpg);
    padding: 60px 0;
  }
  .grid--dual {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .grid--contact {
    margin-top: -200px;
  }
  .about {
    padding: 0 8px;
  }
  .list-aboutfeat {
    margin: 20px 0;
    margin-bottom: 35px;
  }
  .list-aboutfeat > li + li {
    margin-top: 20px;
  }
  .list-aboutfeat p {
    font-size: 1em;
  }
  .list-aboutfeat img {
    width: 36px;
  }
  .p-slide__showcase {
    margin-bottom: 0;
  }
  .p-slide__quote {
    margin-left: -80px;
  }
  .p-slide__msg,
  .cblock .p-slide__msg {
    padding-top: 95px;
    padding-bottom: 15px;
  }
  .p-slide__msg h1,
  .cblock .p-slide__msg h1 {
    margin-bottom: 18px;
  }
  .p-slide__msg .list-checks,
  .cblock .p-slide__msg .list-checks {
    text-align: left;
    margin-bottom: 0;
  }
  .p-slide__mob {
    margin-right: -40px;
  }
  .interaction__slider .slide img {
    max-width: 70%;
  }
  .grid--navgpalt .grid__item,
  .grid--navgpalt .grid__item.active {
    min-height: inherit;
  }
  .grid--navgpalt .grid__item .grid__copy h5,
  .grid--navgpalt .grid__item.active .grid__copy h5 {
    margin-bottom: 0;
  }
  .video-gallery {
    margin-top: 30px;
  }
  .video-slide__caption {
    padding-top: 4px;
    padding-bottom: 8px;
  }
  .video-slide__caption h5 {
    font-size: 1em;
    margin-bottom: 0;
  }
}

@media screen and (min-height: 900px) and (orientation: landscape) {
  .fullsignup__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .fullsignup__content {
    width: 100%;
    min-height: 620px;
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 480px) {
  .mobilebar .btn-primary {
    font-size: 10px;
    padding-left: 8px;
    padding-right: 8px;
  }
  .mobilebar__branding .grass-valley-logo {
    width: 96px;
  }
  .mobilebar__branding .alyve-by-gv {
    width: 110px;
  }
  .p-slide {
    min-height: 500px;
  }
  .p-slide__msg, .cblock .p-slide__msg {
    padding-left: 0;
    padding-right: 0;
  }
  .p-slide__msg h1, .cblock .p-slide__msg h1 {
    font-size: 1.4em;
  }
  .cblock__head {
    padding-left: 12px;
    padding-right: 12px;
  }
  .cblock__head h2 {
    font-size: 1.45em;
  }
  .cblock__highlight {
    font-size: 1.1em;
  }
  .grid--feats {
    margin-top: 30px;
  }
  .grid--feats .grid__item h5 {
    font-size: 1.15em;
  }
  .cblock--ctasimple {
    padding-left: 5px;
    padding-right: 5px;
  }
  .cblock--ctasimple .cblock__head h2 {
    font-size: 1.45em;
  }
  .p-slide__mob video {
    left: 12.5%;
    top: 11.5%;
  }
}
/*# sourceMappingURL=style.css.map */