@import url("https://fonts.googleapis.com/css2?family=Epilogue:wght@400;500;600;700;800;900&family=Inter:wght@200;300;400;500&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter";
    text-decoration: none !important;
    list-style: none !important;
}

body,
html {
    scroll-behavior: smooth;
    background-color: #fefefe !important;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden !important;
    font-family: "Inter";
}

::-webkit-scrollbar {
    background: rgb(255, 255, 255);
    width: 6px;
}

::-webkit-scrollbar-track {
    display: none;
    max-height: 500px;
    background: #ffffff;
    border-radius: 50px;
}

::-webkit-scrollbar-thumb {
    background: #10b981;
    border-radius: 10px;
}

p {
    font-size: 19px;
}

ul {
    list-style: none;
}

a {
    text-decoration: none !important;
}

.popup {
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    z-index: 1001;
}

.popup_container {
    background: #fff;
    width: 800px;
    height: auto;
    border-radius: 30px;
    padding: 30px;
}

.popup_header {
    position: relative;
    margin: 0 auto;
}

.popup_header ul {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    font-size: 14px;
    font-weight: 500;
}

.popup_header a {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #969696;
}

.popup_header .line {
    height: 4px;
    position: absolute;
    bottom: -10px;
    margin: 10px 0 0 0;
    border-radius: 50px;
    background: #10b981;
}

.popup_header ion-icon {
    position: absolute;
    right: 20px;
    top: -2px;
    font-size: 24px !important;
    color: #363636;
    cursor: pointer;
}

.search_container {
    width: 100%;
    margin: 40px 0 40px 0;
    position: relative;
}

.input_wrap {
    max-width: 500px;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 1rem 0 1rem;
    border-radius: 50px;
    margin: 0 auto;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #d7d7d7;
}

.input_wrap input {
    font-size: 1rem;
    color: #000;
    width: 100%;
    height: 100%;
    padding: 0 0 0 1rem;
    background: #fff;
    border-radius: 50px;
    border: none;
    outline: none;
    text-align: left;
    /* border: 1px solid #efefef; */
}

.search_container .dropdown {
    position: absolute;
    top: 100%;
    width: 100%;
}

.search_container .dropdown .result {
    width: 100%;
    padding: 4px;
    background-color: #f5f7fa;
    border-left: 1px solid #e6e9ed;
    border-right: 1px solid #e6e9ed;
    cursor: pointer;
}

.search_container .dropdown .result:last-child {
    border-bottom: 1px solid #e6e9ed;
}

.search_container .dropdown .result:hover,
.search_container .dropdown .result.selected {
    background-color: #37bc9b;
}

.input_wrap input::placeholder {
    color: #000;
    opacity: 0.7;
    font-family: "Inter";
}

textarea.form-control::placeholder {
    color: #cecece;
}

.input_wrap i {
    font-size: 1.5rem;
    color: #000;
}

.element_list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.element {
    background: #f3f3f3;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 30px 0 30px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.4s;
}

.element:hover {
    opacity: 0.5;
}

.element p {
    color: #4e4e4e !important;
    font-size: 16px !important;
}

.element ion-icon {
    color: #fff;
    font-size: 18px !important;
    font-weight: bold !important;
    margin-top: -5px;
}

.selected_element {
    background: #10b981;
}

.selected_element p {
    color: #fff !important;
}

.selected_container {
    display: flex;
    background: #fff;
    border-top: 1px solid #c7c7c7;
    margin-top: 30px;
    padding-top: 20px;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.selected_header {
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #969696 !important;
    font-size: 14px !important;
    font-weight: 500;
}

.selected {
    display: flex;
    gap: 20px;
}

.selected_eid {
    display: flex;
    align-items: center;
    background: #ffeee5;
    padding: 0px 30px;
    border-radius: 50px;
}

.selected_eid span {
    font-weight: bold;
}

.selected_eid p {
    color: #070707 !important;
    font-size: 16px !important;
    margin-left: 10px;
    margin-top: 16px !important;
}

.popup_container button {
    text-align: center;
    background: #10b981;
    max-width: 70%;
    min-width: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem !important;
    outline: none;
    border: none;
    border-radius: 50px !important;
    font-family: "Inter" !important;
    padding: 10px;
    margin: 0 auto;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav {
    /* margin: 0 50px; */
    width: 95%;
    border-radius: 20px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;
    z-index: 100;
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 10vh;
    background: rgb(255, 255, 255);
    /*  transition: 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    backdrop-filter: blur(20px);
    box-shadow: 5px 15px 15px #4e564e; */
}

.nav-wide {
    top: 0;
    width: 100%;
    border-radius: 0;
}

.nav-small {
    width: 95%;
    border-radius: 20px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.start_footer {
    margin: 50px 0 20px 0;
}

.logo img {
    width: 8rem;
    cursor: pointer;
}

.nav-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 60%;
    padding-top: 1.2rem;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: #2f2f2f;
    position: relative;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem !important;
}



.beta-nav .menu_beta {
    position: absolute;
    top: 0;
    right: 10px;
    background: #10b98127;
    color: #10996b;
    padding: 5px;
    width: 45px !important;
    height: 25px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 100000;
}

.solutions_box {
    background: #04aa6d30;
    border: 1px solid #0d8f64;
    border-radius: 20px;
    width: 300px;
    height: 250px;
    padding: 30px;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #000;
    text-decoration: none;
    justify-content: center;
    gap: 25px;
    text-align: center;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
}

.solutions_box ion-icon {
    transform: rotate(-45deg);
}

.solutions_box_container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.desktop-item {
    position: relative;
}

.nav-links .drop-menu {
    position: absolute;
    background: #242526;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
    transition: all 0.3s ease;
    top: 70px;
    opacity: 1;
    visibility: visible;
}

.drop-menu li a {
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}

.mega-box {
    position: absolute;
    left: 400px;
    width: 1200px;
    padding: 0 30px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
}

.mega-box .content {
    background: #fff;
    padding: 25px 20px;
    display: flex;
    width: 50%;
    gap: 120px;
    justify-content: center;
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

.mega-box .content .row {
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

nav .content .row header {
    color: #000;
    font-size: 20px;
    font-weight: 500;
}

nav .content .row .mega-links {
    margin-left: -40px;
    border-left: 1px solid rgba(255, 255, 255, 0.09);
}

nav .row .mega-links li {
    padding: 0 20px;
    width: 200px !important;
}

nav .row .mega-links li a {
    padding: 0px;
    padding: 0 20px 10px 20px;
    color: #272727;
    font-size: 14px !important;
    line-height: 30px !important;
    display: block;
}

nav .row .mega-links li a:hover {
    color: #8d8d8d;
}

.wrapper .btn {
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.wrapper .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
}

nav input {
    display: none;
}

.current-nav {
    color: #10b981 !important;
}

.nav_primary_btn {
    background: #10b981;
    width: 8rem;
    font-size: 1rem !important;
    transition: 0.5s;
}

.nav_sec_btn {
    background: #f1f1f1;
    width: 8rem;
    font-size: 1rem !important;
    transition: 0.5s;
    color: #494949;
}

.nav_btns {
    display: flex;
    gap: 20px;
}

nav button:hover {
    background: #fff;
}

nav ion-icon {
    transform: rotate(-45deg);
}

.nav-links .active {
    color: #000 !important;
}

.hero-down {
    z-index: 2;
    position: absolute;
    top: 95%;
    color: #fff;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.nav-links a:hover {
    color: #10b981;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 30px;
    height: 2px;
    background-color: #513f27;
    transition: 0.5s;
    margin: 5px;
}

.toggle .line2 {
    transition: 0.1s;
}

@media screen and (max-width: 1190px) {
    .nav-links {
        width: 80%;
    }
}

@media screen and (max-width: 1024px) {
    .nav-links {
        width: 60%;
    }
}

@media screen and (max-width: 1040px) {
    body {
        overflow-x: hidden;
    }

    .nav_btns {
        flex-direction: column;
    }

    .nav-links {
        z-index: 1000;
        position: absolute;
        padding-top: 4rem;
        right: -30px;
        height: 100vh;
        top: 10vh;
        background: rgba(82, 82, 82, 0.925);
        backdrop-filter: blur(30px);
        color: #fff;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        /* gap: 70px; */
        width: 130%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }

    .wrapper .btn {
        display: none;
    }

    .nav-links .drop-menu {
        display: none;
    }

    nav li input {
        display: none;
    }

    /* #showDrop:checked ~ .drop-menu,
    #showMega:checked ~ .mega-box {
      max-height: 100%;
    } */
    /* .nav-links .desktop-item {
      display: none;
    } */
    /* .nav-links .mobile-item {
      display: block;
      color: #f2f2f2;
      font-size: 20px;
      font-weight: 500;
      padding-left: 20px;
      cursor: pointer;
      border-radius: 5px;
      transition: all 0.3s ease;
    }
    .nav-links .mobile-item:hover {
      background: #3a3b3c;
    }
    .drop-menu li {
      margin: 0;
    }
    .drop-menu li a {
      border-radius: 5px;
      font-size: 18px;
    } */
    .mega-box {
        display: none;
    }

    .nav-links li {
        opacity: 0;
        height: 100px !important;
    }

    .nav-links li a {
        color: #fff;
    }

    .burger {
        display: block;
    }
}

.nav-active {
    transform: translateX(0%);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.toggle .line1 {
    transform: rotate(-40deg) translate(-3px, 6px);
}

.toggle .line2 {
    visibility: hidden;
}

.toggle .line3 {
    transform: rotate(35deg) translate(-3px, -6px);
}

#hero {
    display: grid;
    place-items: center;
    overflow: hidden;
    height: 100vh;
    position: relative;
    background-attachment: fixed;
}

.partners_bg {
    background: url(../images/pexels-ono-kosuki-5647296.jpg);
    background-size: cover;
    background-position-y: 40px;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
}

.hero_bg {
    background: url(../images/scott-blake-x-ghf9LjrVg-unsplash.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    width: 100%;
}


#hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgb(0, 0, 0);
    background: -moz-linear-gradient(90deg,
            rgba(0, 0, 0, 0.940686479669993) 0%,
            rgba(11, 11, 11, 0.9182775160845589) 38%,
            rgba(15, 18, 29, 0) 100%);
    background: -webkit-linear-gradient(90deg,
            rgba(0, 0, 0, 0.940686479669993) 0%,
            rgba(11, 11, 11, 0.9182775160845589) 38%,
            rgba(15, 18, 29, 0) 100%);
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.940686479669993) 0%,
            rgba(11, 11, 11, 0.9182775160845589) 38%,
            rgba(15, 18, 29, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#0f121d", GradientType=1);
}

#hero .overlay_partner {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
}

#hero button {
    margin-top: 2rem;
}

.simple {
    position: relative;
    display: inline-block;
}

.simple::before {
    content: "";
    background: #e47d1c8f;
    width: 100%;
    height: 20px;
    position: absolute;
    z-index: -1;
    bottom: 0;
}

button {
    text-align: center;
    background: #10b981;
    width: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem !important;
    outline: none;
    border: none;
    border-radius: 0.5rem !important;
    font-family: "Inter" !important;
    padding: 1rem;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.section button {
    margin: 0 auto;
    text-align: center;
    background: #10b981;
    width: 14rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 1.2rem !important;
    outline: none;
    border: none;
    border-radius: 0.5rem !important;
    font-family: "Inter" !important;
    padding: 1rem;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-light-c {
    background: #fff;
    color: #000;
    border: #000;
    border-style: solid;
    border-width: 1px;
}

.price-wrapper button {
    text-align: center;
    background: #10b981;
    width: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 1rem !important;
    outline: none;
    border: none;
    border-radius: 0.5rem !important;
    font-family: "Inter" !important;
    padding: 0.5rem;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

button:hover {
    background: #fff;
    color: #000;
    border: 1px #722c2e solid;
}


#hero h1 {
    /* text-align: center; */
    color: #fff;
    font-family: "Epilogue" !important;
    font-size: 60px;
    font-weight: 600;
    width: 700px;
}

#hero p {
    text-align: center;
    margin-top: 10px;
    color: #fff;
    font-family: "Inter" !important;
    font-size: 1.3rem;
    max-width: 700px;
}

.hero-group {
    z-index: 2;
    position: absolute;
    top: 55%;
    left: 170px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    /* text-align: center; */
}




.partners-hero-group {
    z-index: 2;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    place-items: center;
    text-align: center;
}

#about {
    margin-top: 5rem;
}

#about h2 {
    font-size: 2rem;
    color: #2f2f2f;
    font-weight: bold;
    line-height: 40px;
    font-family: "Epilogue";
}

.text_header {
    color: #10b981;
    font-weight: 500;
    font-family: "Inter";
    background: #e0f6ef;
    width: 160px;
    text-align: center;
    font-size: 16px;
    border-radius: 50px;
    line-height: 2rem;
    display: inline-block;
}



.user_cards {
    margin-top: 20px;
}

.user_card {
    width: 400px;
    height: 450px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    background: transparent;
}

.user_card_thumb {
    background: #e5e5e5;
    width: 100%;
    height: 300px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.form-group input::placeholder {
    color: #cecece;
}

.form-group input:required:invalid:focus {
    border-color: #c00000;
}

.user_card_thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user_card_thumb .overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    position: absolute;
    left: 0;
}

.user_card_title p {
    font-family: "Epilogue";
    font-weight: 600;
    font-size: 22px;
    text-transform: uppercase;
    color: #2d221e;
}

.owl-dots button {
    background: #2d221e !important;
    width: 10px;
    height: 10px;
    border-radius: 26px;
    margin: 0 5px;
    transition: 0.3s;
}

.owl-dots {
    text-align: center;
    display: flex;
    justify-content: center;
}

.owl-dots button.active {
    width: 30px;
}

.owl-dots button {
    background: #2d221e !important;
    width: 10px;
    height: 10px;
    border-radius: 26px;
    margin: 0 5px;
    transition: 0.3s;
}

.owl-dots {
    text-align: center;
    display: flex;
    justify-content: center;
}

.owl-dots button.active {
    width: 30px;
}

.drag_info {
    color: #7b818b;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter";
    margin-top: 40px;
}

.rapisurv-mockup {
    margin-top: 4rem;
    max-width: 1000px;
    overflow: hidden;
    position: relative;
}

.rapisurv-mockup iframe {
    border: 0;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 20;
}

.rapisurv-mockup img {
    width: 100%;
}

.play-bg {
    width: 5rem;
    height: 5rem;
    border-radius: 2.5rem;
    background: #f28445;
    backdrop-filter: blur(5px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    display: grid;
    place-items: center;
    cursor: pointer;
}

.play-bg ion-icon {
    color: #fff;
    font-size: 2rem;
    padding-left: 0.3rem;
    z-index: 25;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px #f2844566;
    }

    100% {
        box-shadow: 0 0 0 20px #e47d1c00;
    }
}

.video-mock {
    width: 100%;
    height: 400px;
    margin: auto;
    display: block;
    border: none;
}

.video-popup {
    display: none;
    width: 100%;
    height: 100vh;
    margin: auto;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 10px 10px 10px 10px black;
    z-index: 10001;
}

.popup-bg {
    background: rgba(0, 0, 0, 0.8);
    width: 100%;
    height: 100vh;
    position: absolute;
}

.popup-content {
    padding-top: 56.25%;
    /* 16:9*/
    position: relative;
}

.close-btn {
    position: fixed;
    top: 0;
    margin-top: 35rem;
    width: 5rem;
    height: 5rem;
    border-radius: 50% !important;
    z-index: 21;
}

#home_details {
    margin-top: 180px;
}

#home_details h2 {
    margin-top: 2rem;
    margin-bottom: 3rem;
    font-size: 2rem;
    color: #2f2f2f;
    font-weight: 600;
    font-family: "Epilogue";
    line-height: 45px;
}

#home_details p {
    font-size: 18px;
    max-width: 600px;
    line-height: 35px;
    border-bottom: 1px solid #b7b7b7;
    padding-bottom: 50px;
}

#home_details li {
    padding-top: 2rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

#home_details li p {
    padding-left: 1.2rem;
}

#home_details .check-icon {
    width: 2.2rem;
}

.home_details-icon {
    margin-top: 8rem;
    width: 2.2rem;
}

.uses_flex {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    margin-top: 50px;
}

.use_col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.use {
    display: flex;
    align-items: center;
    gap: 15px;
}

.use ion-icon {
    color: #f85c04;
    font-size: 20px !important;
}

.details-img {
    /* margin-top: 10rem; */
    /* padding-left: 6rem; */
    max-width: 600px;
}

.integration {
    background: #f6fdfb;
    margin-top: 100px;
}

.integration h2 {
    font-family: "Epilogue";
    max-width: 800px;
    font-weight: 600;
    text-align: center;
    line-height: 45px;
    margin-bottom: 60px;
}

.integration .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px;
}

.integration_list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.integ {
    background: #dcf3e8;
    border: 2px solid #a2d5c4;
    display: grid;
    place-items: center;
    padding: 50px;
    border-radius: 10px;
    transition: 0.3s;
}

.integ p {
    color: #28483e;
    font-weight: 600;
    text-align: center;
    max-width: 200px;
    font-size: 20px;
}

/* .integ:hover {
  transform: translateY(-5px);
} */

.faqs {
    /* margin-top: 20px; */
    position: relative;
}

.faqs h2 {
    font-family: "Epilogue";
    font-weight: 600;
    margin-top: 100px;
}

.faqs img {
    position: absolute;
    max-width: 100px;
    top: -70px;
    right: 0;
}

.find {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.find ion-icon {
    transform: rotate(-45deg);
}

.head_p {
    font-size: 16px;
    margin: 10px 0 70px 0;
}

.accordion .accordion-item {
    border: none;
    background: #f7f7f7;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 0 30px !important;
}

/* .accordion .accordion-item button[aria-expanded="true"] {
  border-bottom: 1px solid #03b5d2;
} */

.accordion button {
    position: relative;
    display: block;
    text-align: left;
    width: 100%;
    padding: 1em 0;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    border: none;
    background: none;
    outline: none;
}

.accordion button:hover,
.accordion button:focus {
    cursor: pointer;
    /* color: #03b5d2; */
}

.accordion button:hover::after,
.accordion button:focus::after {
    cursor: pointer;
    /* color: #03b5d2;
  border: 1px solid #03b5d2; */
}

.accordion button .accordion-title {
    font-size: 16px;
}

.accordion button .icon {
    display: inline-block;
    position: absolute;
    top: 18px;
    right: 0;
    width: 22px;
    height: 22px;
    border: 1px solid;
    border-radius: 22px;
}

.accordion button .icon::before {
    display: block;
    position: absolute;
    content: "";
    top: 9px;
    left: 5px;
    width: 10px;
    height: 2px;
    background: currentColor;
}

.accordion button .icon::after {
    display: block;
    position: absolute;
    content: "";
    top: 5px;
    left: 9px;
    width: 2px;
    height: 10px;
    background: currentColor;
}

/* .accordion button[aria-expanded="true"] {
  color: #03b5d2;
} */
.accordion button[aria-expanded="true"] .icon::after {
    width: 0;
}

.accordion button[aria-expanded="true"]+.accordion-content {
    opacity: 1;
    max-height: 400px;
    transition: all 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 200ms linear, max-height 200ms linear;
    will-change: opacity, max-height;
}

.accordion .accordion-content p {
    font-size: 1rem;
    font-weight: 300;
    margin: 2em 0;
}

.footer_num {
    margin-top: 10px;
}

.number {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
}

.footer_num span {
    margin-left: 10px;
}

.footer_num img {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}

#reviews {
    margin-top: 4rem;
    position: relative;
}

#reviews .top-p {
    margin-top: 8rem;
    font-size: 1rem;
    color: #7d7d7d;
}

#reviews h2 {
    font-size: 2rem;
    margin-top: 2rem;
    font-weight: 600;
    color: #2f2f2f;
}

.left-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    width: 150px;
    height: 300px;
    background: linear-gradient(to right, #fff 80%, #ffffffba 20%);
    filter: blur(20px);
}

.right-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    width: 150px;
    height: 300px;
    background: linear-gradient(to right, #fff 80%, #ffffffba 20%);
    filter: blur(20px);
}

.review-block {
    padding: 1.3rem 1rem 1rem 1.5rem;
    max-width: 500px;
    margin: 3rem 1.5rem 3rem 2rem;
    border-radius: 2rem !important;
    box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
    -webkit-box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
    -moz-box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
}

.review-text {
    font-size: 1.3em;
    padding: 0 1rem;
    font-weight: 600;
    max-width: 450px;
    color: #2f2f2f;
}

.reviewer {
    display: flex;
    align-items: center;
    margin-left: 1rem;
}

.reviewer img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    border: #e47d1c 1px solid;
}

.reviewer-name {
    padding-left: 2rem;
}

.reviewer-name h5 {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.reviewer-name p {
    font-size: 1rem;
}

.glider-prev,
.glider-next {
    font-size: 1.5rem;
    background: #10b981;
    color: #722c2e;
    margin: 25px;
    width: 3rem;
    height: 3rem;
    line-height: 3rem;
    border-radius: 50%;
}

.glider-prev .ion,
.glider-next .ion {
    margin-left: 12px;
}

@media (max-width: 768px) {

    .glider-prev,
    .glider-next {
        display: none;
    }
}

@media only screen and (min-width: 769px) {
    .main .dots {
        display: none;
    }
}

footer a {
    text-decoration: none !important;
    color: #bababa;
}

footer a:hover {
    color: #2196f3;
    background: 0 0;
}

.mail-text a {
    color: #ececec;
    text-decoration: none !important;
}

.mail-text a:hover {
    color: #2196f3;
    background: 0 0;
}

.social-list li {
    color: #ececec;
    list-style: none !important;
    text-decoration: none !important;
    font-size: 20px;
}

.social-list li:hover {
    color: #2196f3;
    background: 0 0;
}

.site-footer {
    background-color: #435a53;
    padding: 45px 0 20px;
    font-size: 15px;
    line-height: 24px;
    color: #fff;
    margin: 0;
}

.site-footer hr {
    margin-top: 4rem;
    border-top-color: #bbb;
    opacity: 0.5;
}

.site-footer hr.small {
    margin: 20px 0;
}

.site-footer h6 {
    color: #fff;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
    letter-spacing: 2px;
}

.site-footer a {
    color: #fff;
}

.site-footer a:hover {
    color: #b5b5b5;
    text-decoration: none;
}

.footer-links {
    padding-left: 0;
    list-style: none;
}

.footer-links li {
    display: block;
}

.footer-links a {
    color: #fff;
}

.footer-links a:active,
.footer-links a:focus,
.footer-links a:hover {
    color: #36c;
    text-decoration: none;
}

.footer-links.inline li {
    display: inline-block;
}

/* .site-footer .social-icons {
    text-align: right;
  } */
/* .site-footer .social-icons a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 6px;
    margin-right: 0;
    border-radius: 100%;
    color: #000 !important;
  } */

.copyright-text {
    color: #bfbfbf;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .site-footer [class^="col-"] {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .site-footer {
        padding-bottom: 0;
    }
}

footer ion-icon {
    color: #ffffff;
    font-size: 20px !important;
    /* --ionicon-stroke-width: 16px; */
}

.social-icons {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.social-icons li {
    display: inline-block;
    margin-bottom: 4px;
}

.social-icons li.title {
    margin-right: 15px;
    text-transform: uppercase;
    color: #96a2b2;
    font-weight: 700;
    font-size: 13px;
}

.social-icons a {
    padding-top: 5px;
    display: inline-block;
    line-height: 44px;
    width: 44px;
    height: 44px;

    margin-right: 8px;
    border-radius: 100%;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.social-icons.size-sm a {
    line-height: 34px;
    height: 34px;
    width: 34px;
    font-size: 14px;
}

.social-icons a.facebook:hover {
    color: #3b5998;
}

.social-icons a.twitter:hover {
    color: #00aced;
}

.social-icons a.instagram:hover {
    color: #ea4c89;
}

@media (max-width: 767px) {
    .social-icons li.title {
        display: block;
        margin-right: 0;
        font-weight: 600;
    }

    .details-img {
        max-width: 400px;
    }
}

.footer-logo img {
    width: 5rem !important;
}

.mb-2 {
    margin-top: 1rem;
}

.mb-2 li {
    margin-top: 0.5rem;
}

/* @media (max-width: 400px) {

} */

@media (max-width: 858px) {
    .details-img {
        max-width: 600px;
    }
}

@media (max-width: 500px) {
    .logo img {
        width: 7rem;
    }

    .simple::before {
        content: "";
        height: 10px;
    }

    .details-img {
        max-width: 500px;
        /* margin-left: -5rem; */
    }

    .play-bg {
        width: 3rem;
        height: 3rem;
        border-radius: 1.5rem;
    }

    .play-bg ion-icon {
        font-size: 1.2rem;
        padding-left: 0.1rem;
    }

    #reviews h2 {
        font-size: 2rem;
    }

    #home_details h2 {
        font-size: 2rem;
    }
}

.section-join {
    padding: 4.5rem 0 2.5rem;
    margin-bottom: -2.5rem;
}

.join__bg {
    background: rgb(255, 205, 0);
    background: radial-gradient(circle,
            rgb(16, 185, 129) 0%,
            rgba(13, 53, 40, 0.8) 100%);
    background-size: cover;
    position: relative;
    overflow: hidden;
    padding: 2.5rem 0;
    z-index: 1;
}

.join__bg button {
    background: #fff;
    color: #10b981;
    font-weight: 600;
    margin-top: 3rem;
}

.join__bg img {
    position: absolute;
    max-width: 60rem;
    opacity: 0.4;
    z-index: -1;
}

.join__container {
    padding: 3.5rem 0;
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
}

.join_div {
    max-width: 600px;
    display: inline-block;
}

.join__container h2 {
    font-size: 2rem;
    /* padding: 0 1.5rem; */
    width: auto;
    font-weight: 600;
    display: inline-block;
    line-height: 50px;
}

.text-box {
    display: inline-block;
    position: relative;
    min-width: 190px;
}

.text-box span {
    display: inline-block;
    position: absolute;
    top: -200px;
    left: 4px;
    font-size: 2rem;
    /* padding: 0 1.5rem; */
    font-weight: 600;
    transform: rotateX(-90deg);
    opacity: 0;
    animation-timing-function: ease;
}

.text-box span:nth-child(1) {
    animation: rollDown 7s forwards infinite;
}

.text-box span:nth-child(2) {
    animation: rollDown2 7s forwards infinite;
}

.text-box span:nth-child(3) {
    animation: rollDown3 7s forwards infinite;
}

@keyframes rollDown {
    0% {
        top: -80px;
        transform: rotateX(-90deg);
    }

    11% {
        top: -37px;
        transform: rotateX(0deg);
        opacity: 1;
    }

    22% {
        top: -37px;
        transform: rotateX(0deg);
        opacity: 1;
    }

    33% {
        top: 20px;
        transform: rotateX(30deg);
        opacity: 0;
    }
}

@keyframes rollDown2 {
    33% {
        top: -80px;
        transform: rotateX(-90deg);
    }

    44% {
        top: -37px;
        transform: rotateX(0deg);
        opacity: 1;
    }

    55% {
        top: -37px;
        transform: rotateX(0deg);
        opacity: 1;
    }

    66% {
        top: 20px;
        transform: rotateX(30deg);
        opacity: 0;
    }
}

@keyframes rollDown3 {
    66% {
        top: -80px;
        transform: rotateX(-90deg);
    }

    77% {
        top: -37px;
        transform: rotateX(0deg);
        opacity: 1;
    }

    88% {
        top: -37px;
        transform: rotateX(0deg);
        opacity: 1;
    }

    99% {
        top: 20px;
        transform: rotateX(30deg);
        opacity: 0;
    }
}

.join__title {
    color: #fff;
}

.years-pricing {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.monthly,
.oneyear,
.twoyears {
    width: 100px;
    padding: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(46, 59, 125, 0.12);
    cursor: pointer;
}

.monthly {
    background: #10b981;
    color: #fff;
}

.naira-monthly-tab,
.naira-oneyear-tab {
    width: 100px;
    padding: 10px;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 0 10px rgba(46, 59, 125, 0.12);
    cursor: pointer;
}

.naira-monthly-tab {
    background: #10b981;
    color: #fff;
}

/* PRICING PAGE */

.section {
    margin: 200px 0 -80px 0 !important;
    min-height: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    z-index: 10;
}

/* .nairacomp {
  display: none;
} */
/*
.dollarcomp {
  display: none;
}

.cediscomp {
  display: none;
} */

.table_p {
    text-align: center !important;
    line-height: 24px;
    font-size: 14px;
    padding: 20px 0;
    margin: auto;
}

#comparison_table_naira {
    display: none;
}

#comparison_table_cedis {
    display: none;
}

.pricing {
    display: -webkit-flex;
    display: flex;
}

.pricing,
.pricing-oneyear,
.pricing-twoyears {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
}

.pricing-oneyear,
.pricing-twoyears {
    display: none;
}

.price_padding {
    display: flex;
    gap: 4rem;
}

.pricing-item {
    position: relative;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-align-items: stretch;
    align-items: stretch;
    text-align: center;
    -webkit-flex: 0 1 330px;
    flex: 0 1 330px;
}

.pricing-action {
    color: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

.pricing-action:focus {
    outline: none;
}

.pricing-feature-list {
    text-align: left;
}

.section button {
    margin-top: -2em;
}

.pricing-palden .pricing-item {
    cursor: default;
    color: #838383;
    background: #fff;
    box-shadow: 0 0 10px rgba(74, 81, 113, 0.1);
    border-radius: 20px 20px 10px 10px;
    margin: 1em;
    padding-bottom: 2em;
}


.pricing-new .pricing-item {
    cursor: default;
    color: #838383;
    background: #fff;
    box-shadow: 0 0 10px rgba(74, 81, 113, 0.1);
    border-radius: 20px 20px 10px 10px;
    margin: 1em;
    padding-bottom: 0em;
}

@media screen and (min-width: 66.25em) {
    .pricing-palden .pricing-item {
        margin: 1em -0.5em;
    }

    .pricing-palden .pricing__item--featured {
        padding-bottom: 20px;
        /* margin-top: -20px; */
        z-index: 10;
        box-shadow: 0 0 20px rgba(46, 59, 125, 0.1);
    }
}



.pricing-new .pricing-deco {
    border-radius: 10px 10px 10px 10px;
    background: linear-gradient(135deg, #40f9ce, #10b981);
    padding: 4em 0 9em;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 10px;
}



.pricing-new .pricing-deco-img {
    position: absolute;
    bottom: 0;
    right: 30%;
    width: 100%;
    height: 160px;
    z-index: -1;
    color: #f5eeeb78;
    margin-bottom: -10px;
}


.pricing-new .pricing-deco-img-2 {
    position: absolute;
    bottom: 0;
    right: 15%;
    width: 100%;
    height: 177px;
    z-index: -1;
    color: #f5eeeb78;
    margin-bottom: -10px;
}

.pricing-new .pricing-deco-img-3 {
    position: absolute;
    bottom: 0;
    right: 0%;
    width: 100%;
    height: 160px;
    z-index: -1;
    color: #f5eeeb78;
    margin-bottom: -10px;
}


.pricing-new .card-link {
    position: absolute;
    bottom: 0;
    padding: 10px;
    right: 11px;
    z-index: -1;
    color: #1b1b1bf5;

}

.pricing-new .pricing-title {
    /* position: absolute; */
    text-align: center;
    font-size: 1.75em;
    margin: 0;
    right: 0px;
    padding: 10px;
    font-weight: 700;
    letter-spacing: 5px;
    color: #1b211fcc;
}



.pricing-palden .pricing-deco {
    border-radius: 10px 10px 0 0;
    background: linear-gradient(135deg, #40f9ce, #10b981);
    padding: 4em 0 9em;
    position: relative;
    margin-bottom: 20px;
    z-index: 1;
}

.pricing-palden .pricing-deco-img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: -1;

}

.pricing-palden .pricing-title {
    font-size: 0.75em;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #fff;
}

.pricing-country {
    font-size: 0.75em;
    margin-top: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #fff;
}

.invinsible {
    visibility: hidden;
}

.pricing-palden .deco-layer {
    -webkit-transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
}

.pricing-palden .pricing-item:hover .deco-layer--1 {
    -webkit-transform: translate3d(15px, 0, 0);
    transform: translate3d(15px, 0, 0);
}

.pricing-palden .pricing-item:hover .deco-layer--2 {
    -webkit-transform: translate3d(-15px, 0, 0);
    transform: translate3d(-15px, 0, 0);
}

.pricing-palden .icon {
    font-size: 2.5em;
}

.pricing-palden .pricing-price {
    font-size: 40px;
    font-weight: 600;
    padding: 0;
    color: #fff;
    margin: 30px 0 10px 0;
    line-height: 0;
}

.naira-pricing .pricing-price {
    font-size: 3em !important;
    font-weight: 600;
    padding: 0;
    color: #fff;
    margin: 0.25em 0 0.25em 0;
    line-height: 0.75;
}

.pricing-header {
    font-size: 1.2em;
    font-weight: 600;
    padding: 0;
    color: #fff;
    margin: 0 0 0.25em 0;
    line-height: 0.75;
}

.pricing-palden .pricing-currency {
    font-size: 0.25em;
    vertical-align: top;
}

.pricing-palden .pricing-period {
    font-size: 0.25em;
    padding: 0 0 0 0.5em;
    font-style: italic;
}

.pricing-palden .pricing__sentence {
    font-weight: 600;
    margin: 0 0 1em 0;
    padding: 0 0 0.5em;
}

.pricing-palden .pricing-feature-list {
    margin-top: -4em;
    z-index: 100;
    padding: 0em 0 2.5em;
    list-style: none;
    text-align: center;
}

.pricing-feature-list2 {
    margin-top: -2rem;
    padding: 0;
    z-index: 10;
    list-style: none;
    text-align: center;
}

.pricing-palden .pricing-feature {
    padding: 5px 0;
}

.pricing-feature p {
    padding: 0 30px;
    font-size: 14px;
}

#comparison_table_start {
    height: 70px;
}

.pricing-feature {
    font-size: 14px;
}

.pricing-palden .pricing-action {
    font-weight: 600;
    margin: auto 3em 2em 3em;
    padding: 1em 2em;
    color: #fff;
    border-radius: 30px;
    background: linear-gradient(135deg, #fea03b, #fdda4e);
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
}

.pricing-palden .pricing-action:hover,
.pricing-palden .pricing-action:focus {
    background: linear-gradient(135deg, #fd7d57, #f55d59);
}

.pricing-palden .pricing-item--featured .pricing-deco {
    padding: 5em 0 8.885em 0;
}

.product_desc {
    margin: -30px 0 80px 0;
    padding: 0 30px;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.product_desc ion-icon {
    font-size: 60px !important;
    margin-top: -18px;
}

.product_desc p {
    font-size: 13px;
    text-align: left;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #dadada;
    color: #838383;
    line-height: 24px;
}

.add_on_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding-top: 20px; */
    margin: 0 30px 60px 30px;
    border-top: 1px solid #dfdfdf;
}

.nairacomp button {
    margin-top: 20px;
}

.add_on_text {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.add_on_text ion-icon {
    font-size: 24px;
    color: #989898;
    white-space: nowrap;
}

.add_on_text::after {
    text-align: left;
    white-space: normal;
}

.add_on_dropdown_arrow ion-icon {
    font-size: 24px;
    color: #989898;
    cursor: pointer;
}

.add_on_text p {
    font-size: 16px;
    margin-top: 15px;
    color: #989898;
}

/*== start of code for tooltips ==*/
.tool {
    cursor: help;
    position: relative;
}

/*== common styles for both parts of tool tip ==*/
.tool::before,
.tool::after {
    left: 50%;
    opacity: 0;
    position: absolute;
    z-index: -100;
}

.tool:hover::before,
.tool:focus::before,
.tool:hover::after,
.tool:focus::after {
    opacity: 1;
    transform: scale(1) translateY(0);
    z-index: 1000;
}

/*== pointer tip ==*/
.tool::before {
    border-style: solid;
    border-width: 1em 0.75em 0 0.75em;
    border-color: #3e474f transparent transparent transparent;
    bottom: 100%;
    content: "";
    margin-left: -0.5em;
    transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26),
        opacity 0.65s 0.5s;
    transform: scale(0.6) translateY(-90%);
    border-radius: 30px;
}

.tool:hover::before,
.tool:focus::before {
    transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26) 0.2s;
}

/*== speech bubble ==*/
.tool::after {
    background: #3e474f;
    border-radius: 0.25em;
    bottom: 120%;
    color: #edeff0;
    content: attr(data-tip);
    margin-left: -8.75em;
    padding: 1em;
    transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26) 0.2s;
    transform: scale(0.6) translateY(50%);
    width: 17.5em;
    border-radius: 10px;
}

.tool:hover::after,
.tool:focus::after {
    transition: all 0.65s cubic-bezier(0.84, -0.18, 0.31, 1.26);
}

.dropdown {
    display: inline-block;
    position: relative;
}

.dd-button {
    display: inline-block;
    border-radius: 4px;
    padding: 10px 20px;
    background-color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
}

/* .dd-button:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid black;
} */

.dd-button:hover {
    background-color: #eeeeee;
}

.dd-input {
    display: none !important;
}

#dd-menu {
    position: absolute;
    top: 100%;
    left: -130px;
    border-radius: 10px;
    padding: 30px 0 20px 0;
    margin: 2px 0 0 0;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    list-style-type: none;
    z-index: 100;
    min-width: 250px;
}

.dd-input+#dd-menu {
    display: none;
}

.dd-input:checked+#dd-menu {
    display: block;
}

#dd-menu li:nth-child(2) {
    margin-top: 30px;
}

#dd-menu li {
    padding: 20px 20px;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #6c6c6c;
}

#dd-menu li .checkbox {
    margin-top: -30px;
}

#dd-menu li:hover {
    background-color: #f6f6f6;
}

#dd-menu li a {
    display: block;
    margin: -10px -20px;
    padding: 10px 20px;
}

#dd-menu .add_on_price {
    color: #6c6c6c;
}

@media (max-width: 760px) {
    .tool::after {
        font-size: 0.75em;
        margin-left: -5em;
        width: 10em;
    }
}

.header {
    position: relative;
    text-align: center;
    color: white;
    margin-bottom: 8rem;
}

.inner-header {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

.enterprise-content {
    margin: 0 auto;
    max-width: 1000px;
    background: #435a53;
    border-radius: 2rem;
    padding: 50px 0 !important;
    position: relative;
    overflow: hidden;
    z-index: 3;
}

.enterprise-content img {
    position: absolute;
    z-index: -1;
    opacity: 0.1;
    max-width: 800px;
}

.enterprise-content {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.ent-text h3 {
    font-weight: bold;
    font-size: 2.3rem;
    color: #fff;
}

.ent-text p {
    color: #fff;
    max-width: 400px;
    margin-top: 1.5rem;
}

.flex {
    /*Flexbox for containers*/
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* COMPARISON TABLE */

#comparison_table {
    margin: 0em 0 3rem 0;
}

#comparison_table ul {
    display: flex;
    top: 0px;
    z-index: 10;
    padding-bottom: 14px;
}

#comparison_table li {
    list-style: none;
    flex: 1;
}

#comparison_table li:last-child {
    border-right: 1px solid #ddd;
}

#comparison_table button {
    width: 100%;
    border: 1px solid #ddd;
    border-right: 0;
    border-top: 0;
    padding: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 600;
    height: 60px;
    color: #999;
}

#comparison_table li.active button {
    background: #a0a0a0;
    color: #fff;
}

table {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
}

th {
    background: #f5f5f5;
    display: none;
}

td,
th {
    height: 53px;
}

td,
th {
    border: 1px solid #ddd;
    padding: 10px;
    empty-cells: show;
}

td,
th {
    text-align: left;
}

td+td,
th+th {
    text-align: center;
    display: none;
}

td.default {
    display: table-cell;
    border-left: 3px solid #52927c;
    border-right: 3px solid #52927c;
    margin: 0 auto;
}

.default_end {
    border-bottom: 3px solid #52927c;
}

.bg-orange {
    border-top: 3px solid #e47d1c;
}

.bg-mintgreen {
    border-top: 3px solid #10b981;
}

.sep {
    background: #f5f5f5;
    font-weight: 600;
}

.txt-l {
    font-size: 28px;
    font-weight: 600;
}

.txt-top {
    position: relative;
    top: -9px;
    left: -2px;
}

.tick {
    font-size: 18px;
    color: #10b981;
}

td ion-icon {
    font-size: 20px;
}

.hide {
    border: 0;
    background: none;
}

.table_btn {
    font-size: 16px !important;
    font-weight: 400px;
    margin: 10px auto 20px auto;
}

@media (min-width: 1200px) {
    #comparison_table ul {
        display: none;
    }

    td,
    th {
        display: table-cell !important;
    }

    td,
    th {
        width: 330px;
    }

    td+td,
    th+th {
        width: auto;
    }
}

.yearly-dollar-table2,
.twoyears-dollar-table2,
.twoyears-cedis-table2,
.yearly-naira-table2 {
    display: none;
}

td h3 {
    font-weight: 600;
    /* text-align: left; */
}

.plan-head {
    margin-top: 40px;
    font-weight: bold;
}

td p {
    /* text-align: left; */
    font-size: 1rem;
    max-width: 250px;
}

td .starting {
    color: #9c9c9c;
    font-size: 0.9rem;
}

.td-month {
    color: #686868;
}

td button {
    text-align: center;
    background: #10b981 !important;
    width: 10rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-weight: 500;
    font-size: 1.2rem !important;
    outline: none;
    border: none;
    border-radius: 0.5rem !important;
    font-family: "Inter" !important;
    padding: 1rem;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#products-about {
    margin-top: 50px;
    font-weight: 300;
    line-height: 35px;
    color: #1e1e1e;
}

.products-title {
    font-size: 2rem;
    margin: 2em 0 -1em 0;
}

.products-about-p p {
    max-width: 55rem;
    margin: 0 auto 5rem auto;
}

.service-section .icon-box {
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 6px;
    background-color: #f8f9fa;
}

.service-section .icon-box:hover .service-title a {
    color: #10b981;
}

.service-section .icon-box img {
    width: 40px;
    float: left;
}

.service-section .icon-box ion-icon {
    font-size: 40px;
    color: #ffead8;
    float: left;
}

.service-section .icon-box .service-title {
    margin-left: 70px;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.2;
}

.service-section .icon-box .service-title a {
    color: #556270;
    transition: 0.3s;
    text-decoration: none;
}

.service-section .icon-box .service-para {
    margin-left: 70px;
    line-height: 24px;
    font-size: 16px;
    line-height: 30px;
}

.service-section .service-main-heading {
    color: #556270;
    padding-top: 4rem;
    margin: 20px 0;
    line-height: 1;
    font-size: 2.5rem;
    font-weight: 600;
}

.seller-section .seller-main-heading {
    color: #556270;
    margin: 10px 0;
    line-height: 1;
    font-size: 2.5rem;
    font-weight: 600;
}

.seller-section button {
    margin: 0 auto;
}

.breadcrumb-item a {
    color: rgb(18, 18, 18);
}

.partner_solution_title {
    display: flex;
    align-items: center;
    margin: 100px 0 10px 0;
}

.partner_solution_title img {
    width: 50px;
}

.below-footer {
    display: flex;
    justify-content: space-between;
}

.below-footer p {
    font-size: 1rem;
}

.lottie {
    max-width: 400px;
    margin-bottom: 3rem;
}

.timeline {
    margin-top: 40px;
}

.timeline ul {
    padding: 0;
}

.timeline .default-line {
    content: "";
    position: absolute;
    width: 4px;
    background: #ffffff;
    height: 100vh;
}

.timeline .draw-line {
    width: 4px;
    height: 0;
    position: absolute;
    background: #e47d1c;
}

.timeline ul li {
    list-style-type: none;
    position: relative;
    width: 100%;
    height: auto;
    background: transparent;
}

.timeline ul li p {
    margin-left: 2rem;
}

.timeline ul li.in-view {
    transition: 0.125s ease-in-out, background-color 0.2s ease-out,
        color 0.1s ease-out, border 0.1s ease-out;
}

.timeline ul li.in-view::before {
    content: "";
    position: absolute;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background-image: url("https://sg0duxoli5-flywheel.netdna-ssl.com/wp-content/themes/inspired_elearning_theme/images/check-dark.svg");
    background-color: #e47d1c;
    border: 2px #fff solid;
    background-size: 20px 20px;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.125s ease-in-out, background-color 0.2s ease-out,
        color 0.1s ease-out, border 0.1s ease-out;
}

.timeline ul li::before {
    content: "";
    position: absolute;
    top: 0;
    transform: translateX(-40%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: inherit;
    border: 2px #e47d1c solid;
    transition: all 0.4s ease-in-out;
}

.learn_header {
    font-weight: 600;
    margin-bottom: 1.3rem;
}

/* <select> styles */
.header select {
    margin-bottom: 50px !important;
    appearance: none;
    border: 0;
    outline: 0;
    font-family: "Inter";
    max-width: 20em;
    height: 3em;
    padding: 0 20px;
    border-radius: 0.25em;
    box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

select option {
    color: inherit;
    background-color: #fff;
}

select:focus {
    outline: none;
}

select::-ms-expand {
    display: none;
}

.disclaimer {
    min-width: 200px;
    display: flex;
}

.disclaimer p {
    padding: 0 10px;
}

#contact {
    width: 100%;
}

#contact select {

    box-shadow: none;
    width: 600px !important;
    height: 60px;
    margin: 1rem 0 0 0;
    border-radius: 0.5rem;
    border: 1px solid #cecece;
    padding-left: 20px;
    position: relative;
}

.terms-of-service {
    color: #e47d1c;
    font-weight: 600;
}

.section-header {
    text-align: center;
    /* padding: 5em 0 0 0; */
    font: 600 2rem "Inter", sans-serif;
    color: #292929;
}

#plan-page .section-header {
    text-align: center;

    font: 600 2rem "Inter", sans-serif;
    color: rgb(41, 41, 41);
}

.contact-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin: 0 auto !important;
    padding: 20px !important;
    position: relative;
    max-width: 1000px;
}

/* Left contact page */
.form-horizontal {
    /*float: left;*/
    max-width: 600px;
    font-family: "Inter";
    font-weight: 400;
}

input {
    height: 60px;
}

textarea {
    height: 100px;
    width: 100%;
    padding: 20px 10px 9px 35px;
    border-radius: 10px;
    border: none;
    box-sizing: border-box;
    outline: none;
    background: #f2f2f2;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

textarea:hover {
    background: #fafafa;
}

textarea:focus {
    -webkit-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    -moz-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    border: 1px solid #f5ba1a;
    background: #fafafa;
}

.form-control,
.form-control textarea {
    width: 600px !important;
    margin-top: 1rem;
    border-radius: 0.5rem !important;
    padding-left: 20px;
    color: #000;
}

.form-control:focus {
    -webkit-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    -moz-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    border: 1px solid #f5ba1a;
    background: #fafafa;
}

/* Begin Right Contact Page */
.direct-contact-container {
    max-width: 400px;
}

/* Location, Phone, Email Section */
.contact-list {
    list-style-type: none;
    margin-left: -30px;
    padding-right: 20px;
}

.list-item {
    line-height: 4;
    color: #000;
}

.contact-text {
    font: 300 18px "Inter", sans-serif;
    color: #000;
}

.place {
    margin-left: 62px;
}

.phone {
    margin-left: 56px;
}

.gmail {
    margin-left: 53px;
}

.contact-text a {
    color: #000;
    text-decoration: none;
    transition-duration: 0.2s;
}

.contact-text a:hover {
    color: #000;
    text-decoration: none;
}

/* Social Media Icons */
.social-media-list {
    position: relative;
    font-size: 22px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

.social-media-list li a {
    color: #fff;
}

.social-media-list li {
    position: relative;
    display: inline-block;
    height: 60px;
    width: 60px;
    margin: 10px 3px;
    line-height: 60px;
    border-radius: 50%;
    color: #fff;
    background-color: #10b981;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.social-media-list li:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 0 1px #10b981;
    transition: all 0.2s ease-in-out;
}

/* .social-media-list li:hover {
  background-color: #fff;
} */

.social-media-list li:hover:after {
    opacity: 1;
    transform: scale(1.12);
    transition-timing-function: cubic-bezier(0.37, 0.74, 0.15, 1.65);
}

.social-media-list li:hover a {
    color: #000;
}

.copyright {
    font: 200 14px "Oswald", sans-serif;
    color: #555;
    letter-spacing: 1px;
    text-align: center;
}

hr {
    border-color: rgba(255, 255, 255, 0.6);
}

.price-wrapper {
    width: 70%;
    box-shadow: 0 0 20px rgba(92, 98, 131, 0.23);
    border-radius: 20px;
    margin: 40px auto 150px auto;
}

.price-wrapper button {
    text-align: center;
    background: #10b981;
    width: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-size: 1rem !important;
    outline: none;
    border: none;
    border-radius: 0.5rem !important;
    font-family: "Inter" !important;
    padding: 0.5rem;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-left: 20px;
}

.price-wrapper ion-icon {
    display: none;
    color: #10b981;
    font-size: 2rem;
    margin-left: 20px;
}

.custom {
    font-size: 3rem !important;
}

.quote {
    font-size: 1rem;
    color: #fff;
}



.coupon_container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.coupon_container p {
    color: #4891ff;
    font-size: 16px;
    cursor: pointer;
}

.coupon_container input {
    width: 130px;
    text-align: left;
    padding: 0 10px !important;
}

.coupon_input {
    transition: all 0.3s ease-in-out;
    transform: translateY(0);
    visibility: hidden;
    opacity: 0;
    display: none;
}

.coupon_container button {
    width: 130px;
    height: 30px;
    font-size: 14px !important;
    margin: 10px 0 30px 0;
}

.show_coupon_container {
    visibility: visible;
    opacity: 1;
    transform: translateY(-8px);
    display: flex;
    flex-direction: column;
}

.pay_bridge {
    margin: 100px 0 30px 0;
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    gap: 70px;
    align-items: center;
    /*   padding-top:100px; */
}

.pay_bridge_col1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.pay_bridge_col1 p {
    font-size: 16px !important;
    text-align: center !important;
    margin-top: -20px;
}

.pay_bridge_col2 div {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4891ff;
    cursor: pointer;
}

.pay_bridge_col2 div p {
    font-size: 16px;
    margin-top: 15px;
}

.lottie {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    height: 300px;
    margin: 0 0 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pay_bridge .proceed_btn {
    background: #10b981;
    height: 60px;
    width: 250px;
    font-size: 17px !important;
}

.pay_bridge_ctas {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pay_bridge .cancel_pay_btn {
    background: #fff;
    color: #919191;
    font-weight: 300;
    border: 1px solid #d9d9d9;
    height: 60px;
    width: 250px;
    font-size: 17px !important;
}

.biannual-wrap,
.yearly-wrap,
.naira-yearly-wrap,
.monthly-wrap {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    min-height: 150px;
    transition: 0.5s;
}

.biannual-wrap:hover,
.yearly-wrap:hover,
.naira-yearly-wrap:hover,
.monthly-wrap:hover {
    background: rgb(250, 247, 243);
}

.yearly-wrap {
    border-bottom: #cbcbcb 1px solid !important;
}

.recommended {
    background: #fea03b;
    border-radius: 5px;
    text-transform: uppercase;
    color: #fff;
    padding: 5px;
    font-size: 10px !important;
    letter-spacing: 1px;
    font-weight: 500;
}

.recommended_addon {
    margin-top: -10px;
    font-size: 14px !important;
}

.plan-name h3 {
    font-weight: bold;
    margin-top: 10px;
    color: #292929;
    text-decoration: none;
}

.plan-name p {
    font-size: 1rem;
    color: #9c9c9c;
}

.plan-price {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
}

.price-month {
    margin-bottom: 10px;
}

.price {
    font-weight: 600;
    font-size: 1.3rem;
    color: #292929;
    text-decoration: none;
}

.per-month {
    color: #686868;
    font-size: 1.3rem;
}

.save {
    background: #fea03b27;
    border-radius: 5px;
    text-transform: uppercase;
    color: #fea03b;
    padding: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    float: right;
}

.save-grey {
    background: #8a8a8a27;
    border-radius: 5px;
    text-transform: uppercase;
    color: #5a5a5a;
    padding: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    float: right;
}

.orange-border {
    border: #fea03b 2px solid;
    padding: 15px 30px 0 30px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.invisible-border {
    border: none;
    padding: 15px 30px 0 30px;
}

.invisible {
    visibility: hidden;
}

#signup {
    min-height: 100vh;
    width: 100%;
    display: flex;
}

.sign-bg {
    background: url(../images/sign.jpeg);
    /* background-position: center; */
    background-position-y: -650px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.reg-bg {
    background: url(../images/learnpage.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    position: relative;
}

.team-member {
    font-size: 1rem;
}

.member1,
.member2,
.member3,
.member4 {
    display: none;
}

.sign-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.sign-overlay2 {
    position: absolute;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
}

.sign-split {
    width: 100%;
}

#signup button {
    border: none;
    height: auto;
    width: auto;
}

#signup button:hover {
    border: 1px #000 solid;
}

.clearfix:after {
    content: "";
    display: block;
    clear: both;
    visibility: hidden;
    height: 0;
}

.user-type {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.user-type input[type="radio"] {
    opacity: 0;
    position: fixed;
    width: 0;
}

.user-type label {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 200px;
    height: 60px;
    border-radius: 10px;
    margin-bottom: 30px;
    padding: 10px;
    cursor: pointer;
    transition: 0.5s;
    background: #eaeaea;
    color: #8f8f8f;
    font-size: 1.1rem !important;
}

.user-type label:hover {
    background: #fff;
    border: #2f2f2f 1px solid;
}

.user-type input[type="radio"]:focus+label {
    border: 2px dashed #444;
}

.user-type input[type="radio"]:checked+label {
    background: #10b98127;
    color: #10b981;
}

.error-message {
    color: red;
    margin-bottom: 20px;
    font-size: 12px;
    display: block;
    position: absolute;
    z-index: 100000;
}

.prev-next {
    display: flex;
}

#prevBtn {
    background: #e0e0e0;
    color: #646464;
    margin-right: 20px;
}

/* Hide all steps by default: */
.fieldTab {
    display: none;
}

/* Make circles that indicate the steps of the form: */
.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Mark the active step: */
.step.activate {
    opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
    background-color: #04aa6d;
}

.checkout_form .input_field {
    width: 100% !important;
}

.form_wrapper {
    background: #fff;
    max-width: 600px;
    /* max-width: 100%; */
    box-sizing: border-box;
    padding: 25px;
    margin: 8% auto 0;
    position: relative;
    z-index: 1;
    /* border-top: 5px solid #f5ba1a; */
}

.form_wrapper h2 {
    font-size: 1.5em;
    line-height: 1.5em;
    margin: 0;
}

.form_wrapper .title_container {
    text-align: center;
    padding: 70px 0 20px 0;
}

.form_wrapper .title_container p {
    color: #646464;
    font-size: 1.1rem;
    margin: 5px 0 25px 0;
}

.form_wrapper h3 {
    font-size: 1.1em;
    font-weight: normal;
    line-height: 1.5em;
    margin: 0;
}

.form_container label {
    font-size: 12px;
}

.form_container .row {
    margin: 10px -15px;
}

.form_container .row>div {
    padding: 0 15px;
    box-sizing: border-box;
}

.form_container .col_half {
    width: 50%;
    float: left;
}

.form_container .input_field {
    position: relative;
    margin-bottom: 20px;
}

.input_field p {
    font-size: 14px;
    margin-bottom: 10px;
}

.form_container input[type="text"],
.form_container input[type="email"],
.form_container input[type="password"] {
    width: 100%;
    padding: 8px 10px 9px 35px;
    text-align: left;
    height: 50px;
    background: #f2f2f2;
    border-radius: 10px;
    border: none;
    box-sizing: border-box;
    outline: none;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.form_container input[type="text"]:hover,
.form_container input[type="email"]:hover,
.form_container input[type="password"]:hover {
    background: #fafafa;
}

.form_container input[type="text"]:focus,
.form_container input[type="email"]:focus,
.form_container input[type="password"]:focus {
    -webkit-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    -moz-box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    box-shadow: 0 0 2px 1px rgba(255, 169, 0, 0.5);
    border: 1px solid #f5ba1a;
    background: #fafafa;
}

.form_container input[type="checkbox"] {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.form_container .row .col_half.last {
    border-left: 1px solid #ccc;
}

.checkbox_option label {
    margin: 1em 1em 1em 0;
    position: relative;
    font-size: 0.8rem;
}

.checkbox_option label:before {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.5em;
    vertical-align: -2px;
    border: 2px solid #ccc;
    padding: 0.12em;
    background-color: transparent;
    background-clip: content-box;
    transition: all 0.2s ease;
}

.checkbox_option label:after {
    border-right: 2px solid #10b981;
    border-top: 2px solid #10b981;
    content: "";
    height: 20px;
    left: 2px;
    position: absolute;
    top: 7px;
    transform: scaleX(-1) rotate(135deg);
    transform-origin: left top;
    width: 7px;
    display: none;
}

.checkbox_option input:hover+label:before {
    border-color: #10b981;
}

.checkbox_option input:checked+label:before {
    border-color: #10b981;
}

.checkbox_option input:checked+label:after {
    -moz-animation: check 0.8s ease 0s running;
    -webkit-animation: check 0.8s ease 0s running;
    animation: check 0.8s ease 0s running;
    display: block;
    width: 7px;
    height: 20px;
    border-color: #10b981;
}

.select_option {
    position: relative;
    width: 100%;
}

.select_option select {
    display: inline-block;
    width: 100%;
    height: 50px;
    padding: 0px 15px;
    cursor: pointer;
    color: #7b7b7b;
    background: #f2f2f2;
    border-radius: 10px;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.2s ease;
}

.select_option select::-ms-expand {
    display: none;
}

.select_option select:hover,
.select_option select:focus {
    color: #000;
    background: #fafafa;
    border-color: #000;
    outline: none;
}

.select_arrow {
    position: absolute;
    top: calc(50% - 4px);
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-width: 8px 5px 0 5px;
    border-style: solid;
    border-color: #7b7b7b transparent transparent transparent;
}

.select_option select:hover+.select_arrow,
.select_option select:focus+.select_arrow {
    border-top-color: #000;
}

@-webkit-keyframes check {
    0% {
        height: 0;
        width: 0;
    }

    25% {
        height: 0;
        width: 7px;
    }

    50% {
        height: 20px;
        width: 7px;
    }
}

@keyframes check {
    0% {
        height: 0;
        width: 0;
    }

    25% {
        height: 0;
        width: 7px;
    }

    50% {
        height: 20px;
        width: 7px;
    }
}

#options {
    background: rgb(247, 247, 247);
    padding: 75px 0 60px 0;
    margin: 75px 0 -75px 0;
}

#options h3 {
    font-weight: 600;
    padding-left: 20px;
}

#options p {
    max-width: 500px;
}

.options_header h2 {
    text-align: center;
    max-width: 600px;
    font-size: 2rem;
    color: #2f2f2f;
    font-weight: 600;
    line-height: 2.5rem;
}

.options_header p {
    text-align: center;
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.7rem;
    color: #595959;
    margin-top: 5px;
}

.options_header {
    display: grid;
    place-items: center;
}

.seller_p {
    margin: auto;
    font-size: 20px !important;
    padding: 60px 80px;
}

.seller_p li {
    padding-top: 2rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}

.seller_p li p {
    padding-left: 1.2rem;
}

.seller_p .check-icon {
    width: 2.2rem;
}

.bread {
    margin-top: 90px;
}

.partner_radio {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.partner_radio p {
    margin-top: 20px;
    font-weight: 600;
}

.radio {
    display: flex;
    align-items: center;
}

.radio label {
    font-size: 18px !important;
    margin-left: 20px;
    color: #2f2f2f;
}

.radio input[type="radio"] {
    accent-color: #10b981;
}

span {
    cursor: pointer;
}

.minus,
.plus {
    width: 20px;

    background: #888484;
    border-radius: 1000px;

    display: inline-block;

    text-align: center;

    color: #fff;

}

.is-success {
    background: #04aa6d !important;
}

input {
    height: 34px;
    width: 100px;
    text-align: center;
    font-size: 26px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: inline-block;
    vertical-align: middle;
}

.tab-btns {
    position: relative;
    /* display: none; */
    border-radius: 26px;

    display: flex;
    justify-content: center;
    margin-bottom: 100px;
}

.tab-btns .tab-btn {
    position: relative;
    float: left;
    font-size: 16px;
    min-width: 140px;
    font-weight: 500;
    text-transform: capitalize;
    line-height: 30px;
    padding: 11px 36px;
    /* border: 1px solid #d0d0d0; */
    cursor: pointer;
    transition: 0.3s;
}

.tab-btns .tab-btn span {
    background: #2bf1a82e;
    color: #0f855e;
    padding: 7px 15px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 12px;
    margin-left: 10px;
}

.tab-btns .tab-btn:first-child {
    border-radius: 25px 0px 0px 25px;
}

.tab-btns .tab-btn:last-child {
    border-left: none;
    border-radius: 0px 25px 25px 0px;
}

.tab-btns .active-btn {
    background: #e3fdf1ac !important;
    /* color: #ffffff; */
    border-color: #ace5ca !important;
}

.tab-btns .yearly-btn {
    background: #fff;
    color: #00000a;
    border: 1px solid #d0d0d0;
    position: relative;
}

/* .yearly-btn span {
  position: absolute;
  top: 5px;
  left: -120px;
} */

.tab-btns .monthly-btn {
    background: #fff;
    color: #00000a;
    border: 1px solid #d0d0d0;
    overflow: hidden;
}

.tab-btn:hover {
    background: #d8d8d8;
}

#one-time {
    padding: 150px 0;
}

#one-time h2 {
    font-size: 1.8rem;
}

.plan_table {
    margin-top: 40px;
    display: flex;
}

.first_half {
    position: relative;
    width: 70%;

    padding: 40px 40px 40px 40px;
    box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
}

.first_half h3,
.first_half_checkout h3 {
    font-size: 24px;
    margin: 10px 0 50px 0;
}

.first_half_checkout {
    position: relative;
    width: 100%;
    /* max-height: 1000px; */
    padding: 40px 40px 40px 40px;
    box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
}

.user_options {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

.user_type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;

}

.user_choice {
    width: 25%;
}

.user_choice span {
    color: #4891ff;
    padding-bottom: 30px;
    font-size: 14px;
    cursor: pointer;
}

.user_type span {
    font-size: 14px;
    align-content: center;
}

.user-group input[type="radio"] {
    display: none;
}

.user-group label {
    cursor: pointer;
    position: relative;
    font-size: 14px;
}

.user-group label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #ababab;
    border-radius: 50%;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    transition: border-color 400ms ease;
}

.user-group label::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #10b981;
    border: 1px solid #10b981;
    border-radius: 50%;
    top: 50%;
    left: -30px;
    transform: translateY(-50%) scale(0);
    transition: transform 400ms ease;
}

.user-group input[type="radio"]:checked+label::before {
    border-color: #10b981;
}

.user-group input[type="radio"]:checked+label::after {
    transform: translateY(-50%) scale(0.55);
}

.first_header {
    background: #fafbfc;
    border: 1px solid #e6e6e6;
}

.first_header p {
    font-size: 12px;
    letter-spacing: 2px;
    padding: 12px 0 0 45px;
    height: 24px;
}

.first_split {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 40px 40px 40px;
    border: 1px solid #e6e6e6;
}

.checkboxes__item:not(:first-child) {
    margin-top: 50px;
}

.checkboxes__item_default:not(:first-child) {
    margin-top: 80px;
}

.checkbox.style-c {
    display: inline-block;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox.style-c input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox.style-default {
    display: inline-block;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox.style-default input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox.style-c input:checked~.checkbox__checkmark {
    background-color: #10b981;
}

.checkbox.style-c input:checked~.checkbox__checkmark:after {
    opacity: 1;
}

.checkbox.style-default input:checked~.checkbox__checkmark {
    background-color: #ababab;
    cursor: not-allowed;
}

.checkbox.style-default input:checked~.checkbox__checkmark:after {
    opacity: 1;
}

.checkbox.style-c:hover input~.checkbox__checkmark {
    background-color: #eee;
}

.checkbox.style-c:hover input:checked~.checkbox__checkmark {
    background-color: #10b981;
}

.checkbox.style-c .checkbox__checkmark {
    /* position: absolute; */
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ababab;
    transition: background-color 0.25s ease;
    border-radius: 4px;
}

.checkbox.style-c .checkbox__checkmark:after {
    content: "";
    /*  position: absolute; */
    /*  left: 8px;
    top: 4px; */
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.checkbox.style-default .checkbox__checkmark {
    /*   position: absolute; */
    /* top: 2px;
    left: 0; */
    height: 20px;
    width: 20px;
    background-color: #fff;
    transition: background-color 0.25s ease;
    border-radius: 4px;
}

.checkbox.style-default .checkbox__checkmark:after {
    content: "";
    /*  position: absolute; */
    /*  left: 8px;
    top: 4px; */
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.checkbox.style-c .checkbox__body {
    color: #0c0c0c;
    line-height: 1.4;
    font-size: 16px;
}

.checkbox.style-c .checkbox__price {
    color: #0c0c0c;
    line-height: 1.4;
    margin-top: 10px;
    font-weight: 600;
    font-size: 16px;
}

.checkbox.style-default .checkbox__body {
    color: #575757;
    cursor: not-allowed;
    line-height: 1.4;
    font-size: 16px;
}

.second_half {
    background: #435a53;
    width: 30%;
    height: auto;
    padding: 70px 40px 50px 40px;
}

.second_half h4 {
    color: #fff;
    margin-bottom: 50px;
}

.bill {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bill_title {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
}

.bill_price {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.second_half button {
    text-align: center;
    background: #fff;
    width: 14rem;
    height: 3rem;
    margin: 20px auto 20px auto;
    color: #000;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.9rem !important;
    outline: none;
    border: none;
    border-radius: 0.5rem !important;
    font-family: "Inter" !important;
    padding: 1rem;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.second_half button:hover {
    background: #10b981;
    color: #fff;
}

.installments_trigger {
    color: #aeaeae;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.installments_trigger:hover {
    color: #000000;
}

.installment_plan {
    display: none;
    transition: 0.3s;
}

.installments_type {
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid#D4D4D4;
    padding: 20px 0;
    margin-top: 30px;
}

.installments_header {
    color: #a3a3a3;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.months_radio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.install-group input[type="radio"] {
    display: none;
}

.install-group label {
    cursor: pointer;
    position: relative;
    font-size: 16px;
    color: #fff;
}

.install-group label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    transition: border-color 400ms ease;
}

.install-group label::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #10b981;
    border: 1px solid #10b981;
    border-radius: 50%;
    top: 50%;
    left: -30px;
    transform: translateY(-50%) scale(0);
    transition: transform 400ms ease;
}

.install-group input[type="radio"]:checked+label::after {
    transform: translateY(-50%) scale(0.55);
}

.due_dates {
    margin-top: 40px;
}

.due_dates:not(:last-child) {
    border-bottom: 1px solid #d4d4d4;
}

.due_dates h5 {
    margin-bottom: 40px;
    color: #fff;
    font-weight: 600;
}

.due_bill {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.due_bill_title {
    color: #fff;
    font-size: 16px;
}

.due_bill_price {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.info {
    display: flex;
    align-items: center;
    margin: 20px 0 0 40px;
}

.info ion-icon {
    font-size: 16px;
}

.info span {
    font-size: 14px;
    margin-left: 10px;
}

.price_tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto auto -50px auto;
    gap: 30px;
}

.nairacomp a {
    margin: -60px auto 0 auto;
    /* border-bottom: 1px solid #4891ff; */
    color: #4891ff;
    padding-bottom: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 150px;
}

.price_tabs ion-icon {
    transform: rotate(-45deg);
}

.price_tab {
    color: #000;
    border: 1px solid #d3d3d3;
    padding: 15px 15px 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.price_tab p {
    font-size: 16px;
    line-height: 30px !important;
    text-align: center;
}

.complete_feat {
    max-width: 950px;
    border: 1px solid #10996b;
    height: 50px;
    border-radius: 8px;
    color: #10996b;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.price_cards_monthly {
    display: none;
}

.form-group select {
    height: 40px !important;
}

.form-group input {
    text-align: left;
}

@media (max-width: 1199px) {
    td.default {
        border: none;
    }
}

@media (max-width: 600px) {
    .form_container .col_half {
        width: 100%;
        float: none;
    }

    .bottom_row .col_half {
        width: 50%;
        float: left;
    }

    .form_container .row .col_half.last {
        border-left: none;
    }

    .remember_me {
        padding-bottom: 20px;
    }

    .seller_p {
        margin: auto;
        font-size: 20px !important;
        padding: 60px 20px !important;
    }
}

/* Begin Media Queries*/
@media screen and (max-width: 850px) {
    .contact-wrapper {
        display: flex;
        flex-direction: column;
    }

    .price-wrapper,
    .price_wrapper_container {
        width: 100%;
    }

    .direct-contact-container {
        display: none;
    }
}

@media screen and (max-width: 569px) {

    .form-control,
    .form-control textarea {
        margin-top: 1rem !important;
        margin: 0 auto;
        max-width: 400px !important;
    }

    #contact select {
        margin-top: 1rem !important;
        margin: 0 auto;
        width: 400px !important;
    }

    .user-type {
        flex-direction: column;
    }

    .save {
        float: left;
    }
}

@media (max-width: 962px) {
    #hero h1 {
        font-size: 3rem;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 2rem;
        max-width: 400px;
    }

    .enterprise-content {
        flex-direction: column;
        text-align: center;
        padding: 0 30px;
    }

    .sign-bg,
    .reg-bg {
        display: none;
    }

    .price-wrapper button {
        display: none;
    }

    .price-wrapper ion-icon {
        display: block;
    }

    .left-overlay {
        display: none;
    }

    .right-overlay {
        display: none;
    }

    .below-footer {
        flex-direction: column;
    }

    .row2 {
        flex-direction: column-reverse;
    }
}

@media (max-width: 500px) {
    .review-text {
        font-size: 1rem;
    }

    .form-control,
    .form-control textarea {
        max-width: 300px !important;
        margin: 0 auto;
    }

    #contact select {
        width: 300px !important;
        margin: 0 auto;
    }

    .review-block {
        padding: 1.3rem 0.1rem 1rem 0.1rem;
        width: 400px;
        margin: 2rem 0.2rem 2rem 0.2rem;
        border-radius: 2rem !important;
        box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
        -webkit-box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
        -moz-box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
    }

    .reviewer-name {
        padding-left: 1rem;
    }

    .reviewer-name h5 {
        margin-top: 1rem;
        font-weight: 600;
        font-size: 0.8rem;
    }

    .reviewer-name p {
        font-size: 0.8rem;
    }

    .timeline .default-line {
        height: 120vh;
    }

    #hero {
        background-attachment: scroll;
    }

    #hero h1 {
        font-size: 1.8rem;
    }

    .products-about-p p {
        max-width: 23rem;
    }
}

@media (max-width: 350px) {
    #hero h1 {
        font-size: 1.5rem;
        max-width: 300px;
    }

    .info {
        margin-left: 0;
    }

    .prev-next {
        flex-direction: column;
    }

    .years-pricing {
        flex-direction: column;
        gap: 10px;
    }

    .monthly,
    .oneyear,
    .twoyears {
        width: 150px;
        padding: 10px;
    }

    #about h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    #home_details h2 {
        font-size: 1.5rem;
    }

    #reviews h2 {
        font-size: 1.5rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .review-block {
        padding: 1.3rem 0.1rem 1rem 0.1rem;
        width: 400px;
        margin: 2rem 0.2rem 2rem 0.2rem;
        border-radius: 2rem !important;
        box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
        -webkit-box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
        -moz-box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
    }

    .join__container h2 {
        font-size: 1.5rem;
        padding: 0 1.5rem;
        font-weight: 600;
        max-width: 600px;
    }

    .timeline .default-line {
        height: 150vh;
    }
}

@media (max-width: 600px) {
    .join {
        margin: 0;
        width: 100%;
    }

    .join__bg {
        border-radius: 0;
    }

    .sub-overlay {
        border-radius: 0;
    }

    .section-join {
        padding: 4.5rem 0 2.5rem;
        margin-bottom: -3rem;
    }
}

@media screen and (max-width: 768px) {
    .join__container {
        padding: 3.5rem 0;
    }

    .info {
        align-items: flex-start;
    }

    .user_options {
        flex-direction: column;
    }

    .user_type,
    .user_choice {
        width: 100%;
    }

    .user_choice {
        margin-bottom: 20px;
        text-align: right;
    }

    .first_split {
        gap: 40px;
    }
}

@media screen and (max-width: 300px) {
    .timeline .default-line {
        height: 170vh;
    }

    #one-time h2 {
        font-size: 1.3rem;
    }

    .form-control,
    .form-control textarea {
        max-width: 200px !important;
        margin: 0 auto;
    }

    #contact select {
        width: 200px !important;
        margin: 0 auto;
    }

    .first_split,
    .first_header p {
        padding-left: 10px;
    }
}

@media screen and (max-width: 280px) {
    #hero h1 {
        font-size: 1.2rem;
        max-width: 250px;
    }
}

@media screen and (max-width: 1199px) {
    .plan_table {
        flex-direction: column;
    }

    .first_half {
        width: 100%;
        max-height: 100% !important;
    }

    .second_half {
        width: 100%;
    }
}

@media screen and (max-width: 470px) {
    .uses_flex {
        flex-direction: column;
        gap: 30px;
    }
}

@media screen and (max-width: 420px) {
    #comparison_table {
        display: none;
    }

    .user_type {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .enterprise-content {
        padding: 0 50px;
        border-radius: 1rem;
        margin-bottom: 30px;
    }

    .ent-text h3 {
        font-size: 1.5rem;
    }
}

/* start sticky */

#fixed-form-container {
    position: fixed;
    bottom: -40px;
    left: 3%;
    width: 94%;
    text-align: center;
    margin: 0;
    z-index: 20;
    transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.body p {
    font-size: 22px;
    font-weight: bold;
}

#fixed-form-container .button:before {
    content: "+ ";
}

#fixed-form-container .expanded:before {
    content: "- ";
}

#fixed-form-container .button {
    font-size: 1.1em;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #10b981;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px 5px 0px 0px;
    padding: 5px 20px 5px 20px;
    background-color: #10b981;
    color: #fff;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

#fixed-form-container .body {
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid #10b98151;
    margin-bottom: 16px;
    padding: 10px;
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 768px) {
    #fixed-form-container .button {
        margin: 0;
    }

    #fixed-form-container {
        left: 20px;
        width: 390px;
        text-align: left;
    }

    #fixed-form-container .body {
        padding: 30px;
        border-radius: 0px 5px 5px 5px;
    }
}



/* end sticky
 */

/* onetime-button */

button.btn.btn-one-time.btn-sm {
    height: 10px;
    background: #5e20c0;
}

button.btn.btn-one-time.btn-sm:hover {
    height: 10px;
    background: #9456ec;
}


.no_nft_popup {
    z-index: 200;
    position: fixed;
    bottom: 30px;
    right: -400px;
    background: #fff;
    border-radius: 10px;
    padding: 25px 30px;
    min-width: 280px;
    box-shadow: 0px 10px 28px 0px rgba(0, 0, 0, 0.15);
    -webkit-box-shadow: 0px 10px 28px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 10px 28px 0px rgba(0, 0, 0, 0.15);
    animation: popup 1s cubic-bezier(0.075, 0.82, 0.165, 1) infinite forwards;
    animation-iteration-count: 1;
    animation-delay: 3s;
}

.no_nft_popup div {
    display: flex;
    align-items: center;
    text-align: left;
}

.no_nft_popup img {
    max-width: 25px;
    margin: -10px 0 0 10px;
}

.no_nft_popup h5 {
    font-size: 16px !important;
    font-weight: bold;
}

.no_nft_popup p {
    font-size: 15px !important;
    margin-top: 2px !important;
}

.no_nft_popup span {
    text-decoration: underline !important;
    color: #00aced !important;
}

@keyframes popup {
    0% {
        right: -400px;
    }

    100% {
        right: 0;
    }
}

.cd-breadcrumb,
.cd-multi-steps {
    width: 100%;
    max-width: 768px;
    padding: 0.5em 1em;
    margin-bottom: 40px;
}

.cd-breadcrumb::after,
.cd-multi-steps::after {
    clear: both;
    content: "";
    display: table;
}

.cd-breadcrumb li,
.cd-multi-steps li {
    display: inline-block;

    margin: 0.5em 0;
}

.cd-breadcrumb li::after,
.cd-multi-steps li::after {
    /* this is the separator between items */
    display: inline-block;
    content: "\00bb";
    margin: 0 0.6em;
    color: #959fa5;
}

.cd-breadcrumb li:last-of-type::after,
.cd-multi-steps li:last-of-type::after {
    /* hide separator after the last item */
    display: none;
}

.cd-breadcrumb li>*,
.cd-multi-steps li>* {
    /* single step */
    display: inline-block;
    font-size: 16px !important;
    color: #2c3f4c;
}

.cd-breadcrumb li.current>*,
.cd-multi-steps li.current>* {
    /* selected step */
    color: #04aa6d;
}

.current {
    /* selected step */
    color: #04aa6d;
}

.no-touch .cd-breadcrumb a:hover,
.no-touch .cd-multi-steps a:hover {
    /* steps already visited */
    color: #04aa6d;
}

.cd-breadcrumb.custom-separator li::after,
.cd-multi-steps.custom-separator li::after {
    /* replace the default separator with a custom icon */
    content: "";
    height: 16px;
    width: 16px;
    background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-separator.svg) no-repeat center center;
    vertical-align: middle;
}

.cd-breadcrumb.custom-icons li>*::before,
.cd-multi-steps.custom-icons li>*::before {
    /* add a custom icon before each item */
    content: "";
    display: inline-block;
    height: 20px;
    width: 20px;
    margin-right: 0.4em;
    margin-top: -2px;
    background: url(https://codyhouse.co/demo/breadcrumbs-multi-steps-indicator/img/cd-custom-icons-01.svg) no-repeat 0 0;
    vertical-align: middle;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(2)>*::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(2)>*::before {
    /* change custom icon using image sprites */
    background-position: -20px 0;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(3)>*::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(3)>*::before {
    background-position: -40px 0;
}

.cd-breadcrumb.custom-icons li:not(.current):nth-of-type(4)>*::before,
.cd-multi-steps.custom-icons li:not(.current):nth-of-type(4)>*::before {
    background-position: -60px 0;
}

.cd-breadcrumb.custom-icons li.current:first-of-type>*::before,
.cd-multi-steps.custom-icons li.current:first-of-type>*::before {
    /* change custom icon for the current item */
    background-position: 0 -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(2)>*::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(2)>*::before {
    background-position: -20px -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(3)>*::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(3)>*::before {
    background-position: -40px -20px;
}

.cd-breadcrumb.custom-icons li.current:nth-of-type(4)>*::before,
.cd-multi-steps.custom-icons li.current:nth-of-type(4)>*::before {
    background-position: -60px -20px;
}

@media only screen and (min-width: 768px) {

    .cd-breadcrumb,
    .cd-multi-steps {
        padding: 0 1.2em;
    }

    .cd-breadcrumb li,
    .cd-multi-steps li {
        margin: 1.2em 0;
    }

    .cd-breadcrumb li::after,
    .cd-multi-steps li::after {
        margin: 0 1em;
    }

    .cd-breadcrumb li>*,
    .cd-multi-steps li>* {
        font-size: 1.6rem;
    }
}

.sub_menu li {
    margin-bottom: -18px;
}

.sub_menu {
    display: flex;
    flex-direction: column !important;
    height: 460px !important;
    flex-wrap: wrap;
    gap: 10px;
}

.main_menu>ul>li {
    display: inline-block;
    position: relative;
    margin: 0 -2px;
}

.has_dropdown {
    position: relative;
}

.has_dropdown a {
    font-size: 16px;
    color: #353535;
    padding: 20px 25px;
    display: block;
    font-weight: 400;
}

.has_dropdown:hover>.hover_a {
    color: #10b981;
    background: #e5fff6;
}

/* Normal Dropdown menu */

.has_dropdown_li {
    background: #fff;
    transition: 0.5s;
    width: 280px !important;
    box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.1);
    padding: 15px 5px 15px 20px !important;
    /* border-radius: 10px; */
}

.has_dropdown_sub_li {
    background: #fff;
    transition: 0.5s;
    width: 230px !important;
    box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.2);
    padding: 15px 5px 15px 10px !important;
    /* border-radius: 10px; */
    margin-left: -30px;
}

.has_dropdown .menu_small {
    width: 100% !important;
    background: #fff;
    transition: 0.5s;
    box-shadow: 0px 5px 15px 0px rgba(212, 201, 201, 0.2);
    padding: 10px 10px 0 5px !important;
    border-radius: 10px;
}

.has_dropdown .menu_small li {
    margin-bottom: 5px;
}

.has_dropdown li {
    width: auto !important;
}

.has_dropdown ul li a {
    padding: 10px;
    font-size: 14px !important;
}

.has_dropdown ul li a i {
    float: right;
}

.has_dropdown ul li ul {
    left: 100%;
    top: 0;
}

/* responsive css */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .mega_menu_demo_2 .mega_menu {
        width: 940px;
    }

    .has_dropdown ul {
        width: 150px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .mega_menu_demo_2 .mega_menu {
        width: 700px;
    }

    .has_dropdown a {
        font-size: 15px;
        padding: 20px 16px;
    }

    .has_dropdown ul {
        width: 150px;
    }
}

@media (min-width: 768px) {
    .has_dropdown ul {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        margin-top: 50px;
        left: -100px;
    }

    .has_dropdown .mega_menu {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        margin-top: 50px;
    }

    .has_dropdown:hover>ul {
        visibility: visible;
        opacity: 1;
        margin-top: 0px;
        z-index: 99;
    }
}

@media (max-width: 767.98px) {
    .has_dropdown {
        display: block;
    }

    .has_dropdown a i {
        float: right;
    }

    .has_dropdown a {
        border-bottom: 1px solid #ddd;
    }

    .has_dropdown ul {
        width: 100%;
    }

    .has_dropdown ul li ul {
        left: 0;
        top: auto;
    }

    .has_dropdown ul {
        display: none;
        transition: none;
    }
}

.explore_app {
    width: 100%;
    border: 1px solid #10996b;
    border-radius: 5px;
    padding: 15px 20px;
    font-size: 15=4px;
    color: #10996b;
    cursor: pointer;
}

#one-time {
    padding: 150px 0;
}

#one-time h2 {
    font-size: 1.8rem;
}

.plan_table {
    margin-top: 40px;
    display: flex;
}

.first_half {
    position: relative;
    width: auto;
    height: fit-content;
    padding: 40px 40px 40px 40px;
    box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
}

.first_half h3,
.first_half_checkout h3 {
    font-size: 24px;
    margin: 10px 0 50px 0;
}

.first_half_checkout {
    position: relative;
    width: 100%;
    /* max-height: 1000px; */
    padding: 40px 40px 40px 40px;
    box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: -1px 11px 47px -10px rgba(0, 0, 0, 0.3);
}

.user_options {
    display: flex;
    /* align-items: center; */
    justify-content: space-between;
}

.user_type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
}

.user_choice {
    width: 25%;
}

.user_choice span {
    color: #4891ff;
    padding-bottom: 30px;
    font-size: 14px;
    cursor: pointer;
}

.user_type span {
    font-size: 14px;
}

.user-group input[type="radio"] {
    display: none;
}

.user-group label {
    cursor: pointer;
    position: relative;
    font-size: 14px;
}

.user-group label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #ababab;
    border-radius: 50%;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    transition: border-color 400ms ease;
}

.user-group label::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #10b981;
    border: 1px solid #10b981;
    border-radius: 50%;
    top: 50%;
    left: -30px;
    transform: translateY(-50%) scale(0);
    transition: transform 400ms ease;
}

.user-group input[type="radio"]:checked+label::before {
    border-color: #10b981;
}

.user-group input[type="radio"]:checked+label::after {
    transform: translateY(-50%) scale(0.55);
}

.first_header {
    background: #fafbfc;
    border: 1px solid #e6e6e6;
}

.first_header p {
    font-size: 12px;
    letter-spacing: 2px;
    padding: 12px 0 0 45px;
    height: 24px;
}

.first_split {
    display: flex;
    width: 100%;
    gap: 80px;
    flex-wrap: wrap;
    padding: 50px 40px 40px 40px;
    border: 1px solid #e6e6e6;
}

.app_choice {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 50px;
}

.default {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    /* max-height: 600px; */
    gap: 50px;
}

.checkbox.style-c {
    display: inline-block;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox.style-c input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox.style-default {
    display: inline-block;
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox.style-default input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox.style-c input:checked~.checkbox__checkmark {
    background-color: #10b981;
}

.checkbox.style-c input:checked~.checkbox__checkmark:after {
    opacity: 1;
}

.checkbox.style-default input:checked~.checkbox__checkmark {
    background-color: #ababab;
    cursor: not-allowed;
}

.checkbox.style-default input:checked~.checkbox__checkmark:after {
    opacity: 1;
}

.checkbox.style-c:hover input~.checkbox__checkmark {
    background-color: #eee;
}

.checkbox.style-c:hover input:checked~.checkbox__checkmark {
    background-color: #10b981;
}

.checkbox.style-c .checkbox__checkmark {
    /*   position: absolute; */
    /* top: 2px;
    left: 0; */
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ababab;
    transition: background-color 0.25s ease;
    border-radius: 4px;
}

.checkbox.style-c .checkbox__checkmark:after {
    content: "";
    /*  position: absolute; */
    /*  left: 8px;
    top: 4px; */
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.checkbox.style-default .checkbox__checkmark {
    /*   position: absolute; */
    /*  top: 2px;
    left: 0; */
    height: 20px;
    width: 20px;
    background-color: #fff;
    transition: background-color 0.25s ease;
    border-radius: 4px;
}

.checkbox.style-default .checkbox__checkmark:after {
    content: "";
    /*  position: absolute; */
    /* left: 8px;
    top: 4px; */
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.checkbox.style-c .checkbox__body {
    color: #0c0c0c;
    line-height: 1.4;
    font-size: 16px;
}

.checkbox.style-c .checkbox__price {
    color: #0c0c0c;
    line-height: 1.4;
    margin-top: 10px;
    font-weight: 600;
    font-size: 16px;
}

.checkbox.style-default .checkbox__body {
    color: #575757;
    cursor: not-allowed;
    line-height: 1.4;
    font-size: 16px;
}

.second_half {
    background: #435a53;
    width: 30%;
    height: auto;
    padding: 70px 40px 50px 40px;
}

.second_half h4 {
    color: #fff;
    margin-bottom: 50px;
}

.bill {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bill_title {
    color: #fff;
    font-weight: 300;
    font-size: 16px;
}

.bill_price {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.second_half button {
    text-align: center;
    background: #fff;
    width: 14rem;
    height: 3rem;
    margin: 20px auto 20px auto;
    color: #000;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 0.9rem !important;
    outline: none;
    border: none;
    border-radius: 0.5rem !important;
    font-family: "Inter" !important;
    padding: 1rem;
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.second_half button:hover {
    background: #10b981;
    color: #fff;
}

.installments_trigger {
    color: #b0aeae;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.installments_trigger:hover {
    color: #000000;
}

.installment_plan {
    display: none;
    transition: 0.3s;
}

.installments_type {
    border-top: 1px solid #d4d4d4;
    border-bottom: 1px solid#D4D4D4;
    padding: 20px 0;
    margin-top: 30px;
}

.installments_header {
    color: #a3a3a3;
    margin: 0 auto;
    text-align: center;
    font-size: 16px;
    margin-bottom: 20px;
}

.months_radio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.install-group input[type="radio"] {
    display: none;
}

.install-group label {
    cursor: pointer;
    position: relative;
    font-size: 16px;
    color: #fff;
}

.install-group label::before {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 50%;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    transition: border-color 400ms ease;
}

.install-group label::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #10b981;
    border: 1px solid #10b981;
    border-radius: 50%;
    top: 50%;
    left: -30px;
    transform: translateY(-50%) scale(0);
    transition: transform 400ms ease;
}

.install-group input[type="radio"]:checked+label::after {
    transform: translateY(-50%) scale(0.55);
}

.due_dates {
    margin-top: 40px;
}

.due_dates:not(:last-child) {
    border-bottom: 1px solid #d4d4d4;
}

.due_dates h5 {
    margin-bottom: 40px;
    color: #fff;
    font-weight: 600;
}

.due_bill {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.due_bill_title {
    color: #fff;
    font-size: 16px;
}

.due_bill_price {
    color: #fff;
    font-weight: 600;
    font-size: 16px;
}

.info {
    display: flex;
    align-items: center;
    margin: 20px 0 0 40px;
}

.info ion-icon {
    font-size: 16px;
}

.info span {
    font-size: 14px;
    margin-left: 10px;
}

.price_tabs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    align-items: center;
    max-width: 1000px;
    margin: auto auto -50px auto;
    gap: 30px;
}

.nairacomp a {
    margin: -60px auto 0 auto;
    /* border-bottom: 1px solid #4891ff; */
    color: #4891ff;
    padding-bottom: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 150px;
}

.price_tabs ion-icon {
    transform: rotate(-45deg);
}

.price_tab {
    color: #000;
    border: 1px solid #d3d3d3;
    padding: 15px 15px 5px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.price_tab p {
    font-size: 16px;
    line-height: 30px !important;
    text-align: center;
}

.complete_feat {
    max-width: 950px;
    border: 1px solid #10996b;
    height: 50px;
    border-radius: 8px;
    color: #10996b;
    margin: 20px auto 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.price_cards_monthly {
    display: none;
}

.form-group select {
    height: 40px !important;
}

.form-group input {
    text-align: left;
}

#fixed-form-container {
    position: fixed;
    bottom: -40px;
    left: 3%;
    width: 94%;
    text-align: center;
    margin: 0;
    z-index: 20;
    transition: 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.body p {
    font-size: 22px;
    font-weight: bold;
}

#fixed-form-container .button:before {
    content: "+ ";
}

#fixed-form-container .expanded:before {
    content: "- ";
}

#fixed-form-container .button {
    font-size: 1.1em;
    cursor: pointer;
    margin-left: auto;
    margin-right: auto;
    border: 2px solid #10b981;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px 5px 0px 0px;
    padding: 5px 20px 5px 20px;
    background-color: #10b981;
    color: #fff;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 0px 5px 0px rgba(0, 0, 0, 0.1);
}

#fixed-form-container .body {
    background-color: #fff;
    border-radius: 10px;
    border: 2px solid #10b98151;
    margin-bottom: 16px;
    padding: 10px;
    -webkit-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 5px 0px rgba(0, 0, 0, 0.1);
}

#free_trial {
    background: #0d8f64;
    width: 100%;
    position: fixed;
    top: -300px;
    z-index: 30;
}

#free_trial p {
    color: #fff;
    text-align: center;
    margin: 5px auto;
    font-size: 13px;
}

#free_trial span {
    font-weight: bold;
    letter-spacing: 0.5px;
    border-bottom: 0.2px #ffffff solid;
}

@media only screen and (min-width: 768px) {
    #fixed-form-container .button {
        margin: 0;
    }

    #fixed-form-container {
        left: 20px;
        width: 390px;
        text-align: left;
    }

    #fixed-form-container .body {
        padding: 30px;
        border-radius: 0px 5px 5px 5px;
    }
}

@media (max-width: 1199px) {
    td.default {
        border: none;
    }
}

@media (max-width: 600px) {
    .form_container .col_half {
        width: 100%;
        float: none;
    }

    .bottom_row .col_half {
        width: 50%;
        float: left;
    }

    .form_container .row .col_half.last {
        border-left: none;
    }

    .remember_me {
        padding-bottom: 20px;
    }

    .seller_p {
        margin: auto;
        font-size: 20px !important;
        padding: 60px 20px !important;
    }
}

/* Begin Media Queries*/
@media screen and (max-width: 850px) {
    .contact-wrapper {
        display: flex;
        flex-direction: column;
    }

    .price-wrapper,
    .price_wrapper_container {
        width: 100%;
    }

    .direct-contact-container {
        display: none;
    }
}

@media screen and (max-width: 569px) {

    .form-control,
    .form-control textarea {
        margin-top: 1rem !important;
        margin: 0 auto;
        max-width: 400px !important;
    }

    #contact select {
        margin-top: 1rem !important;
        margin: 0 auto;
        width: 400px !important;
    }

    .user-type {
        flex-direction: column;
    }

    .save {
        float: left;
    }
}

@media (max-width: 962px) {
    #hero h1 {
        font-size: 3rem;
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 40px;
        max-width: 600px;
    }

    .enterprise-content {
        flex-direction: column;
        text-align: center;
        padding: 0 30px;
    }

    .sign-bg,
    .reg-bg {
        display: none;
    }

    .price-wrapper .buy_plan_btn {
        display: none;
    }

    .price-wrapper ion-icon {
        display: block;
    }

    .left-overlay {
        display: none;
    }

    .right-overlay {
        display: none;
    }

    .below-footer {
        flex-direction: column;
    }

    .row2 {
        flex-direction: column-reverse;
    }
}

@media (max-width: 650px) {
    #hero h1 {
        font-size: 35px;
        max-width: 400px;
    }
}

@media (max-width: 500px) {
    .review-text {
        font-size: 1rem;
    }

    .form-control,
    .form-control textarea {
        max-width: 300px !important;
        margin: 0 auto;
    }

    #contact select {
        width: 300px !important;
        margin: 0 auto;
    }

    .review-block {
        padding: 1.3rem 0.1rem 1rem 0.1rem;
        width: 400px;
        margin: 2rem 0.2rem 2rem 0.2rem;
        border-radius: 2rem !important;
        box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
        -webkit-box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
        -moz-box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
    }

    .reviewer-name {
        padding-left: 1rem;
    }

    .reviewer-name h5 {
        margin-top: 1rem;
        font-weight: 600;
        font-size: 0.8rem;
    }

    .reviewer-name p {
        font-size: 0.8rem;
    }

    .timeline .default-line {
        height: 120vh;
    }

    #hero {
        background-attachment: scroll;
    }

    .hero-group {
        top: 55%;
        left: 40px;
    }

    .products-about-p p {
        max-width: 23rem;
    }
}

@media (max-width: 450px) {
    .hero-group {
        top: 55%;
        left: 20px;
    }

    #hero h1 {
        font-size: 30px;
        max-width: 400px;
    }
}

@media (max-width: 370px) {
    #hero h1 {
        font-size: 30px;
        max-width: 300px;
        line-height: 38px;
    }
}

@media (max-width: 350px) {
    .info {
        margin-left: 0;
    }

    .prev-next {
        flex-direction: column;
    }

    .years-pricing {
        flex-direction: column;
        gap: 10px;
    }

    .monthly,
    .oneyear,
    .twoyears {
        width: 150px;
        padding: 10px;
    }

    #about h2 {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    #home_details h2 {
        font-size: 1.5rem;
    }

    #reviews h2 {
        font-size: 1.5rem;
    }

    .review-text {
        font-size: 1rem;
    }

    .review-block {
        padding: 1.3rem 0.1rem 1rem 0.1rem;
        width: 400px;
        margin: 2rem 0.2rem 2rem 0.2rem;
        border-radius: 2rem !important;
        box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
        -webkit-box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
        -moz-box-shadow: 1px 16px 42px -11px rgba(49, 49, 49, 0.1);
    }

    .join__container h2 {
        font-size: 1.5rem;
        padding: 0 1.5rem;
        font-weight: 600;
        max-width: 600px;
    }

    .timeline .default-line {
        height: 150vh;
    }
}

@media (max-width: 600px) {
    .join {
        margin: 0;
        width: 100%;
    }

    .join__bg {
        border-radius: 0;
    }

    .sub-overlay {
        border-radius: 0;
    }

    .section-join {
        padding: 4.5rem 0 2.5rem;
        margin-bottom: -3rem;
    }
}

@media screen and (max-width: 768px) {
    .join__container {
        padding: 3.5rem 0;
    }

    .info {
        align-items: flex-start;
    }

    .user_options {
        flex-direction: column;
    }

    .user_type,
    .user_choice {
        width: 100%;
    }

    .user_choice {
        margin-bottom: 20px;
        text-align: right;
    }

    .first_split {
        gap: 40px;
    }
}

@media screen and (max-width: 300px) {
    .timeline .default-line {
        height: 170vh;
    }

    #one-time h2 {
        font-size: 1.3rem;
    }

    .form-control,
    .form-control textarea {
        max-width: 200px !important;
        margin: 0 auto;
    }

    #contact select {
        width: 200px !important;
        margin: 0 auto;
    }

    .first_split,
    .first_header p {
        padding-left: 10px;
    }
}

@media screen and (max-width: 280px) {
    #hero h1 {
        font-size: 1.2rem;
        max-width: 250px;
    }
}

@media screen and (max-width: 1199px) {
    .plan_table {
        flex-direction: column;
    }

    .first_half {
        width: 100%;
        max-height: 100% !important;
    }

    .second_half {
        width: 100%;
    }
}

@media screen and (max-width: 992px) {

    .first_split,
    .app_choice {
        gap: 20px;
    }
}

@media screen and (max-width: 670px) {
    .app_choice {
        flex-wrap: nowrap;
    }

    .first_half {
        height: fit-content;
    }
}

@media screen and (max-width: 470px) {
    .uses_flex {
        flex-direction: column;
        gap: 30px;
    }
}

@media screen and (max-width: 420px) {
    #comparison_table {
        display: none;
    }

    .user_type {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .enterprise-content {
        padding: 0 50px;
        border-radius: 1rem;
        margin-bottom: 30px;
    }

    .ent-text h3 {
        font-size: 1.5rem;
    }
}

.material-symbols-outlined {
    font-variation-settings:
        'FILL' 0,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    color: #18b49c;
    margin-top: 0;
}

#hide {
    display: none;
}

.align-inline {
    display: flex;
    align-items: center;
    /* Aligns items vertically in the center */
}

/* Remove all borders initially */
table.table,
table.table th,
table.table td {
    border: none;
    border-collapse: collapse;
}

/* Add outer border to the table */
table.table {
    border: 2px solid #f2f2f2;
    border-radius: 10px;
    /* Adjust the value as needed for more or less rounding */
    /*  overflow: hidden;Ensures corners of the content within the table are rounded */

}

.parent-div {
    display: flex;
    justify-content: flex-end;
    /* Pushes the child div to the end */
}

/* Add inner borders for a consistent look */
table.table th,
table.table td {
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-bottom: 2px solid #f2f2f2;
}

table.table th:first-child,
table.table td:first-child {
    border-left: 1px solid transparent;
}

table.table th:last-child,
table.table td:last-child {
    border-right: 1px solid transparent;
}


.body-text {
    text-decoration: none;
    font-size: 17px;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .fixed-column {
        position: fixed;
        right: 10%;
        background: white;
        width: 25% !important;
    }
}


.head-text {
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    margin: 0;
    padding: 0;

}



table {
    width: 100%;
    border-collapse: collapse;
}


th,
td {
    padding: 8px;
    vertical-align: middle;
    text-align: left;
    font-size: 12px;
    border-left: 2px solid #f2f2f2;
    border-right: 2px solid #f2f2f2;
}

th {
    background-color: #f2f2f2 !important;
}

tbody tr td {
    border-bottom: 2px solid #f2f2f2;
    /* Remove borders for all cells in tbody */
}

tbody tr td p {
    text-decoration: none;
    font-size: 12px;
    margin: 0;
    padding: 0;
}

.asc {
    margin-top: 8px;
}

.desc {
    margin-top: 3px;
}

.selected-row {
    background-color: rgba(248, 92, 4, 0.1019607843);
    color: white;
    /* Add this if you want to change the text color to white for better visibility */
    cursor: pointer;
    /* Add this if you want to show a pointer cursor on hover */
}

.custom-checkbox {
    position: relative;
}

.custom-checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    margin-bottom: 10px;
}

.custom-checkbox input[type="checkbox"]:checked {
    background-color: #04aa6d;
    /* Change to desired color */
    border-color: #04aa6d;
    /* Change to desired color */
}

.custom-checkbox input[type="checkbox"]:checked::after {
    content: "\2713";
    font-size: 16px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.quote-section {
    margin: 100px 0 50px 0 !important;
    min-height: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
    z-index: 10;
}

.select-component input[type=radio] {
    accent-color: #ee631f;
    width: 1.5rem;
}

.project-btn {
    width: fit-content;
}

.select-component {
    padding-bottom: 16px;
}

.select-title {
    display: flex;

}

.select-head {
    text-align: left;
    padding-left: 10px;
    font-weight: 700;
    margin-bottom: 0rem;
}

.select-description {
    text-align: left;
    padding-left: 10px;
}


.custom-checkbox input[type="checkbox"]:disabled {
    background-color: #444649;
    border-color: #adb5bd;
    cursor: not-allowed;
}

.custom-checkbox input[type="checkbox"]:disabled:checked::after {
    color: #adb5bd;
}
