
body {
    font-family: "Montserrat", sans-serif;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-image: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.85)), url('assets/img/background.webp');
    background-size: cover;
    background-position: center;
}

.section {
    padding: 40px 10px;
}

.hero {
    color: #fff;
}

.benefits {
    color: #fff;
}

.btn {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
}

.btn-primary {
    background-color: #f1ad2a;
    border-color: #f1ad2a;
    &&.cta{
        padding: 15px 30px;
        font-size: 18px;
        box-shadow: 0 10px 20px rgba(255, 80, 11, 0.5);
        strong {
            text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
        }
    }
    strong {
            color: #000 !important;
    }
}

.btn-primary:hover {
    background-color: #d88e03;
    border-color: #d88e03;
}

.btn-primary:focus {
    background-color: #d88e03 !important;
    border-color: #d88e03;
}

.container {
    &&.reduced{
        max-width: 600px;
    }
}

strong {
    text-transform: uppercase;
    color: #f1ad2a;
    &&.white-color {
        color: #fff;
    }
}

p {
    font-size: 18px;
    color: #fff;
}
i {
    color: #f1ad2a;
}
.video-preview{
    margin: 20px;
}
.col-md-6{
    align-content: center;
}

.alone{
    height: 500px;
    @media (max-width: 768px) {
        height: 250px;
    }
}

.carousel-caption {
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
    background: #00000059;
}
.white-color {
    color: #fff;
}
.orange-color {
    color: #f1ad2a;
}
.cta{
    text-shadow: 0 10px 20px rgba(255, 80, 11, 0.5);
    strong {
        text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
    }
}

.call-to-action {
    background-color: #000000c7;
    padding: 20px;
    /* border: 1px solid #ddd; */
    border-radius: 20px;
    box-shadow: 0 0 50px rgb(255, 80, 11, 0.5);
    color: white;
    p{
        color: white;
    }
  }
  
  .call-to-action h2 {
    font-size: 24px;
    font-weight: bold;
    color: white;
  }
  
  .original-price {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 2px;
    color: white;
    text-decoration: line-through;
  }

  .price {
    font-size: 25px;
    font-weight: bold;
    letter-spacing: 2px;
    color: white;
  }
  
  .discounted-price {
    font-size: 54px;
    font-weight: bold;
    color: white;
  }

  .timer{
    border: 1px solid #f1ad2a;
    border-radius: 10%;
    width: 500px;
    padding: 10px;
    font-size: 50px !important;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.99);
    box-shadow: 0 0 20px rgba(255, 80, 11, 0.5);
    animation: blink 1s infinite alternate;
    @keyframes blink {
        from {
            opacity: 1;
        }
        to {
            opacity: 0.5;
        }
    }
  }

