body{
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
        font-size: 16px;
    }
    
    .v-page-wrap .has-right-sidebar .has-one-sidebar .container{
        
    }
    .container p,ul{
    color: black;
    }
    .container p>strong{
    color: rgb(12, 66, 115);
    }
    
    
    
    .ytvideo {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    
    
    .form-bg h4 {
        color: red;
        animation: animate2 2s linear infinite;
    }
    #myImg{
        margin-bottom: 50px;
    }
    
    
    @keyframes animate2 {
        0% {
            opacity: 0;
            color: black;
        }
    
        50% {
            opacity: 1;
            color: red;
        }
    
        100% {
            opacity: 0;
            color: black;
        }
    }
    
    
    .lightbox {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .img2 {
        width: 300px;
        /* box-shadow: 0 0 5px; */
        animation: animate3 2s linear infinite;
    }
    
    @keyframes animate3 {
        0% {
            opacity: 0;
            color: green;
        }
    
        50% {
            opacity: 1;
            color: red;
        }
    
        100% {
            opacity: 0;
            color: green;
        }
    }
    
    .lightbox iframe {
        border-radius: 8px;
        box-shadow: 0 0 10px;
    }
    
    .phoneimg {
        display: none;
    }
    
    
    @media screen and (max-width: 600px) {
        .phoneimg {
            display: flex;
            justify-content: center;
            align-items: center;
        }
    
        .phoneimg2 {
            display: none;
        }
    }