/* ==========================================================================
   1.General
   ========================================================================== */
   
html,
body { height: 100%; }

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.5;
  font-weight: 400;
  color: #848e92;
  font-size: 16px;
  overflow-x: hidden;
}

p {
  font-weight: 400;
  color: #848e92;
  font-size: 16px;
  line-height: 1.6;
}

p.meeting {
	font-weight: 400;
  	color: ##4030F2;
  	font-size: 16px;
  	line-height: 1.6;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  color: #091d25;
  line-height: 1.3;
}

a {
  color: #31aff5;
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  color: #30a7e9;
  text-decoration: none;
  
}

a:focus { outline: none; }

img {
  max-width: 100%;
  height: auto;
}

ul,
li {
  list-style: none;
  padding: 0;
  margin: 0;
}

b,
strong { font-weight: 700; }

.strike {
	text-decoration-line: line-through;
  	text-decoration-color: red;
  	text-decoration-thickness: 3px;
}

.emphasis {
	color:RoyalBlue;
	font-weight: 700;
}

.emphasis2 {
	background-color:steelblue;
	color:white;
	padding-left:9px;
	Padding-right:9px;

}

.emphasis3 {
	color:red;
	font-weight: 700;
}

.normalli{
	list-style:disc;
	padding:1px;
	margin-left: 30px;
}

s { 
  text-decoration-thickness: 4px;
  text-decoration-color:red;
}

dropdown:hover{
	color:red;
}
/* ==========================================================================
   2.Hero section
   ========================================================================== */ 


.hero-section {
  background: url(../img/andromeda.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}

.hero-section::before,
.content-wrapper::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
}

.hero-section::before { background: rgba(0, 0, 0, 0.45); }

.welcome-message { padding: 10.5em 15px 9em; }

.welcome-message h1,
.welcome-message h2 {
  color: #fff;
  line-height: 1.35;
}

.welcome-message h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
}

.welcome-message h2 {
  font-size: 20px;
  font-weight: 600;
}

.btn {
  padding: 1.25em 3em;
  color: #fff;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  background-color: #31aff5;
  line-height: 1.5;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  color: black;
  background-color: #30a7e9;
}

.btn:active,
.btn:focus,
.btn:active:hover,
.btn:active:focus {
  color: #fff;
  outline: none;
  background-color: #30a7e9;
}

.btn:active { opacity: .8; }

.btn-cta-hero {
  padding: 1.25em 3.0em;
  margin-top: 3em;
  font-size: 16px
}

/* ==========================================================================
   3.Navbar
   ========================================================================== */
   
.navbar-default {
  background-color: transparent;
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  padding: 1.5em 0;
  position: absolute;
  width: 100%;
  top: 0;
}

.navbar-brand > .logo-nav { display: none; }

.navbar-default .navbar-nav > li > a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 20px 15px;
}

.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus { color: rgba(210, 210, 210, 0.85); }

.btn-nav {
  background: rgba(255, 255, 255, 0.22);
  text-transform: none;
  letter-spacing: 0;
}

.navbar-default .navbar-nav > li > .btn-nav:hover,
.navbar-default .navbar-nav > li > .btn-nav:active,
.navbar-default .navbar-nav > li > .btn-nav:focus {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.navbar-nav > li,
.navbar-header { float: left; }

.navbar-right { float: right!important; }

.navbar-nav { margin: 6.5px -15px!important; }

.affix {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.98);
  z-index: 1000;
  padding: .75em 0;
  box-shadow: 0 0 8px 0px rgba(88, 88, 88, 0.19);
  -webkit-animation: slideInDown 1s both;
  animation: slideInDown 1s both;
}
 @-webkit-keyframes slideInDown {
 from {
 -webkit-transform: translate3d(0, -100%, 0);
 transform: translate3d(0, -100%, 0);
 visibility: visible;
 padding: 1.5em 0;
}
 to {
 -webkit-transform: translate3d(0, 0, 0);
 transform: translate3d(0, 0, 0);
 padding: .75em 0;
}
}
 @keyframes slideInDown {
 from {
 -webkit-transform: translate3d(0, -100%, 0);
 transform: translate3d(0, -100%, 0);
 visibility: visible;
 padding: 1.5em 0;
}
 to {
 -webkit-transform: translate3d(0, 0, 0);
 transform: translate3d(0, 0, 0);
 padding: .75em 0;
}
}

.navbar-default.affix .logo { display: none; }

.navbar-default.affix .logo-nav { display: block; }

.navbar-default.affix .navbar-nav > li > a,
.navbar-default.affix .navbar-nav > li > a:focus {
  color: #526066;
  font-weight: 600;
  background-color: transparent;
}

.navbar-default.affix .navbar-nav > li > a:hover,
.navbar-default.affix .navbar-nav > li > a:active,
 .mobile-nav-overlay ul li a:hover,
.mobile-nav-overlay ul li a:active,
.mobile-nav-overlay ul li a:focus,
.navbar-nav .active .fa-times:hover,
.navbar-nav .active .fa-times:active,
.navbar-nav .active .fa-times:focus {
  color: #31aff5;
  background-color: transparent;
}

.affix .navbar-nav > li > a.btn-nav {
  background: #31aff5;
  color: #fff;
}

.navbar-default.affix .navbar-nav > li > .btn-nav:hover,
.navbar-default.affix .navbar-nav > li > .btn-nav:active,
.navbar-default.affix .navbar-nav > li > .btn-nav:focus {
  background: #30a7e9;
  color: #fff;
}


/* ==========================================================================
   4.Navbar mobile
   ========================================================================== */
   
.navbar-nav .fa-2x { font-size: 1.5em; }

.navbar-nav #toggle {
  z-index: 100;
  cursor: pointer;
}

.navbar-nav .active .fa-bars,
.navbar-nav .fa-times { display: none; }

.navbar-nav .active .fa-times {
  display: block;
  color: #526066;
}

.mobile-nav-overlay {
  position: fixed;
  background: rgba(255, 255, 255, 0.98);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all .35s;
  overflow: auto;
  z-index: 15;
  display: none;
}

.mobile-nav-overlay.open { display: block; }

.mobile-nav-overlay.open li {
  -webkit-animation: fadeInRight .5s ease forwards;
  animation: fadeInRight .5s ease forwards;
  -webkit-animation-delay: .35s;
  animation-delay: .35s;
}

.mobile-nav-overlay.open li:nth-of-type(2) {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

.mobile-nav-overlay.open li:nth-of-type(3) {
  -webkit-animation-delay: .45s;
  animation-delay: .45s;
}

.mobile-nav-overlay.open li:nth-of-type(4) {
  -webkit-animation-delay: .50s;
  animation-delay: .50s;
}

.mobile-nav-overlay nav {
  position: relative;
  height: 40%;
  top: 40%;
  -webkit-transform: translateY(-70%);
  transform: translateY(-70%);
  font-size: 25px;
  font-weight: 400;
  text-align: center;
}

.mobile-nav-overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  position: relative;
  height: 20%;
  font-size:12px; /* Added by Havlice 6/17/23*/
}

.mobile-nav-overlay ul li {
  display: block;
  height: 25%;
  height: calc(100% / 5);
  min-height: 40px;
  position: relative;
  opacity: 0;
}

.mobile-nav-overlay ul li a {
  display: block;
  position: relative;
  color: #526066;
  text-decoration: none;
  overflow: hidden;
}
 @-webkit-keyframes fadeInRight {
 0% {
 opacity: 0;
 left: 20%;
}
 100% {
 opacity: 1;
 left: 0;
}
}
 @keyframes fadeInRight {
 0% {
 opacity: 0;
 left: 20%;
}
 100% {
 opacity: 1;
 left: 0;
}
}

/* ==========================================================================
   5.Benefits
   ========================================================================== */
   
.how-it-works .row:not(:last-child) { margin-bottom: 3em; }

.step-number {
  width: 68px;
  height: 68px;
  background: #31aff5;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  position: relative;
  margin: auto;
}

.step-number span {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.how-it-works .col-md-11 img { margin-bottom: 1.5em; }

.how-it-works h4 { font-size: 24px; }

/* ==========================================================================
   6. Features
   ========================================================================== */

.how-it-works .col-md-11,
.features,
.feature-list,
.faq-list,
.about-us-into,
.site-footer,
.copyright-terms,
.features-cta { text-align: center; }

.section-header { margin-bottom: 3em; }

.section-header h2 {
  font-size: 30px;
  margin-top: 0;
}

.section-header h3 {
  font-size: 20px;
  color: #6b777c;
  margin-bottom: 0;
}

.features .col-md-4 { overflow-y: hidden; }

.features div[class="col-sm-6"] img,
.feature-list img,
.feature-cta-list img {
  width: 55px;
  height: 55px;
}

.features h4 {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: 24px;
  letter-spacing: .5px;
}

.features .row-margin > .row,
.features .row-margin > .row > .col-sm-6,
.about-us-into .row > [class^="col-"] { margin-bottom: 1.5em; }

.features .row-margin > .row:last-child,
.features .row-margin > .row > .col-sm-6:last-child,
.feature-list [class^="col-"]:last-child,
.about-us-into .row > [class^="col-"]:last-child { margin-bottom: 0; }

.features .col-md-7 .section-spacing { padding: 3em 0 4.5em; }


/* ==========================================================================
   7.Learn more - Club Meetings
   ========================================================================== */
   
.learn-more .container > .row {
  margin-bottom: 3.75em;
  border-bottom: 1px solid #eeeff0;
  padding-bottom: 3em;
}

.learn-more .container > .row:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.learn-more h2 {
  font-size: 30px;
  margin: 48px 0 24px;
}

.learn-more h2 span {
  display: block;
  font-size: 16px;
  color: #848e92;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.learn-more-link {
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .3px;
}

.learn-more-link i {
  -webkit-transform: translateX(10px);
  transform: translateX(10px);
  transition: all .5s ease;
}

.learn-more-link:hover i {
  -webkit-transform: translateX(12px);
  transform: translateX(12px);
}

/* ==========================================================================
   8.cta
   ========================================================================== */



.cta h2 {
  font-size: 32px;
  margin: 0 0 36px;
  line-height: 1.6;
}

.cta h2 em {
  color: #31aff5;
  border-bottom: 3px solid #31aff5;
}

.cta h2 em,
.cta-footer h2 em {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.cta .btn {
  background: transparent;
  border: 2px solid #31aff5;
  color: #091d25;
}

.cta .btn:hover,
.cta .btn:active,
.cta .btn:focus,
.cta .btn:active:hover,
.cta .btn:active:focus {
  background: #31aff5;
  color: #fff;
}

/* ==========================================================================
   9.FAQ
   ========================================================================== */
   
.faq-list { margin: 0 0 .75em; }

.faq-list .col-sm-6 { margin-bottom: 2.25em; }

.faq h4 {
  font-size: 22px;
  margin-top: 0;
}

.faq-support {
  background-color: #31aff5;
  padding: 3.75em 0;
}

.faq-support h5,
.faq-support p { color: #fff; }

.faq-support h5 {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  margin-top: 0;
  letter-spacing: .2px;
}

.faq-support p { font-size: 18px; }

.faq-support .btn {
  display: block;
  width: 50%;
  margin: auto;
  padding: 1.25em 0;
}

.faq-support a:first-of-type { margin: 2.25em auto 20px; }

.faq-support a.btn i {
  padding-right: .5em;
  font-size: 19px;
}


/* ==========================================================================
    10.About us
   ========================================================================== */


.about-us-into {
  margin-top: 3em;
  margin-bottom: 3em;
  padding-bottom: 3em;
  border-bottom: 1px solid #eeeff0;
}

.about-us h4 {
  font-size: 18.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 12px;
}

.row.about-us-img-grid .row { margin: 0; }

.about-us-img-grid [class^="col-"] {
  padding: 0;
  overflow: hidden;
}

.about-us-img-grid [class^="col-"] img { border: 3px solid #fff; }


/* ==========================================================================
   11.Copyright terms
   ========================================================================== */
   
.copyright-terms { padding: 2.25em 0; }

.copyright-terms small,
.terms-privacy a {
  font-size: 14px;
  color: #9da8ae;
}

.copyright-terms small { margin-bottom: 12px; }

.copyright-terms small,
.terms-privacy li { display: inline-block; }
 .terms-privacy li:not(:nth-last-child(1) ) {
 margin-right: 21px;
}


/* ==========================================================================
   12.Small devices (tablets, 768px and up)
   ========================================================================== */
   
@media (min-width: 768px) {

h1,
h2,
h3,
h4,
h5,
h6,
.welcome-message h1,
.welcome-message h2 { line-height: 1.1; }

.welcome-message { padding: 14.25em 0 13.5em; }

.welcome-message h1 { margin-bottom: 36px; }

.btn-cta-hero { margin-top: 3.75em; }

.mobile-nav-overlay nav { font-size: 40px; }

.mobile-nav-overlay ul li { height: calc(100% / 4); }

.section-spacing { padding: 5.25em 0; }

.step-number { position: absolute; }

.how-it-works h4,
.how-it-works p { margin-left: 96px; }

.how-it-works .col-md-11,.features,
.feature-list,
.faq-list,
.about-us-into,
.site-footer,
.copyright-terms,
.features-cta { text-align: left; }

.features .row-margin > .row { margin-bottom: 2.25em; }

.features .container-fluid { width: 750px; }

.features .col-md-7 .section-spacing { padding: 3em 0 5.25em; }

.features .row-margin > .row > .col-sm-6,
.feature-list [class^="col-"],
.faq-list .col-sm-6:nth-last-child(1),
.faq-list .col-sm-6:nth-last-child(2),

.learn-more p { font-size: 18px; }

.cta h2 { font-size: 38px; }

.cta-info .section-spacing { padding: 3.75em 3em; }

.faq-list { margin: 0 0 3em; }

.about-us-into {
  margin-top: 3.75em;
  margin-bottom: 3.75em;
  padding-bottom: 3.75em;
}

.cta-footer h2 { font-size: 38px; }

.cta-footer .btn { margin: 3em auto 0; }

.feature-cta-list > li:not(:last-child ) { margin-bottom: 36px; }

.feature-cta-list > li > img { position: absolute; }

.feature-cta-list > li > p { margin-left: 80px; }

.feature-cta-list > li > h4 { margin: 0 0 12px 80px; }


#modal-contact-form .modal-body { padding: 3em; }

.logo-sl-page { padding: 4.5em 0 0; }

.cta-light form { padding: 46px; }

.copyright-terms { padding: 1.5em 0; }
}

/* ==========================================================================
   13.Small devices (tablets, 768px and up)
   ========================================================================== */
   
@media (min-width: 768px) {

h1,
h2,
h3,
h4,
h5,
h6,
.welcome-message h1,
.welcome-message h2 { line-height: 1.1; }

.welcome-message { padding: 14.25em 0 13.5em; }

.welcome-message h1 { margin-bottom: 36px; }

.btn-cta-hero { margin-top: 3.75em; }

.mobile-nav-overlay nav { font-size: 40px; }

.mobile-nav-overlay ul li { height: calc(100% / 4); }

.section-spacing { padding: 5.25em 0; }

.step-number { position: absolute; }

.how-it-works h4,
.how-it-works p { margin-left: 96px; }

.how-it-works .col-md-11,.features,
.feature-list,
.faq-list,
.about-us-into,
.features-cta { text-align: left; }

.features .row-margin > .row { margin-bottom: 2.25em; }

.features .container-fluid { width: 750px; }

.features .col-md-7 .section-spacing { padding: 3em 0 5.25em; }

.features .row-margin > .row > .col-sm-6,
.feature-list [class^="col-"],
.faq-list .col-sm-6:nth-last-child(1),
.faq-list .col-sm-6:nth-last-child(2),

.learn-more p { font-size: 18px; }

.cta h2 { font-size: 38px; }

.cta-info .section-spacing { padding: 3.75em 3em; }

.faq-list { margin: 0 0 3em; }

.about-us-into {
  margin-top: 3.75em;
  margin-bottom: 3.75em;
  padding-bottom: 3.75em;
}

.cta-footer h2 { font-size: 38px; }

.cta-footer .btn { margin: 3em auto 0; }

.feature-cta-list > li:not(:last-child ) { margin-bottom: 36px; }

.feature-cta-list > li > img { position: absolute; }

.feature-cta-list > li > p { margin-left: 80px; }

.feature-cta-list > li > h4 { margin: 0 0 12px 80px; }

.logo-sl-page { padding: 4.5em 0 0; }

.cta-light form { padding: 46px; }

/* ==========================================================================
   14. Medium devices (desktops, 992px and up) 
   ========================================================================== */
   
@media (min-width: 992px) {

.welcome-message { padding: 16.5em 0; }

.welcome-message h1 { font-size: 44px; }

.welcome-message h2 { font-size: 22px; }

.section-spacing { padding: 6em 0; }

.how-it-works .row:not(:last-child) { margin-bottom: 4.5em; }

.how-it-works .col-md-11 img { margin-bottom: 0; }

.section-header { margin-bottom: 3.75em; }

.features .row-margin > .row { margin-bottom: 3em; }

.features .col-md-7 .section-spacing { padding: 6em 0; }

.features .container-fluid { width: auto; }

.features > .container-fluid > .row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.features > .container-fluid > .row > [class*="col-"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.ie9 .features > .container-fluid > .row { display: table; }

.ie9 .features > .container-fluid > .row > [class*="col-"] {
  float: none;
  display: table-cell;
  vertical-align: top;
}

.ie9 .features .col-md-7 { padding-left: 8.33333333%; }

.features .feature-bg {
  background: url(../img/shasta.jpg) center center no-repeat;
  background-size: cover;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}


.learn-more .container > .row {
  margin-bottom: 6em;
  padding-bottom: 6em;
}

.learn-more figure { padding: 0 2em; }

.cta h2 { line-height: 1.75; }

.new-feature h3 { margin-top: 0; }

.feature-list > div[class^="col-"] img { position: absolute; }

.feature-list > div[class^="col-"] h3,
.feature-list > div[class^="col-"] p { margin-left: 90px; }

.cta-info .section-spacing { padding: 5.25em 3em; }

.cta-info .row { display: table; }

.cta-info [class*="col-"] {
  float: none;
  display: table-cell;
  vertical-align: top;
}

.cta-info .col-md-5 { padding-right: 0; }

.cta-info .col-md-7 {
  padding-left: 0;
  background: url(../img/cta-info.jpg) 0 0 no-repeat;
  background-size: cover;
  overflow: hidden;
  width: auto;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
  image-rendering: pixelated;
  -ms-interpolation-mode: nearest-neighbor;
}

.faq-list { margin: 1.5em 0 0; }

.about-us-into .row > [class^="col-"],

.about-us-into {
  margin-top: 4.5em;
  margin-bottom: 4.5em;
  padding-bottom: 4.5em;
}

.feature-cta-big-img {
  max-width: 1000px;
  position: relative;
  display: inline-block;
  vertical-align: top;
  right: 420px;
}

.feature-cta-list { margin: 48px 0; }

.cta-footer .btn {
  width: auto;
  margin: 0 0 0 48px;
  display: inline-block;
}

.footer-logo {
  margin-top: 1.5em;
  text-align: left;
}

@media (min-width: 473px) and (max-width: 768px) {

.how-it-works.section-spacing { padding: 4.5em 0 8.75em; }
}

@media (min-width: 768px) and (max-width: 1200px) {

.feature-cta-big-img { right: 500px; }
}

@media (min-width: 1800px) {

.features .col-md-offset-1 { margin-left: 5.33333333%; }
}

@media (min-width: 1300px) and (max-width: 1900px) {

.features .col-md-7 { width: 50%; }
}

@media (min-width: 1900px) {

.features .col-md-7 { width: 45.66666667%; }
}




