/*colors*/
/*Primary Green #52b742 */
/*Dark Blue/Black #0a1d37 */
/*Light Green #a6d71c */

:root {
    --bs-primary: #52b742;
    --bs-dark: #0a1d37;
    --bs-secondary: #a6d71c;
}

/*custom*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: #0a1d37;
}
p {
    font-family: 'Inter', sans-serif;
}
a {
    font-family: 'Montserrat', sans-serif;
    color: #52b742;
    text-decoration: none;
}
.justify-text {
    text-align: justify;
}
.text-primary {
    color: #52b742 !important;
}
.text-secondary {
    color: #a6d71c !important;
}
.text-dark {
    color: #0a1d37 !important;
}
.btn-primary {
    background-color: #52b742;
    border-color: #52b742;
}
.btn-primary:hover {
    background-color: #3e9231;
    border-color: #3e9231;
}
.btn-outline-primary {
    color: #52b742;
    border-color: #52b742;
}
.btn-outline-primary:hover {
    background-color: #52b742;
    color: #fff;
}
.bg-primary {
    background-color: #52b742 !important;
}
.bg-dark {
    background-color: #0a1d37 !important;
}
.bg-light-gray {
    background-color: #F8F9FA !important;
}

/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    color: var(--bs-dark);
    font-size: 17px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--bs-dark);
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--bs-primary);
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
    }
}

/*** Hero Header ***/
.hero-header {
    background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url(../img/sunset_field.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-header-content {
    padding-top: 150px;
    padding-bottom: 100px;
}

/*** Solution Boxes ***/
.solution-box {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transition: .5s;
    height: 100%;
}

.solution-box:hover {
    background: var(--bs-primary);
}

.solution-box:hover h4,
.solution-box:hover p,
.solution-box:hover i {
    color: #FFFFFF !important;
}

.solution-box i {
    font-size: 40px;
    color: var(--bs-primary);
    margin-bottom: 20px;
    display: block;
}

/*** How it Works ***/
.step-item {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 80px;
    background: var(--bs-primary);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 20px;
}

/*** Footer ***/
.footer {
    background: var(--bs-dark);
    color: rgba(255, 255, 255, .7);
}

.footer .footer-item h4 {
    color: #FFFFFF;
}

.footer .btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, .7);
    font-weight: normal;
}

.footer .btn-link:hover {
    color: var(--bs-primary);
}

/*** Copyright ***/
.copyright {
    background: #06162c;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.copyright p, .copyright span, .copyright a {
    color: rgba(255, 255, 255, .7) !important;
}

.copyright a:hover {
    color: var(--bs-primary) !important;
}
