* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
@font-face {
  font-family: OpenSans-ExtraBold;
  src: url("../fonts/OpenSans-ExtraBold.woff2");
  font-display: swap;
}
@font-face {
  font-family: OpenSans-Bold;
  src: url("../fonts/OpenSans-Bold.woff2");
  font-display: swap;
}
@font-face {
  font-family: OpenSans-Semibold;
  src: url("../fonts/OpenSans-Semibold.woff2");
  font-display: swap;
}
@font-face {
  font-family: OpenSans-Regular;
  src: url("../fonts/OpenSans-Regular.woff2");
  font-display: swap;
}
@font-face {
  font-family: OpenSansCondensed-ExtraBold;
  src: url("../fonts/OpenSansCondensed-ExtraBold.woff2");
  font-display: swap;
}
html, body {
  width: 100%;
  height: 100%;
  font-family: OpenSans-Regular;
  font-size: 16px;
}
/* Utility classes start */
.banner_heading {
  font-family: OpenSans-Bold;
  font-size: 50px;
  margin: 0 0 20px 0;
  color: #ffffff;
}
.about_banner_section {
  display: grid;
}
.about_banner_section>* {
  grid-area: 1/1;
}
.about_banner_section .container {
  align-self: center;
}
.about_banner_section .readmore_btn a {
  color: #000000;
  border: 0;
  padding: 8px 20px;
  border-radius: 30px;
  background-color: #ffc82f;
}
.big_heading {
  font-size: 40px;
  font-family: OpenSans-ExtraBold;
  color: #000000;
  text-align: center;
  margin: 0 0 20px 0;
}
.big_heading span {
  font-size: 45px;
  color: #8e1b3e;
}
.payment-section .new_sub_heading {
  font-family: OpenSans-Bold;
}
.new_sub_heading {
  font-family: OpenSans-Semibold;
  font-size: 20px;
  color: #000000;
  margin: 0 0 10px 0;
} 
.about_banner_section .new_sub_heading {
  margin: 0;
  color: #ffffff;
}
.new_heading {
  font-family: OpenSans-Bold;
  font-size: 40px;
  color: #000000;
  margin: 0 0 20px 0;
}
.about_banner_content p {
  color: #ffffff;
}
/* Utility classes ends */
/* Header start */
.header {
  display: block;
  width: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 2px -2px #8080801a;
}
.header .item-left {
  flex: 0 0 17%;
}
.header .logo a {
  font-size: 30px;
  color: #000000;
  font-weight: 700;
  text-decoration: none;
}
.header .item-center {
  flex: 0 0 66%;
  justify-self: center;
}
.header .item-right {
  flex: 0 0 17%;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  align-items: center;
}
.header .item-right a {
  text-decoration: none;
  /* font-size: 16px; */
  /* color: #555555; */
  /* display: inline-block; */
  /* margin-left: 10px; */
  transition: color 0.3s ease;
}
.header .menu>ul>li {
  display: inline-block;
  /* line-height: 50px; */
  margin-left: 12px;
  padding: 22px 0;
}
.header .menu>ul>li>a {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  position: relative;
  text-transform: capitalize;
  transition: color 0.3s ease;
  font-family: OpenSans-Semibold;
}

.header .menu>ul>li:hover>a span svg path{
  stroke: #8e1b3e;
}

.header .menu>ul>li .sub-menu {
  position: absolute;
  z-index: 500;
  background-color: #ffffff;
  box-shadow: -2px 2px 70px -25px rgba(0, 0, 0, 0.3);
  padding: 20px;
  transition: all 0.5s ease;
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
  top: 65px;
  border-radius: 0 0 10px 10px;
}
.new_header_mainbox {
  display: grid;
  grid-template-columns: 100px 1fr 300px;
  align-items: center;
}
.my_menu ul {
  padding: 0;
  margin: 0;
}
.signin_btn a {
  display: inline-block;
  padding: 7.5px 22px;
  border-radius: 20px;
  border: 1px solid #8E1B3E;
  background-color: #8E1B3E;
  color: #FFFFFF;
  font-size: 13px;
}
.header .item-right a:hover {
  color: #ffffff ;
}
/* .signin_btn.signup_btn a {
  background-color: #ffffff;
  color: #000000;
} */
.signin_btn.signup_btn a {
  background-color: #ffffff;
  color: #000000;
  padding: 0px;
  border: 0;
}
.header .item-right .signup_btn a:hover {
  color: #000000 ;
}
.logo img {
  max-width: 90px;
}
.list-item.list_last_item {
  /* grid-column: 2/3; */
  /* grid-row: 1/4; */
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 30px !important;
}
.my_menu_mianbox {
  display: grid;
  grid-template-columns: 30px 1fr 12px;
  gap: 10px;
  transition-duration: 0.1s;
}
.my_menu_heading {
  font-size: 14px;
  color: #000000;
  font-family: OpenSans-Regular;
  margin: 0 0 5px 0;
  transition-duration: 0.1s;
}
.my_menu_mianbox:hover .my_menu_heading,
.my_menu_mianbox:hover .my_menu_subheading {
  color: #8e1b3e;
} 
.my_menu_subheading {
  font-family: OpenSans-Regular;
  font-size: 12px;
  color: #707070;
}
.my_menu_arrow {
  align-self: center;
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.3s;
}
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li:hover .my_menu_arrow {
  opacity: 1;
  visibility: visible;
}
.header .menu>ul>li .sub-menu>ul>li:hover .my_menu_arrow {
  opacity: 1;
  visibility: visible;
}
.new_sublisting_grid {
  display: flex;
  gap: 10px;
  flex-direction: column;
}
.single-column-menu ul {
  list-style-type: none;
}
/* Home page start */
.payment-section .new_sub_heading {
  text-align: center;
  margin: 0;
}
.payment-section {
  overflow-x: unset !important;
}
.new_payment_section {
  padding: 60px 0 0 0;
  overflow: unset!important;
}
.new_ecommerece_mainbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background-color: #f1f1f1;
}
.new_ecommerece_rightbox {
  padding: 80px;
}
.new_ecommerce_section {
  padding: 60px 0 0 0;
}
.pos_terminal_heading_section {
  text-align: center;
  margin: 0 0 40px 0;
}
.pos_terminal_heading_section .new_sub_heading {
  margin: 0 0 40px 0;
}
.pos_terminal_section {
  padding: 60px 0 0 0;
  margin: 60px 0 0 0;
  background-color: #f5f5f5;
  overflow: unset!important;
}
.pos_terminal_leftbox {
  display: flex;
  flex-direction: column;
  /* align-items: center;
  text-align: center; */
}
.pos_terminal_leftbox a {
  color: #8e1b3e;
  background-color: #dedede;
  border-radius: 20px;
  width: fit-content;
  padding: 0 20px;
}
.pos_terminal_leftbox a:hover {
  color: #8e1b3e;
}
.new_optimized_mainbox {
  display: grid;
}
.new_optimized_mainbox > * {
  grid-area: 1/1;
}
.new_optimized_contentbox {
  align-self: center;
  padding: 0 0 0 60px;
}
.new_optimized_contentbox .new_heading {
  color: #ffffff;
}
.new_optimized_contentbox .readmore_btn a {
  color: #000000;
  border: 0;
  padding: 8px 20px;
  border-radius: 30px;
  background-color: #ffc82f;
}
.new_optimized_contentbox .readmore_btn a:hover {
  background-color: #ffffff;
  color: #000000;
  border: 0;
}
.new_optimized_section {
  padding: 60px 0 0 0;
}
.new_sadad_card_mainbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.new_sadad_card_listing {
  border: 1px solid #ccc;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.new_sadad_card_imgbox {
  width: 100%;
  height: 180px;
}
.new_sadad_card_imgbox img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.new_sadad_card_contentbox .new_sub_heading {
  color: #8e1b3e;
}
.new_sadad_card_link a {
  color: #8e1b3e;
  font-size: 12px;
}
.new_sadad_card_link a:hover {
  color: #8e1b3e;
}
.new_sadad_card_contentbox {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
.new_sadad_card_section {
  padding: 60px 0 0 0;
  background-color: #f5f5f5;
}
.new_optimized_contentbox p {
  color: #ffffff;
}
.pos_rest_mainbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pos_rest_section {
  padding: 60px 0;
  background-color: #f5f5f5;
}
.pos_rest_contentbox {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-around;
  padding: 0 0px 0 80px;
}
.pos_rest_contentbox .new_sadad_card_link a {
  font-size: 16px;
  font-family: OpenSans-Bold;
}
.new_accept_mainbox {
  display: grid;
  align-items: center;
}
.new_accept_mainbox > * {
  grid-area: 1/1;
}
.new_accept_section .new_optimized_contentbox {
  padding: 0;
}
.new_accept_section {
  padding: 60px 0 0 0;
}
.new_tool_section {
  padding: 60px 0 0 0;
}
.new_tool_headingbox .new_heading,
.new_tool_headingbox .new_sub_heading,
.new_tool_headingbox p {
  text-align: center;
}
.new_tool_headingbox {
  margin: 0 0 40px 0;
}
.new_tool_mainbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.new_tool_listing:not(:nth-child(3)):not(:nth-child(6)) {
  padding: 0 20px 0 0;
  /* border-right: 1px solid #ccc; */
}
.new_tool_listing:nth-child(1),
.new_tool_listing:nth-child(2),
.new_tool_listing:nth-child(3) {
  padding: 0 0 20px 0;
}
.new_tool_listing_right {
  position: relative;
}
.new_tool_listing_right::after {
  position: absolute;
  content: "";
  right: 0;
  width: 1px;
  height: 75%;
  background-color: #ccc;
  top: 0;
}
.new_tool_listing_bottom {
  position: relative;
}
.new_tool_listing_bottom::before {
  position: absolute;
  content: "";
  bottom: 0;
  width: 85%;
  height: 1px;
  left: 50%;
  transform: translate(-50%);
  background-color: #ccc;
}
.new_tool_listing .new_sub_heading {
  font-size: 14px;
  font-family: OpenSans-Bold;
  text-align: center;
}
.new_tool_listing p {
  font-size: 12px;
  text-align: center;
}
.new_tool_icon {
  text-align: center;
  margin: 0 0 20px 0;
}
.new_tool_readmore {
  text-align: center;
}
.new_tool_readmore a {
  font-size: 14px;
  color: #8e1b3e;
}
.new_tool_readmore a:hover {
  color: #8e1b3e;
}
.new_why_section {
  padding: 60px 0 0 0;
}
.new_why_mainbox {
  display: grid;
  align-items: center;
}
.new_why_mainbox > * {
  grid-area: 1/1;
}
.new_why_mainbox .list-unstyled li:not(:last-child) {
  padding: 0 0 10px 0;
}
.new_why_mainbox .list-unstyled li img {
  margin: 0 10px 0 0;
}
.new_why_content_box .readmore_btn a {
  color: #000000;
  border: 0;
  padding: 8px 20px;
  border-radius: 30px;
  background-color: #ffc82f;
}
.switch {
  position: relative;
  display: inline-block;
  margin: 0;
}
.switch > span {
  position: absolute;
  top: 6px;
  pointer-events: none;
  font-weight: bold;
  font-size: 12px;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
  width: 50%;
  text-align: center;
}
input.check-toggle-round-flat:checked ~ .off {
  color: #8e1b3e;
}
input.check-toggle-round-flat:checked ~ .on {
  color: #fff;
}
.switch > span.on {
  left: -1px;
  padding-left: 2px;
  color: #8e1b3e;
}
.switch > span.off {
  right: 3px;
  padding-right: 4px;
  color: #fff;
}
.check-toggle {
  position: absolute;
  margin-left: -9999px;
  visibility: hidden;
}
.check-toggle + label {
  display: block;
  position: relative;
  cursor: pointer;
  outline: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
input.check-toggle-round-flat + label {
  padding: 2px;
  width: 75px;
  height: 30px;
  background-color: #8e1b3e;
  -webkit-border-radius: 60px;
  -moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}
input.check-toggle-round-flat + label:before, input.check-toggle-round-flat + label:after {
  display: block;
  position: absolute;
  content: "";
}
input.check-toggle-round-flat + label:before {
  top: 2px;
  left: 2px;
  bottom: 2px;
  right: 2px;
  background-color: #8e1b3e;
  -webkit-moz-border-radius: 60px;
  -ms-border-radius: 60px;
  -o-border-radius: 60px;
  border-radius: 60px;
}
input.check-toggle-round-flat + label:after {
  top: 4px;
  left: 4px;
  bottom: 4px;
  width: 30px;
  background-color: #fff;
  -webkit-border-radius: 52px;
  -moz-border-radius: 52px;
  -ms-border-radius: 52px;
  -o-border-radius: 52px;
  border-radius: 52px;
  -webkit-transition: margin 0.2s;
  -moz-transition: margin 0.2s;
  -o-transition: margin 0.2s;
  transition: margin 0.2s;
}
input.check-toggle-round-flat:checked + label:after {
  margin-left: 32px;
}
.header_login_toggle {
  display: flex;
}
.footer_line_hr {
  background-color: #ccc;
}
.new_what_r_waiting_section .readmore_btn a {
  color: #000000;
  border: 0;
  padding: 8px 20px;
  border-radius: 30px;
  background-color: #ffc82f;
}
.new_what_r_waiting_section .readmore_btn a:hover {
  background-color: #ffffff;
  color: #000000;
}
.what_r_waiting_section {
  overflow-x: unset !important;
  padding: 0 0 60px 0;
}
.what_waiting_contentbox {
  /* margin: 40px 0 0 0; */
}
.new_why_section .list-unstyled li {
  font-size: 16px;
  font-family: OpenSans-Regular;
}
.developer_zone_section {
  padding: 60px 0 0 0;
}
.developer_zone_mainbox {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
}
.developer_content_btnbox .new_tool_readmore {
  text-align: start;
}
.developer_zone_content .new_sub_heading,
.new_tool_heading_content_section .new_sub_heading{
  font-size: 16px;
}
.developer_zone_content p,
.new_tool_heading_content_section p {
  font-size: 14px;
}
.developer_zone_content {
  margin: 10px 0 0 0;
}
.developer_zone_content .new_sub_heading,
.developer_content_btnbox .new_tool_readmore a {
  font-family: OpenSans-Bold;
}
.developer_secondbox {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  margin: 60px 0 0 0;
}
.developer_zone_section {
  padding: 60px 0;
  margin: 60px 0 0 0;
  background-color: #011F45;
}
.developer_zone_section .new_heading,
.developer_zone_section .new_sub_heading,
.developer_zone_section p,
.developer_zone_section .new_tool_readmore a,
.developer_zone_section .new_sadad_card_link a {
  color: #ffffff;
}
.developer_zone_section .new_sadad_card_link a {
  font-size: 20px;
  font-family: OpenSans-Bold;
  color: #ffc828;
}
.home_soft_pos_section ul li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
}
.new_choose_section {
  padding: 60px 0 0 0;
}
.new_choose_section .new_value_listing:nth-child(4),
.new_choose_section .new_value_listing:nth-child(5),
.new_choose_section .new_value_listing:nth-child(6) {
  border-bottom: 1px solid #ccc;
}
.new_choose_section .new_value_listing:nth-child(7) {
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
  grid-column: 2/3;
}
.developer_rightbox img {
  border-radius: 12px;
}
.new_what_r_waiting_section {
  margin: 60px 0;
  overflow: unset!important;
}
.new_what_r_waiting_mainbox {
  display: grid;
  justify-content: center;
  align-items: center;
}
.new_what_r_waiting_mainbox > * {
  grid-area: 1/1;
}
.new_what_r_waiting_section .new_heading,
.new_what_r_waiting_section .new_sub_heading {
  color: #ffffff;
}
.new_tool_section .new_value_listing {
  display: flex;
  flex-direction: column;
}
.new_values_contentbox_btnbox {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.new_tool_section .new_tool_readmore {
  text-align: start;
}
.home_soft_pos_section .new_why_content_box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.home_soft_pos_section {
  background-color: #f5f5f5;
}
.payment-section {
  margin: 60px 0 0 0;
}
.my_new_payment_gateway_contentbox .readmore_btn,
.what_waiting_contentbox .readmore_btn,
.new_why_content_box .readmore_btn {
  margin-top: 33px;
}
.my_new_payment_gateway_contentbox .readmore_btn a {
  color: #8e1b3e;
  border: 1px solid #8e1b3e;
  padding: 10px 20px;
  border-radius: 30px 30px;
}
.my_new_payment_gateway_contentbox .readmore_btn a:hover {
  color: #fff;
  border: 1px solid #8e1b3e;
  background-color: #8e1b3e;
}
.e-commerce .content {
  padding: 120px 0px;
}
/* Home page ends */
/* footer start */
.footer_logos_mainbox {
  display: flex;
  gap: 5px;
}
.footer_mac_logos_listing {
  width: 87px;
  height: 49px;
  background-color: #f1f1f1;
  border-radius: 12px;
  padding: 2px;
}
.footer_mac_logos_listing img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.apple_play_logobox a img {
  max-height: 40px;
}
.copyright-text p {
  font-family: OpenSans-Regular;
  font-size: 14px;
}
.visa_card_mainbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.svg_media_facebook {
  transition: fill 0.3s ease;
}
.svg_media_facebook:hover {
  fill: #8e1b3e;
}
.buttons.apple_play_logobox {
  display: flex;
  gap: 10px;
}
.legal_submenu_listing .rahul::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #8e1b3e;
  opacity: 1;
  visibility: visible;
  transition-duration: 0.3s;
}
/* footer ends */
/* About us page stert */
.new_what_we_do_section {
  padding: 60px 0;
  margin: 60px 0 0 0;
  background-color: #f2f3f3f3;
}
.new_what_mainbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.new_what_listing {
  padding: 40px;
  border: 1px solid #ccc;
  border-radius: 12px;
}
.new_what_listing:hover .new_what_icon {
  transform: rotateY(180deg);
}
.new_what_listing p {
  margin: 0;
  /* font-size: 14px; */
  font-family: OpenSans-Regular;
}
.new_what_headingbox {
  margin: 0 0 40px 0;
}
.new_what_icon {
  margin: 0 0 10px 0;
  width: fit-content;
  /* padding: 10px; */
  /* border-radius: 6px; */
  /* background-color: #f1f1f1; */
  transition-duration: 0.5s;
}
.new_faqs_mainbox .accordion-button {
  padding: 20px 0;
  margin: 0;
  font-family: OpenSans-Semibold;
}
.new_faqs_mainbox .accordion-button:focus {
  border-color: #ffffff;
  box-shadow: unset;
}
.new_faqs_mainbox .accordion-button:not(.collapsed) {
  color: #8e1b3e;
  background-color: #ffffff;
  border-bottom: 1px solid #000000;
}
.new_faqs_mainbox .accordion-body {
  font-family: OpenSans-Regular;
  background-color: #f5f5f5;
  font-size: 14px;
}
.new_faqs_mainbox .accordion-item {
  border: 1px solid #000000;
}
.new_faqs_section {
  padding: 60px 0;
}
.about_new_why_mainbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 0 60px 0;
  border-bottom: 1px solid #ccc;
}
.about_new_why_listing {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  border-radius: 12px;
  border: 1px solid #ccc;
  height: 70px;
}
.about_new_why_iconbox {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 12px 0 0 12px;
}
.about_new_why_listing .new_sub_heading {
  margin: 0;
  align-self: center;
}
.about_new_why_section {
  padding: 60px 0 0 0;
}
.new_what_we_graybox {
  margin: 20px 0 0 0;
  padding: 10px;
  background-color: #BFC2C4;
  text-align: center;
  border-radius: 12px;
}
.new_what_we_graybox p {
  margin: 0;
}
.new_commit_governance_mainbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
/* .new_commit_gov_content .new_sub_heading {
  font-size: 16px;
} */
.new_commit_gov_content p {
  /* font-size: 14px; */
  margin: 0;
}
.new_commit_gov_content {
  margin: 12px 0 0 0;
}
.new_commi_gov_imgbox img {
  border-radius: 16px;
}
.new_commit_goverenace_section {
  padding: 60px 0 0 0;
}
.part_merch_back_left {
  background-color: #fbfbfb;
}
.part_merch_back_right {
  background-color: #f4f4f4;
}
.part_merch_back_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.part_merch_mainbox {
  display: grid;
}
.part_merch_mainbox > * {
  grid-area: 1/1;
}
.part_merch_content_mainbox {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.part_merch_content_leftbox {
  padding: 40px 40px 40px 0;
}
.part_merch_content_rightbox {
  padding: 40px 0px 40px 40px;
}
.part_merch_section {
  padding: 60px 0;
  overflow: unset!important;
}
.part_merch_section .new_sadad_card_link a {
  font-family: OpenSans-Bold;
  font-size: 14px;
}
.vision-mission-value {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.new_value_mainbox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.new_values_section {
  padding: 0 0 60px 0;
  overflow: unset !important;
}
.new_value_listing:nth-child(1),
.new_value_listing:nth-child(2) {
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.new_value_listing:nth-child(3) {
  border-bottom: 1px solid #ccc;
}
.new_value_listing:nth-child(4),
.new_value_listing:nth-child(5) {
  border-right: 1px solid #ccc;
}
.new_value_listing {
  padding: 20px;
}
.new_values_iconbox {
  margin: 0 0 10px 0;
}
.meet_our_team_section {
  padding: 60px 0 0 0;
  overflow-x: unset !important;
}
.part_merch_content_mainbox .new_heading {
  font-size: 30px;
}
.new_logo_mainbox {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.new_sadad_card_link .readmore_btn a {
  color: #000000;
  border: 0;
  padding: 8px 20px;
  border-radius: 30px;
  background-color: #ffc82f;
}
.new_padding_section {
  padding: 60px 0;
  overflow: unset!important;
}
.image.new_margin_image img {
  margin-top: 0px;
}
.about_us_main .our-methodology {
  height: 100%;
}
.helping_business {
  display: flex;
  justify-content: center;
  height: 100%;
  flex-direction: column;
}
.about_us_main .meet_our_team_section .readmore_btn {
  margin-top: 33px;
}
.about_us_main .meet_our_team_section .readmore_btn a {
  color: #8e1b3e;
  border: 1px solid #8e1b3e;
  padding: 10px 20px;
  border-radius: 30px 30px;
}
.about_us_main .meet_our_team_section .readmore_btn a:hover {
  color: #fff;
  border: 1px solid #8e1b3e;
  background-color: #8e1b3e;
}
.journey_content_box {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 20px;
  position: relative;
  height: fit-content;
}
.journey_content_box:first-child:after {
  width: 10px;
  height: 10px;
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
  bottom: -16px;
  border-width: 10px 10px 6px 10px;
  border-top-color: #8e1b3e;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.journey_content_box:last-child:after {
  width: 10px;
  height: 10px;
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
  top: -16px;
  border-width: 6px 10px 10px 10px;
  border-bottom-color: #8e1b3e;
  margin: 0 auto;
  left: 0;
  right: 0;
}
.vision-mission-value ul li {
  margin: 0 0 10px 0;
}
.journey_mainbox {
  position: relative;
}
.journey_mainbox::after {
  content: "";
  background-color: #e8e8e8;
  position: absolute;
  width: 100%;
  height: 1px;
  top: 50%;
  border-radius: 100px;
}
.journey_mainbox .owl-theme .owl-nav {
  position: absolute;
  top: 45.5%;
  width: 100%;
}
.journey_mainbox .owl-theme .owl-nav button {
  float: left;
  margin: 0 0 0 -40px;
}
.journey_mainbox .owl-theme .owl-nav .owl-next {
  float: right;
  margin: 0 -40px 0 0;
}
.new_commit_goverenace_section{
  overflow: unset!important;
}
.about_new_why_section {
  overflow: unset!important;
}
.new_what_we_do_section{
  overflow: unset!important;
}
.journy_section {
  padding: 60px 0 0 0;
}
.journy_listing {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 240px 80px 240px;
  row-gap: 20px;
  justify-items: center;
  position: relative;
  margin: 3px;
}
.journey_image_box {
  width: 80px;
  height: 80px;
}
.journey_image_box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.journey_heading {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #000000;
}
.journey_para {
  font-size: 13px;
}
.journy_section .owl-carousel .owl-dots.disabled,
.journy_section .owl-carousel .owl-nav.disabled {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.journy_section .owl-nav .owl-prev {
  transform: rotate(180deg);
}
.journy_section .owl-theme .owl-nav [class*='owl-']:hover {
  background: unset;
}
.journy_listing.journy_listing_even {
  align-items: end;
}
.journy_listing.journy_listing_odd {
  align-items: start;
}
.our_new_awards_section {
  padding: 60px 0 0 0;
}
.award_recognation_imagebox {
  display: grid;
}
.award_recognation_imagebox>* {
  grid-area: 1/1;
}
.award_recognation_heading {
  font-size: 18px;
  align-self: center;
  justify-self: center;
  font-weight: 700;
  text-align: center;
}
.award_recognation_para {
  font-size: 14px;
  text-align: center;
  margin: 10px 0 0 0;
}
.award_recognation_listing {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 12px;
}
.our_new_awards_section .owl-carousel .owl-dots.disabled,
.our_new_awards_section .owl-carousel .owl-nav.disabled {
  display: flex;
  gap: 10px;
  top: -45px;
  right: 0;
  position: absolute;
  margin: 0;
}
.our_new_awards_section .owl-nav .owl-prev {
  transform: rotate(180deg);
}
.our_new_awards_section .owl-theme .owl-nav [class*='owl-']:hover {
  background: unset;
}
.our_new_awards_section .owl-theme .owl-nav.disabled+.owl-dots {
  display: none;
}
.new_logo_listing {
  background-color: #f5f5f5;
  border-radius: 12px;
  border: 1px solid #ccc;
}
.our_logo_new_section {
  padding: 60px 0;
  margin: 60px 0 0 0;
  background-color: #f5f5f5;
  overflow-x: unset !important;
}
.meet_out_team_mainbox {
  display: flex;
  justify-content: center;
  width: 100%;
}
.meet_out_team_mainbox a {
  color: #fff;
  display: inline-block;
  background-color: #8e1b3e;
  padding: 5px 20px;
  border-radius: 20px;
}
/* About us page ends  */
/* header start */
.header .menu>ul>li .sub-menu>ul>li {
  line-height: 1;
  transition-duration: 0.3s;
  border: 1px solid #ffffff;
}
.header .menu>ul>li .sub-menu>ul>li>a {
  display: inline-block;
  padding: 10px;
  font-size: 15px;
  color: #555555;
  transition: color 0.3s ease;
  text-decoration: none;
  text-transform: capitalize;
  width: 100%;
}
.header .menu>ul>li .sub-menu>ul>li:hover {
  background-color: #f5f5f5;
  border: 1px solid #f1f1f1;
  border-radius: 12px;
}
.header .menu>ul>li .single-column-menu {
  min-width: 280px;
  max-width: 350px;
}
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li {
  line-height: 1;
  display: block;
  border: 1px solid #fff;
  transition-duration: 0.3s;
}
.header .menu>ul>li .sub-menu.mega-menu>.list-item.list_last_item>ul>li {
  border: 0;
}
.header .menu>ul>li .sub-menu.mega-menu>.list-item.list_last_item>ul>li:hover {
  background-color: unset;
  border: 0;
  border-radius: 0;
}
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li:hover {
  background-color: #f5f5f5;
  border: 1px solid #f1f1f1;
  border-radius: 12px;
}
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
  padding: 10px;
  display: inline-block;
  font-size: 14px;
  color: #555555;
  transition: color 0.3s ease;
  width: 100%;
}
.header .menu>ul>li .sub-menu.mega-menu {
  left: 50%;
  transform: translateX(-50%);
}
.header .menu>ul>li .sub-menu.mega-menu-column-4 {
  max-width: 1000px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  /* gap: 15px; */
  flex-wrap: wrap;
  padding: 20px 15px;
  flex-direction: column;
}
.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
  flex: 0 0 25%;
  padding: 0 15px;
}
.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item .title {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
  line-height: 1;
  padding: 0 0 0 10px;
  margin: 0 0 10px 0;
  font-family: OpenSans-Semibold;
}
.header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
  text-align: center;
}
.header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a:hover,
.header .menu>ul>li .sub-menu>ul>li>a:hover,
.header .menu>ul>li:hover>a {
  color: #8e1b3e;
}
/* banner section */
.banner-section {
  background-image: url('../img/banner.jpg');
  background-size: cover;
  background-position: center;
  height: 700px;
  width: 100%;
  display: block;
}
.mobile-menu-head,
.mobile-menu-trigger {
  display: none;
}
/*responsive*/
/* header ends */
/* Legal page start */
.legal_main .about_banner_content .new_sub_heading {
  font-size: 30px;
  margin: 0 0 5px 0;
}
/* Legal page ends */
/* News and media page start */
.news_media_main .news {
  margin-top: 60px;
}
.news_media_main .sec_head {
  font-size: 35px;
  text-transform: uppercase;
  font-weight: 900;
  text-align: center;
  padding: 0 0 25px 0;
}
.news_media_main .news .card {
  text-decoration: none;
  color: #000;
  /* width: 31.5%; */
  display: block;
  border-radius: 0 !important;
  /* text-align: center; */
  margin: 25px 0 0 0;
  position: relative;
}
.news_media_main .news .card img {
  width: 100%;
}
.news .card-body {
  padding: 15px 20px !important;
  min-height: 380px;
}
.news_media_main .news .card:hover {
  -webkit-box-shadow: 1px 1px 5px 0px rgba(221, 13, NaN, 1);
  -moz-box-shadow: 1px 1px 5px 0px rgba(221, 13, NaN, 1);
  box-shadow: 1px 1px 5px 0px rgba(221, 13, NaN, 1);
}
.news_media_main .news .card-title {
  font-size: 18px !important;
  font-weight: 700 !important;
}
.news_media_main .card-text .card-sub-title {
  position: relative;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 0 0 10px 0;
}
.news_media_main .card-text .card-sub-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("/wp-content/themes/sadad/images/2025/news/news.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 20px;
  width: 20px;
  margin: 2px 0 0 -27px;
}
.news_media_main .news .card-text {
  font-size: 16px !important;
  padding: 0 0 0 26px !important;
}
.news_media_main .card-text li {
  position: relative;
  list-style: none;
  font-size: 14px;
}
.news_media_main .card-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("/wp-content/themes/sadad/images/2025/news/check.svg");
  background-repeat: no-repeat;
  background-position: center;
  height: 20px;
  width: 20px;
  margin: 0 0 0 -27px;
}
.news_media_main .news .card-date {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.news_media_main .news .read-more {
  margin: 10px 0 0 10px;
  position: absolute;
  bottom: 25px;
}
.news_media_main .news .read-more a {
  text-decoration: none;
  position: relative;
  color: #8e1b3e;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 20px;
  border: 1px solid #8e1b3e;
  /* background-color: #8e1b3e; */
}
.news_media_main .news .read-more a:hover {
  color: #fff;
  background-color: #8e1b3e;
}
.news_media_main .news_card {
  display: flex;
  justify-content: space-between;
}
.news_media_main .media {
  margin: 60px 0;
}
.news_media_main .media .read-more a {
  text-decoration: none;
  position: relative;
  color: #fff;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 20px;
  /* background-color: #8e1b3e; */
}
.news_media_main .media_cards {
  display: flex;
  justify-content: space-between;
}
.news_media_main .media .card {
  text-decoration: none;
  color: #000;
  /* width: 31%; */
  display: block;
  border-radius: 0 !important;
}
.news_media_main .media .card-title {
  font-size: 18px !important;
  font-weight: 700 !important;
}
.news_media_main .media .card-text {
  font-size: 16px !important;
  max-height: 4.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news_media_main .media .card-date {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.news_media_main .media_cards img {
  border-radius: 14px 14px 0 0;
}
.news_media_main .prteam {
  padding: 60px 0;
}
.news_media_main .pr_subhead {
  font-size: 18px;
  font-weight: 700;
}
.news_media_main .read-more {
  padding: 15px 0 0 0;
}
.news_media_main .pr_block {
  background: #f8f9fa;
  padding: 40px;
  text-align: center;
  border-radius: 12px;
}
.news_media_main .prteam .read-more a:hover {
  color: #fff;
  background-color: #8e1b3e;
}
.news_media_main .prteam .read-more a {
  text-decoration: none;
  position: relative;
  color: #8e1b3e;
  font-weight: 600;
  padding: 6px 15px;
  border-radius: 20px;
  border: 1px solid #8e1b3e;
}
/* News and media page ends  */
/* Legals page start */
.legal_mainbox {
  display: grid;
}
.legal_mainbox>* {
  grid-area: 1/1;
}
.leagal_empty_box {
  display: grid;
  grid-template-columns: 300px 1fr;
}
.legal_empty_leftbox {
  background-color: #f5f5f5;
}
.legal_menu_mainbox {
  display: grid;
  grid-template-columns: 280px 1fr 280px;
}
.legal_menu_listing ul,
.legal_submenu_listing ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.legal_menu_listing ul li a{
  padding: 8px 16px;
  background-color: #E5E5E5;
  border-radius: 12px;
  display: inline-block;
  width: 100%;
  transition-duration: 0.3s;
}
.legal_menu_listing ul li a:hover {
  background-color: #8e1b3e;
  color: #ffffff;
}
.legal_menu_listing ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal_menu_heading {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px 0;
}
.legal_menu_listing ul a {
  font-size: 16px;
  color: #000000;
}
.legal_submenu_listing ul a {
  font-size: 12px;
      color: #707070;
      padding: 8px 0 8px 10px;
      width: 100%;
      display: block;
}
.legal_content_mainbox {
  padding: 60px 30px 60px 30px;
}
.legal_left_menubox {
  padding: 60px 20px 0px 0;
}
.legal_right_menubox {
  padding: 60px 0 0 0px;
}
.legal_menu_listing ul .active a {
  color: #ffffff;
  background-color: #8e1b3e;
}
.legal_lists {
  scroll-margin-top: 80px;
}
.legal_submenu_listing {
  border-left: 1px solid #ccc;
}
.legal_submenu_listing li {
  position: relative;
  transition-duration: 0.3s;
}
.legal_submenu_listing li::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ccc;
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}
.legal_submenu_listing li.active_sublist::after {
  background-color: #8e1b3e;
  opacity: 1;
  visibility: visible;
  transition-duration: 0.3s;
}
.legal_submenu_listing li:hover::after {
  opacity: 1;
  visibility: visible;
}
.legal_section {
  overflow: unset !important;
}
.legal_left_menubox {
  position: sticky;
  top: 60px;
  height: 100vh;
  background-color: #f5f5f5;
}
.legal_right_menubox {
  position: sticky;
  top: 60px;
  height: 100vh;
}
.toggle_img {
  display: none;
}
.legal_para p a {
  text-decoration: none;
}
/* Legals page ends  */
/* Quality and security start */
.quality_security_main .Sadad-certifications{
  padding:60px 0px 60px 0px;
  overflow: hidden;
}
.quality_security_main .hours24_section{
  padding: 60px 0 0px 0;
}
.quality_security_main .risk-manegment{
  padding:60px 0px 60px 0px;
  overflow: hidden;
}
.quality_security_main .faq .new_heading{
  font-family: OpenSans-Bold;
  font-size: 40px;
  color: #000000;
  margin: 0 0 20px 0;
}
.quality_security_main .faq{
  padding:60px 0px 60px 0px;
}
.quality_security_main .spacing_row{
  padding:60px 0px 60px 0px;
}
.quality_security_main .protect-your-data{
  padding:60px 0px 60px 0px;
  overflow: hidden;
}
.quality_security_main .anti-mony{
  padding:60px 0px 60px 0px;
  overflow: hidden;
}
.quality_security_main .manegment-system{
  padding:60px 0px 60px 0px;
  overflow: hidden;
}
.quality_security_main .new_heading_margin{
  margin: 0 0 40px 0 !important;
}
.quality_security_main .certifications_card_img img{
  max-width: 120px;
  margin: 0 0 0px 0;
}
.quality_security_main .certifications_card_img span{
  margin: 40px 0 0 0;
  color: #8e1b3e;
  border: 1px solid #8e1b3e;
  padding: 10px 20px;
  border-radius: 30px 30px;
  transition-duration: 0.7s;
}
.quality_security_main .certifications_card_box:hover span{
  color: #fff;
  border: 1px solid #8e1b3e;
  background-color: #8e1b3e;
  transition-duration: 0.7s;
}
.quality_security_main .-mt-80{
  margin-top: -80px;
}
.quality_security_main .certifications_card_box{
  background: #f5f5f5;
  padding: 15px;
  border-radius: 20px;
  margin: 0 0 30px 0;
  min-height: 300px;
  display: flex;
  align-items: center;
  border: 2px solid #fff;
  transition-duration: 0.5s;
}
.quality_security_main .certifications_card_box:hover{
  border: 2px solid #8e1b3e1a;
}
.quality_security_main .certifications_card_img{
  height: 100%;
  display: flex;
  align-items: center;
}
.quality_security_main .certifications_card_content p{
  margin:0px;
  font-size:14px;
}
.quality_security_main .image_lighbox {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
}
.quality_security_main .image_lighbox::after {
  content: "";
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 9;
  /* background: rgb(0 0 0 / 26%); */
  opacity: 0;
  transition-duration: 0.5s;
}
.quality_security_main .image_lighbox:hover.image_lighbox::after {
  opacity: 1;
}
.quality_security_main .list-unstyled li{
  font-size: 16px;
  margin: 10px 0 10px 0;
  display: flex;
  align-items: center;
}
.quality_security_main .list-unstyled li img{
  max-height: 15px;
  margin: 0 6px 0 0;
}
.quality_security_main .distinguished_text .new_sub_heading{
  font-size: 20px;
  margin:12px 0px 6px 0;
}
.quality_security_main .distinguished_text p {
  font-size: 16px;
  margin: 0;
}
.quality_security_main .encryption_mainbox{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
/* Quality and security ends  */
/* Leadership new section start */
.bord_director_mainbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}
.bord_director_listing .new_sub_heading {
  font-size: 18px;
}
.bord_director_section {
  padding: 60px 0 100px 0;
}
.bord_director_listing {
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
/* Leadership new section ends  */
.signin_btn.signup_btn.new_login-button a {
  font-family: OpenSans-Semibold;
  font-size: 14px;
}
.my_about_padding {
  padding: 0 0 64px 0;
}
.home_soft_pos_section {
  overflow: unset!important;
}
.banner_mobile_img {
  display: none !important;
}
.about_banner_image {
  text-align: center;
  background-color: #000000;
}
.owl-carousel_home_banner.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 0;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.owl-carousel_home_banner.owl-theme .owl-dots .owl-dot span {
  width: 20px;
  height: 4px;
  margin: 0px 4px;
  background: #ffffff;
  display: block;
}
.owl-carousel_home_banner.owl-theme .owl-dots .owl-dot.active span, 
.owl-carousel_home_banner.owl-theme .owl-dots .owl-dot:hover span {
  background: #ffc828;
}
.crafted_by img{
  max-height: 19px;
}
.crafted_by a{
  font-family: OpenSans-Regular;
  font-size: 14px;
  color: #212121;
}
.new_payment_method_section{
  overflow: hidden;
}
.head-nav{
  z-index: 99 !important;
}
.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: #86b7fe;
  outline: 0;
  box-shadow: 0 0 0 .10rem rgba(13, 110, 253, .25) !important;
}

/*PRICING CSS START*/
.pricing-wrapper .pricing-hero{
  position: relative;
}
.pricing-wrapper .pricing-hero{
  content: '';
  background: url('../images/hero-bg.webp') no-repeat;
  background-size: contain;
  background-position: top center;
  height: 571px;
  max-height: 571px;
  width: 100%;
  display: block;
}
.pricing-wrapper .pricing-hero .pricing-inner{
  padding: 110px 0px;
}
.pricing-wrapper .pricing-hero .pricing-in-box{
  padding: 58.5px 0px;
}
.pricing-wrapper .pricing-hero .pricing-in-box .pricing-content{
  margin-bottom: 50px;
}
.pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_heading{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.03em;
  color: #000000;
  text-align: center;
  margin-bottom: 42px;
}
.pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_para{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.005em;
  color: #141414;
}
.pricing-fees-detail{
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-fees-detail .pricing-fees-list{
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.pricing-fees-detail .pricing-fees-list::after{
  content: '';
  background: url('../images/hero-pattern.svg');
  height: 10px;
  width: 10px;
  display: inline-block;
  margin: 0px 24px;
}
.pricing-fees-detail .pricing-fees-list:last-child::after{
  display: none;
}
.pricing-fees-detail .pricing-fees-list .pricing-fees-title p{
  margin-bottom: 0px;
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
}
.oppos-toggle {
  display: inline-flex;
  justify-content: center;
  padding: 4px;
  height: 80px;
  column-gap: 8px;
  border: 1px solid #000000;
  border-radius: 100px;
}
.toggle-button {
  padding: 24px;
  height: 70px;
  background-color: #FFFFFF;
  color: #141414;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0px;
  outline: 0px;
}
.toggle-button.active {
  padding: 24px;
  height: 70px;
  background: #8E1B3E;
  border-radius: 100px;
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #FFFFFF;
}
.explore-pricing{
  padding: 72px 0px 0px 0px;
}
.oppos-title{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #141414;
  text-align: left;
}
.oppos-subtitle{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
  text-align: left;
}
.standard-paln-main{
  padding: 72px 0px;
}
.standard-palnwrap{
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 29px;
}
.standard-plan-box{
  padding: 40px;
  width: 735px;
  height: auto;
  background: #FFFFFF;
  border: 8px solid rgba(142, 27, 62, 0.3);
  box-shadow: 0px 167px 67px rgba(0, 0, 0, 0.01), 0px 94px 56px rgba(0, 0, 0, 0.03), 0px 42px 42px rgba(0, 0, 0, 0.05), 0px 10px 23px rgba(0, 0, 0, 0.06);
  border-radius: 21.6104px;
}
.plan-card-title{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #141414;
  margin-bottom: 16px;
}
.plan-card-box .plan-card-list{
  padding-top: 56px;
  padding-bottom: 48px;
}
.plan-card-box .plan-card-list .pcard-img-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.plan-card-box .plan-card-list .pcard-img-box .pcard-img{
  display: flex;
  align-items: center;
  column-gap: 24px;
}
.pcard-content p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 0px;
}
.card-seperator {
  border: 1px dashed #A9A9AA;
  height: 1px;
  width: 100%;
  display: block;
  margin: 24px 0px;
}
.enterprise-p-box{
  padding: 32px;
  width: 484px;
  height: auto;
  background: #FFFFFF;
  box-shadow: 0px 0px 0px 0.54026px #E4E5E9, 0px 0px 0px 1.08052px rgba(228, 229, 233, 0.6), 0px 0px 0px 3.78182px #F9F9FB, 0px 0px 0px 4.32208px #F3F4F7;
  border-radius: 21.6104px;
}
.enterprise-p-list{
  padding: 48px 0px;
}
.enterprise-p-list ul{
  padding-left: 0px;
  list-style-type: none;
  margin-bottom: 0px;
}
.enterprise-p-list ul li{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 22px;
  padding-left: 32px;
  position: relative;
}
.enterprise-p-list ul li::before{
  content: '';
  background: url('../images/list-check.svg') no-repeat;
  display: inline-block;
  height: 16px;
  width: 16px;
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.enterprise-p-list ul li:last-child{
  margin-bottom: 0px;
}
.enterprise-action{
  text-align: center;
  margin-bottom: 25px;
}
.refund-content{
  padding-bottom: 40px;
}
.refund-content ul{
  list-style-type: none;
  padding-left: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0px;
}
.refund-content ul li{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
}
.refund-content ul li span{
  font-family: OpenSans-Bold;
}
.refund-content ul li::after {
  content: '';
  background: url('../images/hero-pattern.svg');
  height: 10px;
  width: 10px;
  display: inline-block;
  margin: 0px 16px;
}
.refund-content ul li:last-child::after{
  display: none;
}
.pricing-guid-wrapper{
  display: block;
}
.pricing-guid-wrapper .pricing-guide-box{
  padding: 72px 0px;
}
.pricing-guide-box .pguide-title{
  max-width: 780px;
  margin: 0 auto;
} 
.add-benefits-wrapper{
  padding: 72px 0px;
  background: #F8F9FA;
}
.add-benefit-content{
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 72px;
}
.ab-service-box{
  padding: 16px;
  background: #FFFFFF;
  border: 1px solid #CFD4DB;
  border-radius: 16px;
  width: 23%;
}
.ab-service-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  width: 56px;
  height: 56px;
  background: #F4E8EC;
  border-radius: 100px;
}
.ab-service-text p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 0px;
  margin-top: 32px;
}
.ab-service-text p span{
  font-weight: 700;
}
.pricing-plan-box{
  padding: 56px 0px 0px 0px;
}
.pricing-list-main{
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border: 1px solid #CBCBCB;
  border-radius: 16px;
  display: flex;
  overflow: hidden;
  margin-bottom: 24px;
}
.pricing-list-main:last-child{
  margin-bottom: 0px;
}
.pricing-name-details{
  padding: 24px;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid #E3E2E2;
}
.pricing-content h5{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #141414;
  margin-bottom: 8px;
}
.pricing-content p{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #64748B;
}
.pricing-features{
  padding: 24px;
  flex: 1;
}
.pricing-fet-title{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
}
.pricing-feature-list{
  padding: 32px 0px 32px 0px;
}
.pricing-feature-list ul{
  padding-left: 0px;
  list-style-type: none;
  margin-bottom: 0px;
}
.pricing-feature-list ul li{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 24px;
  padding-left: 24px;
  position: relative;
}
.pricing-feature-list ul li::before{
  content: '';
  background: url('../images/list-check.svg') no-repeat;
  display: inline-block;
  height: 16px;
  width: 16px;
  top: 50%;
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}
.pricing-feature-list ul li:last-child{
  margin-bottom: 0px;
}
.pricing-montly-box{
  padding: 24px;
  width: 320px;
  background: #F8F9FA;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pricing-monthly-content h6{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
}
.pricing-monthly-content p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
}
.monthly-toggle{
  background-color: #EEEEEE;
  display: inline-flex;
  border-radius: 62px;
  margin-bottom: 16px;
}
.toggle-button-monthly {
  padding: 12px 26.5px;
  height: 40px;
  background-color: #EEEEEE;
  color: #2E2E2E;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0px;
  outline: 0px;
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
.toggle-button-monthly.active {
  padding: 12px 26.5px;
  height: 40px;
  background: #2E2E2E;
  border-radius: 100px;
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: -0.005em;
  color: #FFFFFF;
}
.monthly-price-text h4{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 28px;
  color: #141414;
}
.monthly-price-text h4 .mp-save-label{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 16px;
  line-height: 20px;
  color: #FFC828;
}
.upgrade-checkout-action{
  padding-top: 48px;
  padding-bottom: 16px;
}
.upgrade-checkout-action a{
  height: 48px;
  padding: 12px 16px;
  font-weight: 400;
}
.upgrade-checkout-action a:focus,
.upgrade-checkout-action a:active{
  outline: 0;
  box-shadow: none !important;
}
.integration-action a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  gap: 8px;
  width: auto;
  height: 36px;
  background: #FAF3F5;
  border-radius: 200px;
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: -0.005em;
  color: #8E1B3E;
}
.integration-action a:hover{
  color: #8E1B3E;
}
.integration-action a span{
  display: inline-flex;
  vertical-align: middle;
}
.pricing-faq-inner{
  padding: 56px 0px;
}
.pricing-faq-accordian{
  padding-top: 56px;
}
.pricing-faq-accordian .accordion-button{
  padding: 24px 0px;
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.005em;
  color: #141414;
  outline: 0px;
  box-shadow: none;
}
.pricing-faq-accordian .accordion-button::after {
  background-image: url('../images/accordian-plus.svg');
}
.pricing-faq-accordian .accordion-button:not(.collapsed)::after {
  background-image: url('../images/accordian-close.svg');
}
.pricing-faq-accordian .accordion-button:not(.collapsed) {
  color: #141414;
  background-color: transparent;
  padding-bottom: 0px;
}
.pricing-faq-accordian .accordion-body{
  padding: 16px 0px 24px 0px;
}
.pricing-faq-accordian .accordion-item{
  border-bottom: 3px solid #F4E8EC;
}
.contact-support-wrapper{
  padding: 72px 0px 100px 0px;
}
.contact-support-box{
  width: 100%;
  height: 515px;
  background: #2A313A;
  border-radius: 20px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 84.25px 103px 107px 66px;
}
.contact-support-box .contact-support-img{
  position: relative;
  top: -85px;
}
.contact-content {
  max-width: 521px;
  margin-left: 90px;
}
.contact-content h5{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 24px;
}
.contact-content p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  margin-bottom: 32px;
}
.addons-wrapper{
  padding: 72px 0px;
}
.addons-content{
  padding-bottom: 104px;
}
.addons-box{
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}
.addons-image{
  height: 251px;
  width: 100%;
  text-align: center;
}
.addons-title{
  padding: 24px;
}
.addons-title h4{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 28px;
  color: #141414;
  margin-bottom: 12px;
}
.addons-title p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 0px;
}
.pos-pricing-wrapper{
  display: none;
}
.pos-pricing-wrapper .pos-pricing-box{
  padding: 0px 0px 72px 0px;
}
.pos-pricing-wrapper .pos-pricing-box .pguide-title{
  padding-top: 72px;
}
.pos-toggle-wrapper {
  padding-top: 50px;
  text-align: center;
  position: relative;
  padding-bottom: 100px;
}
.pos-toggle{
  background-color: #EEEEEE;
  display: inline-flex;
  border-radius: 62px;
  margin-bottom: 16px;
}
.toggle-button-pos {
  padding: 10.5px 53.5px;
  height: 40px;
  background-color: #EEEEEE;
  color: #2E2E2E;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 0px;
  outline: 0px;
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
}
.toggle-button-pos.active {
  padding: 10.5px 53.5px;
  height: 40px;
  background: #2E2E2E;
  border-radius: 100px;
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.005em;
  color: #FFFFFF;
}
.pos-discount-box{
  position: absolute;
  right: 35%;
  bottom: 30px;
}
.pos-discount-content{
  display: flex;
  align-items: end;
}
.pos-discount-text h6{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #FFC828;
  margin-bottom: 0px;
  position: relative;
  top: -15px;
}
.pos-sub-listingbox{
  padding-bottom: 32px;
}
.pos-plan-wrapper{
  padding-bottom: 72px;
}
.pos-plan-wrapper .pos-plan-listing{
  width: 100%;
  height: auto;
  background: #FFFFFF;
  border: 1px solid #CBCBCB;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  margin-bottom: 24px;
}
.pos-plan-image{
  width: 708px;
  height: auto;
  background: #F8F9FA;
  border-right: 1px solid #E3E2E2;
  flex-shrink: 0;
  position: relative;
}
.pos-plan-content{
  padding: 24px 40px;
  flex-grow: 1;
}
.pos-pricing-d-title{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 24px;
}
.pos-sub-listing{
  display: flex;
  align-items: center;
  column-gap: 16px;
  width: 100%;
  margin-bottom: 16px;
}

.pos-sub-subtittle{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 8px;
}
.pos-sub-main-title{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 24px;
  line-height: 28px;
  color: #141414;
  margin-bottom: 0px;
}
.pos-sub-small-title{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 0px;
}
.pos-sub-action{
  display: flex;
  column-gap: 16px;
}
.pos-sub-action .btn-primary,
.pos-sub-action .btn-outline-primary{
  height: 48px;
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  padding: 12px 16px;
}
.pos-sub-action .btn-primary:focus,
.pos-sub-action .btn-outline-primary:focus,
.pos-sub-action .btn-primary:active,
.pos-sub-action .btn-outline-primary:active{
  padding: 12px 16px !important;
  box-shadow: none;
  outline: 0;
}
.pos-pd-box-main {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.pos-hidden{
  display: none;
}
.new-launch-badge{
  background: url('../images/new-launch-bg.svg') no-repeat;
  height: 84px;
  width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 0px;
  filter: drop-shadow(0px 55px 22px rgba(255, 200, 40, 0.03)) drop-shadow(0px 31px 19px rgba(255, 200, 40, 0.09)) drop-shadow(0px 14px 14px rgba(255, 200, 40, 0.16)) drop-shadow(0px 3px 8px rgba(255, 200, 40, 0.18));
}
.new-launch-badge p{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #000000;
}
.sticky-pricing{
  position: sticky;
  top: 0px;
  background-color: #FFFFFF;
  z-index: 1;
}
.integration-plan-main{
  padding-top: 35px;
  border-top: 1px solid #A9A9AA;
}
.integration-title{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.integration-content{
  max-width: 329px;
}
.integration-content h6{
  font-family: OpenSans-Semibold;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #474747;
  margin-bottom: 8px;
}
.integration-content p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #1D2127;
  margin-bottom: 0px;
}
.hosted-payment-box{
  padding-top: 32px;
}
.hosted-payment-listing .hosted-payment-header{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.hosted-payment-listing .hosted-payment-header h6{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 28px;
  display: flex;
  align-items: center;
  color: #0C0E0F;
}
.hosted-payment-listing .hosted-payment-header a{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 9.75px;
  gap: 8px;
  height: 22px;
  border: 0.5px solid #8E1B3E;
  border-radius: 4999.5px;
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 500;
  font-size: 8.57812px;
  line-height: 14px;
  color: #000000;
}
.hosted-payment-listing .hosted-payment-header a span{
  display: inline-flex;
}
.hosted-payment-body{
  max-width: 450px;
}
.hosted-payment-body p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #616161;
  margin-bottom: 8px;
}
.hosted-price h4{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  color: #1D2127;
  margin-bottom: 0px;
}
.hosted-price h4 sub{
  bottom: 0;
}
.hosted-price h4 sub span{
  color: #FFCB30;
}
.integration-plan-main {
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}
.integration-plan-main.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
}
.pricing-feat-inner{
  max-height: 516px;
  overflow: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
}
.pricing-feat-inner::-webkit-scrollbar{
  display: none;
}

/* NEW PRICING SECTION CSS START */
.sd-pricing-wrapper{
  padding: 56px 0px;
}
.sd-pricing-inner{
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.sd-pricing-list{
  padding: 24px;
  border: 1px solid #CBCBCB;
  border-radius: 16px;
  width: 48.70%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.sd-p-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border-radius: 100px;
  background: #F4E8EC;
  height: 56px;
  width: 56px;
}
.sd-price-content{
  padding: 32px 0px;
}
.sd-price-content h5{
  color: #141414;
  font-family: OpenSansCondensed-ExtraBold;
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  margin-bottom: 16px;
}
.sd-price-content p{
  color: #141414;
  font-family: OpenSans-Regular;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 150% */
  letter-spacing: -0.08px;
  margin-bottom: 0px;
}
.sd-startnow-action{
  margin-top: 32px;
}
.sd-startnow-action a{
  padding: 12px 28px;
  height: 48px;
}
.available-opt-main{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}
.available-opt-title h6{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 0px;
}
.sd-pgateway-box{
  display: flex;
  gap: 24px;
}
.sd-pay-content{
  border-right: 1px solid #9CA3AF;
  padding-right: 24px;
}
.sd-pay-content:last-child{
  border: none;
}
.sd-pay-title{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sd-pay-title h6{
  color: #141414;
  font-family: OpenSansCondensed-ExtraBold;
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 28px;
  margin-bottom: 0px;
}

/* NEW PRICING SECTION CSS END */

/*PRICING CSS END*/

/* SADAD SELF CSS START */
.sadad-self-hero{
  background: url('./../images/sadad-self-bg.png') no-repeat;
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
}
.sadad-self-content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sadad-self-herotitle{
  max-width: 594px;
}
.sadad-self-herotitle h4{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.sadad-self-herotitle h6{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  margin-bottom: 32px;
}
.sadad-self-herotitle p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #F0F1F3;
  margin-bottom: 32px;
}
.why-choose-wrapper{
  padding: 72px 0px;
}
.ss-common-title{
  padding-bottom: 72px;
}
.ss-main-title{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: -0.02em;
  color: #141414;
  margin-bottom: 24px;
}
.ss-sub-title{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 0px;
  max-width: 720px;
  margin: 0 auto;
}
.ss-listing-box{
  padding-bottom: 72px;
}
.ss-desc-list{
  max-width: 574px;
}
.ss-desc-content{
  display: flex;
  align-items: center;
  gap: 16px;
}
.ss-desc-content {
  margin-bottom: 24px;
}
.ss-desc-content p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #141414;
  margin-bottom: 0px;
}
.ss-q-listing-img img{
  width: 100%;
}
.technical-sp-main{
  background: url('../images/technical-poster-bg.webp') no-repeat;
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
}
.technical-sp-main .ss-common-title{
  padding-top: 48px;
  padding-bottom: 32px;
}
.technical-sp-main .ss-common-title .ss-sub-title{
  max-width: 650px;
}
.technical-list-box{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 49px;
  padding-bottom: 94px;
}
.technical-list-left{
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 48px;
}
.specification-box{
  display: flex;
  flex-direction: column;
}
.speci-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10.2857px;
  width: 48px;
  height: 48px;
  background: #F4E8EC;
  border-radius: 85.7143px;
}
.speci-content{
  margin-top: 16px;
}
.speci-content h5{
  font-family: OpenSans-Bold;
  font-style: normal;
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0.318621px;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.speci-content p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #FFFFFF;
  margin-bottom: 0px;
}
.technical-list-right {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 48px;
}
.technical-list-right .specification-box{
  align-items: flex-end;
}
.technical-list-right .speci-content{
  text-align: right;
}
.qatar-key-wrapper{
  padding: 72px 0px;
}
.qatar-key-wrapper .ss-sub-title{
  max-width: 850px;
}
.rtc-main-box{
  padding: 91px 0px 96px 0px;
  background: #4E0F22;
}
.rtc-cta-content h6{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 48px;
  line-height: 40px;
  text-align: center;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: 35px;
}
.rtc-cta-content p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #FFFFFF;
  max-width: 900px;
  margin: 0 auto;
}
.rtc-action{
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 38px;
}
.req-demo-cta{
  background-color: #8e1b3e;
  padding: 16px 24px;
  border-radius: 200px;
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  display: flex;
  gap: 10px;
  align-items: center;
}
.req-demo-cta:hover,
.req-demo-cta:focus{
  background-color: #fec82e;
  border-color: #fec82e;
}
.expert-p-btn:hover,
.expert-p-btn:focus{
  background-color: #fec82e !important;
  border-color: #fec82e;
  color: #121212 !important;
}
.req-demo-cta:hover span path,
.req-demo-cta:focus span path{
  stroke: #121212;
}
.expert-p-btn:hover span path,
.expert-p-btn:focus span path{
  stroke: #121212;
}
.rtc-action span{
  display: inline-flex;
}
.rtc-action .expert-p-btn{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px 24px;
  background: #FAF3F5;
  border-radius: 200px;
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #8E1B3E;
}
.rtc-action .btn-primary:focus{
    padding: 16px 24px !important;
}
.download-b-btn{
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 16px 24px;
  background: transparent;
  border-radius: 200px;
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #FFFFFF;
  border-color: #FFFFFF;
}
.download-b-btn:hover,
.download-b-btn:focus{
  background-color: #fec82e !important;
  border-color: #fec82e;
  color: #121212 !important;
}
.download-b-btn:hover span path,
.download-b-btn:focus span path{
  stroke: #121212;
}
.sadad-container{
  max-width: 1380px;
  margin: 0 auto;
  padding: 0px 1.5rem;
}
.qatar-k-slider-main .owl-nav{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 72px;
}
.qatar-k-slider-main .owl-carousel .owl-stage-outer {
    width: 100vw;
    margin: 0 auto;
    padding: 0;
}
.qatar-k-slider-main .owl-prev span,
.qatar-k-slider-main .owl-next span{
  display: none;
}
.qatar-k-slider-main .owl-prev,
.qatar-k-slider-main .owl-next{
  border: 2px solid #E8B624 !important;
  width: 40px;
  height: 40px;
  position: relative;
  border-radius: 33.5px;
  outline: 0;
}
.qatar-k-slider-main .owl-prev.disabled,
.qatar-k-slider-main .owl-next.disabled{
  border: 2px solid #CFD4DB !important;
  outline: 0;
}
.qatar-k-slider-main .owl-prev::before{
  content: '';
  background: url('../images/prev-arrow-active.svg') no-repeat;
  background-position: center !important;
  height: 11px;
  width: auto;
  display: block;
}
.qatar-k-slider-main .owl-prev.disabled::before{
  background: url('../images/prev-arrow.svg') no-repeat;
}
.qatar-k-slider-main .owl-next::before{
  content: '';
  background: url('../images/prev-arrow-active.svg') no-repeat;
  background-position: center !important;
  height: 11px;
  width: auto;
  display: block;
  transform: rotate(180deg);
}
.qatar-k-slider-main .owl-next.disabled::before{
  background: url('../images/prev-arrow.svg') no-repeat;
}
.qatar-k-slider-main .item{
  position: relative;
  overflow: hidden;
}
.sd-item-content{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    overflow: hidden;
    border-radius: 11.67px;
}
.sd-item-content a{
  font-family: OpenSansCondensed-ExtraBold;
  font-style: normal;
  font-weight: 800;
  font-size: 23.3491px;
  line-height: 23px;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  display: block;
}
.sd-item-content p{
  font-family: OpenSans-Regular;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: -0.005em;
  color: #FFFFFF;
}
.sd-in-content{
  transform: translateY(73%);
  transition: transform 0.5s ease;
  margin: 0;
  padding: 27px 27px 25px 27px;
  border-radius: 11.67px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.54%, #000000 100%);
  min-height: 250px;
}
.sd-item-box {
  position: relative;
  overflow: hidden;
}
.sd-item-box::before{
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 74.21%, rgba(0, 0, 0, 0.8) 93.93%);
  z-index: 0;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 11.67px;
}
.item:hover .sd-item-content .sd-in-content {
  transform: translateY(0%);
}


/* SADAD SELF CSS END */

/* ===========MEDIA QUIRY START========== */
@media (max-width: 1400px) {
   /* New Pricing Page Css Start */
  .sd-pricing-list {
    width: 48.70%;
  }
  /* New Pricing Page Css End */
}
@media (max-width: 1200px) {
/* header start */
.new_header_mainbox {
  grid-template-columns: 100px 1fr;
}
.header .item-right {
  grid-column: 2/3;
  grid-row: 1/2;
  padding: 20px 0 0 0;
}
.header .item-left {
  grid-row: 1/2;
  grid-column: 1/2;
}
.header .item-center {
  grid-column: 1/3;
  grid-row: 2/3;
  justify-self: center;
}
.header .menu>ul>li .single-column-menu {
  min-width: 280px;
  max-width: 320px;
}
.header .menu>ul>li .sub-menu {
  top: 125px;
}
/* header ends  */
/* Home Page */
.new_tool_mainbox {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
/* Home ends */
/*About us page start*/
.new_what_we_graybox {
  padding: 20px;
}
.about_new_why_mainbox {
  grid-template-columns: repeat(2, 1fr);
}
/*About us page ends*/
/* Home page start */
.new_home_main .about_banner_section {
  margin: 64px 0 0 0;
}
.new_sadad_card_mainbox {
  gap: 20px;
}
.pos_rest_contentbox {
  padding: 0 0px 0 20px;
}
/* Home page ends  */
/* News and media start */
.news .card-body {
  max-height: 335px;
}
/* News and media ends  */
/* legal start */
.legal_menu_mainbox {
  grid-template-columns: 200px 1fr 200px;
}
.leagal_empty_box {
  grid-template-columns: 200px 1fr;
}
/* legal ends */
/* Quality and security start */
.quality_security_main .certifications_card_box{
  min-height: 380px;
}
.quality_security_main .certifications_card_img span{
  padding: 10px 10px;
  font-size: 14px;
}
/* Quality and security ends  */
 /* New Pricing Page Css Start */
  .sd-pricing-list {
    width: 48.25%;
  }
  /* New Pricing Page Css End */

}
@media (min-width: 1150px) and (max-width: 1198.99px){
   /*Pricing Css Start*/
   .ab-service-box {
    width: 30%;
  }
  .pricing-name-details {
    max-width: 240px;
  }
  .standard-plan-box {
    width: 825px;
  }
  .pricing-montly-box {
    width: 280px;
  }
  .upgrade-checkout-action a {
    font-size: 14px;
  }
  .contact-support-box .contact-support-img {
    position: absolute;
    top: -140px;
    max-width: 300px;
  }
  .contact-content {
    max-width: 521px;
    margin-left: auto;
    padding-left: 140px;
  }
  .contact-support-box {
    height: auto;
    padding: 50px 103px 50px 66px;
  }
  .integration-title {
    flex-direction: column;
    gap: 16px;
  }
  .pos-plan-image {
    width: 510px;
  }
   /* New Pricing Page Css Start */
  .sd-pricing-list {
    width: 48.25%;
  }
  /* New Pricing Page Css End */
   /*Pricing Css End*/
}
@media (max-width: 1149.98px) {
  .about_banner_box img{
      min-height: 470px;
      object-fit: cover;
  }
  .legal_right_menubox {
      top: 80px;
  }
  .legal_left_menubox{
      top: 80px;
  }
   /*Pricing Css Start*/
  .ab-service-box {
    width: 30%;
  }
  .pricing-name-details {
    max-width: 240px;
  }
  .standard-plan-box {
    width: 825px;
  }
  .pricing-montly-box {
    width: 280px;
  }
  .upgrade-checkout-action a {
    font-size: 14px;
  }
  .contact-support-box .contact-support-img {
    position: absolute;
    top: -140px;
    max-width: 300px;
  }
  .contact-content {
    max-width: 521px;
    margin-left: auto;
    padding-left: 140px;
  }
  .contact-support-box {
    height: auto;
    padding: 50px 103px 50px 66px;
  }
  .integration-title {
    flex-direction: column;
    gap: 16px;
  }
  .pos-plan-image {
    width: 510px;
  }
   /* New Pricing Page Css Start */
  .sd-pricing-list {
    width: 48.25%;
  }
  /* New Pricing Page Css End */
   /*Pricing Css End*/
}
@media (max-width: 991.98px) {
  /* header */
  .header .item-center {
      order: 3;
      flex: 0 0 100%;
  }
  .header .item-left,
  .header .item-right {
      flex: 0 0 auto;
  }
  .header .mobile-menu-trigger {
      display: flex;
      height: 30px;
      width: 30px;
      margin-left: 15px;
      cursor: pointer;
      align-items: center;
      justify-content: center;
  }
  .header .mobile-menu-trigger span {
      display: block;
      height: 2px;
      background-color: #333333;
      width: 24px;
      position: relative;
  }
  .header .mobile-menu-trigger span:before,
  .header .mobile-menu-trigger span:after {
      content: '';
      position: absolute;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #333333;
  }
  .header .mobile-menu-trigger span:before {
      top: -6px;
  }
  .header .mobile-menu-trigger span:after {
      top: 6px;
  }
  .header .item-right {
      align-items: center;
  }
  .header .menu {
      position: fixed;
      width: 320px;
      background-color: #ffffff;
      left: 0;
      top: 0;
      height: 100%;
      overflow: hidden;
      transform: translate(-100%);
      transition: all 0.5s ease;
      z-index: 1099;
  }
  .header .menu.active {
      transform: translate(0%);
  }
  .header .menu>ul>li {
      line-height: 1;
      margin: 0;
      display: block;
      padding: 0;
  }
  .header .menu>ul>li>a {
      line-height: 50px;
      height: 50px;
      padding: 0 50px 0 15px;
      display: block;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  .header .menu>ul>li>a i {
      position: absolute;
      height: 50px;
      width: 50px;
      top: 0;
      right: 0;
      text-align: center;
      line-height: 50px;
      transform: rotate(-90deg);
  }
  .header .menu .mobile-menu-head {
      display: flex;
      height: 50px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      justify-content: space-between;
      align-items: center;
      position: relative;
      z-index: 501;
      position: sticky;
      background-color: #ffffff;
      top: 0;
  }
  .header .menu .mobile-menu-head .go-back {
      height: 50px;
      width: 50px;
      border-right: 1px solid rgba(0, 0, 0, 0.1);
      cursor: pointer;
      line-height: 50px;
      text-align: center;
      color: #000000;
      font-size: 16px;
      display: none;
  }
  .header .menu .mobile-menu-head.active .go-back {
      display: block;
  }
  .header .menu .mobile-menu-head.active .go-back i{
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100%;
  }
  .header .menu .mobile-menu-head .current-menu-title {
      font-size: 15px;
      font-weight: 500;
      color: #000000;
  }
  .header .menu .mobile-menu-head .mobile-menu-close {
      height: 50px;
      width: 50px;
      border-left: 1px solid rgba(0, 0, 0, 0.1);
      cursor: pointer;
      line-height: 50px;
      text-align: center;
      color: #000000;
      font-size: 25px;
  }
  .header .menu .menu-main {
      height: 100%;
      overflow-x: hidden;
      overflow-y: auto;
  }
  .header .menu>ul>li .sub-menu.mega-menu,
  .header .menu>ul>li .sub-menu {
      visibility: visible;
      opacity: 1;
      position: absolute;
      box-shadow: none;
      margin: 0;
      padding: 15px;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding-top: 65px;
      max-width: none;
      min-width: auto;
      display: none;
      transform: translateX(0%);
      overflow-y: auto;
  }
  .header .menu>ul>li .sub-menu.active {
      display: block;
  }
  @keyframes slideLeft {
      0% {
          opacity: 0;
          transform: translateX(100%);
      }
      100% {
          opacity: 1;
          transform: translateX(0%);
      }
  }
  @keyframes slideRight {
      0% {
          opacity: 1;
          transform: translateX(0%);
      }
      100% {
          opacity: 0;
          transform: translateX(100%);
      }
  }
  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item img {
      margin-top: 0;
  }
  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center .title {
      margin-bottom: 20px;
  }
  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item.text-center:last-child .title {
      margin-bottom: 0px;
  }
  .header .menu>ul>li .sub-menu.mega-menu-column-4>.list-item {
      flex: 0 0 100%;
      padding: 0px;
  }
  .header .menu>ul>li .sub-menu>ul>li>a,
  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul>li>a {
      display: block;
  }
  .header .menu>ul>li .sub-menu.mega-menu>.list-item>ul {
      margin-bottom: 15px;
  }
  .menu-overlay {
      position: fixed;
      background-color: rgba(0, 0, 0, 0.5);
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: 1098;
      visibility: hidden;
      opacity: 0;
      transition: all 0.5s ease;
  }
  .menu-overlay.active {
      visibility: visible;
      opacity: 1;
  }
  .header .item-left {
      grid-row: auto;
  }
  .new_header_mainbox {
      grid-template-columns: 100px 1fr 30px;
      justify-items: center;
  }
  .header .item-center {
      grid-column: 3/4;
      grid-row: 1/2;
  }
  .header .item-right {
      padding: 0;
  }
  .header {
      padding: 10px 0;
  }
  .new_sublisting_grid {
      gap: 0px;
      flex-direction: column;
  }
  /* Header ends */
  /* About us start */
  .vision-mission-value {
      padding: 20px 0 0 0;
  }
  .new_value_mainbox {
      grid-template-columns: repeat(2, 1fr);
  }
  .new_value_listing:nth-child(2), 
  .new_value_listing:nth-child(4) {
      border-right: 0;
      border-bottom: 1px solid #ccc;
  }
  .new_value_listing:nth-child(3) {
      border-bottom: 1px solid #ccc;
      border-right: 1px solid #ccc;
  }
  /* About us start */
  /* Home page start */
  .banner_heading {
      font-size: 25px;
  }
  .new_sub_heading {
      font-size: 16px;
  }
  .new_home_main .about_banner_section {
      margin: 0 0 0 0;
  }
  .big_heading {
      font-size: 35px;
  }
  .big_heading span {
      font-size: 40px;
  }
  .new_heading {
      font-size: 25px;
  }
  .new_sadad_card_contentbox {
      height: 50%;
  }
  .new_choose_section .new_value_listing:nth-child(7) {
      border-left: 0;
      grid-column: 1/2;
  }
  .legal_main .about_banner_content .new_sub_heading {
      font-size: 18px;
      margin: 0 0 5px 0;
  }
  /* Home page ends  */
  /* News and media start */
  .news .card-body {
      max-height: 250px;
  }
  /* News and media ends  */
  /* legal start */
  .legal_menu_mainbox {
      grid-template-columns: 150px 1fr 150px;
  }
  .legal_content_mainbox {
      padding: 60px 20px 60px 20px;
  }
  .legal_lists {
      scroll-margin-top: 100px;
  }
  .legal_para p {
      font-size: 14px;
  }
  .legal_para p a {
      text-decoration: none;
  }
  /* legal ends  */
  /* Quality and security start */
  .quality_security_main .certifications_card_box {
      padding: 20px;
      min-height: inherit;
      margin: 0 0 10px 0;
  }
  .quality_security_main section.quality-security .content{
      top: 110px;
  }
  .quality_security_main section.quality-security .content {
      top: 40% !important;
  }
  .quality_security_main .encryption_mainbox {
      grid-template-columns: 1fr 1fr;
  }
  .quality_security_main .encryption_box{
      margin-bottom:15px;
  }
  .quality_security_main .manegment-system .fraud_heading{
      padding: 0 0 20px 0 !important;
  }
  /* Quality and security ends  */
  footer .copyright {
      flex-direction: column-reverse;
      gap: 20px;
  }
  /*Pricing Css Start*/
  .pricing-wrapper .container{
    padding: 0px 16px;
  }
  .pricing-wrapper .pricing-hero .pricing-inner {
    padding: 64.72px 0px 0px 0px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box {
    padding: 0;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_heading {
    font-size: 32px;
    line-height: 32px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_para {
    font-size: 16px;
    line-height: 20px;
  }
  .pricing-fees-detail .pricing-fees-list .pricing-fees-title p {
    font-size: 14px;
    line-height: 24px;
  }
  .pricing-fees-icon svg{
    height: 16px;
    width: 16px;
  }
  .pricing-fees-detail {
    flex-wrap: wrap;
    column-gap: 5px;
  }
  .pricing-wrapper .pricing-hero {
    background-size: cover;
    height: 333px;
    max-height: 333px;
  }
  .pricing-fees-detail .pricing-fees-list {
    column-gap: 5px;
  }
  .pricing-fees-detail .pricing-fees-list::after {
    margin: 0px 0px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content {
    margin-bottom: 24px;
  }
  .oppos-toggle {
    height: 60px;
  }
  .toggle-button.active {
    padding: 16px 12px;
    height: 50px;
    font-size: 14px;
    line-height: 22px;
  }
  .toggle-button {
    padding: 16px 12px;
    height: 50px;
    font-size: 14px;
    line-height: 22px;
  }
  .explore-pricing {
    padding: 48px 40.5px 0px 40.5px;
  }
  .explore-pricing .oppos-title{
    margin-bottom: 16px !important;
  }
  .oppos-title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 16px !important;
  }
  .oppos-subtitle {
    font-size: 14px;
    line-height: 24px;
  }
  .standard-palnwrap {
    display: block;
  }
  .standard-plan-box {
    padding: 24px;
    width: 100%;
    border: 4px solid rgba(142, 27, 62, 0.3);
    margin-bottom: 24px;
  }
  .standard-plan-title .oppos-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .plan-card-box .plan-card-list {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .plan-card-box .plan-card-list .pcard-img-box {
    display: block;
  }
  .pcard-content .text-end{
    text-align: left !important;
  }
  .plan-card-box .plan-card-list .pcard-img-box .pcard-img {
    margin-bottom: 8px;
  }
  .pcard-content p {
    font-size: 14px;
  }
  .plan-card-box .btn-primary{
    width: 100%;
    font-size: 16px;
    padding: 12px 30px;
  }
  .enterprise-p-box {
    padding: 24px;
    width: 100%;
  }
  .enterprise-p-list {
    padding: 34px 0px 48px 0px;
  }
  .enterprise-p-list ul li {
    font-size: 14px;
    margin-bottom: 16px;
    padding-left: 32px;
  }
  .enterprise-action {
    margin-bottom: 0;
  }
  .enterprise-action .btn-primary{
    width: 100%;
    font-size: 16px;
    padding: 12px 30px;
  }
  .standard-paln-main {
    padding: 24px 0px;
  }
  .refund-content ul {
    display: block;
    text-align: center;
  }
  .refund-content ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .refund-content ul li::after {
    display: block;
    margin: 8px auto;
  }
  .refund-content {
    padding-bottom: 0;
  }
  .pricing-plan-box {
    padding: 24px 0px 0px 0px;
  }
  .pricing-list-main {
    flex-direction: column;
  }
  .pricing-name-details {
    max-width: 100%;
    row-gap: 48px;
    border-right: 0px;
    border-bottom: 1px solid #E3E2E2;
  }
  .pricing-content h5 {
    font-size: 24px;
  }
  .pricing-content p {
    font-size: 14px;
  }
  .pricing-action .btn-primary{
    padding: 9.5px 33px !important;
    font-weight: 500;
    font-size: 14px;
}
  .pricing-feature-list {
    padding: 24px 0px 0px 0px;
  }
  .pricing-feature-list ul li {
    font-size: 14px;
    margin-bottom: 16px;
}
.pricing-montly-box {
  padding: 24px;
  width: 100%;
  border-top: 1px solid #E3E2E2;
  row-gap: 48px;
}
.pricing-monthly-content h6 {
  font-size: 16px;
}
.pricing-monthly-content p {
  font-size: 16px;
}
.monthly-price-text h4 {
  font-size: 20px;
  margin-bottom: 0px;
}
.monthly-price-text h4 .mp-save-label {
  font-size: 14px;
}
.pricing-feat-inner {
  max-height: 650px;
}
.integration-action{
  margin-top: 16px;
}
.upgrade-checkout-action {
  padding-top: 24px;
  padding-bottom: 0;
}
.add-benefits-wrapper {
  padding: 48px 0px;
}
.add-benefit-content {
  padding-top: 32px;
  gap: 16px;
}
.ab-service-box {
  width: 100%;
  text-align: center;
}
.ab-service-icon {
  padding: 6.86px;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}
.ab-service-icon svg{
  width: 18.86px;
}
.ab-service-text p {
  font-size: 16px;
  margin-top: 16px;
}
.pricing-faq-accordian {
  padding: 16px 0px 0px 0px;
}
.pricing-faq-accordian .accordion-button {
  padding: 16px 0px;
  font-size: 16px;
}
.pricing-faq-accordian .accordion-body {
  padding: 8px 0px 16px 0px;
}
.contact-support-box {
  flex-direction: column;
  height: auto;
  padding: 56px 24px;
}
.contact-support-box .contact-support-img {
  top: -150px;
  width: 300px;
  height: 300px;
  position: absolute;
}
.contact-content {
  max-width: 100%;
  margin-left: 0;
  padding-top: 145px;
  padding-left: 0px;
}
.contact-content h5 {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}
.contact-content p {
  font-size: 16px;
  margin-bottom: 24px;
  text-align: center;
}
.contact-action .btn-primary{
  width: 100%;
}
.contact-support-wrapper {
  padding: 150px 0px 72px 0px;
}
.pos-plan-wrapper .pos-plan-listing {
  flex-direction: column;
}
.sticky-pricing {
  position: relative;
}
.pos-toggle-wrapper {
  padding-top: 16px;
  padding-bottom: 72px;
}
.pos-discount-text h6 {
  font-size: 16px;
  top: -20px;
}
.pos-arrow-image svg{
  width: 72px;
}
.pos-discount-box {
  right: 32px;
  bottom: 12px;
}
.pos-plan-image {
  width: 100%;
}
.pos-plan-main{
  overflow-x: auto;
  padding: 0px 16px;
}
.pos-plan-wrapper {
  padding-bottom: 0;
  display: flex;
  width: 1550px;
  column-gap: 16px;
}
.addons-box {
  margin-bottom: 0px;
}
.addons-image {
  height: 230px;
}
.addons-title h4 {
  font-size: 17px;
  line-height: 20px;
  color: #141414;
  margin-bottom: 12px;
}
.addons-title p {
  font-size: 15px;
}
.pos-pricing-wrapper .pos-pricing-box .pguide-title {
  padding: 72px 16px 0px 16px;
}
.addons-content {
  padding-bottom: 32px;
}
.addons-content {
  padding: 0px 16px 32px 16px;
}
.pos-pricing-wrapper .pos-pricing-box {
  padding: 0px 0px 72px 0px;
}
.pos-plan-content {
  padding: 16px;
}
.pos-sub-subtittle {
  font-size: 14px;
}
.pos-sub-main-title {
  font-size: 20px;
}
.pos-sub-small-title {
  font-size: 16px;
}
.pos-sub-action .btn-primary, 
.pos-sub-action .btn-outline-primary {
  padding: 12px 25.5px;
  width: 50%;
}
.new-launch-badge p {
  font-size: 14px;
}
.pos-plan-details{
  padding-bottom: 32px;
}
.pos-plan-wrapper .pos-plan-listing {
  margin-bottom: 0px;
}
.pos-plan-details .container{
  padding: 0px;
}

 /* New Pricing Page Css Start */
  .sd-pricing-list {
    width: 100%;
  }
  .sd-pricing-inner {
    gap: 24px;
  }
  .sd-price-content h5 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .sd-price-content p {
    font-size: 14px;
  } 
  .sd-pgateway-box {
    flex-wrap: wrap;
  }
  .sd-pay-content {
    border-bottom: 1px solid #9CA3AF;
    border-right: 0px;
    padding-right: 0px;
    padding-bottom: 24px;
  }
  .sd-price-content {
    padding: 24px 0px;
  }
  .sd-startnow-action {
    margin-top: 24px;
  }
  .sd-p-icon {
    height: 46px;
    width: 46px;
  }
  .sd-p-icon svg{
    height: 22px;
  }
  .available-opt-title h6 {
    font-size: 12px;
  }
  .available-opt-main .monthly-toggle {
    margin-bottom: 0;
  }
  /* New Pricing Page Css End */
  /*Pricing Css End*/

     /* Sadad Self Css Start */
.sadad-self-page .container{
  padding: 0px 16px;
}
.sadad-self-hero {
  background-position: left;
  height: auto;
}
.sadad-self-content {
  flex-direction: column;
  padding-top: 56px;
  padding-bottom: 26px;
}
.sadad-self-herotitle h4{
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  letter-spacing: -0.02em;
}
.sadad-self-herotitle h6{
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.sadad-self-herotitle p{
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.005em;
}
.request-order-action{
  text-align: center;
}
.request-order-action .btn-primary{
  padding: 9.5px 16px;
  font-size: 14px;
}
.sadad-self-hero-img{
  margin-top: 41px;
}
.why-choose-wrapper {
  padding: 64px 0px;
}
.ss-main-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}
.ss-sub-title {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  max-width: 100%;
}
.why-choose-wrapper .ss-common-title {
    padding-bottom: 0px;
}
.mobile-order{
  order: 1;
}
.ss-q-listing-img{
  margin-bottom: 24px;
  padding-top: 40px;
}
.ss-desc-content {
    margin-bottom: 8px;
}
.ss-desc-content p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0px;
}
.ss-listing-box {
    padding-bottom: 40px;
}
.ss-qatar-listing:last-child .ss-listing-box{
  padding-bottom: 0px;
}
.technical-list-middle{
  display: none;
}
.speci-icon {
  padding: 6.86px;
  width: 32px;
  height: 32px;
}
.speci-icon span svg{
  height: 18px;
}
.speci-content h5 {
  font-size: 16px;
  line-height: 25.49px;
  margin-bottom: 0px;
}
.speci-content p {
  font-size: 14px;
}
.technical-list-box{
  padding: 32px 8px 48px 8px;
  flex-direction: column;
  gap: 32px;
}
.technical-list-left {
    align-items: center;
}
.technical-list-left {
    gap: 32px;
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.specification-box {
    align-items: center;
    width: 170px;
}
.technical-list-right .specification-box {
    align-items: center;
}
.technical-list-right .speci-content {
    text-align: center;
}
.technical-list-right {
    align-items: center;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.qatar-key-wrapper {
    padding: 64px 0px;
}
.rtc-main-box {
    padding: 56px 24px;
}
.rtc-cta-content h6 {
    font-size: 32px;
    margin-bottom: 24px;
}
.rtc-cta-content p {
  font-size: 16px;
  max-width: 100%;
}
.rtc-action {
  gap: 16px;
  flex-direction: column;
  margin-top: 24px;
  padding: 0px 30px;
}
.rtc-action .req-demo-cta {
    width: 250px;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.rtc-action .req-demo-cta svg,
.rtc-action .expert-p-btn svg,
.rtc-action .download-b-btn svg{
  height: 20px;
}
.rtc-action .expert-p-btn{
    width: 250px;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.rtc-action .download-b-btn{
    width: 250px;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.sadad-self-herotitle {
    max-width: 100%;
}
.ss-desc-list {
    max-width: 100%;
}
  /* Sadad Self Css End */
}
@media (max-width: 767.98px) {
  /* About page start */
  .new_what_listing {
      padding: 20px;
  }
  .new_logo_mainbox {
      grid-template-columns: repeat(2, 1fr);
  }
  .meet_our_team_section .new_heading {
      margin: 20px 0 20px 0;
  }
  .about_us_main .our-methodology {
      background-size: cover;
      background-position: center center;
      padding: 30px 10px !important;
  }
  .about_us_main .vision-mission-value .new_cut {
      margin: 0px 0px 20px 0px
  }
  /* .about_us_main .about_banner_image img {
      max-height: 400px;
      object-fit: cover;
      object-position: 65%;
      width: 100%;
  } */
  /* About page ends */
  /* Home page start */
  .about_banner_content p {
      font-size: 14px;
  }
  .banner_heading {
      margin: 0 0 20px 0 !important;
  }
  .big_heading {
      font-size: 25px;
  }
  /* .new_payment_gateway_imgbox {
      margin: 20px 0 0 0;
  } */
  .big_heading {
      font-size: 25px;
  }
  .big_heading span {
      font-size: 30px;
  }
  .pos_terminal_leftbox {
      margin: 20px 0 0 0;
  }
  .home_soft_pos_imgbox {
      margin: 20px 0 0 0;
  }
  .pos_rest_contentbox {
      padding: 0;
      gap: 20px;
  }
  .pos_rest_mainbox {
      grid-template-columns: 1fr;
  }
  .home_soft_pos_section .new_why_content_box {
      margin: 20px 0 0 0;
  }
  .developer_secondbox {
      gap: 0px;
  }
  /* Home page ends  */
  /* News and media start */
  .news_media_main .news .card-body {
      max-height: 352px;
  }
  /* News and media ends  */
  /* Legals start */
  .legal_empty_leftbox {
      background-color: #ffffff;
  }
  .legal_menu_mainbox {
      grid-template-columns: 1fr 150px;
  }
  .legal_left_menubox {
      position: fixed;
      top: 80px;
      left: 0;
      transform: translateX(-300px);
      padding: 20px;
      height: fit-content;
      width: 300px;
      transition: transform 0.5s ease-in-out;
      z-index: 999;
  }
  .toggle_img {
      position: absolute;
      right: -40px;
      top: 150px;
      background-color: #8e1b3e;
      padding: 6px;
      width: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 0 12px 12px 0;
  }
  .legal_left_menubox.toggle_active {
      transform: translateX(0);
  }
  .toggle_active .toggle_img svg {
      transform: rotate(180deg);
  }
  .legal_content_mainbox {
      padding: 60px 20px 60px 0px;
  }
  /* Legals ends  */
  /* Quality and security start */
  .quality_security_main .certifications_card_content {
      padding: 20px 0 0 0;
      text-align:center;
  }
  .quality_security_main .certifications_card_img span {
      padding: 10px 20px;
  }
  .quality_security_main .section {
      padding: 30px 0px 30px 0px;
  }
  .quality_security_main .section-top {
      padding-top: 0px !important;
  }
  .quality_security_main .Sadad-certifications {
      padding: 60px 0px 60px 0px;
  }
  .quality_security_main .protect-your-data {
      padding: 60px 0px 60px 0px;
  }
  .quality_security_main .hours24_section {
      padding: 30px 0 0px 0;
  }
  .quality_security_main .spacing_row {
      padding: 40px 0px 0px 0px;
  }
  /* .manegment-system{
      padding: 30px 0px 30px 0px;
  } */
  .quality_security_main .manegment-system .new_heading {
      margin: 0 !important;
      padding: 0;
  }
  .quality_security_main .new_heading {
      font-family: OpenSans-Bold;
      font-size: 25px;
      color: #000000;
      margin: 0 0 20px 0;
  }
  .quality_security_main .new_sub_heading {
      font-size: 18px;
  }
  .quality_security_main .banner_heading {
      font-family: OpenSans-Bold;
      font-size: 25px;
      margin: 0 0 20px 0;
      color: #ffffff;
  }
  .quality_security_main .manegment-system img{
      margin: 0 0 15px 0;
  }
  .new_pay_method_bigbox_new {
      margin: 30px 0 0 0;
  }
  /* Quality and security ends  */
  /*Pricing Css Start*/
  .pricing-wrapper .container{
    padding: 0px 16px;
  }
  .pricing-wrapper .pricing-hero .pricing-inner {
    padding: 64.72px 0px 0px 0px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box {
    padding: 0;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_heading {
    font-size: 32px;
    line-height: 32px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_para {
    font-size: 16px;
    line-height: 20px;
  }
  .pricing-fees-detail .pricing-fees-list .pricing-fees-title p {
    font-size: 14px;
    line-height: 24px;
  }
  .pricing-fees-icon svg{
    height: 16px;
    width: 16px;
  }
  .pricing-fees-detail {
    flex-wrap: wrap;
    column-gap: 5px;
  }
  .pricing-wrapper .pricing-hero {
    background-size: cover;
    height: 333px;
    max-height: 333px;
  }
  .pricing-fees-detail .pricing-fees-list {
    column-gap: 5px;
  }
  .pricing-fees-detail .pricing-fees-list::after {
    margin: 0px 0px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content {
    margin-bottom: 24px;
  }
  .oppos-toggle {
    height: 60px;
  }
  .toggle-button.active {
    padding: 16px 12px;
    height: 50px;
    font-size: 14px;
    line-height: 22px;
  }
  .toggle-button {
    padding: 16px 12px;
    height: 50px;
    font-size: 14px;
    line-height: 22px;
  }
  .explore-pricing {
    padding: 48px 40.5px 0px 40.5px;
  }
  .explore-pricing .oppos-title{
    margin-bottom: 16px !important;
  }
  .oppos-title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 16px !important;
  }
  .oppos-subtitle {
    font-size: 14px;
    line-height: 24px;
  }
  .standard-palnwrap {
    display: block;
  }
  .standard-plan-box {
    padding: 24px;
    width: 100%;
    border: 4px solid rgba(142, 27, 62, 0.3);
    margin-bottom: 24px;
  }
  .standard-plan-title .oppos-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .plan-card-box .plan-card-list {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .plan-card-box .plan-card-list .pcard-img-box {
    display: block;
  }
  .pcard-content .text-end{
    text-align: left !important;
  }
  .plan-card-box .plan-card-list .pcard-img-box .pcard-img {
    margin-bottom: 8px;
  }
  .pcard-content p {
    font-size: 14px;
  }
  .plan-card-box .btn-primary{
    width: 100%;
    font-size: 16px;
    padding: 12px 30px;
  }
  .enterprise-p-box {
    padding: 24px;
    width: 100%;
  }
  .enterprise-p-list {
    padding: 34px 0px 48px 0px;
  }
  .enterprise-p-list ul li {
    font-size: 14px;
    margin-bottom: 16px;
    padding-left: 32px;
  }
  .enterprise-action {
    margin-bottom: 0;
  }
  .enterprise-action .btn-primary{
    width: 100%;
    font-size: 16px;
    padding: 12px 30px;
  }
  .standard-paln-main {
    padding: 24px 0px;
  }
  .refund-content ul {
    display: block;
    text-align: center;
  }
  .refund-content ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .refund-content ul li::after {
    display: block;
    margin: 8px auto;
  }
  .refund-content {
    padding-bottom: 0;
  }
  .pricing-plan-box {
    padding: 24px 0px 0px 0px;
  }
  .pricing-list-main {
    flex-direction: column;
  }
  .pricing-name-details {
    max-width: 100%;
    row-gap: 48px;
    border-right: 0px;
    border-bottom: 1px solid #E3E2E2;
  }
  .pricing-content h5 {
    font-size: 24px;
  }
  .pricing-content p {
    font-size: 14px;
  }
  .pricing-action .btn-primary{
    padding: 9.5px 33px !important;
    font-weight: 500;
    font-size: 14px;
}
  .pricing-feature-list {
    padding: 24px 0px 0px 0px;
  }
  .pricing-feature-list ul li {
    font-size: 14px;
    margin-bottom: 16px;
}
.pricing-montly-box {
  padding: 24px;
  width: 100%;
  border-top: 1px solid #E3E2E2;
  row-gap: 48px;
}
.pricing-monthly-content h6 {
  font-size: 16px;
}
.pricing-monthly-content p {
  font-size: 16px;
}
.monthly-price-text h4 {
  font-size: 20px;
  margin-bottom: 0px;
}
.monthly-price-text h4 .mp-save-label {
  font-size: 14px;
}
.pricing-feat-inner {
  max-height: 650px;
}
.integration-action{
  margin-top: 16px;
}
.upgrade-checkout-action {
  padding-top: 24px;
  padding-bottom: 0;
}
.add-benefits-wrapper {
  padding: 48px 0px;
}
.add-benefit-content {
  padding-top: 32px;
  gap: 16px;
}
.ab-service-box {
  width: 100%;
  text-align: center;
}
.ab-service-icon {
  padding: 6.86px;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}
.ab-service-icon svg{
  width: 18.86px;
}
.ab-service-text p {
  font-size: 16px;
  margin-top: 16px;
}
.pricing-faq-accordian {
  padding: 16px 0px 0px 0px;
}
.pricing-faq-accordian .accordion-button {
  padding: 16px 0px;
  font-size: 16px;
}
.pricing-faq-accordian .accordion-body {
  padding: 8px 0px 16px 0px;
}
.contact-support-box {
  flex-direction: column;
  height: auto;
  padding: 56px 24px;
}
.contact-support-box .contact-support-img {
  top: -150px;
  width: 300px;
  height: 300px;
  position: absolute;
}
.contact-content {
  max-width: 100%;
  margin-left: 0;
  padding-top: 145px;
}
.contact-content h5 {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}
.contact-content p {
  font-size: 16px;
  margin-bottom: 24px;
  text-align: center;
}
.contact-action .btn-primary{
  width: 100%;
}
.contact-support-wrapper {
  padding: 150px 0px 72px 0px;
}
.pos-plan-wrapper .pos-plan-listing {
  flex-direction: column;
}
.sticky-pricing {
  position: relative;
}
.pos-toggle-wrapper {
  padding-top: 16px;
  padding-bottom: 72px;
}
.pos-discount-text h6 {
  font-size: 16px;
  top: -20px;
}
.pos-arrow-image svg{
  width: 72px;
}
.pos-discount-box {
  right: 32px;
  bottom: 12px;
}
.pos-plan-image {
  width: 100%;
}
.pos-plan-main{
  overflow-x: auto;
  padding: 0px 16px;
}
.pos-plan-wrapper {
  padding-bottom: 0;
  display: flex;
  width: 1550px;
  column-gap: 16px;
}
.addons-box {
  margin-bottom: 16px;
}
.pos-pricing-box .pe-2,
.pos-pricing-box .px-2,
.pos-pricing-box .ps-2{
  padding: 0px 16px !important;
}
.addons-title h4 {
  font-size: 22px;
  line-height: 28px;
  color: #141414;
  margin-bottom: 12px;
}
.pos-pricing-wrapper .pos-pricing-box .pguide-title {
  padding: 72px 16px 0px 16px;
}
.addons-content {
  padding-bottom: 32px;
}
.addons-content {
  padding: 0px 16px 32px 16px;
}
.pos-pricing-wrapper .pos-pricing-box {
  padding: 0px 0px 72px 0px;
}
.pos-plan-content {
  padding: 16px;
}
.pos-sub-subtittle {
  font-size: 14px;
}
.pos-sub-main-title {
  font-size: 20px;
}
.pos-sub-small-title {
  font-size: 16px;
}
.pos-sub-action .btn-primary, 
.pos-sub-action .btn-outline-primary {
  padding: 12px 25.5px;
  width: 50%;
}
.new-launch-badge p {
  font-size: 14px;
}
.pos-plan-details{
  padding-bottom: 32px;
}
.pos-plan-wrapper .pos-plan-listing {
  margin-bottom: 0px;
}
.pos-plan-details .container{
  padding: 0px;
}


 /* New Pricing Page Css Start */
  .sd-pricing-list {
    width: 100%;
  }
  .sd-pricing-inner {
    gap: 24px;
  }
  .sd-price-content h5 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .sd-price-content p {
    font-size: 14px;
  } 
  .sd-pgateway-box {
    flex-wrap: wrap;
  }
  .sd-pay-content {
    border-bottom: 1px solid #9CA3AF;
    border-right: 0px;
    padding-right: 0px;
    padding-bottom: 24px;
  }
  .sd-price-content {
    padding: 24px 0px;
  }
  .sd-startnow-action {
    margin-top: 24px;
  }
  .sd-p-icon {
    height: 46px;
    width: 46px;
  }
  .sd-p-icon svg{
    height: 22px;
  }
  .available-opt-title h6 {
    font-size: 12px;
  }
  .available-opt-main .monthly-toggle {
    margin-bottom: 0;
  }
  /* New Pricing Page Css End */
  /*Pricing Css End*/

   /* Sadad Self Css Start */
.sadad-self-page .container{
  padding: 0px 16px;
}
.sadad-self-hero {
  background-position: left;
  height: auto;
}
.sadad-self-content {
  flex-direction: column;
  padding-top: 56px;
  padding-bottom: 26px;
}
.sadad-self-herotitle h4{
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  letter-spacing: -0.02em;
}
.sadad-self-herotitle h6{
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.sadad-self-herotitle p{
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.005em;
}
.request-order-action{
  text-align: center;
}
.request-order-action .btn-primary{
  padding: 9.5px 16px;
  font-size: 14px;
}
.sadad-self-hero-img{
  margin-top: 41px;
}
.why-choose-wrapper {
  padding: 64px 0px;
}
.ss-main-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}
.ss-sub-title {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  max-width: 100%;
}
.why-choose-wrapper .ss-common-title {
    padding-bottom: 0px;
}
.mobile-order{
  order: 1;
}
.ss-q-listing-img{
  margin-bottom: 24px;
  padding-top: 40px;
}
.ss-desc-content {
    margin-bottom: 8px;
}
.ss-desc-content p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0px;
}
.ss-listing-box {
    padding-bottom: 40px;
}
.ss-qatar-listing:last-child .ss-listing-box{
  padding-bottom: 0px;
}
.technical-list-middle{
  display: none;
}
.speci-icon {
  padding: 6.86px;
  width: 32px;
  height: 32px;
}
.speci-icon span svg{
  height: 18px;
}
.speci-content h5 {
  font-size: 16px;
  line-height: 25.49px;
  margin-bottom: 0px;
}
.speci-content p {
  font-size: 14px;
}
.technical-list-box{
  padding: 32px 8px 48px 8px;
  flex-direction: column;
  gap: 32px;
}
.technical-list-left {
    align-items: center;
}
.technical-list-left {
    gap: 32px;
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.specification-box {
    align-items: center;
    width: 170px;
}
.technical-list-right .specification-box {
    align-items: center;
}
.technical-list-right .speci-content {
    text-align: center;
}
.technical-list-right {
    align-items: center;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.qatar-key-wrapper {
    padding: 64px 0px;
}
.rtc-main-box {
    padding: 56px 24px;
}
.rtc-cta-content h6 {
    font-size: 32px;
    margin-bottom: 24px;
}
.rtc-cta-content p {
  font-size: 16px;
  max-width: 100%;
}
.rtc-action {
  gap: 16px;
  flex-direction: column;
  margin-top: 24px;
  padding: 0px 30px;
}
.rtc-action .req-demo-cta {
    width: 100%;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.rtc-action .req-demo-cta svg,
.rtc-action .expert-p-btn svg,
.rtc-action .download-b-btn svg{
  height: 20px;
}
.rtc-action .expert-p-btn{
    width: 100%;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.rtc-action .download-b-btn{
    width: 100%;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.sadad-self-herotitle {
    max-width: 100%;
}
.ss-desc-list {
    max-width: 100%;
}
  /* Sadad Self Css End */
}
@media (max-width: 575.98px) {
  .about_banner_content_new{
      padding: 42px 0 0 0;
  }
  .new_pay_method_listing  .new_all_card{
      width: auto;
      height:auto;
      font-size: 12px;
  }
  .footer_mac_logos_listing{
      width: 25%;
  }
  /* header start */
  .logo img {
      max-width: 60px;
  }
  .new_header_mainbox {
      grid-template-columns: 60px 1fr;
  }
  .header .item-left {
      grid-row: 2/3;
  }
  .header .item-center {
      grid-column: 2/3;
      grid-row: 2/3;
  }
  .header .item-right {
      justify-self: end;
      grid-column: 1/3;
  }
  /* header ends */
  /* About us page start */
  .scrollmenu {
      display: none;
  }
  .new_value_mainbox {
      grid-template-columns: repeat(1, 1fr);
  }
  .new_value_listing:nth-child(1), 
  .new_value_listing:nth-child(3),
  .new_value_listing:nth-child(5) {
      border-right: 0;
      border-bottom: 1px solid #ccc;
  }
  .new_what_mainbox {
      grid-template-columns: 1fr;
  }
  .about_new_why_mainbox {
      grid-template-columns: repeat(1, 1fr);
      gap: 20px;
  }
  .my_about_padding {
      padding: 0 0 42px 0;
  }
  .part_merch_content_leftbox {
      padding: 20px;
  }
  .part_merch_content_rightbox {
      padding: 20px;
      background-color: #f4f4f4;
      border-radius: 12px;
  }
  .part_merch_content_mainbox {
      grid-template-columns: 1fr;
      gap: 20px;
  }
  .part_merch_back_box {
      display: none;
  }
  /* About us page ends */
  /* Home page start */
  .new_home_main .about_banner_section {
      margin: 42px 0 0 0;
  }
  /* .new_home_main .about_banner_image {
      width: 100%;
      height: 300px;
  }
  .new_home_main .about_banner_image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  } */
  .my_new_payment_gateway_contentbox .new_heading,
  .my_new_payment_gateway_contentbox p,
  .my_new_payment_gateway_contentbox .readmore_btn {
      text-align: center;
      margin: 20px 0 0 0;
  }
  .pos_terminal_leftbox .new_heading,
  .pos_terminal_leftbox p {
      text-align: center;
  }
  .pos_terminal_leftbox {
      align-items: center;
  }
  .developer_zone_mainbox {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  .developer_secondbox {
      grid-template-columns: 1fr;
      gap: 20px;
      margin: 40px 0 0 0;
  }
  .new_what_r_waiting_mainbox {
      background: #8E1B3E;
      padding: 40px 0;
  }
  .new_what_r_waiting_imgbox {
      display: none;
  }
  .new_sadad_card_listing:first-child {
      grid-row: 3/4;
  }
  .new_sadad_card_listing:last-child {
      grid-row: 1/2;
  }
  .banner_desktop_img {
      display: none !important;
  }
  .banner_mobile_img {
      display: block !important;
  }
  .about_banner_section .container {
      align-self: start;
      margin: 40px 0 0 0;
  }
  /* .new_section_margin .about_banner_section {
      margin: 40px 0 0 0;
  } */
  /* Home page ends */
  /* Legal start */
  .legal_menu_mainbox {
      grid-template-columns: 1fr;
  }
  .legal_right_menubox {
      position: unset;
      height: fit-content;
      grid-row: 1/2;
  }
  .legal_submenu_listing ul a {
      font-size: 14px;
  }
  .legal_content_mainbox {
      padding: 20px 0px;
  }
  .legal_right_menubox {
      padding: 40px 0 0 0px;
  }
  /* Legal ends  */
  /* Quality and security start */
  .quality_security_main .encryption_mainbox {
      grid-template-columns: 1fr;
  }
  /* Quality and security ends  */
  .header .item-center {
      justify-self: end;
  }

  /*Pricing Css Start*/
  .pricing-wrapper .container{
    padding: 0px 16px;
  }
  .pricing-wrapper .pricing-hero .pricing-inner {
    padding: 64.72px 0px 0px 0px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box {
    padding: 0;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_heading {
    font-size: 32px;
    line-height: 32px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_para {
    font-size: 16px;
    line-height: 20px;
  }
  .pricing-fees-detail .pricing-fees-list .pricing-fees-title p {
    font-size: 14px;
    line-height: 24px;
  }
  .pricing-fees-icon svg{
    height: 16px;
    width: 16px;
  }
  .pricing-fees-detail {
    flex-wrap: wrap;
    column-gap: 5px;
  }
  .pricing-wrapper .pricing-hero {
    background-size: cover;
    height: 333px;
    max-height: 333px;
  }
  .pricing-fees-detail .pricing-fees-list {
    column-gap: 5px;
  }
  .pricing-fees-detail .pricing-fees-list::after {
    margin: 0px 0px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content {
    margin-bottom: 24px;
  }
  .oppos-toggle {
    height: 60px;
  }
  .toggle-button.active {
    padding: 16px 12px;
    height: 50px;
    font-size: 14px;
    line-height: 22px;
  }
  .toggle-button {
    padding: 16px 12px;
    height: 50px;
    font-size: 14px;
    line-height: 22px;
  }
  .explore-pricing {
    padding: 48px 40.5px 0px 40.5px;
  }
  .explore-pricing .oppos-title{
    margin-bottom: 16px !important;
  }
  .oppos-title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 16px !important;
  }
  .oppos-subtitle {
    font-size: 14px;
    line-height: 24px;
  }
  .standard-palnwrap {
    display: block;
  }
  .standard-plan-box {
    padding: 24px;
    width: 100%;
    border: 4px solid rgba(142, 27, 62, 0.3);
    margin-bottom: 24px;
  }
  .standard-plan-title .oppos-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .plan-card-box .plan-card-list {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .plan-card-box .plan-card-list .pcard-img-box {
    display: block;
  }
  .pcard-content .text-end{
    text-align: left !important;
  }
  .plan-card-box .plan-card-list .pcard-img-box .pcard-img {
    margin-bottom: 8px;
  }
  .pcard-content p {
    font-size: 14px;
  }
  .plan-card-box .btn-primary{
    width: 100%;
    font-size: 16px;
    padding: 12px 30px;
  }
  .enterprise-p-box {
    padding: 24px;
    width: 100%;
  }
  .enterprise-p-list {
    padding: 34px 0px 48px 0px;
  }
  .enterprise-p-list ul li {
    font-size: 14px;
    margin-bottom: 16px;
    padding-left: 32px;
  }
  .enterprise-action {
    margin-bottom: 0;
  }
  .enterprise-action .btn-primary{
    width: 100%;
    font-size: 16px;
    padding: 12px 30px;
  }
  .standard-paln-main {
    padding: 24px 0px;
  }
  .refund-content ul {
    display: block;
    text-align: center;
  }
  .refund-content ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .refund-content ul li::after {
    display: block;
    margin: 8px auto;
  }
  .refund-content {
    padding-bottom: 0;
  }
  .pricing-plan-box {
    padding: 24px 0px 0px 0px;
  }
  .pricing-list-main {
    flex-direction: column;
  }
  .pricing-name-details {
    max-width: 100%;
    row-gap: 48px;
    border-right: 0px;
    border-bottom: 1px solid #E3E2E2;
  }
  .pricing-content h5 {
    font-size: 24px;
  }
  .pricing-content p {
    font-size: 14px;
  }
  .pricing-action .btn-primary{
    padding: 9.5px 33px !important;
    font-weight: 500;
    font-size: 14px;
}
  .pricing-feature-list {
    padding: 24px 0px 0px 0px;
  }
  .pricing-feature-list ul li {
    font-size: 14px;
    margin-bottom: 16px !important;
}
.pricing-montly-box {
  padding: 24px;
  width: 100%;
  border-top: 1px solid #E3E2E2;
  row-gap: 48px;
}
.pricing-monthly-content h6 {
  font-size: 16px;
}
.pricing-monthly-content p {
  font-size: 16px;
}
.monthly-price-text h4 {
  font-size: 20px;
  margin-bottom: 0px;
}
.monthly-price-text h4 .mp-save-label {
  font-size: 14px;
}
.pricing-feat-inner {
  max-height: 650px;
}
.integration-action{
  margin-top: 16px;
}
.upgrade-checkout-action {
  padding-top: 24px;
  padding-bottom: 0;
}
.add-benefits-wrapper {
  padding: 48px 0px;
}
.add-benefit-content {
  padding-top: 32px;
  gap: 16px;
}
.ab-service-box {
  width: 100%;
  text-align: center;
}
.ab-service-icon {
  padding: 6.86px;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}
.ab-service-icon svg{
  width: 18.86px;
}
.ab-service-text p {
  font-size: 16px;
  margin-top: 16px;
}
.pricing-faq-accordian {
  padding: 16px 0px 0px 0px;
}
.pricing-faq-accordian .accordion-button {
  padding: 16px 0px;
  font-size: 16px;
}
.pricing-faq-accordian .accordion-body {
  padding: 8px 0px 16px 0px;
}
.contact-support-box {
  flex-direction: column;
  height: auto;
  padding: 56px 24px;
}
.contact-support-box .contact-support-img {
  top: -150px;
  width: 300px;
  height: 300px;
  position: absolute;
}
.contact-content {
  max-width: 100%;
  margin-left: 0;
  padding-top: 145px;
  padding-left: 0px;
}
.contact-content h5 {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}
.contact-content p {
  font-size: 16px;
  margin-bottom: 24px;
  text-align: center;
}
.contact-action .btn-primary{
  width: 100%;
}
.contact-support-wrapper {
  padding: 150px 0px 72px 0px;
}
.pos-plan-wrapper .pos-plan-listing {
  flex-direction: column;
}
.sticky-pricing {
  position: relative;
}
.pos-toggle-wrapper {
  padding-top: 16px;
  padding-bottom: 72px;
}
.pos-discount-text h6 {
  font-size: 16px;
  top: -20px;
}
.pos-arrow-image svg{
  width: 72px;
}
.pos-discount-box {
  right: 32px;
  bottom: 12px;
}
.pos-plan-image {
  width: 100%;
}
.pos-plan-main{
  overflow-x: auto;
  padding: 0px 16px;
}
.pos-plan-wrapper {
  padding-bottom: 0;
  display: flex;
  width: 1550px;
  column-gap: 16px;
}
.addons-box {
  margin-bottom: 16px;
}
.pos-pricing-box .pe-2,
.pos-pricing-box .px-2,
.pos-pricing-box .ps-2{
  padding: 0px 16px !important;
}
.addons-title h4 {
  font-size: 22px;
  line-height: 28px;
  color: #141414;
  margin-bottom: 12px;
}
.pos-pricing-wrapper .pos-pricing-box .pguide-title {
  padding: 72px 16px 0px 16px;
}
.addons-content {
  padding-bottom: 32px;
}
.addons-content {
  padding: 0px 16px 32px 16px;
}
.pos-pricing-wrapper .pos-pricing-box {
  padding: 0px 0px 72px 0px;
}
.pos-plan-content {
  padding: 16px;
}
.pos-sub-subtittle {
  font-size: 14px;
}
.pos-sub-main-title {
  font-size: 20px;
}
.pos-sub-small-title {
  font-size: 16px;
}
.pos-sub-action .btn-primary, 
.pos-sub-action .btn-outline-primary {
  padding: 12px 25.5px;
  width: 50%;
}
.new-launch-badge p {
  font-size: 14px;
}
.pos-plan-details{
  padding-bottom: 32px;
}
.pos-plan-wrapper .pos-plan-listing {
  margin-bottom: 0px;
}
.pos-plan-details .container{
  padding: 0px;
}
.hosted-payment-listing .hosted-payment-header h6 {
    max-width: 190px;
}

 /* New Pricing Page Css Start */
  .sd-pricing-list {
    width: 100%;
  }
  .sd-pricing-inner {
    gap: 24px;
  }
  .sd-price-content h5 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .sd-price-content p {
    font-size: 14px;
  } 
  .sd-pgateway-box {
    flex-wrap: wrap;
  }
  .sd-pay-content {
    border-bottom: 1px solid #9CA3AF;
    border-right: 0px;
    padding-right: 0px;
    padding-bottom: 24px;
  }
  .sd-price-content {
    padding: 24px 0px;
  }
  .sd-startnow-action {
    margin-top: 24px;
  }
  .sd-p-icon {
    height: 46px;
    width: 46px;
  }
  .sd-p-icon svg{
    height: 22px;
  }
  .available-opt-title h6 {
    font-size: 12px;
  }
  .available-opt-main .monthly-toggle {
    margin-bottom: 0;
  }
  /* New Pricing Page Css End */
  /*Pricing Css End*/

 /* Sadad Self Css Start */
.sadad-self-page .container{
  padding: 0px 16px;
}
.sadad-self-hero {
  background-position: left;
  height: auto;
}
.sadad-self-content {
  flex-direction: column;
  padding-top: 56px;
  padding-bottom: 26px;
}
.sadad-self-herotitle h4{
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  letter-spacing: -0.02em;
}
.sadad-self-herotitle h6{
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.sadad-self-herotitle p{
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.005em;
}
.request-order-action{
  text-align: center;
}
.request-order-action .btn-primary{
  padding: 9.5px 16px;
  font-size: 14px;
}
.sadad-self-hero-img{
  margin-top: 41px;
}
.why-choose-wrapper {
  padding: 64px 0px;
}
.ss-main-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}
.ss-sub-title {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  max-width: 100%;
}
.why-choose-wrapper .ss-common-title {
    padding-bottom: 0px;
}
.mobile-order{
  order: 1;
}
.ss-q-listing-img{
  margin-bottom: 24px;
  padding-top: 40px;
}
.ss-desc-content {
    margin-bottom: 8px;
}
.ss-desc-content p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0px;
}
.ss-listing-box {
    padding-bottom: 40px;
}
.ss-qatar-listing:last-child .ss-listing-box{
  padding-bottom: 0px;
}
.technical-list-middle{
  display: none;
}
.speci-icon {
  padding: 6.86px;
  width: 32px;
  height: 32px;
}
.speci-icon span svg{
  height: 18px;
}
.speci-content h5 {
  font-size: 16px;
  line-height: 25.49px;
  margin-bottom: 0px;
}
.speci-content p {
  font-size: 14px;
}
.technical-list-box{
  padding: 32px 8px 48px 8px;
  flex-direction: column;
  gap: 32px;
}
.technical-list-left {
    align-items: center;
}
.technical-list-left {
    gap: 32px;
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.specification-box {
    align-items: center;
    width: 170px;
}
.technical-list-right .specification-box {
    align-items: center;
}
.technical-list-right .speci-content {
    text-align: center;
}
.technical-list-right {
    align-items: center;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.qatar-key-wrapper {
    padding: 64px 0px;
}
.rtc-main-box {
    padding: 56px 24px;
}
.rtc-cta-content h6 {
    font-size: 32px;
    margin-bottom: 24px;
}
.rtc-cta-content p {
  font-size: 16px;
  max-width: 100%;
}
.rtc-action {
  gap: 16px;
  flex-direction: column;
  margin-top: 24px;
  padding: 0px 30px;
}
.rtc-action .req-demo-cta {
    width: 100%;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.rtc-action .req-demo-cta svg,
.rtc-action .expert-p-btn svg,
.rtc-action .download-b-btn svg{
  height: 20px;
}
.rtc-action .expert-p-btn{
    width: 100%;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.rtc-action .download-b-btn{
    width: 100%;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.sadad-self-herotitle {
    max-width: 100%;
}
.ss-desc-list {
    max-width: 100%;
}
.qatar-k-slider-main .owl-item{
  width: 300px !important;
}
.qatar-k-slider-main .owl-item.active{
  margin-right: 16px !important;
}
.qatar-k-slider-main .owl-nav {
  display: none;
}
.sd-item-content a {
    font-size: 16px;
    line-height: 16px;
}
.sd-item-content p {
    font-size: 14px;
    line-height: 17px;
}
.sd-in-content {
    padding: 27px 17px 20px 17px;
    min-height: 220px;
}
.sadad-container {
    padding: 0px 16px;
}
.qatar-k-slider-main .owl-carousel.owl-loaded {
    overflow: hidden;
}
  /* Sadad Self Css End */
}
@media (min-width: 320px) and (max-width: 375px){
  /*Pricing Css Start*/
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_heading {
    font-size: 28px;
    line-height: 28px;
  }
  .pricing-fees-detail .pricing-fees-list .pricing-fees-title p {
    font-size: 11px;
    line-height: 21px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_para {
    font-size: 13px;
    line-height: 19px;
  }
  .hosted-payment-listing .hosted-payment-header h6 {
    max-width: 190px;
  }

 /* New Pricing Page Css Start */
  .sd-pricing-list {
    width: 100%;
  }
  .sd-pricing-inner {
    gap: 24px;
  }
  .sd-price-content h5 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  .sd-price-content p {
    font-size: 14px;
  } 
  .sd-pgateway-box {
    flex-wrap: wrap;
  }
  .sd-pay-content {
    border-bottom: 1px solid #9CA3AF;
    border-right: 0px;
    padding-right: 0px;
    padding-bottom: 24px;
  }
  .sd-price-content {
    padding: 24px 0px;
  }
  .sd-startnow-action {
    margin-top: 24px;
  }
  .sd-p-icon {
    height: 46px;
    width: 46px;
  }
  .sd-p-icon svg{
    height: 22px;
  }
  .available-opt-title h6 {
    font-size: 12px;
  }
  .available-opt-main .monthly-toggle {
    margin-bottom: 0;
  }
  /* New Pricing Page Css End */
  /*Pricing Css End*/
   /* Sadad Self Css Start */
.sadad-self-page .container{
  padding: 0px 16px;
}
.sadad-self-hero {
  background-position: left;
  height: auto;
}
.sadad-self-content {
  flex-direction: column;
  padding-top: 56px;
  padding-bottom: 26px;
}
.sadad-self-herotitle h4{
  font-size: 32px;
  line-height: 32px;
  text-align: center;
  letter-spacing: -0.02em;
}
.sadad-self-herotitle h6{
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  letter-spacing: -0.005em;
  margin-bottom: 24px;
}
.sadad-self-herotitle p{
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  letter-spacing: -0.005em;
}
.request-order-action{
  text-align: center;
}
.request-order-action .btn-primary{
  padding: 9.5px 16px;
  font-size: 14px;
}
.sadad-self-hero-img{
  margin-top: 41px;
}
.why-choose-wrapper {
  padding: 64px 0px;
}
.ss-main-title {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}
.ss-sub-title {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  max-width: 100%;
}
.why-choose-wrapper .ss-common-title {
    padding-bottom: 0px;
}
.mobile-order{
  order: 1;
}
.ss-q-listing-img{
  margin-bottom: 24px;
  padding-top: 40px;
}
.ss-desc-content {
    margin-bottom: 8px;
}
.ss-desc-content p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0px;
}
.ss-listing-box {
    padding-bottom: 40px;
}
.ss-qatar-listing:last-child .ss-listing-box{
  padding-bottom: 0px;
}
.technical-list-middle{
  display: none;
}
.speci-icon {
  padding: 6.86px;
  width: 32px;
  height: 32px;
}
.speci-icon span svg{
  height: 18px;
}
.speci-content h5 {
  font-size: 16px;
  line-height: 25.49px;
  margin-bottom: 0px;
}
.speci-content p {
  font-size: 14px;
}
.technical-list-box{
  padding: 32px 8px 48px 8px;
  flex-direction: column;
  gap: 32px;
}
.technical-list-left {
    align-items: center;
}
.technical-list-left {
    gap: 32px;
    text-align: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
.specification-box {
    align-items: center;
    width: 170px;
}
.technical-list-right .specification-box {
    align-items: center;
}
.technical-list-right .speci-content {
    text-align: center;
}
.technical-list-right {
    align-items: center;
    flex-direction: row;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.qatar-key-wrapper {
    padding: 64px 0px;
}
.rtc-main-box {
    padding: 56px 24px;
}
.rtc-cta-content h6 {
    font-size: 32px;
    margin-bottom: 24px;
}
.rtc-cta-content p {
  font-size: 16px;
  max-width: 100%;
}
.rtc-action {
  gap: 16px;
  flex-direction: column;
  margin-top: 24px;
  padding: 0px 30px;
}
.rtc-action .req-demo-cta {
    width: 100%;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.rtc-action .req-demo-cta svg,
.rtc-action .expert-p-btn svg,
.rtc-action .download-b-btn svg{
  height: 20px;
}
.rtc-action .expert-p-btn{
    width: 100%;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.rtc-action .download-b-btn{
    width: 100%;
    justify-content: center;
    padding: 9px 24px;
    font-size: 14px;
    line-height: 20px;
}
.sadad-self-herotitle {
    max-width: 100%;
}
.ss-desc-list {
    max-width: 100%;
}
.qatar-k-slider-main .owl-item{
  width: 300px !important;
}
.qatar-k-slider-main .owl-item.active{
  margin-right: 16px !important;
}
.qatar-k-slider-main .owl-nav {
  display: none;
}
.sd-item-content a {
    font-size: 16px;
    line-height: 16px;
}
.sd-item-content p {
    font-size: 14px;
    line-height: 17px;
}
.sd-in-content {
    padding: 27px 17px 20px 17px;
    min-height: 220px;
}
.sadad-container {
    padding: 0px 16px;
}
.qatar-k-slider-main .owl-carousel.owl-loaded {
    overflow: hidden;
}
  /* Sadad Self Css End */
}
@media (min-width: 992px) and (max-width: 1024px){
  /*Pricing Css Start*/
  .pricing-wrapper .container{
    padding: 0px 16px;
  }
  .pricing-wrapper .pricing-hero .pricing-inner {
    padding: 64.72px 0px 0px 0px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box {
    padding: 0;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_heading {
    font-size: 32px;
    line-height: 32px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content .pricing_para {
    font-size: 16px;
    line-height: 20px;
  }
  .pricing-fees-detail .pricing-fees-list .pricing-fees-title p {
    font-size: 14px;
    line-height: 24px;
  }
  .pricing-fees-icon svg{
    height: 16px;
    width: 16px;
  }
  .pricing-fees-detail {
    flex-wrap: wrap;
    column-gap: 5px;
  }
  .pricing-wrapper .pricing-hero {
    background-size: cover;
    height: 333px;
    max-height: 333px;
  }
  .pricing-fees-detail .pricing-fees-list {
    column-gap: 5px;
  }
  .pricing-fees-detail .pricing-fees-list::after {
    margin: 0px 0px;
  }
  .pricing-wrapper .pricing-hero .pricing-in-box .pricing-content {
    margin-bottom: 24px;
  }
  .oppos-toggle {
    height: 60px;
  }
  .toggle-button.active {
    padding: 16px 12px;
    height: 50px;
    font-size: 14px;
    line-height: 22px;
  }
  .toggle-button {
    padding: 16px 12px;
    height: 50px;
    font-size: 14px;
    line-height: 22px;
  }
  .explore-pricing {
    padding: 48px 40.5px 0px 40.5px;
  }
  .explore-pricing .oppos-title{
    margin-bottom: 16px !important;
  }
  .oppos-title {
    font-size: 26px;
    line-height: 30px;
    margin-bottom: 16px !important;
  }
  .oppos-subtitle {
    font-size: 14px;
    line-height: 24px;
  }
  .standard-palnwrap {
    display: block;
  }
  .standard-plan-box {
    padding: 24px;
    width: 100%;
    border: 4px solid rgba(142, 27, 62, 0.3);
    margin-bottom: 24px;
  }
  .standard-plan-title .oppos-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
  .plan-card-box .plan-card-list {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .plan-card-box .plan-card-list .pcard-img-box {
    display: block;
  }
  .pcard-content .text-end{
    text-align: left !important;
  }
  .plan-card-box .plan-card-list .pcard-img-box .pcard-img {
    margin-bottom: 8px;
  }
  .pcard-content p {
    font-size: 14px;
  }
  .plan-card-box .btn-primary{
    width: 100%;
    font-size: 16px;
    padding: 12px 30px;
  }
  .enterprise-p-box {
    padding: 24px;
    width: 100%;
  }
  .enterprise-p-list {
    padding: 34px 0px 48px 0px;
  }
  .enterprise-p-list ul li {
    font-size: 14px;
    margin-bottom: 16px;
    padding-left: 32px;
  }
  .enterprise-action {
    margin-bottom: 0;
  }
  .enterprise-action .btn-primary{
    width: 100%;
    font-size: 16px;
    padding: 12px 30px;
  }
  .standard-paln-main {
    padding: 24px 0px;
  }
  .refund-content ul {
    display: block;
    text-align: center;
  }
  .refund-content ul li {
    font-size: 14px;
    line-height: 24px;
  }
  .refund-content ul li::after {
    display: block;
    margin: 8px auto;
  }
  .refund-content {
    padding-bottom: 0;
  }
  .pricing-plan-box {
    padding: 24px 0px 0px 0px;
  }
  .pricing-list-main {
    flex-direction: column;
  }
  .pricing-name-details {
    max-width: 100%;
    row-gap: 48px;
    border-right: 0px;
    border-bottom: 1px solid #E3E2E2;
  }
  .pricing-content h5 {
    font-size: 24px;
  }
  .pricing-content p {
    font-size: 14px;
  }
  .pricing-action .btn-primary{
    padding: 9.5px 33px !important;
    font-weight: 500;
    font-size: 14px;
}
  .pricing-feature-list {
    padding: 24px 0px 0px 0px;
  }
  .pricing-feature-list ul li {
    font-size: 14px;
    margin-bottom: 16px;
}
.pricing-montly-box {
  padding: 24px;
  width: 100%;
  border-top: 1px solid #E3E2E2;
  row-gap: 48px;
}
.pricing-monthly-content h6 {
  font-size: 16px;
}
.pricing-monthly-content p {
  font-size: 16px;
}
.monthly-price-text h4 {
  font-size: 20px;
  margin-bottom: 0px;
}
.monthly-price-text h4 .mp-save-label {
  font-size: 14px;
}
.pricing-feat-inner {
  max-height: 650px;
}
.integration-action{
  margin-top: 16px;
}
.upgrade-checkout-action {
  padding-top: 24px;
  padding-bottom: 0;
}
.add-benefits-wrapper {
  padding: 48px 0px;
}
.add-benefit-content {
  padding-top: 32px;
  gap: 16px;
}
.ab-service-box {
  width: 100%;
  text-align: center;
}
.ab-service-icon {
  padding: 6.86px;
  width: 32px;
  height: 32px;
  margin: 0 auto;
}
.ab-service-icon svg{
  width: 18.86px;
}
.ab-service-text p {
  font-size: 16px;
  margin-top: 16px;
}
.pricing-faq-accordian {
  padding: 16px 0px 0px 0px;
}
.pricing-faq-accordian .accordion-button {
  padding: 16px 0px;
  font-size: 16px;
}
.pricing-faq-accordian .accordion-body {
  padding: 8px 0px 16px 0px;
}
.contact-support-box {
  flex-direction: column;
  height: auto;
  padding: 56px 24px;
}
.contact-support-box .contact-support-img {
  top: -150px;
  width: 300px;
  height: 300px;
  position: absolute;
}
.contact-content {
  max-width: 100%;
  margin-left: 0;
  padding-top: 145px;
}
.contact-content h5 {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
}
.contact-content p {
  font-size: 16px;
  margin-bottom: 24px;
  text-align: center;
}
.contact-action .btn-primary{
  width: 100%;
}
.contact-support-wrapper {
  padding: 150px 0px 72px 0px;
}
.pos-plan-wrapper .pos-plan-listing {
  flex-direction: column;
}
.sticky-pricing {
  position: relative;
}
.pos-toggle-wrapper {
  padding-top: 16px;
  padding-bottom: 72px;
}
.pos-discount-text h6 {
  font-size: 16px;
  top: -20px;
}
.pos-arrow-image svg{
  width: 72px;
}
.pos-discount-box {
  right: 32px;
  bottom: 12px;
}
.pos-plan-image {
  width: 100%;
}
.pos-plan-main{
  overflow-x: auto;
  padding: 0px 16px;
}
.pos-plan-wrapper {
  padding-bottom: 0;
  display: flex;
  width: 1550px;
  column-gap: 16px;
}
.addons-box {
  margin-bottom: 16px;
}
.pos-pricing-box .pe-2,
.pos-pricing-box .px-2,
.pos-pricing-box .ps-2{
  padding: 0px 16px !important;
}
.addons-title h4 {
  font-size: 22px;
  line-height: 28px;
  color: #141414;
  margin-bottom: 12px;
}
.pos-pricing-wrapper .pos-pricing-box .pguide-title {
  padding: 72px 16px 0px 16px;
}
.addons-content {
  padding-bottom: 32px;
}
.addons-content {
  padding: 0px 16px 32px 16px;
}
.pos-pricing-wrapper .pos-pricing-box {
  padding: 0px 0px 72px 0px;
}
.pos-plan-content {
  padding: 16px;
}
.pos-sub-subtittle {
  font-size: 14px;
}
.pos-sub-main-title {
  font-size: 20px;
}
.pos-sub-small-title {
  font-size: 16px;
}
.pos-sub-action .btn-primary, 
.pos-sub-action .btn-outline-primary {
  padding: 12px 25.5px;
  width: 50%;
}
.new-launch-badge p {
  font-size: 14px;
}
.pos-plan-details{
  padding-bottom: 32px;
}
.pos-plan-wrapper .pos-plan-listing {
  margin-bottom: 0px;
}
.pos-plan-details .container{
  padding: 0px;
}
  /* New Pricing Page Css Start */
  .sd-pricing-list {
    width: 48.25%;
  }
  /* New Pricing Page Css End */
  /*Pricing Css End*/
}
@media(min-width: 992px) {
  .header .menu>ul>li.menu-item-has-children:hover .sub-menu {
      margin-top: 0;
      visibility: visible;
      opacity: 1;
  }
}

/* JVB */

  .accordion-button:focus {
    box-shadow: none !important;
}