@import url("https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
* {
    box-sizing: border-box;
}

header {
    position: relative;
}

body {
    font-family: "Karla", sans-serif;
}

.myNavbar {
    padding: 15px 20px;
    position: relative;
    z-index: 99;
    background-color: #fff;
    background-color: rgb(25, 30, 41);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px,
        rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
.myNavbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sub-title {
    text-transform: uppercase;
    font-weight: 600;
    padding-left: 25px;
    position: relative;
    color: #02867d;
    margin-bottom: 10px;
}

.sub-title::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 2px;
    background-color: #02867d;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.logo-cont {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-cont .logo-txt {
    margin: 0;
    display: block;
    margin-right: -15px;
    position: relative;
    left: -9px;
    color: #fefefe;
    font-weight: 600;
    font-size: 18pt;
}

.logo-cont img {
    height: 40px;
}

.hide-sm {
    display: none !important;
}

.sm-navlinks {
    position: absolute;
    left: 0;
    padding: 0;
    right: 0;
    bottom: 0;
    transform: translateY(0);
    z-index: 9;
    margin: 0;
    list-style: none;
    background-color: rgb(25, 30, 41);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px,
        rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transition: transform 0.7s ease-in-out;
}

.sm-navlinks li a {
    padding: 15px 20px;
    display: block;
    text-decoration: none;
    color: #fefefe;
    text-transform: uppercase;
}

@media (min-width: 576px) {
    .sm-navlinks li a {
        padding-left: 0;
    }
}
.sm-navlinks.active {
    transform: translateY(100%);
}

.nav-cta-group {
    background-color: #f7f7f9;
    padding: 20px;
}

.nav-cta-group li {
    margin-right: 20px;
    padding: 0;
}

#side-screen {
    display: none;
}

.sm-navlinks.active ~ #side-screen {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4745098039);
    z-index: 8;
}

.nav-links {
    display: none;
}

.accent-color {
    color: rgb(1, 195, 141) !important;
}

.cta-btn {
    padding: 9px 20px !important;
    background-color: rgb(1, 195, 141);
    border: 1px solid rgb(1, 195, 141);
    font-weight: 600;
    text-decoration: none;
    color: #fff !important;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    text-transform: uppercase;
    border-radius: 5px;
}

@media (min-width: 768px) {
    .logo-cont {
        position: relative;
    }
    .logo-cont img {
        position: absolute;
    }
    .logo-cont .logo-txt {
        display: block;
        position: relative;
        left: 40px;
        color: #fefefe;
        font-weight: 600;
        font-size: 18pt;
    }
}
@media (min-width: 999px) {
    .sm-navlinks {
        display: none;
    }
    .menu-icon {
        display: none;
    }
    .nav-links {
        display: block;
        display: flex;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    .nav-links li {
        display: grid;
        place-items: center;
        margin-left: 30px;
    }
    .nav-links li a {
        display: block;
        font-size: 11pt;
        text-decoration: none;
        color: #fefefe;
        text-transform: uppercase;
    }
}
.myNavbar.light-mode {
    background-color: #fefefe;
}
.myNavbar.light-mode .nav-links li a {
    color: rgb(25, 30, 41);
}
.myNavbar.light-mode ~ .sm-navlinks {
    background-color: #fefefe !important;
}
.myNavbar.light-mode ~ .sm-navlinks li a {
    color: rgb(25, 30, 41);
}
.myNavbar.light-mode .menu-icon span {
    background-color: rgb(25, 30, 41);
}
.myNavbar.light-mode .logo-cont .logo-txt {
    color: rgb(29, 35, 48);
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.landing {
    min-height: 600px;
    width: 100%;
    background-image: linear-gradient(to right, #0000007c, #0000007c),
        url("../assets/img/landing-bg.jpg");
    background-color: rgba(0, 0, 0, 1);
    background-size: cover;
    background-position: center;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
}
.landing .content {
    padding-top: 100px;
    color: #fff;
    text-align: center;
}
.landing .content-txt {
    max-width: 700px;
    margin: 0 auto;
}
.body-title {
    font-weight: 700;
    font-size: 20pt;
}

.about {
    padding: 60px 0;
}
.about .col-sm-12:not(:last-child) {
    margin-bottom: 40px;
}
.about .row {
    margin-bottom: 80px;
}

.about-item {
    display: flex;
    padding: 0 15px;
    align-items: center;
}

.body-title {
    color: rgb(25, 30, 41);
}

.ai-illus {
    margin-right: 10px;
}

.ai-txt h4 {
    font-weight: 500;
    color: rgb(40, 48, 65);
    font-size: 18pt;
    margin: 0;
}

.ba-row {
    max-width: 850px;
    margin: 0 auto;
}

.ba-col {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ba-stat {
    color: #01c38d;
    margin: 0;
    margin-right: 10px;
    font-size: 25pt;
}

.ba-sub {
    margin: 0;
}

@media (min-width: 768px) {
    .body-title {
        font-size: 25pt;
    }
    .about-item {
        flex-direction: column;
        text-align: center;
    }
    .ai-illus {
        margin-bottom: 10px;
        margin-right: 0;
    }
    .ai-illus img {
        height: 50px;
    }
    .ba-row {
        display: flex;
        justify-content: space-between;
    }
    .ba-col {
        flex-direction: column;
        align-items: center;
    }
    .ba-stat {
        margin-right: 0;
        margin-bottom: 10px;
        font-size: 30pt;
    }
    .ba-sub {
        font-size: 11pt;
    }
}
.rates {
    padding-top: 60px;
}

.rates-slider-cont {
    display: flex;
    overflow: hidden;
    flex-wrap: nowrap;
    width: 100%;
}

.rates-slider-cont:hover .rates-slider {
    animation-play-state: paused;
}

.rates-slider {
    display: flex;
    flex-wrap: nowrap;
    padding: 20px 0;
    animation: 60s linear 0s infinite reverse none running animateRates;
}

.rates-item {
    margin: 0 5px;
    padding: 2rem 1rem 1.8rem;
    flex: 0 1 210px;
    min-width: 210px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px,
        rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.rates-item .rates-item-cont {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.rates-item .rates-item-cont img {
    width: 80px;
    margin-bottom: 20px;
}
.rates-item .rates-item-cont .ri-val {
    font-size: 17pt;
    line-height: 1.15em;
    font-weight: 500;
}

@keyframes animateRates {
    0% {
        transform: translateX(0px);
    }
    100% {
        transform: translateX(-100%);
    }
}
.join {
    padding: 60px 0;
}

.join-cont {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    padding: 20px 0 30px;
}

.join-item {
    display: flex;
    flex: 0 1 300px;
    min-width: 400px;
    padding: 15px;
    margin-right: 10px;
    box-shadow: rgba(25, 30, 41, 0.1) 0px 3px 16px;
}
.join-item:first-child {
    margin-left: 10px;
}
.join-item .join-illus {
    margin-right: 20px;
}
.join-item .join-illus img {
    width: 46px;
}
.join-item .join-txt {
    display: flex;
    flex-direction: column;
}
.join-item .site {
    font-weight: 500;
    margin-top: auto;
    color: #01c38d;
}

.why {
    padding: 60px 0;
    background-color: #f3f6fa;
}

.services {
    padding: 60px 0;
    background-color: #f3f6fa;
}

.aib-illus {
    width: 75px;
    margin-bottom: 15px;
}

.faq {
    padding: 60px 0;
}

.accordion-button:not(.collapsed) {
    color: #02867d;
    background-color: rgba(2, 134, 125, 0.1529411765);
}

.accordion-button:focus {
    z-index: 3;
    border-color: #000000;
    outline: 0;
    box-shadow: rgba(2, 134, 125, 0.2549019608) 0px 2px 4px;
}

.contact {
    background-color: #f3f6fa;
}

.contact-cnt {
    display: flex;
}
.contact-socials {
    display: flex;
}
.cs-item {
    margin-right: 10px;
}
.cs-item img {
    height: 40px;
}

@media (min-width: 999px) {
    .contact-desc {
        flex: 0 1 50%;
    }
}
.contact-desc {
    padding: 90px 0;
    position: relative;
}

@media (min-width: 999px) {
    .contact-illus {
        height: auto;
        flex: 0 1 50%;
        width: 50%;
        background-image: url(../assets/img/contact.jpg);
        background-size: cover;
    }
}
footer {
    padding: 40px 0;
    background-color: #141c23;
}

footer .title-sub {
    color: #cfdae0;
}

footer .col-sm-12 {
    margin-bottom: 40px;
}

.foot-logo-cont {
    display: flex;
    flex-direction: column;
}

.foot-logo-cont div {
    display: flex;
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
}

.foot-logo-cont img {
    width: 160px;
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
}

.foot-logo-cont .foot-txt {
    font-weight: 600;
    font-size: 20pt;
    margin-bottom: 0;
    color: #cfdae0;
}

.foot-title {
    color: #6b7b8b;
    font-size: 13pt;
    font-weight: 500;
    text-transform: uppercase;
}

.foot-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.foot-links li {
    margin-bottom: 10px;
}

.foot-links a {
    color: #cfdae0;
    text-decoration: none;
}

.foot-form form {
    display: flex;
}

.foot-form input {
    border: 1px solid rgba(207, 218, 224, 0.2901960784);
    background-color: rgba(0, 0, 0, 0.2352941176);
    color: #cfdae0;
}

.foot-form input::-moz-placeholder {
    color: #cfdae0;
    font-size: 11pt;
}

.foot-form input::placeholder {
    color: #cfdae0;
    font-size: 11pt;
}

.foot-form .cta-btn {
    margin-left: -10px;
    border-radius: 0 3px 3px 0;
}

.foot-btm {
    background-color: #10161c;
    border-top: 1px solid #222e3a;
}

.foot-btm p {
    margin-bottom: 0;
} /*# sourceMappingURL=style.css.map */
