/* link to briston font */
@font-face {
    font-family: Briston;
    src: url(/assets/fonts/bristone/Bristone.otf)
    
}

/* variables/root */
:root{
    --white: #ffffff;
    --blue:#0E69B2;
    --light-blue: #E7F0F7;
    --black: f000000;
    --light-orange: #FFA500;
    --grey: #808080; 
}

/* utilities */
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: inter;
    margin: 0;
    margin-top: 80px;
    overflow-x: hidden;
    /* height: 3000px; */
}
a {
    text-decoration: none;
}
ul {
    list-style-type: none;
    padding: 0;
}
/* navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;

    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    height: 80px;
    padding: 0 3rem;
}
.navbar .logo{
    width: 6rem;
}
.navbar-links{
    display: flex;
    justify-content: space-between;
    list-style-type: none;
    align-items: center;
}
.navbar-links li {
    padding-top: 1rem;
    margin: 0 1rem;
}
.navbar-links li a {
    text-align: center;
    font-family: Briston;
    font-size: 0.8rem;
    color: var(--blue);
}
.navbar-links li a:hover {
    color: var(--light-orange);
}
.navbar-btn {
    border: 1px solid var(--light-orange);
    color: var(--light-orange);
    border-radius: 12px;
    padding: 10px 20px;
    font-family: Briston;
}
.navbar-btn:hover{
    border-color: var(--blue);
    color: var(--blue);
}

/* hero section */
.hero {
    background: url(/assets/background_images/hero_section_bg.svg) no-repeat center center/cover;
    height: 75vh;
    display: flex;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 75vh;
    opacity: 0.9;
    z-index: -8;
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.5);
}
.hero .container .content{
    padding-top: 4rem;
    z-index: 6;
}
.hero .container .content h1{
    font-size: 2.5rem;
    color: var(--white);
    font-family: Briston;
    z-index: 6;
}
.hero .container .content p{
    z-index: 6;
    font-size: 1rem;
    color: var(--white);
}
.hero .container .hero-mockup{
    z-index: 6;
}
.hero .container .mockup-1{
    width: 100%;
}
.hero .container .btn-icon{
    width: 8rem;
}
.hero .container .left{
    margin-left: 1rem;
}

/* about us */
#about{
    padding-bottom: 4rem;
    background: var(--light-blue);
}
.about .title{
    color: var(--black);
    font-family: Briston;
    font-size: 1.5rem;
    padding-top: 4rem;
}
.about .about-p-box {
    margin-left: -0rem;
}
.about  .about-p{
    color: var(--blue);
    padding-top: 3rem;
    font-size: 1rem;
}

/* what sets legitbills apart */

 .card-body .d-flex {
    justify-content: center;
    align-items: center;
    text-align: center;
}

.what-sets-us-apart h2{
    color: var(--black);
    font-family: Briston;
    font-size: 1.5rem;
}
.card-box .card-body .card-title {
    padding-top: 1.5rem;
    font-size: 1.5rem;
}
.card-box .card-body .card-text {
    padding-top: 1.5rem;
    padding-right: 2rem;
    padding-bottom: 3rem;
}
.card-box .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-box .card:hover{
    color: white !important;
        transform: scale(1.05);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.card-box .card-body:hover{
    background: var(--blue);
    color: var(--white) !important;
}
/* card icon */
.card-icon {
    font-size: 2.5rem;
    margin-left: 10px;
    padding-left: 2rem;
    padding-right: 0.5rem;
}

/* services */
#services {
    padding-top: 4rem;
    padding-bottom: 6rem;
}
.services .what-we-offer {
    font-size: 1.5rem;
    color: var(--light-orange);
}
.services .our-services h2{
    color: black ;
    font-size: 2rem;
    font-family: Briston;
}
.services .we-empower-you {
    color: var(--blue);
}
/* services cards */
.services .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services .card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* how it works */
.how-it-works {
    background: var(--light-blue);
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.how-it-works .container .col-md-6 {
    color: var(--black);
}
.how-it-works .container .col-md-6 h2{
    font-family: Briston;
}
.how-it-works .container .col-md-6 h2 span {
    color: var(--blue);
}
.how-it-works .container .col-md-6 .p-sub-headline {
    color: var(--light-orange);
}
.how-it-works .container .col-md-6 .step-number {
    text-align: center;
    font-size: 2rem;
    width: 3rem;
    border: 1px solid var(--light-orange);
    border-radius: 50%;
}
.how-it-works .container .col-md-6 .step p {
    padding-left: 3rem;
}

/* become an agent */
#agent {
    padding: 4rem;
    background: var(--white) !important;
}
.agent .container .become-agent {
    font-size: 1.5rem;
    color: var(--light-orange);
}
.agent .agent-headline h2 {
    color: black ;
    font-size: 2rem;
    font-family: Briston;
}
.agent-content {
    margin: 0 8rem;
}
.agent .become-agent-row{
    margin-top: 6rem;
}
.agent .black-guy-1 {
    border-radius: 50%;
    width: 100%;
    
}

/* contact */
#contact {
    background: var(--blue);
    margin-top: 4rem;
    color: var(--white);
}
.contact .container {
    padding: 4rem 0;
}
.contact .container .need-support {
    font-size: 3rem;
}
.contact .container .col-md-6 p i {
    font-size: 1.5rem;
}
.form-label {
    font-size: 1.5rem;
}

/* footer */
.footer{
    padding-top: 4rem;
    background: var(--light-blue);
}
.footer-image {
    width: 3rem;
    margin-top: 2rem;
}
.footer .company-info {
    font-size: 0.8rem;
}
.footer .footer-links li a {
    color: var(--blue);
}
 .f-services {
    list-style-type: none;
}
.footer-links li{
    color: var(--white);
}
.footer .list-inline{
    font-size: 2rem;
}