*{
    margin: 0;
    padding: 0;
}
html,body{
    font-family: 'DMSans_18pt-Regular';
    width: 100%;
    height: 100%;
    background-color: var(--dark_blue);
}

:root{
    --dark_blue : #060E21;
    --white : #ffffff;
    --blue: #419FFF;
    --light_blue: #101527;
}

 ::-webkit-scrollbar {
    width: 3px;
    height: 3px;
}

::-webkit-scrollbar-track {
    background: var(--dark_blue);
} 
/******************************* common_css *******************************/
h1,h2,h3,h4,h5,h6,ul,p{
    margin: 0;
    padding: 0;
}

.cust_container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}
.common_space{
    padding: 50px 0;
}
.common_title{
    width: 100%;
    max-width: 559px;
}
.common_title h3{
    font-family: 'DMSans_18pt-Bold';
    color: var(--white);
    font-size: 50px;
}
.common_title p{
    font-family: 'Montserrat-Regular';
    color: var(--white);
    opacity: 0.8;
    font-size: 18px;
    margin: 20px 0 30px;
    line-height: 32px;
}
/******************************* end_common_css *******************************/

/******************************* header_section_css *******************************/
.header_section{
    position: absolute;
    z-index: 1;
    padding: 23px 0;
    width: 100%;
}
.header_menu{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.menu a{
    font-family: 'DMSans_18pt-Medium';
    text-decoration: none;
    font-size: 17px;
    color: var(--white);
    margin: 0 34px 0 0;
    transition: all .5s;
}

.menu a:hover{
    color: var(--blue);
}
.header_button{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.header_button a{
    font-family: 'DMSans_18pt-Bold';
    display: inline-block;
    background-color: var(--blue);
    color: var(--white);
    font-size: 18px;
    padding: 12px 27px;
    text-decoration: none;
    border-radius: 10px;
    transition: all .5s;
    margin-right: 10px;
}
.header_button a:hover{
    background-color: var(--dark_blue);
}
.toggle_btn{
    width: 30px;
    display: none;
}
.close_menu{
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
    background-color: var(--blue);
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.close_menu img{
    width: 25px;
}

.fixed {
    position: fixed;
    top: 0;
    left: 0;
    animation: smoothScroll 1s forwards;
    width: 100%;
    z-index: 100;
    background-color: var(--dark_blue);
}
.fixed.header_section{
    padding: 10px 0;
    background: rgba(6, 14, 33, 0.3);
    backdrop-filter: blur(30px);
}

@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}
/******************************* end_header_section_css *******************************/


/******************************* hero_section_css *******************************/
.hero_section{
    width: 100%;
    height: 100%;
    background-image: url("../img/bg.png");
    background-repeat: no-repeat;
    position: relative;
    background-position: left bottom;
    background-size: cover;
}
.hero_content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
}
.hero_content h3{
    font-family: 'DMSans_18pt-Light';
    font-size: 80px;
    color: var(--white);
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: auto;
}
.font_bold{
    font-family: 'DMSans_18pt-Bold';
}
.hero_content p{
    font-family: 'DMSans_18pt-Light';
    color: var(--white);
    font-size: 19px;
    width: 100%;
    max-width: 578px;
    margin: 20px auto 52px;
    text-align: center;
    opacity: 0.8;
}
.platform_section{
    display: flex;
    justify-content: center;
    align-items: center;
}
.platform_section a{
    display: inline-block;
    margin: 0 20px 0 0;
}
/******************************* end_hero_section_css *******************************/

/******************************* Second_section_css *******************************/
.second_inner_content{
    display: flex;
    flex-direction: row;
    column-gap: 75px;
    justify-content: center;
    align-items: center;
}
.second_inner_img img{
    width: 100%;
}
.second_inner_list ul li{
    font-family: 'Montserrat-Regular';
    list-style-type: none;
    color: var(--white);
    font-size: 18px;
    margin-bottom: 18px;
}
.list_text{
    opacity: 0.8;
}
.second_inner_list ul li img{
    margin-right: 10px;
}
.get_started_btn{
    margin-top: 40px;
}
.get_started_btn a{
    font-family: 'DMSans_18pt-Bold';
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    font-size: 20px;
    background-color: var(--blue);
    padding: 4px 4px 4px 20px;
    border-radius: 10px;
    transition: all .5s;
}
.get_started_btn a:hover{
    background-color: var(--light_blue);
}
.get_started_btn a img{
    margin-left: 15px;
}
.second_inner_content{
    margin-bottom: 60px;
}
/******************************* end_Second_section_css *******************************/

/******************************* Third_section_css *******************************/
.third_section{
    background-color: var(--light_blue);
}
.third_section .common_title{
    max-width: fit-content;
    margin: auto;
}
/* .third_section .common_title h3{
    font-family: 'Inter-Regular';
} */
.testimonial_section{
    margin-top: 25px;
}   
.testimonial_box{
    background-color: #1C2132;
    padding: 25px 25px;
    border-radius: 20px;
    margin: 0 35px 0 0;
}
.rating{
    display: flex;
    align-items: center;
}
.rating .rating_star{
    width: 20px !important; 
    margin: 0 6px 0 0;
}
.testimonial_say p{
    font-family: 'Montserrat-Regular';
    padding: 18px 0;
    font-size: 15px;
    color: var(--white);
    opacity: 0.8;
    width: 100%;
    max-width: 340px;
    line-height: 24px;
}
.testimonial_bio{
    display: flex;
    flex-direction: row;
    align-items: center;
}
.testimonial_img img{
    width: 52px !important;
    height: 52px;
    border-radius: 100%;
}
.testimonial_bio_text h4{
    font-family: 'DMSans_18pt-Regular';
    color: var(--white);
    font-size: 18px;
    margin-bottom: 2.5px;
}
.testimonial_bio_text h5{
    font-family: 'DMSans_18pt-Regular';
    color: var(--white);
    opacity: 0.8;
    font-size: 17px;
    font-weight: 100;
}
.testimonial_bio_text{
    padding-left: 16px;
}
.testimonial_section .owl-theme .owl-nav.disabled+.owl-dots{
    margin-top: 27px;
}
.testimonial_section .owl-theme .owl-dots .owl-dot.active span{
    background-color: var(--blue);
}
.testimonial_section .owl-theme .owl-dots .owl-dot span{
    background-color: #1C385D;
}
.testimonial_button{
    text-align: center;
    margin-top: 25px;
}
.testimonial_button a{
    padding: 13px 30px;
}
.testimonial_button a:hover{
    background-color: var(--dark_blue);
}
/******************************* end_Third_section_css *******************************/


/******************************* Fourth_section_css *******************************/
.forth_section .common_title{
    max-width: fit-content;
    margin: auto;
}
/* .forth_section .common_title h3{
    font-family: 'Inter-Regular';
} */
 .forth_inner_content{
    margin-top: 40px;
    display: flex;
    flex-direction: row;
    column-gap: 50px;
 }
 .accordion {
    width: 100%;
    margin: 0 auto;
}
.accordion-header {
    font-family: 'DMSans_18pt-Bold';
    background: transparent;
    color: white;
    padding: 26px 24px;
    cursor: pointer;
    font-size: 20px;
}
.accordion-body {
    font-family: 'Montserrat-Regular';
    display: none;
    padding: 10px 26px 20px;
    background: transparent;
    color: var(--white);
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.8;
}

.accordion-item {
    margin-bottom: 25px;
    border: 1px solid #595C69;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 25px;
}
.accordion-item:last-child{
    margin-bottom: 0;
}
.chat_content{
    padding: 63px 44px 30px;
    border: 1px solid #595C69;
    border-radius: 10px;
    flex-grow: 1;
    flex-shrink: 0;
}
.chat_text{
    text-align: center;
}
.chat_text h3{
    color: var(--white);
    font-size: 23px;
    margin: 38px 0 20px 0;
}
.chat_text p{
    font-family: 'Montserrat-Regular';
    color: var(--white);
    opacity: 0.8;
    width: 100%;
    max-width: 282px;
    margin: auto;
    line-height: 1.5;
}
.chat_content .testimonial_button a{
    margin-top: 70px;
}
.chat_content .testimonial_button a:hover{
    background-color: var(--light_blue);
    display: inline-block;
}
/******************************* end_Fourth_section_css *******************************/

/******************************* Fifth_section_css *******************************/
.fifth_section_content .common_title{
    max-width: fit-content;
    text-align: center;
    width: 100%;
    max-width: 980px;
    margin: auto;
}
.fifth_section_content .common_title h3{
    font-family: 'DMSans_18pt-Medium';
    font-weight: 100;
}

.tab-container {
  color: white;
  max-width: 700px;
  margin: 30px auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  max-width: 525px;
  margin: 0 auto 30px;
  background-color: #0F1527;
  padding: 10px;
  border-radius: 15px;
}

.tab-btn {
  font-family: 'Inter-Bold';
  padding: 19px 65px;
  margin: 0 5px;
  border: none;
  color: white;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 22px;
  background-color: transparent;
}

.tab-btn.active {
  background: var(--blue);
}

.content-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 610px;
  margin: auto;
}

.left a img {
  margin-bottom: 25px;
  display: block;
}
.left a:last-child img{
    margin-bottom: 0;
}
.right img {
  width: 100px;
  height: 100px;
}

.right p {
  margin: 10px 0;
}
.tab-content{
    margin: 30px auto;
    width: 100%;
    max-width: 770px;
    background-color: #0F1426;
    padding: 40px 0px;
    border-radius: 15px;
}
.center{
    position: relative;
}
.center::after{
    content: "";
    top: 0;
    height: 100%;
    width: 1px;
    background-color: var(--white);
}
/******************************* end_Fifth_section_css *******************************/

/******************************* Footer_section_css *******************************/
.footer_section{
    padding: 50px 0;
    background-color: #0F1426;
}
.footer_box .footer_title{
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
}
.footer_menu{
    margin-top: 12px;
}
.footer_content{
    display: flex;
    justify-content: space-between;
}
.footer_menu a{
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    margin-bottom: 15px;
    transition: all .5s;
}
.footer_menu a:hover{
    color: var(--blue);
}
.social_icons{
    display: flex;
}
.social_icons a{
    margin: 0 10px 0 0;
}
.sub_footer{
    border-top: 1px solid #1C2B35;
    margin-top: 30px;
    padding-top:30px
}
.sub_footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.sub_footer h4{
    font-family: 'Inter-Regular';
    color: var(--white);
    font-weight: 100;
}
.terms_condition a{
    text-decoration: none;
    color: var(--white);
    margin: 0 0 0 20px;
    transition: all .5s;
}
.terms_condition a:hover{
    color: var(--blue);
}
/******************************* end_Footer_section_css *******************************/


/******************************* responsive *******************************/
@media (max-width: 1399.98px){
    .hero_content h3{
        font-size: 70px;
    }
    .hero_content p{
        font-size: 18px;
        margin: 15px auto 40px;
    }
    .platform_section img{
        width: 180px;
    }
    .header_section {
        padding: 20px 0;
    }
    .common_space {
        padding: 40px 0;
    }
    .second_inner_content {
        column-gap: 50px;
    }
    .common_title h3{
        font-size: 45px;
    }
    .common_title p{
        margin: 14px 0 20px;
    }
    .second_inner_content {
        margin-bottom: 40px;
    }
    .testimonial_box{
        margin: 0 30px 0 0;
        padding: 20px 20px;
        border-radius: 10px;
    }
    .forth_inner_content {
        margin-top: 30px;
    }
    .accordion-item{
        margin-bottom: 20px;
    }
    .accordion-header{
        padding: 22px 20px;
    }
    .accordion-body{
        padding: 10px 22px 20px;
    }
    .chat_content {
        padding: 28px 44px 30px;
    }
    .forth_inner_content {
        column-gap: 30px;
    }
    .tab-btn{
        padding: 16px 60px;
        font-size: 20px;
    }
    .tab-buttons {
        max-width: 480px;
    }
    .tab-content {
        margin: 20px auto;
        width: 100%;
        padding: 20px 0px;
        border-radius: 10px;
    }
    .left a img {
        margin-bottom: 12px;
    }
}
@media (max-width: 1199.98px){
    .hero_section {
        height: 80%;
    }
    .hero_content h3 {
        font-size: 60px;
        max-width: 700px;
    }
    .hero_content p {
        font-size: 18px;
        margin: 10px auto 30px;
    }
    .platform_section img {
        width: 160px;
    }
    .platform_section a {
        margin: 0 10px 0 0;
    }
    .header_section {
        padding: 14px 0;
    }
    .menu a{
        margin: 0 20px 0 0;
    }
    .header_button a{
        font-size: 16px;
        padding: 10px 22px;
        border-radius: 6px;
    }
    .common_space {
        padding: 30px 0;
    }
    .second_inner_content {
        column-gap: 30px;
        margin-bottom: 30px;
    }
    .common_title h3 {
        font-size: 40px;
    }
    .common_title p {
        margin: 10px 0 18px;
        font-size: 16px;
    }
    .second_inner_list ul li{
        font-size: 16px;
    }
    .get_started_btn a{
        font-size: 18px;
    }
    .testimonial_box {
        margin: 0 20px 0 0;
    }
    .tab-container {
        margin: 20px auto;
    }
    .tab-btn {
        padding: 14px 50px;
        font-size: 18px;
    }
    .tab-buttons {
        max-width: 420px;
    }
    .tab-content {
        margin: 10px auto;
        padding: 10px 0px;
    }
    .footer_section {
        padding: 30px 0;
    }
}

@media (max-width: 991.98px){
    .hero_section {
        height: 60%;
    }
    .hero_content h3 {
        font-size: 50px;
        max-width: 600px;
    }
    .hero_content p {
        font-size: 16px;
        margin: 10px auto 25px;
        max-width: 450px;
    }
    .platform_section img {
        width: 140px;
    }
    .header_section {
        padding: 12px 0;
    }
    .logo img{
        width: 150px;
    }
    .header_button a {
        padding: 8px 18px;
    }
    .second_inner_content{
        flex-direction: column;
        row-gap: 20px;
        margin-bottom: 20px;
    }
    .common_title h3 {
        font-size: 34px;
    }
    .common_space {
        padding: 20px 0;
    }
    .order{
        order: -1;
    }
    .testimonial_box {
        margin: 0 0 0 10px;
    }
    .testimonial_bio_text {
        padding-left: 10px;
    }
    .forth_inner_content{
        flex-direction: column;
        row-gap: 10px;
    }
    .accordion-header {
        padding: 18px 18px;
        font-size: 18px;
    }
    .accordion-body {
        padding: 0px 18px 15px;
    }
    .accordion-item {
        margin-bottom: 10px;
    }
    .chat_text h3 {
        font-size: 20px;
        margin: 18px 0 20px 0;
    }
    .chat_text p{
        max-width: 400px;
    }
    .chat_content .testimonial_button a {
        margin-top: 0px;
    }
    .left a img{
        width: 180px;
    }
    .qr_code{
        width: 140px;
    }
    .footer_box .footer_title {
        font-size: 16px;
    }
    .footer_menu a {
        font-size: 14px;
        margin-bottom: 12px;
    }
    .sub_footer {
        margin-top: 20px;
        padding-top: 20px;
    }
    .sub_footer h4{
        font-size: 14px;
    }
    .terms_condition a{
        font-size: 14px;
    }
}
@media (max-width: 575.98px){
    .hero_section {
        height: 50%;
    }
    .hero_content h3 {
        font-size: 35px;
        max-width: 400px;
    }
    .toggle_btn{
        display: inline-block;
    }
    .menu{
        position: fixed;
        top: 0;
        left: -100%;
        transition: all .5s;
        white-space: nowrap;
        width: 300px;
        background-color: var(--dark_blue);
        height: 100vh;
        padding-top: 50px;
    }
    .menu a{
        display: block;
        margin: 0;
        padding: 10px;
        border-bottom: 1px solid #232323;
    }
    .close_menu{
        display: inline-flex;
    }
    
    .common_title h3 {
        font-size: 26px;
    }
    .testimonial_box{
        margin: 0;
    }
    .forth_inner_content {
        margin-top: 20px;
    }
    .accordion-header {
        padding: 14px 14px;
        font-size: 16px;
    }
    .accordion-body {
        padding: 0px 14px 15px;
    }
    .chat_content {
        padding: 18px 44px 20px;
    }
    .tab-btn {
        padding: 14px 40px;
        font-size: 16px;
    }
    .tab-buttons {
        max-width: 350px;
        margin: 0 auto 10px;
    }
    .left a img {
        width: 150px;
    }
    .qr_code {
        width: 120px;
    }
    .content-box{
        max-width: 500px;
    }
    .footer_section {
        padding: 20px 0;
    }
    .footer_content{
        flex-wrap: wrap;
    }
    .footer_box{
        margin-bottom: 30px;
    }
    .sub_footer{
        flex-direction: column;
        margin-top: 0;
    }
    .terms_condition{
        margin-top: 10px;
    }
}
@media (max-width: 425.98px){
    .hero_content h3 {
        font-size: 30px;
        max-width: 300px;
    }
    .hero_content p {
        font-size: 14px;
        max-width: 400px;
    }
    .platform_section img {
        width: 120px;
    }
    .header_button a {
        font-size: 14px;
    }
    .get_started_btn {
        margin-top: 20px;
    }
    .left a img {
        width: 120px;
    }
    .qr_code {
        width: 80px;
    }
    .content-box {
        max-width: 320px;
    }
    .tab-btn {
        font-size: 13px;
    }
}
/******************************* end_responsive_css *******************************/
