:root {
    --primary-color: #3971ed;
    --font: #404040;
    --open-sans: "Open Sans", sans-serif;
    --roboto: "Roboto", Sans-serif;
    --background-color: #f4f7fe;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--roboto);
    color: var(--font);
}

h1 {
    font-size: 36px;
}

h6 {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5em;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

h3 {
    font-size: 1.375rem;
    font-weight: 600;
}

a,
p {
    font-family: var(--open-sans);
    font-weight: 400;
    line-height: 1.5em;
    color: var(--font);
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

p span {
    font-family: var(--font-poppins);
    font-size: 1.125rem;
    font-weight: 500;
}

section {
    padding: 100px 0 100px 0;
}

@media (max-width: 765px) {
    h2 {
        font-size: 23px;
    }

    h6 {
        font-size: 16px;
    }

    h3 {
        font-size: 22px;
    }

    footer .nav-link,
    footer .nav-link.active {
        text-decoration: underline;
        color: #44494c !important;
        padding: 2px;
        margin-right: 10px;
        font-weight: 400;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

body .bg-primary {
    background-color: var(--primary-color) !important;
    color: #fff;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

body .text-primary {
    color: #2563eb !important;
}
header .help-button{
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}
header .help-button:hover{
    background-color: var(--primary-color) !important;
    color: #fff !important;
}
header {
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
}

header a {
    color: var(--sec-font);
}

header .logo a {
    font-size: 1.563rem;
    font-weight: 500;
}

header .logo p {
    margin-top: -6px;
    font-size: 16px;
    font-family: var(--roboto);
    font-weight: 500;
    line-height: 16px;
}

header .cta .btn-primary {
    font-size: 14px !important;
    letter-spacing: 2.92px;
    transition: transform 0.3s ease;
}

header .cta .btn-primary:hover {
    transform: scale(0.9);
}

header .links ul {
    list-style: none;
    padding-top: 10px;
    display: flex;
}

header .links ul li {
    margin-right: 12px;
    position: relative;
    display: flex;
    align-items: center;
}

header .links ul li a {
    font-weight: 500;
}

header .links ul li::after {
    content: "";
    height: 60%;
    border-left: 2px solid #000;
    display: inline-block;
    margin-left: 10px;
    align-self: center;
}

header .links ul li:nth-child(n + 4)::after {
    display: none;
}

footer {
    background-image: url(/img/hero.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

footer #footer {
    padding: 5rem 0;
}

footer .nav-link.active,
footer .nav-link:hover {
    color: #2563eb !important;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

footer .nav-link:hover::after {
    content: '';
    display: block;
    width: 70%;
    height: 2px;
    background-color: #2563eb;
    position: absolute;
    bottom: 0px;
    left: 18px;
    animation: slideIn 0.3s forwards;
}

footer .nav-link {
    color: #11181c;
    transition: color 0.3s, font-weight 0.3s;
}

footer p {
    font-size: 14px;
    font-weight: 400;
}

.burger {
    display: inline-block;
    cursor: pointer;
    z-index: 1000;
}

.burger span {
    display: block;
    width: 30px;
    height: 3px;
    background: #333;
    margin: 6px 0;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        opacity 0.3s ease;
}

#burger-checkbox {
    display: none;
}

#burger-checkbox:checked+.burger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

#burger-checkbox:checked+.burger span:nth-child(2) {
    opacity: 0;
    transform: translateX(-30px);
}

#burger-checkbox:checked+.burger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.site-index .hero {
    background-image: url(/img/hero.svg);
    background-color: var(--background-color);
    background-repeat: no-repeat;
    background-size: cover;

}

.offcanvas {
    background-image: url(/img/hero.svg);
    background-color: var(--background-color);
    background-position: center;
    /* Centers the image */
    background-repeat: no-repeat;
    /* Prevents repeating */
    background-size: cover;
    /* Ensures the image covers the entire area */
}

#offcanvasRight {
    width: 100%;
}

#offcanvasRight .heading h4 {
    font-weight: normal;
    font-family: var(--roboto);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

#offcanvasRight .heading h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 2px;
    background-color: #2563eb;
}

.hero ul li {
    padding-bottom: 15px;
}

.hero .btn-primary {
    background-color: #fff;
    color: var(--font);
    border: none;
    border-bottom-width: 2px !important;
    border-bottom-style: solid !important;
    border-bottom-color: var(--primary-color);
    transition: background-color .2s ease;
    width: 100%;
    text-align: left;
    padding: 15px;
    border-radius: 0 0 10px 10px;
    font-family: var(--open-sans);
}

.hero .btn-primary:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.hero .btn-secondary {
    background-color: #fff;
    color: var(--font);
    border: none;
    border-bottom-width: 2px !important;
    border-bottom-style: solid !important;
    border-bottom-color: var(--primary-color);
    transition: background-color .2s ease;
    width: 45%;
    text-align: center;
    padding: 15px;
    font-family: var(--open-sans);
}

.hero ul li .help-btn {
    border-radius: 0 0 0 10px;
}

.hero ul li .login-btn {
    border-radius: 0 0 10px 0;
}

.form-check-input {
    min-width: 1em;
    min-height: 1em;
}

#checkout-form .card-header h5 {
    color: #fff;
}

body .bg-blue {
    background-color: var(--background-color);
}

#need .list ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 2rem 0;
}

#need .list li {
    font-family: var(--roboto);
    font-size: 18px;
    font-weight: 400;
    margin-right: 30px;
    display: flex;
    align-items: center;
    line-height: 3;
  }