/*------baseTheme------*/
/*included Roboto */
@import url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap");
@font-face {
  font-family: Roboto, sans-serif;
  src: url("https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap");
  -webkit-font-smoothing: antialiased;
}
/* vars  */
*,
*:before,
*:after {
  box-sizing: border-box;
  clear: both;
}

html,
body {
  font-family: "Roboto", sans-serif !important;
  background: #151A1D;
  color: #fff;
  margin: 0;
  padding: 0;
  position: relative;
}

body {
  overflow-x: hidden !important;
}

main {
  overflow-x: hidden !important;
}
main section {
  overflow: hidden !important;
}

h3 {
  font-weight: bold;
  font-size: 30px;
}

/* buttons */
.btnCon {
  max-width: 300px;
  margin: 0 auto;
}

.btn {
  padding: 10px 20px;
  color: #fff;
  display: block;
  margin: 20px auto;
  font-size: 24px;
  max-width: 300px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .btn {
    margin: 20px auto;
    font-size: 18px;
    max-width: 200px;
  }
}
.btn:hover {
  color: #F0603D;
  background-color: #fff !important;
}

.primary {
  background-color: #F0603D !important;
}

.secondary {
  border: 1px solid #286A9B !important;
}

/* nav */
header {
  position: fixed;
  width: 100vw;
  z-index: 999;
}

nav {
  background: #000;
  color: #fff;
  padding: 8px 0;
}
nav ul {
  list-style-type: none;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
}
@media (max-width: 767px) {
  nav ul {
    padding: 0;
  }
}
@media (max-width: 320px) {
  nav ul {
    padding: 5px 5px 5px 5px;
    display: block;
  }
  nav ul li {
    display: inline-block;
  }
}
@media (max-width: 320px) {
  nav ul li {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }
  nav ul li img {
    max-width: 200px;
  }
  nav ul li ul li {
    width: 49%;
  }
}
nav ul li:first-child {
  flex-grow: 1;
  margin-left: 10px;
}
nav ul li:first-child .logo {
  width: 100%;
  max-width: 220px;
  height: auto;
}
@media (max-width: 767px) {
  nav ul li:first-child .logo {
    max-width: 100px;
  }
}
nav ul li:nth-child(2) a.btn {
  padding: 8px 20px;
  margin: 5px auto;
  font-size: 14px;
}
@media (max-width: 320px) {
  nav ul li:nth-child(2) a.btn {
    font-size: 12px;
  }
}
nav ul ul {
  align-self: flex-end;
}
@media (max-width: 320px) {
  nav ul ul {
    max-width: 100%;
  }
}
nav ul ul li {
  margin-right: 10px;
}
@media (max-width: 320px) {
  nav ul ul li {
    margin: 0 !important;
  }
}
nav ul ul li a {
  color: #fff;
  text-decoration: none;
  padding: 5px 20px;
}
@media (max-width: 767px) {
  nav ul ul li a {
    padding: 5px 10px !important;
    font-size: 14px;
  }
}
nav ul ul li a:hover {
  background-color: #fff;
  color: #F0603D;
}
nav ul ul.show-on-xs {
  display: none;
}
@media (max-width: 320px) {
  nav ul ul.show-on-xs {
    display: block;
  }
}

/*
    * And let's slide it in from the left
    */
#menuToggle input:checked ~ ul {
  transform: none;
}

/* helpers */
.textCenter {
  text-align: center !important;
}

.container {
  width: 100vw;
  max-width: 100vw;
  display: flex;
  align-items: center;
}

.row {
  width: 100%;
  max-width: 80vw;
  margin: 3em auto;
  position: relative;
}
@media (max-width: 1280px) {
  .row {
    max-width: 95vw;
  }
}
@media (max-width: 1024px) {
  .row {
    max-width: 98vw;
  }
}
@media (max-width: 1024px) {
  .row .grid-x {
    width: 95%;
    margin: 5em auto;
  }
}
.row footer {
  margin: 4em auto;
  text-align: center;
}
@media (max-width: 1024px) {
  .row footer {
    margin: 2em auto;
  }
}
.row footer h4 {
  text-align: center;
  margin-bottom: 1em;
}
.row header {
  position: relative;
  width: auto;
  margin: 3em auto;
  z-index: 10;
}
@media (max-width: 1280px) {
  .row header {
    width: 90%;
    margin: 2em auto;
  }
}
@media (max-width: 767px) {
  .row header {
    width: 98%;
    margin: 2em auto;
  }
}
.row header h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .row header h2 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .row header h2 {
    font-size: 1.95rem;
  }
}
.row header p {
  text-align: center;
  font-size: 1.25rem;
  font-weight: normal;
}
@media (max-width: 1024px) {
  .row header p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .row header p {
    font-size: 1rem;
    padding: 0px 1rem;
  }
}

.ipadUp {
  display: block;
}

.ipadDown {
  display: none;
}

@media (max-width: 769px) {
  .ipadUp {
    display: none;
  }

  .ipadDown {
    display: block;
  }
  .ipadDown h2 {
    font-size: 2rem;
    font-weight: bold;
  }
}
@media (max-width: 812px) and (orientation: landscape) {
  .ipadUp {
    display: none;
  }

  .ipadDown {
    display: block;
    padding-top: 30px;
  }
  .ipadDown h2 {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .ipadDown p {
    font-size: 14px;
  }
}
@media (max-width: 568px) and (orientation: landscape) {
  .ipadUp {
    display: none;
  }

  .ipadDown {
    display: block;
  }
  .ipadDown h2 {
    font-size: 1.5rem;
    font-weight: bold;
  }
  .ipadDown p {
    font-size: 14px;
  }
}
@media (min-width: 90em) {
  .xlarge-up-4 > .cell {
    width: 25% !important;
  }
}
/* hero

    .hero {
        background-color: $terciary;
        background: url(../images/golfballs-hero.jpeg) bottom center no-repeat;
        background-size: cover;
        height: calc(60vh + 93px);
        @media (max-width: 1366px) {
            height: calc(50vh);
            background-position: 0px 40px;
        }
        @media (max-width: 1024px) {
            background: url(../images/golfballs-hero.jpeg) -60px 50px no-repeat;
            background-size: cover;
            height: calc(55vh);
        }
        @media (max-width: 1024px) and (orientation: portrait) {
            background: url(../images/golfballs-hero.jpeg) -180px 50px no-repeat;
            background-size: cover;
            height: calc(35vh);
        }
        @media (max-width: 768px) {
            background: url(../images/golfballs-hero.jpeg) -140px 50px no-repeat;
            background-size: cover;
            height: calc(35vh);
        }
        @media (max-width: 767px) {
            background: url(../images/golfballs-hero.jpeg) 0px 60px no-repeat;
            background-size: contain;
            height: calc(65vh);
        }
        @media (max-width: 812px) and (orientation: landscape) {
            height: 100vh;
            background: url(../images/golfballs-hero.jpeg) -150px 40px no-repeat;
            background-size: cover;
        }
        @media (max-width: 667px) and (orientation: landscape) {
            height: 80vh;
            background: url(../images/golfballs-hero.jpeg) -90px 40px no-repeat;
            background-size: cover;
        }
        @media (max-width: 568px) and (orientation: landscape) {
            height: 100vh;
            background: url(../images/golfballs-hero.jpeg) -230px 20px no-repeat;
            background-size: cover;
        }
        @media (max-width: 375px) {
            height: calc(75vh);
        }
        @media (max-width: 320px) {
            background: url(../images/golfballs-hero.jpeg) 0px 90px no-repeat;
            background-size: contain;
            height: calc(100vh);
        }
        .row {
            @media (max-width: 1024px) {
                padding-top: 40px;
            }
            @media (max-width:768px) {
                padding-top: 10px;
            }
        }
        .btn {
            margin: 20px 0;
            @media (max-width: 767px) {
                margin: 20px auto;
            }
        }
        ul {
            max-width: 1920px;
            margin: 0 auto;
            list-style: none;
            display: flex;
            align-items: center;
            flex-direction: row;
            width: 98%;
            @media(max-width: 1024px) {
                width: 98%;
            }
            @media (max-width:414px) {
                flex-direction: column;
                text-align: center;
                padding: 180px 10px 0;
            }
            @media (max-width:320px) {
                padding: 150px 10px 0;
            }
            li {
                width: 50%;
                @media (max-width: 812px) and (orientation: landscape) {}
                @media (max-width: 767px) {
                    width: 100%;
                }
                @media (max-width: 568px) and (orientation: landscape) {
                    width: 40%;
                    align-self: flex-start;
                }
                @media (max-width: 667px) and (orientation: landscape) {
                    width: 50%;
                    align-self: flex-start;
                    .btn {
                        margin: 0;
                    }
                }
            }
            li:first-child {
                h2 {
                    font-size: 4rem;
                    font-weight: 800;
                    color: $white;
                    margin: 5px 0;
                }
                h4 {
                    text-transform: uppercase;
                    font-size: 1.87rem;
                    font-weight: 300;
                    letter-spacing: .15rem;
                    margin: 0px;
                }
                @media (max-width: 1366px) {
                    h2 {
                        font-size: 3rem;
                    }
                }
                @media (max-width: 1280px) {
                    width: 50%;
                    h2 {
                        font-size: 2.258rem !important;
                        margin: 10px auto;
                        padding: 0;
                    }
                    h4 {
                        font-size: 1rem !important;
                        margin: 0;
                        padding: 0;
                    }
                }
                @media (max-width:1024px) {
                    width: 50%;
                    h2 {
                        font-size: 2.85rem !important;
                        margin: 10px auto;
                        padding: 0;
                    }
                    h4 {
                        font-size: 1rem !important;
                        margin: 0;
                        padding: 0;
                    }
                }
                @media (max-width:767px) {
                    width: 100%;
                }
            }
        }
    }
*/
/*new hero*/
#gplp-hero header {
  background: url(https://s3.amazonaws.com/static.revolutiongolf.com/production/golfpass-slp/images/hero_bk.jpg);
  background-size: cover;
  padding-top: 50px;
  display: flex;
  align-content: center;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#gplp-hero header .hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  max-width: 1920px;
}
#gplp-hero header .hero .content {
  display: flex;
  flex-direction: column;
  padding: 40px;
  align-self: center;
}
#gplp-hero header .hero .content h2 {
  color: #fff;
  font-size: 4em;
  margin: 0;
}
#gplp-hero header .hero .content p {
  color: #fff;
  font-size: 24px;
}
#gplp-hero header .hero .content .btn {
  text-align: center;
  margin: 20px 0;
  text-transform: uppercase;
}
#gplp-hero header .hero-img img {
  width: auto;
  max-width: 100%;
}
@media (max-width: 1280px) and (min-width: 768px) {
  #gplp-hero header .hero .content {
    padding: 40px 20px;
    flex: 1;
  }
  #gplp-hero header .hero .content h2 {
    font-size: 2.5em;
  }
  #gplp-hero header .hero .content p {
    font-size: 18px;
  }
  #gplp-hero header .hero .hero-img {
    flex: 1;
  }
}
@media (max-width: 767px) and (min-width: 414px) {
  #gplp-hero header .hero {
    flex-direction: column;
    padding: 40px 10px;
  }
  #gplp-hero header .hero .content {
    order: 2;
    padding: 10px;
  }
  #gplp-hero header .hero .content h2 {
    font-size: 2.5em;
  }
  #gplp-hero header .hero .content p {
    font-size: 18px;
  }
  #gplp-hero header .hero .hero-img {
    order: 1;
  }
}
@media (max-width: 713px) and (min-width: 320px) {
  #gplp-hero header .hero {
    flex-direction: column;
    padding: 40px 10px;
  }
  #gplp-hero header .hero .content {
    order: 2;
    padding: 10px;
  }
  #gplp-hero header .hero .content h2 {
    font-size: 1.5em;
  }
  #gplp-hero header .hero .content p {
    font-size: 14px;
  }
  #gplp-hero header .hero .hero-img {
    order: 1;
  }
}

/* random */
.ribbon {
  background: #fff;
  width: 100vw;
  margin: 0 auto;
  text-align: center;
  padding: 2rem 0;
}
.ribbon .row {
  margin: 20px auto;
}
.ribbon h4 {
  font-size: 24px;
  font-weight: 500;
  color: #000;
  padding: 0 10px;
}
@media (max-width: 767px) {
  .ribbon h4 {
    font-size: 18px;
    padding: 2rem 1.12rem;
  }
}

/* instructor */
.instructor .cards {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  overflow: hidden !important;
  width: 100%;
  margin: 1% auto;
}
@media (max-width: 1024px) {
  .instructor .cards {
    align-items: stretch;
    width: 96%;
  }
}
.instructor .cards .item {
  background: #222A31;
  border: none;
  width: 23%;
  margin: 1%;
  overflow: hidden !important;
}
@media (max-width: 1280px) {
  .instructor .cards .item {
    width: calc(25% - 1.25rem) !important;
  }
  .instructor .cards .item:nth-child(odd) {
    margin: 0.625rem;
  }
  .instructor .cards .item:nth-child(even) {
    margin: 0.625rem;
  }
}
@media (max-width: 1023px) {
  .instructor .cards .item {
    width: calc(50% - 1.25rem) !important;
  }
  .instructor .cards .item:nth-child(odd) {
    margin: 0.625rem;
  }
  .instructor .cards .item:nth-child(even) {
    margin: 0.625rem;
  }
}
@media (max-width: 1023px) and (max-width: 320px) {
  .instructor .cards .item {
    width: 100% !important;
  }
}
.instructor .cards .item h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #48C5FF;
  margin: 5px 0;
  padding: 0;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .instructor .cards .item h2 {
    font-size: 24px;
  }
}
.instructor .cards .item span {
  display: block;
  font-size: 24px;
  color: #fff;
  font-weight: 300;
}
.instructor .cards .item p {
  display: block;
  font-size: 18px;
  color: #48C5FF;
  font-weight: normal;
  padding: 5px 0px;
  margin: 0px;
}
@media (max-width: 767px) {
  .instructor .cards .item h2 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
  }
  .instructor .cards .item span {
    display: block;
    font-size: 14px;
    color: #fff;
    font-weight: 300;
  }
  .instructor .cards .item p {
    display: block;
    font-size: 16px;
    color: #48C5FF;
    font-weight: normal;
    padding: 5px 0px;
    margin: 0px;
  }
}
.instructor .cards .item figure {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
.instructor .cards .item figure img {
  width: 100%;
}
.instructor .cards .item figure figcaption {
  padding: 10px;
  display: block;
}

/* Quotes */
.quote {
  background: #222A31;
  height: auto;
  position: relative;
  padding: 3em 0px;
}
.quote .row {
  max-width: 1024px;
}
.quote h2 {
  font-size: 42px;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media (max-width: 767px) {
  .quote h2 {
    font-size: 26px;
  }
}
.quote .author {
  font-size: 20px;
  font-weight: 600;
  text-align: right;
  position: relative;
  top: 20px;
}
@media (max-width: 1024px) {
  .quote .author {
    text-align: center;
  }
}
.quote .author:before {
  content: "-- ";
}
.quote blockquote {
  border: none;
  color: #fff;
  padding: 20px;
}
.quote blockquote:before {
  font-family: Georgia, "Times New Roman", Times, serif;
  position: absolute;
  left: -20px;
  top: 20px;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
@media (max-width: 1024px) {
  .quote blockquote:before {
    left: 10px;
  }
}
.quote blockquote:after {
  font-family: Georgia, "Times New Roman", Times, serif;
  position: absolute;
  right: -20px;
  bottom: 20px;
  content: close-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
@media (max-width: 1024px) {
  .quote blockquote:after {
    right: 10px;
  }
}

/* Rory section */
.rory {
  max-width: 100%;
}
.rory .cell {
  position: relative;
}
.rory .cell img {
  max-width: 100%;
  width: auto;
}

/* emmy */
.emmy .caption .title {
  color: #48C5FF;
}
.emmy .caption h3 {
  font-size: 24px;
  font-weight: bold;
}
@media (max-width: 1024px) {
  .emmy .caption h3 {
    font-size: 18px;
  }
}

/* Golfnow section*/
.golfnow {
  background: url("../images/golfnowBk.jpg") top center no-repeat;
  background-size: cover;
}
.golfnow .grid-x {
  justify-content: center;
  align-items: center;
}
@media (max-width: 1024px) {
  .golfnow .row {
    margin-bottom: 0em;
  }
}
.golfnow .cell .caption {
  padding: 1em;
}
.golfnow .cell .caption h3 {
  font-weight: bold;
  font-size: 24px;
}
.golfnow .cell .caption h3 span {
  font-weight: normal;
  font-size: 18px;
}
.golfnow .cell .caption .address {
  display: none;
}

.gallery-cell {
  height: auto;
  margin-right: 10px;
  background: #222A31 !important;
  border-radius: 4px;
  padding-bottom: 10px;
}
.gallery-cell label {
  position: relative;
}
.gallery-cell label img {
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 300px;
  width: 60%;
  height: auto;
}
.gallery-cell .caption {
  color: #fff;
  margin-left: 10px;
}
.gallery-cell .caption h3 {
  font-weight: bold;
  font-size: 1.5em;
  margin: 10px 0;
  padding: 0;
}
.gallery-cell .caption h3 span {
  font-weight: normal;
  display: block;
}
.gallery-cell .caption .review ion-icon {
  color: #77BC43;
}

.gallery-cell img {
  width: 100%;
  max-width: 100%;
}

/*! Flickity v1.0.0
http://flickity.metafizzy.co
---------------------------------------------- */
/* cell number */
@media (max-width: 1025px) {
  .show-on-large {
    display: none;
    opacity: 0;
  }

  .show-on-mobile {
    display: block;
    opacity: 1;
  }
}
@media (min-width: 1026px) {
  .show-on-large {
    display: block;
    opacity: 1;
  }

  .show-on-mobile {
    display: none;
    opacity: 0;
  }
}
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 1025px) {
  .flickity-slider .gallery-cell {
    width: 55%;
    min-height: 100%;
  }
}
@media (max-width: 767px) {
  .flickity-slider .gallery-cell {
    width: 85%;
  }
}
@media (max-width: 740px) and (orientation: landscape) {
  .flickity-slider .gallery-cell {
    width: 55%;
  }
}
@media (max-width: 320px) {
  .flickity-slider .gallery-cell {
    width: 90%;
  }
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: white;
  background: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  /* vertically center */
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flickity-prev-next-button:hover {
  background: white;
}

.flickity-prev-next-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px #09F;
}

.flickity-prev-next-button:active {
  filter: alpha(opacity=60);
  /* IE8 */
  opacity: 0.6;
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button:disabled {
  filter: alpha(opacity=30);
  /* IE8 */
  opacity: 0.3;
  cursor: auto;
}

.flickity-prev-next-button svg {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-prev-next-button .arrow {
  fill: #333;
}

/* color & size if no SVG - IE8 and Android 2.3 */
.flickity-prev-next-button.no-svg {
  color: #333;
  font-size: 26px;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  filter: alpha(opacity=25);
  /* IE8 */
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  filter: alpha(opacity=100);
  /* IE8 */
  opacity: 1;
}

/*courses non mobile*/
.courses {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: columns;
  align-content: center;
  justify-content: center;
}
.courses .course {
  background: #222A31;
}
.courses .course .caption {
  padding: 10px;
}
.courses .course:nth-child(odd) {
  margin-top: 20%;
  background: red;
}
.courses .course:nth-child(even) {
  background: blue;
}

.cell .card {
  background: #222A31;
  color: #fff;
  border: none;
  border-radius: 1%;
}
.cell .card ion-icon {
  color: #77BC43;
}

/* watch anytime */
.watchAnyTime {
  background: #222A31;
  height: auto;
  position: relative;
}
@media (max-width: 767px) {
  .watchAnyTime {
    height: auto;
  }
}
.watchAnyTime .row {
  max-width: 1280px;
  width: 80vw;
}
@media (max-width: 767px) {
  .watchAnyTime .row {
    width: 95vw;
  }
}

/* benefits section */
.benefits {
  /*samsung s9 query*/
}
.benefits .tag {
  background-color: #286A9B;
  padding: 0.5em 1.5em;
  color: #fff;
  font-size: 18px;
  text-align: center;
  margin-bottom: 1em;
  display: inline-block;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .benefits .tag {
    padding: 0.5em 1em;
    font-size: 16px;
  }
}
.benefits .grid-x {
  margin: 6em auto;
  max-width: 1280px;
}
@media (max-width: 1024px) {
  .benefits .grid-x {
    margin: 3em auto;
  }
}
.benefits p {
  text-align: left;
}
@media only screen and (-webkit-min-device-pixel-ratio: 4), only screen and (min--moz-device-pixel-ratio: 4), only screen and (-o-min-device-pixel-ratio: 4/1), only screen and (min-device-pixel-ratio: 4), only screen and (max-resolution: 570dpi), only screen and (-resolution: 4dppx) {
  .benefits {
    /* Retina styles here */
  }
  .benefits .cell {
    width: calc(100% - 1.875rem);
  }
  .benefits .small-order-1 {
    order: 1;
  }
  .benefits .small-order-2 {
    order: 2;
  }
  .benefits .flickity-slider .gallery-cell {
    width: 35%;
  }
}

/* FAQ */
.FaqWidget {
  display: block;
  padding: 60px 40px;
}
@media (max-width: 1920px) {
  .FaqWidget {
    max-width: 1660px;
    margin-left: auto;
    margin-right: auto;
    padding: 80px 40px;
  }
}
@media (max-width: 1660px) {
  .FaqWidget {
    max-width: 1440px;
  }
}
@media (max-width: 1440px) {
  .FaqWidget {
    max-width: 1280px;
  }
}
.FaqWidget-title {
  font-size: calc($size / 10 * 1rem);
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.FaqWidget-content {
  margin-top: 30px;
}
.FaqWidget-callToAction {
  margin-top: 30px;
  text-align: center;
  font-size: calc($size / 10 * 1rem);
  font-weight: bold;
}
.FaqWidget-button .Button {
  margin: 0 auto;
}
.FaqWidget .FaqQuestionAndAnswer:not(:last-child) {
  margin-bottom: 15px;
}
.FaqWidget .FaqQuestionAndAnswer-question {
  font-size: calc($size / 10 * 1rem);
  font-weight: bold;
  background: #222A31;
  padding: 20px;
  position: relative;
  cursor: pointer;
}
.FaqWidget .FaqQuestionAndAnswer-question:after {
  position: absolute;
  content: "+";
  right: 20px;
  color: #fff;
  font-size: 24px;
  top: 25%;
}
.FaqWidget .FaqQuestionAndAnswer-question.active:after {
  content: "-";
}
.FaqWidget .FaqQuestionAndAnswer-question p {
  margin: 0;
}
.FaqWidget .FaqQuestionAndAnswer-answer {
  display: none;
  padding: 20px 20px 40px 20px;
  min-height: 100px;
  background: #2F404C;
  color: #fff;
}
.FaqWidget .FaqQuestionAndAnswer-answer p {
  margin: 0;
}
.FaqWidget .FaqQuestionAndAnswer-answer a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}
.FaqWidget .FaqQuestionAndAnswer-answer .small {
  font-size: 14px;
  font-style: italic;
  letter-spacing: 1px;
}

/*testimonials video*/
video {
  width: 100% !important;
  height: auto !important;
}

.gp-video {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.gp-video #golfpass-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*footer bk*/
.footerbk {
  height: 50vh;
  background: url(../images/footerBk.jpg) top center no-repeat;
  background-size: cover;
  align-items: flex-end;
}
@media (max-width: 1023px) {
  .footerbk {
    height: auto;
    background-size: contain;
  }
}
@media (max-width: 768px) {
  .footerbk {
    height: auto;
  }
}
.footerbk .cell {
  max-width: 40%;
}
@media (max-width: 1440px) {
  .footerbk .cell {
    max-width: 70%;
  }
}
@media (max-width: 1024px) {
  .footerbk .cell {
    max-width: 60%;
  }
}
@media (max-width: 768px) {
  .footerbk .cell {
    max-width: 95%;
  }
}
@media (max-width: 1024px) {
  .footerbk h3 {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .footerbk h3 {
    font-size: 18px;
  }
}

/*footer*/
.footer {
  overflow-x: hidden !important;
  background: #000;
}

/*# sourceMappingURL=main.css.map */
