 
 
 :root{
    --primary-font:'Josefin Sans', sans-serif;
    --secondary-font:'Roboto', sans-serif;
    --primary-color-light:#ffffff;
    --primary-color-dark:#151A32;
    --secondary-color-light:#daf8f9;
    --secondary-color-dark:#6C5BD9;
    
 }
/* Reset css start */
body{
    font-family: var( --primary-font);
}
p{
    font-family: var(--secondary-font);
}
h1,h2,h3,h4,h5,h6
p,
ul,ol,
span,
small{
    margin: 0;
    padding: 0;
}
ul,ol{
    list-style-type: none;
}
a,a:hover{
    text-decoration: none;
}
a{
    display: inline-block;
}
button{
    cursor: pointer;
}
input:focus{
    outline: 0;
}
.form-control:focus{
    box-shadow: none;
}
/* Reset css End */


#nav{
    padding: 12px 0;

}

.menu_class{
    position: fixed;
    top: 0;
    z-index: 999;
    width: 100%;
    background-color: var(--primary-color-light);
    transition: top 0.8s ease;
    transform: translateY(0);
}

#nav ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%;
}
#nav ul li a{
    padding: 0 14px;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color-dark);
    transition: .5s;
    font-family: gilroy, sans-serif;
}
#nav ul li a:hover{
    color: var(--secondary-color-dark);
}
#nav .nav_btn{
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    height: 100%;
}
#nav .nav_btn a{
    padding: 12px 22px;
    border-radius: 25px;
    font-size: 18px;
    font-family: var(--primary-font);
    border: 2px solid var(--primary-color-dark);
    color: var(--primary-color-dark);
    transition: .3s;
}
#nav .nav_btn a:hover{
    background-color: var(--secondary-color-dark);
    color: var(--primary-color-light);
    border-color: var(--secondary-color-dark);
}

.small_nav{
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.small_nav .open_btn{
    font-size: 25px;
    cursor: pointer;
}
/* responsive nav section start */
.responsive_nav{
    position: fixed;
    inset: 0;
    background-color: var(--primary-color-light);
    z-index: 999;
}
.responsive_nav .logo_section{
    position: relative;
    width: 100%;
    margin: auto;
}
.responsive_nav .logo_section .close_btn{
    position: absolute;
    right: 50px;
    top: 10px;
    font-size: 30px;
    color: var(--primary-color-dark);
    cursor: pointer;
    transition: .3s;
}
.responsive_nav .logo_section .close_btn:hover{
    color: var(--secondary-color-dark);
}
.responsive_nav ul{
    margin: 20px 0;
}
.responsive_nav ul li a{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color-dark);
    padding: 10px 0;
    transition: .3s;
}
.responsive_nav ul li a:hover{
    color: var(--secondary-color-dark);
}
.responsive_nav{
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    transform: translateY(-100%);
    transform-origin: top;
    transition: .5s;
}
.responsive_nav.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
/* responsive nav section end */


#hero_section{
    background: linear-gradient(var(--primary-color-light),var(--secondary-color-light), var(--primary-color-light));
    padding: 100px 0;

/* background:
  radial-gradient(circle at top left,    transparent 10%, rgb(21, 238, 68) 61%),
  radial-gradient(circle at top right,   transparent 30%, rgb(191, 57, 57) 10%),
  radial-gradient(circle at bottom left, transparent 30%, white 61%),
  radial-gradient(circle at bottom right,transparent 100%, rgb(29, 12, 12) 61%); */


}
#hero_section h1{
    text-align: center;
    font-size: 78px;
    font-weight: 600;
}
#hero_section h1 span{
    color: var(--secondary-color-dark);
}
#hero_section h4{
    font-size: 25px;
    font-weight: 400px;
    text-align: center;
    padding: 20px 0;
}
#hero_section .hero_btn{
    text-align: center;
    margin: 40px 0;
}
#hero_section .hero_btn a{
    color: var(--primary-color-light);
    background: var(--secondary-color-dark);
    font-size: 20px;
    font-weight: 400;
    padding: 12px 22px;
    border-radius: 25px;
    transition: .3s;
    animation-name: gradientMove;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    
}

@keyframes gradientMove {
  0%{
    background: var(--secondary-color-dark);
   }
  100%{ 
    background: #32c8dc;
  }
}
#hero_section .hero_btn a:hover{
    background: var(--secondary-color-dark);
}


.location_slide{
    border-radius: 20px;
    background-color: #B9DDF7;
    padding: 20px 0;
    margin-bottom: 50px;
}
.location_slide h2{
    font-size: 40px;
    text-align: center;
    padding: 20px 0;
}
.location_slide .country_logo img{
    width: 20px;
}
.location_slide .country_logo{
    display: flex;
    flex-wrap: wrap;
}
.location_slide .country_logo .country_logo_items{
    padding: 12px 22px;
    border-radius: 25px;
    background-color: var(--primary-color-light);
    max-width: fit-content;
    margin: 0 5px;
}
.location_slide .country_logo .country_logo_items span{
    color: var(--primary-color-dark);
    font-size: 18px;
    font-weight:500;
    padding-left: 10px;
}

.location_slide .country_logo .country_logo_items a img{
    display: inline-block;
}
.location_slide .country_logo_btn{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}
.location_slide .country_logo_btn a{
    font-size: 18px;
    font-weight: 600;
    background-color: var(--secondary-color-dark);
    color: var(--primary-color-light);
    padding: 20px 50px;
    border-radius: 35px;
    transition: .3s;
}
.location_slide .country_logo_btn a:hover{
    filter: opacity(60%);
}

.payment_slide{
    background-color: var(--secondary-color-light);
    padding: 40px;
} 
.payment_slide .payment_slide_info{
    padding: 60px;
}
.payment_slide .payment_slide_info h3{
    font-size: 40px;
    font-weight: 600;
    font-family: var(--primary-font);
    line-height: 40px;
}
.payment_slide .payment_slide_info h5{
    font-size: 30px;
    font-weight: 400;
    padding: 10px 0;
    font-family: var(--secondary-font);
}
.payment_slide .payment_slide_btn a{
    font-size: 18px;
    font-weight: 600;
    background-color: var(--secondary-color-dark);
    color: var(--primary-color-light);
    padding: 20px 50px;
    border-radius: 35px;
    transition: .3s;
    margin-top: 40px;
}
.payment_slide .payment_slide_btn a:hover{
    filter: opacity(60%);
}

.payment_slide .all_payment_slide .payment_slide_items{
    background-color: var(--primary-color-light);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    margin: 10px 0;
    border-radius: 10px;
}

.payment_slide .all_payment_slide .payment_slide_second{
   transform: rotate(180deg);
}
.payment_slide .all_payment_slide .payment_slide_second .payment_slide_items{
    transform: rotate(180deg);
}

#payment_gateway{
    padding: 60px 0;
    background: linear-gradient(var(--primary-color-light), var(--secondary-color-light),var(--primary-color-light));
}
#payment_gateway .gateway_btn{
    background-color: var(--secondary-color-dark);
    color: var(--primary-color-light);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 35px;
    width: fit-content;
    margin: auto;
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
}
#payment_gateway .gateway_btn .gateway_animation{
    width: 30px; 
    height: 30px;
    background-color: #8bd8d0;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    animation: gateway_circle 2s ease infinite;
}
@keyframes gateway_circle {
     from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#payment_gateway h3{
    font-size: 40px;
    font-weight: 600;
    font-family: var(--primary-font);
    margin: 30px 0;
    line-height: 45px;
    text-align: center;
    color: var(--primary-color-dark);
}
#payment_gateway h3 span{
    color: var(--secondary-color-dark);
    font-style: italic;
}
#payment_gateway .telegram_btn{
    margin: auto;
    width: fit-content;
    display: flex;

}

#payment_gateway .telegram_btn .icon{
    height: 100%;
    font-size: 70px;
    color: #75849A;
}
#payment_gateway .telegram_btn .info{
padding-top: 20px;
}
#payment_gateway .telegram_btn .info span{
    font-size: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #75849A;
    
}




#online_payment{
    /* padding: 30px 0; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#online_payment h3{
    font-size: 30px;
    font-weight: 600;
    font-family: var(--primary-font);
}
#online_payment p{
    font-size: 18px;
    padding: 20px 0;
}
#online_payment .online_payment_btn a{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color-light);
    padding: 12px 20px;
    border-radius: 25px;
    background-color: var(--secondary-color-dark);
}
#online_payment .online_payment_btn a:hover{
     filter: brightness(0.8);
}
#online_payment .online_payment_animate{
    background-color: var(--secondary-color-light);
    border-radius: 50%;
    height: 450px;
    width: 450px;
}
#online_payment .online_payment_animate .animate_items{
    background-color: var(--primary-color-dark);
    display: inline-block;
    padding: 8px 10px;
    border-radius: 20px;
    position: absolute;
}
#online_payment .online_payment_animate .animate_items:nth-child(1){
    top: 50%;
    right: 50%;
    transform: rotate(10deg);
}
#online_payment .online_payment_animate .animate_items:nth-child(2){
    top: 40%;
    right: 40%;
}
#online_payment .online_payment_animate .animate_items:nth-child(3){
    top: 30%;
    right: 30%;
}
#online_payment .online_payment_animate .animate_items:nth-child(4){
    top: 18%;
    right: 50%;
    transform: rotate(-45deg);
}
#online_payment .online_payment_animate .animate_items:nth-child(5){
    top: 60%;
    right: 40%;
}
#online_payment .online_payment_animate .animate_items:nth-child(6){
    top: 50%;
    right: 30%;
}
#online_payment .online_payment_animate .animate_items:nth-child(7){
    top: 70%;
    right: 50%;
}
#online_payment .online_payment_animate .animate_items:nth-child(8){
    top: 55%;
    right: 10%;
    transform: rotate(45deg);
}
#online_payment .online_payment_animate .animate_items:nth-child(9){
    top: 40%;
    right: 20%;
    transform: rotate(30deg);
}
#online_payment .online_payment_animate .animate_items:nth-child(10){
    top: 30%;
    right: 60%;
    transform: rotate(20deg);
}

#online_payment .online_payment_animate .animate_items span{
    display: inline;
    font-size: 18px;
    color: var(--secondary-color-light);
    padding-right: 4px;
}
#online_payment .online_payment_animate .animate_items p{
    display: inline;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color-light);
}



#Payment_Services{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 60px 0;
}
#Payment_Services  h3{
    font-size: 40px;
    font-weight: 600;
    font-family: var(--primary-font);
}
#Payment_Services  p{
    font-size: 20px;
    padding: 20px 0;
}
#Payment_Services  .online_payment_btn a{
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color-light);
    padding: 12px 20px;
    border-radius: 25px;
    background-color: var(--secondary-color-dark);
}

#Payment_Services .online_payment_btn a:hover{
    filter: brightness(0.8);
}
#Payment_Services .Payment_Services_slide{
    background-color: var(--secondary-color-light);
    overflow: hidden;
    border-radius: 100px;
    padding: 50px 0;
}
#Payment_Services .Payment_Services_slide .Payment_Services_slide_all{
    transform: rotate(-20deg) scale(1.1);
}
#Payment_Services .Payment_Services_slide .Payment_Services_slide_second{
    transform: rotate(180deg);
}
#Payment_Services .Payment_Services_slide .Payment_Services_slide_second .Payment_Services_items{
    transform: rotate(180deg);
}
#Payment_Services .Payment_Services_slide .Payment_Services_items{
    background-color: var(--primary-color-dark);
    padding: 7px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 7px 10px;
    border-radius: 10px;
}
#Payment_Services .Payment_Services_slide .Payment_Services_items img{
    height: 40px;
}


/* payment_progress css start */
.payment_platform{
    background-image: url("/assets/image/payment_gateway.png");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    height: 500px;
    padding: 50px;
    border-radius: 30px;
} 
.payment_platform .title h2{
    font-size: 30px;
    font-family: var(--primary-font);
}
.payment_platform .content .left{
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
}
.payment_platform .content .left .first p{
    font-size: 14px;
}
.payment_platform .content .left .first h2{
    line-height: 30px;
    font-size: 50px;
    color: var(--secondary-color-dark);
}
.payment_platform .content .left .second{
    width: 300px;
    margin-left: 30px;
    padding-top: 15px;
    font-size: 18px;
    line-height: 25px;
}
.payment_platform .right .feature span{
    background-color: var(--primary-color-light);
    color: var(--primary-color-dark);
    padding: 10px;
    border-radius: 10px;
    font-size: 16px;
}
.payment_platform .right .feature{
    margin: 20px 0;
}
.payment_platform .right{
    margin-top: 20px;
    transform: translateX(-30px) translateY(30px);
}
.payment_platform .content{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.payment_platform .last_title {
    margin-top: 110px;
    font-size: 14px;
}

/* payment_progress css End */
/* Integrate css start */
#Integrate{
    padding: 50px 0;
    /* margin: 0 -30px; */
}
#Integrate .Integrate_slide_items{
    border-radius: 20px;
    margin: 0 10px;
}
#Integrate .Integrate_slide_items img{
    border-radius: 30px;
}

#Integrate{
    position: relative;
}
#Integrate .Integrate_slide .Integrate_slider_arrow.fa-long-arrow-right{
    font-size: 20px;
    position: absolute;
    color: var(--primary-color-dark);
    top: -50px;
    right: 50px;
    cursor: pointer;
    z-index: 999;
    transition: .4s;
}
#Integrate .Integrate_slide .Integrate_slider_arrow.fa-long-arrow-left{
    color: var(--primary-color-dark);
    position: absolute;
    top: -50px;
    right: 100px;
    z-index: 999;
    font-size: 20px;
    cursor: pointer;
    transition: .4s;
}
#Integrate .Integrate_slide .Integrate_slider_arrow.fa-long-arrow-left:hover,
#Integrate .Integrate_slide .Integrate_slider_arrow.fa-long-arrow-right:hover{
    color: var(--secondary-color-dark);
}
#Integrate .small_head span{
    display: inline-block;
    font-size: 12px;
    background-color: rgba(232, 232, 232, 0.595);
    padding: 8px 10px;
    border-radius: 20px;
    text-transform: uppercase;
}
#Integrate .small_head{
    margin: 20px;
}

#Integrate .big_head{
    margin: 20px;
}
#Integrate .big_head h2{
    color: var(--primary-color-dark);
    font-family: var(--primary-font);
    font-size: 30px;
    line-height: 35px;
    font-weight: 600;
}
/* Integrate css End */
/* contact css start  */
#contact{
    margin: 60px 0;
}
#contact .contact_info h3{
    font-size: 40px;
    font-weight: 600;
}
#contact .contact_info p{
    font-size: 20px;
    font-weight: 400;
    padding: 20px 0;
}
#contact .contact_info .detials{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 50px;
}
#contact .contact_info .detials span{
    font-size: 25px;
    display: inline-block;
}
#contact .contact_info .detials p{
    display: inline-block;
    font-size: 14px;
    padding: 10px 0 0 5px;
}
#contact .contact_info .socials{
    margin: 20px 0;
}
#contact .contact_info .socials a span{
    display: inline-block;
    font-size: 30px;
    color: var(--primary-color-dark);
    padding: 5px 0;
}
#contact .contact_info .socials a p{
    display: inline-block;
    font-size: 18px;
    color: var(--primary-color-dark);
    padding: 0 0 0 7px;
}
#contact .contact_input form label{
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color-dark);
}
#contact .contact_input form input{
    width: 250px;
}
#contact .contact_input form textarea{
    width: 100%;
}
#contact .contact_input form input,
#contact .contact_input form textarea{
    background-color: #F1F3FC;
    padding: 20px;
    border-radius: 20px;
    border: none;
    margin: 5px 0;
}
#contact .contact_input form .input_box{
    margin: 10px;
}
#contact .contact_input form button{
    font-size: 20px;
    padding: 12px ;
    border-radius: 25px;
    width: 100%;
    background-color: var(--secondary-color-dark);
    color: var(--primary-color-light);
    border: transparent;
    margin: 30px 0;
    font-weight: 600;
    transition: .3s;
}
#contact .contact_input form button:hover{
    background-color: #7faff3;
}

/* contact css End */
/* footer css start */
#footer{
    padding-bottom: 30px;
}
#footer h2{
    font-size: 40px;
    font-weight: 600;
}
#footer .social_media{
    margin: 20px 0;
}
#footer .social_media span{
    font-size: 30px;
}
#footer .social_media span a{
    color: var(--primary-color-dark);
    transition: .3s;
    padding: 0 5px;
}
#footer .social_media span a:hover{
    transform: scale(1.3);
}
#footer .all_link{
    margin: 60px auto;
}
#footer .all_link a{
    font-size: 18px;
    color: var(--primary-color-dark);
    padding: 0 10px;
    text-transform: uppercase;
    transition: .4s;
}
#footer .all_link a:hover{
    color: var(--secondary-color-dark);
}
#footer .footer_logo img{
    width: 150px;
}
#footer .Explore_social{
    display: flex;
    justify-content: space-between;
}
@media(min-width:320px) and (max-width:800px){
    #footer .Explore_social{
        display: block;
    }
}
#footer .Explore_social{
    margin: 50px 0;
}
#footer .Explore_social .Explore h3{
    font-size: 35px;
    text-transform: uppercase;
    color: var(--primary-color-dark);
}

#footer .Explore_social .Explore h3 a{
    color: var(--primary-color-dark);
    text-decoration: underline;
    transition: .3s;
}
#footer .Explore_social .Explore h3 a:hover{
    color: var(--secondary-color-dark);
}
/* footer css End */
/* scroll_btn start========================================================== */
  body{
    position: relative;
  }
#scroll_btn{
  background-color: var(--primary-color-dark);
  color: var(--primary-color-light);
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  border-radius: 50%;
  bottom: 600px;
  opacity: 0;
  visibility: hidden;
  right: 50px;
  cursor: pointer;
  transition: .6s ease;
}
#scroll_btn.active{
  bottom: 60px;
  opacity: 1;
  visibility: visible;
}

#scroll_btn i{
  width: 45px;
  height: 45px;
  font-size: 20px;
  line-height: 50px;
  text-align: center;
  border-radius: 50%;
  transition: .4s;
}
  /* scroll_btn End */

/* ============================about css start========================= */
.navigation{
    padding: 10px 0;
}
.navigation a{
    font-size: 20px;
    font-weight: 400;
    color: var(--primary-color-dark);
}
.navigation span{
    font-size: 20px;
    padding: 0 5px;
}
#about_us{
    background: linear-gradient(var(--primary-color-light), var(--secondary-color-light), var(--primary-color-light));
    padding: 40px 0;
}
#about_us .hero_info h1{
    font-size: 50px;
    font-weight: 600;
    color: var(--primary-color-dark);
}
#about_us .hero_info p{
    font-size: 20px;
    line-height: 30px;
    padding-right: 50px;
}

#about_us .hero_info a{
    display: inline-block;
    font-size: 20px;
    font-weight: 600;
    padding: 18px 38px;
    border-radius: 25px;
    background-color: var(--secondary-color-dark);
    color: var(--primary-color-light);
    transition: .3s;
    margin: 20px 0;
}
#about_us .hero_info a:hover{
    filter: brightness(0.9);
}


#Paykassma h2{
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color-dark);
    font-family: var(--primary-font);
    text-align: center;
}
#Paykassma h2 span{
    color: var(--secondary-color-dark);
}

#Paykassma h3{
    text-align: center;
}
#Paykassma p{
    text-align: center;
    font-size: 18px;
    padding: 18px 0;
}
#Paykassma .items1{
    background-color: var(--secondary-color-light);
    margin: 20px;
    width: 45%;
    padding: 30px;
}
#Paykassma .items2{
    background-color: #c5e6f6;
    margin: 20px;
    width: 45%;
    padding: 30px;

}
#Paykassma .items1 .icon,
#Paykassma .items2 .icon{
    font-size: 30px;
    text-align: center;
    padding: 10px 0;
}
#Paykassma .items1 .h3,
#Paykassma .items2 .h3{
        font-size: 40px;
        font-weight: 600;
        text-align: center;
}
#Paykassma .items1,
#Paykassma .items2{
    border-radius: 25px;
}

#mission .mission_btn{
    background-color: var(--secondary-color-dark);
    color: var(--primary-color-light);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 35px;
    width: fit-content;
    margin: auto;
    font-style: italic;
    font-size: 20px;
    font-weight: 400;
    text-transform: uppercase;
}
#mission .mission_btn .mission_animation{
    width: 30px; 
    height: 30px;
    background-color: #8bd8d0;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    animation: mission_circle 2s ease infinite;
}
@keyframes mission_circle {
     from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#mission{
    padding: 120px 0;
    background: rgba(218, 248, 249, 0.3);
    /* background: var(--secondary-color-light); */
}
#mission .detials{
    font-size: 20px;
    text-align: center;
    padding: 20px;
}
#Industries{
    padding: 30px 0;
}
#Industries h2{
    font-size: 50px;
    font-weight: 600;
    font-family:var(--primary-font);
    text-align: center;
}
#Industries h2 span{
    color: var(--secondary-color-dark);
}
#Industries p{
    font-size: 20px;
    text-align: center;
    padding: 30px 0;
}

#Industries .industies_container .items{
    max-width: fit-content;
    font-size: 30px;
    font-weight: 600;
    padding: 10px 25px;
    color: var(--primary-color-light);
    background-color: var(--primary-color-dark);
    margin: 0 10px;
    border-radius: 20px;
}
#customer{
    padding: 90px 0;
    background: linear-gradient(var(--secondary-color-light), var(--primary-color-light),var(--secondary-color-light),var(--secondary-color-light));
    border-radius: 20px;
    margin: 80px 0;
}
#customer h2{
    font-size: 40px;
    font-weight: 600;
    text-align: center;

}
#customer .star{
    font-size: 30px;
    text-align: center;
    padding: 10px 0;
}
#customer p{
    text-align: center;
    font-size: 16px;
}
#customer .customer_img_container .shap{
    background-color: var(--secondary-color-dark);
    width: 100px;
    height: 40px;
    border-radius: 25px;
    transform: translateY(20px);
}
#customer .customer_img_container{
    padding: 0 100px;
    text-align: center;
}
#customer .customer_img_container .customer_items{
    display: inline-block;
    padding: 0 20px;
}
.Gateway_Integration{
    background-color: var(--secondary-color-dark);
    background-image: url("/assets/image/about/Gateway.png");
    background-repeat: no-repeat;
    background-position: right;
    padding: 80px;
    border-radius: 20px;
}
.Gateway_Integration h2{
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color-light);
}
.Gateway_Integration p{
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color-light);
    padding: 30px 450px 30px 0;
}
/* ============================about css End========================= */