/* EXPAND */
.expand-cell {
  /* margin: 20px 0;
  padding: 25px;
  border-radius: 5px; */
  margin: 25px 0;
  padding: 25px 25px 15px;
  border-radius: 5px;
  /* background-color: #c6d0d6; */
  height: calc(100% - 50px);
  box-shadow: none !important;
}
.expanding-row {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.expand-text-container, .expand-text {
  position: absolute;
}
.expand-text-container {
  transition: all 1s;
  /* background-color: #060c1d; */
  background-color: #0e2435;
  width: 100%;
  height: 100%;
  bottom:100%;
  overflow-y: auto;
  z-index: 2;
  left: 0;
  border: solid 2px #a6abaf;
}
.expand-title h3{
  font-size: 1.4rem;
  vertical-align: top;
  display: inline-block;
  line-height: 100%;
  margin-bottom: 25px;
  color: #c6d0d6;
}
.expand-title img {
  position: relative;
  float: left;
  margin-right: 25px;
  margin-left: 5px;
  width: 26px;
  height: 26px;
  margin-top: -2px;
}
.expand-title:before, .feature-title:before {
  content: "";
  background-color: #c6d0d6;
  border-radius: 50%;
  position: absolute;
}
.expand-title:before {
  width: 50px;
  height: 50px;
  top: -14px;
  left: -7px;
}
.feature-title:before {
  width: 60px;
  height: 60px;
  top: -4px;
  left: -12px;
}
.expand-cell p {
  margin-bottom: 0;
  /* color: #8b8f92; */
  color: #b5b8bb;
  font-size: .9rem;
}
.expand-text {
  width: 100%;
  padding: 40px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.expand-text li {
  margin-bottom: 5px;
}
.expand-text ul {
  padding-left: 20px;
}
.expand-text p {
  padding: 25px;
}
.close-button, .close-x {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}
.close-button {
  line-height: 40px;
  font-weight: bold;
  height: 50px;
  width: 95px;
  font-size: 1.2rem;
}
.close-button:hover {
  color: #f5f5f5;
}
.close-button:hover .close-x:before, .close-button:hover .close-x:after {
  background-color: #f5f5f5;
}
.close-x {
  height: 50px;
  width: 50px;
}
.close-x:before, .close-x:after {
  content: "";
  background-color: #c6d0d6;
  position: absolute;
  height: 5px;
  width: 20px;
  top: 20px;
  left: 15px;
}
.close-x:before {
  transform: rotate(45deg);
}
.close-x:after {
  transform: rotate(-45deg);
}
.close-button:hover, .expand-cell:hover {
  cursor: pointer;
}
.expand-cell:hover {
  background-color: #121a2f;
}
#home-features .expand-cell:hover {
  background-color: transparent;
  cursor: auto;
}
.feature-icon img {
  width: 40px;
  height: 40px;
  display: block;
}
.feature-icon {
  display: inline-block;
  background: #e8bc1f;
  padding: 15px;
  border-radius: 50%;
}
.select-feature h3 {
  margin-top: 10px;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.select-feature {
  margin: 15px auto 0;
  border-radius: 5px;
  padding: 10px 7px;
  text-align: center;
}
/* tablets and phones */
@media (max-width: 991px) {
  .expand-text-container, .expand-text {
    position: relative;
  }
  .expand-text-container {
    display: none;
    width: 100%;
    height: auto;
    bottom: auto;
    overflow-y: auto;
  }
  .expand-text {
    top: auto;
    left: auto;
    transform: none;
  }
}


/* SLIDE AND HIDE */
.slide-column {
  height: 280px;
  width: calc(33% - 50px);
  padding: 25px;
  margin:0 25px;
  position: absolute;
  top: 0;
  border-radius: 5px;
  left: -33%;
  background-color: #dfe3e6;
  color: black;
}
.slide-column .row {
  height: 100%;
}
.slide-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.slide-control:before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 4px);
  transform: translate(-50%, -50%);
  border-bottom: solid 8px transparent;
  border-top: solid 8px transparent;
  border-right: solid 10px #0e2435;
}
.slide-control:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-bottom: solid 8px transparent;
  border-top: solid 8px transparent;
  /* border-right: solid 10px #060c1d; */
  border-right: solid 10px #f5f5f5;
}
.slide-control:hover {
  cursor: pointer;
  background: #364d5f;
}
.slide-control:hover:after {
  border-right-color: #364d5f;
}
.slide-control:hover:before {
  border-right-color: white;
}
#slide-right:after, #slide-right:before {
  transform: translate(-50%, -50%) rotate(180deg);
}
#slide-right:before {
  left: calc(50% + 4px);
}
#slide-right {
  right: 0;
}
#slide-left {
  left: 0;
}
.slide-container {
  position: relative;
  padding: 0;
}
.slide-row {
  width: calc(100% - 100px);
  display: block;
  margin: 0 auto;
  height: 280px;
  position: relative;
  overflow: hidden;
}
/* tablets */
@media (max-width: 991px) {
  .slide-column {
    width: calc(50% - 40px);
  }
}
/* phones */
@media (max-width: 575px) {
  .slide-column {
    width: calc(100% - 40px);
  }
}

/* OVERRIDDE BOOTSTRAP */
@media (min-width: 1200px) {
  .container {
      max-width: 1200px;
  }
}
.btn-secondary {
  background-color: #c75f22;
  color: white;
  border: none;
}
.btn-secondary:hover {
  background-color: #9e5022;
}

/* GENERAL STYLES */
body, html {
  /* position: relative;
  margin: 0;
  padding: 0;
  background-color: #c6d0d6; */
  /* background-color: #060c1d; */
  background-color: #0e2435;
  color: #c6d0d6;
}
* {
  position: relative;
}
li, a, p, div, span {
  line-height: 160%;
}
h1 {
  color: #f5f5f5;
  font-weight: bold;
  font-size: 2.8rem;
}
h2, h3 {
  font-size: 2.2rem;
}
p, li {
  font-size: 1.2rem;
}
.center_column {
  width: 100%;
  max-width: 400px;
  display: inline-block;
  text-align: left;
}
.alert-header {
  text-align: center;
  width: 100%;
  padding: 10px;
  background-color: #c6d0d6;
  color: black;
  display: block;
  font-weight: bold;
  position: absolute;
  top: -200px;
  left: 0;
  right: 0;
}

form .btn {
  margin: 25px auto 0;
  display: block;
}
form label {
  margin-top: 10px;
}
#form_top_text {
  margin: 25px auto 50px;
}
#reset_frm {
  text-align: right;
  display: block;
  margin: 30px auto 50px;
  width: 100%;
  max-width: 450px;
  font-size: 1.4rem;
}
#reset_frm label {
  width: 100%;
  text-align: left;
  font-weight: bold;
}
#reset_frm input {
  width: 100%;
}
#reset_frm input, #reset_frm button {
  padding: 10px;
}
#reset_frm button {
  padding: 3px 20px;
  font-size: 1.4rem;
  margin-top: 20px;
  display: inline-block;
}
.forgotText {
  display: block;
  margin: 0 auto;
  text-align: center;
  width: 100%;
  max-width: 600px;
}
.btn {
  padding: 6px 20px;
}
.top-section {
  padding-top: 240px !important;
  margin-top: 0 !important;
}
.section {
  padding: 50px 0;
  position: relative;
}
#footer-logo {
  max-width: 200px;
  display: block;
  margin: 0 auto;
}
.footer-link {
  padding: 10px;
}
#footer .fab {
  padding: 10px;
  font-size: 2.5rem;
  margin: 50px 25px;
}
.underline {
  /* text-decoration: underline; */
}
a {
  /* color: #226cc7; */
  color: #2764c7;
}
.content-btn {
  padding: 10px 25px;
}
.dark-bg {
  /* background-color: #060c1d; */
  /* #182733 */
  background-color: #0e2435;
  padding: 50px;
  border-radius: 5px;
}
.padding-all {
  padding: 50px;
}
.color-white {
  color: #f5f5f5;
}
#price-section {
  padding: 30px 0;
}
.section-title {
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  color: #f5f5f5;
}
.section-header p {
  margin-bottom: 50px;
}
#page-header {
  margin-top: 0;
  padding-bottom: 0;
  padding-top: 220px;
}
#page-header .row {
  margin-top: 50px;
}
#page-header p {
  width: 100%;
  margin: 20px auto;
}
.main-bg {
  color: #f5f5f5;
  /* background: rgb(9,22,62);
  background:-moz-linear-gradient(rgba(9,22,62, 0.85), rgba(9,22,62, 0.85)), url(../img/banner-2.jpg);
  background:-webkit-linear-gradient(rgba(9,22,62, 0.85), rgba(9,22,62, 0.85)), url(../img/banner-2.jpg);
  background:linear-gradient(rgba(9,22,62, 0.85), rgba(9,22,62, 0.85)), url(../img/banner-2.jpg); */
  /* (rgba(44, 67, 86, 0.78), rgb(12, 47, 60)), url(../img/banner-2.jpg); */
  background: #0e2435;
  background: linear-gradient(rgba(80, 112, 138, 0.78), rgb(12, 47, 60)), url(../img/banner-2.jpg);
  background:-moz-linear-gradient(rgba(80, 112, 138, 0.78), rgb(12, 47, 60)), url(../img/banner-2.jpg);
  background:-webkit-linear-gradient(rgba(80, 112, 138, 0.78), rgb(12, 47, 60)), url(../img/banner-2.jpg);
  background-size: cover;
  background-position: bottom;
}
#top-logo {
  height: 100%;
  margin: 0;
  width: 300px;
}
#top-logo img {
  max-width: 100%;
  /* max-height: 180px; */
  width: 190px;
  max-height: 140px;
}
#top-nav .nav-item a {
  margin-left: 25px;
  color: white;
  font-size: 20px;
}
#copyright {
  padding: 10px;
  text-align: center;
}
.btn-primary {
  background-color: #134699;
  border-color: #134699;
}
.btn-outline-primary {
  border-color: #134699;
  color: #134699;
}
#top-nav .nav-item a:not(.btn-primary):hover {
  background-color: rgba(255,255,255,.1);
}
.hero-text, #devices {
  z-index: 5;
  position: relative;
}
#hero {
  padding: 80px 0;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#hero h1 {
  font-weight: bold;
  margin-bottom: 25px;
}
#hero .btn-outline-primary {
  margin-left: 25px;
}
#hero .hero-text {
  margin-top: -20px;
}
.hero-text .col-12 {
  padding: 0;
}
.hero-btn {
  margin: 25px 0 0;
}
#devices img {
  width: calc(100% - 30px);
  display: block;
  margin: 0  auto 0 30px;
}
#home-features {
  position: relative;
  z-index: 2;
}
#home-features .btn {
  margin: 0 10px;
}
#partners .partner-icon {
  max-width: 100%;
  margin: 25px auto 0;
}
#partners .col-4:nth-child(even) {
  margin-top: -50px;
}
#why-switch ul {
  padding-left: 35px;
}
#why-switch li span {
  display: block;
  font-size: .9rem;
  padding-left: 10px;
  /* color: #8b8f92; */
  color: #b5b8bb;
}
#why-switch li:before {
  content: '✓';
  position: absolute;
  left: -25px;
}
#why-switch li {
  list-style:none;
  margin-bottom: 10px;
}
#why-switch a {
  margin-top: 50px;
}
#top-nav {
  background-color: transparent;
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  padding: 25px;
}
.feature {
  border-radius: 5px;
  padding: 20px;
  color: #c6d0d6;
}
.feature-list li {
  font-size: 1rem;
  line-height: 180%;
}
.feature-list ul {
  margin-bottom: 0;
}
.feature-title {
  font-size: 2rem;
  color: #f5f5f5;
  padding: 0;
}
.feature-img, .feature-title {
  display: flex;
  align-items: center;
}
.feature-img img{
  float: left;
  margin-right: 35px;
  max-width: 35px;
  max-height: 35px;
}
.feature-description {
  padding: 20px 0;
  font-size: 1.2rem;
}
.feature-list ul {
  padding-left: 0;
}
.feature-details-container {
  margin-top: 0px;
  height: 500px;
  background: #f5f5f5;
  /* color: #060c1d; */
  color: #0e2435;
  border: solid 1px #f5f5f5;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
@media(min-width: 1200px) {
  .feature-details-container {
    height: 390px;
  }
}

.feature-details {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  top: -100%;
  margin: 0;
}
.feature-details ul {
  padding-left: 20px;
}
.feature-details ul li, .feature-details p {
  font-size: 1.1rem;
}
.feature-details h3, .feature-details p {
  text-align: center;
  margin-bottom: 20px;
}
.feature-details p  {
  width: 100%;
  margin: -15px auto 20px;
  line-height: 1.4rem;
}
.dark-feature {
  background: #0e0f10;
  color: white;
  padding: 15px 10px 5px;
  border-radius: 5px;
  width: 100%;
  margin-top: 10px;
}
.dark-feature p {
  margin: 0 auto 15px;
  color: #cdcdd6;
  line-height: 1.5rem;
  font-style: italic;
}
.dark-feature ul {
  max-width: 100%;
  width: 480px;
}
.click-instruction {
  text-align: center;
  width: 100%;
  display: block;
  color: #788394;
  margin-bottom: 30px;
  font-size: 14px;
  margin-top: -10px;
}
.opened-mobile-feature {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
}
.select-feature:hover {
  cursor: pointer;
  text-decoration: none;
  /* background: #1f2534; */
  background: #364d5f;
}
.select-feature:hover .feature-icon img {
  width: 40px;
  height: 40px;
}
.select-feature h3 {
  color: #c6d0d6;
}
.selected-feature-details {
  top: 50%;
  transform: translateY(-50%);
}
.previous-feature-details {
  transform: none;
  top: 150%;
}
.previous-feature-details, .selected-feature-details {
  transition: all 2s;
}
.price-container{
  margin: 0 auto 20px;
}
.price-row {
  text-align: center;
}
.price-bullets {
  display: inline-block;
  max-width: 420px;
  padding-left: 30px;
  margin-bottom: 0;
}
.price-bullets li {
  font-size: 1.3rem;
  text-align: left;
  margin-bottom: 10px;
}
.price-plus {
  margin: 10px auto;
  height: 40px;
  width: 100px;
  background: #f5f5f5;
  z-index: 2;
}
.price-plus:before, .price-plus:after {
  content: "";
  height: 30px;
  width: 8px;
  position: absolute;
  /* background: #060c1d; */
  background: #0e2435;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
.plus-line {
  height: 1px;
  margin: -30px auto 30px;
  background: gray;
}
.price-plus:after {
  height: 8px;
  width: 30px;
}
.price-label {
  color: #313131;
  padding-top: 5px;
  font-size: 1.2rem;
  line-height: 1.5rem;
  height: 3rem;
  vertical-align: middle;
}
.price-title {
  font-size: 1rem;
  text-align: center;
  margin-bottom: 0;
}
.price-description {
  color: #313131;
  text-align: center;
  font-size: 1rem;
  line-height: 1.3rem;
  padding: 10px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.price-disclaimer {
  margin-top: 30px;
  padding: 20px;
  width: calc(100% + 60px);
  margin-left: -30px;
  margin-bottom: -30px;
  background: #007bff;
  color: white;
  font-size: .9rem;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}
.price-box {
  padding: 20px 10px;
  background: #f5f5f5;
  border-radius: 5px;
  /* color: #007bff; */
  color: #134699;
  text-align: center;
}
.price-bullets-row .row .col-12 {
  text-align: center;
}
.price-box .subhead {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 0px;
  text-align: center;
}
.price-number {
  display: inline-block;
  /* color: #007bff; */
  margin: 5px 0;
  font-size: 3.5rem;
  line-height: 3.5rem;
  text-align: center;
}
.price-number sup {
  font-size: 2rem;
  margin-right: 2px;
}
.price-number span {
  font-size: 1.2rem;
}
.testimonial-picture {
  float: left;
  height: 60px;
  margin-left: 15px;
  width: 60px;
  border-radius: 50%;
}
.testimonial-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.testimonial-title {
  font-size: .9rem;
  color: #848484;
  /* color: #b5b8bb; */
}
.testimonial-author, .testimonial-title {
  margin-bottom: 0;
  padding-left: 90px;
}
#home-partners {
  padding: 40px 0;
}
#to-contact {
  color: #0e2435;
  background-color: #e1f1ff;
}
#to-contact .section-title {
  color: black;
  margin-bottom: 10px;
}
#to-contact .btn {
  margin-top: 25px;
}
#thanks .row {
  padding: 160px 20px 80px;
  text-align: center;
  color: white;
}
#thanks #checkmark {
  max-width: 140px;
  display: block;
  margin: 20px auto;
}
#to-contact, #home-reviews {
  background: #f5f5f5;
}
#home-reviews .section-title {
  color: black;
}
.contact-info {
  color: white;
  text-align: left;
}
.contact-info a {
  color: white;
}
.contact-column {
  display: inline-block;
  text-align: left;
  margin-bottom: 20px;
}
#page-header .contact-info p {
  margin: 0 auto;
  width: auto;
  max-width: 100%;
}
#page-header .contact-info .contact-label {
  margin-bottom: 5px;
  color: #e9bd1f;
}
.contact-form h1 {
  font-size: 2rem;
}
.contact-form #form_top_text {
  margin-top: 0;
}
#page-header .rainmaker-hero  .row{
  margin-top: 0;
}
.rainmaker-hero {
  padding: 40px 0;
  border-radius: 5px;
  color: #101010;
  background: #f5f5f5;
}
.rainmaker h2 {
  margin-bottom: 30px;
  color: #f5f5f5;
}
.rainmaker h2, .rainmaker h3 {
  font-size: 2.6rem;
}
.rainmaker .rainmaker-headline p {
  font-size: 1.6rem;
  margin: 0 auto !important;
}
.rainmaker-headline h1 {
  display: inline-block;
  font-size: 3.8rem;
  background: #e9bd1f;
  font-weight: 500;
  padding: 0px 20px;
  margin: 0 auto;
  color: black;
}
.rainmaker-features h2 {
  color: #e9bd1f;
  margin-bottom: 30px;
}
.rainmaker-features li {
  margin-bottom: 15px;
  font-size: 1.6rem;
  list-style-type: none;
}
.rainmaker-features li:before {
  content: "";
  position: absolute;
  left: -50px;
  top: 5px;
  width: 36px;
  height: 36px;
  background: #c1d0d6;
  background-repeat: no-repeat;
  border-radius: 50%;
  background-position: 8px;
  background-size: 20px;
  background-image: url(../img/icons/25h/plus.png);
}
.rainmaker-features span {
  display: block;
  width: 90%;
  color: #919ca2;
  font-size: 1rem;
  margin-top: 2px;
  margin-left: 0px;
}
.rainmaker-quote {
  background: #37444e;
  color: white;
}
.rainmaker .rainmaker-quote p {
  font-size: 1.6rem;
  font-style: italic;
}
.rainmaker-quote .rainmaker-author {
  color: #dee5e8;
  text-align: right;
  width: 100%;
  margin-bottom: 0;
  font-style: normal;
}
.rainmaker-date .rainmaker-headline h1 {
  margin-top: 5px;
  padding: 0 20px 15px;
  background-color: #27aae1;
  margin-bottom: 40px;
}
.rainmaker ul {
  padding-left: 50px;
}
.rainmaker-features, .rainmaker-about {
  padding-bottom: 0 !important;
}
.question-answer {
  text-align: center;
  background: #37444e;
  padding: 20px 0;
  margin-bottom: 20px;
}
.question-answer p {
  font-size: 1.3rem;
}
.question {
  font-weight: bold;
  color: white;
}
.rainmaker .answer {
  display: inline-block;
  font-size: 1.5rem;
  background: #c1d0d6;
  color: #0e2435;
  padding: 10px;
  margin: 10px auto 40px;
}
.quote-icon {
  background-repeat: no-repeat;
  max-height: 100%;
  width: 100%;
  height: 100%;
  margin: -5px auto 0;
  max-width: 40px;
  background-image: url(../img/icons/quote-mark.svg);
}
.phone-screenshot {
  display: block;
  margin: 0px auto;
  max-width: 100%;
  max-height: 490px;
}
#page-header .version-title {
  font-size: 2rem;
  text-align: center;
  font-weight: bold;
  margin: 10px auto;
  color: #3d4c58;
}
.comparison-device {
  max-width: 500px;
  display: block;
  margin: 0 auto;
  padding: 20px 40px 0;
}
.comparison-device img {
  max-width: 100%;
}
.vs-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vs-line p {
  background-color: #f5f5f5;
  font-size: 3rem;
  padding: 5px;
  z-index: 3;
  position: relative;
}
.vs-line:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 250px;
  background: gray;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.raining-section img:nth-child(2n) {
  left: 75%;
  animation-delay: 2.8s;
}
.raining-section img:nth-child(3n) {
  left: 60%;
  animation-delay: 3.5s;
}
.raining-section img:nth-child(4n) {
  left: 25%;
  animation-delay: .7s;
}
.raining-section img:nth-child(5n) {
  left: 10%;
  animation-delay: 2.1s;
}
.raining-section img:nth-child(6n) {
  left: 40%;
  animation-delay: 1.4s;
}
.raining-section .text-center {
  position: relative;
  z-index: 3;
}
.raining-section img {
  position: relative;
  margin-right: 25px;
  margin-left: 5px;
  position: absolute;
  left: 90%;
  width: 26px;
  height: 26px;
  margin-top: -100px;
  animation-name: fallingIcons;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  opacity: 0;
}
@keyframes fallingIcons {
  0% {
    opacity: 0;
    margin-top: -100px;
  }
  10% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  80% {
    opacity: 0;
    margin-top: 100px;
  }
  100% {
    opacity:  0;
    margin-top: 120px;
  }
}
.show-hero {
  min-height: 400px;
  background-image: url(../img/las-vegas.jpg);
  background-size: cover;
  background-position: 50% 30%;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
}
.overlay-color {
  background: rgba(0,0,0,.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
#show-hero-content {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* .virtual-tour-container a {
  padding: 10px 20px;
  display: inline-block;
  background: #134699;
  border-radius: 7px;
  font-size: 1.4rem;
  margin: 20px auto;
  color: white;
  font-weight: bold;
  letter-spacing: .2px;
} */

.virtual-tour-container a {
  margin-top: 20px;
  background-color: #004A7F;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  border: solid 2px #00bdff;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-block;
  font-family: Arial;
  font-size: 20px;
  padding: 5px 10px;
  text-align: center;
  text-decoration: none;
  -webkit-animation: glowing 1500ms infinite;
  -moz-animation: glowing 1500ms infinite;
  -o-animation: glowing 1500ms infinite;
  animation: glowing 1500ms infinite;
}
@-webkit-keyframes glowing {
  0% { background-color: #1d7ea7; -webkit-box-shadow: 0 0 3px #1d7ea7; }
  50% { background-color: #134699; -webkit-box-shadow: 0 0 20px #134699; }
  100% { background-color: #1d7ea7; -webkit-box-shadow: 0 0 3px #1d7ea7; }
}

@-moz-keyframes glowing {
  0% { background-color: #1d7ea7; -moz-box-shadow: 0 0 3px #1d7ea7; }
  50% { background-color: #134699; -moz-box-shadow: 0 0 20px #134699; }
  100% { background-color: #1d7ea7; -moz-box-shadow: 0 0 3px #1d7ea7; }
}

@-o-keyframes glowing {
  0% { background-color: #1d7ea7; box-shadow: 0 0 3px #1d7ea7; }
  50% { background-color: #134699; box-shadow: 0 0 20px #134699; }
  100% { background-color: #1d7ea7; box-shadow: 0 0 3px #1d7ea7; }
}

@keyframes glowing {
  0% { background-color: #1d7ea7; box-shadow: 0 0 3px #1d7ea7; }
  50% { background-color: #134699; box-shadow: 0 0 20px #134699; }
  100% { background-color: #1d7ea7; box-shadow: 0 0 3px #1d7ea7; }
}
@media (max-width: 1200px) {
  .testimonial-text {
    font-size: 1rem;
  }
}
/* lg and above */
@media (min-width: 991px) {
  .bg-dark {
    background: transparent;
    background-color: transparent!important;
  }
}
@media (max-width: 991px) {
  #top-nav .navbar {
    padding: 10px 15px !important;
  }
  #top-logo img {
    max-height: 100px;
  }
  #price-section h3 {
    font-size: 2rem;
  }
  .quote-icon {
    width: 40px;
    height: 33px;
    margin: 0 auto;
    margin-bottom: 33px;
  }
  #thanks .row {
    padding: 0px 10px;
  }
  .feature-details p, .feature-details ul li {
    font-size: .9rem;
  }
  #page-header {
    margin: 50px auto;
    padding-top: 0px;
  }
  #page-header h1 {
    margin-top: 0;
  }
  .feature-description {
    font-size: 1rem;
  }
  .price-bullets {
    padding-left: 40px;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
  }
  .price-bullets li {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  .feature-title {
    font-size: 1.4rem;
    padding: 0 10px;
  }
  .feature-img img {
    max-width: 25px;
    max-height: 25px;
  }
  .feature-title:before {
    left: -2px;
    top: -6px;
    height: 50px;
    width: 50px;
  }
  .feature-list li {
    text-align: left;
  }
  .feature-list ul {
    padding: 0;
    display: inline-block;
  }
  .feature-list {
    text-align: center;
  }
  .feature {
    padding: 20px 40px;
  }
  .expand-title-repeat {
    display: none;
  }
  .expand-cell {
    margin: 15px 0;
    height: calc(100% - 30px);
  }
  .bg-dark {
    background: #141f27!important;
    background-color: #141f27!important;
  }
  #top-nav .container {
    max-width: 100%;
    padding: 0;
  }
  #top-nav li {
    text-align: center;
  }
  #top-nav {
    position: relative;
    padding: 0;
  }
  #top-nav .nav-item a {
    padding: 20px;
  }
  #top-nav .navbar{
    padding: 15px;
  }
  .hero-text {
    text-align: center;
  }
  .section {
    padding: 40px 0;
  }
  #devices img {
    margin: 50px auto 0;
  }
  #top-nav .nav-item a {
    margin-left: 15px;
  }
  .padding-all {
    padding: 0;
    margin: 0 auto 50px;
  }
  .top-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .testimonial-bottom {
    padding: 0;
  }
  .testimonial-title, .testimonial-author {
    padding-left: 90px;
  }
  #hero {
    padding: 15px;
  }
  #home-partners p, #home-partners .section-title {
    text-align: center;
  }
  #home-form {
    padding-top: 50px;
  }
  .expand-text {
    padding: 0;
  }
  .expanding-row, .expand-text-container {
    overflow: visible;
  }
  .expand-text-container {
    border: none;
  }
  .expand-text ul {
    margin-bottom: 0;
    padding-left: 20px;
  }
  .expand-text ul {
    list-style-position: outside;
  }
  #footer .fab {
    margin: 25px 5px;
  }
  .footer-link {
    padding: 5px;
  }
  h1 {
    font-size: 2rem;
  }
  h2, h3 {
    font-size: 1.5rem;
  }
  p, li, a {
    font-size: 1rem;
  }
  .pricing-top {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 767px) {
  #top-logo {
    width: 145px;
    padding: 10px;
  }
  .feature-details-container {
    display: none;
  }
  .select-feature .col-12 {
    display: none;
  }
  .select-feature {
    border-radius: 0;
  }
  .select-feature p {
    text-align: left;
  }
  .opened-mobile-feature .col-12 {
    display: block;
  }
  .opened-mobile-feature .col-12 h3 {
    display: none;
  }
  .opened-mobile-feature li {
    text-align: left;
  }
  .opened-mobile-feature ul {
    margin-bottom: 0;
  }
  .opened-mobile-feature {
    margin: 0 auto;
    padding: 20px;
    background: #1f2534;
  }
  .expand-text {
    padding: 0;
    display: inline-block;
    text-align: center;
  }
  .expand-text .row {
    text-align: left;
  }
  .expand-text ul {
    width: 70%;
    padding: 0;
    margin: 0 auto;
  }
  .expand-text-container {
    border: none;
  }
  .expand-text li {
    text-align: left;
  }
  .expand-text {
    text-align: center;
  }
}
@media (max-width: 575px) {
  .rainmaker-features li:before {
    left: -42px;
    top: -2px;
    width: 30px;
    height: 30px;
    background-position: 7px;
    background-size: 16px;
  }
  .rainmaker li {
    margin-bottom: 25px;
  }
  .rainmaker-features span {
    display: block;
    color: #919ca2;
    font-size: 1rem;
    margin-top: 5px;
  }
  .rainmaker ul {
    padding-left: 45px;
    margin-bottom: 0;
  }
  .rainmaker-date {
    padding-top: 0;
  }
  .rainmaker .rainmaker-quote p, .rainmaker-features li {
    font-size: 1rem;
  }
  .rainmaker-headline h1 {
    font-size: 2.4rem;
  }
  .rainmaker-date .rainmaker-headline h1 {
    padding: 0 20px 8px;
  }
  .rainmaker-date {
    margin-bottom: 40px;
  }
  .rainmaker-headline p {
    text-align: left;
  }
  .rainmaker h2, .rainmaker h3 {
    font-size: 1.8rem;
  }
  .rainmaker .answer {
    font-size: 1.2rem;
  }
  .rainmaker .rainmaker-headline p, .rainmaker p {
    font-size: 1rem;
  }
  .rainmaker #page-header {
    margin: 20px auto;
  }
  .rainmaker-hero {
    padding: 20px 0 30px;
  }
  #page-header .version-title {
    display: none;
  }
  .comparison-device img {
    margin-top: 15px;
  }
  .phone-screenshot {
    margin: 20px auto;
  }
  .contact-form h1 {
    font-size: 1.8rem;
  }
  .main-bg {
    background: none;
  }
  #top-nav .btn {
    display: inline-block;
    min-width: 200px;
  }
  .contact-column {
    display: block;
    width: 250px;
    margin: 10px auto;
  }
  .slide-row {
    width: calc(100% - 40px);
    margin: 0 20px;
  }
  .slide-column {
    padding: 0;
  }
  .slide-column, .slide-row {
    height: 200px;
    padding: 20px;
  }
  #partners .col-4:nth-child(even), #partners .col-4:nth-child(odd) {
    margin-top: 0;
  }
}
