:root {
    --heading-font: "Oswald", sans-serif;
    --body-font: "Source Sans 3", Arial, sans-serif;
}

body {
    padding: 0;
    margin: 0;
    font-family: var(--body-font)
}

.underline {
    margin-top: 10px;
    margin-bottom: 1rem;
    width: 10rem;
    height: 2px;
    background-color: #001f3f;
}

.h2-title {
    color: #001f3f;
    font-family: var(--heading-font);
    font-size: 3rem;
    text-transform: uppercase;
    margin: 0;
    margin-bottom: 30px;
}

.h3-title {
    color: #4e4b66;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    font-family: var(--heading-font);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.text {
    color: #4e4b66;
    font-size: 1rem;
    line-height: 1.5;
    font-family: var(--body-font);
}

.tac {
    text-align: center;
}

.m0 {
    margin: 0;
}

.bold {
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .h2-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .h3-title {
        font-size: 1rem;
    }
}

/*------------ navbar css ------------ */
.header {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 96%;
    max-width: 96%;
    z-index: 99;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s, background-color 0.3s;
}

.header-top {
    width: 100%;
    position: fixed;
    max-width: 100%;
    top: 0;
    left: 0;
    z-index: 99;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s, background-color 0.3s;
}

.navbar {
    height: 3rem;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    border: 0;
}

.header .navbar {
    border-radius: 1.5rem;
}

.header .navbar.b0 {
    border-radius: 1.5em 1.5em 0 0;
}

.header-top .navbar {
    border-radius: 0;
}

.navbar-list-left,
.navbar-list-right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    box-sizing: border-box;
}

.navbar-list-left .logo {
    /* height: 50px; */
    box-sizing: border-box;
    height: 70px;
    width: 70px;
    image-rendering: crisp-edges;
    image-rendering: -moz-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    object-fit: cover;
    /* transform: scale(1.1); */
}

.navbar-list-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 2;

}

.navbar-list-left {
    justify-content: flex-start;
}

.navbar-list-right {
    justify-content: flex-end;
}


.navbar-list {
    list-style: none;
}

.navbar-list-item {
    margin: 0 1rem;
    text-transform: uppercase;
    font-family: var(--heading-font);
    color: #001f3f;
    transition: 0.3s;
}

.navbar-list-item:hover {
    color: #43b7ff;
}

.navbar-list-item a {
    text-decoration: none;
    color: inherit;
    font-size: 1rem;
    font-weight: 500;
}

.navbar-list-item.get-started {
    padding: 0.7rem 2.7rem;
    background-color: #001f3f;
    color: white;
    /* font-size: 20px; */
    outline: none;
    border: 0;
    border-radius: 2rem;
    font-family: var(--heading-font);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-list-item.get-started:hover {
    background-color: #43b7ff;
    color: #001f3f;
}

.navbar .hamburger {
    display: none;
    justify-content: flex-end;
    flex-direction: column;
    justify-content: space-around;
    background-color: #001f3f;
    width: 1.5rem;
    height: 1.5rem;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.navbar .hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background-color: #f7f7f7;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.header-mobile.hidden {
    display: none;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

.header-mobile.open {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 100%;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* padding: 2rem; */
    margin: 0;
    z-index: 97;
}

.header .header-mobile.open {
    border-radius: 0 0 15px 15px;
}

.header-top .header-mobile.open {
    border-radius: 0 0 15px 15px;
}

.mobile-navbar-list .navbar-list-item {
    padding: 10px 0;
    list-style: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-navbar-list .navbar-list-item:hover {
    color: #43b7ff;
}

@media screen and (max-width: 1024px) {

    .header,
    .header-top {}

    .navbar-list-middle,
    .navbar-list-right {
        display: none;
    }

    .navbar .hamburger {
        display: flex;
    }

    .header-mobile.open {
        display: flex;
    }
}

/*------------- hero section ------------ */

.hero {
    height: 50vh;
    background-color: #001f3f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 5rem;
}

.hero h1 {
    color: #f7f7f7;
    font-size: 4rem;
    font-family: var(--heading-font);
    text-transform: uppercase;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .hero {
        height: 30vh;
        padding-top: 6rem;
        padding-bottom: 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media screen and (max-width: 767px) {
    .hero {
        height: 30vh;
        padding-top: 6rem;
        padding-bottom: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}


/* ------------------body container -------------- */

.desc-container {
    padding: 4rem 8rem 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    width: 100%;
    font-family: var(--body-font);
    font-size: 1.1rem;
    /* letter-spacing: 1px; */
}

.desc-container ul li::marker {
    color: #001f3f;
    font-size: 1.1rem;
}

.desc-container .right,
.desc-container .left {
    flex: 1;
}

.desc-container .left {
    display: flex;
    flex-direction: column;
}

.desc-container-two {
    padding: 2rem 8rem 4rem;
    display: flex;
    flex-direction: column;
    font-family: var(--body-font);
    font-size: 1.1rem;
    /* letter-spacing: 1px; */
}

.desc-container-two .h3-title {
    color: #001f3f;
    font-size: 1.2rem;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .desc-container {
        padding: 2rem;
        flex-direction: column;
    }

    .desc-container-two {
        padding: 2rem;
    }
}

@media screen and (max-width: 767px) {
    .desc-container {
        padding: 2rem;
        flex-direction: column;
    }

    .desc-container-two {
        padding: 2rem;
    }
}

/* -----------footer styling ------------ */

footer {
    background-color: #001f3f;
    box-sizing: border-box;
    padding: 4rem 7rem 2rem;
    display: flex;
    flex-direction: column;
}

footer .container {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
}

footer .container .inner {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer .container .inner .inner-content {
    display: flex;
    flex-direction: column;
}

footer .container .inner .inner-content span,
footer .container .inner .inner-content .sm-container {
    margin-bottom: 1rem;
    cursor: pointer;
}

footer .container .inner .inner-content .sm-container a {
    color: inherit;
    text-decoration: none;
}

footer .container .inner .inner-content span a {
    color: inherit;
    text-decoration: none;
}

footer .container .inner .inner-content span a:hover {
    text-decoration: underline;
}

footer .container .inner .inner-content .inner-title {
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    font-family: var(--lato-font);
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

footer .container .inner .inner-content span {
    color: white;
    font-size: 1.1rem;
    font-family: var(--poppins-font);
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1rem;
}

footer .container .inner .inner-content .sm-container a {
    color: white;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

footer .copyright-container {
    margin-top: 1rem;
    box-sizing: border-box;
    color: white;
    text-align: center;
    border-top: 1px solid white;
    font-size: 1.1rem;
    padding: 1.5rem 0 0 0;
}

footer .copyright-container a {
    color: white;
}


/* Tablets and small desktops (max-width: 1024px) */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    footer {
        padding: 3rem 2rem;
        /* padding: 1rem; */
    }

    footer .container .inner {
        width: 100%;
        text-align: center;
        margin-bottom: 2rem;
    }

    footer .container .inner .inner-content {
        align-items: center;
    }
}

/* Mobile devices (max-width: 768px) */
@media screen and (max-width: 767px) {
    footer {
        padding: 2rem 3rem;
    }

    footer .container {
        flex-direction: column;
    }

    footer .container .inner {
        width: 100%;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    footer .container .inner .inner-content {
        align-items: center;
    }

    footer .container .inner .inner-content .inner-title {
        font-size: 1.2rem;
    }

    footer .container .inner .inner-content span,
    footer .container .inner .inner-content .sm-container {
        font-size: 1rem;
    }

    footer .copyright-container {
        font-size: 1rem;
        padding: 1rem 0;
    }
}