body{
    background-color: #f7f7f7;
}
.navbar .navbar-brand {
    font-size: 1rem;
}

.navbar .nav-link {
    color: white !important;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
}

.navbar .nav-link:hover {
    transform: scale(1.1);
}

#nav_title img {
    max-width: 150px;
    max-height: 100px;
}

.feature-icon {
    height: 35px;
}

.feature-icon i {
    font-size: 24px !important;
    color: var(--bs-theme-one);
}

img {
    width: 100%;
}

.section1-img {
    height: 350px;
    object-fit: cover;
    object-position: center;
}

#snackbar {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@media screen and (max-width: 991px) {
    .navbar .nav-link {
        color: var(--bs-theme-one) !important;
        justify-content: center !important;
    }
}

/* Preloader */
.preloaderBg {
    position: fixed;
    z-index: 10000;
    top: 0;
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-wrap {
    position: relative;
    width: 250px;
    height: 250px;
}

.preloader-logo {
    margin: auto;
    background-size: 150px !important;
    width: 200px;
    height: 200px;
    position: absolute;
    top: 25px;
    left: 25px;
    animation: fadeIn 1s ease-in-out infinite;
}

.preloader-circle {
    border: 5px solid var(--bs-theme-two);
    border-top: 5px solid var(--bs-theme-one);
    border-radius: 50%;
    width: 250px;
    height: 250px;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
    top: 0;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader {
    position: relative;
    width: 50px;
    height: 50px;
    border: 4px solid transparent;
    border-radius: 50%;
    border-top: 4px solid black;
    animation: rotate 1.5s linear infinite;
    margin: auto;
}

.loader::before,
.loader::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    box-sizing: border-box;
    border: 4px solid transparent;
}

.loader::after {
    inset: 0;
    border-bottom: 4px solid black;
    animation: rotate 0.5s linear infinite reverse;
}

.loader::before {
    inset: 4px;
    border-left: 4px solid black;
    animation: rotate 1.5s linear infinite;
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.trial-info {
    color: green;
}

/* .trial-danger {
    color: red;
} */
.animate {
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.3);
    }
}


/* New Styles */
#plansContainer .card{
    border-radius: 1rem !important;
    height: 100%;
}
#plansContainer .col-lg-3{
    margin: 0 !important;
}
.btn-check:focus+.btn-info, .btn-info:focus {
    background-color: var(--bs-theme-one);;
    border-color: var(--bs-theme-one);;
    box-shadow: 0 0 0 0.2rem rgba(20, 164, 197, 0.5);
}
.home-video-container iframe{
    width: 100%;
    min-height: 450px;
}
.fixed-btn{
    position: fixed;
    right: 10px;
    bottom: 15px;
    z-index: 100000;
}
.fixed-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--bs-theme-one);
    box-shadow: 0 0 10px 2px rgba(0,0,0,0.16);
    color: white;
    font-weight: 600;
    transition: all 0.3s;
}
.fixed-btn a:hover{
    transform: scale(.9);
}

.payment-label{
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.payment-label img{
    width: 35px;
}
.payment-form-group{
    padding-left: 0;
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
    width: 200px;
}
@media screen and (max-width: 992px){
    .pricing-container{
        margin-top: 0 !important;
    }
    #plansContainer .col-lg-3{
        margin-bottom: 20px !important;
    }
    .page-header {
        align-items: start;
        padding-top: 150px;
    }
    #banner_h2{
        font-size: 20px;
    }
    .lead{
        font-size: 1rem;
    }
    .footer-links{
        justify-content: center;
    }

}

@media screen and (max-width:768px){
    .home-video-container{
        margin-top: 0 !important;
    }
    .home-video-container iframe{
        min-height: auto;
        padding-top: 30px;
    }
}

