
body {
  font-family: sans-serif;
  color: #444444;
  overflow-x: hidden;
}
.mt-6{
  margin-top: 6% !important;
}
.mt-5{
  margin-top: 5% !important;
}
.mb-5{
  margin-bottom: 5% !important;
}
a {
  text-decoration: none;
  color: #222222;
}

a:hover {
  color: #dd4B39;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:  sans-serif;

}

::-webkit-scrollbar {
  width: 7px;
}


::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 5px;
}


::-webkit-scrollbar-thumb {
  background: #dd4B39;
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 8px;
  z-index: 996;
  background: #dd4B39;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}


.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #dd4B39;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #fbfbfb;
  font-size: 15px;
  height: 40px;
  padding: 0;
}

#topbar .contact-info a {
  line-height: 0;
  color: #444444;
  transition: 0.3s;
}

#topbar .contact-info a:hover {
  color: #dd4B39;
}

#topbar .contact-info i {
  color: #dd4B39;
  line-height: 0;
  margin-right: 5px;
}

#topbar .contact-info .phone-icon {
  margin-left: 15px;
}

#topbar .social-links a {
  color: #6f6f6f;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  transition: 0.3s;
}

#topbar .social-links a:hover {
  color: #dd4B39;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  height: 70px;
}


#header.header-scrolled {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

#header .logo a {
  color: #dd4B39;
}

#header .logo img {
  max-height: 40px;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #dd4B39;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  color: #dd4B39;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid #dd4B39;
  transition: 0.3s;
  font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #dd4B39;
  color: #fff;
}


.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #dd4B39;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}




/**
* Mobile Navigation
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}



.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #dd4B39;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #dd4B39;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 70vh;
  background-color: rgba(9, 9, 9, 0.8);
  overflow: hidden;
  position: relative;
}

#hero .carousel,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-item::before {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#hero .carousel-item::before {
  content: "";
  /* background-color: rgba(45, 103, 60, 0.8); */
}

#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  top: 0;
  left: 50px;
  right: 50px;
}

#hero .container {
  text-align: center;
}

#hero h2 {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}

#hero p {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}

#hero .carousel-inner .carousel-item {
  transition-property: opacity;
  background-position: center top;
}

#hero .carousel-inner .carousel-item,
#hero .carousel-inner .active.carousel-item-start,
#hero .carousel-inner .active.carousel-item-end {
  opacity: 0;
}

#hero .carousel-inner .active,
#hero .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}

#hero .carousel-control-next-icon,
#hero .carousel-control-prev-icon {
  background: none;
  font-size: 30px;
  line-height: 0;
  width: auto;
  height: auto;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  transition: 0.3s;
  color: rgba(255, 255, 255, 0.5);
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .carousel-control-next-icon:hover,
#hero .carousel-control-prev-icon:hover {
  background: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}
/*
#hero .carousel-indicators li {
  cursor: pointer;
  background: #fff;
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

#hero .carousel-indicators li.active {
  opacity: 1;
  background: #dd4B39;
} */

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 13px;
  border-radius: 4px;
  transition: 0.5s;
  line-height: 1;
  color: #fff;
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
  background: #dd4B39;
}

#hero .btn-get-started:hover {
  background: #dd4B39;
}



/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f8fcf9;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}


.section-title p {
  margin-bottom: 0;
  font-size: 14px;
  color: #919191;
}

/*--------------------------------------------------------------
# Featured Services
--------------------------------------------------------------*/
.featured-services {
  padding: 20px 0;
}

.featured-services .icon-box {
  padding: 20px;
}

.featured-services .icon-box-bg {
  background-image: linear-gradient(0deg, #222222 0%, #2f2f2f 50%, #222222 100%);
}

.featured-services .icon {
  margin-bottom: 15px;
}

.featured-services .icon i {
  color: #dd4B39;
  font-size: 42px;
}

.featured-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.featured-services .title a {
  color: #222222;
  transition: 0.3s;
}

.featured-services .icon-box:hover .title a {
  color: #dd4B39;
}

.featured-services .description {
  line-height: 24px;
  font-size: 14px;
}

/*--------------------------------------------------------------
# About Us
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #dd4B39;
}

.about .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us {
  padding: 0;
}

.why-us .row {
  overflow: hidden;
}

.why-us .content-item {
  padding: 40px;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: -1px;
}

.why-us .content-item span {
  display: block;
  font-size: 24px;
  font-weight: 400;
  color: #6ec083;
}

.why-us .content-item h4 {
  font-size: 26px;
  font-weight: 300;
  padding: 0;
  margin: 20px 0;
}

.why-us .content-item p {
  color: #aaaaaa;
  font-size: 15px;
  margin: 0;
  padding: 0;
}



/*--------------------------------------------------------------
# Our Clients
--------------------------------------------------------------*/
.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
}

.clients .swiper-slide img:hover {
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #dd4B39;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #dd4B39;
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  text-align: center;
  padding: 70px 20px 80px 20px;
  transition: all ease-in-out 0.3s;

}
.icon-box.cc-payments {
  padding: 4%;
}
.icon-box2.cc-payments {
  padding: 4% ;
}
.icon-box6.cc-payments {
  padding: 12% !important;
}

.icon-box6 .icon2{
  display: flex;
  justify-content: center;
}
.icon-box.cc-payments1 {
  padding: 0%;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: #dd4B39;
  padding: 80px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 4px;
}

.cta .cta-btn:hover {
  background: #fff;
  color: #dd4B39;
}



/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(34, 34, 34, 0.07);
  padding: 30px 20px;
  background: #fff;
}

.team .member img {
  max-width: 60%;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.team .member .social {
  margin-top: 15px;
}

.team .member .social a {
  color: #919191;
  transition: 0.3s;
}

.team .member .social a:hover {
  color: #dd4B39;
}

.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  border-top: 3px solid #dd4B39;
  border-bottom: 3px solid #dd4B39;
  padding: 30px;
  background: #fff;
  width: 100%;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.contact .info i {
  font-size: 20px;
  color: #dd4B39;
  float: left;
  width: 44px;
  height: 44px;
  background: #eaf6ed;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #222222;
}

.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #555555;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}


@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: #fbfbfb;
  min-height: 40px;
}



.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 600;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3c3c3c;
  content: "/";
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/


#footer {
  font-size: 14px;
  background: #444444;


}
.text1{
  color: black;
  margin-top: 15px;
  font-size: 16px;
}
.text11{
  color: #fff;
  margin-top: 15px;
  font-size: 0.9rm;
}



#footer .footer-top {
  padding: 60px 0 30px 0;
  background:#efdddb;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 28px;
  margin: 0 0 10px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 600;
  color: #dd4B39;
}



#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #dd4B39;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #dd4B39;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: black;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
  font-weight: bold;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #dd4B39;
}

#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #dd4B39;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
.threads img {
  width: 40%;
  margin-top: -6px;
}

#footer .footer-top .social-links a:hover {
  background: #dd4B39;
  color: #fff;
  text-decoration: none;
}

#footer .footer-bottom {

  color: #fff;
}




.copyright img{
  width: 8%;
  margin-top: -10px;
  margin-bottom: 20px;

}
.img-responsive {
  float: right;

}

.copyright P{
  text-align: center;
  margin-bottom: 0px;
}

.career, .business{
  display: none !important;
}
.abt{
  font-size: 24px;
  padding-top: 25px;
  margin-bottom: 20px;
}
.b2b{

  font-weight: 500;
  font-size: 14px;
}
.ceo1{
  text-align: center;
  font-size: 35px;
  font-weight: bold;
  color: #db4b39;
}
.ceo2{
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}
ol{
  text-align: justify;
}
.texts{
  color: #000;
  line-height: 1.5;
  text-align: justify;
}
.texts1{
  line-height: 1.5;
  text-align: justify;

}
.text-bold{
  font-weight: bold;
}
.miss{
  background-color: #e4e4e470;
    border-radius: 100px;
    padding: 35px 35px;
    box-shadow: 0px 4px 5px 5px #e3e3e3;
}
.miss h3{
  font-weight: bold;
}

.title{
  text-align: left;
  margin-top: -90px;
}
#more{
  margin-top: 100px;
margin-left: -80%;
}
#more1{
background-color: #fff;
    border-radius: 10px;
    padding: 8px 18px 8px 18px;
}
p{
  text-align: justify;
}
#more2{
  background-color:#dd4B39;
  border-radius: 10px;
  padding: 8px 18px 8px 18px;

      color: #fff;
  }
  #more4{
    border: none;
    background-color: #dd4B39;
    margin-left: 45%;
    padding: 7px;
    border-radius: 10px;
    color: #FFF;
    }
 .line{
  border-bottom:5px solid #fff;
   width: 35%;
 }
 .line1{
  border-bottom:5px solid #dd4B39;
   width: 35%;
 }
 .line2{
  border-bottom:5px solid #fff;
   width: 20%;
 }
 .line3{
  border-bottom:5px solid #dd4B39;
   width: 35%;
 }
 .line4{
  border-bottom: 3px solid #dd4B39;
  width: 4%;
  margin-left: 39%;
  margin-top: -33px;
 }
 .line5{
  border-bottom: 3px solid #dd4B39;
  width: 4%;
  margin-left: 43%;
 }
 .line6{
  border-bottom:5px solid #dd4B39;
  width: 16%;
  margin-top: -33px;
  margin-left: 42%;
 }

 .line7{
  border-bottom: 3px solid #dd4B39;
  width: 4%;
  margin-top: -33px;
  margin-left: 41%;
 }
 .line8{
  border-bottom: 3px solid #db4b39;
  width: 4%;
  margin-left: 40%;

 }
 /* .line9{
  border-bottom: 3px solid #dd4B39;
  width: 4%;
  margin-left: 14%;
 } */
 .line10{
  border-bottom: 3px solid #db4b39;
  width: 4%;
  margin-left: 39%;
 }
 .line11{
  border-bottom: 3px solid #db4b39;
  width: 4%;
  margin-left: 41%;
 }
 .line12{
  border-bottom: 3px solid #db4b39;
  width: 4%;
  margin-left: 40%;
  margin-top: -39px;
 }


 #icon1{
  border-radius: 16px;


 }

 .icon1 img{
  width: 40% ;
 }


 .icon2 img{
width: 69%;

 }
 .icon3{
  display: flex;
  justify-content: center;

 }
 .services .icon-box5{
  padding: 64px 20px 107px 20px;
  text-align: center;
  transition: all ease-in-out 0.3s;
 }
 .services .icon-box2{
  padding: 64px 20px 63px 20px;
  text-align: center;
    transition: all ease-in-out 0.3s;
 }
 .services .icon-box1{
  padding: 23px 20px 28px 20px;
  text-align: center;
   transition: all ease-in-out 0.3s;
 }
 .icon4 {

  width: 65%;
 }
 .icon4 img{

  width: 100%;
 }
 h3{
  text-align: center;
 }
 #more3{
  background-color: #FFF;
  border-radius: 11px;
  padding: 7px;
  color: #dd4B39;
  /* margin-left: 30%; */
 }
 .store .store1{
  float: right;
  width: 17%;
  /* margin-top: 7px; */
 }
 .store .store2{
  float: right;
  width: 20%;

 }


 #shukran{
  text-align: center;
 }
 .info{
  text-align: center;
 }

 .names1 h3{
  margin-left: 70px;
 }



 .our {
  display: none;
 }
#contt {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * .5);
  padding-left: calc(var(--bs-gutter-x) * .5);
  margin-right: auto;
  margin-left: auto;
}
.PAYZIGOMERCHANT {

  display: flex;
  align-items: center;
  justify-content: center;
}
.PAYZIGOMERCHANT, .bans{
  width: 100%;
}
.phone {
  height:7vh;
  width:20%;padding: 6px;
  margin-top:10px;
}
.getin {
  margin-top: 20px;
}
.php-email-form {
  width: 100%;
}
.PRODUCTS {
  display: flex;
  align-items: center;
  justify-content: center;
}
.PRODUCTS video {
  width: 61%;
  border: none !important;
}
.Mission {
  position: absolute;
    /* top: 0; */
    top: 45%;
    left: 35%;
    font-size: 26px;
}
.Vision {
  position: absolute;
    /* top: 0; */
    top: 45%;
    left: 54%;
    font-size: 26px;
}
.contents1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}
.contents1 img {
  width: 50%;
}

#myVideo{
  width: 50%;
}



.services .icon-box3 {
  text-align: center;
  padding: 37px 14px 22px 9px;
  transition: all ease-in-out 0.3s;
  background-color: #d4a09a5c;
  border-radius: 10px;
}

.icon-box3 p{
  padding: 2px 4px;
  font-size: 0.8rem;
}


/* #preloader {

  background: rgba(0,0,0,0.6) !important;
padding: 0;
 margin: 0;
 height: 100%;
  position: fixed;
z-index: 99999;
 width: 100%;
display: flex;
align-items: center;
 justify-content: center;
 top: 0px;
  left: 10px;
} */

.icon-box3{
  background-color: #d4a09a5c;
  border-radius: 10px;
  padding: 5%;
}
.payment-services p{
font-size: 0.8rem !important;
}

.inerimg img{
  width: 50%;
}


@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}
@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}


@media screen and (max-width: 767px) {
  .img-fluid ,.img-responsive{
    Width:100% !important;
    margin-left:0px !important;
  }

    /* .b2b
    {
      text-align: center;
    } */
    /* #more3 {
      background-color: #FFF;
      border-radius: 13px;
      padding: 5px;
      color: #dd4B39;
      margin-left: 0%;
  } */
  .b2bimg
  {
    height: 23vh !important;
  }
  .MERCHANT {
    flex-direction: column-reverse;
  }
  .footer-contact img {
    width: 45% !important;
  }
  #footer .footer-top {
    padding: 19px 0 30px 0;
    /* background: #444444; */
}
.PAYZIGOMERCHANT {
  /* height: 38vh !important; */
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
    background-size: cover;

}

.fff {
  height: 38vh !important;
  background-position: center;
    background-size: cover;
    display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.PAYZIGOMERCHANT p {
  font-size: 20px !important ;
}
.icon1 img {
  height: auto !important;
}
.b2c {
  display: none;
}
.scrolled-offset {
  margin-top: 19px;
}
section {
  padding: 60px 0px 15px 0px !important;
}
.breadcrumbs {
  margin-top: 0px ;
}
.phone{
  width:50px !important;
  height: 50px !important;
}
.CONTACT {
  display:none ;
}
.contact {
  padding: 0px 0px 15px 0px !important;

}
#more4 {
  border: 2px;
  background-color: #dd4B39;
  margin-left: 35%;
  color: #FFF;
  margin-top: 12px;
}
.PRODUCTS video {
  width: 103% !important;
  border: none !important;
}
.contents1 {
  flex-direction: column;
}
.contents1 img {
  width: 100% !important;
}
.Mission {
  position: absolute;
  /* top: 0; */
  top: 48% !important;
  left: 19% !important;
  font-size: 16px !important;
}
.Vision {
  position: absolute;
  /* top: 0; */
  top: 48% !important;
  left: 59% !important;
  font-size: 16px !important;
}
.our {
  display: block !important;
}

}
@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
  .why-us .content-item {
    padding: 40px 0;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  #hero h2 {
    font-size: 28px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
  .copyright img {
    width: 16%;
    margin-top: -15px;
    margin-bottom: 15px;
}
}

@media (max-width: 1024px) {
  .cta {
    background-attachment: scroll;
  }
}

@media (min-width: 769px) {
  .cta .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

@media (max-width: 992px) {
  /* .breadcrumbs {
    margin-top: 66px;
  } */

  #hero {
    height: 100vh;
  }

  #hero .carousel-container {
    top: 66px;
  }
  .navbar-mobile ul {
    display: block;
}
}


@media (min-width: 1024px) {

  #hero .carousel-control-prev,
  #hero .carousel-control-next {
    width: 5%;
  }
}

@media (max-height: 500px) {
  #hero {
    height: 120vh;
  }




}


@media (max-width:500px){
  .copyright img {
    width: 30%;
    margin-top: -15px;
    margin-bottom: 15px;

}
.copyright p{
  font-size: 11px;
}
.miss {

  margin-top: 25px;
}
.abt {
  font-size: 23px;
}

.payments{
  margin-bottom: 10px;
}

.store{
  margin-bottom: 23px;
}

.store .store1 {
  float: right;
  width: 18%;
  /* margin-top: 2px; */
}


.b2, h6{


color: #fff;
font-size: 21px;
text-align: center;
padding: 2px;
margin-top: 9px;
}

}

.slide-right {
  width: 100%;
  overflow: hidden;
  max-width: 500px
}

.slide-right h2 {
  animation: 2s slide-right;
  animation-delay: 2s;
}

@keyframes slide-right {
   from {
      margin-left: -500px;
   }

   to {
      margin-left: 0%;
   }
}

.services-cards{
  background-color: #d4a09a5c;
  border-radius: 10px;
}
.services-cards1{
  background-color: #d4a09a5c;
  margin-top: -24px;
  border-radius: 10px;
}

.services-cards2{
  background-color: #d4a09a5c;
  margin-top: -24px;
margin-top: -24px;
border-radius: 10px;
}
.ceo-img-div{
  overflow: hidden;
  float: right !important;
  display: flex;
  flex-direction: row-reverse;
}

.contsimg{
  margin-bottom: 25px;
}
/* .vision-card{
   padding: 0px 10px 25px 10px;
   background: #f0eceb;
  border-radius: 140px;
  margin-top: 40%;
} */
.vision-text{
  padding: 0px 10px 25px 10px;
  margin-top: -56%;
    /* margin-bottom: 23%; */
}
.mision-text{
  padding: 0px 10px 25px 10px;
  margin-top: 85%;
   margin-bottom: 23%;
   /* margin-left: -31px; */
}
.vision-text p{
  font-size: 12px !important;
}
.mision-text p {
  font-size: 12px !important;
}
.vision-img img{
  width: 7%;
  position: absolute;
  top: 137%;
  left: 13%;
  margin-bottom: 0%;
}

.mision-img img{
  width: 7%;
  position: absolute;
  top: 137%;
  left: 31%;
  margin-bottom: 0%;
}

.vision-img:after {
  content: "";
  background-color: #eeeeee;
  height: 36vh;
  width: 4px;
  display: flex;
  margin-left: 107%;
  margin-top: 55px;
}
.offset-md-2{
  margin-left: 12px;
}
.vision-container{
  margin-top: 10%;
  background-image: url('/assets/img/vissss.jpg');
  background-repeat: no-repeat;
  background-position: 10;
}

.vision-container p{
  font-size: 13px;
}
.vision-container img{
  width: 50%;
}

#cont {
  gap: 50px;
  margin-left: 60px;
}
#em {
  background-color: #f3f3f3a1;
  border-radius: 15px;
  text-align: center;
  width: 25%;
  box-shadow: 2px 2px 2px 2px #e3e3e3;
}
.mt-4 {
  margin-top: 1.5rem!important;
  display: flex;
  gap: 20px;
}


.bxx {
/* font-size: 50px; */
display: flex;
align-items: center;
justify-content: center;
}
.bxx img{
  width: 50%;
}
.bxx i{
  font-size: 30px;
  background-color: #596b9b1c;
  border-radius: 10px;
padding: 10px;
margin-left: 12%;

}

.contactus-container h3{
font-size: 0.8rem !important;
font-weight: bold;
}
.contactus-container .info-box{
  background-color: #efdddb57;
  border-radius: 15px;
  text-align: center;
  padding: 1%;
  width: 25%;
  box-shadow: 2px 2px 2px 2px #e3e3e3;
}
.contactus-container .info-box-b2c{
  background-color: #efdddb57;
  border-radius: 15px;
  text-align: center;
  padding: 1%;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20%;
  box-shadow: 2px 2px 2px 2px #e3e3e3;
}
.contactus-container .mails{
  display: flex;
  width: 70%;
  justify-content: center;
  flex-direction: column;
}
.contactus-container h1{
  font-size: 2rem;
}
.contactus-container h1:after{
  content: "";
  background-color: #dd4b39;
  bottom: -10px;
  height: 3px;
  width: 40px;
  /* position: relative; */
  display: block;
  display: flex;
}
.contact-baner-h{
  float: left !important;

}

.Payzigomerchant:after{
  content: "";
  background-color: #dd4B39;
  bottom: -10px;
  height: 3px;
  width: 40px;
  display: block;
  display: flex;
}
.consumer:after{
  content: "";
  background-color: #db4b39;
  bottom: -10px;
  height: 3px;
  width: 40px;
  display: block;
  display: flex;


}

.machines:after{
  content: "";
  background-color: #fff;
  bottom: -10px;
  height: 3px;
  width: 40px;
  display: block;
  display: flex;


}

.shukran:after{
  content: "";
  background-color: #db4b39;
  bottom: -10px;
  height: 3px;
  width: 40px;
  display: block;
  display: flex;


}

.container.container1 {
  position: relative;
  text-align: center;
  color: rgb(13, 13, 13);
}


.centered {
  position: absolute;
  top: 50%;
  left: 32%;
  transform: translate(-50%, -50%);
  font-weight: bold;
  font-size: 40px;
}

label{
  color: #dd4B39;
}

.why-choose img{
  border-radius: 50px;
}

.why-choose1{
  margin-left: 5%;
}


.choose-us-div p{
font-size: 0.8rem !important;
}
.choose-us-div h1{
  font-family: "Segoe UI",Arial,sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    margin: 10px 0;
}

.choose-us-div .why-choose img{
  width: 86px;
}

.circleimg{
  width: 120%;
    position: relative;
    left: -60%;
    top: -15%;
}


.keyimg{
  position: relative;
    left: -120%;
    width: 80%;
    top: -16%;
}
.payzigos-text{
  font-weight: bold;
  position: absolute;
  color: black;
  font-size: 40px;
  left: 10%;
}

.merchant::after{
  background: url('/assets/img/circle.svg');
  position: absolute;
  left: 10%;
}
.circleimg-bg{
  width: 120%;
  position: relative;
  right:  -10%;
  top: -15%;
}

.safety{
  text-align: center;
  margin-top: -40px;
}
.service-cards{
background-color: #efdddb;
padding: 5%;
border-radius: 20px;
margin: 1%;
}
.ceo-img-div img{
  width: 73%;
}


.services-box .box {
  background: #efdddb;
  border-radius: 10px;
  cursor: pointer;
  margin: 20px 0;
  padding: 40px 10px;
  transition: all 0.5s ease-out;
}

.services-box .box:hover {
 box-shadow: 0 0 6px #4183D7;
}

.services-box .box-text {
  font-size: 15px;
  line-height: 30px;
  margin: 20px 0;
}

.services-box .box-btn a {
  color: #4183D7;
  font-size: 16px;
  text-decoration: none;
}

#images{
float: right;

}

.services-box .fa {
  color: #4183D7;
}


.vertical-tabs{
  font-size:15px;
  padding:10px;
  color:#000
}
.vertical-tabs .nav-tabs .nav-link{
  border-radius: 0;
  background: #efdddb;
  text-align: center;
  font-size: 18px;
  border: 2px solid #ffffff;
  color: #161515;
  height: 42px;
  width: 100%;
}
.vertical-tabs .nav-tabs .nav-link.active{
  background-color:#700000!important;
  color:#fff;
}
.vertical-tabs .tab-content>.active{
  background:#fff;
  display:block;
}
.vertical-tabs .nav.nav-tabs{
  border-bottom:0;
  /* border-right:3px solid #000; */
  display:block;
  float:left;
  margin-right:20px;
  padding-right:15px;
}
.vertical-tabs .sv-tab-panel{
  background:#fff;
  height:274px;
  padding-top:10px;
}
@media only screen and (max-width: 420px){
.titulo{font-size: 22px}
}
@media only screen and (max-width: 325px){
.vertical-tabs{ padding:8px;}
}


.img-vm{
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-vm.vision img{
  width: 70%;
}
.img-vm img{
  width: 60%;
}
.vision-mission p{
  font-size: 0.8rem !important;
}
.about-container p{
  font-size: 0.9rem;
}
.about-container h4{
  font-size: 20px;
}
.payment-services{
margin-top: 2%;
}
.icon-box3 h4{
  font-size: 20px !important;
}
.stepper .Process{
  margin-bottom: 2%;
}
.stepper h5, .stepper p{
  margin: 0 2%;
}
.stepper p{
font-size: 0.9rem !important;
padding: 1% 0;
}
.stepper{
  margin-bottom: 2%;
}
.center-img{
  margin: auto;
}

.wrap {
  color: #222;
  font-size: 24px;
  display: flex;
  justify-content: center;
}

.clip-svg {
  width: 0;
  height: 0;
}

.clip-caption {
  width: 100%;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
}

.clip-each {
  display: block;
  position: relative;
  -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  -webkit-clip-path: url("#hexagon-clip");
  clip-path: url("#hexagon-clip");
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
  margin: 0 auto;
}

a.clip-each:hover {
  background: #dd4b39;
  -webkit-transition: all 0.25s ease-in;
  transition: all 0.25s ease-in;
}

.clip-solid {
  width: 300px;
  height: 300px;
  /* background-image: url("https://karenmenezes.com/static/img/demos/shapes-polygon/c.jpg"); */
  background-repeat: no-repeat;
  background-size: contain;
  color: #fff;
  background-color: #dd4b39;
  background-blend-mode: hard-light;
  -webkit-transition: all 2.5s linear;
  transition: all 2.5s linear;
}

.clip-solid:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-clip-path: polygon(100% 3%, 17% 100%, 100% 100%);
  clip-path: polygon(100% 3%, 17% 100%, 100% 100%);
  -webkit-clip-path: url("#triangle-clip");
  clip-path: url("#triangle-clip");
  background: #f16351;
  z-index: 1;
  width: 100%;
  height: 155px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  pointer-events: none;
}

.clip-solid:hover:after {
  height: 0;
  -webkit-transition: all 0.45s ease-in;
  transition: all 0.45s ease-in;
}

.clip-solid:hover .social-share-block {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

.social-share-block {
  position: absolute;
  bottom: 20px;
  right: 75px;
  color: #fff;
  font-size: 70%;
  z-index: 2;
}

.social-each {
  font-size: 80%;
}

.clip-gradient {
  background: #f16351;
  width: 250px;
  height: 250px;
}

.clip-gradient .clip-caption {
  color: #fff;
}

.clip-border {
  background: -webkit-linear-gradient(300deg, #aebcbf 0%, #6e7774 50%, #333 61%, #333 100%);
  background: linear-gradient(150deg, #aebcbf 0%,#6e7774 50%,#333 61%,#333 100%);
  width: 160px;
  height: 160px;
  margin-top: 7px;
  color: #222;
}

.clip-border::after {
  content: "";
  position: absolute;
  top: 4%;
  left: 4%;
  right: 4%;
  bottom: 4%;
  margin: 0 auto;
  /* background: url("https://karenmenezes.com/static/img/demos/shapes-polygon/bg-cubes.png"); */
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
  -webkit-clip-path: url("#hexagon-clip");
  clip-path: url("#hexagon-clip");
  z-index: -1;
}

.clip-tagline {
  display: block;
  color: #758C9B;
  text-decoration: none;
  text-align: center;
}

@media only screen and (min-width: 550px) {

  .clip-block {
    display: table-cell;
    vertical-align: middle;
    margin: auto 0;
  }

  .clip-border {
    margin-top: 20px;
  }
}


 /* ------------------------------------Media queri for mobile ---------------------------------------------------------------------- */
@media (max-width: 768px) {
  
    .wrap{
      flex-direction: column;
    }
  .payment-links-side-cards {
    background: #f4f4f4;
    padding: 4% 7%;
    border-radius: 54px;
    margin-bottom: 12px;
}
  .circleimg-bg{
    display: none !important;
  }
  .keyimg{
    left:0 !important;
  }
  .MERCHANT{
    margin-bottom: 2%;
  }
  .contactus-container .info-box, .service-cards.info-box{
    width: 100% !important;
  }
  .getin
  {
    padding-top:5%;
  }

  .earn{
    margin-bottom: 10px;

  }

  .vision-text {
    margin-top: -43% !important;
  }




  .PAYZIGOMERCHANT{
    height:100%;
  }
  .bbp{
    margin-top: 15px;
  }
  .rewards{
    margin-top: 10px;
  }


  .payment{
    margin-top: 38px;
  }

.line9{
  display: none;
}
.safety{
  font-size: 18px;
}
.trustsafety-p{
  font-size: 12px !important;
}
.trust-saftey-container p{
  font-size: 12px !important;

}
.icon-box3 {

  margin-bottom: 10px;
}
.centered {

  font-size: 12px;
}
.icon-box3 p {
  font-size: 12px;
}
.scrolled-offset {
  margin-top: 0px;
}

.PAYZIGOMERCHANT p {
  font-size: 15px !important;
}

.abt {
  font-size: 18px;
  text-align: center;
}


.conumer-b2c p{
  font-size: 12px !important;

}
.line8 {
  display: none;
}
.line7 {
  display: none;
}
.mt-4 {
  margin-top: 2.5rem!important;
}


.merchant-b2b{
  font-size: 12px !important;

}

.line11 {
  display: none;

}

.line10 {

display: none;


}
.line5{

  display: none;

  }
.line12 {

  display: none;

  }

  .abt-p p{
    font-size: 12px !important;
  }
.posmachine-p{
  font-size: 12px !important;

}
.shukran-p{
  font-size: 12px !important;

}

.vision-img img {
  width: 17% !important;
  position: absolute !important;
  top: 103% !important;
  left: 25% !important;

}

.mision-img img {
  width: 17% !important;
  position: absolute !important;
  top: 103% !important;
  left: 56% !important;

}
.mision-text {
  margin-top: 90% !important;
}

.vison-text {
  margin-top: 93% !important;
}


#images{
  width: 60% !important;
  margin-left: -9%;
  float: left;
  margin-top: -80px;

}
.choose{
  margin-top: 30px;
}


.ceo-img-div img{
  width: 100%;
}

.vision-mison{
justify-content: center;
}



  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  #footer .copyright,
  #footer .credits {
    text-align: center;
    float: none;
  }

  #footer .credits {
    padding-top: 4px;
  }
  .why-us .content-item {
    padding: 40px 0;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  #hero h2 {
    font-size: 28px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
  .copyright img {
    width: 16%;
    margin-top: -15px;
    margin-bottom: 15px;
}
h2 {
  font-weight: 600;
  margin-top: 25px;
}

.paymntlinks img{
  margin-top: 90%;
}
.payouts1 img {
  margin-top: 100%;
}
.rec img {
  width: 70%;
  margin-left: 39px !important;
  margin-top: 100%;
}
}



@media (max-width: 1100px){
  .mision-text {
    margin-top: 45%;
  }
  .vision-img img {
    width: 7%;
    position: absolute;
    top: 125%;
    left: 9%;
  }
  .vision-text {
    margin-top: -140%;
}

.mision-img img {

  position: absolute;
  top: 125%;
  left: 29%;
}

#images{
  width: 140% !important;
}


.img-responsve{
  width: 100%;
}

.join{

  font-size: 18px !important;
}

#imgres{
  width: 100%;
}
.line9{
  display: none;
}
}

@media(max-width: 500px){

  .vision-img img {
    width: 17% !important;
    position: absolute !important;
    top: 108% !important;
    left: 40% !important;
}
.why{
  display: flex;
  flex-direction: column-reverse;
}
.vision-img:after {

display: none;

}
.vision-text {
  margin-top: 37% !important;
}
.mision-img img {
  width: 17% !important;
  position: absolute !important;
  top: 141% !important;
  left: 42% !important;
}
.mision-text {
  margin-top: 20% !important;
}

.vertical-tabs .nav.nav-tabs{
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
}
.nav-item {
  width: auto;
  height: 100%;
  background: rgba(255, 0, 0, 0.1);
  margin-left: 10px;
  display: inline-block;
}

.vertical-tabs .nav.nav-tabs

::-webkit-scrollbar-track{
  width: 70px;

}


::-webkit-scrollbar {width: 7px;height: 7px;}
::-webkit-scrollbar:hover {width: 12px;height: 12px;}
::-webkit-scrollbar-track,
::-webkit-scrollbar-thumb {border-radius: 4px;}
::-webkit-scrollbar-track {background: transparent;}




.paymntlinks img {
  display: none;
}
.payouts1 img{
  display: none;
}
.hours{
  flex-direction: column !important;
}

.bbpspic img {
  display: none;
}

.dmt{
  margin-bottom: 10px;
}


}


#images {
  width: 100% !important;
}
.store{
  margin-bottom: 30px;
}

.stepper {
  .line {
    width: 2px;
    background-color: lightgrey !important;
  }
  .lead {
    font-size: 1.1rem;
  }
}
.rounded-circle {
  border-radius: 50%!important;
  background-color: #db4b39 !important;
}



.Process{
  font-size: 28px;
  font-weight: bold;

}
.Paymentlinks{
  font-size: 28px;
  font-weight: bold;
}
.whychoosepayzigo{
  font-size: 28px;
  font-weight: bold;
}
.Advantages{
  font-size: 28px;
  font-weight: bold;
}
.onlinetransactions{
  background-color: #f1f1f1;
  padding: 2%;
  text-align: center;
  font-weight: bold;
  border-radius: 10px;
  align-items: center;
  display: flex;
  margin: auto;
  justify-content: center;
}
.side-image-24{
  width: 300px !important;
}
.paymentlinksimg{
  display: flex;
  justify-content: end;
}
.payment-links-contents p{
  font-size: 11px;
}
.payment-links-contents label{
  font-weight: bold;
}
.payment-links-side-cards{
    background: #f4f4f4;
  padding: 4% 6%;
  border-radius: 50px;
  margin-bottom: 12px;
}
.b2bpayouts{
  font-size: 20px;
}
.b2bBenefits{
  font-size: 24px;
  font-weight: bold;
}
.b2bCreditCard{
  font-size: 24px;
  font-weight: bold;
}
.b2bgateway{
  font-size: 24px;
  font-weight: bold;
}
.b2bAdvantages{
  font-size: 24px;
  font-weight: bold;
}
.b2bServices1{
  font-size: 24px;
  font-weight: bold;
}
.b2bKey{
  font-size: 24px;
  font-weight: bold;
}
.b2bBBPS{
  font-size: 24px;
  font-weight: bold;
}
.b2bBenefits{
  font-size: 24px;
  font-weight: bold;
}
.b2bUse{
  font-size: 24px;
  font-weight: bold;
}
.b2beasy{
  font-size: 24px;
  font-weight: bold;
}
.rec img{
  width: 70%;
    margin-left: 90px;
}
.b2bearns{
  font-size: 24px;
  font-weight: bold;
}
h2{
  font-weight: 600;
  font-size: 24px;

}
.b2bterms{
  font-size: 24px;
  font-weight: bold;
}
.b2bprivacy{
  font-size: 24px;
  font-weight: bold;
}
p{
  font-size: 0.9rem;
}
