* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: "Rubik", sans-serif;
    background-color: var(--secondary);
    color: var(--white) !important;
}
div,span,ul,li,p,a,h1,h2,h3,h4,h5,h6 {
    margin: 0;
    padding: 0;
}
button,input,textarea {
    outline: none;
    box-shadow: none;
}
a {
    color: var(--white);
    text-decoration: none;
}
a:hover {
    color: #ffffff;
}
:root {
    --white: #ffffff;
    --black: #000000;
    --primary1: #1B8DF5;
    --primary2: #15C4E7;
    --secondary: #000018;
    --gradient:  linear-gradient(to right, var(--primary1), var(--primary2));
}
h1,h2 {
    font-family: "Poppins", sans-serif;
}
.section-padding {
    padding: 50px 0;
}
img {
    max-width: 100%;
    max-height: 100%;
}
li {
    list-style: none;
}
.primary-button {
    padding: 10px 40px;
    border-radius: 30px;
    background-image: var(--gradient);
    position: relative;
    z-index: 0;
    white-space: nowrap;
    display: flex;
    gap: 20px;
}
.primary-button p {
    background-image: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
.primary-button::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--secondary);
    z-index: -1;
    margin: 2px;
    border-radius: 35px;
}
.secondary-btn {
    padding: 15px 50px;
    border-radius: 10px;
    background-image: var(--gradient);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
}
.page-wrapper {
    position: relative;
}
/* Header */
.sidebar-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.header-bar {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background-color: var(--secondary);
    z-index: 999999;
}
.navbar-expand-lg .navbar-collapse {
    justify-content: space-between;
}
.navbar-nav {
    gap: 0 40px;
}
.navbar-expand-lg .navbar-nav .nav-link {
    color: var(--white);
    font-weight: 400;
    padding: 0;
    position: relative;
}
.nav-item.active .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background-image: var(--gradient);
    border-radius: 5px;
}
.navbar-brand {
    display: flex;
    gap: 8px;
    align-items: center;
}
.navbar-brand h2  {
    font-size: 20px;
    font-weight: 500;
    color: var(--white);
}
.navbar-brand h2 span {
    background-image: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}
.navbar-brand.mobile {
    display: none;
}
.nav-button {
    display: flex;
    gap: 20px;
    align-items: center;
}
.sign-in {
    font-weight: 500;
}
.nav-button.mobile {
    display: none;
}
.hide-menu {
    display: none;
}
/* Hero Section */
.banner-item-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    height: 100%;
}
.banner-item-info h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 70px;
}
.banner-item-info h1 span {
    background-image: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.banner-item-info p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #C0CCEA;
}
.banner-item-info a {
    padding: 18px 80px;
    border-radius: 10px;
    background-image: var(--gradient);
    color: var(--white);
    width: fit-content;
    text-transform: capitalize;
    margin-top: 20px;
    font-weight: 700;
}
.banner-item-img {
    display: flex;
    justify-content: right;
}
.abt-content {
    background-color: #141C33;
    padding: 30px 0;
    border-radius: 10px;
}
.about-info {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.about-info h4 {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
}
.about-info h5 {
    font-size: 20px;
    font-weight: 400;
    color: #D2D2E5;
}
.about-info-icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.abt-border {
    border-right: 2px solid var(--white);
}
/* Features Section */
.features-item > img {
    width: 70%;
    padding-left: 40px;
}
.features-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    height: 100%
}
.features-item h2 {
    font-size: 35px;
    font-weight: 700;
    line-height: 50px; 
}
.features-item h2 span {
    background-image: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.features-item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px; 
    color: #D2D2E5;
}
.features-item ul li {
    line-height: 40px;
    display: flex;
    gap: 15px;
    align-items: center;
    color: #C0CCEA;
    font-size: 14px;
}
/* Choose your plan */
.heading-bar {
    text-align: center;
    margin-bottom: 50px;
}
.heading-bar h2 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 10px;
}
.heading-bar h2 span {
    background-image: var(--gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}
.heading-bar p {
    font-size: 16px;
    font-weight: 400;
    color: #C0CCEA;
}
.choose-plan-item {
    padding: 30px;
    border: 3px solid #141C33;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    height: 100%;
}
.plan-header {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.plan-body {
    margin-bottom: 30px;
}
.plan-body h4 {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
    color: #2af6fe;
    font-weight: 500; 
}
.plan-body ul li {
    line-height: 3;
    display: flex;
    align-items: center;
    gap: 20px;
}
.plan-footer h2 {
    text-align: center;
    font-size: 25px;
    color: #D2D2E5;
    font-weight: 500;
    margin-bottom: 20px;
}
.plan-footer h2 span {
    font-weight: 400;
}
.plan-button {
    padding: 10px 60px;
}
.premium-btn {
    border-radius: 30px;
    display: flex;
    padding: 10px 60px;
}
/* Network */
.global-item img {
    width: 100%;
}
.global-item {
    margin-top: 150px;
}
/* testimonial Section */
.testimonial-section {
    padding-bottom: 150px;
}
.testimonial-item {
    padding: 30px;
    border: 3px solid #141C33;
    border-radius: 10px;
    min-height: 244px;
}
.testi-head-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.client-info {
    display: flex;
    align-items: center;
    gap: 20px;
}
.client-name h4 {
    font-size: 18px;
    font-weight: 500;
    color: #D2D2E5;
}
.client-name p {
    font-size: 14px;
    font-weight: 400;
    color: #C0CCEA;
}
.client-rate {
    display: flex;
    align-items: center;
    gap: 10px;
}
.client-rate span {
    font-size: 16px;
    font-weight: 400;
    color: #D2D2E5;
    display: inline-block;
}
.testimonial-item > p {
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: #C0CCEA;
}
.slick-dots {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    bottom: -100px;
}
.slick-dots li {
    width: 15px;
    height: 15px;
}
.slick-dots li.slick-active {
    background-color: #1B8DF5;
    color: transparent;
    padding: 6px 20px;
    border-radius: 10px;
}
.slick-dots li button:before {
    background-color: #C0CCEA;
    border-radius: 50%;
    color: transparent;
    opacity: 1;
    width: 15px;
    height: 15px;
}
.slick-dots li.slick-active button:before {
    border-radius: 10px;
    color: transparent;
    background-color: transparent;
}
/* Subscribe  */
.subscriber-content {
    background-color: #141C33;
    padding: 50px;
    border-radius: 10px;
    position: relative;
    z-index: 99;
    margin: 0 0 -110px;
}
.subscribe-item-info {
    display: flex;
    flex-direction: column;
    gap: 20;
}
.subscribe-item-info h2 {
    font-size: 35px;
    font-weight: 500;
    line-height: 45px;
}
.subscribe-item-info p {
    font-size: 16px;
    font-weight: 400;
    color: #1B8DF5;
    margin-top: 10px;
}
.subscribe-item-btn {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 100%;
}
.subscribe-item button {
    display: inline-block;
    width: fit-content;
}
/* Footer Section */
.footer-section {
    padding: 200px 0 100px 0;
    background-color: #1B8DF5;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}
.footer-logo span {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
}
.footer-item p {
    font-size: 16px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 25px;
}
.footer-item p span {
    font-weight: 500;
}
.social-list {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 25px;
}
.social-list li a {
    display: inline-block;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.social-list li a i {
    font-size: 16px;
    color: #F53838;
}
.footer-item h4 {
    font-size: 16px;
    font-weight: 400;
}
.footer-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 30px;
}
.footer-item ul li {
    line-height: 2.6;
}
.footer-item ul li a {
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 1199px) {
    
}




@media (max-width: 991px) {
    .section-padding {
        padding: 30px 0;
    }
    .header-bar {
        padding: 0;
    }
    .navbar-brand.mobile {
        display: block;
    }
    .navbar-brand.mobile h2 {
        display: none;
    }
    .navbar-toggler {
        display: flex;
        flex-direction: column;
        gap: 6px;
        padding: 0;
    }
    .navbar-toggler span {
        background-image: var(--gradient);
        height: 2px;
    }
    .hbm1 {
        width: 30px;
    }
    .hbm2 {
        width: 22px;
    }
    .hbm3 {
        width: 27px;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        display: inline-block;
    }
    .sidemenu-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
    }
    .sidebar-menu {
        flex-direction: column;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        background-color: #000000;
        padding: 10px;
        transform: translateX(-100%);
        transition: all .4s ease-in-out;
        opacity: 0;
        justify-content: start;
        z-index: 99999999;
    }
    .open-sidebar {
        transform: translateX(0);
        opacity: 1;
    }
    .hide-menu {
        display: block;
        background-color: transparent;
        border: none;
    }
    .hide-menu i {
        background-image: var(--gradient);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 600;
        font-size: 20px;
    }
    .navbar-nav {
        gap: 40px;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .nav-button a {
        font-size: 14px;
        font-weight: 400;
    }
    .sign-up {
        padding: 6px 18px;
    }
    .nav-button {
        display: none;
    }
    .nav-button.mobile {
        display: flex;
    }
    /* banner section */
    .banner-item-info {
        gap: 20px;
    }
    .banner-item-info h1 {
        font-size: 30px;
        font-weight: 500;
        line-height: 35px;
    }
    .banner-item-info p {
        font-size: 14px;
        line-height: 26px;
    }
    .banner-item-info a {
        padding: 15px 40px;
        font-size: 16px;
    }
    .banner-item-img {
        justify-content: center;
    }
    .abt-border {
        border-right: 0px solid var(--white);
        border-bottom: 2px solid var(--white);
    }
    .abt-content {
        padding: 0;
    }
    .about-info {
        justify-content: left;
    }
    /* feature section */
    .features-item > img {
        padding: 0;
        margin: 0 auto; 
    }
    .features-item {
        gap: 10px;
    }
    .features-item h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .features-item p {
        font-size: 14px;
        line-height: 25px;
    }
    .features-item ul li {
        font-size: 12px;
    }
    .heading-bar h2 {
        font-size: 25px;
    }
    .heading-bar p {
        font-size: 14px;
    }
    /* <!-- Network Section --> */
    .global-item {
        margin-top: 0;
    }
    /* Testimonial Section */
    .testimonial-item {
       padding: 20px; 
    }
    .client-name h4 {
        font-size: 16px;
    }
    .client-name p {
        font-size: 12px;
    }
    .testimonial-item > p {
        font-size: 14px ;
    }
    .slick-dots {
        bottom: -50px;
    }
    /* Subscribe sec */
    .subscriber-content {
        padding: 20px;
    }
    .subscribe-item-info h2 {
        font-size: 25px;
        line-height: 35px;
    }
    .subscribe-item-info p {
        font-size: 14px;
    }
    .subscribe-item-btn {
        justify-content: left;
    }
    .testimonial-section {
        padding-bottom: 60px;
    }
    /* footer section */
    .footer-section {
        padding: 150px 0 30px  0;
    }
    .footer-item h3 {
        margin-bottom: 10px;
    }
    .footer-item ul li {
        line-height: 2;
    }
}
@media (max-width: 767px) {

}   
