
html {
  font-size: 14px;

}

.custommargin{
    margin-top:50px;

}
/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600&display=swap');*/
.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

    html {
        position: relative;
        min-height: 100%;
    }

body {
    margin-bottom: 0;
    
}


/*html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}*/



@media (max-width: 768px) {
   
}




    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes marqueeFast {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-50%);
        }
    }

    @keyframes scroll-marquee {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-50%);
        }
    }

@keyframes bounceUpDown {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px); /* Upward bounce */
    }
}


@keyframes kenburnsZoom {
    0% {
        transform: scale(1.05) translate(0px, 0px);
    }

    100% {
        transform: scale(1.15) translate(-10px, -10px);
    }
}

    @media (max-width: 991.98px) {
        html {
            font-size: 16px;
        }


        .custom-navbar .nav-link {
            color: darkblue !important;
            background-color: white;
        }

        .navbar-toggler {
            border-color: gray;
            background-color: blue;
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='white' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
        }
    }


@keyframes slideInFromLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    0% {
        opacity: 0;
        transform: translateX(100px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomInFade {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotateFadeIn {
    0% {
        opacity: 0;
        transform: rotate(-10deg) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}