/*====================== Google fonts ========================*/
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/*=================== Basic css =====================*/
@-ms-viewport {
    width: device-width;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-overflow-style: scrollbar;
    font-size: 62.5%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body,
header,
footer,
main,
nav,
section,
div,
menu,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
button {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button:focus,
a:focus,
input:focus,
textarea:focus,
select:focus {
    outline: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    -moz-transition: 0.2s all ease;
}

a:visited,
a:hover,
a:active {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/*body*/
body {  
    font-family: "Fira Sans", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;    
    /* background: #FFFFFF; */
    color: #272D37; 
    margin: 0;
    padding: 0;
}

/* custom_container */
.custom_container {
    max-width: 1280px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/*====================== Header area start ========================*/
.header_area {
    background: #FFF; 
    border-bottom: 1px solid #EAEBF0;
    padding: 1.8rem 0;
    width: 100%;
    display: block;
    position: sticky;
    top: 0;
    z-index: 1024;
}

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

.header_logo img {
    max-width: 150px;
}

.header_menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header_menu ul {
    display: flex;
    align-items: center;
}

#menu li a {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #272D37;
    display: inline-block;
    margin-left: 3.2rem;
    transition: 0.2s all ease;
    border-bottom: 2px solid transparent;
    padding-bottom: 3px;
}

#menu li a:hover {
    color: #437EF7;
    border-bottom: 2px solid #437EF7;
}

.header_menu .menu_btn {
    margin-left: 11rem;
}

.menu_btn li a {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #272D37;
    background: transparent;
    display: inline-block;
    padding: 1.2rem 1.8rem;
    border-radius: 0.6rem; 
    margin-left: 0.6rem;
    transition: 0.2s all ease;
}

.menu_btn li a.active,
.menu_btn li a:hover {
    color: #FFF;
    background: #437EF7;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04); 
}

/*Hamburger menu*/
.hamburger-menu {
    cursor: pointer;
    position: relative;
    display: none;
    z-index: 999;
}

.hamburger-menu span {
    background: #272D37;
    width: 26px;
    height: 3px;
    display: block;
    margin: 5px 0;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.hamburger-menu .line-top.current {
    -webkit-transform: translateY(200%) rotate(135deg);
    -ms-transform: translateY(200%) rotate(135deg);
    transform: translateY(200%) rotate(135deg);
}

.hamburger-menu .line-center.current {
    opacity: 0;
}

.hamburger-menu .line-bottom.current {
    -webkit-transform: translateY(-325%) rotate(-135deg);
    -ms-transform: translateY(-325%) rotate(-135deg);
    transform: translateY(-325%) rotate(-135deg);
}

/*ofcanvas menu*/
.ofcavas-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    top: 0;
    display: none;
    left: -100%;
    transition: .3s;
}

.ofcavas-menu.current {
    left: 0;
}

.ofcavas-menu #menu {
    margin-top: 10rem;
}

.ofcavas-menu ul {
    padding-top: 1rem;
}

.ofcavas-menu li {
    padding: 0.8rem 0;
}

.ofcavas-menu #menu a {
    font-size: 15px;
    margin-left: 1rem;
}

.ofcavas-menu .menu_btn a {
    font-size: 15px;
}   

/*================== footer_area start =====================*/
.footer_area {
    padding: 17rem 0 10rem;
}

.footer_main {
    padding-top: 3rem;
    border-top: 1px solid #5F6D7E;
    display: flex;
    align-items: flex-center;
    justify-content: space-between;
}

.footer_item {
    padding: 0 1rem;
}

.footer_item h4 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    color:  #5F6D7E;
    margin-bottom: 2rem;
}
.footer_item ul{
    display: flex;
    justify-content: space-between;
}
.footer_item ul li a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #5F6D7E;
    display: inline-block;
    margin-bottom: 12px;
    transition: 0.2s all ease;
}

.footer_item ul li a:hover {
    color: #000;
}

.foooter_right {
    width: 35%;
}

/*===================== sign-up page start =======================*/
.sign_wrapper {
    min-height: 100vh;
    padding: 12.6rem 0;
}

.sign_title h2 {
    font-size: 6.9rem;
    font-style: normal;
    font-weight: 700;
    color: #272D37;
    text-align: center;
    letter-spacing: -0.069rem;
}

/*================= faq_page start =====================*/
.faq_area {
    padding: 12.5rem 0 7.5rem;
}

.faq_heading h2 {
    font-size: 6.9rem;
    font-style: normal;
    font-weight: 700;
    color: #272D37;
    text-align: center;
    letter-spacing: -0.069rem;
    margin-bottom: 3.2rem;
}

.faq_main {
    max-width: 80.6rem;
    width: 100%;
    margin: 0 auto;
}

.accordion_item {
    padding: 1.2rem 1.2rem;
    border: 2.05px solid rgba(103, 84, 84, 0.25);
    border-radius: 20px;
    margin-bottom: 3.2rem;
}

.accordion_title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2.05px solid transparent;
    padding: 1.6rem 0 0.8rem;
    cursor: pointer;
}

.accordion_title.active {
    border-color: rgba(103, 84, 84, 0.25);
}

.accordion_inner {
    display: none;
    padding: 1.6rem 0;
}

.accordion_title img {
    max-width: 2.2rem;
    transform: rotate(180deg);
}

.accordion_title.active img {
    transform: rotate(0deg);
}

.accordion_title h4 {
    font-size: 2.74rem;
    font-style: normal;
    font-weight: 500;
    color: #5F6D7E;
    margin: 0;
    padding-right: 2rem;
}   

.accordion_inner p {
    font-size: 2.188rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #5F6D7E;
    margin-bottom: 1.6rem;
    padding-right: 2rem;
}

/*==================== contact_page start =======================*/
.contact_area {
    padding: 6rem 0;
}

.contact_upper h2 {
    font-size: 6.9rem;
    font-style: normal;
    font-weight: 700;
    color: #272D37;
    text-align: center;
    letter-spacing: -0.069rem;
    margin-bottom: 1rem;
}

.contact_upper p {
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #717171;
    text-align: center;
    margin: 0;
}

.contact_main {
    background: #FFF;
    padding: 5.6rem 6rem 16.5rem;
    border-radius: 1rem;
    box-shadow: 0rem 0rem 6rem 3rem rgba(0, 0, 0, 0.03);
    margin-top: 5.5rem;
    position: relative;
}

.send_item img {
    max-width: 24rem;
    position: absolute;
    bottom: 0;
    right: 14rem;
}

.contact_item label {
    font-family: "Fira Sans", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    color: #8D8D8D;
    width: 100%;
    display: block;
    margin-bottom: 0.6rem;
}

.contact_item input,
.contact_item textarea {
    font-family: "Fira Sans", sans-serif;
    width: 100%;
    display: block;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    color: #8D8D8D;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 1px solid #8D8D8D;
    resize: none;
    padding: 0.8rem 0;
}

.contact_item input::placeholder,
.contact_item textarea::placeholder {
    font-family: "Fira Sans", sans-serif;
    color: #8D8D8D;
    opacity: 1;
}

.contact_item {
    margin-bottom: 3.6rem;
}

.send_btn button {
    font-family: "Fira Sans", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
    text-align: center;
    border-radius: 5px;
    background: #000;
    box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.12);
    max-width: 200px;
    width: 100%;
    display: block;
    margin-left: auto;
    border: none;
    outline: none;
    padding: 1.5rem 1.5rem;
    transition: 0.2s all ease;
    position: relative;
    z-index: 9;
}

.send_btn button:hover {
    opacity: 0.85;
    cursor: pointer;
}

.send_btn {
    margin-top: 14rem;
}



/*=================== pricing_area start =====================*/
.pricing_area {
    padding: 7rem 0;
}

.price_main {
    padding: 4rem 0 3rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 3.2rem;
}

.price_item {
    border: 1px solid #252D3C;
    background: #1C2534;
    padding: 3.2rem 3.2rem;
    border-radius: 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.price_item h6 {
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    color: #F9F9F9;
    margin-bottom: 4rem;
}
.price_item .ribbon {
    position: absolute;
    right: -31px;
    top: 24px;
    background-color: #437EF7;
    padding: 5px 20px;
    color: white;
    font-weight: bold;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.price_item h3 {
    font-size: 3.6rem;
    font-style: normal;
    font-weight: 600;
    color: #F9F9F9;
    margin: 0;
}

.price_item h3 span {
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    color: #A5ACBA;
}

.price_item h4 {
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    color: #F9F9F9;
    margin: 1.2rem 0;
}

.price_item p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    color: #A5ACBA;
    margin-bottom: 3rem;
}

.price_item ul {
    border-top: 1px solid #2E3545;
    padding-top: 2.4rem;
    margin-top: auto;
}

.price_item ul li {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    color: #FFF;
    margin-bottom: 1.2rem;
}

.price_item ul li img {
    max-width: 2rem;
    margin-right: 1.2rem;
}

.price_item a {
    font-size: 1.5rem;
    font-style: normal;
    font-weight: 600;
    color: #FFF;
    border-radius: 0.6rem;
    background: #437EF7;
    display: block;
    padding: 1.4rem 1.5rem;
    text-align: center;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    margin-top: 3.2rem;
    transition: 0.2s all ease;
}

.price_item a:hover {
    opacity: 0.85;
}

/*===================== voip page start ========================*/
.voipHero_area {
    padding: 10rem 0;
}

/* .voipHero_main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 5.6rem;
} */

.voip_right img {
    max-width: 100%;
}

.voip_left h2 {
    font-size: 6.9rem;
    font-style: normal;
    font-weight: 700;
    color: #272D37;
    margin: 5.6rem 0 2rem;
    margin-top: 0px;
    text-align: center;
}

.voip_left p {
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    color: #5F6D7E;
    text-align: center;
}

.partner_area {
    padding: 7rem 0 7rem;
}
.partner_area h2{
    margin-top: 80px;
    text-align: center;
    margin-bottom: 30px;
    font-size: 5rem;
}
.partner_area h2:first-child{
    margin-top: 0px;
}
.partner_main {
    flex-wrap: wrap;
    display: flex;
    grid-gap: 4.5rem;
    justify-content: left;
}
.partner_main.comingsoon{
    justify-content: center;
}
.partner_item img {
    width: 100%;
    width: 275px;
    
}

/*================== index page start =====================*/
.hero_area {
    padding: 6rem 0;
}

.hero_main {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap:10%;
}

.hero_left {
    width: 40%;
}

.hero_right {
    width: 40%;
}

.hero_left h6 img {
    max-width: 2.8rem;
    margin-right: 0.3em;
}

.hero_left h6 {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    color: #437EF7;
}

.hero_left h2 {
    font-size: 6.1rem;
    font-style: normal;
    font-weight: 700;
    color: #272D37;
    line-height: 98.361%;
    margin-top: 1.6rem;
    letter-spacing: -0.061rem; 
}

.hero_left p {
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 500;
    color: #5F6D7E;
    margin: 2.4rem 0;
}

.hero_left ul {
    padding-left: 2rem;
}

.hero_left ul li {
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 400;
    color: #5F6D7E;
    list-style: initial;
    margin: 0.2rem 0;
}

.hero_left a,.hero_right .hero_btn_mobile {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    color: #FFF;
    border-radius: 1.6rem;
    background: #437EF7;
    display: inline-block;
    padding: 2rem 8rem;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    transition: 0.2s all ease;
    margin-top: 4.8rem;
}

.hero_left a:hover {
    opacity: 0.85;
}

/*================= team_area start ===================*/
.team_area {
    padding: 10rem 0 26rem;
}

.team_upper h3 {
    font-size: 5.2rem;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    color: #272D37;
    margin: 0;
}

.team_main {
    padding: 13.6rem 0 8.6rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 24px;
}
.team_main.mobile{
    display: none;
}
.team_left {
    display: flex;
    align-items: center;
    width: 80%;
    justify-content: center;
    border-radius: 20px;
    background: #F6F7FA;
}

.team_right {
    width: 31%;
}

.team_left img {
    width: 100%;
    border-radius: 1.4rem;
    max-width: 850px;
}

.team_cnt {
    border: 1px solid rgba(107, 93, 93, 0.35);
    background: #FFF;
    padding: 2rem 2rem 3rem;
    border-radius: 1.5rem;
    min-height: 17rem;
    margin-bottom: 1rem;
}
.team_cnt:last-child{
    margin-bottom: 0px;
}

.team_cnt h4 {
    font-size: 1.65rem;
    font-style: normal;
    font-weight: 700;
    color: #5F6D7E;
    margin-bottom: 0.85rem;
}   

.team_cnt p {
    font-size: 1.52rem;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: #5F6D7E;
    margin: 0;
}

.team_btn {
    text-align: center;
}

.team_btn a {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    color:  #FFF;
    max-width: 35.8rem;
    width: 100%;
    display: block;
    text-align: center;
    margin: 0 auto;
    border-radius: 1.8rem;
    background: #437EF7;
    padding: 2.1rem 1rem;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
}

.team_btn a:hover {
    opacity: 0.85;
}

/*================== profit_area start ==================== */
.profit_main {
    padding-top: 8.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 4.5rem;
}

.profit_item {
    border: 1.012px solid rgba(107, 93, 93, 0.35);
    background: #FFF;
    padding: 2.5rem 2.5rem;
    border-radius: 2rem;
}

.profit_item img {
    max-width: 6.5rem;
}

.profit_item h4 {
    font-size: 2.2rem;
    font-style: normal;
    font-weight: 700;
    color: #5F6D7E;
    margin: 2.5rem 0;
}

.profit_item p {
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: #5F6D7E;
    margin: 0;
}

.pci_main {
    padding-top: 8.5rem;
}


/*=================== request_area start =====================*/
.request_area {
    padding: 23.8rem 0 15rem;
}

.request_box {
    max-width: 72rem;
    width: 100%;
    margin: 0 auto;
    background: #5F6D7E;
    padding: 6.5rem 8.6rem 5.4rem;
    border-radius: 3.6rem;
}

.request_box h4 {
    font-size: 5.2rem;
    font-style: normal;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 1.6rem;
    text-align: center;
}

.req_item label {
    font-family: "Fira Sans", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    color: #E1E5EA;
    display: block;
    margin-bottom: 1rem;
}

.req_item input {
    font-family: "Fira Sans", sans-serif;
    width: 100%;
    height: 5.6rem;
    display: block;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    color: #5F6D7E;
    border: 1px solid rgba(64, 52, 52, 0.84);
    background: #FFF;
    padding: 1rem 2rem;
    outline: none;
    border-radius: 0.4rem;
    box-shadow: 1px 0px 0px 3px rgba(148, 126, 126, 0.25) inset;
}

.req_item textarea {
    font-family: "Fira Sans", sans-serif;
    width: 100%;
    height: 15.6rem;
    display: block;
    font-size: 2rem;
    font-style: normal;
    font-weight: 600;
    color: #5F6D7E;
    border: 1px solid rgba(64, 52, 52, 0.84);
    background: #FFF;
    padding: 1rem 2rem;
    outline: none;
    border-radius: 0.4rem;
    box-shadow: 1px 0px 0px 3px rgba(148, 126, 126, 0.25) inset;
    resize: none;
}

.req_item {
    margin-bottom: 1.6rem;
}

.req_btn button {
    font-family: "Fira Sans", sans-serif;
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    color: #FFF;
    width: 100%;
    display: block;
    text-align: center;
    border-radius: 1.4rem;
    border: 1px solid  rgba(64, 52, 52, 0.84);
    background: #3A78E0;
    padding: 2.1rem 1rem;
    cursor: pointer;
    transition: 0.2s all ease;
    margin-top: 7rem;
}

.req_btn button:hover {
    opacity: 0.85;
}
.team_upper h3 br{
    display: none;
}
.hero_btn_mobile{
    display: none;
    text-align: center;
}
.team_cnt{
    cursor: pointer;
}
.team_cnt.active{
    border:1px solid #437EF7;
}
.team_cnt img{
    display: none;
}
.footer_item ul{
    flex-direction: column;
}
.team_main h4 {
    font-size: 1.65rem;
    font-style: normal;
    font-weight: 700;
    color: #5F6D7E;
    margin-bottom: 0.85rem;
}  
.team_main p {
    font-size: 1.52rem;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: #5F6D7E;
    margin: 0;
}
@media(max-width:768px){
    .hero_left{
        /* text-align: center; */
    }
    .hero_left h6{
        /* justify-content: center; */
    }
    .partner_main{
        justify-content: center;
    }
    .header_logo img {
        max-width: 100px;
    }
    .team_left img{
        display: none;
    }
    .team_cnt img{
        display: block;
        margin-top: 20px;
    }
    .hero_area{
        padding: 3rem 0 !important;
    }
    .team_main.desktop{
        display: none;
    }
    .team_main.mobile{
        display: block;
        padding-bottom: 2rem;
    }
    
}
.feature_area,.pricing_area,.faq_area,.voipHero_area,.contact_area{
    padding: 3rem 0 !important;
}
.formwrapper h2 {
    margin: 3rem 0 !important;
    text-align: center;
}
.formwrapper{
    width:100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 30px;
}
.formwrapper h2 {
    font-size: 6.9rem;
    font-style: normal;
    font-weight: 700;
    color: #272D37;
    margin: 5.6rem 0 2rem;
}
.form-label {
    box-sizing: border-box;
    color: rgb(41, 52, 61);
    cursor: default;
    display: inline-block;
    font-size:14px;
    font-weight: 600;
    height: 21px;
    line-height: 21px;
    margin-bottom: 8px;
    text-align: start;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
}
.form-check-label{
    font-size: 14px;
}
.mb-3{
    margin-bottom: 1rem;
}
.form-control {
    display: block;
    width: 100%;
    padding: 10px 16px;
    background-image: none !important;
    background-color: rgb(232, 240, 254) !important;
    color: fieldtext !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    background-clip: padding-box;
    border-radius: 8px;
    border: 0px !important;
}
.formwrapper input[type=submit],.formwrapper button{
    color: #FFF;
    width: 100%;
    border-radius: 20px;
    padding: 10px;
    background: #437EF7;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    border: 0px !important;
    cursor: pointer;
    font-size:16px;
    margin-top:10px;
}
.grecaptcha-badge{
    display: none !important;
}
.form-check {
    margin-top:20px;
    margin-bottom: 20px;
}
.last-link{
    padding: 20px 0px;
    font-size: 14px;
    color: #437EF7;
    text-align: center;
}
.text-danger{
    color:rgb(255, 102, 146);
    font-size: 14px;
}

.last-register{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    gap: 5px;
}


.gallery-picture {
    animation: fade 1s;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    opacity: 1;
    background-color: rgba(246, 247, 250, 1);
    background-color: rgba(246, 247, 250, 1);
    padding: 20px;
    text-align: center;
}
.gallery-picture>img {
    height: 167px;
    width: auto;
}
@media (min-width: 640px) {
    .gallery-picture>img {
        height: auto;
    }
}

@media (min-width: 1024px) {
    .gallery-picture {
        flex: 1 1 0%;
        border-radius: 1rem;
    }
}

.termsofuse{
    text-align: left;
}
.termsofuse h3{
    margin-top:15px;
}
.termsofuse h3,.termsofuse h4,.termsofuse p{
    line-height: 32px;
    text-align: left;
}
.profit-item-top{
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}


/*==================== feature pge start ======================*/
.feature_area {
    padding: 6rem 0;
}

.feature_title h2 {
    font-size: 6.9rem;
    font-style: normal;
    font-weight: 700;
    color: #272D37;
    text-align: center;
    letter-spacing: -0.069rem;
    margin-bottom: 0;
}
.feature_title p{
    text-align: center;
    color: #5F6D7E;
    max-width: 858px;
    margin: 0 auto;
    margin-top: 25px;
    margin-bottom: 35px;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: #5F6D7E;
}

.feature_main {
    padding: 4rem 0 20rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 4.5rem;
}

.feature_item {
    border: 1.012px solid rgba(107, 93, 93, 0.35);
    background: #FFF;
    padding: 2.1rem 2.6rem;
    border-radius: 2rem;
    min-height: 280px;
}

.feature_item img {
    height: 64px;
    width: 64px;
}


.feature_btn {
    text-align: center;
}

.feature_btn a {
    font-size: 2.5rem;
    font-style: normal;
    font-weight: 700;
    border-radius: 1.8rem;
    color: #FFF;
    background: #437EF7;
    display: inline-block;
    padding: 2.1rem 9rem;
    box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.04);
    transition: 0.2s all ease;
}

.feature_btn a:hover {
    opacity: 0.85;
}
.feature_item h4{
    font-family: Fira Sans;
    font-size: 22px;
    font-weight: 700;
    line-height: 26px;
    text-align: left;
    color: #5F6D7E;
}
.featureitemtop{
    display: flex;
    align-items: center;
    gap: 10px;
}
.feature_item p{
    font-family: Fira Sans;
    font-size: 20px;
    font-weight: 500;
    line-height: 26px;
    text-align: left;
    margin-top: 35px;
    color: #5F6D7E;
}
.feature_item h3{
    font-size: 5.2rem;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    color: #272D37;
    margin: 0;
}
.pci_main h3{
    font-size: 5.2rem;
    font-style: normal;
    font-weight: 700;
    text-align: center;
    color: #272D37;
    margin: 0;
}
.pci_main p{
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: 130%;
    color: #5F6D7E;
}
@media screen and (max-width: 767px) {
    .pci_main h3 {
        font-size: 4.5rem;
    }
}
.captchadiv{
    margin-top:15px;
}
.hidden{
    display: none;
}
.spinner {
    text-align: center;
    font-size: 10px;
    border: none !important;
}
.spinner-sm {
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.spinner > div {
    height: 100%;
    animation:sk-stretchdelay 1.2s ease-in-out 0s infinite;
    border-radius: 4px;
}
.spinner .rect2 {
    animation-delay: -1.1s;
}
.spinner .rect3 {
    animation-delay: -1s;
}
.spinner .rect4 {
    animation-delay: -.9s;
}
.spinner .rect5 {
    animation-delay: -.8s;
}
.spinner-sm > div {
    display: block;
    margin-left: 2px;
    width: 2px;
}
.btn-primary .spinner > div {
    background: rgb(255, 255, 255);
}
@keyframes sk-stretchdelay {
    0%, 40%, 100% {
        transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
    }
}

.sticky-telegram{
    cursor: pointer;
    z-index: 1003;
    position: fixed;
    margin-left: 15px;
    bottom: 15px;
    right: 15px;
    img{
        width: 40px;
        height: auto;
    }
}