/* Animations */
.slide-effect {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  100% {
    transform: translateY(-40px);
    opacity: 1;
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  100% {
    transform: translateY(-40px);
    opacity: 1;
  }
}

@keyframes reveal {
  0% {
    transform: translate(0, 100%);
    transform: translate(0px, 20px);
    opacity: 0;
  }

  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}

.reveal {
  animation: reveal 1.5s cubic-bezier(0.22, 0.65, 0.355, 1) 0.5s;
  opacity: 1;
  display: block;
  /*overflow: hidden;*/
}

.reveal-image {
  animation: reveal-image 1.5s cubic-bezier(0.22, 0.65, 0.355, 1) 0.5s;
  opacity: 1;
  display: block;
  overflow: hidden;
}

@keyframes reveal-image {
  0% {
    transform: translate(0px, 20px);
    opacity: 0;
  }

  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}

/* Styles */

.super-epic body{
  padding-top: 80px;
}

body {
  font-family: 'DM Sans';
  overflow-x: hidden;
  letter-spacing: -0.01em;
}

img {
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  /*image-rendering: -webkit-optimize-contrast;*/
  image-rendering: crisp-edges;
  /*-ms-interpolation-mode: nearest-neighbor;*/
  -ms-interpolation-mode: bicubic;
}

.h-100{
  height: 100% !important;
}

/* Backgrounds */
.bg-red {
  background: #FF4B53;
}

.bg-dark-red {
  background: #E01E22 !important;
}

.bg-dark-blue {
  background: #151829;
}

.bg-dark-blue-gradient {
  background: linear-gradient(to right, #151829, #06B8EC);
}

.bg-gray {
  background-color: #F5F5F7;
}

.bg-grayer {
  background-color: #E6E5E6;
}

.bg-lighter-gray {
  background-color: #4C4D50 !important;
}

.bg-lighter-grayish{
  background-color: #424242 !important;
}

.bg-dark-gray {
  background: #272727 !important;
}

.bg-yellow {
  background-color: #FFD325 !important;
}

/* Colors */
.text-light-gray {
  color: #cccccc;
}

.text-lighter {
  color: #f8f9fa !important
}

.text-gray {
  color: #b3b3b3;
}

.text-dark-gray {
  color: #5E6276 !important;
}

.text-blue {
  color: #06B8EC;
}

.text-turquoise {
  color: #3BC4A8;
}

.text-l-red {
  color: #FF636A;
}

.text-red {
  color: #FF4B53;
}

.text-purple {
  color: #A870FE;
}

.text-l-purple {
  color: #A870FE;
}

.text-yellow{
  color: #FFD325 !important
}

.main-text-gray {
  color: #b3b3b3;
}

/* Spacing */
.m-10 {
  margin: 10px !important;
}

.m-20 {
  margin: 20px
}

.mb-16{
  margin-bottom: 16px !important;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-36 {
  margin-bottom: 36px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.pl-16{
  padding-left: 16px !important;
}

.pt-20 {
  padding-top: 20px
}

.pb-20 {
  padding-bottom: 20px;
}

.pt-40 {
  padding-top: 40px
}

.pb-40 {
  padding-bottom: 40px;
}

.pt-60 {
  padding-top: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pt-80 {
  padding-top: 80px
}

.pb-80 {
  padding-bottom: 80px;
}

.py-100{
  padding-top:100px !important;
  padding-bottom: 100px !important;
}

/* .pb-280{
  padding-bottom: 280px !important;
} */

/* Shadows */

.shadowb-big {
  box-shadow: 0 41px 73px rgba(26, 32, 60, .5);
}

/* Typography */
h2 {
  text-align: center;
  font-size: 50px;
  line-height: 55px;
  margin-bottom: 30pt;
  margin-top: 60px;
  font-style: normal;
  font-weight: 500;
}

p {
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 36px;
}


.main-text {
  font-size: 18px;
  line-height: 23px;
  font-style: normal;
  font-weight: 400;
}

/*Buttons*/
.tiktok-button {
  border-color: #232A3D;
  border-radius: 30px;
  border: 0px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #232A3D;
  color: white;
}

.tiktok-button:hover {
  background-color: #0b5ed7;
}

/*Hero*/

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.background-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* Hero headline section */
.hero-headline h3,
#hero-headline h3 {
  font-size: 25pt;
  line-height: 30px;
  margin-bottom: 30pt;
  margin-top: 60px;
  font-style: normal;
  font-weight: 500;
}

.brand-header {
  margin-top: 30pt;
  font-size: 60pt;
  line-height: 1;
  font-weight: 700;
}

.pilot .brand-header{
  letter-spacing:normal;
}

.david-guetta-section,
.testimonial-section {
  background-color: #232a3d;
  color: #ffffff;
}

.hero-quote {
  text-align: left;
  margin-top: 24pt;
}

.david-guetta-header {
  text-align: left;
  margin-top: 28pt;
}

.david-guetta-quote {
  text-align: left;
  font-size: 14pt;
}

.hero-video {
  background-color: white;
  width: 100%;
}

.headline {
  font-style: normal;
  font-weight: 400;
}

/* Product list section */
#product-list-section,
#horsepower {
  text-align: center;
  margin-top: 28px;
  margin-bottom: 28px;
}

/* Feature headings and description */
.feature-headings,
.feature-numbers {
  font-size: 30pt;
}

.feature-description {
  font-size: 18pt;
}

.feature-image {
  max-height: 280px;
  border-radius: 10px 0 0 0;
}

.order-now-button {
  border-color: black;
  border-radius: 30px;
  border: 0px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #FF4B53;
  color: white;
  transition: all .5s;

}

.order-now-button:hover {
  background: #ef303a !important;
  color: white;
  transition: all .5s;
}

.navbar .order-now-button:hover {
  box-shadow: 0 0 13px 5px #ef303a !important;
}

.pilot .download-button {
  border-radius: 30px;
  border: 0px;
  padding-left: 30px;
  padding-right: 30px;
  color: black;
}

.download-button:hover,
.action-button:hover{
  background: #c1464d !important;
}

/* Plugins section */
#plugins,
#five-connected-plugins {
  background-color: #232a3d;
  padding-bottom: 50px;
}

#plugins h2,
#five-connected-plugins h2 {
  color: white;
  font-size: 60px;
}

.new-outline {
  text-align: center;
  border: 2px solid black;
  border-radius: 30px;
  padding-top: 10px;
  padding-left: 25px;
  padding-right: 25px;
  padding-bottom: 10px;
  margin-top: 30px;
  font-weight: 500;
}

#organized-by-genre {
  margin-top: 60px;
}

#dark-background {
  padding-top: 60px;
  background-color: #232a3d;
}

#dark-background,
#testimonials {
  padding-top: 60px;
  background-color: #232a3d;
}

.dark-background {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #232a3d;
  color: white;
}

.light-background {
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: white;
  color: black;
}

.section-headline {
  margin-top: 16px;
  font-weight: 600;
}

.plugin-names {
  margin-top: 30px;
}

.plugin-description {
  color: white;
  font-weight: 400;
  font-size: 14pt;
  margin-top: 16px;
}

.regular-button {
  border-radius: 30px;
  margin-top: 16px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}

.captainchords-button,
.captainmelody-button,
.captaindeep-button,
.captainbeat-button,
.captainplay-button {
  color: white;
  border: 2px solid white;
  border-radius: 30px;
  margin-top: 16px;
  padding-left: 30px;
  padding-right: 30px;
  text-align: center;
}

.captainchords-button:hover {
  color: #06B8EC;
  border: solid 2px #06B8EC;
}

.captaindeep-button:hover {
  color: #ff636a;
  border: solid 2px #ff636a;
}

.captainplay-button:hover {
  color: #a870fe;
  border: solid 2px #a870fe;
}

.captainbeat-button:hover {
  color: #ff4b53;
  border: solid 2px #ff4b53;
}

.captainmelody-button:hover {
  color: #3bc4a8;
  border: solid 2px #3bc4a8;
}

.genre-header {
  text-align: left;
}

.dark-section {
  background-color: #151829;
  color: white;
  padding-top: 60px;
  padding-bottom: 60px;
}

.dark-feature,
.light-feature {
  border-top: solid 5px #06B8EC;
  border-radius: 5px;
  padding-top: 30px;
  /* padding-bottom: 30px; */
  padding-right: 0;
  padding-left: 0;
  text-align: left;
}

.dark-feature {
  background-color: #424A61;
  color: white;
}

.light-feature {
  background-color: #F5F5F7;
  color: black;
}

.light-feature h4,
.dark-feature h4 {
  font-size: 30px;
  margin-bottom: 20px;
  margin-left: 10px;
  margin-right: 10px;
}


/* NEW */
.light-feature p,
.dark-feature p {
  display: inline-block;
  margin-left: 10px;
  margin-right: 10px;
}

.action-button {
  background-color: red;
}

.testimonial-header {
  margin-top: 20px;
  margin-bottom: 20px;
}

.testimonial-quote {
  margin-bottom: 20px;
}

.footer-class {
  background-color: #232a3d;
  color: #efefef;
}

.content-tile {
  padding: 30px;
  font-size: 18px;
  line-height: 23px;
  height: 100%;
}

.content-tile h4 {
  margin-bottom: 16px;
}

.content-tile i {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: black;
  color: white !important;
  margin-right: 10px;
  font-size: 28px !important;
  cursor: pointer;

}

.content-tile i:hover {
  background-color: white;
  color: black !important;
  transition: all .5s;
}

.content-tile-light {
  color: #212529;
  background-color: #F5F5F5;
  border-radius: 6px;
  padding: 30px;
  font-size: 18px;
  line-height: 23px;
  height: 100%;
}

.content-tile-light p {
  color: #151829;
  font-weight: 500;
}

.content-tile-light h4 {
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  color: #151829;
}

/* Audio player styles */
.audio-player-container {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  cursor: default;
}

.audio-player-container .fa-circle-play:hover,
.audio-player-container .fa-circle-pause:hover {
  color: #06B8EC;
  margin-right: 10px;
  transition-timing-function: ease-in-out;
  transition-duration: 0.08s;
  cursor: pointer;
}

.audio-player-container .fa-circle-play,
.audio-player-container .fa-circle-pause {
  font-size: 32px;
  color: #232A3D;
  margin-right: 10px;
}

/* Audio player with image background styles */
.audio-player-container-bg {
  min-height: 75px;
  max-width: 241px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
  cursor: pointer;
}

.audio-player-container-bg i::before {
  content: "";
}

.audio-player-container-bg i {
  background-image: url(../img/play-alternative.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  height: 30px;
  width: 30px;
  background-color: rgba(255, 255, 255, .8);
  border-radius: 50%;
}

.audio-player-container-bg .fa-circle-pause {
  background-image: url(../img/stop-alternative.png);
}


/* Pill section */

.pill-section {
  max-width: 925px !important
}

.pill-section .tab-content {
  height: 100%;
}

.pill-section .tab-pane {
  height: 100%;
  text-align: left;
  background-color: #F5F5F5;
  padding: 60px;
}

.pill-section .nav-link.active {
  background-color: #F5F5F5 !important;
  border: 2px solid black !important;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 1 !important;
}

.pill-section .nav-link:nth-of-type(1),
.pill-section .nav-link:last-of-type {
  opacity: .4;
}

.pill-section .nav-link:nth-of-type(2),
.pill-section .nav-link:nth-last-child(2) {
  opacity: .5;
}

.pill-section .btn-group:not(.pill-section .nav-link.active .btn-group) {
  display: none;
}

.pill-section .nav-link * {
  color: black
}

.pill-section .btn-group a {
  border-left: 2px solid black !important;
  padding: 15px;
}

.pill-section .btn-group i {
  width: 16px;
  height: 16px;
}

/* Top bordered link */

.top-bordered-link::before {
  display: block;
  content: "";
  height: 5px;
  width: 100%;
  background-color: #151829;
  opacity: .3;
}

.top-bordered-link:hover::before {
  opacity: 1;
}

.top-bordered-link div {
  height: 100%;
}

.tech-section h3 {
  font-size: 60px;
}

/* Pilot template */
.pilot .btn.bg-yellow:hover {
  background-color: #1DC1F1 !important;
  color: white !important;
  transition: all .5s;
}

.pilot .navbar-toggler {
  background-color: #FFD325;
}

.pilot .navigation-clean-button.navbar-light .navbar-nav a {
  color: white;
}

.pilot .guides-dropdown a{
  color: #333 !important;
  margin:0;
}

.navigation-clean-button.navbar-light .navbar-nav .nav-link:focus {
  color: #FFD325 !important;
}

.pilot .dropdown-menu .dropdown-item:focus,
.pilot .dropdown-menu .dropdown-item {
  color: black !important;
}

.pilot .navigation-clean-button.navbar-light .navbar-nav a:hover {
  color: #FFD325 !important;
}

.pilot .navigation-clean-button.navbar-light .navbar-nav a.active {
  pointer-events: all;
}

.pilot .brand-header {
  margin-top: 51px;
  margin-bottom: 0px;
}

.pilot .hero-headline h3 {
  margin-top: 0;
}

.pilot .section-headline,
.pilot .reveal:not(.pilot .hero-headline .reveal) {
  margin-bottom: 0px !important;
  font-weight: bold !important;
}

.pilot .hero-section h3 {
  font-weight: 350;
  margin-bottom: 16px;
  font-size: 28px;
}

.pilot .hero-section h6 {
  margin-bottom: 16px;
  margin-bottom: 23px;
  font-size: 18px;
}

.pilot .feature-headings {
  font-size: 35px;
}

.pilot .feature-description {
  font-size: 17px;
}

.pilot .dark-feature,
.pilot .light-feature {
  border-top: solid 5px #FFD325;
}

.pilot .dark-feature {
  background-color: #1A203C;
}

.pilot .light-feature {
  background-color: #E6E5E6;
}

.pilot #pricing p {
  font-size: 23px;
  line-height: 56px;
}

.pilot #pricing .btn {
  border-radius: 30px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 17px;
}

.pilot #pricing .btn:hover {
  background-color: black;
  color: white;
}

.pilot footer {
  background-color: #232a3d;
  color: #efefef;
  text-decoration: none;
}

.pilot footer li {
  padding-bottom: 15px;
}

.pilot footer a {
  text-decoration: none;
  font-size: 17px;
}

/*Swiper*/
.pilot .swiper-slide img[src=''] {
  visibility: hidden;
}

/* Plugins */
.pilot .plugins .plugin-list {
  background-color: #57CAD8;
}

.pilot .plugin {
  padding-top: 140px;
  padding-bottom: 65px;
}

.pilot .plugin * {
  position: relative;
  z-index: 2;
}

.pilot .plugin:nth-of-type(2),
.pilot .plugin:nth-of-type(3),
.pilot .plugin:nth-of-type(4) {
  position: relative;
  z-index: 2;
}


.pilot .plugin:nth-of-type(2)::after,
.pilot .plugin:nth-of-type(3)::after,
.pilot .plugin:nth-of-type(4)::after {
  position: absolute;
  top: 0;
  left: 0px;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.pilot .plugin:nth-of-type(2)::after {
  background-color: #FFD325;
}

.pilot .plugin:nth-of-type(3)::after {
  background-color: #1DC1F1;
}

.pilot .plugin:nth-of-type(4)::after {
  background-color: #00B497;
}

.pilot footer * {
  color: white;
}

.pilot .copyright svg,
.pilot .copyright svg path {
  color: #FFD325 !important;
  pointer-events: all;
  cursor: pointer;
}

.pilot .copyright svg:hover,
.pilot .copyright svg path:hover {
  color: #ffffff !important;
}

/* Interactive Demo Pilot */

.interactive-demo-section .list-group-item {
  background: none;
  border: none;
  color: white;
  position: relative;
  padding-left:0;
  padding-right:0;
  width: auto;
  text-align: left;
}

.interactive-demo-section .list-group-item input {
  position: absolute;
  visibility: hidden;
  float: right;
}

.interactive-demo-section .list-group-item label {
  font-size: 23px;
  color: #FFFFFF;
  line-height: 28px;
  font-weight: 500;
  cursor: pointer;
  padding-right: 10px;
}

.interactive-demo-section .list-group-item input:checked~label {
  color: #FFD325;
  text-decoration: underline;
}

.interactive-demo-section .demo-container {
  padding-top: 130px;
  padding-bottom: 130px;
}

.interactive-demo-section .demo-container img {
  margin-top: 50px;
}

.interactive-demo-section .audio-player-container-bg {
  min-height: 123px;
}

@media(max-width:768px) {
  .interactive-demo-section .list-group-item label {
    padding-right: 5px;
  }


  .feature h3{
    padding-top:30px;
  }

  .feature a{
    pointer-events: none;
  }

  .pilot .brand-header {
    font-size: 30pt;
  }

  .pilot .content-tile {
    text-align: center;
  }

  .pilot .audio-player-container {
    justify-content: center;
  }

  .interactive-demo-section .audio-player-container-bg {
    background-size: contain!important;
  }

  .interactive-demo-section .list-group-item label {
    font-size: 18px;
  }

  .interactive-demo-section .demo-container {
    margin-top: 50px
  }
}

@media(min-width:768px) {
  /*Hero*/
  .page-hero h1{
    font-size: 60px !important;
  }

  .interactive-demo-section .audio-player-container-bg {
    min-height: 123px;
    max-width: 386px;
  }

  .pilot .plugin p {
    min-height: 85px;
  }
}


@media(min-width:992px) {
  h2 {
    font-size: 50px;
  }

  .px-md-30{
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .pl-md-30 {
    padding-left: 30px !important;
  }

  .pr-md-30 {
    padding-right: 30px !important;
  }

  .pl-md-40 {
    padding-left: 40px !important;
  }

  .pr-md-40 {
    padding-right: 40px !important;
  }

  .pl-md-60 {
    padding-left: 60px !important;
  }

  .pr-md-60 {
    padding-right: 60px !important;
  }

  .pt-md-80 {
    padding-top: 80px;
  }

  .pb-md-80 {
    padding-bottom: 80px;
  }

  .pt-md-100 {
    padding-top: 120px;
  }

  .pb-md-100 {
    padding-bottom: 120px;
  }

  .pt-md-120 {
    padding-top: 120px;
  }

  .pb-md-120 {
    padding-bottom: 120px;
  }

  .dark-feature,
  .light-feature {
    display: inline-block;
    padding: 60px 0 0 60px;
  }

  .light-feature h4,
  .dark-feature h4 {
    font-size: 30px;
    margin-bottom: 20px;
    margin-left: 20px;
    margin-right: 0px;
    padding-right: 60px;
  }

  .light-feature p,
  .dark-feature p {
    margin-left: 20px;
    margin-right: 0px;
    padding-right: 60px;
  }

  .feature-image {
    width: 100%;
    object-fit: cover;
    margin-right: 0;
    margin-left: auto;
    max-height: 100% !important;
    border-radius: 10px 0 0 0;
  }

  /* Pilot */
  .pilot .brand-header {
    margin-top: 111px;
  }

  .pilot .feature-description {
    margin-bottom: 0;
  }

  .pilot .plugins .plugin-list .container {
    max-width: 100% !important;
  }

  .pilot .plugin {
    padding-left: 10px;
    padding-right: 40px;
  }

  .pilot .plugin p {
    min-height: 85px;
  }

  .pilot .plugin:first-of-type {
    padding-left: 40px;
  }

  .pilot .plugin:nth-of-type(2),
  .pilot .plugin:nth-of-type(3),
  .pilot .plugin:nth-of-type(4) {
    overflow: visible !important;
  }


  .pilot .dark-feature,
  .pilot .light-feature {
    margin-bottom: 20px;
  }

}

@media (max-width:1200px) {

  .pilot .top-bordered-link {
    max-width: 165px;
    margin-bottom: 20px;
  }
}

@media (min-width:1200px) {

  /* Pilot */
  .pilot .feature-description {
    margin-bottom: 0;
  }

  .pilot .plugins .plugin-list .container {
    max-width: 100% !important;
  }

  .pilot .plugin {
    padding-left: 0;
    padding-right: 80px;
  }

  .pilot .plugin p {
    min-height: 60px;
  }

  .pilot .plugin:first-of-type {
    padding-left: 80px;
  }


  .pilot .plugin:nth-of-type(2)::after,
  .pilot .plugin:nth-of-type(3)::after,
  .pilot .plugin:nth-of-type(4)::after {
    left: -40px;
    transform: skewX(-15deg);
    overflow: visible;
    transition: all .5s;
  }

  .pilot .plugin:nth-of-type(2):hover::after,
  .pilot .plugin:nth-of-type(3):hover::after,
  .pilot .plugin:nth-of-type(4):hover::after {
    transform: skewX(-15deg) scale(1.05);
    transition: all .5s;
  }
}

/* Artist story */

.artist-story{
  padding-top:0 !important;
}

.artist-story .navigation-clean-button.navbar-light .navbar-nav .nav-link:focus,
.artist-story .navigation-clean-button.navbar-light .navbar-nav .nav-link:hover,
.artist-story .login:hover,
.artist-story .login:focus{
  color: #dc3545 !important;
}

.artist-story footer{
  background-color: #151829;
  color: white;
}

.artist-story footer li{
  padding-bottom: 10px !important;

}

.artist-story footer a{
  text-decoration: none;
  color: white;
}

.artist-story footer svg{
  width: 40px;
  height: 40px;
  padding:11px;
  color: #cccccc;
  fill:white;
}

.artist-story footer .socials a{
  display: inline-flex;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.artist-story footer .socials a:hover{
  transform: scale(1.05);
  transition: all .5s;
}

.artist-story footer .bi-facebook{

  background-color:#4267B2;
}

.artist-story footer .bi-instagram{
  background-color:#FFCB47;
}

.artist-story footer .bi-youtube{
  background-color: #FF0000;
}











/* Navigation */
.nav > li:not(.header-button) > a:focus:not(.buy),
.nav > li:not(.header-button) > a:hover:not(.buy),
.nav .open > a:not(.buy),
.nav .open > a:hover:not(.buy),
.nav .open > a:focus:not(.buy) {
  /*:not is targeting the header buy button*/
  background: none;
  -webkit-box-shadow: inset 0px 3px #e4e4e4;
  box-shadow: inset 0px 3px #e4e4e4;
  -webkit-transition: all .13s ease-out;
  -moz-transition: all .13s ease-out;
  -o-transition: all .13s ease-out;
  transition: all .13s ease-out;
}

.navbar-default .navbar-nav > .current-menu-item > a,
.navbar-default .navbar-nav > .current-menu-item > a:focus,
.navbar-default .navbar-nav > .current-menu-item > a:hover,
.navbar-default .navbar-nav > .current-menu-parent > a,
.navbar-default .navbar-nav > .current-menu-parent > a:focus,
.navbar-default .navbar-nav > .current-menu-parent > a:hover {
  background: transparent;
  -webkit-box-shadow: inset 0 3px #00b7ff;
  box-shadow: inset 0 3px #00b7ff;
}

.navbar .navbar-nav > li .nav-link{
  text-decoration: none !important;
}

@media (max-width: 767px) {

  .nav > li:not(.header-button) > a:focus:not(.buy),
  .nav > li:not(.header-button) > a:hover:not(.buy),
  .nav .open > a:not(.buy),
  .nav .open > a:hover:not(.buy),
  .nav .open > a:focus:not(.buy) {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #333;
  }

  .navbar-default .navbar-nav > .current-menu-item > a,
  .navbar-default .navbar-nav > .current-menu-item > a:focus,
  .navbar-default .navbar-nav > .current-menu-item > a:hover,
  .navbar-default .navbar-nav > .current-menu-parent > a,
  .navbar-default .navbar-nav > .current-menu-parent > a:focus,
  .navbar-default .navbar-nav > .current-menu-parent > a:hover {
    -webkit-box-shadow: inset 3px 0 #00b7ff;
    box-shadow: inset 3px 0 #00b7ff;
  }
}


.dropdown-menu li.current-menu-item > a,
.dropdown-menu li.current-menu-item h5,
.dropdown-menu li.current-menu-item small {
  color: #fff;
  background: #00b7ff;
  cursor: default;
}

.button-notification {
  background: #111;
  color: #fff;
  width: 35px;
  height: 35px;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  text-align: center;
  padding: 5px 0 0 1px;
  display: inline-block;
  position: absolute;
  margin: -2px 0 0 -19px;
}

.button .mac.logo {
  width: 25px;
  margin: -6px 7px 0 0;
}

.button .win.logo {
  width: 25px;
  margin: -2px 10px 0 0;
}

/* navbar button fix*/

.navbar-nav > li > a.button {
  padding: 14px 35px;
  margin: 17px 0 0 20px;
  color: #fff;
}

.navbar-nav > li > a.button.buy {
  padding: 14px 35px !important;
  color: #fff !important;
}

@media (max-width: 767px) {
  .navbar-nav > li > a.button {
    display: block;
    margin: 10px 20px 20px 20px;
  }
}

.navbar-default .navbar-nav > li > a.buton:focus,
.navbar-default .navbar-nav > li > a.button:hover {
  background-color: #ff4b2d;
  color: #fff;
}

.navbar-default .navbar-nav li.header-button a,
.navbar-default .navbar-nav li.header-button a:focus {
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  margin: 20px 15px 20px 20px;
}

@media (max-width: 767px) {
  .navbar-nav li.header-button a {
    margin: 20px;
  }
}

/*INFO*/

.info {
  color: #0095e2;
  background: rgba(0, 149, 226, .2);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 4px 12px;
  display: table;
  margin: 15px auto;
}


/* NAV */

.product-description {
  margin: 0 0 0 10px;
  display: inline-block;
  vertical-align: middle;
}

.product-description h5,
.product-description small {
  margin: 0;
}

.products-dropdown {
  /* min-width: 400px; */
}

.products-dropdown a h5{
  font-weight: 400 !important;
}

.products-dropdown:not(.products-dropdown.guides-dropdown) a:hover h5 {
  color: rgb(110, 110, 110);
}

.products-dropdown a:hover small {
  color: rgba(255, 255, 255, .9);
}

.master-collection h5 {
  color: #fff;
}

.master-collection small {
  color: rgba(255, 255, 255, .7);
}

.master-collection .arrow {
  display: none;
  /*
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  position: absolute;
  margin: 15px 0 0 15px;
*/
}

.products-dropdown .icon {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all .25s ease-in-out;
  -o-transition: all .25s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  position: relative;
  overflow: hidden;
}

.products-dropdown a:hover .icon {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: all .1s ease-in-out;
  -o-transition: all .1s ease-in-out;
  -moz-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
}

.products-dropdown .icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.dropdown-menu > li > a.master-collection {
  background: #001f4e url(../img/menu-gradient.png) no-repeat left 30px / cover;
  -webkit-transition: all .45s ease-in;
  -o-transition: all .45s ease-in;
  -moz-transition: all .45s ease-in;
  transition: all .45s ease-in;
  padding: 25px 20px;
  margin: -5px 0 20px 0;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
}

.dropdown-menu > li > a.master-collection:hover {
  background-position: left 0;
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

.products-dropdown a {
  margin: 5px 0;
}

@media (max-width: 767px) {
  .navbar-nav .open .products-dropdown li a {
    margin: 0;
    padding: 5px 0 5px 19px;
  }

  .navbar-nav .dropdown-menu > li > a.master-collection {
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 10px 0 10px 19px;
    margin-bottom: 5px;
  }

  a.master-collection:hover {
    background: #001f4e url(../img/menu-gradient.png) no-repeat left 30px / cover !important;
  }

  .products-dropdown,
  .guides-dropdown {
    min-width: 0;
  }

  .products-dropdown .icon img {
    -webkit-border-radius: 50%;
    border-radius: 50%;
  }

  .master-collection .arrow {
    display: none;
  }
}

@media (max-width: 359px) {
  .products-dropdown .icon {
    display: none;
  }

  .product-description {
    margin: 0;
  }
}

.navbar {
  border: none;
  height: 80px;
}

.navbar-brand {
  /* height: 80px; */
  padding: 15px;
}

.navbar-nav li{
  position: relative;
}

.navbar-nav > li > a {
  color: #333;
  padding: 30px 20px ;
}

.navbar-expand-lg .navbar-nav .nav-link{
  padding-left: 20px;
  padding-right: 20px;
}

.navbar-nav .nav-link{
  padding-left:30px;
  padding-right: 30px;
}

.active-menu{
  height: 100vh;
  overflow: hidden;
}

@media (max-width: 991px) {
  .navbar-nav > li > a {
    padding: 30px 9px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .navbar{
    padding-top:0;
  }

  .navbar .container{
    width: 100%;
    /* padding:0 !important; */
  }

  .navbar-collapse,
  .navbar-nav{
    width: 100%;
    background: #fff;
    -webkit-box-shadow: inset 0 3px #f2f2f2;
    box-shadow: inset 0 3px #f2f2f2;

  }

  .actions{
    display:block;
    margin-left:20px;
    margin-bottom:20px;
  }

  .navbar-nav {
    padding: 10px 0 0 0;
  }

  .navbar-nav > li > a {
    padding: 10px 20px;
    font-size: 20px;
    color:#333 !important;
    word-break: break-word;
  }

  .pilot .navigation-clean-button.navbar-light .navbar-nav a *{
    /* display: inline-block; */
    /* word-break: break-all; */
  }
}

@media (min-width: 768px) {
  .collapse.navbar-collapse {
    /* background: #fff;  */
    /* -webkit-box-shadow: inset 0 3px #f2f2f2;
    box-shadow: inset 0 3px #f2f2f2; */
  }

  .navbar-nav {
    background-color: transparent;
  }
}

.navbar-collapse {
  max-height: none !important;
  border: none !important;
}

.navbar-default .navbar-toggle {
  border: none;
  margin: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  padding: 33px 25px;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background: none;
}

.navbar-default .navbar-nav > li:not(.header-button) > a:not(.buy),
.navbar-default .navbar-nav > li:not(.header-button) > a:focus:not(.buy) {
  color: #333;
}

.navbar-default .navbar-toggle .icon-bar {
  background: #333;
}

/*NAV - DROPDOWN*/

a.dropdown-toggle .caret {
  margin-left: 5px;
}

.navbar-nav > li > .dropdown-menu {
  background-color: white !important;
  border: none;
  -webkit-box-shadow: 0 30px 80px rgba(0, 31, 78, 0.35);
  box-shadow: 0 30px 80px rgba(0, 31, 78, 0.35);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  /* z-index: -1; */
  /* display: block; */
}

.navbar-nav .dropdown.open .dropdown-menu {
  /* opacity: 1; */
  margin-top: 5px;
  -webkit-transition: all .13s ease-out;
  -moz-transition: all .13s ease-out;
  -o-transition: all .13s ease-out;
  transition: all .13s ease-out;
}

.navbar-nav .dropdown .dropdown-menu {
  /* margin-top: -800px; */
  -webkit-transition: all .23s ease-out;
  -moz-transition: all .23s ease-out;
  -o-transition: all .23s ease-out;
  transition: all .23s ease-out;
  /* opacity: 0; */
}

.dropdown-menu>li>a{
  padding: 3px 20px;
  font-weight: 400;
  line-height: 1.42857143;
}

@media (max-width: 767px) {

  .navbar-nav .dropdown .dropdown-menu,
  .navbar-nav .dropdown.open .dropdown-menu {
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
    transition: none;
    padding: 10px 0;
    /*margin: 5px 0;*/
    /* background: #f2f2f2; */
    -webkit-border-radius: 0;
    border-radius: 0;
  }
}

.dropdown-menu > li > a {
  color: #333;
  font-size: 18px;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  transition: all .25s ease-out;
}

@media (max-width: 767px) {
  .dropdown-menu > li > a {
    color: #111 !important;
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    white-space: normal;
  }
}

.products-dropdown > li > a:focus:not(.master-collection),
.products-dropdown > li > a:hover:not(.master-collection) {
  color: #fff;
  -webkit-transition: all .05s ease-out;
  -moz-transition: all .05s ease-out;
  -o-transition: all .05s ease-out;
  transition: all .05s ease-out;
}

.guides-dropdown {
  padding: 0 0 15px 0;
  margin: 0 0 0 0;
  overflow: auto;
  min-width: 400px;
}

.guides-dropdown li a,
.guides-dropdown li a:focus {
  background: none;
  text-decoration: none;
  display: block;
  height: 100%;
}

.guides-dropdown li a:hover {
  background: none;
}

.guides-dropdown li:not(.banner) {
  margin: 0 10px 0 20px;
}

.guides-dropdown li:not(.dropdown-header):not(.banner) {
  -webkit-box-shadow: inset 3px 0 rgba(0, 0, 0, .04);
  box-shadow: inset 3px 0 rgba(0, 0, 0, .04);
  -webkit-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  transition: all .25s ease-out;
}

.guides-dropdown li:hover:not(.dropdown-header):not(.current-menu-item):not(.banner) {
  -webkit-box-shadow: inset 3px 0 rgba(0, 0, 0, 0.3);
  box-shadow: inset 3px 0 rgba(0, 0, 0, 0.3);
  -webkit-transition: all .01s ease-out;
  -o-transition: all .01s ease-out;
  -moz-transition: all .01s ease-out;
  transition: all .01s ease-out;
}

.guides-dropdown li.current-menu-item {
  -webkit-box-shadow: inset 3px 0 #00b7ff;
  box-shadow: inset 3px 0 #00b7ff;
  font-weight: 500;
}

.guides-dropdown li.current-menu-item a {
  color: #00b7ff !important;
  cursor: default;
  background: none !important;
  font-weight: 500;
  -webkit-box-shadow: inset 3px 0 0 #00b7ff;
  box-shadow: inset 3px 0 0 #00b7ff;
}

.guides-dropdown .banner {
  background: #001f4e url(../img/menu-gradient.png) no-repeat left 30px / cover;
  -webkit-transition: all .45s ease-in;
  -o-transition: all .45s ease-in;
  -moz-transition: all .45s ease-in;
  transition: all .45s ease-in;
  width: 100%;
  height: 100px;
  margin: 0 0 15px 0;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  overflow: hidden;
  position: relative;
}

.guides-dropdown .banner:hover,
.guides-dropdown .banner:focus,
.guides-dropdown .banner:active {
  background-position: left 0;
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  -moz-transition: all .2s ease-out;
  transition: all .2s ease-out;
}

@media (max-width: 767px) {
  .guides-dropdown {
    padding: 0 0 15px 0;
  }

  .guides-dropdown .banner {
    display: none;
    /*-webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    padding: 20px 30px;*/
  }

  .guides-dropdown .banner:hover {
    /* background: #001f4e url(../img/menu-gradient.png) no-repeat left 30px / cover !important;*/
  }
}

.guides-dropdown .banner img {
  width: 270px;
  position: absolute;
  top: -85px;
  right: -87px;
}

.dropdown.open .guides-dropdown .banner img {
  /*
  -webkit-animation: 20s infinite linear rotate-wheel;
  -moz-animation: 20s infinite linear rotate-wheel;
  -o-animation: 20s infinite linear rotate-wheel;
  animation: 20s infinite linear rotate-wheel;
*/
}

@-webkit-keyframes rotate-wheel {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-moz-keyframes rotate-wheel {
  from {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-o-keyframes rotate-wheel {
  from {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate-wheel {
  from {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.guides-dropdown .banner:hover img {
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}

.guides-dropdown h5 {
  margin-top: 38px;
  color: #fff;
}

.dropdown-header {
  font-size: 14px;
  color: #7b7b7b;
  padding: 5px 0 !important;
}

.dropdown-background,
.mobile-menu-background {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  z-index: 9;
  background: rgba(0, 20, 60, 0);
  height: 100%;
  -webkit-backdrop-filter: blur(0px);
  transition: height 0s ease .5s, background .5s ease, -webkit-backdrop-filter .5s ease;
  pointer-events: none;
}

.dropdown .dropdown-toggle.show+.dropdown-background,
.navbar-collapse.collapse.in .mobile-menu-background {
  height: 100%;
  background: rgba(0, 20, 60, .35);
  -webkit-backdrop-filter: blur(7px);
  transition: height 0s ease, background .5s ease, -webkit-backdrop-filter .5s ease;
}

.mobile-menu-background {
  display: none;
}

@media (max-width: 767px) {
  .dropdown-background {
    display: none;
  }

  .mobile-menu-background {
    display: block;
  }
}

.navbar-collapse.collapse {
  -webkit-transition: height 0.2s;
  -o-transition: height 0.2s;
  -moz-transition: height 0.2s;
  transition: height 0.2s;
}

.navbar-collapse.collapsing {
  height: 0 !important;
}

.navbar-collapse.collapse.in {
  max-height: none;
  height: 100vh;
  padding-bottom: 80px;
}

/*GUIDES*/
.guides{
  padding-bottom: 50px !important;
}

.guides .tip img {
  margin: 10px 0 0 0;
}

.guides .caption {
  font-size: 14px;
  color: #7b7b7b;
  margin: 0 0 10px 0;
}

.guides .tip {
  margin: 20px 0;
  background: #25252b;
  display: block;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  padding: 20px 15px 20px 20px;
  min-height: 55px;
  color: #fff;
}

.guides .tip .material-icons {
  float: left;
  margin: 0 5px 0 0;
  color: #00b7ff;
}

.guides h1{
  font-size: 48px;
}

.guides h3{
  margin-top:40px;
  margin-bottom:10px;
}

.embed-responsive{
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
}

.embed-responsive iframe{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-16by9 {
  padding-bottom: 56.25%;
}

.guides img {
  margin: 10px 0 20px 0;
  max-width: 100%;
  display: block;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.20);
}

.guides a.text-white.border-light:hover,
.btn.text-white.border-light:hover {
  background: #FFD325 !important;
  transition: all .5s;
}

.previous-guide,
.next-guide {
  padding: 30px;
  display: table;
  margin: 20px 0 40px 0;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  text-decoration: none !important;
  width: 100%;
  min-height: 100px;
  outline: none;
}

.previous-guide {
  border: 1px solid #fff;
  padding-left: 0;
}

.next-guide {
  border: 1px solid #00b7ff;
  background: #00b7ff;
  color: #fff !important;
}

.previous-guide h3,
.next-guide h3 {
  display: table-cell;
  vertical-align: middle;
  padding: 0;
}

.previous-guide h3 {
  color: #fff;
}

.previous-guide h3:after,
.next-guide h3:after {
  background: none;
  margin: 0;
  height: auto;
}

.previous-guide i,
.next-guide i {
  vertical-align: middle;
  display: table-cell;
  width: 10px;
  color: #fff;
}

.highlight {
  background: rgba(255, 255, 255, 0.15);
  padding: 0px 5px 2px 5px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  color: #fff;
}

@media (min-width: 765px){
  .guides h1{
    font-size: 48px;
  }

  .guides h3{
    font-size: 38px;
  }
}

/*FLOATING MENU*/

.floating-menu--image {
  /* width: 270px; */
  background-color: #5a5a5a;
  border-radius: 6px !important;
  padding:31px 14px !important;
}

#collapseMenu{
  max-height: 425px;
  overflow-y: auto;
  padding-right: 10px;;
}

#collapseMenu::-webkit-scrollbar {
  width: 8px;
}

#collapseMenu::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.0);
}

#collapseMenu::-webkit-scrollbar-thumb {
  background-color: #707070;
  outline: 1px solid #707070;
  border-radius: 4px;
}

.floating-menu--image.affix,
.sidebar-banner.affix {
  top: 100px;
}

.floating-menu--image.affix-top,
.sidebar-banner.affix-top {
  position: absolute;
  top: 0;
}

.floating-menu--image.affix-bottom,
.sidebar-banner.affix-bottom {
  position: absolute;
}

@media (min-width:768) and (max-width: 1199px) {
  .floating-menu--image {
    width: 220px;
  }
}

@media (max-width: 991px) {

  .floating-menu--image{
    margin-bottom: 30px !important;
  }

  .floating-menu--image.affix,
  .floating-menu--image.affix-top,
  .floating-menu--image.affix-bottom,
  .sidebar-banner.affix,
  .sidebar-banner.affix-top,
  .sidebar-banner.affix-bottom {
    margin: 10px 0 0 0;
    position: relative;
    width: auto;
    top: auto !important;
  }
}

@media (min-width: 991px){
  .floating-menu--image{
    position: -webkit-sticky;
    position: sticky;
    top: 50px;
    min-width: 410px !important;
    z-index: 1;
  }

  footer{
    position: relative;
    z-index: 2;
  }
}

.floating-menu--image .nav-tabs{
  border-bottom: 1px solid transparent;
}

.floating-menu--image .nav-tabs .nav-link{
  padding:16px !important;
  border-radius:6px !important;
}

.floating-menu--image .nav-tabs .nav-link img{
  max-width: 100px !important;
  max-height: 56px !important;
  object-fit: cover;
  border-radius: 6px;
}

.floating-menu--image .nav-tabs .nav-link p{
  font-size:14px !important;
}

.floating-menu--image .nav-tabs .nav-link span{
  color: #FFD325 !important;
  font-weight: normal;
}

.floating-menu--image ul,
.table-of-contents,
.table-of-contents ul {
  line-height: 1.8;
  padding-left: 0;
  list-style: none;
}

.floating-menu--image li a,
.table-of-contents li a,
.floating-menu--image li button,
.table-of-contents li button {
  text-decoration: none;
  color: white;
  display: block;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.floating-menu--image li a:hover,
.table-of-contents li a:hover,
.floating-menu--image li button:hover,
.table-of-contents li button:hover {
  color: #FFD325;
  border: 1px solid transparent !important;
}

.floating-menu--image .nav-tabs .nav-link.active{
  background-color: #707070 !important;
  border: 1px solid transparent !important;
  color:white !important;
}

.floating-menu--image li:not(.list-header),
.table-of-contents li {
  -webkit-box-shadow: inset 3px 0 rgba(0, 0, 0, .04);
  box-shadow: inset 3px 0 rgba(0, 0, 0, .04);
  -webkit-transition: all .25s ease-out;
  -o-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  transition: all .25s ease-out;
}

.floating-menu--image li:hover:not(.list-header):not(.current-menu-item) button,
.floating-menu--image li:hover button:not(.active),
.table-of-contents li:hover button{
  -webkit-transition: all .01s ease-out;
  -o-transition: all .01s ease-out;
  -moz-transition: all .01s ease-out;
  transition: all .01s ease-out;
  font-weight: bold;
}


/* Tutorials */
.tutorials{

}

.tutorial-time{
  font-size: 18px;
}

.tutorial-time img{
  width: 18px;
  height: 18px;
  object-fit: cover;
}

.tutorials h3{
  display: flex !important;
}

.tutorial-step{
  width: 45px !important;
  height: 45px !important;
}

/* Product Examples */

.product-examples .audio-player-container-bg{
  min-height: 63px !important;
}

.product-examples .audio-player-container-bg i{
  height: 63px;
  width: 63px;
  background-size: 16px 18px;
}

.product-examples .card-img-top{
  max-height: 325px;
  object-fit: contain;
}


/* Heading with image background */
.bg-img-heading{
  background-image: url(../img/bg2.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* product-examples wistia popup */
.wistia-popup-container{
  position: relative;
}

.page-template-captain-super-epic .navigation-clean-button.navbar-light .navbar-nav .nav-link{
  color: white;
}

.page-template-captain-super-epic .navigation-clean-button.navbar-light .navbar-nav .nav-link:hover{
  color: #FFD325 !important;
}

.super-epic #hero-headline {
  padding-top: 80px;
}

@media (max-width: 768px){
  .super-epic .navbar-brand{
    padding: 0 !important;
  }

  .wistia_async_lp8a0mxf51,
  #whats-new iframe{
      max-width: 100%;
  }
}
