:root, [data-bs-theme=light] {
    --bs-primary: #0077ff;
    --bs-primary-rgb: 0, 119, 255;
    --bs-btn-bg: #0077ff;
    --bs-btn-border-color: #0077ff;
    --bs-btn-disabled-bg: #0077ff;
    --bs-btn-disabled-border-color: #0077ff;
}

.btn-primary {
    --bs-btn-color: #fff;
    --bs-btn-bg: #0077ff;
    --bs-btn-border-color: #0077ff;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #0b5ed7;
    --bs-btn-hover-border-color: #0a58ca;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #0a58ca;
    --bs-btn-active-border-color: #0a53be;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #0077ff;
    --bs-btn-disabled-border-color: #0077ff;
}

main > .container, main > .container-fluid {
    padding-top: 90px;
    padding-bottom: 20px;
}

main > .home-banner {
    padding-top: 80px;
}

.navbar {
    --bs-navbar-padding-y: 0rem;
}
/*
.navbar .navbar-brand {
    font-size: 1.5rem;
    display: inline;
    text-align: center;
    background-image: linear-gradient(to right, #1a1a19 0%, #6c6a6d 10%, #3cf3b6 40%, #06d8f3 60%,#f782a9 90%,#f782a9 100%);
    background-size: 200% auto;
    color: #ffffff;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 10s linear infinite
}
*/

.navbar .navbar-brand {
    color: #ededef;
    font-size: 2em;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0;
}

.navbar-toggler {
    border: 0;
    padding: 0.25rem 0;
}

.form-label {font-weight: 600;}

/* field and card border radius start */
.form-control, .form-select {
    /*border-radius: var(--bs-border-radius-pill) !important;*/
    border-radius: var(--bs-border-radius-xl);
}
.btn {
    border-radius: var(--bs-border-radius-xl);
}
textarea.form-control {
    border-radius: var(--bs-border-radius-xl) !important;
}
.card {
    border-radius: var(--bs-border-radius-xl) !important;
}
.card-footer:last-child {
    border-radius: 0 0 var(--bs-border-radius-xl) var(--bs-border-radius-xl);
}
/* field and card border radius end */

.form-control::placeholder {
    color: #bbbbbb;
    opacity: 1;
}
.form-control:-ms-input-placeholder {
    color: #bbbbbb;
    opacity: 1;
}
.input-group .form-control {
    border-radius: 0;
}
.form-check-input {
    border: var(--bs-border-width) solid #9cc0e5;
}

.fs-7 {
    font-size: 0.85rem!important;
}

.fs-8 {
    font-size: 0.70rem!important;
}

.btn-xs {
    font-size: 0.65rem;
}

.btn-xs {
    padding: 0.125rem 0.25rem;
    font-size: .75rem;
    line-height: 1.5;
    border-radius: 0.15rem;
}

/* style breadcrumb widget as in previous bootstrap versions */
.breadcrumb {
    background-color: white;
    border-radius: .25rem;
    padding: .75rem 0;
}

.breadcrumb-item, .breadcrumb-item > a {
    color: var(--bs-breadcrumb-item-active-color);
    text-decoration: none;
    font-size: 0.85rem;
}

.home-banner .carousel-caption {
    bottom: 45%;
}
.home-banner .carousel-caption h5 {
    font-size: 50px;
}

@media(min-width:767px) and (max-width: 1023px) {
    main > .container, main > .container-fluid {
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .home-banner .carousel-caption {
        bottom: 35%;
    }
    .home-banner .carousel-caption h5 {
        font-size: 38px;
    }
}

@media(max-width:767px) {
    main > .container, main > .container-fluid {
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .home-banner .carousel-caption {
        bottom: 35%;
    }
    .home-banner .carousel-caption h5 {
        font-size: 28px;
    }
}

@media(max-width:575px) {
    main > .container, main > .container-fluid {
        padding-top: 80px;
        padding-bottom: 20px;
    }
    main > .home-banner {
        padding-top: 60px;
    }

    .home-banner .carousel-caption {
        bottom: 25%;
    }
    .home-banner .carousel-caption h5 {
        font-size: 18px;
    }
}