﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
}

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link:focus {
        color: rgba(255, 255, 255, 0.75);
    }
.overlay {
    display:flex;
    justify-content:center;
    align-items:center;
    width:80%;
    min-height:20%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    z-index: 99999;
    box-shadow:rgba(0,0,0,.2) 3px 5px 10px;

}
.hidden{
    display:none;
}
.bgimg {
    /* Full-screen */
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 100%;
    width: 100%;
    position: relative;
    /* Add a white text color to all elements inside the .bgimg container */
    color: white !important;
    /* Add a font */
    /* Set the font-size to 25 pixels */
    font-size: 25px;
}
.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 2rem;
    z-index: 99999;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}

.video-lecteur {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
}

.video-lecteur video{
    min-height:100%;
}

.container-p {
    position: absolute;
    top: 50%;
    left: 50%;
    max-height: 60vh;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.card-p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-height: 60%;
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(196, 101, 0, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 25px;
}

.card-p-box {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    border-radius: 25px;
}

.card_title {
    text-align: center;
    font-weight: normal;
    font-size: 36px;
    margin-bottom: 20px;
}

.pricing {
    text-align: center;
    color: #D97000 !important;
    font-weight: bold;
    font-size: 96px;
}

    .pricing .small {
        font-size: 16px;
    }

hr {
    margin-top: 20px;
}

.features {
    margin: 40px 0;
    list-style-position: inside;
}

    .features li {
        padding-bottom: 10px;
    }

a.cta_btn {
    width: 100%;
    display: inline-block;
    text-align: center;
    background: rgba(21, 23, 24, 0.7);
    border-radius: 29px;
    padding: 20px 0;
    color: white;
    text-decoration: none;
    letter-spacing: 2px;
    transition: background .3s ease;
}

    a.cta_btn:hover {
        background: #000;
    }

.link {
    position: fixed;
    background-color: #D12322;
    padding: 23px 40px;
    right: -99px;
    border-radius: 5px;
    top: 50%;
    transform: translateY(-50%);
    transform: rotate(-90deg);
    font-size: 18px;
    font-weight: 500;
    color: #FFF;
    text-decoration: none;
    text-transform: capitalize;
    transition: all .1s ease-in-out;
}

    .link i {
        padding-left: 7px;
    }

    .link:hover {
        text-decoration: underline;
        background-color: black;
    }



@media (min-width:481px) and (max-width:600px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 2%;
        max-height: 60vh;
        width: 70%;
        transform: scale(.9);
    }

    .container {
        padding: 0 1rem;
    }

    body {
        font-size: 16px;
    }

    .card {
        padding: 30px;
    }

    .card_title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .pricing {
        font-size: 52px;
    }

    hr {
        margin-top: 10px;
    }

    a.cta_btn {
        font-size: 11px;
    }
}
@media (max-width: 480px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 2%;
        max-height: 60vh;
        width: 85%!important;
        transform: scale(.9)!important;
    }

    .container {
        padding: 0 1rem;
    }

    body {
        font-size: 14px;
    }

    .card {
        padding: 30px;
    }

    .card_title {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .pricing {
        font-size: 32px;
    }

    hr {
        margin-top: 10px;
    }

    a.cta_btn {
        font-size: 11px;
    }
}

