:root {
    --theme-orange: #FE6601; /*#ED7D3A; */
    --theme-light: #F6F8FF;
    --theme-blue: #2F3D7E;
    --theme-yellow: #FFCC00;
}

/* Body */

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: white;
    font-family: "Sora", sans-serif;
}

a{
    text-decoration: none;
}

/* style.css */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--theme-blue);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader {
    border: 5px solid white;
    border-radius: 50%;
    border-top: 5px solid var(--theme-orange);
    width: 60px;
    height: 60px;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

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

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


/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: var(--theme-light);
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: var(--theme-blue);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--theme-orange);
}

/* Navbar */

.navbar{
    /* min-height: 75px; */
    padding: 1rem;
}

.nav-link{
    color: var(--theme-blue);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 6px !important;
    margin-left: 2rem;
}

.nav-link:hover{
    color: var(--theme-orange);
}

.hsr-theme-btn{
    display: block;
    background: var(--theme-orange);
    color: white;
    padding: 0.7rem 1rem !important;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: 0.2s transform ease-in-out;
    font-weight: 500;
    border: 2px solid var(--theme-orange);
}

.hsr-theme-btn:hover{
    background-color: var(--theme-blue);
    color: white;
    transition: all width 0.4s ease-in-out;
    border-color: var(--theme-blue);
}

.hsr-theme-btn-outline{
    background: transparent;
    color: var(--theme-orange);
    padding: 0.7rem 1rem !important;
    border-radius: 5px;
    border: 2px solid var(--theme-orange);
    position: relative;
    overflow: hidden;
    z-index: 0;
    transition: 0.2s transform ease-in-out;
    font-weight: 500;
}

.hsr-theme-btn-outline:hover{
    border-color: var(--theme-blue);

}

.navbar-brand{
    font-weight: 800;
    text-transform: uppercase;
    font-size: 1.5rem;
    color: var(--theme-orange);
}

.navbar-brand:hover{
    color: var(--theme-blue);
}

/* Hero Image */

.hsr-hero-image{
    background-image: url('../images/hero.jpg');
    height: calc(100vh - 75px);
    width: 100%;
    object-fit: cover;
    background-repeat: no-repeat;
    position: relative;
}

.hsr-hero-image::before{
    content: '';
    height: calc(100vh - 75px);
    background-color: rgba(47,61,126,.5);
    position: absolute;
    left: 0;
    top:0;
    width: 100%;
}

.hsr-hero-caption{
    height: calc(100vh - 75px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    position: relative;
}

.hsr-welcome-text{
    color: var(--theme-orange);
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5rem;
    display: inline-block;
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 10px;
}

.hsr-hero-caption h1{
    font-size: 4.5rem;
    color: white;
    font-weight: 800;
}

.hsr-hero-caption .hsr-caption{
    width: 50%;
    display: block;
    margin: auto;
    margin-top: 2rem;
}

/* Footer */

.hsr-footer{
    background-color: var(--theme-blue);
    padding: 2rem 0;
    border-radius: 20px;
}

.hsr-credit{
    margin: 1rem 0;
    font-size: 0.8rem;
    color: gray;
}

.hsr-footer h4{
    text-transform: uppercase;
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--theme-orange);
    margin-bottom: 1rem;
}

.hsr-footer p, .hsr-footer a{
    font-size: 0.8rem;
    color: white;
    font-weight: 300;
}

.hsr-footer ul{
    list-style: none;
    padding: 0;
}

.hsr-footer li{
    margin-bottom: 0.8rem;
}

.hsr-footer a:hover{
    color: var(--theme-yellow);
}

/* CTA */
.hsr-cta{
    background-color: var(--theme-light);
    padding: 2rem;
    border-radius: 20px;
}

.hsr-cta h3{
    font-size: 2rem;
    font-weight: 800;
    color: var(--theme-blue);
}

.hsr-cta p{
    color:gray;
    font-size: 0.9rem;
    margin-bottom: 0;
    margin-top: 1rem;
}

/* Feature */
.hsr-feature{
    background-color: var(--theme-light);
}

.hsr-usp-card .bi{
    font-size: 3rem;
    color: var(--theme-orange);
}

.hsr-usp-card h4{
    font-size: 1.2rem;
}

.hsr-usp-card p{
    color: gray;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.hsr-feature .hsr-card-two{
    margin-left: -55px;
    width: 100%;
}

.hsr-feature .hsr-card-five{
    margin-left: 55px;
    width: 100%;
}

.hsr-section-title h2{
    font-weight: 600;
}

.text-orange{
    color: var(--theme-orange);
}

.hsr-section-title p{
    font-size: 0.8rem;
    width: 50%;
    margin:auto;
    color: gray;
}

.hsr-section-title{
    margin-bottom: 2rem;
}

@media (max-width: 425px) {

    .navbar{
        /* min-height: 75px; */
        padding: 0rem;
    }

    .nav-link{
        margin-left: 0;
    }

    .hsr-welcome-text{
        font-size: 1rem;
    }

    .hsr-hero-caption h1{
        font-size: 2.5rem;
    }

    .hsr-hero-caption .hsr-caption{
        width: 100%;
    }

    .hsr-feature .hsr-card-two{
        margin-left: 0;
        width: 100%;
    }

    .hsr-feature .hsr-card-five{
        margin-left: 0;
        width: 100%;
    }

    .hsr-section-title p{
        font-size: 0.8rem;
        width: 100%;
        margin:auto;
    }
}

/* Disclaimer */

.hsr-page-bg{
    background-color: var(--theme-light);
}

.hsr-page-header{
    background-color: var(--theme-blue);
}

.breadcrumb a{
    color: white !important;
}
.breadcrumb-item.active{
    color: var(--theme-orange);
}

.breadcrumb-item::before{
    color: rgba(255,255,255,0.5) !important;
}

.text-sm{
    font-size: 0.9rem;
}

.hsr-social-icons{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    width: 50px;
    border-radius: 1rem;
    -webkit-border-radius: 1rem;
    -moz-border-radius: 1rem;
    -ms-border-radius: 1rem;
    -o-border-radius: 1rem;
    background-color: var(--theme-orange);
    color: white;
    font-size: 20px;
    margin-right: 1rem;
}

.hsr-social-icons:hover{
    background-color: var(--theme-blue);
}