@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');


:root {
    /* All site font family */
    --font-family: "Plus Jakarta Display", sans-serif;
    /* All Heading paragraph a btn Font size */
    --h1:48px;
    --h2: 38px;
    --h3: 24px;
    --p_1: 20px;
    --p_2: 16px;
    /* heading paragraph  a btn  color */
    --font-color-h: rgb(7, 7, 33);
    --font-color-p: rgb(80, 80, 126);
    --font-color-a: rgb(0, 0, 0);
    --font-color-btn: rgb(255, 255, 255);
    --btn-bgcolor: #302cff;
    --bg-hover-color: #1d1c43;

    --box-shadow: 0 2px 8px #302cff1a;

    /* full width */
    --main-width: 70%;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: 0;
 /*   text-transform: capitalize;*/
}

*::after,
*::before {
    margin: 0;
    padding: 0;
}

html,
body {
    scroll-behavior: smooth;
    background-color: #ffffff;
}

h1 {
    font-family: var(--font-family);
    font-size: var(--h1);
    font-weight: 700;
    line-height: 61.968px;
    color: var(--font-color-h);
}

h2 {
    font-family: var(--font-family);
    font-size: var(--h2);
    font-weight: 700;
    line-height: 51.984px;
    color: var(--font-color-h);
}

h3 {
    font-family: var(--font-family);
    font-size: var(--h3);
    font-weight: 700;
    line-height: 33.984px;
    color: var(--font-color-h);
}

.p_1 {
    font-family: var(--font-family);
    font-size: 20px;
    font-weight: 400;
    line-height: 34px;
    color: var(--font-color-p);
}

.p_2 {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 26.992px;
    color: var(--font-color-p);
}

a {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: var(--font-color-a);
}

.btn_font {
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    color: var(--font-color-btn);
}

.button {
    width: 122px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--btn-bgcolor);
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
    outline: 0;
    padding: 0 10px;
    box-shadow: var(--box-shadow);
}

.button_border {
    width: 122px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--btn-bgcolor);
    transition: all 0.4s ease-in-out;
    border-radius: 10px;
    outline: 0;
    padding: 0 10px;
    box-shadow: var(--box-shadow);
    color: var(--btn-bgcolor) !important;
}

/* .button:hover {

    background-color: var(--bg-hover-color);
    transform: scale(0.95);
} */

.button_border:hover {

    background-color: var(--btn-bgcolor);
    color: #ffffff !important;
    transform: scale(0.95);
}
/*
=======================
header area start
========================
*/
header {
    position: sticky;
    top: 0;
    z-index: 99999;
}

header #container {
    width: var(--main-width);
    margin: 0 auto;
    background-color: #ffff;




}

header #container .top_navber {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #cecddd;
    padding: 20px 8px;




}

header #container .top_navber .menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 8px;

}

header #container .top_navber .logo {
    display: inline-block;
}

header #container .top_navber .logo img {
    width: 50px;
}

header #container .top_navber .menu .nav_item ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

header #container .top_navber .menu .button_area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
/*
=======================
header area end
========================
*/
/*
=======================
hero area start
========================
*/
.hero {
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    overflow: hidden;
    z-index: 0;
}

.hero::before {
    position: absolute;
    content: '';
    width: 200px;
    height: 200px;
    background-color: rgb(255, 0, 242);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    mix-blend-mode: screen;
    top: -50px;
    left: 300px;
    z-index: 999;
}

.hero div {
    text-align: center;
}

.hero_t {
    color: var(--btn-bgcolor);
    text-transform: uppercase;
}

.hero_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;


}
/*
=======================
hero area end
========================
*/
/*
=======================
main area start
========================
*/
main #container {
    width: var(--main-width);
    margin: 0 auto;
    position: relative;
}
/*
=======================
service area start
========================
*/
.our_servie .contan {
    text-align: center;
    border-bottom: 1px solid #cecddd;
}

.our_servie .contan h2 {

    margin: 0 auto;
}
/*
=======================
service car box area start
========================
*/
.price_card_box {
    padding: 40px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
/*
=======================
service card area start
========================
*/
.price_card_box .card {
    border-radius: 10px;
    text-align: center;
    overflow: hidden;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding-bottom: 40px;

}

.price_card_box .card .header {
    padding: 20px 0;
    background-color: rgba(0, 255, 64, 0.205);
    border-radius: 0 0 40px 40px;
}

.price_card_box .card .header i {
    color: rgb(255, 196, 0);
}

.price_card_box .card .header h2 {
    color: var(--btn-bgcolor);
}

.price_card_box .card .service {
    padding: 30px 0;
}

.price_card_box .card .service p {
    display: flex;
    gap: 0px;
    align-items: center;
    justify-content: center;
}

.price_card_box .card .service p i {
    background-color: rgb(0, 134, 22);
    padding: 3px 4px;
    border-radius: 100px;
    font-size: 16px;
    color: #fff;
}

.price_card_box .card .price {

    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
/*
=======================
service card area end
service card box area end
service area end
========================
*/
/*
=======================
High-Speed Broadband Internet area start
========================
*/


.our_premium_service {
    padding-top: 40px;
}

.our_premium_service .s_t,
.our_premium_service .s_s_t {
    text-align: center;
}

.our_premium_service .card_box {
    padding: 40px 40px;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;

}

.our_premium_service .card_box .card {

    border-radius: 20px;
    border-radius: 10px;
    background: #e0e0e0;
    box-shadow: 9px 9px 18px #bebebe,
        -9px -9px 18px #ffffff;
    border-top: 2px solid blue;
    text-align: center;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.our_premium_service .card_box .card .header i {
    font-size: 50px;
    color: var(--btn-bgcolor);
}

.our_premium_service .card_box .card .price {

    display: flex;
    align-items: center;
    justify-content: center;
}

.our_premium_service .card_box .card .service {

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}
/*
=======================
High-Speed Broadband Internet area end
========================
*/
/*
=======================
about area start
========================
*/
.btn_ful {
    display: block;
    width: 90%;
}

.about {
    text-align: center;
    background-color: rgba(187, 187, 187, 0.178);
    padding: 30px 0;

}

.about::before {
    position: absolute;
    content: '';
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgb(0, 255, 21);
    filter: blur(100px);
    opacity: 0.6;
    left: 0;

}

.about::after {
    position: absolute;
    content: '';
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgb(238, 255, 0);
    filter: blur(100px);
    opacity: 0.6;
    right: 0;

}

.about p {
    text-align: center;
    width: 60%;
    margin: 0 auto;
}
/*
=======================
about area end
========================
*/
/*
=======================
footer area start
========================
*/

footer {
    background-color: #1d1c43;
    padding: 40px;
    color: #ffff;
}

footer .top_footer {
    padding: 20px;
    display: flex;
    flex-direction: column;
    padding-left: 0px;


}





footer .top_footer .box {
    padding-top: 10px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

footer .top_footer .box .block {
    display: flex;
    justify-content: space-between;
    align-items:center;
    flex-direction: column;
    text-align: left !important;
}

footer .top_footer .box .block .addres {
    text-align: center;
}

footer .top_footer .box .block i {
    background-color: white;
    padding: 5px 6px;
    border-radius: 50px;
    color: #1d1c43;
    font-size: 20px;
}

footer .top_footer .box .block h4 {

    padding: 5px 6px;
    border-radius: 50px;

    font-size: 29px;
}

.bottom_footer {
    border-top: 2px solid rgba(255, 255, 255, 0.452);
    text-align: center;
    padding-top: 40px;
}

/*
=======================
footer area end
========================
*/

/*
=======================
menu open and close button area start
========================
*/
.close i,
.menu_icon i {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background-color:#0e183663;
    color: var(--font-color-btn);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.menu_icon i {
       background-color:blue;
}
.close{
    padding:10px;
}
.close,
.menu_icon {
    display: none;

}
/*
=======================
menu open and close button area start
========================
*/
@media (max-width: 1400px) {
    header #container {
      width: 99%;
        margin: 0 0;
    }

    main #container {
       width:99%;
       margin: 0 0;
    }  
}

@media (max-width: 600px) {
.number{
    text-align:center !important;
}
    .close,
    .menu_icon {
        display: block;

    }

    .nav_item {
        display: block;
        background-color: rgba(11, 128, 30, 0.671);
        flex-direction: column;
        position: absolute;
        top: 100px;
        right: 0;
        left:0;
        width:100%;
        height:0;
        border-radius: 10px;
        overflow: hidden;
        transition: all 0.5s ease-in-out;
        padding:0 10px;
    }

    .nav_open {
        height:250px;
    }

    .nav_item ul {
        flex-direction: column;
        gap: 5px !important;
    }

    .nav_item ul li {

        width: 100%;
        border-radius:20px;
        overflow:hidden;

    }

    .nav_item ul li a {
        background-color: rgb(255, 255, 255);
        width: 100%;
        display: block;
        padding: 10px;
        text-align: center;
        font-size: 17px;

    }
	

    :root {
        /* All site font family */
        --font-family: "Plus Jakarta Display", sans-serif;
        /* All Heading paragraph a btn Font size */
        --h1-m: 38px;
        --h2: 30px;
        --h3: 24px;
        --p_1: 20px;
        --p_2: 16px;
        /* heading paragraph  a btn  color */
        --font-color-h: rgb(7, 7, 33);
        --font-color-p: rgb(80, 80, 126);
        --font-color-a: rgb(0, 0, 0);
        --font-color-btn: rgb(255, 255, 255);
        --btn-bgcolor: #302cff;
        --bg-hover-color: #1d1c43;

        --box-shadow: 0 2px 8px #302cff1a;

        /* mobail width */
        --mobail-width: 99%;

    }

    header #container {
      width:99%;
       margin: 0 auto;
    }

    main #container {
   width:99%;
       margin: 0 auto;
    }

    h1 {
        font-family: var(--font-family);
        font-size: var(--h1-m);
        font-weight: 700;
        line-height: 50.968px;
        color: var(--font-color-h);
    }

    h2 {
        font-family: var(--font-family);
        font-size: var(--h2);
        font-weight: 700;
        line-height: 51.984px;
        color: var(--font-color-h);
    }

    h3 {
        font-family: var(--font-family);
        font-size: var(--h3);
        font-weight: 700;
        line-height: 33.984px;
        color: var(--font-color-h);
    }

    .p_1 {
        font-family: var(--font-family);
        font-size: 20px;
        font-weight: 400;
        line-height: 34px;
        color: var(--font-color-p);
    }

    .p_2 {
        font-family: var(--font-family);
        font-size: 16px;
        font-weight: 400;
        line-height: 26.992px;
        color: var(--font-color-p);
    }

    a {
        font-family: var(--font-family);
        font-size: 16px;
        font-weight: 500;
        line-height: 16px;
        color: var(--font-color-a);
    }

    .btn_font {
        font-family: var(--font-family);
        font-size: 16px;
        font-weight: 500;
        line-height: 16px;
        color: var(--font-color-btn);
    }

    .button {
        width: 122px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--btn-bgcolor);
        transition: all 0.4s ease-in-out;
        border-radius: 10px;
        outline: 0;
        padding: 0 10px;
        box-shadow: var(--box-shadow);
    }

    .button_border {
        width: 122px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--btn-bgcolor);
        transition: all 0.4s ease-in-out;
        border-radius: 10px;
        outline: 0;
        padding: 0 10px;
        box-shadow: var(--box-shadow);
        color: var(--btn-bgcolor) !important;
    }




    .about p {
         text-align: left !important;
        width: 99%;
        margin: 0 0;
        padding-left:3px;
    }
    .price_card_box {
        padding:20px;
    }
    .our_premium_service .card_box {
        padding:20px;
    }
}
@media (max-width: 364px) {
  /* অতিক্ষুদ্র স্ক্রিনের জন্য CSS
  */
     header #container {
      width:100%;
       margin: 0 auto;
    }
    .about{
        padding-left:9px;
    }
    .a_t{
        text-align:left;
        font-size:28px;
    }

    main #container {
       width:100%;
       margin: 0 auto;
    }
  .price_card_box {
        padding:10px;
    }
    .our_premium_service .card_box {
        padding:10px;
    }
    footer {
   
    padding: 10px;
   
}
 
}