/*-----------------------------------------------------------------------------------

[Table of contents]

1. Font
2. Css Variable for colors
3. Common CSS
4. Preloader CSS
5. Header - Main Navigation ( section )
6. Hero Slider ( section )
7. Trusted Logo Slider ( section )
8. Features ( section )
9. About us ( section )
10. Modern UI ( section )
11. How it works ( section )12. Testimonials ( section )
13. Pricing ( section )
14. Faq ( section )
15. Interface ( section )
16. Download app ( section )
17. Latest story ( section )
18. Newsletter ( section )
19. Footer ( section )
20. Animation CSS ( section )


--------------------------a---------------------------------------------------------*/
/* --------Font--------------- */
/* Lufga-300 - latin */
p {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #000;
  font-family: "Lufga";
  line-height: 26px;
  font-size: 17px;
  line-height: 26px;
  font-weight: 400;
}

@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 300;
  src: local(""), url("../fonts/LufgaLight.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("../fonts/LufgaRegular.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: italic;
  font-weight: 400;

  src: local(""), url("../fonts/LufgaItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("../fonts/LufgaMedium.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: italic;
  font-weight: 500;
  src: local(""), url("../fonts/LufgaMediumItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("../fonts/LufgaSemiBold.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: italic;
  font-weight: 600;
  src: local(""), url("../fonts/LufgaSemiBoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("../fonts/LufgaBold.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: italic;
  font-weight: 700;
  src: local(""), url("../fonts/LufgaBoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 800;
  src: local(""), url("../fonts/LufgaExtraBold.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: italic;
  font-weight: 800;
  src: local(""), url("../fonts/LufgaExtraBoldItalic.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 900;
  src: local(""), url("../fonts/LufgaBlack.ttf") format("truetype");
}

@font-face {
  font-family: "Lufga";
  font-style: italic;
  font-weight: 900;
  src: local(""), url("../fonts/LufgaBlackItalic.ttf") format("truetype");
}

/* -----------Css-variable------ */
:root {
  --light-purple: #f6f4fe;
  --purple: #438d38;
  --bg-purple: #5aac4e;
  --dark-purple: #32236f;
  --body-text-purple: #3e3f66;
  --text-white: #ffffff;
  --bg-white: #ffffff;
  --slider-dots-color: #d4d2dd;
  --light-bg: #dfdaf3;
  --new-light-bg: #fafafa;
  --new-text-color: #0e3323;
  --new-light-green: #c1f904;
  --new-text-green: #c3f53c;
  --new-dark-green-bg: #173301;
  --font-family-1: "Lufga";
  --swiper-pagination-color: rgba(102, 100, 100, 1);
  --swiper-pagination-bullet-inactive-color: rgba(102, 100, 100, 1);
}

/* ------Common-Css------------- */
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  /* box-sizing: border-box; */
  font-size: 16px;
  line-height: 1.7;
  font-family: "Lufga", sans-serif;
  color: var(--body-text-purple);
}

.page_wrapper {
  width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--body-text-purple);
}

a:hover {
  text-decoration: none;
  color: var(--body-text-purple);
}

ul,
li {
  padding: 0;
  list-style-type: none;
  margin: 0;
  font-family: "Lufga";
}

button:focus,
.btn.focus,
.btn:focus {
  outline: none;
  box-shadow: none;
}

@media screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media screen and (min-width: 1300px) {
  .container {
    max-width: 1250px;
  }
}

/* section heading h2 */
.section_title h2 {
  font-size: 30px;
  font-weight: 600;
  color: #000;
  font-family: Lufga;
  padding-bottom: 6px;
}

.section_title h2 span {
  color: var(--purple);
}

.row_am {
  padding: 50px 0;
}

/* purple button */
.puprple_btn {
  background: #5aac4e;
  color: var(--text-white);
  border-radius: 50px;
  padding: 10px 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
}

.puprple_btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: var(--bg-white);
  border-radius: 50px;
  transition: 0.6s all;
  z-index: -1;
}

.puprple_btn:hover::before {
  width: 100%;
}

.puprple_btn:hover {
  color: #5aac4e !important;
}

/* white button */
.white_btn {
  padding: 10px 45px;
  border: 1px solid var(--purple);
  color: var(--purple);
  border-radius: 50px;
  background-color: var(--bg-white);
  font-weight: 700;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-weight: 500;
}

.white_btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: var(--bg-purple);
  border-radius: 50px;
  transition: 0.6s all;
  z-index: -1;
}

.white_btn:hover::before {
  width: 110%;
}

.white_btn:hover {
  color: var(--text-white);
}

.highlited_block .white_btn:hover {
  border-color: var(--bg-white);
}

/* slider controls */
.owl-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-top: 20px;
}

.owl-carousel .owl-dots button {
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--slider-dots-color);
  border-radius: 15px;
  margin: 0 5px;
}

.owl-carousel .owl-dots button.active {
  background-color: #4bac58;
}

/* -------------Preloader-Css-Start-------------- */
/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 999999;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--bg-purple);
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

.about_img {
  float: right;
}

#loader:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--body-text-purple);
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--dark-purple);
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }

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

/* -----------Header-Css-Start------------------- */
/* header wraper */
header {
  position: absolute;
  width: 100%;
  z-index: 99999;
  transition: 0.4s all;
}

header.fix_style {
  position: fixed;
  top: 0;
  backdrop-filter: blur(5px);
  background-color: #173301;
  padding: 0px 0;
  transition: none;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.1);
}

header.fixed {
  pointer-events: all;
  opacity: 1;
  transition: 0.4s all;
}

header.fixed .navbar {
  padding: 0;
}

/* navigation bar */
.navbar {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0px;
}

.navbar-expand-lg .navbar-nav {
  align-items: center;
}

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  font-size: 20px;
  font-family: "Lufga", sans-serif;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: var(--text-white);
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn {
  color: #fff !important;
  background-color: #5aac4e;
  font-size: 15px;
  padding: 8px 20px;
  border-radius: 100px;
  margin-left: 13px;
  position: relative;
  font-family: "DM Sans", sans-serif;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before,
.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 42px;
  z-index: -1;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::before {
  animation: pulse-blue-medium-sm 3.5s infinite;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn::after {
  animation: pulse-blue-small-sm 3.5s infinite;
}

.navbar-brand img {
  width: 110px;
}

.navbar-expand-lg .navbar-nav .nav-link.dark_btn:hover {
  color: #fff;
}

/* navigation bar dropdown */
.navbar-expand-lg .navbar-nav .has_dropdown {
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 10px 10px 0 0;
  transition: 0.4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover {
  background-color: var(--bg-white);
  box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .drp_btn {
  position: relative;
  right: 15px;
  color: var(--text-white);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu {
  position: absolute;
  top: 100%;
  background-color: var(--bg-white);
  border-radius: 0 10px 10px 10px;
  min-width: 210px;
  max-width: 230px;
  margin-top: -10px;
  transition: 0.4s all;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0px 4px 10px #c5c5c580;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul {
  margin-left: 0;
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a {
  font-size: 15px;
  position: relative;
  transition: 0.4s all;
  line-height: 35px;
  font-weight: 500;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border: 2px solid var(--purple);
  border-radius: 10px;
  margin-right: 5px;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: 0.4s all;
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover {
  padding-left: 15px;
  color: var(--purple);
}

.navbar-expand-lg .navbar-nav .has_dropdown .sub_menu ul li a:hover::before {
  opacity: 1;
  left: 0;
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover > a,
.navbar-expand-lg .navbar-nav .has_dropdown:hover > .drp_btn {
  color: var(--purple);
}

.navbar-expand-lg .navbar-nav .has_dropdown:hover .sub_menu {
  opacity: 1;
  pointer-events: all;
  margin-top: -1px;
}

/* navigation toggle menu */
.toggle-wrap {
  padding: 10px;
  position: relative;
  cursor: pointer;
  /*disable selection*/
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 40px;
  width: 40px;
  background: #b3f5a9;
  padding: 0px;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #000;
}

.toggle-bar,
.toggle-bar::before,
.toggle-bar::after,
.toggle-wrap.active .toggle-bar,
.toggle-wrap.active .toggle-bar::before,
.toggle-wrap.active .toggle-bar::after {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.toggle-bar {
  width: 25px;
  margin: 10px 0;
  position: relative;
  border-top: 4px solid #000;
  display: block;
}

.toggle-bar::before,
.toggle-bar::after {
  content: "";
  display: block;
  background: #000;
  height: 4px;
  width: 30px;
  position: absolute;
  top: -12px;
  right: 0px;
  -ms-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -ms-transform-origin: 13%;
  -webkit-transform-origin: 13%;
  transform-origin: 13%;
}

.toggle-bar::after {
  top: 4px;
}

.toggle-wrap.active .toggle-bar {
  border-top: 6px solid transparent;
}

.toggle-wrap.active .toggle-bar::before {
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.toggle-wrap.active .toggle-bar::after {
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ---------Hero-banner-Css-Start------------------ */
/* hero banner wraper */
.banner_section {
  padding-top: 120px;
  position: relative;
  /* padding-bottom: 50px; */
  background: #173301;
}

.banner_section .container {
  position: relative;
}

.bottom_text h3 {
  color: #c3f53c;
  font-weight: 700;
  font-size: 27px;
}

.home-banner-svg {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: -10px;
}

.home-banner-svg img {
  max-width: min(500px, 90%);
}

.banner_nottom {
  margin-top: 130px;
  padding-top: 40px;
  border-top: 1px solid #86c37d;
  padding-bottom: 0px;
}

.fine-print {
  font-family: "Lufga";
  font-style: normal;
  font-weight: 400;
  font-size: 0.9em;
  line-height: 35px;
  text-align: center;

  color: #8d8e8e;
}
.banner_nottom ul {
  padding: 0px;
  margin: 0px;
}

.banner_nottom li {
  width: 32%;
  display: flex;
  float: right;
  padding: 0px 24px;
  border-right: 1px solid #86c37d;
  align-items: center;
  align-items: center;
}

.banner_nottom li img {
  width: 60px;
  margin-right: 10px;
}

.banner_nottom li h3 {
  color: #c3f53c;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 4;
  letter-spacing: 1px;
}

.banner_nottom li:first-child {
  border-right: 0px;
}

.banner_nottom li p {
  color: #fff;
  margin-bottom: 0px;
}

header.fixed .navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
}

.banner_section .row {
  align-items: center;
}

/* hero banner text */
.banner_section .banner_text {
  margin-top: 35px;
  position: relative;
  top: 1px;
  text-align: center;
}

/* hero banner heading h1 */
.banner_section .banner_text h1 {
  font-size: 47px;
  color: #c3f53c;
  letter-spacing: -1.5px;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 29px;
  font-family: "Lufga", sans-serif;
}

.banner_section .banner_text h1 span {
  color: var(--text-white);
}

.banner_section .banner_text p {
  font-size: 17px;
  color: #c3f53c;
}

/* hero banner button */
.banner_section .app_btn {
  display: flex;
  align-items: center;
  margin: 30px 0;
}

/* hero banner list */
.banner_section .app_btn li a {
  display: block;
  padding: 12px 30px;
  background-color: var(--bg-white);
  border: 2px solid var(--purple);
  position: relative;
  border-radius: 12px;
  transition: 0.4s all;
}

.banner_section .app_btn li:last-child {
  margin-left: 25px;
}

.banner_section .app_btn li a img {
  transition: 0.4s all;
}

.banner_section .app_btn li a .white_img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}

.banner_section .app_btn li a:hover {
  background-color: var(--purple);
  border: 2px solid var(--bg-white);
}

.banner_section .app_btn li a:hover .blue_img {
  opacity: 0;
}

.banner_section .app_btn li a:hover .white_img {
  opacity: 1;
}

/* hero banner users */
.banner_section .used_app {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.banner_section .used_app ul {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.banner_section .used_app ul li:not(:first-child) {
  margin-left: -15px;
}

.banner_section .used_app p {
  font-size: 15px;
  line-height: 19px;
  margin-bottom: 0;
  color: var(--text-white);
}

/* hero banner images */
.banner_section .banner_image {
  display: flex;
  position: relative;
  width: 100%;
}

.banner_section .banner_image img {
  max-width: 100%;
}

.owl-carousel .owl-item img {
  max-width: 100%;
  width: auto;
}

/* hero banner shape animation */
.banner_section .banner_shape1,
.banner_shape2,
.banner_shape3 {
  position: absolute;
}

.banner_section .banner_shape1 {
  top: 200px;
  left: -15%;
  animation: mymove 10s infinite;
}

.banner_section .banner_shape2 {
  top: 100px;
  right: -10%;
  animation: mymove 5s infinite;
}

.banner_section .banner_shape3 {
  top: 400px;
  right: -20%;
  animation: mymove 3s infinite;
}

@keyframes mymove {
  50% {
    transform: rotate(180deg);
  }
}

/* ------------Trusted-Section-Css-Start----------- */
/* trusted logos wraper */
.trusted_section {
  background: #fbfbfb;
  padding: 110px 0px;
}

.trusted_section .company_logos {
  padding-top: 20px;
}

.trusted_section .company_logos img {
  filter: grayscale(1);
  margin: 0 auto;
  transition: 0.4s all;
}

.trusted_section .company_logos img:hover {
  filter: grayscale(0);
}

.features_section {
  padding: 100px 0px;
}

/* ----------Feature-Detail-Section-start------ */
/* features section wraper */
.features_section .feature_detail {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 120px;
  padding-bottom: 20px;
}

/* features section image */
.features_section .feature_detail .feature_img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -75px;
  text-align: center;
}

.features_section .feature_detail .feature_img img {
  max-width: 80%;
  margin: auto;
}

/* features section box */
.features_section .feature_detail .feature_box {
  max-width: 410px;
}

.features_section .feature_detail .feature_box .data_block {
  margin-bottom: 50px;
  display: flex;
}

.features_section .feature_detail .feature_box .data_block h4 {
  font-size: 20px;
  color: #000;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}

.features_section .feature_detail .left_data {
  text-align: right;
  padding-left: 60px;
}

.features_section .feature_detail .right_data {
  padding-right: 60px;
}

.features_section .feature_detail .left_data .data_block .icon {
  margin-right: -15px;
}

.features_section .feature_detail .right_data .data_block .icon {
  margin-left: -15px;
}

.features_section .container {
  max-width: 1370px;
}

/* -----------------About-App-Section-Css-Start------------------ */
/* about us section wraper */
.about_app_section .about_img {
  display: flex;
  align-items: center;
  position: relative;
}

/* about us section images*/
.about_app_section .about_img img {
  max-width: 100%;
}

.about_app_section .about_img::before {
  content: "";
  position: absolute;
  left: 38%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-color: var(--bg-white);
  border-radius: 100%;
  z-index: -1;
}

.about_app_section .about_img .screen_img {
  margin-left: -135px;
  margin-top: 110px;
}

.about_app_section .about_text .section_title {
  text-align: left;
}

.about_app_section .about_text .section_title h2 {
  margin-bottom: 15px;
}

/* about us section  statastics nomber */
.about_app_section .about_text .app_statstic {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
  margin-top: 40px;
}

.about_app_section .about_text .app_statstic li {
  width: 248px;
  background-color: var(--bg-white);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  border-radius: 12px;
  padding: 15px 10px;
  padding-left: 15px;
  box-shadow: 0px 4px 10px #c7c7c7;
}

.about_app_section .about_text .app_statstic li .icon {
  margin-right: 9px;
}

.about_app_section .about_text .app_statstic li p {
  margin-bottom: 0;
  line-height: 1;
  line-height: 20px;
  color: #000000;
}

.about_app_section .about_text .app_statstic li p:first-child {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 3px;
}

/* -------------Modern-Ui-Section-Css-Start---------------- */
/* modern ui section wraper */
.modern_ui_section .row {
  align-items: center;
}

.modern_ui_section .design_block {
  margin-top: 45px;
}

/* modern ui text */
.modern_ui_section .section_title {
  text-align: left;
}

.modern_ui_section .ui_text {
  padding-right: 75px;
}

/* modern ui list */
.modern_ui_section .design_block li {
  padding-left: 40px;
  position: relative;
  margin-bottom: 25px;
}

.modern_ui_section .design_block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  background-image: url(../images/right_icon.png);
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.modern_ui_section .design_block li h4 {
  font-size: 18px;
  color: #000;
  font-weight: 500;
  font-family: "Lufga";
  margin-bottom: 8px;
}

.modern_ui_section .design_block li p {
  margin-bottom: 0;
}

/* modern ui images */
.modern_ui_section .ui_images {
  display: flex;
  position: relative;
}

.modern_ui_section .ui_images::before {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border-radius: 100%;
  background-color: var(--bg-white);
  z-index: -1;
}

.modern_ui_section .ui_images .right_img img:nth-child(3) {
  margin-left: -140px;
  margin-top: -20px;
}

.modern_ui_section .ui_images .right_img img:nth-child(2) {
  margin-left: -90px;
  margin-top: -20px;
}

.modern_ui_section .ui_images .right_img img:nth-child(1) {
  position: relative;
  top: 15px;
  z-index: 99;
  margin-left: -15px;
}

/* -------------How_It_Works-Section-Css-Start------------------ */
/* how it works wraper */
.how_it_works .container {
  max-width: 1370px;
}

.how_it_works .how_it_inner {
  background-color: var(--bg-white);
  padding: 70px 0;
  padding-bottom: 250px;
  border-radius: 30px;
  box-shadow: 0px 4px 30px #ede9fe;
}

/* how it works list */
.how_it_works .step_block ul {
  max-width: 1080px;
  margin: 0 auto;
  padding: 10px;
}

.how_it_works .step_block ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
}

.how_it_works .step_block ul li::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50px;
  transform: translateX(-50%);
  width: 4px;
  height: calc(100% + 100px);
  background-color: var(--light-bg);
}

.how_it_works .step_block ul li:first-child::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  background-color: var(--light-bg);
  border-radius: 15px;
}

.how_it_works .step_block ul li:first-child::before {
  top: 0;
}

.how_it_works .step_block ul li:last-child::before {
  height: 50%;
  top: 0;
}

.how_it_works .step_block ul li .step_text,
.how_it_works .step_block ul li .step_img {
  width: 360px;
  text-align: right;
}

/* how it works image */
.how_it_works .step_block ul li .step_img img {
  max-width: 100%;
}

/* how it works heading h4 */
.how_it_works .step_block ul li .step_text h4 {
  font-size: 20px;
  font-weight: 600;
}

.modernnn .row {
  align-items: inherit;
}

.how_it_works .step_block ul li .step_text .app_icon {
  margin-bottom: 10px;
}

.how_it_works .step_block ul li .step_text .app_icon a {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: var(--light-bg);
  color: var(--text-white);
  font-size: 20px;
  text-align: center;
  line-height: 40px;
  transition: 0.4s all;
}

.how_it_works .step_block ul li .step_text .app_icon a:hover {
  background-color: var(--purple);
}

.how_it_works .step_block ul li .step_text span {
  font-weight: 600;
}

.how_it_works .step_block ul li .step_text span a {
  color: var(--purple);
  text-decoration: underline;
}

.how_it_works .step_block ul li:nth-child(2) {
  flex-direction: row-reverse;
}

.how_it_works .step_block ul li:nth-child(2) .step_text,
.how_it_works .step_block ul li:nth-child(2) .step_img {
  text-align: left;
}

/* how it works numbers */
.how_it_works .step_block ul li .step_number {
  background-image: url(../images/icon_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 110px;
  height: 110px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

/* how it works numbers heading h3 */
.how_it_works .step_block ul li .step_number h3 {
  font-size: 30px;
  font-weight: 600;
}

/* how it works video  */
.how_it_works .yt_video {
  max-width: 1170px;
  margin: 0 auto;
  margin-top: -200px;
  position: relative;
  overflow: hidden;
}

.how_it_works .yt_video .thumbnil {
  position: relative;
}

.how_it_works .yt_video .thumbnil img {
  max-width: 100%;
}

.how_it_works .yt_video .thumbnil a {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--text-white);
  font-weight: 600;
  z-index: 999;
  cursor: pointer;
}

.how_it_works .yt_video .thumbnil a span {
  display: block;
  font-weight: 700;
  font-size: 30px;
}

.how_it_works .yt_video .thumbnil a .play_btn {
  background-color: rgba(255, 255, 255, 0.1);
  width: 96px;
  height: 96px;
  border-radius: 100px;
  text-align: center;
  margin: 0 auto;
  line-height: 96px;
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.how_it_works .yt_video .thumbnil a .play_btn img {
  width: 50px;
  position: relative;
  z-index: 999;
}

/* how it works video model   */
.modal {
  z-index: 999999;
}

.modal-backdrop.show {
  z-index: 99999;
  opacity: 0.7;
}

.youtube-video .modal-dialog {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  padding: 0 15px;
  height: 100%;
  max-width: 1240px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#video-container {
  position: relative;
  padding-bottom: 50%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

iframe#youtubevideo {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.youtube-video .modal-footer {
  border: none;
  text-align: center;
  display: block;
  padding: 0;
}

.youtube-video .modal-content {
  background: none !important;
  border: none;
}

#close-video {
  color: #fff;
  font-size: 30px;
}

/* video banner shape animation */
.thumbnil .banner_shape1,
.banner_shape2,
.banner_shape3 {
  position: absolute;
}

.thumbnil .banner_shape1 {
  top: 100px;
  left: 10%;
  animation: mymove 10s infinite;
}

.thumbnil .banner_shape2 {
  bottom: 50px;
  left: 20%;
  animation: mymove 5s infinite;
}

.thumbnil .banner_shape3 {
  top: 40px;
  right: 8%;
  animation: mymove 3s infinite;
}

@keyframes mymove {
  50% {
    transform: rotate(180deg);
  }
}

/* ------------Testimonial-Slider-Css-Start------------- */
/* testimonials wraper  */
#testimonial_slider {
  max-width: 550px;
  margin: 0 auto;
}

.testimonial_section .testimonial_block {
  background-image: url(../images/testimonial_bg.png);
  background-size: cover;
  background-position: center;
  position: relative;
  margin-top: 65px;
}

.testimonial_section .testimonial_block .testimonial_slide_box {
  text-align: center;
  width: 430px;
  padding: 10px;
  margin: 0 auto;
}

/* testimonials rating  */
.testimonial_section .testimonial_block .rating span {
  color: #fc9400;
  font-size: 18px;
}

.testimonial_section .testimonial_block .testimonial_slide_box .review {
  margin-top: 10px;
  margin-bottom: 30px;
}

/* testimonials image  */
.testimonial_section
  .testimonial_block
  .testimonial_slide_box
  .testimonial_img
  img {
  margin: 0 auto;
}

/* testimonials heading h3 */
.testimonial_section .testimonial_block .testimonial_slide_box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  margin-top: 10px;
}

.testimonial_section .testimonial_block .testimonial_slide_box .designation {
  font-size: 15px;
}

/* testimonials total review */
.testimonial_section .total_review {
  text-align: center;
  margin-top: 60px;
}

.testimonial_section .total_review .rating {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* testimonials paragraph */
.testimonial_section .total_review .rating p {
  margin-bottom: 0;
  font-weight: 600;
  margin-left: 5px;
  color: var(--dark-purple);
}

/* testimonials heading */
.testimonial_section .total_review h3 {
  font-size: 50px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--dark-purple);
}

.testimonial_section .total_review a {
  color: var(--purple);
  font-weight: 700;
}

.testimonial_section .testimonial_block .avtar_faces {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100%;
}

.testimonial_section .testimonial_block .avtar_faces img {
  max-width: 100%;
}

/* -------------------Pricing-Section---------------------- */
/* pricing wraper  */
.pricing_section .toggle_block {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* pricing toggle button */
.pricing_section .toggle_block span {
  color: var(--dark-purple);
  font-weight: 600;
  display: block;
  margin: 0 5px;
}

.tog_btn.month_active {
  left: 35px !important;
}

.pricing_section .toggle_block span.deactive {
  color: var(--body-text-purple);
}

.pricing_section .toggle_block .offer {
  background-color: var(--bg-white);
  border-radius: 5px;
  padding: 2px 10px;
  font-weight: 400;
  font-size: 13px;
  color: var(--purple);
}

.pricing_section .toggle_block .tog_block {
  width: 70px;
  height: 35px;
  background-color: var(--bg-white);
  border-radius: 18px;
  margin: 0 10px;
  position: relative;
  cursor: pointer;
}

.pricing_section .toggle_block .tog_block .tog_btn {
  height: 23px;
  width: 23px;
  border-radius: 25px;
  display: block;
  background-color: var(--purple);
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s all;
}

.pricing_section .toggle_block .month.active,
.pricing_section .toggle_block .years.active {
  color: var(--purple);
}

/* pricing pannel */
.pricing_section .pricing_pannel {
  margin-top: 50px;
  display: none;
}

.pricing_section .pricing_pannel.active {
  display: block;
}

.pricing_section .pricing_pannel .pricing_block {
  text-align: center;
  background-color: var(--bg-white);
  min-height: 700px;
  border-radius: 12px;
  padding-top: 60px;
  margin-bottom: 40px;
  box-shadow: 0px 4px 30px #ede9fe;
}

.pricing_section .pricing_pannel .pricing_block.highlited_block {
  background-color: var(--purple);
}

.pricing_section .pricing_pannel .pricing_block.highlited_block p,
.pricing_section .pricing_pannel .pricing_block.highlited_block h3,
.pricing_section .pricing_pannel .pricing_block.highlited_block span,
.pricing_section .pricing_pannel .pricing_block.highlited_block .pkg_name span {
  color: var(--text-white);
}

.pricing_section .pricing_pannel .pricing_block .icon {
  margin-bottom: 35px;
}

/* pricing box image */
.pricing_section .pricing_pannel .pricing_block .icon img {
  width: 120px;
}

/* pricing box heading h3 */
.pricing_section .pricing_pannel .pricing_block .pkg_name h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
}

.pricing_section .pricing_pannel .pricing_block .pkg_name span {
  color: var(--body-text-purple);
  font-size: 15px;
}

.pricing_section .pricing_pannel .pricing_block .price {
  font-size: 48px;
  color: var(--purple);
  margin: 25px 0;
  display: block;
  font-weight: 600;
}

/* pricing box list */
.pricing_section .pricing_pannel .pricing_block .benifits {
  margin-bottom: 40px;
}

.pricing_section .pricing_pannel .pricing_block .benifits li p {
  margin-bottom: 5px;
}

.pricing_section .contact_text {
  text-align: center;
  margin-bottom: 0;
}

.pricing_section .contact_text a {
  color: var(--purple);
  text-decoration: underline;
}

/* -------------FAQ-Section-Css-Start----------------- */
/* faq wraper */
.faq_section .faq_panel {
  margin-top: 40px;
}

/* faq box */
.faq_section .faq_panel .card {
  border: none;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px #ede9fe;
  padding: 16px 0;
}

.faq_section .faq_panel .card:last-child {
  margin-bottom: 0;
}

.faq_section .faq_panel .card-header {
  background-color: transparent;
  border: none;
  padding-bottom: 0;
  padding-top: 0;
}

.faq_section .faq_panel .card-header .btn {
  padding: 0;
  color: var(--dark-purple);
  font-weight: 600;
  font-size: 20px;
}

.faq_section .faq_panel .card-header .btn.active {
  color: var(--purple);
}

.faq_panel .accordion button,
.faq_panel .accordion button:hover,
.faq_panel .accordion button:focus {
  text-decoration: none;
}

.faq_section .faq_panel .card-header .icon_faq {
  position: absolute;
  right: 20px;
  color: #839bc0;
}

/* faq heading h2 */
.faq_section .faq_panel .card-header h2 {
  line-height: 1;
}

/* faq paragraph */
.faq_section .faq_panel .card-body {
  padding-bottom: 0;
}
/* Slider */
.slick-slider {
  position: relative;

  display: block;
  box-sizing: border-box;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;

  display: block;
  overflow: hidden;

  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;

  content: "";
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;

  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;

  height: auto;

  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
#carouselMisclass {
  padding-left: 10px;
  padding-right: 10px;
}

.slick-slider {
  touch-callout: none;
  tap-highlight-color: transparent;
  box-sizing: border-box;
  touch-action: pan-y;
  user-select: none;
}
.vartical_slider_slick a.btn.puprple_btn {
  margin-top: 40px;
}

.slick-list,
.slick-slider {
  display: block;
  position: relative;
}

.slick-list {
  margin: 0;
  overflow: hidden;
  padding: 0 !important;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-list:before {
  background: hsla(0, 0%, 100%, 0.5);
  content: "";
  display: block;
  height: 60px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.slick-slider .slick-list,
.slick-slider .slick-track {
  transform: translateZ(0);
}

.slick-track {
  display: block;
  left: 0;
  position: relative;
  top: 0;
}
.slick-track:after,
.slick-track:before {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  border: 0;
  display: block;
  height: 181px;
  outline: none;
}
/* .slick-vertical .slick-slide::selection, .slick-vertical .slick-slide:active, .slick-vertical .slick-slide:focus {
    border: 0 !important;
    box-shadow: none;
    outline: none !important;
} */

.slick-arrow.slick-hidden {
  display: none;
}

.slick-current {
  position: relative;
}
.carousel-card {
  align-items: flex-start;
  background-color: #fff;
  border: 1px solid #e8ebf2;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 8, 0.08);
  display: flex;
  flex-direction: column;
  padding: 32px;
  width: 340px;
}
.carousel-card {
  align-items: center;
  border: 1px solid #15357a !important;
  border-radius: 18px;
  display: flex !important;
  margin: 8px 0;
  max-width: 465px;
  opacity: 0.3;
  padding: 8px 15px;
  transition: all 0.25s ease-in-out;
}

.carousel-card.slick-current {
  opacity: 1;
}

.carousel-card img {
  margin-right: 24px;
}

.carousel-card p {
  font-size: 14px !important;
  margin-bottom: 0;
}

/* -----------Interface_Section-Css-Start----------------- */
/* interface wraper */
.interface_section .screen_slider {
  margin-top: 35px;
  min-height: 720px;
}

/* interface images */
.interface_section .owl-item .screen_frame_img img {
  transform: scale(0.9);
  border: 2px solid #000;
  border-radius: 20px;
  transition: 1s all;
  margin: 0 auto;
}

.interface_section .owl-item.center .screen_frame_img img {
  transform: scale(1);
  border: 3px solid #000;
}

/* -----------Download_App_Section-Start------------------ */
/* download app wraper */
.free_app_section {
  padding-top: 70px;
  position: relative;
}

.free_app_section .container {
  max-width: 1370px;
}

.free_app_section .container .free_app_inner {
  background-color: var(--bg-purple);
  border-radius: 30px;
  padding: 20px 100px;
  padding-bottom: 50px;
  position: relative;
  z-index: 999999;
}
.js-loading {
  display: none;
}
/* download app dark background */
.free_app_section .container .free_app_inner .dark_bg {
  overflow: hidden;
}

.free_app_section .container .free_app_inner .dark_bg span {
  z-index: 9999;
}

.free_app_section .container .free_app_inner .row {
  align-items: center;
}

.free_app_section .container .free_app_inner .free_text .section_title {
  text-align: left;
}

/* download app heading h2 */
.free_app_section .container .free_app_inner .free_text .section_title h2 {
  margin-bottom: 20px;
}

.free_app_section .container .free_app_inner .free_text .section_title h2,
.free_app_section .container .free_app_inner .free_text .section_title p {
  color: var(--text-white);
}

.free_app_section .container .free_app_inner .free_text .app_btn {
  display: flex;
  align-items: center;
}

.free_app_section .container .free_app_inner .free_text .app_btn li a {
  display: block;
  padding: 12px 30px;
  background-color: var(--bg-white);
  border: 2px solid var(--purple);
  position: relative;
  border-radius: 12px;
  transition: 0.4s all;
}

.free_app_section .container .free_app_inner .free_text .app_btn li a:hover {
  -webkit-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
}

.free_app_section .container .free_app_inner .free_text .app_btn li:last-child {
  margin-left: 25px;
}

.free_app_section .container .free_app_inner .free_img {
  display: flex;
  align-items: center;
  margin-top: -120px;
}

.free_app_section .container .free_app_inner .free_img img:last-child {
  margin-left: -65px;
}

.purple_backdrop {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(50, 35, 111, 0.95);
  width: 100%;
  height: 100%;
  z-index: 99999;
  opacity: 0;
  transition: 0.4s all;
  pointer-events: none;
}

/* ---------------Latest_Story-Css-Start------------- */
/* latest story wraper */
.latest_story {
  margin-bottom: 80px;
}

/* latest story box */
.latest_story .story_box {
  background-color: var(--bg-white);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 4px 30px #ede9fe;
}

/* latest story image */
.latest_story .story_box .story_img {
  position: relative;
}

.latest_story .story_box .story_img img {
  max-width: 100%;
  border-radius: 12px;
}

.latest_story .story_box .story_img span {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 14px;
  color: var(--text-white);
}

/* latest story pargraph */
.latest_story .story_box .story_text {
  padding: 20px 30px;
}

/* latest story heading h3 */
.latest_story .story_box .story_text h3 {
  color: #000;
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* latest story link text */
.latest_story .story_box .story_text a {
  color: #000;
  margin-top: 25px;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
  font-family: "DM Sans", sans-serif;
}

.latest_story .story_box .story_text a:hover {
  text-decoration: underline;
}

/* -------------Newsletter-Section-Css-Start------------- */
/* newsletter  wraper */
.newsletter_box {
  background-color: var(--bg-purple);
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 4px 10px #0c0c0c21;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -95px;
  position: relative;
  z-index: 99;
}

.newsletter_box .section_title {
  width: 45%;
}

.newsletter_box form {
  width: 60%;
}

/* newsletter heading h2 */
.newsletter_box .section_title h2 {
  margin-bottom: 5px;
  letter-spacing: -1px;
}

.newsletter_box .section_title h2,
.newsletter_box .section_title p {
  color: var(--text-white);
  text-align: left;
}

/* newsletter paragraph */
.newsletter_box .section_title p {
  margin-bottom: 0;
}

/* newsletter input  */
.newsletter_box form {
  display: flex;
}

.newsletter_box form .form-group {
  margin-bottom: 0;
}

.newsletter_box form .form-group .form-control {
  width: 430px;
  height: 55px;
  border-radius: 6px;
  color: var(--dark-purple);
}

.newsletter_box form .form-group .form-control::placeholder {
  color: var(--dark-purple);
}

/* newsletter button */
.newsletter_box form .form-group .btn {
  height: 55px;
  width: 170px;
  text-transform: uppercase;
  color: var(--purple);
  background-color: var(--bg-white);
  border-radius: 6px;
  margin-left: 10px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.newsletter_box form .form-group .btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: var(--bg-purple);
  border-radius: 0;
  transition: 0.6s all;
  z-index: -1;
}

.newsletter_box form .form-group .btn:hover::before {
  width: 100%;
}

.newsletter_box form .form-group .btn:hover {
  color: var(--text-white);
}

/* ------Footer-Css-Start-------------- */
/* footer wraper */
footer {
  position: relative;
}

footer .top_footer {
  background-color: #47d367;
  padding: 60px 0 60px 0;
  position: relative;
  overflow: hidden;
}

footer .top_footer .container {
  position: relative;
}

/* footer logo */
footer .top_footer .logo {
  margin-bottom: 40px;
}

footer .top_footer .logo img {
  width: 150px;
}

footer .top_footer .abt_side li {
  padding: 0 0 10px 0;
}

/* footer social media icon */
footer .top_footer .social_media {
  display: flex;
  margin-top: 20px;
}

/* footer link list */
footer .top_footer .social_media li a {
  display: flex;
  width: 37px;
  height: 37px;
  text-align: center;
  line-height: 37px;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  margin-right: 10px;
  transition: 0.4s all;
  justify-content: center;
  align-items: center;
}

footer .top_footer .social_media li a:hover {
  background-color: var(--bg-white);
  color: var(--purple);
}

footer .top_footer .try_out {
  margin-left: -20px;
}

footer .app_btn li a {
  display: block;
  padding: 12px 10px;
  background-color: var(--bg-white);
  border: 2px solid var(--purple);
  position: relative;
  border-radius: 12px;
  transition: 0.4s all;
  width: 175px;
  text-align: center;
}

footer .app_btn li a:hover {
  -webkit-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 4px 8px -2px rgba(0, 0, 0, 0.5);
}

footer .app_btn li:last-child {
  margin-top: 20px;
}

footer .bottom_footer {
  background-color: #36bb55;
}

/* footer heading and text colors variable */
footer h2,
footer h3,
footer p,
footer a {
  color: #341f1f;
}

footer a:hover {
  color: var(--text-white);
}

/* footer heading h3 */
footer h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 50px;
  padding-top: 10px;
}

footer .links ul li a {
  display: block;
  margin-bottom: 10px;
  font-family: "DM Sans", sans-serif;
}

/* footer last */
footer .bottom_footer {
  padding: 20px 0;
}

footer .bottom_footer p {
  margin-bottom: 0;
  font-size: 15px;
}

footer .bottom_footer .developer_text {
  text-align: right;
}

footer .bottom_footer .developer_text a {
  text-decoration: underline;
}

/* footer shape animation */
.top_footer .banner_shape1,
.banner_shape2,
.banner_shape3 {
  position: absolute;
}

.top_footer .banner_shape1 {
  top: 200px;
  left: -15%;
  animation: mymove 10s infinite;
}

.top_footer .banner_shape2 {
  top: 100px;
  right: -10%;
  animation: mymove 5s infinite;
}

.top_footer .banner_shape3 {
  top: 400px;
  right: -20%;
  animation: mymove 3s infinite;
}

@keyframes mymove {
  50% {
    transform: rotate(180deg);
  }
}

/* footer go top button */
.go_top {
  position: fixed;
  right: 30px;
  bottom: 75px;
  cursor: pointer;
  transition: 0.4s all;
  opacity: 0;
  z-index: 1;
}

.go_top:hover {
  bottom: 80px;
}

/* -----------Animation-Css-Start-------------- */
/* animation line wraper */
.anim_line {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.anim_line span {
  position: absolute;
  z-index: 99999;
  top: -275px;
  animation: star_down_one 6s infinite linear;
  opacity: 0;
}

.anim_line.dark_bg {
  max-width: 1170px;
}

.anim_line.dark_bg span {
  transform: rotate(180deg);
}

.anim_line span:first-child {
  left: -17%;
  animation-delay: 3s;
}

.anim_line span:nth-child(2) {
  left: 0%;
  animation-delay: 5s;
}

.anim_line span:nth-child(3) {
  left: 17%;
  animation-delay: 1s;
}

.anim_line span:nth-child(4) {
  left: 34%;
  animation-delay: 4s;
}

.anim_line span:nth-child(5) {
  left: 51%;
  animation-delay: 7s;
}

.anim_line span:nth-child(6) {
  left: 68%;
}

.anim_line span:nth-child(7) {
  left: 85%;
  animation-delay: 3s;
}

.anim_line span:nth-child(8) {
  left: 99%;
  animation-delay: 2s;
}

.anim_line span:nth-child(9) {
  left: 117%;
  animation-delay: 5s;
}

/* footer .top_footer .anim_line span:first-child {
    left: 5%;
}

footer .top_footer .anim_line span:nth-child(2) {
    left: 13%;
} */
@keyframes star_down_one {
  0% {
    opacity: 0;
    top: -250px;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

/* --------Object-Moving-Animation-Css-Start----- */
.moving_animation {
  animation: moving_object 6s infinite linear;
}

.moving_position_animatin {
  position: relative;
  animation: moving_position_animatin 4s infinite linear;
  z-index: -1;
}

.about_app_section .about_img .screen_img img {
  animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(3) {
  animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(2) {
  animation-delay: 3s;
}

.modern_ui_section .ui_images .right_img img:nth-child(1) {
  animation-delay: 3s;
}

@keyframes moving_object {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes moving_position_animatin {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0);
  }
}

/*------Header Btn Animation------*/
@keyframes pulse-blue-small-sm {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }

  100%,
  30% {
    box-shadow: 0 0 0 12px transparent;
  }
}

@keyframes pulse-blue-medium-sm {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  100%,
  30% {
    box-shadow: 0 0 0 20px transparent;
  }
}

/* Inner Page banner shape animation */
.bred_crumb .banner_shape1,
.banner_shape2,
.banner_shape3 {
  position: absolute;
}

.bred_crumb .banner_shape1 {
  top: 200px;
  left: 15%;
  animation: mymove 10s infinite;
}

.bred_crumb .banner_shape2 {
  top: 100px;
  right: 10%;
  animation: mymove 5s infinite;
}

.bred_crumb .banner_shape3 {
  top: 350px;
  right: 20%;
  animation: mymove 3s infinite;
}

/* CTA section Shape animation */
.query_section .banner_shape1,
.banner_shape2,
.banner_shape3 {
  position: absolute;
}

.query_section .banner_shape1 {
  top: 200px;
  left: 15%;
  animation: mymove 10s infinite;
}

.query_section .banner_shape2 {
  top: 100px;
  right: 10%;
  animation: mymove 5s infinite;
}

.query_section .banner_shape3 {
  top: 350px;
  right: 20%;
  animation: mymove 3s infinite;
}

@keyframes mymove {
  50% {
    transform: rotate(180deg);
  }
}

/* ----------Other-Page-Css-Start---------- */
/* White Header Css Satart */
.white_header .navbar-expand-lg .navbar-nav .has_dropdown:hover .drp_btn {
  color: var(--purple);
}

.white_header .navbar-expand-lg .navbar-nav .nav-link.dark_btn {
  background-color: var(--bg-white);
  color: var(--purple);
}

header.fix_style.white_header {
  background-color: #664bece0;
}

/* About Us Page Css Start */
/* Bredcrumb Css Start */
.bred_crumb {
  background-image: url(../images/bread_crumb_bg.png);
  /*background: var(--purple);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 0px;
}

.bred_crumb::after {
  content: "";
  background-image: url(../images/inner_page_banner_overlay.svg);
  position: absolute;
  bottom: -1px;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 200px;
  background-position: center;
}

.bred_crumb .bred_text {
  text-align: center;
  z-index: 1000;
  position: relative;
}

.bred_crumb .bred_text h1 {
  color: var(--text-white);
  font-size: 55px;
  font-weight: 700;
}

.bred_crumb .bred_text h1 + p {
  color: var(--text-white);
  margin-top: -5px;
}

.bred_crumb .bred_text ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bred_crumb .bred_text ul li {
  margin: 0 5px;
}

.bred_crumb .bred_text ul li a,
.bred_crumb .bred_text ul li span {
  color: var(--text-white);
  font-size: 14px;
  transition: 0.4s all;
}

.bred_crumb .bred_text ul li a:hover {
  text-decoration: underline;
}

.bred_crumb .bred_text .search_bar {
  margin-top: 25px;
  position: relative;
  z-index: 1000;
}

.bred_crumb .bred_text .search_bar form .form-group {
  position: relative;
  max-width: 600px;
  height: 60px;
  margin: 0 auto;
}

.bred_crumb .bred_text .search_bar form .form-group .form-control {
  width: 100%;
  height: 100%;
  border-radius: 100px;
  border: 1px solid var(--bg-purple);
  font-size: 16px;
  padding-left: 30px;
  color: var(--body-text-purple);
}

.bred_crumb .bred_text .search_bar form .form-group .form-control::placeholder {
  color: var(--body-text-purple);
}

.bred_crumb .bred_text .search_bar form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: var(--dark-purple);
}

.bred_crumb .bred_text .search_bar form .form-group .btn {
  position: absolute;
  right: 2px;
  top: 2px;
  background-color: var(--bg-purple);
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 100px;
  text-align: center;
  line-height: 56px;
  font-size: 23px;
  color: var(--text-white);
}

.bred_crumb .bred_text .search_bar form .form-group .btn:hover {
  background-color: var(--dark-purple);
}

/* ----About App Soluction Section--- */
.app_solution_section .row {
  align-items: center;
}

.app_solution_section .app_text .section_title {
  text-align: left;
  margin-bottom: 20px;
}

.app_solution_section .app_text .section_title h2 {
  letter-spacing: -1px;
}

.app_solution_section .app_text p {
  padding-right: 40px;
}

.app_solution_section .app_images {
  position: relative;
}

.app_solution_section .app_images ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.app_solution_section .app_images ul li {
  position: relative;
}

.app_solution_section .app_images ul li a {
  position: relative;
}

.app_solution_section .app_images ul li a .play_icon {
  background-color: rgba(255, 255, 255, 0.1);
  width: 96px;
  height: 96px;
  border-radius: 100px;
  text-align: center;
  margin: 0 auto;
  line-height: 96px;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.app_solution_section .app_images ul li img {
  max-width: 100%;
}

.app_solution_section .app_images li:first-child {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.app_solution_section .app_images ul li:nth-child(2) {
  left: -5px;
  cursor: pointer;
}

.app_solution_section .app_images ul li:nth-child(3) {
  right: -5px;
}

.app_solution_section .app_images::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 570px;
  height: 570px;
  border-radius: 100%;
  background-color: var(--bg-white);
  z-index: -1;
}

/* ------Why Section CSS Start------ */
.why_we_section {
  display: flex;
  justify-content: center;
}

.why_we_section .why_inner {
  background-color: var(--bg-white);
  border-radius: 30px;
  width: 1370px;
  margin: 0 15px;
  box-shadow: 0 4px 30px #ede9fe;
  padding: 85px 0;
}

.why_we_section .why_inner .section_title {
  margin-bottom: 50px;
}

.why_we_section .why_inner .why_box .icon {
  margin-bottom: 45px;
}

.why_we_section .why_inner .why_box .icon img {
  max-width: 100%;
}

.why_we_section .why_inner .why_box .text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 10px;
}

.why_we_section .why_inner .why_box .text p {
  margin-bottom: 0;
}

/* About-Page-Sectino */
.about_page_sectino img {
  max-width: 100%;
}

/* -----------experts_team_sectio---------- */
.experts_team_section .experts_box {
  position: relative;
  text-align: center;
  padding: 35px 30px;
  border-radius: 12px;
  background-color: transparent;
  transition: 0.4s all;
}

.experts_team_section .experts_box img {
  margin-bottom: 30px;
  max-width: 100%;
}

.experts_team_section .experts_box .text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-purple);
  transition: 0.4s all;
}

.experts_team_section .experts_box .text span {
  color: var(--body-text-purple);
}

.experts_team_section .experts_box .social_media {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5px;
}

.experts_team_section .experts_box .social_media a {
  display: block;
  width: 33px;
  height: 33px;
  border: 1px solid #cccce2;
  border-radius: 50px;
  text-align: center;
  line-height: 31px;
  color: #898aae;
  margin: 0 5px;
  transition: 0.4s all;
  font-size: 15px;
}

.experts_team_section .experts_box .social_media a:hover {
  border-color: var(--purple);
  background-color: var(--bg-purple);
  color: var(--text-white);
}

.experts_team_section .experts_box:hover {
  background-color: var(--bg-white);
  box-shadow: 0 4px 10px #ede9fe;
}

.experts_team_section .experts_box:hover h3 {
  color: var(--purple);
}

/* ---------Query-Section-Css-Start-------- */
.query_section {
  display: flex;
  justify-content: center;
}

.query_inner {
  width: 1370px;
  margin: 0 15px;
  /*background-image: url(../images/query_bg.png);*/
  background: var(--purple);
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 30px;
  min-height: 420px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.query_inner .section_title h2,
.query_inner .section_title p {
  color: #fff;
}

.query_inner .section_title {
  margin-bottom: 40px;
}

.query_inner .white_btn {
  font-size: 25px;
  font-weight: 700;
}

.query_inner .white_btn:hover {
  border-color: #fff;
}

.about_trust_section {
  margin-bottom: 40px;
}

/* Blog List Css Start */
.blog_list_story {
  margin-bottom: 50px;
}

.blog_list_main {
  position: relative;
}

.blog_list_main > .container > .row {
  align-items: center;
}

.blog_list_main .blog_img {
  position: relative;
}

.blog_list_main .blog_img img {
  max-width: 100%;
  border-radius: 12px;
}

.blog_list_main .blog_img span {
  position: absolute;
  left: 15px;
  top: 15px;
  font-size: 14px;
  color: var(--text-white);
}

.blog_list_main .blog_text .section_title {
  text-align: left;
}

.blog_list_main .blog_text .choice_badge {
  font-size: 12px;
  background-color: #f8d979;
  display: inline-block;
  padding: 1px 10px;
  border-radius: 4px;
  color: var(--dark-purple);
  font-weight: 700;
  margin-bottom: 10px;
}

.blog_list_main .blog_text a {
  color: var(--purple);
  margin-top: 25px;
  display: block;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: 600;
}

.blog_list_main .blog_text a:hover {
  text-decoration: underline;
}

.blog_list_story.row_am {
  padding-top: 30px;
}

.blog_list_story .story_box {
  margin-bottom: 40px;
  text-align: left;
}

/* Pagination Css Start */
.pagination_block ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.pagination_block ul li:not(:first-child, :last-child) a {
  margin: 0 5px;
  transition: 0.4s all;
  display: block;
  width: 35px;
  height: 35px;
  background-color: transparent;
  border-radius: 50px;
  text-align: center;
  line-height: 35px;
}

.pagination_block ul li:first-child {
  margin-right: 20px;
}

.pagination_block ul li:last-child {
  margin-left: 20px;
}

.pagination_block ul li:not(:first-child, :last-child) a:hover,
.pagination_block ul li:not(:first-child, :last-child) a.active {
  background-color: var(--bg-purple);
  color: var(--text-white);
}

.pagination_block ul li:first-child a:hover {
  color: var(--purple);
}

.pagination_block ul li:last-child a:hover {
  color: var(--purple);
}

/* Blog Detail Css Start */
.blog_detail_section {
  margin-bottom: 40px;
}

.blog_detail_bredcrumb.bred_crumb .bred_text {
  margin-top: -30px;
}

.blog_detail_section .blog_inner_pannel {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 45px 60px;
  margin-top: -120px;
  position: relative;
  box-shadow: 0 8px 30px #c0bad76b;
}

.blog_detail_section .blog_inner_pannel .review {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

.blog_detail_section .blog_inner_pannel .review span {
  line-height: 1;
}

.blog_detail_section .blog_inner_pannel .review span:first-child {
  color: var(--purple);
  display: inline-block;
  font-weight: 700;
}

.blog_detail_section .blog_inner_pannel .review span:last-child {
  color: var(--dark-purple);
  display: inline-block;
  margin-left: 15px;
  padding-left: 15px;
  border-left: 1px solid var(--dark-purple);
}

.blog_detail_section .blog_inner_pannel .section_title {
  margin-bottom: 40px;
}

.blog_detail_section .blog_inner_pannel .section_title h2 {
  margin-bottom: 0;
}

.blog_detail_section .blog_inner_pannel img {
  max-width: 100%;
}

.blog_detail_section .blog_inner_pannel .main_img {
  margin-bottom: 30px;
}

.blog_detail_section .blog_inner_pannel .info h3 {
  font-weight: 700;
  color: var(--dark-purple);
  margin-top: 30px;
  font-size: 25px;
  margin-bottom: 15px;
}

.blog_detail_section .blog_inner_pannel .info ul {
  padding-left: 50px;
  padding-top: 10px;
  margin-bottom: 30px;
}

.blog_detail_section .blog_inner_pannel .info ul li p {
  position: relative;
  padding-left: 25px;
  margin-bottom: 0;
}

.blog_detail_section .blog_inner_pannel .info ul li p .icon {
  position: absolute;
  left: 0;
  color: var(--purple);
}

.blog_detail_section .blog_inner_pannel .two_img {
  margin-bottom: 70px;
}

.blog_detail_section .blog_inner_pannel .quote_block {
  background-color: #f6f4fe;
  border-radius: 12px;
  padding: 55px 35px 35px 60px;
  position: relative;
  margin-top: 50px;
  margin-bottom: 35px;
}

.blog_detail_section .blog_inner_pannel .quote_block h2 {
  font-size: 25px;
  line-height: 37px;
}

.blog_detail_section .blog_inner_pannel .quote_block p {
  margin-bottom: 0;
  margin-top: 15px;
}

.blog_detail_section .blog_inner_pannel .quote_block .name {
  color: var(--purple);
  font-weight: 700;
}

.blog_detail_section .blog_inner_pannel .quote_block .q_icon {
  position: absolute;
  top: -20px;
  width: 63px;
  height: 63px;
  background-color: var(--bg-white);
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog_detail_section .blog_inner_pannel .quote_block .q_icon img {
  width: 35px;
}

.blog_detail_section .blog_inner_pannel .blog_authore {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #d6d3e3;
  border-bottom: 1px solid #d6d3e3;
  margin: 35px 0;
}

.blog_detail_section .blog_inner_pannel .blog_authore .authore_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text {
  margin-left: 20px;
}

.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 5px;
}

.blog_detail_section .blog_inner_pannel .blog_authore .authore_info .text span {
  font-size: 14px;
}

.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul {
  display: flex;
}

/* Social Media link list */
.blog_detail_section .blog_inner_pannel .blog_authore .social_media ul li a {
  display: block;
  width: 37px;
  height: 37px;
  text-align: center;
  line-height: 37px;
  font-size: 15px;
  border: 1px solid #ccc9d7;
  border-radius: 50px;
  margin-right: 10px;
  transition: 0.4s all;
}

.blog_detail_section
  .blog_inner_pannel
  .blog_authore
  .social_media
  ul
  li:last-child
  a {
  margin-right: 0;
}

.blog_detail_section
  .blog_inner_pannel
  .blog_authore
  .social_media
  ul
  li
  a:hover {
  background-color: var(--bg-purple);
  color: var(--text-white);
}

.blog_detail_section .blog_inner_pannel .blog_tags ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog_detail_section .blog_inner_pannel .blog_tags ul .tags p {
  margin-bottom: 0;
  color: var(--dark-purple);
  font-weight: 500;
  margin-right: 5px;
}

.blog_detail_section .blog_inner_pannel .blog_tags ul li span {
  color: var(--purple);
  font-weight: 500;
}

/* comment section Css Start */
.comment_section ul {
  margin-top: 30px;
}

.comment_section ul li {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid #d6d3e3;
}

.comment_section ul li:last-child {
  padding-bottom: 0;
}

.comment_section ul li.replay_comment {
  margin-left: 110px;
}

.comment_section ul li .authore_info {
  display: flex;
  align-items: center;
  width: 260px;
}

.comment_section ul li .authore_info .avtar {
  width: 88px;
  margin-right: 20px;
}

.comment_section ul li .authore_info .text {
  width: calc(100% - 108px);
}

.comment_section ul li .authore_info .text h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-purple);
}

.comment_section ul li .authore_info .text span {
  font-size: 14px;
}

.comment_section ul li .comment {
  width: calc(100% - 310px);
  margin-left: 50px;
}

.comment_section ul li .comment p {
  margin-bottom: 0;
}

/* comment-form-section */
.comment_form_section form {
  margin-top: 30px;
}

.comment_form_section form .form-group .form-control {
  border-radius: 12px;
  height: 60px;
  box-shadow: 0 3px 6px #ede9fe;
  border: transparent;
  margin-bottom: 30px;
  color: var(--body-text-purple);
  padding: 15px;
}

.comment_form_section form .form-group .form-control::placeholder {
  color: var(--body-text-purple);
}

.comment_form_section form .form-group textarea.form-control {
  height: 140px;
  padding-top: 15px;
  resize: none;
}

/* Sign Up Css Start */
.full_bg {
  /*background-image: url(../images/form_bg.png);*/
  background-size: cover;
  background: var(--purple);
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  padding-bottom: 50px;
}

.signup_section {
  position: relative;
}

.signup_section .back_btn {
  position: absolute;
  left: 0;
  top: 92px;
  color: #fff;
  font-weight: 500;
}

.signup_section .top_part {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 50px;
}

.signup_form {
  width: 570px;
  margin: 0 auto;
  padding: 40px 0;
  border-radius: 12px;
  box-shadow: 0 4px 10px #00000054;
  background-color: var(--bg-white);
}

.signup_form form {
  padding: 0 60px;
}

.signup_form .section_title {
  padding: 0 15px;
}

.signup_form .section_title h2 {
  font-weight: 600;
}

.signup_form form .form-group {
  margin-bottom: 20px;
}

.signup_form form .form-group .form-control {
  height: 60px;
  padding: 5px 20px;
  color: var(--body-text-purple);
  border: 2px solid #e1dbf4;
  border-radius: 12px;
  font-weight: 500;
}

.signup_form form .form-group .form-control:focus {
  box-shadow: none;
  border-color: var(--purple);
  color: var(--purple);
}

.signup_form form .form-group .puprple_btn {
  min-width: 240px;
  display: block;
  margin: 40px auto;
  margin-bottom: 30px;
  font-weight: 600;
}

.signup_form .or_block {
  display: block;
  text-align: center;
  border-bottom: 1px solid #e3e1ed;
}

.signup_form .or_block span {
  position: relative;
  top: 14px;
  padding: 0 5px;
  background-color: var(--bg-white);
  color: #8081ad;
}

.signup_form .or_option {
  text-align: center;
}

.signup_form .or_option > p {
  color: #8081ad;
  margin-top: 30px;
}

.signup_form .or_option .google_btn {
  min-width: 330px;
  border: 2px solid #e1dbf4;
  text-align: center;
  color: var(--body-text-purple);
  padding: 16px;
  border-radius: 100px;
  transition: 0.4s all;
}

.signup_form .or_option .google_btn:hover {
  border-color: var(--light-purple);
}

.signup_form .or_option .google_btn img {
  margin-right: 20px;
}

.signup_form .or_option p a {
  color: var(--purple);
  text-decoration: underline;
  transition: 0.4s all;
}

.signup_form .or_option p a:hover {
  color: var(--dark-purple);
}

/* Review List Section Css Start */
.review_list_section .review_box {
  padding: 40px 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px #ede9fe;
  margin: 20px 0;
}

.review_list_section .review_box .rating ul {
  display: flex;
}

.review_list_section .review_box .rating ul li span {
  color: #fc9400;
  font-size: 18px;
}

.review_list_section .review_box h3 {
  font-size: 20px;
  color: var(--purple);
  margin: 10px 0;
}

.review_list_section .review_box .reviewer {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.review_list_section .review_box .reviewer .avtar {
  width: 80px;
}

.review_list_section .review_box .reviewer .text {
  margin-left: 20px;
  width: calc(100% - 100px);
}

.review_list_section .review_box .reviewer .text h3 {
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 0;
}

/* review-freeapp */
.review_freeapp {
  margin: 60px 0;
}

.review_freeapp .free_app_inner {
  background: url(../images/free_review_bg.html);
  background-size: cover;
  background-position: 90%;
}

/* Contact Page Css Start */
.contact_page_section .contact_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: -150px;
}

.contact_page_section .contact_inner .section_title h2 {
  font-weight: 600;
}

.contact_page_section .contact_inner .contact_form {
  width: 570px;
  padding: 50px 60px;
  border-radius: 22px;
  background-color: #fff;
  box-shadow: 0 4px 10px #ede9fe;
}

.contact_page_section .contact_inner .contact_form h2 {
  margin-bottom: 0;
}

.contact_page_section .contact_inner .contact_form form {
  margin-top: 30px;
}

.contact_page_section .contact_inner .contact_form form .form-group {
  margin-bottom: 20px;
}

.contact_page_section
  .contact_inner
  .contact_form
  form
  .form-group
  .form-control {
  height: 60px;
  padding: 5px 20px;
  color: var(--body-text-purple);
  border: 2px solid #e1dbf4;
  border-radius: 12px;
  font-weight: 500;
}

.contact_page_section
  .contact_inner
  .contact_form
  form
  .form-group
  .form-control:focus {
  box-shadow: none;
  border-color: var(--purple);
  color: var(--purple);
}

.contact_page_section
  .contact_inner
  .contact_form
  form
  .form-group
  textarea.form-control {
  height: 140px;
  padding-top: 15px;
}

.contact_page_section .contact_inner .contact_form form .term_check {
  display: flex;
  align-items: center;
}

.contact_page_section .contact_inner .contact_form form .term_check input {
  width: 17px;
  height: 17px;
  accent-color: var(--purple);
}

.contact_page_section .contact_inner .contact_form form .term_check label {
  font-size: 13px;
  margin-bottom: 0;
  margin-left: 7px;
}

.contact_page_section .contact_inner .contact_form form .form-group button {
  width: 240px;
  margin: 0 auto;
  display: block;
  margin-top: 10px;
  margin-bottom: 0;
}

.contact_page_section .contact_inner .contact_info {
  width: 480px;
}

.contact_page_section .contact_inner .contact_info .section_title {
  text-align: left;
  margin-top: 15px;
}

.contact_page_section .contact_inner .contact_info .section_title p a {
  color: var(--purple);
  text-decoration: underline;
}

.contact_page_section .contact_inner .contact_info .btn {
  width: 180px;
  margin: 10px 0 50px 0;
}

.contact_page_section .contact_inner .contact_info .contact_info_list li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact_page_section
  .contact_inner
  .contact_info
  .contact_info_list
  li:last-child {
  margin-bottom: 0;
}

.contact_page_section .contact_inner .contact_info .contact_info_list li .img {
  width: 65px;
  margin-right: 20px;
}

.contact_page_section .contact_inner .contact_info .contact_info_list li .text {
  width: calc(100% - 85px);
}

.contact_page_section
  .contact_inner
  .contact_info
  .contact_info_list
  li
  .text
  span {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-purple);
}

.contact_page_section
  .contact_inner
  .contact_info
  .contact_info_list
  li
  .text
  p,
.contact_page_section
  .contact_inner
  .contact_info
  .contact_info_list
  li
  .text
  a {
  margin: 0;
}

.contact_page_section
  .contact_inner
  .contact_info
  .contact_info_list
  li
  .text
  a:hover {
  color: var(--dark-purple);
}

.map_section {
  margin: 50px 0;
}

.giff {
  position: absolute;
  top: 0;
  z-index: 9;
  right: 10%;
  width: 400px;
  right: 0;
  left: 0;
  margin: a;
}

#turnglobe {
  position: relative;
  text-align: right;
  float: right;
  margin-top: 0px;
  top: -18px;
}

#worldmap {
  margin: 0 auto;
  text-align: center;
}

#worldmap svg {
  background: #5fb153;
  border-radius: 400px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.land {
  fill: rgba(255, 255, 255, 0.94);
}

#globesarecool {
  color: #fff;
}

.appbutton img {
  width: 180px;
  padding-right: 18px;
}

.navbar-expand-lg .navbar-nav .nav-link:hover {
  color: #5aac4e;
}

.login {
  background: #000 !important;
}

.usaaaa img {
  width: 22px;
}

.usaaaa a {
  display: flex;
  align-items: center;
}

.usaaaa i {
  font-size: 25px;
  padding-left: 4px;
}

.appbutton {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  gap: 20px;
}

.process-item {
  background-color: #ffffff;
  box-shadow: 2px 7px 20px #ccc;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  padding: 25px;
  position: relative;
  z-index: 1;
  border-bottom: 3px solid green;
}

.process-item:before {
  content: "";
  background-image: url(assets/images/banner-pattern.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.8;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.process-item .process-head {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -ms-flex-pack: space-between;
  margin-bottom: 26px;
}

.process-item .process-content {
  margin-bottom: 26px;
}

.process-content h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.process-content img {
  width: 70px;
}

.process-content img {
  margin-bottom: 10px;
  -webkit-transition: 0.6s ease-out;
  -moz-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.process-item:hover {
  background: #e8ffe5;
  cursor: pointer;
}

.process-content:hover img {
  -webkit-transform: rotateZ(360deg);
  -moz-transform: rotateZ(360deg);
  transform: rotateZ(360deg);
}

.about_app_section {
  padding: 70px 0px;
}

.boxx {
  cursor: pointer;
}

.boxx img {
  -webkit-transition: 0.6s ease-out;
  -moz-transition: 0.6s ease-out;
  transition: 0.6s ease-out;
}

.app_statstic .text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.bgg1 {
  background: url(../images/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 160px 0px;
}

.laptopp .right_img {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 150px;
}

.content_leftt h3 {
  font-size: 42px;
  color: #c3f53c;
  font-weight: 700;
  /* font-family: 'Lufga'; */
}

.bgg1 .row {
  display: flex;
  align-items: center;
}

.content_leftt p {
  font-size: 16px;
  color: #c3f53c;
}

.payy {
  padding: 140px 0px;
}

.trradingg {
  padding: 140px 0px;
  background: rgb(195, 245, 60);
}

.boxx {
  background: #fff;
  box-shadow: 0px 0px 20px #ccc;
  border-radius: 10px;
  margin-bottom: 80px;
}

.boxx h4 {
  font-size: 21px;
  color: #000;
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
}

.boxx img {
  border-radius: 10px 10px 0px 0px;
  width: 100%;
}

.textttn .textttn {
  padding: 20px;
}

.usp .col-md-4 {
  /* border-right: 1px solid #ccc; */
  margin-bottom: 60px;
  position: relative;
}

.usp .col-md-4:before {
  /* content: ""; */
  position: absolute;
  width: 81%;
  background: #ccc;
  height: 1px;
  bottom: -20px;
  margin: auto;
  right: 0;
  left: 0;
}

.usp .col-md-4:nth-child(3) {
  border-right: 0px;
}

.usp .col-md-4:nth-child(6) {
  border-right: 0px;
}

.usp .col-md-4:nth-child(4):before {
  display: none;
}

.usp .col-md-4:nth-child(5):before {
  display: none;
}

.usp .col-md-4:nth-child(6):before {
  display: none;
}

.usp {
  padding: 90px 0px 70px;
  background: #f0ebe6;
}

.nnn {
  position: relative;
}

.nnn:before {
  content: "";
  background-image: url(../images/img3.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  opacity: 0.8;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  animation: rotation 9s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes rotation {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(359deg);
  }
}

.section_title h2 span {
  font-weight: 600;
  color: #000;
}

.features_section .feature_detail .left_data .data_block .icon img {
  width: 90px;
}

.features_section .feature_detail .left_data .data_block .icon {
  margin-left: 10px;
}

.features_section .feature_detail .right_data .data_block .icon {
  margin-right: 10px;
}

.features_section .feature_detail .right_data .data_block .icon img {
  width: 90px;
}

.banner_text span {
  color: #c3f53c;
  font-weight: 300;
  font-family: Lufga;
}

.newdesign li {
  cursor: pointer;
  transition: 1s;
  padding: 15px;
  margin-bottom: 0px !important;
}

.newdesign li p {
  display: none;
}

.newdesign li.active {
  box-shadow: 0px 0px 20px #ccc;
  border-radius: 10px;
}

.newdesign li.active p {
  display: block;
}

.newdesign li:hover {
  box-shadow: 0px 0px 20px #ccc;
  border-radius: 10px;
}

.newdesign li:hover p {
  display: block;
}

.newdesign li:before {
  left: 10px !important;
  top: 15px !important;
}

.img_center_mockup {
  width: 100%;
  margin: auto;
  position: relative;
}

.leftmg_mock {
  width: 270px;
  position: absolute;
  top: 230px;
  left: -69px;
  z-index: 1;
}

.righttmg_mock {
  width: 249px;
  position: absolute;
  top: 155px;
  right: -21px;
  z-index: 1;
}

.freame {
  width: 249px;
  position: absolute;
  left: 24px;
  top: 20px;
}

.invest_listt li {
  /* background: #002714; */
  display: flex;
  width: 48%;
  float: left;
  margin-bottom: 19px;
  padding: 9px;
  margin-right: 10px;
  align-items: center;
  /* box-shadow: 0px 0px 20px #ccc; */
  border-radius: 6px;
  align-items: center;
  display: f;
}

.text_invest h3 {
  color: #000;
  font-family: "Lufga";
  font-weight: 600;
  font-size: 18px;
  color: #000;
  margin-bottom: 0px;
  padding-top: 10px;
}

.invest_listt {
  display: flex;
  flex-wrap: wrap;
}

.imgg {
  /* width: 44px; */
  margin-right: 18px;
}

.sendmoneyy {
  padding: 140px 0px;
  background: #def9d9;
}

.investtttt {
  position: relative;
}

.investtttt:before {
  content: "";
  background: url(../images/neww.png);
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  top: 10px;
  background-repeat: no-repeat;
  background-size: cover;
  right: -30px;
  background-size: 100%;
}

.img_flag {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
  width: 65%;
  margin-left: -90px;
  position: absolute;
  bottom: 30px;
}

.img_flag_box {
  width: 80%;
}

.chosse_acordin button {
  padding: 0px;
}

.newdesign li {
  transition: 1s;
}

.newdesign li.active {
  background-color: #fff;
}

.text_invest {
  width: 80%;
}

.group316 .banner_section {
  background: #ecffe9;
  padding: 161px 0px;
}

.group316 .navbar-expand-lg .navbar-nav .nav-link {
  color: #000;
}

.group316 .banner_section .banner_text h1 {
  color: #000;
  text-align: l;
  padding-top: 0px;
}

.group316 .banner_text span {
  color: #000;
}

.group316 .banner_section .banner_text p {
  color: #000;
}

.group316 .banner_text {
  /* padding-left: 15%; */
  /* width: 700px; */
  float: right;
  /* padding-right: 30px; */
  margin-top: 0px;
}

.group316 #navbarSupportedContent {
  padding-left: 20%;
}

.carousel-fade .carousel-item {
  transition-delay: 0.4s !important;
}

.groupchoose {
  padding: 130px 0px;
}

.groupchoose .headingg {
  margin-bottom: 60px;
}

.groupchoose .headingg span {
  font-weight: 600;
  color: #000;
  font-family: "DM Sans", sans-serif;
}

.groupchoose .headingg h2 {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  padding-bottom: 14px;
}

.headingg_new {
  margin-bottom: 60px;
  position: relative;
}

.headingg_new span {
  font-weight: 600;
  color: #000;
  font-family: "DM Sans", sans-serif;
}

.headingg_new h2 {
  font-size: 36px;
  font-weight: 600;
  color: #000;
  padding-bottom: 14px;
  font-family: "Lufga";
}

.headingg_new h2:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 4px;
  left: 0;
  background: #005f32;
  bottom: 0;
}

.feature-item {
  /* z-index: 1; */
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 40px;
  position: relative;
  /* margin: 0 -1px -1px 0; */
  border: 1px solid #d5d5d5;
}

@media (max-width: 767px) {
  .feature-item {
    padding-left: 25px;
    padding-right: 25px;
  }
}

@media (max-width: 424px) {
  .feature-item {
    display: block;
  }
}

.feature-item:before {
  content: "";
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  z-index: -1;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  background: white;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.feature-item .icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
  width: 85px;
  margin-right: 40px;
}

@media (max-width: 575px) {
  .feature-item .icon {
    margin-right: 20px;
    margin-bottom: 20px;
  }
}

.feature-item .content h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-item:hover {
  z-index: 2;
}

.feature-item:hover:before {
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  -webkit-box-shadow: 10px 0 30px rgba(13, 15, 44, 0.1);
  box-shadow: 10px 0 30px rgba(13, 15, 44, 0.1);
}

.contentwhy h4 {
  font-size: 23px;
  font-weight: 600;
  color: #000;
  font-family: "DM Sans", sans-serif;
}

.feature-item .icon img {
  width: 90px;
}

.ban316 .carousel-indicators li {
  border-radius: 100px;
  width: 13px;
  height: 13px !important;
  background: #000;
  border: none;
  margin: 0px 10px;
}

.ban316 .carousel-indicators .active {
  background: #5aac4e;
}

.ban316 .carousel-indicators {
  bottom: 30px;
}

.sendmoneyy h2 {
  padding-bottom: 30px;
  color: #153300 !important;
}

.sendmoneyy p {
  padding-bottom: 30px;
  width: 89%;
  color: #000 !important;
}

.internationallyy span {
  padding-bottom: 20px;
  display: inline-block;
}

.internationallyy h2 {
  padding-bottom: 20px;
}

.internationallyy p {
  padding-bottom: 20px;
}

.bgg1 h3 {
  padding-bottom: 20px;
}

.bgg1 p {
  padding-bottom: 20px;
}

.invest3166 span {
  padding-bottom: 20px;
  display: inline-block;
}

.payyyy h2 {
  padding-bottom: 20px;
}

.textttn {
  display: flex;
  padding: 47px 25px;
}

.text_head {
  width: 40%;
}

.text_payy {
  width: 60%;
}

.text_head h4 {
  font-size: 29px;
  font-family: "Lufga";
  font-weight: 500;
  padding-right: 13px;
}

.text_payy a {
  background: #5aac4e;
  color: var(--text-white);
  border-radius: 50px;
  padding: 6px 21px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-family: "Lufga";
  font-weight: 500;
  margin-top: 0px;
  display: inline-block;
  font-family: "Lufga";
}

.usp .container-fluid {
  padding: 0px 5%;
}

.box_group {
  padding: 11px;
  /* background: #ccc; */
  position: relative;
}

.box_group:before {
  position: absolute;
  content: "";
  background: #d9d9d9;
  height: 80%;
  width: 1px;
  right: -11px;
  top: 10%;
}

.col-sm-3:last-child .box_group:before {
  display: none;
}
.content_choose h3 {
  font-weight: 600;
  color: #000;
  padding-bottom: 10px;
  font-size: 19px;
  font-family: "Lufga";
  padding-top: 15px;
}
.imgg img {
  width: 60px;
  margin: 0px auto 10px;
}
.box_hom1 {
  text-align: center;
}

.groupchoose .headingg h2 {
  position: relative;
  font-family: "Lufga";
  font-weight: 600;
}

.groupchoose .headingg h2:before {
  position: absolute;
  /* content: ""; */
  width: 50px;
  height: 4px;
  left: 0;
  background: #005f32;
  bottom: 0;
}

.our_platformm {
  background: #28a745;
  padding: 20px;
  /* border: 1px solid #d9d9d9; */
  border-radius: 15px;
}

.core_box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 21px;
  height: 100%;
}

.content_img {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.content_img img {
  width: 57px;
}

.content_img h2 {
  font-weight: 600;
  font-size: 24px;
  color: #000;
  width: 54%;
  font-family: "Lufga";
}
.text_core h2 {
  font-size: 54px;
  color: #ffffff;
  font-weight: 600;
  font-family: "Lufga";
}

.core_box .col-sm-4 {
  display: flex;
}

.learnmore_sec {
  background-color: #100a20;
  padding: 20px;
  /* background-image: url(../images/316group/dollar.png); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0px -130px;
  height: 100%;
  border-radius: 14px;
}

.learnmore_sec a {
  position: absolute;
  color: #fff;
  bottom: 30px;
  text-align: center;
  right: 0;
  left: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
}

.industry {
  padding: 170px 0px;
  padding-top: 180px;
}

.bg_tech {
  background: #142e02;
  border-radius: 20px;
  padding: 40px;
}

.bg_tech ul {
  margin-bottom: 70px;
  display: inline-block;
  width: 100%;
}

.bg_tech li {
  /* display: inline-block; */
  width: 20%;
  float: left;
  display: flex;
  justify-content: space-between;
  /* padding-right: 20px; */
}

.bg_tech li span {
  display: block;
  width: 25px;
  height: 25px;
  background: #3c763d;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  margin-bottom: 10px;
}

.bg_tech li.active a {
  background: #9bda6f;
}

.bg_tech li a {
  color: #fff;
  width: 124px;
  /* margin-right: 59px; */
  font-family: "DM Sans", sans-serif;
  line-height: 21px;
  font-size: 18px;
  padding: 12px;
  text-decoration: none;
  /* background: #ccc; */
  border-radius: 7px;
}

.box_textt_tect {
  background: #9bda6f;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 43px;
}

.text_box_tech h3 {
  color: #142e02;
  font-size: 23px;
  font-weight: 600;
  padding-bottom: 14px;
  font-family: "Lufga";
}

.text_box_tech p {
  color: #040404;
}

.industry .col-sm-8 {
  display: flex;
}

.industry .col-sm-4 {
  display: flex;
}

.learnmore a {
  display: flex;
  justify-content: space-between;
  color: #000;
  align-content: center;
}

.learnmore i {
  font-size: 20px;
}

.industryyy {
  width: 100%;
  background: #142e02;
  border-radius: 20px;
  padding: 50px 60px;
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: column;
  justify-content: space-between;
}

.industryyy h3 {
  font-size: 40px;
  color: #fff;
  font-weight: 600;
  font-family: "Lufga";
}

.industryyy p {
  color: #fff;
}

.industryyy a {
  color: #fff;
  /* font-family: 'DM Sans', sans-serif; */
  color: #fff;
  font-weight: 500;
  padding-bottom: 40px;
  display: flex;
  justify-content: space-between;
  font-weight: 400;
  font-size: 18px;
}

.industryyy a i {
  font-size: 24px;
}

.core_productt {
  background: #3c763d;
  padding: 20px;
  border-radius: 20px;
  display: inline-block;
  width: 100%;
  margin-bottom: 90px;
  box-shadow: 0px 0px 20px #ccc;
}

.core_productt ul li {
  width: 20%;
  float: left;
}

.core_productt li a {
  width: 100%;
  padding: 16px 10px;
  display: inline-block;
  font-family: p;
  font-weight: 600;
  color: #fff;
  font-size: 17px;
  text-decoration: none;
  text-align: center;
  font-family: "Lufga";
}

.core_productt ul {
  display: inline-block;
  padding: 0px;
  margin: 0px;
  width: 100%;
}

.core_productt .tab-content {
  background: #fff;
  padding: 50px 30px;
  margin-top: -8px;
}

.core_productt li.active a {
  background: #fff;
  border-radius: 10px 10px 0px 0px;
  color: #000;
}

.contnt_core span {
  font-weight: 600;
  color: #000;
  padding-bottom: 12px;
  display: inline-block;
}

.contnt_core h3 {
  font-size: 27px;
  color: #000;
  font-weight: 600;
  padding-bottom: 15px;
  font-family: "Lufga";
}

.our_platformm .col-sm-4 {
  margin-bottom: 30px;
}

.featured-imagebox-post {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
  border: 1px solid #000;
}

.featured-imagebox .featured-thumbnail img {
  -moz-transform: scale(1);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  width: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
}

.featured-imagebox,
.featured-imagebox .featured-thumbnail {
  position: relative;
  overflow: hidden;
}

.featured-imagebox-post .featured-content {
  padding: 43px 40px 50px;
  background: #fff;
}

.featured-imagebox-post .featured-content h3 {
  font-size: 22px;
  line-height: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.featured-title h3 {
  font-size: 21px;
  line-height: 27px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #000;
  font-family: "Lufga";
}

.prt-btn.btn-underline {
  position: relative;
  overflow: visible;
  vertical-align: baseline;
}

.prt-btn.btn-inline {
  padding: 0;
  border: 0;
  overflow: visible;
  font-size: 15px;
  line-height: 22px;
  color: var(--base-dark);
  font-family: var(--base-headingfont);
  text-transform: uppercase;
  font-family: "Lufga";
}

.blog-featured-content {
  padding: 53px 40px 48px;
  border-radius: 10px;
  border: 1px solid #000;
  position: relative;
  background-color: var(--base-lightgrey);
  background: #fff;
  margin: 0px 0px 15px 0;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
}

.blog-featured-content:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 10px;
  left: 0;
  top: 0;
  opacity: 0;
  z-index: -1;
  transform: translate(0px, 0px);
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
}

.blog-featured-content .blog-featured-tag {
  font-size: 14px;
  padding: 4px 12px;
  border-radius: 5px;
  color: #fff;
  background-color: var(--base-skin);
  background: #28a745;
  margin-bottom: 10px;
  display: inline-block;
}

.featured-imagebox .featured-title a {
  font-weight: 500;
  color: #000;
  font-family: "Lufga";
}

.featured-title h3 a {
  color: #000;
}

.blog-featured-content .prt-icon-btn-right {
  font-weight: 500;
  color: #000;
  font-size: 17px;
  font-family: "DM Sans", sans-serif;
  text-transform: initial;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #28a745;
  margin-right: 10px;
}

.blog-featured-content .entry-date {
  color: #000;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
}

.news316 .col-xl-7 {
  display: flex;
  flex-wrap: wrap;
}

.news316 .col-lg-6 {
  display: flex;
}

.news316 {
  padding: 80px 0px 150px;
}

.news316 .headingg {
  margin-bottom: 40px;
}

.news316 .headingg span {
  font-weight: 600;
  color: #000;
}

.news316 .headingg h2 {
  position: relative;
  font-size: 36px;
  font-weight: 600;
  color: #000;
  padding-bottom: 14px;
  font-family: "Lufga";
}

.news316 .headingg h2:before {
  position: absolute;
  content: "";
  width: 50px;
  height: 4px;
  left: 0;
  background: #005f32;
  bottom: 0;
}

.techno_3166 {
  background: #e9e9e9;
  padding: 27px;
  border-radius: 20px;
}

.box-content {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  overflow: hidden;
  /* background: url(https://madlyweb.com/images/safari.png) top center no-repeat transparent; */
  background-size: contain;
  padding-top: 24px;
}

.image-bg-port {
  /* min-height: 280px; */
  display: inline-block;
  position: relative;
  background-size: 100% !important;
  width: 100%;
  /* max-width: 378px; */
}

.image-bg-port {
  max-width: 100% !important;
}

.image-bg-port .image-shop-scroll {
  min-height: 355px;
}

.image-bg-port .image-shop-scroll {
  background-position: center 0 !important;
  background-repeat: no-repeat !important;
  background-size: 100% !important;
  position: absolute;
  width: 100%;
  min-height: 570px;
  top: 20px;
  left: -32px;
  right: 0;
  margin: auto;
  background: #fff;
  border-radius: 0 0 5px 5px;
  width: 260px;
  /* rotate: 20deg; */
  border-radius: 20px;
}

.image-bg-port .image-shop-scroll {
  transition: all 7s ease-out 0s;
  -webkit-transition: all 7s ease-out 0s;
  -moz-transition: all 7s ease-out 0s;
  -ms-transition: all 7s ease-out 0s;
  -o-transition: all 7s ease-out 0s;
}

.image-bg-port:hover .image-shop-scroll {
  background-position: center 100% !important;
}

.invest_listt .imgg img {
  margin-bottom: 0px;
}

.new_Design_mob .img_center_mockup {
  width: 59%;
}

.mob_headd {
  position: absolute;
  top: 28px;
}

.invest316 .navbar-expand-lg .navbar-nav .nav-link {
  color: #000;
  padding: 10px 20px;
}

.banner_invest {
  padding: 90px 0px 100px;
  background: radial-gradient(
    123.96% 176% at 0% 205.5%,
    rgb(24 90 15 / 85%) 0%,
    rgb(0 139 36) 53.87%,
    #b7f445 100%
  );
}

.banner_invest video {
  width: 70%;
  margin: auto;
  margin: auto;
}

.ban_img_invest {
  text-align: center;
  padding: 70px 0px;
}

.ban_img_invest img {
  width: 600px;
  margin: auto;
  margin-bottom: 50px;
}

.ban_invest_text {
  margin: auto;
  text-align: center;
}

.ban_invest_text h1 {
  color: #000;
  font-weight: 500;
  /* text-shadow: 0px 3px #000; */
  font-size: 43px;
  margin-bottom: 50px;
}

.ban_invest_text p {
  color: #000;
}

.get_banner_strat {
  background: #000;
  color: #fff;
  border-radius: 100px;
  padding: 9px 33px;
  display: inline-block;
  margin-top: 40px;
}

.get_banner_strat:hover {
  color: #fff;
}

.stock_invest {
  background: #00c905d4;
  padding: 120px 0px;
  padding-bottom: 0px;
  border-top: 1px solid #000;
}

.stock_invest_content {
  padding-top: 80px;
  padding-right: 20px;
}

.stock_invest_content h2 {
  font-size: 32px;
  line-height: 60px;
  color: #000;
  font-weight: 500;
  font-family: "Lufga";
}

.stock_invest_content p {
  color: #2a2020;
  padding-top: 20px;
}

.stock_invest_content span {
  font-weight: 600;
  color: #000;
  font-family: Lufga;
}

.strategyy {
  position: relative;
}

.strategyy:before {
  height: 100%;
  width: 50%;
  background: #ededed;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
}

.strategyy:after {
  height: 100%;
  width: 50%;
  background: #05b189;
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  z-index: -1;
}

.strategy_cont {
  padding: 90px 0px 0px;
  padding-right: 90px;
  padding-bottom: 90px;
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.strategy_cont span {
  /* font-size: 30px; */
  /* font-weight: 500; */
  /* color: #000; */
  font-family: "Lufga";
}

.strategy_cont h2 {
  font-weight: 500;
  font-size: 32px;
  font-size: 30px;
  font-weight: 500;
  color: #000;
  font-family: "Lufga";
  color: #000;
}

.strategy_cont p {
  color: 000;
  padding-top: 15px;
}

.fixsball img {
  width: 420px;
  margin: auto;
}

.fixsball {
  /* padding-top: 50px; */
  /* padding-bottom: 70px; */
  text-align: center;
}

.strategy_cont a {
  font-family: "DM Sans", sans-serif;
  color: #000;
  font-weight: 500;
  padding-bottom: 100px;
  display: inline-block;
}

.viasual-all-your {
  padding-top: 90px;
  padding-left: 80px;
  padding-bottom: 70px;
}

.viasual-all-your h2 {
  font-weight: 500;
  font-size: 32px;
  color: #000;
  color: #fff;
}

.viasual-all-your p {
  color: #fff;
  padding-top: 21px;
}

.viasual-all-your a {
  color: #000;
  font-weight: 600;
  /* padding-top: 20px; */
  display: inline-block;
  /* padding-bottom: 20px; */
}

.insighttt {
  text-align: center;
}

.insighttt img {
  width: 78%;
  margin: auto;
  border-radius: 30px;
  box-shadow: 0px 8px 20px #1414147a;
}

.second_boxx:before {
  height: 100%;
  width: 50%;
  background: #b1d40e;
  position: absolute;
  content: "";
  left: 0;
  top: 0;
}

.second_boxx:after {
  height: 100%;
  width: 50%;
  background: #fff;
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  z-index: -1;
}

.right_virsuall h2 {
  color: #000;
}

.right_virsuall p {
  color: #000;
}
.sendmoneyy .container-fluid .box_bay_width {
  width: 500px;
  float: right;
}

.targe {
  text-align: center;
  /* padding: 0px 0px 50px; */
}

.targe img {
  width: 70%;
  border-radius: 30px;
  box-shadow: 0px 8px 20px #14141454;
  background: #fff;
}

.blueeee {
  background: #004025;
  padding: 110px 0px;
}

.starteddd {
  text-align: center;
  margin-bottom: 40px;
}

.starteddd h3 {
  color: #fff;
  font-weight: 500;
  font-size: 35px;
  font-family: "Lufga";
}

.tab_list_started ul {
  padding: 0px;
}

.tab_list_started li {
  width: 100%;
}

.tab_list_started li a {
  padding: 10px 20px;
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
  position: relative;
  padding-right: 50px;
  border-bottom: 1px solid #006f40;
}

.tab_list_started li a.active {
  background: #127c4fa6;
}

.tab_list_started li a p {
  display: none;
  color: #fff;
  margin-bottom: 0px;
}

.tab_list_started li a.active p {
  display: block !important;
}

.tab_list_started li a.active i {
  transform: rotate(179deg);
  right: 20px;
}

.tab_list_started li h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Lufga";
}

.tab_list_started li a i {
  position: absolute;
  right: 0;
  top: 10px;
  color: #fff;
  font-size: 24px;
  padding-right: 18px;
}

.imgg_investt {
  padding-left: 90px;
}

.signupp_invest {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.signupp_invest a {
  padding: 9px 1px;
  border-radius: 100px;
  color: #fff;
  background: #5aac4e;
  width: 200px;
  display: inline-block;
  height: 45px;
  text-align: center;
  margin-right: 20px;
}

.signupp_invest p {
  color: #fff;
}

.rewardss {
  padding: 100px 0px 120px;
  background: #000;
}

.reward_head h2 {
  font-weight: 600;
  font-size: 33px;
  color: #fff;
  text-align: center;
  font-family: "Lufga";
  font-weight: 600;
}

.reward_head {
  text-align: center;
}

.reward_head a {
  display: inline-block;
  background: #000;
  padding: 4px 34px;
  color: #fff;
  border-radius: 100px;
  border: 2px solid #fff;
  margin-top: 40px;
}

.rewards_box {
  border: 2px solid #fff;
  padding: 30px;
  border-radius: 20px;
  margin-top: 30px;
}

.reward_textt h3 {
  font-weight: 500;
  font-size: 30px;
  color: #fff;
  padding-bottom: 16px;
  font-family: "Lufga";
}

.reward_border {
  width: 100%;
  margin: auto;
}

.reward_textt p {
  color: #fff;
  font-weight: 200;
}

.reward_textt .terms {
  color: #fff;
  display: block;
  font-family: "DM Sans", sans-serif;
}

.goldd {
  background: #ffcd6c;
  border-radius: 100px;
  padding: 8px 26px;
  display: inline-block;
  margin-top: 16px;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  width: fit-content;
}

.suport316 {
  border-radius: 15px;
  border: 2px solid #fff;
  margin-top: 20px;
  padding: 30px 30px;
}

.suport316 h3 {
  font-size: 27px;
  color: #fff;
  padding-bottom: 21px;
  font-family: "Lufga";
}

.suport316 p {
  color: #fff;
  font-weight: 200;
  font-size: 16px;
  line-height: 22px;
  margin-bottom: 49px;
}

.suport316 img {
  width: 60%;
  margin: auto;
}

.roll img {
  width: 70%;
  border-radius: 10px;
  box-shadow: 0px 0px 20px #000;
}

.reward_border .col-sm-6 {
  display: flex;
}
.termsg {
  color: #ccc;
}

.stock_invest_content .ban_investt_button {
  background: #000;
  color: #fff;
  border-radius: 100px;
  padding: 9px 33px;
  display: inline-block;
  margin-top: 20px;
}

.condition_invest {
  display: inline-block;
  color: #000;
  padding: 15px 0px;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  transition: 0.5s;
}

.second_boxx {
  padding-bottom: 0px;
}

.strat_righttt {
  padding-right: 0px;
  padding-left: 90px;
  display: flex;
  /* flex-wrap: wrap; */
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimoniall {
  padding: 110px 0px;
}

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

.test_head h2 {
  font-weight: 600;
  font-size: 40px;
  color: #000;
}

.testimonial_box {
  position: relative;
  padding: 70px 0 80px;
  width: 73%;
  margin: auto;
}

.testimonial_box::before {
  content: "";
  position: absolute;
  width: 84.6%;
  height: 100%;
  background: #e5ffe1;
  right: 0;
  top: 0px;
  box-shadow: 12px 12px 2px 0px #5aac4e;
  border-radius: 20px;
}

.test-box_img img {
  width: 100%;
}

.my-testimonial-content {
  width: 83%;
}

.my-testimonial-content .my-spn-line::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 3px;
  background: #000;
  left: -45px;
  top: 8px;
}

.my-testimonial-content .my-spn-line {
  color: #000;
  font-weight: 500;
  font-style: italic;
  position: relative;
  margin-left: 50px;
}

.my-testimonial-content h3 {
  font-weight: 700;
  line-height: 36px;
  margin-top: 20px;
}

.my-testimonial-content p.testimonial-text {
  margin-top: 30px;
}

.testimonial_box .row {
  align-items: center;
}

.my-test-profile ul {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.my-test-profile ul h4 {
  font-size: 18px;
  margin-bottom: 0;
  font-weight: 600;
}

.my-test-profile ul li {
  margin-right: 8px;
}

.download-app-box {
  background: #2e1e5e;
  padding: 70px 0 0;
}

.download-app-contnt h2 {
  font-weight: 500;
  color: #fff;
  margin-bottom: 25px;
  font-size: 32px;
  font-family: "Lufga";
}

.download-app-contnt p {
  color: #fff;
}

.download-app-contnt {
  padding-bottom: 80px;
  width: 85%;
}

.download-app-btn {
  display: flex;
  flex-wrap: wrap;
}

.download-app-btn a img {
  width: 175px;
  margin-right: 10px;
  margin-top: 15px;
}

.download-app-box .row {
  align-items: center;
}

.car_test {
  position: inherit;
  left: 0;
  justify-content: inherit;
  margin-left: 0px;
  margin-top: 20px;
}

.car_test li {
  background: #898989;
  height: 0px;
  width: 20px !important;
  border-radius: 100px;
  padding: 0px !important;
  line-height: inherit;
  display: inline-block;
  opacity: inherit;
}

.car_test .active {
  background: #5aac4e;
}

.condition_invest:hover {
  color: #fff;
}

.test-box_img img {
  border-radius: 15px;
}

.condition {
  font-size: 17px;
  margin-top: 32px;
  transition: 0.5s;
  font-family: "DM Sans", sans-serif;
  display: inline-block;
  color: #000;
}

.condition:hover {
  color: #fff;
}

.business316 .banner_section {
  background: #fdf3ea;
  padding-top: 170px;
  padding-bottom: 182px;
}

.business316 .banner_section h1 {
  color: #000;
  padding-bottom: 21px;
  font-family: "Lufga", sans-serif;
}

.business316 .banner_section p {
  color: #000;
  padding-bottom: 20p;
  font-family: "Lufga";
}

.business316 .banner_text span {
  color: #5aac4e;
  font-weight: 500;
  font-size: 20px;
  background: #fff;
  padding: 3px 10px;
  border-radius: 10px;
}

.business316 .banner_section a {
  color: #fff !important;
  background-color: #000;
  font-size: 15px;
  padding: 12px 25px;
  border-radius: 100px;
  display: inline-block;
  margin-top: 20px;
  position: relative;
  font-family: "DM Sans", sans-serif;
}

.business316 .navbar-expand-lg .navbar-nav .nav-link {
  color: #000;
  padding: 9px 22px;
}

.business316 .banner_section .banner_text {
  margin-top: 20px;
}

.warehouse {
  padding: 110px 0px;
}
.warehouse .row {
  align-content: center;
  display: flex;
}

.ware_house_cont h2 {
  font-size: 33px;
  font-weight: 600;
  color: #000;
  padding-bottom: 25px;
  font-family: "Lufga";
}

.ware_house_cont p {
  padding-bottom: 11px;
  font-size: 17px;
  font-family: "Lufga";
}

.ware_house_cont2 {
  padding-left: 40px;
}
.ware_house_cont2 h2 {
  font-size: 33px;
  font-weight: 600;
  color: #000;
  padding-bottom: 25px;
  font-family: "Lufga";
}

.ware_house_cont2 p {
  padding-bottom: 11px;
  font-size: 17px;
}

.ware_house_cont {
  /* padding-top: 40px; */ /* padding-left: 41px; */
  padding-right: 60px;
}
.retailerr .ware_house_cont {
  padding-top: 40px;
  padding-left: 0px;
  padding-right: 30px;
}
.ware_image img {
  border-radius: 10px;
  /* box-shadow: 0px 0px 20px #ccc; */
  width: 100%;
}
.retailerr {
  /* background: #122c55; */
  padding: 80px 0px;
}
.retailerr .ware_house_cont h2 {
  color: #000000;
}
.retailerr .ware_house_cont p {
  color: #000000;
}
.content_influence {
  padding-right: 48px;
}
.content_influence h3 {
  font-size: 35px;
  font-weight: 600;
  color: rgb(0, 0, 0);
  padding-bottom: 20px;
  font-family: "Lufga";
}
.influence {
  padding: 40px 0px;
  background: #98aafe;
}
.influence .row {
  align-items: center;
}
.SHIPPING_IMG img {
  width: 100%;
}
.build_condi {
  font-family: "DM Sans", sans-serif;
  color: #000 !important;
  font-weight: 500;
}
.build_condi:hover {
  color: darkgreen !important;
}
.space_left {
  padding-right: 0px;
  padding-left: 86px;
}
.nfhj {
  background: #fff8e3;
  padding: 120px 0px;
}
@media (min-width: 1300px) and (max-width: 1400px) {
  .group316 .container {
    min-width: 1280px;
  }
}

@media screen and (min-width: 1410px) {
  .group316 .container {
    min-width: 1350px;
  }
}

@media (min-width: 1300px) and (max-width: 1400px) {
  .invest316 .container {
    min-width: 1280px;
  }
}

@media screen and (min-width: 1410px) {
  .invest316 .container {
    min-width: 1350px;
  }
}

.usp .col-md-6 {
  display: flex;
}

.new_investt .img_center_mockup {
  text-align: center;
}
.new_investt .img_center_mockup img {
  width: 77%;
  margin: auto;
}

.plan_box {
  border: 1px solid #fff;
  border-radius: 28px;
  width: 100%;
  margin-top: 50px;
}
.plan_box_inner {
  /* display: flex; */
  justify-content: center;
  /* align-items: center; */
  padding: 24px;
  padding-top: 16px;
}
.plan_head {
  display: flex;
  border-bottom: 1px solid #fff;
  justify-content: space-between;
  /* align-items: center; */
  padding-bottom: 11px;
}
.start_text h4 {
  font-weight: 500;
  color: #fff;
  font-family: "Lufga";
  font-size: 20px;
  margin: 0px;
}
.start_text p {
  color: #fff;
  font-size: 15px;
  margin-bottom: 2px;
}
.img_logoo img {
  width: 70px;
}
.priceee {
  display: flex;
  justify-content: space-between;
  padding-top: 29px;
}
.price_textt h4 {
  color: #fff;
  font-size: 15px;
  font-family: "Lufga";
  font-weight: 400;
}
.price_textt h5 {
  font-weight: 500;
  color: #fff;
  font-size: 18px;
  font-family: "Lufga";
}
.chooseplann {
  background: #ffcd6c;
  display: flex;
  justify-content: space-between;
  padding: 17px;
  align-items: center;
  border-radius: 0px 0px 26px 26px;
}
.chooseplann h3 {
  font-size: 26px;
  font-weight: 700;
  color: #000;
}
.chooseplann h3 span {
  font-size: 17px;
}
.chooseplann a {
  background: #000;
  color: #fff;
  border-radius: 40px;
  padding: 10px 27px;
  display: inline-block;
  font-family: "DM Sans", sans-serif;
}
.price_textt {
  padding-right: 10px;
}
.priceee .price_textt:last-child {
  padding-right: 0px;
}

.hidden {
  display: none;
}
.plann {
  display: none;
}
.reward_textt {
  padding-left: 110px;
  height: 100%;
}
.rewards_box .row {
  display: flex;
  justify-content: center;
  align-content: center;
}
#hide-button {
  background: #ffcd6c;
  border-radius: 100px;
  padding: 8px 26px;
  display: inline-block;
  margin-top: 16px;
  color: #000;
  font-weight: 500;
  font-size: 17px !important;
  font-size: 15px;
  border: 0px;
  margin-top: 40px;
  background: #fff;
}
#hide-button i {
  font-size: 20px;
}
.custt li {
  background: #fff;
  margin-bottom: 20px;
  padding: 20px;
  border-left: 6px solid #6db164;
}
.custt li h4 {
  font-size: 17px;
  padding-bottom: 10px;
  font-family: "Lufga";
}
.custt li a {
  font-family: "Lufga";
  color: #000;
  font-weight: 600;
  font-size: 18px !important;
}
.custt {
  margin-top: 20px;
}
.warehouse_idea {
  padding: 40px;
  background: #e3ffd5;
  border-radius: 14px;
  margin: 110px 0px;
}

.ghj {
  padding: 90px 0px;
}
.warehouse_idea .row {
  align-items: center;
}
.warehouse2 .row {
  align-items: center;
}
.warehouse2 {
  background: #ffffd6;
  padding: 31px;
  border-radius: 18px;
}
.ware_house_cont2 a {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: #d75d27;
  font-size: 18px;
  display: inline-block;
  margin-top: 20px;
}

.brands {
  margin: 100px 0px;
  background: #e4f9e3;
  padding: 34px;
  border-radius: 10px;
}
.brands .row {
  align-items: center;
}

.everywhere {
  background: #fff3e1;
  padding: 40px;
  margin: 0px 0px 70px;
}
.heading_every h3 {
  font-size: 39px;
  font-weight: 700;
  color: #000;
  padding-bottom: 15px;
  font-family: "DM Sans", sans-serif;
}
.inter_contnent h4 {
  font-size: 30px;
  font-weight: 700;
  color: #000;
  padding-bottom: 15px;
  font-family: "DM Sans", sans-serif;
}
.inter_contnent a {
  font-family: "DM Sans", sans-serif;
  font-weight: 600;
  color: #d75d27;
  font-size: 18px;
  display: inline-block;
  margin-top: 20px;
}

.intergation .row {
  align-items: center;
}
.intergation {
  background: #fff;
  padding: 40px;
  border-radius: 15px;
  margin-top: 30px;
}
.delv {
  background: #f1f1f1;
  padding: 40px;
  border-radius: 14px;
  margin: 90px 0px;
}
.delv .row {
  align-items: center;
}
.loyalityy {
  background: #f1f1f1;
  padding: 40px;
  border-radius: 14px;
  margin: 0px 0px 90px;
}
.loyalityy .row {
  align-items: center;
}
.support {
  margin: 90px 0px;
}
.support .row {
  align-items: center;
}

.redayy {
  margin: 60px 0px 120px;
  padding: 40px;
  border-radius: 15px;
  background: url(../images/business-storage/bgg.jpg); /* box-shadow: 0px 2px 20px #ccc; */
  background-size: cover;
  background-position: center;
  background: #fbffdd;
}
.ready_content h3 {
  font-size: 50px;
  color: #fff;
  font-weight: 700;
  padding-bottom: 13px;
  color: #000000 !important;
  font-family: "Lufga";
}
.ready_content {
  padding: 70px 0px;
}
.ready_content a {
  background: #5aac4e;
  padding: 10px 31px;
  display: inline-block;
  margin-top: 20px;
  border-radius: 100px;
  font-weight: 600;
  color: #fff;
}
.ready_content a:last-child {
  background: #ffb000;
  color: #fff;
}
.ready_content p {
  color: #000;
}
.new_business .banner_section h1 {
  color: #000000;
  padding-bottom: 21px;
  font-size: 41px;
  font-weight: 600;
}
.ware_house_cont a {
  font-family: "Lufga";
  font-weight: 600;
  color: #000;
  font-size: 18px;
  display: inline-block;
  margin-top: 20px;
}

.new_business .slideban img {
  float: right;
  width: 87%;
}
.new_business.business316 .banner_section {
  background: #ddffe0;
  padding-top: 210px;
  padding-bottom: 182px;
}
.new_business .banner_section p {
  color: #000;
  font-family: "Lufga";
}
.new_business .banner_section .banner_text h1 span {
  color: #5aac4e;
  font-weight: 500;
}
.owl-carousel .item img {
  display: block;
  width: 100%;
  height: auto;
}

.owl-carousel .owl-wrapper-outer {
  height: 100%;
}

.owl-carousel .owl-item {
  height: 25%;
}

.owl-carousel .owl-item:nth-child(1) {
  transform: translateY(0%);
}

.owl-carousel .owl-item:nth-child(2) {
  transform: translateY(25%);
}

.owl-carousel .owl-item:nth-child(3) {
  transform: translateY(50%);
}

.owl-carousel .owl-item:nth-child(4) {
  transform: translateY(75%);
}

.group_industries_page .owl-carousel .owl-item {
  height: initial;
}

.group_industries_page .owl-carousel .owl-item:nth-child(1) {
  transform: initial;
}

.group_industries_page .owl-carousel .owl-item:nth-child(2) {
  transform: initial;
}

.group_industries_page .owl-carousel .owl-item:nth-child(3) {
  transform: initial;
}

.group_industries_page .owl-carousel .owl-item:nth-child(4) {
  transform: initial;
}

/* Feel free to change duration  */
.animated {
  -webkit-animation-duration: 1000 ms;
  animation-duration: 1000 ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
.owl-animated-out {
  z-index: 1;
}
/* .owl-animated-in - only for upcoming item
  /* This is very important class. Use z-index if you want move In item above Out item */
.owl-animated-in {
  z-index: 0;
}
/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/* .box_hom1 {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 23px;
  display: flex;
} */
.box_hom1 h4 {
  font-weight: 500;
  color: #000;
  font-size: 19px;
  font-family: "Lufga";
}
.box_hom1 p {
  font-size: 15px;
  margin: 0px;
  line-height: 21px;
  font-family: "Lufga";
}
.anal {
  padding: 90px 0px;
}
.ullfill {
  padding: 220px 0px 70px;
  margin-top: 0px;
  background: #e7ffe8;
  background: linear-gradient(to bottom, #d9ffe1 1%, #ffffff 100%);
}
.heafg_cen {
  text-align: c;
  margin-bottom: 37px;
}
.heafg_cen h2 {
  /* font-family: Lufga; */
  font-size: 40px;
  font-weight: 700;
  color: #000;
  padding-bottom: 33px;
  font-family: "DM Sans", sans-serif;
  text-align: center;
}
.heafg_cen h2 span {
  display: block;
  color: #4cc93a;
}

.ullfill .row .col-sm-6 {
  padding: 0px;
  display: flex;
}

.pricin_boxx {
  background: #fff;
  padding: 35px;
  /* box-shadow: 0px 4px 20px #ccc; */
  /* border-radius: 10px; */
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  box-shadow: 0 6px 4px -2px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.pricin_boxx_con h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 7;
  font-size: 30px;
  font-weight: 700;
  color: #000;
  left: 0px;
  padding-bottom: 11px;
}
.pricin_boxx_con a {
  background: #4cc93a;
  color: #fff;
  border-radius: 100px;
  padding: 7px 20px;
  display: inline-block;
  margin-bottom: 12px;
  margin-top: 29px;
  font-size: 17px;
  font-family: "DM Sans", sans-serif;
}
.uptoo ul {
  margin-top: 41px;
}
.uptoo li {
  font-family: "DM Sans", sans-serif;
  padding-bottom: 7px;
  font-size: 17px;
}

.large_brandd {
  background: #37912a;
  margin: 21px 0px;
  border-radius: 0px 13px 14px 0px;
}
.large_brandd_text {
  padding: 34px;
}
.large_brandd_text h3 {
  font-family: "DM Sans", sans-serif;
  font-weight: 7;
  font-size: 30px;
  font-weight: 700;
  color: #fff;
  left: 0px;
  padding-bottom: 11px;
}
.large_brandd_text p {
  color: #fff;
}
.large_brandd_text a {
  background: #ffffff;
  color: #000;
  border-radius: 100px;
  padding: 7px 20px;
  display: inline-block;
  margin-bottom: 12px;
  margin-top: 29px;
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
}

.uptoo h4 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-weight: 6700;
  font-size: 19px;
  padding-bottom: 9px;
  color: #000;
}
.uptoo li i {
  color: #4cc93a;
}

.included {
  padding: 100px 0px;
}
.included_headd h2 {
  font-size: 36px;
  font-family: "DM Sans";
  font-weight: 700;
  color: #000;
}
.included_headd p {
  color: #000;
}
.inter_head {
  display: flex;
  text-align: justify;
  align-items: center;
}
.inter_head h3 {
  color: #000;
  font-family: "Lufga";
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
}
.inter_head img {
  width: 54px;
  margin-right: 12px;
}
.interprise_main {
  background: #f6f9fc;
  padding: 40px 30px;
  border-radius: 11px;
  /* border: 1px solid #e5e5e57d; */
  margin-bottom: 30px;
  width: 100%;
}
.interprise_main ul {
  margin-top: 16px;
}
.interprise_main ul li {
  color: #000;
  font-family: "Lufga";
  padding-bottom: 8px;
  font-weight: 400;
  font-size: 16px;
}
.interprise_main ul li i {
  color: #5d7bc9;
  font-size: 14px;
}
.interprise_main ul li i {
  margin-right: 10px;
}
.included .row .col-sm-6 {
  display: flex;
}
.included_headd {
  margin-bottom: 40px;
}
.inter li i {
  color: #b380e0 !important;
}
.buildd li i {
  color: #ec7272 !important;
}
.wareee li i {
  color: #73e449 !important;
}
.Hassle li i {
  color: #75b5ff !important;
}
.World-class li i {
  color: #5ad0f6 !important;
}
.faqqq {
  padding: 50px 0px;
  background: #f6f9fc;
}
.faq_boxxx {
  padding: 45px;
  background: #ffffff;
  margin-bottom: 28px;
  border-radius: 10px;
  box-shadow: 0px 0px 40px #f5f5f5;
}
.faq_boxxx h3 {
  font-family: "DM Sans";
  font-weight: 600;
  color: #0d100d;
  font-size: 18px;
  padding-bottom: 20px;
}
.faq_boxxx p {
  font-size: 16px;
}
.large_brandd img {
  width: 550px;
  margin: auto;
  padding-bottom: 32px;
  padding-top: 20px;
}
.content_Deign_home {
  width: 100%;
}

@media (min-width: 1300px) and (max-width: 1400px) {
  .business316 .container {
    min-width: 1280px;
  }
}

@media screen and (min-width: 1410px) {
  .business316 .container {
    min-width: 1350px;
  }
}

.progress_main .row {
  justify-content: center;
  align-items: center;
}
.progress_main {
  padding: 80px 0px;
}
.progresss {
  justify-content: space-between;
  border-radius: 21px;
  padding: 23px; /* top: 50%; */
}

.progress_listt {
  padding: 0px 120px;
}
.progress_listt li {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding: 9px 27px;
  color: #0a0a0a;
  background-color: rgb(241 241 241);
  border: solid 1px var(--border-color);
  border-radius: 100px;
  box-shadow: 0 0.2rem 0.4rem rgba(0, 0, 0, 0.4),
    0 -0.3rem 0.6rem rgba(0, 0, 0, 0.2) inset;
  transition: box-shadow 64ms ease-out;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
}
.progress_listt li:before {
  content: "";
  height: 4px;
  position: absolute;
  width: 100%;
  background: #dfdede;
  left: -121px;
  top: 53%;
  z-index: -1;
}
.progress_busines {
  text-align: center;
  position: relative;
  z-index: 999;
}
.progress_busines img {
  width: 223px;
  margin: a;
  position: relative;
}

.progress_316 {
  text-align: center;
  position: relative;
  z-index: 6;
}
.progress_316 img {
  width: 250px;
  position: relative;
  z-index: 3;
}

.progress_busines:after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  background: #dfdede;
  top: 44.4%;
  z-index: -1;
  left: 50%;
}
.progress_busines:before {
  content: "";
  height: 4px;
  position: absolute;
  background: #dfdede;
  top: 44.4%;
  z-index: 1;
  left: 50%;
  animation: load 4s normal forwards infinite;
  box-shadow: 0 10px 40px -10px #ccc;
  background: #5aac4e;
  z-index: 0;
  animation-timing-function: ease-in-out;
}

.progress_316:after {
  content: "";
  width: 100%;
  height: 4px;
  position: absolute;
  background: #dfdede;
  top: 45%;
  left: 7%;
  z-index: -1;
}
.progress_316:before {
  content: "";
  height: 4px;
  position: absolute;
  background: #dfdede;
  top: 45%;
  left: 7%;
  z-index: -1;
  animation: load 4s normal forwards infinite;
  background: #5aac4e;
  z-index: 0;
  animation-delay: 2s;
  animation-timing-function: ease-in-out;
}

.progress_listt {
  position: relative;
}
.brr_progress {
  position: absolute;
  height: 82%;
  left: 0;
  top: 4px;
}
.brr_progress:before {
  content: "";
  height: 100%;
  position: absolute;
  width: 4px;
  background: #dfdede;
  left: -2px;
  top: 11%;
}
.brr_progress:after {
  content: "";
  position: absolute;
  width: 4px;
  background: #5aac4e;
  left: -2px;
  top: 11%;
  z-index: 9;
  animation: progressBar1 3s ease-in-out infinite;
  animation-fill-mode: forwards;
  background-color: #5aac4e;
  animation-delay: 5s;
}
.progress_listt li:nth-child(1):after {
  content: "";
  height: 4px;
  position: absolute;
  background: #dfdede;
  top: 53%;
  left: -121px;
  z-index: -1;
  animation: load 4s normal forwards infinite;
  background: #5aac4e;
  z-index: -1;
  animation-delay: 6s;
  animation-timing-function: ease-in-out;
}
.progress_listt li:nth-child(2):after {
  content: "";
  height: 4px;
  position: absolute;
  background: #dfdede;
  top: 53%;
  left: -121px;
  z-index: -1;
  animation: load 4s normal forwards infinite;
  background: #5aac4e;
  z-index: -1;
  animation-delay: 6s;
  animation-timing-function: ease-in-out;
}
.progress_listt li:nth-child(3):after {
  content: "";
  height: 4px;
  position: absolute;
  background: #dfdede;
  top: 53%;
  left: -121px;
  z-index: -1;
  animation: load 4s normal forwards infinite;
  background: #5aac4e;
  z-index: -1;
  animation-delay: 6s;
  animation-timing-function: ease-in-out;
}
.progress_listt li:nth-child(4):after {
  content: "";
  height: 4px;
  position: absolute;
  background: #dfdede;
  top: 53%;
  left: -121px;
  z-index: -1;
  animation: load 4s normal forwards infinite;
  background: #5aac4e;
  z-index: -1;
  animation-delay: 6s;
  animation-timing-function: ease-in-out;
}
@keyframes load {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes progressBar1 {
  0% {
    height: 0;
  }
  100% {
    height: 100%;
  }
}

.zommm {
  animation-name: zoom-inn;
  animation-duration: 5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 3.4s;
}

@keyframes zoom-inn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

.button_loginn a {
  display: inline-block;
  padding: 4px 24px;
  font-size: 15px;
  font-family: "Lufga";
  color: #fff;
  border-radius: 100px;
}

.button_loginn a:last-child {
  background: #c1f904;
  margin-left: 11px;
  color: black;
  font-weight: 500;
}
.calculateee {
  background: #2563eb;
  color: #fff;
  border-radius: 100px;
  padding: 9px 20px;
  display: inline-block;
  margin-bottom: 12px;
  margin-top: 40px;
  font-size: 17px;
  font-family: "DM Sans", sans-serif;
}
.boccc .puprple_btn {
  margin-top: 40px;
}
.text_head span {
  display: block;
}

.internationallyy {
  background: #f3f3f3;
  padding: 120px 0px;
}
.send_moneyy img:last-child {
  display: none;
}
.footerbutton li {
  padding-bottom: 10px;
}
.uptoo {
  padding-top: 50px;
  position: relative;
  z-index: 9;
}
.pricin_boxx {
  position: relative;
}
.pricin_boxx:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 50%;
  background: #f1f1f1b0;
  width: 100%;
  right: 0;
  left: 0;
  border-radius: 0px 0px 10px 10px;
}
.pricing .navbar-expand-lg .navbar-nav .nav-link {
  color: #000;
}
.mobile_vieww_provide {
  display: none;
}
.newdesign li {
  padding-left: 10px !important;
  display: flex;
}
.newdesign li::before {
  display: none !important;
}
.img_whychose_icon img {
  width: 100%;
}
.img_whychose_icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}
.animation_text_boxx {
  width: 90%;
}
.shape_home {
  display: none;
}

/* Mega Menu Styles */
.megamenuu .navbar-nav .nav-item.dropdown {
  position: inherit;
}
.megamenuu .navbar-nav .dropdown-menu {
  border-radius: 0px;
  max-width: 100%;
  min-width: 100%;
  margin: 0px;
  padding: 4px 0px;
  top: 85px;
  background: #f1f3f0;
  border: 0px;
}
.megamenuu .dropdown-menu .container {
  width: 100%;
  padding: 20px;
  padding-bottom: 0px;
}
.megamenuu .dropdown-menu .row {
  margin-bottom: 20px;
}
.megamenuu .dropdown-menu h4 {
  font-size: 18px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.megamenuu .dropdown-menu ul li {
  margin-bottom: 10px;
  display: flex;
  width: 50%;
  padding: 12px;
  padding-bottom: 8px;
}
.megamenuu .dropdown-menu ul li a {
  color: #333;
  font-size: 16px;
  display: flex;
}
.megamenuu .dropdown-menu ul li a:hover {
  color: #007bff;
}
.mega_heading h3 {
  font-family: Lufga;
  font-weight: 600;
  font-size: 19px;
  margin-bottom: 0px;
}
.mega_heading p {
  font-size: 13px;
}
.megamneu_box1 {
  padding-right: 0px;
}
.menubox_2 {
  padding-left: 0px;
}
.megamneu_box1 h4 {
  font-size: 14px !important;
  font-family: "Lufga";
  font-weight: 700;
  margin-bottom: 26px !important;
  position: relative;
}
.megamneu_box1 h4:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: #cdcdcd;
  bottom: -11px;
  left: 0;
}
.megamneu_box1 ul {
  display: flex;
  flex-wrap: wrap;
}
.megamneu_box1 li {
  margin-bottom: 10px;
  display: flex;
  width: 50%;
  float: left;
  margin-bottom: 0px !important;
}
.megamneu_box1 li .icon_menu {
  width: 27px;
  margin-right: 12px;
}
.megamneu_box1 .menu_text_mega {
  width: 90%;
}
.megamneu_box1 .menu_text_mega h3 {
  font-size: 13px;
  font-weight: 600;
  font-family: Lufga;
  color: #141111;
}
.megamneu_box1 .menu_text_mega p {
  font-size: 11px;
  line-height: 16px;
}

.icon_menu img {
  width: 100%;
}
.mega_heading {
  margin-bottom: 5px;
}

.megamenuu .navbar-nav .nav-item {
  padding: 25px 0px;
}
.megamenuu .dropdown-menu ul li a:hover h3 {
  color: green;
}
.mob_menu_head {
  display: none;
}
.singleline_mega .dropdown-menu ul li {
  width: 100%;
}

.strategy_cont span {
  display: block;
  font-weight: 600;
  color: #000;
  padding-bottom: 8px;
}
.ban_invest_text h1 span {
  text-decoration: line-through;
}
.dsesktop_none {
  display: none;
}
.openintant_signup {
  display: none;
}
.shipp .ware_image img {
  width: 70%;
  margin: a;
}
.shipp .ware_image {
  text-align: center;
}

.group316 .groupchoose {
  padding-top: 60px;
}

/* .group_industries_banner_image img{max-width:70%; float:right} */
@media screen and (max-width: 1000px) {
  .dsesktop_none {
    display: block;
  }
  .mobile_none {
    display: none;
  }
}

@media screen and (min-width: 1000px) {
  .megamenuu .mega-dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Feel free to change duration  */
.animated {
  -webkit-animation-duration: 1000 ms;
  animation-duration: 1000 ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
/* .owl-animated-out - only for current item */
/* This is very important class. Use z-index if you want move Out item above In item */
.owl-animated-out {
  z-index: 1;
}
/* .owl-animated-in - only for upcoming item
  /* This is very important class. Use z-index if you want move In item above Out item */
.owl-animated-in {
  z-index: 0;
}
/* .fadeOut is style taken from Animation.css and this is how it looks in owl.carousel.css:  */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.progress-1 {
  width: 120px;
  height: 2px;
  background: linear-gradient(#28a745 0 0) 0/0% no-repeat #ddd;
  animation: p1 3s infinite linear;
  margin-bottom: 18px;
}
@keyframes p1 {
  100% {
    background-size: 100%;
  }
}
.group_banner {
  display: flex;
  align-items: center;
}

.save_timemain {
  padding: 120px 0px;
}
.save_timemain .row {
  align-items: center;
}
.return_box_cont {
  padding-right: 20px;
}
.return_box_cont h2 {
  font-size: 33px;
  font-weight: 600;
  color: #000;
  padding-bottom: 25px;
  font-family: "Lufga";
}
.return_box_cont p {
  padding-bottom: 11px;
  font-size: 17px;
}
.return_box_cont a {
  font-family: Lufga;
}
.return_box_img img {
  border-radius: 10px;
}

.retain_revenure {
  padding: 120px 0px;
  background: #fff2f5;
}
.retain_revenure .return_box_cont {
  padding-left: 20px;
}
.retain_revenure .row {
  align-items: center;
}

.monitor_box_main {
  padding: 120px 0px;
  background: #f2ffde;
}
.monitor_box_main .row {
  align-items: center;
}
.monitor_box .row {
  align-items: center;
}
.monitor_box_main img {
  width: 100%;
}
.monitor_box {
  background: #fff;
  padding: 19px;
  border-radius: 10px;
  margin-bottom: 20px;
}
.monitor_box_main .return_box_cont {
  padding-left: 20px;
}
.monitor_box h4 {
  font-family: Lufga;
  font-size: 20px;
  /* margin-bottom: 20px; */
  font-weight: 600;
  color: #000;
}
.monitor_box p {
  padding-bottom: 0pc;
}

.businessreturn .banner_section {
  background: #a6ff78b8;
}

.blog_detail_page_col .featured-thumbnail img {
  border-radius: 20px;
}

/*=========================================================================     27-04-2023       ==============================================================*/
.custom_header {
  padding: 10px 0;
}
.market_design {
  display: inline-block;
  width: 100%;
  position: relative;
  padding: 200px 0px;
  background: rgb(239 132 92 / 10%);
}
/* .custom_header ul.navbar-nav .nav-item a.nav-link {
    color: #fff;
} */
.market_design_content h2 {
  font-size: 47px;
  color: #000;
  letter-spacing: -1.5px;
  font-weight: 500;
  padding-top: 20px;
  padding-bottom: 29px;
  font-family: "Lufga", sans-serif;
}

.market_design_content p {
  font-size: 17px;
  color: #000;
  margin-bottom: 30px;
}
.buy_section_upsc ul {
  margin-bottom: 30px;
}

.buy_section_upsc ul li {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  font-family: "Lufga";
  font-size: 17px;
  color: #000;
}
.buy_section_upsc_image {
  text-align: right;
  padding-left: 110px;
}
.local-bg {
  /* background: #f1f1f1; */
  height: 100%;
  padding: 90px 50px;
  border-radius: 10px;
}

.buy_section_upsc ul li svg {
  margin-right: 12px;
  width: 30px;
  height: 30px;
  border: 1px solid #5aac4e;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #5aac4e;
  padding: 6px;
}
.section_upsc {
  padding: 120px 0;
}
.five_cards {
  padding: 150px 0;
  background: #f1f1f1;
}

.five_card_col {
  display: flex;
  flex-wrap: wrap;
}
.specialise {
  padding: 89px 0 140px;
}
.faq_content a {
  color: #5aac4e;
}
.card_inner_col {
  flex: 0 0 30%;
  max-width: 30%;
  box-shadow: 0px 0px 10px rgba(0 0 0 / 10%);
  background: #fff;
  margin-bottom: 30px;
  padding: 30px 15px 0;
  border-radius: 10px;
  margin-right: 24px;
  display: flex;
  align-items: flex-start;
}
.card_inner_col img {
  margin-right: 12px;
}

.card_heading p {
  margin: 0;
}
.brand_logo {
  display: flex;
  flex-wrap: wrap;
}

.inner_brand_logo {
  flex: 0 0 50%;
  max-width: 50%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
.pay-316-pay {
  padding: 160px 0;
}
.tab_section_payment .nav-tabs li {
  flex: 0 0 20%;
}
.tab_section_payment button.nav-link {
  border: none;
  margin: 0;
  background-color: initial !important;
  font-weight: 500;
  font-family: "Lufga";
  border-radius: 0;
  width: 100%;
}

.tab_section_payment button.nav-link.active {
  border-bottom: 2px solid #9bda6f;
  margin-bottom: -1px;
  color: #142e02;
}
.tab_section_payment {
  padding: 160px 0 50px;
}
.tab_section_payment .section_title {
  text-align: center;
  margin-bottom: 50px;
}
.tab_section_payment .nav-tabs {
  justify-content: space-between;
}
.tab_section_payment .tab-content {
  padding-top: 50px;
}
.tab_col ul li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-family: "Lufga";
  color: #000;
}

.tab_col ul li i {
  margin-right: 10px;
  color: #c3f53c;
}

.tab_col ul {
  margin-top: 30px;
  margin-bottom: 30px;
}
.quickets {
  padding: 120px 0;
}

.quickets .section_title {
  margin-bottom: 50px;
  text-align: center;
}

.quickets_col {
  text-align: center;
  padding: 0 30px;
}

.quickets_col h3 {
  font-size: 20px;
  margin: 20px 0;
  color: #000;
}

.quickets_col p {
  font-size: 16px;
}
.quickest_btn {
  margin-top: 50px;
  text-align: center;
}
.walmart_sponsored {
  background: url(../img/girl-using.png) no-repeat;
  background-position: right bottom;
  position: relative;
  padding: 150px 0;
}

.walmart_sponsored:before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(90deg, #002715 40%, transparent); */
}
.walmart h2,
.walmart p {
  color: #000000;
  padding-bottom: 20px;
}
.commerce_inner_col {
  padding: 15px 0;
}

.commerce_inner_col h5 {
  color: #000;
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
}

.commerce_inner_col p {
  text-align: center;
  font-size: 16px;
}
.commerce_section {
  padding: 120px 0;
}

.commerce_section .section_title {
  margin-bottom: 50px;
  text-align: center;
  color: #000;
}
.commerce_col img {
  border-radius: 15px;
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.commerce_col {
  text-align: center;
}
.call_action_text h4 {
  font-size: 42px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 600;
}

.call_action_text p {
  margin: 0;
  color: #ffffff;
}
.specialise_local img {
  max-width: 520px;
}
.call_to_action {
  padding: 80px 0;
  background: #002715;
}
.call_action_text a.btn.puprple_btn {
  float: right;
}
.queshtion_answere {
  padding: 100px 0 !important;
}

.accordion .card {
  border: none;
}
.queshtion_answere .accordion > .card > .card-header {
  margin-bottom: 0;
  padding: 0;
}
.faq_content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
}
.awesome_deal {
  display: flex;
}

.awesome_deal_col {
  flex: 1;
  height: 500px;
}
.awesome_deal_col img {
  object-fit: cover;
}

.awesome_deal .awesome_deal_col:last-child {
  padding: 50px;
  background: #ddffd9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.box_textt_tect .row {
  align-items: center;
}

.awesome_deal .awesome_deal_col:last-child a {
  font-family: "Lufga";
  font-size: 18px;
  margin-top: 30px;
  border-bottom: 1px solid #000;
  display: inline-block;
  width: max-content;
}
.custom_header.fix_style ul.navbar-nav .nav-item a.nav-link {
  color: #000;
}
.custom_header.fix_style ul.navbar-nav .nav-item a.nav-link.puprple_btn {
  color: #fff;
}
.buy_section_upsc h2 {
  font-weight: 600;
}
.buy_section_upsc h2,
.buy_section_upsc p {
  color: #000;
  margin-bottom: 30px;
}
.specialise_local h2,
.specialise_local p {
  color: #000;
  margin-bottom: 30px;
}

.specialise_local h2 {
  font-weight: 600;
}

.five_card_col h2 {
  font-weight: 600;
}
.five_card_col h2,
.five_card_col p {
  color: #000;
  margin-bottom: 30px;
}
.brand_logo_content h2 {
  font-weight: 600;
}
.brand_logo_content h2,
.brand_logo_content p {
  color: #000;
  margin-bottom: 30px;
}
.tab_col h2 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #000;
  font-weight: 600;
}
.market_design_content img {
  display: block;
  margin: 0 auto;
}
a.watch-second {
  display: inline-block;
  margin-left: 40px;
  border: 2px solid #ccc;
  padding: 10px 20px;
  border-radius: 5px;
}
/*=========================================================================     27-04-2023       ==============================================================*/

/*=========================================================================     28-04-2023       ==============================================================*/
.marketplace_sell_page a.nav-link.btn.puprple_btn {
  color: #fff;
}
.marketplace_sell_page .navbar-expand-lg .navbar-nav .nav-link {
  color: #000;
}

.marketplace-bg {
  /* background: rgb(239 132 92 / 10%); */
  background: url(../img/girl-using.png) no-repeat;
  position: relative;
  background-position: center;
  background-size: cover;
  padding: 70px 0;
}

.marketplace-bg:before {
  content: "";
  position: absolute;
  inset: 0;
}

.marketplace-bg a.btn.puprple_btn {
  background: #c3f53c;
  color: #000;
}
.tab_col {
  margin-top: 25px;
}
.listing_list ul li {
  display: flex;
  margin-bottom: 15px;
}

.listing_list ul li img {
  max-width: 50px;
  margin-right: 20px;
}

.listing_list ul li p a {
  color: #5aac4e;
}

.listing_list ul li p {
  font-size: 16px;
}
.listing_li {
  padding: 80px 0px;
  background: #fff3f3;
}
.marketplace_sell {
  padding: 120px 0;
  background-color: #ddffda;
  /* background-image: url(../img/marketplace-banner-bg.jpg); */
  background-position: right;
  background-size: cover;
}
.marketplace_sell_content span {
  color: #000;
  font-family: "Lufga";
  font-weight: 500;
}
.marketplace_sell_content h2 {
  font-weight: 700;
  margin-bottom: 0px;
  color: #000;
  margin-top: 30px;
}

.marketplace_sell_content h3 {
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
  font-size: 24px;
  padding-top: 11px;
}

.marketplace_sell_content p {
  color: #000;
}

.banners_btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.banners_btn .started_btn {
  flex: 0 0 40%;
  max-width: 40%;
}

.banners_btn .started_btn span {
  /* max-width: 150px; */
  display: inline-block;
  font-size: 13px;
  margin-bottom: 12px;
}
.markerplace-brand img {
  width: 200px;
}
.bottom_cta {
  padding: 80px 0;
  background-color: #5aac4e;
  background-image: url(../img/Asset-967.svg);
  background-repeat: no-repeat;
  background-position: right;
}
.bottom_cta_content {
  padding-left: 90px;
}
.bottom_cta_content p {
  color: #fff;
}

.bottom_cta_content p strong {
  color: #52ff3a;
}

.card_inner_col h5 {
  color: #000;
}

.tab_section_payment .section_title h2 {
  font-size: 40px;
}
.market_design_page .navbar-expand-lg .navbar-nav .nav-link {
  color: #000;
}
.market_design_page .navbar-expand-lg .navbar-nav .dropdown-item {
  color: #000;
  font-family: Lufga;
}
.tab_section_payment2 {
  padding-bottom: 100px;
}
.walmart h2 {
  font-size: 43px; /* padding-bottom: 20px; */
  font-weight: 600;
}

.invest_316_logo .navbar-brand img {
  width: 110px;
}

/*=========================================================================     28-04-2023       ==============================================================*/

.faqqq .col-sm-6 {
  display: flex;
}
.video_connectt {
  position: relative;
  padding: 0px 0px !important;
  background: inherit;
}
.video_connectt video {
  height: 83vh;
  object-fit: cover;
}
.video_connectt:before {
  content: "";
  background: #00000052;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  height: 99%;
  width: 100%;
}
.banner_content_main {
  position: absolute;
  z-index: 1;
  top: 26%;
  writing-mode: 0;
  /* right: 0; */
  left: 0;
  margin: auto;
  right: 0;
}

.vide_jkgh {
  /* float: right; */
  width: 100%;
  height: 100%;
}
.spotlightt .enchance-img-circle {
  width: 380px !important;
  height: 380px !important;
  min-height: inherit;
  max-height: 460px;
  /* border-radius: 100%; */
  border: 2px solid #ffc220;
  position: absolute;
  right: -24px;
  z-index: 1;
}

/* 10-05-2023 sy (form)*/
section.market_sec {
  padding-top: 145px;
  background: #f8f8f8;
  padding-bottom: 56px;
}
.market_place_content {
  box-shadow: 0px 0px 3px 1px #eee;
  padding: 22px;
  border-radius: 12px;
  font-family: Lufga;
  background: #fff;
}
.market_place_content img {
  width: 100%;
}
.market_place_content h2 {
  text-align: center;
  font-size: 28px;
  line-height: 30px;
  /* line-height: 42; */
  color: #000;
  font-family: "Lufga";
  font-weight: 600;
  padding: 19px 0px 9px 0px;
}
.market_place_content p {
  text-align: center;
  font-size: 15px;
  line-height: 25px;
  /* line-height: 42; */
  color: #585656;
  font-family: "Lufga";
  padding-bottom: 4px;
}
.market_place_feature {
  box-shadow: 0px 0px 5px 1px #e1e1e1;
  background: #fff;
  padding: 30px;
  border-radius: 13px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  font-family: Lufga;
}
.join_img {
  width: 25%;
}
join_text {
  width: 100%;
}
.join_text h3 {
  font-size: 15px;
  color: #000;
  padding-bottom: 0px;
  font-weight: 600;
}
.join_text p {
  font-size: 14px;
  color: #585e71;
  line-height: 22px;
  font-family: "Lufga";
  margin-bottom: 0px;
}
.join_text a {
  text-decoration: underline;
  color: #5aac4e;
  font-size: 15px;
}
.market_form input {
  height: 53px;
  border: 1px solid #a5a5a5;
  /* box-shadow: rgba(9, 30, 66, 0.25) 0px 1px 1px, rgba(9, 30, 66, 0.13) 0px 0px 1px 1px; */
}
.market_form .form-check-input {
  box-shadow: none !important;
}
.market_form input:focus {
  /* border: 0; */
  box-shadow: rgb(9 30 66 / 57%) 0px 1px 1px, rgb(9 30 66 / 54%) 0px 0px 1px 1px;
  border: 1px solid #a5a5a5;
}
.market_form .btn {
  display: block;
}
.market_form .terms {
  text-decoration: underline;
}
.already_account p {
  margin: 0;
  padding: 0;
  padding-top: 25px;
}
.already_account p a {
  text-decoration: underline;
}
.tab-sec-pay3 {
  padding: 44px 0 50px;
}
.check_mail_box {
  /* background: #000; */
  display: inline-block;
  box-shadow: 0px 0px 19px 2px #d9d9d9;
  padding: 53px 0px 54px 0px;
  border-radius: 10px;
  text-align: center;
  margin-top: 189px;
  background: #ffffff;
}
body.check_mail-sec {
  text-align: center;
}
.check_mail_box h2 {
  font-size: 22px;
  color: #000;
  font-family: "Lufga";
  font-weight: 600;
  padding-top: 18px;
}
.check_mail_box p {
  font-family: "Lufga";
  font-size: 13px;
  color: #4f4b4b;
  line-height: inherit;
}
.check_mail_box p a {
  text-decoration: underline;
}
.check_mail_box img {
  width: 17%;
}
.verify-mail-btn {
  display: inherit;
}

.join_text {
  width: 75%;
}

.market_form .form_labell {
  position: absolute;
  top: 13px;
  left: 21px;
  pointer-events: none;
  transition: all 0.2s;
  color: #626262;
  font-size: 15px;
}

.market_form .form-control:focus + .form_labell,
.form-control:not(:placeholder-shown) + .form_labell {
  top: -11px;
  font-size: 0.8rem;
  color: #007bff;
  background: #fff;
  color: #000;
  font-size: 13px;
}

.market_form .form-group {
  position: relative;
}

.market_form input[type="password"]::-ms-reveal {
  display: none;
}

.market_form .toggle {
  background: none;
  border: none;
  color: #181f26;
  /*display: none;*/
  /*font-size: .9em;*/
  font-weight: 600;
  /*padding: .5em;*/
  position: absolute;
  right: 0.75em;
  top: 10px;
  z-index: 9;
}

.business_phone_form .form_labell {
  left: 67px;
  z-index: 11;
}
.chec_boxc label {
  font-size: 15px;
  color: #000;
}

.chec_boxc #gridCheck {
  height: 18px;
}
.already_account p {
  font-size: 15px;
}
.sel_ban_market {
  /* padding-top:190px; */ /* padding-bottom:140px; */
  padding: 0px;
}
.calt_2 h4 {
  color: #000;
}
.calt_2 p {
  color: #000;
}

.site_exper {
  padding: 70px 0px;
}
.cont_site h3 {
  font-weight: 600;
  color: #000;
  font-size: 48px;
  padding-bottom: 13px;
  line-height: 70px;
}
.cont_site p {
}

.new_boty h4 {
  font-size: 29px;
  font-weight: 600;
}
.new_boty {
  padding: 50px 0px;
}

.signuppp_316 section.market_sec {
  padding-top: 110px;
}
.baseddusa {
  max-width: 490px;
  padding: 49px 30px;
}

.site_exper .row {
  align-items: center;
}

.droppp .dropdown-menu {
  padding: 0px;
  height: 341px;
  overflow-y: scroll;
  box-shadow: 0px 0px 20px #ccc;
  border: 0px;
  width: max-content;
}
.droppp .dropdown-menu li {
}
#myButton.active .dropdown-menu {
  display: block;
}
.droppp .dropdown-menu li a {
  font-size: 14px;
  transition: 0.4s;
  color: #505050;
  width: 100%;
  display: inline-block;
  padding: 12px 14px;
  border-bottom: 1px solid #dbdbdb9e;
}
.droppp .dropdown-menu li a span {
  padding-left: 20px;
}

.droppp.open .dropdown-menu {
  display: block;
}

.chfjk .dropdown .dropdown-menu {
  display: none;
}
.chfjk .dropdown.open .dropdown-menu {
  display: block;
}

.droppp button {
  background: #cccccc;
  border: 1px solid #a5a5a5;
  border-radius: 5px 0px 0px 5px;
  height: 53px;
  border-right: 0px;
  width: 60px;
  padding: 5px;
}
.droppp button:hover {
  color: #000;
  background-color: #e9ecef;
  border-color: #878787;
}
.droppp button:active {
  color: #000;
  background-color: #e9ecef;
  border-color: #878787;
}
.droppp button:focus {
  color: #000;
  background-color: #e9ecef;
  border-color: #878787;
}

.droppp button .caret {
  margin-right: -6px;
}

.droppp .dropdown-menu li a:hover {
  background: #00800021;
}
.signin_page {
  position: relative;
  background: #fff;
  height: 100vh;
}
.signin_page:before {
  content: "";
  position: absolute;
  left: 0;
  width: 34%;
  background: #001142;
  height: 100%;
}
.signin_page .row {
  display: flex;
  justify-content: center; /* align-items: center; */
}
.signin_page .container-fluid {
  height: 100%;
}
.signin_page .row {
  height: 100%;
}
.right_signn {
  /* text-align: center; */
  background: #ffffff;
  padding: 20px;
  /* margin-left: 140px; */
  box-shadow: 0px 0px 10px #ccc;
  max-width: 400px;
  margin: auto;
  /* margin-top: 20px; */
  /* padding-top: 0px;*/
}
.right_signn h2 {
  color: #000000;
  padding-bottom: 13px;
  font-size: 26px;
  text-align: center;
}
.right_signn p {
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 0px;
  margin-bottom: 5px;
}
.right_signn input {
  border: 1px solid #b1b1b1;
  border-radius: 0px;
  height: 39px;
  margin-bottom: 15px;
  font-family: "Lufga";
  border-radius: 6px;
}
.right_signn button {
  background: #28a745;
  font-family: "Lufga";
  width: 100%;
  border-radius: 100px;
  padding: 7px;
  color: #fff;
  /* margin-bottom: 23px; */
  margin-top: 10px;
}
.right_signn label {
  float: left;
  font-weight: 600;
  font-family: "Lufga";
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 14px;
}
.commerce_inner_col a {
  padding: 8px 20px;
}
footer .links ul li a:hover {
  color: #000;
}
.tabing_guidess {
  margin-top: 90px;
  background: #28a745;
}
.tabing_guidess ul {
}
.tabing_guidess li {
  display: inline-block;
  margin-right: 21px;
}
.tabing_guidess li a {
  color: #ffffff;
  font-family: "Lufga";
  padding: 8px 7px;
  font-size: 17px;
  display: inline-block;
}

.tabing_guidess li a.active {
  border-bottom: 3px solid #c3f53c;
  color: #c3f53c;
}

.search-container button {
  float: right;
  padding: 6px 19px;
  /* margin-top: 8px; */
  /* margin-right: 16px; */
  background: #28a745;
  font-size: 17px;
  border: none;
  color: #fff;
  cursor: pointer;
}

.search-container input[type="text"] {
  padding: 6px;
  /* margin-top: 8px; */
  font-size: 17px;
  border: none;
  width: 100%;
  background: #ffffff;
  padding-left: 20px;
  height: 48px;
}
.search-container form {
  display: flex;
  border: 1px solid #999393;
}

.searchh {
  padding: 50px;
  background: #f3f3f3;
}
.searchh .row {
  justify-content: center;
}

.case_ontent_main {
  padding: 40px 0px;
  background: #ffffff96;
}
.panel_help1 .accordion-heading {
  font-family: Lufga;
  font-weight: 600;
  padding: 16px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ccc;
  font-weight: 500;
}
.panel_help1 .accordion-heading a {
  color: #000;
  display: inline-block;
  width: 100%; /* padding-right: 20px; */
}
.panel_help2 {
}

.panel_help1 .accordion-heading i {
  color: #5aac4e;
  font-size: 20px;
  float: right;
}
.panel_help2 .accordion-heading {
  font-family: Lufga;
  font-weight: 600;
  padding: 15px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0px;
  font-weight: 400;
  color: #cccccc;
}
.panel_help2 .accordion-heading a {
  color: #000000;
}
.panel_help2 {
  margin-left: 15px;
}
.panel_help2 ul {
  padding-left: 11px;
}
.panel_help2 li {
  padding-bottom: 18px;
}
.panel_help2 li a {
  font-family: "Lufga";
  font-size: 15px;
  padding: 3px 14px 3px 18px;
  display: inline-block;
  width: 100%;
  border-left: 3px solid green;
  color: #000;
  font-weight: 300;
  opacity: initial;
}

.panel_help2 .accordion-heading i {
  color: #6e6e6e;
  font-size: 20px;
}

.guides_right_cont h2 {
  font-weight: 600;
  color: #000;
  padding-bottom: 9px;
}
.guides_right_cont p {
  font-size: 15px;
  /* line-height: initial; */
}
.guides_right_cont h3 {
  font-size: 25px;
  font-weight: 600;
  color: #000;
  padding: 10px 0px;
}
.guides_right_cont ul {
}
.guides_right_cont li {
  color: #000;
  font-family: "Lufga";
  line-height: initial;
  padding-bottom: 11px;
  list-style: inside;
  font-size: 15px;
}
.guides_right_cont h4 {
  font-family: "Lufga";
  color: #000000e0;
  font-weight: 600;
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.guides_right_cont img {
  padding-bottom: 20px;
}
.improve_art li {
  list-style: none;
  display: inline-block;
  justify-content: center;
  margin-right: 11px;
  padding-bottom: 0px;
}
.improve_art {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #ccc;
}
.improve_art li a img {
  width: 18px;
  padding: 0px;
}
.improve_art li a {
  padding: 6px;
  color: #000;
}

.help_main {
  margin-top: 90px;
}
.help_main .row {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: c;
}

.help_img_text h2 {
  font-family: "Lufga";
  color: #000;
  font-weight: 600;
}
.help_img_text p {
  font-size: 15px;
}
.help_img_text a {
}
.help_img_text {
  text-align: center;
}
.panel_help2 li.active a {
  color: green;
  font-weight: 500;
}
.faq_main {
  padding: 60px 0px;
}
.faq_main h1 {
  font-size: 30px;
  caption-side: #000;
  font-weight: 600;
  font-family: Lufga;
  color: #000;
  text-align: center;
  padding-bottom: 60px;
}
.left_faq_list {
}
.left_faq_list ul {
}
.left_faq_list li {
}
.left_faq_list li a {
  font-family: "Lufga";
  color: #000;
  display: inline-block;
  width: 100%;
  padding: 11px;
  font-weight: 400;
  transition: 0.4s;
}
.left_faq_list li.active a {
  background: #e9f6dc;
  color: green;
}

.left_faq_list li a:hover {
  background: #e9f6dc;
}

.join_img {
  margin-right: 15px;
}
.label_pass {
  display: flex;
  justify-content: space-between;
}
.label_pass a {
  font-family: "Lufga";
  color: #054fbf;
  font-size: 14px;
}

.right_signn .form-check {
  display: inline-block;
  margin-top: 10px;
}
.right_signn .form-check input {
  height: 17px;
}
.right_signn .form-check label {
  font-weight: 400;
  color: #000;
}

.login_form {
  /* flex: 1; */
  /* display: flex; */
  /* align-items: center; */
  max-width: 400px;
}
.right_signn .regidt_button button {
  background: #fff;
  border: 2px solid #767676;
  color: #000;
  padding: 6px;
  margin-bottom: 0px;
}

.log_signn {
  padding: 0px;
  text-align: center;
}
.log_signn img {
  width: 187px;
  margin: auto;
  margin-top: -120px;
}
.signin_page .row > .col-sm-7.col-xl-8.col-lg-8.col-md-7 {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.link_bottom {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  border-top: 1px solid #dbdbdb;
  padding-top: 14px;
  margin-bottom: 0px;
  width: 100%;
}
.link_bottom li {
  display: inline-block;
  padding: 0px 8px;
}
.link_bottom li a {
  color: #000;
  font-family: "Lufga";
  font-size: 13px;
}

.leftt_log_sign {
  text-align: center;
  margin-top: 60px;
}
.leftt_log_sign img {
  width: 230px;
  margin: auto;
}

.imgleft_sign {
  margin-top: 150px;
}
.imgleft_sign img {
  width: 70%;
}
.link_bottom p {
  padding-top: 20px;
  font-size: 14px;
}
.prod_shop img:last-child {
  display: none;
}

.seler_help_desk {
  display: none;
}
.gudes_menutoggel {
  display: none;
}

/* 24-05-23 */
.reach_more .sel_ban_market {
  /* height: 68vh; */
}

.marketplace_sell.sel_ban_market {
}
.reach_more .carousel-control-prev-icon {
  filter: brightness(4.5) invert(6);
}
.reach_more .carousel-control-next-icon {
  filter: brightness(4.5) invert(6);
}

/*  */

.webinar_event_banner {
  padding: 150px 0;
  /* background: #f5f5f5; */
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.webinar_page .webinar_event_banner {
  background-image: url(../images/bg-hero-home.svg);
}
.webinar_detail_page .webinar_event_banner {
  background-image: url(../images/bg-hero-webinars.svg);
}
.bg_circle_shape {
  position: absolute;
  width: 50%;
  height: 100%;
  background: #5aac4e;
  border-radius: 50%;
  right: -15%;
  top: -25%;
}
.webinar_page .navbar-expand-lg .navbar-nav .nav-link {
  color: #000;
}
.banner_col_devide {
  display: flex;
}

.banner_col_image {
  flex: 0 0 55%;
  max-width: 55%;
  position: relative;
}

.banner_col_image span {
  position: absolute;
  top: 30px;
  left: -60px;
  background: #5aac4e;
  color: #fff;
  padding: 3px 23px;
  font-size: 15px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
}

.banner_col_image img {
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

.banner_col_box {
  flex: 0 0 45%;
  max-width: 45%;
  background: #fff;
  padding: 40px 20px;
}

.col_box_header {
  display: flex;
  align-items: center;
}
.col_box_header img {
  border-radius: 50%;
  max-width: 50px;
  position: relative;
  left: -47px;
}

.col_box_header p {
  margin-left: -35px;
  margin-bottom: 0;
  font-size: 14px;
}

.col_box_heading h4 {
  font-size: 17px;
  font-weight: 700;
}
.col_box_heading h4 span {
  color: #5aac4e;
}

.col_box_heading {
  margin-top: 30px;
}

.col_box_btn a {
  background: #5aac4e;
  color: #fff;
  padding: 7px 15px;
  border-radius: 4px;
}

.col_box_btn {
  margin-top: 70px;
}
.banner_col_box > p {
  margin-top: 20px;
}
.upcoming_event .owl-stage-outer {
  position: relative;
  width: 100%;
  max-width: calc(100vw - (100vw - 1220px) / 2);
  margin-left: auto;
  padding-bottom: 50px;
}
.upcoming_box {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  overflow: hidden;
  /* min-height: 460px; */
  position: relative;
}

.upcoming_box .upcoming_header img {
  max-width: 50px;
  display: inline-block;
  border-radius: 50%;
  margin-top: -37px;
}
.upcoming_header p {
  margin-top: 6px;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.upcoming_header {
  display: flex;
  grid-gap: 16px;
  align-items: center;
}

.upcoming_box > p {
  padding: 0 20px;
}
.upcoming_card {
  padding: 0 20px 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  align-items: self-start;
}

.upcoming_heading h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  /* text-overflow: ellipsis; */
  /* overflow: hidden; */
  /* display: -webkit-box; */
  /* -webkit-line-clamp: 2; */
  /* -webkit-box-orient: vertical; */
  margin-bottom: 20px;
}
.register_btn {
  margin-top: 16px;
}
.register_btn a {
  color: #5aac4e;
  font-family: "Lufga";
  font-weight: 500;
  text-transform: uppercase;
}
.upcoming_event {
  padding: 60px 0;
}

.upcoming_event .section_title h2 {
  margin-bottom: 50px;
  font-size: 30px;
}
.multiple_speaker img {
  max-width: 50px;
  border-radius: 50%;
}

.multiple_speaker {
  display: flex;
  align-items: center;
  grid-gap: 20px;
  margin-bottom: 30px;
}
.webinar_detail h1 {
  font-size: 26px;
  color: #fff;
}
.list_detail p {
  font-weight: 300;
}
.page_content_deatil p {
  /* font-weight: 300; */
  font-size: 16px;
}
.sub_detail p {
  font-weight: 300;
}
.register_section {
  padding-bottom: 60px;
}

.multiple_speaker p {
  margin: 0;
}
.webinar_detail_page .multiple_speaker p {
  color: #fff;
}

.banner_date_time {
  max-width: 60%;
  display: flex;
  background: #5aac4e;
  padding: 10px 15px;
  justify-content: space-between;
  align-items: center;
}

.banner_date_time .date_col {
  display: flex;
  align-items: center;
}

.banner_date_time .date_col i {
  color: #fff;
  font-size: 25px;
  margin-right: 10px;
}

.banner_date_time .date_col b {
  color: #fff;
  margin-right: 5px;
}

.banner_date_time .date_col span {
  color: #fff;
}

.banner_event img {
  border-radius: 10px;
}
.page_content_deatil {
  padding: 0px 0px 60px;
}

.register_description h4 {
  margin-bottom: 30px;
  color: #000;
  font-weight: 600;
}

.list_detail {
  padding-left: 15px;
  position: relative;
  margin-bottom: 30px;
}
.register_form input,
.register_form textarea {
  border: 1px solid #bbb !important;
  border-radius: 4px;
}
.list_detail ul {
  padding-left: 40px;
}
.list_detail ul li {
  font-family: "Lufga";
  list-style: disc;
  font-size: 15px;
  color: #000;
  padding-bottom: 7px;
}

/* .list_detail:before {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #5aac4e;
    border-radius: 50%;
    top: 8px;
    left: -5px;
} */

.register_description {
  margin-bottom: 50px;
}

.list_detail h5 {
  color: #5aac4e;
  font-size: 18px;
  padding-bottom: 6px;
}

.upcoming-event.owl-carousel .owl-item:nth-child(1),
.upcoming-event.owl-carousel .owl-item:nth-child(2),
.upcoming-event.owl-carousel .owl-item:nth-child(3),
.upcoming-event.owl-carousel .owl-item:nth-child(4) {
  transform: translateY(0%);
}
.upcoming-event .owl-nav button {
  position: absolute;
  top: -90px;
  right: 18%;
}

.upcoming-event .owl-nav button span {
  width: 30px;
  height: 45px;
  display: inline-flex;
  font-size: 75px;
  line-height: 0;
  justify-content: center;
  align-items: center;
  color: #a1a1a1;
  font-weight: 100;
}

.upcoming-event .owl-nav button.owl-prev span {
  margin-right: 60px;
}

.upcoming-event .owl-nav button.owl-prev.disabled span {
  color: #cbcbcb;
}
.upcoming_box img {
  max-height: 250px;
  object-fit: cover;
  width: 100%;
}
.webinar_page ul.navbar-nav.ml-auto a.nav-link {
  color: #fff;
}

.sel_cont_position {
  position: absolute;
  z-index: 1;
  top: 26%;
  writing-mode: 0;
  /* right: 0; */
  left: 0;
  margin: auto;
  right: 0;
}
.new_head_listdisplay a:last-child {
  display: none;
}
.help_main .row .col-sm-4 .help_img {
  text-align: center;
}
.help_main .row .col-sm-4 .help_img img {
  text-align: center;
  width: 70%;
}
.webinar_page .fixed ul.navbar-nav.ml-auto a.nav-link {
  color: #000;
}
.eventform {
  box-shadow: 0px 0px 20px #ccc;
}

.eventform.form_col form .banner_form_field {
  flex: inherit !important;
  width: 100% !important;
  max-width: 100% !important;
}
.eventform.form_col form {
  display: inherit;
}
.eventform.form_col input {
  border: 1px solid #ccc !important;
  background: #fff !important;
  height: 38px !important;
  border-radius: 2px !important;
}
.eventform.form_col textarea {
  border: 1px solid #ccc !important;
  background: #fff !important;
  height: 70px !important;
  border-radius: 2px !important;
}
.log_form2 {
  flex: 1;
  display: flex;
  align-items: center;
}
.sighejfh {
  font-size: 13px;
  text-align: center;
  padding-top: 15px;
  line-height: 18px;
}
.forgott {
  text-align: center;
  width: 100%;
  display: block;
  padding-top: 10px;
  font-weight: 500;
  font-family: "Lufga";
  font-size: 14px;
}
.marketplace_menu .nav-item:hover .dropdown-menu {
  display: block;
}

.marketplace_menu .nav-item .dropdown-menu {
  border: 0px;
  padding: 0px;
  box-shadow: 0px 4px 10px #ccc;
  top: 37px;
}
.marketplace_menu .nav-item .dropdown-menu .dropdown-item {
  font-family: Lufga;
  padding: 8px 22px;
}

.list_detail p {
  font-size: 15px;
  font-weight: 400;
  padding-top: 20px;
}
.ecommercepay_316 .navbar-expand-lg .navbar-nav .nav-link {
  color: #000;
}
.ecommer_retail {
  padding: 200px 0 100px;
}
.ecommer_retail_con h1 {
  text-align: center;
  font-size: 45px;
  font-weight: 600;
  color: #000;
  font-family: "Lufga";
  padding-bottom: 15px;
}
.ecommer_retail_con p {
  text-align: center;
  font-size: 18px;
  width: 70%;
  margin: auto;
}
.ecommer_retail_con {
  text-align: center;
}
.ecommer_retail_con a {
  padding: 10px 30px;
  margin-top: 20px;
}

.ban_img {
  padding-bottom: 120px;
}
.ban_img img {
  border-radius: 10px;
}
.leftglo_heading {
  padding-right: 29px;
}
.leftglo_heading h2 {
  font-weight: 600;
  color: #000;
  font-size: 34px;
}
.right_glonb_text {
}
.transforming_global {
  padding: 120px 0px;
  background: #efefef;
}
.transforming_global_textt img {
  border-radius: 15px;
  margin-top: 50px;
}
.pay_offers {
  padding: 90px 0px;
}
.head_cenyter_pay {
  text-align: center;
  padding-bottom: 40px;
}
.head_cenyter_pay h3 {
  font-size: 34px;
  font-weight: 600;
  color: #000;
}
.head_cenyter_pay h4 {
  padding-top: 23px;
  font-weight: 600;
  color: #000;
}

.ofer_pay_box {
  background: #f3f3f3;
  border: 1px solid #ccc;
  border-radius: 13px;
  padding: 20px;
  margin-bottom: 20px;
}
.ofer_pay_box img {
  width: 65px;
}
.ofer_pay_box p {
  font-size: 16px;
}
.ofer_pay_box h4 {
  font-size: 20px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  padding-top: 19px;
}

.ecommerce_tools {
  padding: 60px 54px 71px;
  border-radius: 30px;
  background: linear-gradient(
    to bottom,
    rgba(0, 39, 21, 1) 0%,
    rgba(0, 79, 30, 1) 100%
  );
  margin-top: 110px;
}
.ecommerce_tools h2 {
  font-weight: 600;
  color: #fff;
  font-size: 40px;
  padding-bottom: 20px;
}
.ecommerce_tools p {
  color: #fff;
  line-height: 28px;
  width: 80%;
}

.inventor_management {
  padding: 40px 0px 100px;
}
.inventory_boxx {
  box-shadow: 0px 0px 40px #e1e1e1;
  padding: 50px;
  border-radius: 30px;
}
.inventor_textt {
  padding-right: 40px; /* height: 100%; */
}
.inventor_textt h2 {
  font-weight: 600;
  font-size: 32px;
  padding-bottom: 20px;
  color: #000;
}
.inventor_textt p {
}
.inventor_form {
  text-align: center;
  width: 100%;
}
.inventor_form p {
  margin: 0px;
}
.inventor_form img {
  text-align: center;
  padding-left: 30px;
}

.inventory_boxx .row {
  align-content: center;
  justify-content: center;
}
.inventory_boxx .col-sm-6 {
  /* height: 100%; */
  display: flex;
  align-items: center;
}

.inventor_management2 {
  padding: 40px 0px 100px;
}
.inventory_boxx2 {
  box-shadow: 0px 0px 40px #e5e5e5;
  padding: 50px;
  border-radius: 30px;
}
.inventor_textt2 {
  padding-left: 40px; /* height: 100%; */
}
.inventor_textt2 h2 {
  font-weight: 600;
  font-size: 32px;
  padding-bottom: 20px;
  color: #000;
}
.inventor_textt2 p {
}
.inventor_form2 {
  text-align: center;
  width: 100%;
}
.inventor_form2 p {
  margin: 0px;
}
.inventor_form2 img {
  text-align: center;
  width: 100%;
  padding-right: 40px;
}

.inventory_boxx2 .row {
  align-content: center;
  justify-content: center;
}

.inventory_boxx2 .col-sm-6 {
  /* height: 100%; */
  display: flex;
  align-items: center;
}
.accecpt_paymentss {
  padding: 40px 0px 80px;
}
.accecpt_paymentss .head_cenyter_pay p {
  padding-top: 10px;
}
.accecpt_paymentss img {
  margin-top: 30px;
}

.afoordable_pricee {
  margin: 40px 0px;
  background: linear-gradient(to bottom, #28a745 0%, rgb(1 108 42) 100%);
  margin-top: 110px;
  padding: 70px 60px;
  border-radius: 30px;
}
.affordab_cont h3 {
  color: #fff;
  font-weight: 600;
  font-size: 37px;
}
.affordab_cont a {
  display: inline-block;
  padding: 9px 24px;
  font-size: 15px;
  font-family: "Lufga";
  color: #000;
  border-radius: 100px;
  background: #fff;
  margin-top: 26px;
}
.block-n2 {
  display: flex;
  /* align-items: center; */
  margin-bottom: 49px;
}
.block_text_img {
}
.block_text_img img {
  margin: 0px;
  width: 44px;
}
.block-n2__text {
  margin-left: 20px;
}
.block-n2__text h4 {
  font-size: 19px;
  color: #fff;
  margin: 0px;
}
.block-n2__text p {
  margin: 0px;
  color: #fff;
}

.block_mainn {
  padding-left: 60px;
}
.accept_payment {
  padding: 80px 0px;
  text-align: center;
  background: #212529;
}
.accept_main h2 {
  font-size: 36px;
  font-weight: 600;
  color: #fff;
  padding-bottom: 20px;
}
.accept_main p {
  color: #fff;
}
.accept_main a {
}

.digital_pay {
  padding: 221px 0px 210px;
  text-align: center;
  background: #c3f53c;
}
.digital_box h1 {
  font-family: "Lufga";
  color: #000;
  padding-bottom: 20px;
  font-size: 39px;
}
.digital_box a {
  color: #000;
  font-family: "Lufga";
  font-size: 18px;
  text-decoration: underline;
}

.paymerchant_box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: #28a745;
}
.img_mechtant {
  width: 50%;
}
.img_mechtant img {
  border-radius: 20px 0px 0px 20px;
}
.pay_merc_text {
  width: 50%;
  padding: 30px;
}
.pay_merc_text h2 {
  font-family: "Lufga";
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
}
.pay_merc_text p {
  font-size: 15px;
  line-height: 20px;
  color: #fff;
}
.pay_merc_text a {
  display: inline-block;
  font-family: "Lufga";
  font-weight: 600;
  text-decoration: underline;
  color: #fff;
}

.pay_merchantt {
  margin-top: -90px;
  margin-bottom: 100px;
}
.nav_tab_pay {
  margin-top: 60px;
}
.nav_tab_pay ul {
  background: #28a745;
  /* color: #fff; */
  display: inline-block;
  width: 100%;
  border-radius: 40px;
}
.nav_tab_pay li {
  width: 25%;
  float: left;
}
.nav_tab_pay li:first-child a {
  border: 0px;
}
.nav_tab_pay li a {
  width: 100%;
  text-align: center;
  display: inline-block;
  color: #fff;
  padding: 16px;
  font-family: "Lufga";
  border-left: 1px solid #fff;
}

.hassle_free_section2 {
  margin-top: 80px;
}

.hassle_free2 {
  /* min-height: 310px; */
  border-radius: 24px;
  box-shadow: rgba(104, 104, 104, 0.08) 0px 0px 24px 4px;
  background: rgb(255, 255, 255);
  padding: 50px 50px 69px;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 3px solid green;
}

.hassle_free2 h2 {
  font-size: 23px;
  color: #02701c;
  padding-bottom: 11px;
}
.payment_solution2 {
  padding: 80px 0;
}

.solution_box2 {
  text-align: center;
}

.hassle_free_section2 .col-lg-4 {
  display: flex;
}
.growth_opport {
  padding: 110px 0px;
}
.growth_opport .row {
  display: flex;
  align-items: center;
}

.growth_opport h3 {
  color: #000;
  font-weight: 600;
  padding-bottom: 21px;
  font-size: 30px;
}
.growth_opport p {
}

.text_growth {
  padding-right: 50px;
}
.text_growth a {
  font-family: Lufga;
  color: green;
  padding-top: 10px;
  display: inline-block;
  font-size: 18px;
  text-decoration: underline;
}

.growth_opport2 {
  padding: 110px 0px;
  background: #f1f1f1;
}
.growth_opport2 .row {
  display: flex;
  align-items: center;
}

.growth_opport2 h3 {
  color: #000;
  font-weight: 600;
  padding-bottom: 21px;
  font-size: 30px;
}
.growth_opport2 p {
}

.text_growth2 {
  padding-left: 40px;
}
.text_growth2 a {
  font-family: Lufga;
  color: green;
  padding-top: 10px;
  display: inline-block;
  font-size: 18px;
  text-decoration: underline;
}

.pay_316_homenew {
  padding: 150px 0;
  background: linear-gradient(to bottom, #28a745 0%, rgb(1 108 42) 100%);
}
.pay_home_contentnew {
  padding-right: 40px;
}
.pay_home_contentnew h1 {
  color: #fff;
  font-size: 44px;
  font-family: "Lufga";
  font-weight: 600;
  padding-bottom: 16px;
}

.pay_home_contentnew p {
  color: #fff;
  padding-bottom: 20px;
}
.pay_home_contentnew a {
  background: #000;
}
.pay_home_contentnew2 img {
  float: right;
}

.quick_payment23 {
  padding: 80px 0;
}

.quick_boxnew {
  padding-right: 40px;
  border-right: 1px solid #d5d5d5;
}
.quick_boxnew h2 {
  color: #5aac4e;
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 12px;
}
.internationall {
  padding: 90px 0px;
}
.internationall .head_cenyter_pay h3 {
  width: 60%;
  margin: auto;
}

.inventory_boxx .col-lg-6 {
  display: flex;
  align-items: center;
}
.inventory_boxx2 .col-lg-6 {
  display: flex;
  align-items: center;
}

.ecommercepay_316 .navbar-brand img {
  width: inherit;
}

.advertise_banner {
  background: #002715;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 200px 0px;
}
.advertise_banner_content ul li {
  color: #fff;
  margin-bottom: 7px;
}

.advertise_banner_content ul li i {
  width: 15px;
  height: 15px;
  background: #fff;
  color: #000;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  border-radius: 50%;
  margin-right: 10px;
}

.advertise_banner_content {
  padding: 0 15px;
}

.advertising_content {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
}

.advertising_content h2 {
  text-align: center;
  color: #000;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
}

.advertising_content .form_row {
  display: flex;
  margin-bottom: 30px;
}

.form_field {
  flex: 1;
  padding: 0 15px;
}

.form_field label {
  color: #000;
  font-weight: 500;
  font-family: "Lufga";
  margin: 0;
  font-size: 15px;
}

.form_field input {
  width: 100%;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding-left: 12px;
  font-family: "Lufga";
}

.form_field p {
  color: #606060;
  font-size: 13px;
}

.form_field select {
  width: 100%;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding-left: 15px;
}

.get_started_btn {
  text-align: center;
  margin-top: 50px;
}

.get_started_btn button {
  background: #5aac4e;
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Lufga";
  padding: 7px 20px;
  border-radius: 5px;
  width: 100%;
}
.get_started_btn a {
  background: #5aac4e;
  border: none;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  font-family: "Lufga";
  padding: 7px 20px;
  border-radius: 5px;
  width: 100%;
  display: block;
}
.partners_content:first-child {
  flex: 0 0 33%;
}

.partners_row {
  padding: 80px 0;
}

.partners_content {
  flex: 0 0 15%;
}

.partners_content img {
  max-width: 85%;
  display: block;
  margin-left: auto;
}
.foundation_content h2 {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  max-width: 75%;
  margin: 0 auto 35px;
  color: #000;
}

.foundation_content p {
  text-align: center;
  max-width: 75%;
  margin: 0 auto 35px;
}

.unlock_visibility h2 {
  color: #000;
}

.unlock_visibility a {
  color: #000;
  font-weight: 500;
  font-size: 18px;
  font-family: "Lufga";
}

.unlock_box img {
  display: block;
  margin: auto;
}
.pt-b-80 {
  padding: 80px 0;
}
.list_point {
  display: flex;
  grid-gap: 20px;
}

.icon_list_point i {
  font-size: 20px;
}

.list_point_content h5 {
  color: #000;
}

.list_point_content p {
  color: #000;
}
.comet_pixel a {
  color: #000;
  font-weight: 500;
  font-size: 18px;
  font-family: "Lufga";
}
.unlock_box h2 {
  color: #000;
  margin-bottom: 50px;
}
.pd-l-80 {
  padding-left: 80px;
}
.pd-r-80 {
  padding-right: 80px;
}
.pb-80 {
  padding-bottom: 80px;
}

.start-advertise .market_design_content h2 {
  color: #fff;
  font-weight: 500;
  font-family: Lufga;
  font-size: 40px;
}
.payment_slice {
  position: relative;
}
.podjk {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 240px;
  bottom: 70px;
}

.accesspayments {
  background: #eaeff2;
  padding: 100px 0px;
}
.accesspayments .row {
  align-items: c;
}
.acccecptt {
}
.acccecptt h3 {
  font-size: 25px;
  color: #000;
  font-weight: 600;
  padding-bottom: 10px;
}
.acccecptt p {
  font-size: 14px;
}
.acccecptt a {
  font-family: Lufga;
  color: green;
  padding-top: 10px;
  display: inline-block;
  font-size: 18px;
  text-decoration: underline;
  font-family: "Lufga";
  font-size: 18px;
  padding-top: 12px;
  display: inline-block;
}
.accepstep1 {
  text-align: center;
}
.accepstep1 img {
  border-radius: 39px;
}
.accepstep1 h3 {
  padding-top: 10px;
  font-weight: 600;
  color: #000;
  font-size: 19px;
}
.accepstep1 p {
}
.marketplaceee_textt .market_design {
  padding-bottom: 0px;
  padding-top: 130px;
}
.marketplaceee_textt .market_design img {
  width: 85%;
  float: right;
}
.marketplaceee_textt .market_design_content h2 {
  font-weight: 600;
}

.policy_tab_page .nav-pills .nav-link {
  border-radius: 0;
  background: #f9f9f9;
  color: #000;
  border-left: 2px solid #28a745;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  font-family: "Lufga";
  width: 100%;
  margin-bottom: 10px;
  border: none;
}

.policy_tab_page .nav-pills .nav-link:hover {
  background: #e9f6dc;
}
.vartical_scroll {
  max-height: 550px;
  flex-direction: row !important;
  overflow: auto;
}

.policy_tab_page .nav-pills .nav-link.active,
.policy_tab_page .nav-pills .show > .nav-link {
  background: #28a745;
  color: #fff;
}
.policy_tab_page .tab-pane p {
  font-size: 15px;
}

.policy_tab_page .tab-pane h3 {
  font-family: "Lufga";
  color: #000000;
  font-weight: 600;
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.policy_content_hare h2 {
  color: #000;
}

.policy_content_hare h3 {
  color: #000;
  font-size: 22px;
}

.policy_content_hare p {
  font-size: 15px;
}

.policy_content_hare {
  margin-bottom: 50px;
}
.policy_tab_page .tab-pane ul {
  padding-left: 40px;
  margin-bottom: 40px;
}
.complain_policy .tab-pane h3 {
  font-size: 24px;
}
.complain_policy .tab-pane h4 {
  font-family: "Lufga";
  color: #000000;
  font-weight: 600;
  font-size: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.policy_tab_page .tab-pane h2 {
  color: #000;
  font-weight: 600;
  font-size: 30px;
}
.policy_tab_page .tab-pane ul li {
  margin-bottom: 10px;
  font-family: "Lufga";
  font-size: 15px;
  color: #000;
  list-style: disc;
}
.upcoming_heading p {
  color: #000;
  text-overflow: ellipsis;
  /* overflow: hidden; */
  /* display: -webkit-box; */
  /* -webkit-line-clamp: 2; */
  /* -webkit-box-orient: vertical; */
  font-size: 14px;
  line-height: 20px;
}
.card_auto_content {
  overflow-y: auto;
  padding-bottom: 20px;
  height: 100%;
  max-height: 122px;
  padding-right: 5px;
  margin-top: 9px;
}
.slider_news {
  position: relative;
}

.fade-text {
  position: absolute;
  height: 20px;
  width: 100%;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.5),
    white
  );
}

/* width */
.card_auto_content::-webkit-scrollbar {
  width: 3px;
  background-color: rgba(112, 112, 112, 0.2);
}

/* Track */
.card_auto_content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.card_auto_content::-webkit-scrollbar-thumb {
  background: rgba(112, 112, 112, 0.7);
}

/* Handle on hover */
.card_auto_content::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.dateevent {
  font-size: 14px;
  letter-spacing: 2px;
  /* padding-top: 10px; */
  margin-bottom: 18px;
}

.eventform.form_col select {
  border: 1px solid #ccc !important;
  background: #fff !important;
  height: 38px !important;
  border-radius: 2px !important;
}

.social_webinar {
  margin-top: 33px;
}
.social_webinar ul {
}
.social_webinar li {
  display: inline-block;
}
.social_webinar li a {
  width: 40px;
  height: 40px;
  display: flex;
  background: #5aac4e;
  border-radius: 100px;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  margin-right: 7px;
  color: #fff;
}
.social_webinar p {
  color: #fff;
  margin-bottom: 4px;
}

.startup_footer .top_footer {
  background: #92d050;
  padding-bottom: 20px;
}
.footer_right h3 {
  color: #000;
  margin-bottom: 21px;
}
.footer_right .footerbutton {
  display: inline-block;
  margin-top: -9px;
}
.footer_right .footerbutton li {
  width: 49%;
  float: left;
  padding: 5px;
}
.footer_right .footerbutton li img {
}
.footer_right .social_media {
}
.soc_new_foot h4 {
  font-size: 17px;
  color: #000;
  padding-top: 20px;
  font-weight: 600;
  font-family: "Lufga";
}
.footer_right .social_media li {
}
.footer_right .social_media li a {
  background: #fff;
}
.startup_footer h3 {
  margin-bottom: 51px;
  color: #000;
  font-weight: 600;
  font-size: 17px;
  font-family: "Lufga";
}
.startup_footer .links ul li a {
  color: #000;
  font-size: 13px;
  line-height: 17px;
  font-family: "Lufga";
  margin-bottom: 17px;
  font-weight: 400;
}
.fot_logo_startups img {
  width: 164px;
  margin-bottom: 15px;
}
.fot_logo_startups h4 {
  color: #000;
  font-weight: 400;
  font-size: 14px;
  padding-bottom: 10px;
}
.footer_stratups p {
  color: #000;
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 6px;
}

.footer_stratups {
  padding-top: 60px;
}
.desk_hide_web_soci {
  display: none;
}
.footer_right {
  padding-right: 40px;
}

.useful_links {
  margin-bottom: 32px;
  color: #000;
  font-weight: 600;
  font-size: 17px;
}

.business_footer .top_footer {
  background: #92d050;
  padding-bottom: 19px;
  padding-top: 70px;
}

.business_footer h3 {
  margin-bottom: 34px;
  color: #000;
  font-weight: 600;
  font-size: 17px;
  font-family: "Lufga";
  text-align: left;
}
.business_footer .links ul li a {
  color: #000;
  font-size: 13px;
  line-height: 17px;
  font-family: "Lufga";
  margin-bottom: 21px;
  font-weight: 400;
}
.footer_business_img img {
  width: 150px;
}
.footer_business_img p {
  font-size: 14px;
  color: #000;
  padding-top: 11px;
  margin-top: 11px;
}
.subscripe_footer h4 {
  font-weight: 500;
  font-family: "Lufga";
  color: #000;
  font-size: 16px;
  padding-bottom: 7px;
  padding-top: 10px;
}
.subscripe_footer form {
  display: flex;
}
.subscripe_footer input {
  height: 46px;
  /* margin-right: 10px; */
  font-family: "Lufga";
  font-size: 14px;
  width: 100%;
}
.subscripe_footer button {
  border-radius: 5px;
  margin-left: 8px;
  font-size: 15px;
}

.subscripe_footer button:before {
  border-radius: 5px;
}
.businesbottom_footer {
  border-top: 1px solid #000;
  margin-top: 40px;
  padding-top: 16px;
}
.businesbottom_footer li {
  display: inline-block;
  font-family: "Lufga";
  color: #000;
  font-weight: 400;
  font-size: 13px;
  padding-right: 23px;
}
.businesbottom_footer li a {
  color: #000;
}
.businesbottom_footer li:first-child a {
  color: #000;
  text-decoration: underline;
}
.subscripe_footer form .form_input {
  width: 64%;
}

.fot_logo_startups h4 a {
  color: #000;
  text-decoration: underline;
}
.fot_logo_startups h4 a:hover {
  color: #000;
}

.news-card-three {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid #d5d5d5;
  display: flex;
  /* flex-wrap: wrap; */
  /* align-items: center; */
}
.news-card-three .news-card-img {
  width: 157px;
  height: 100%;
  /* border-radius: 11px; */
}
.news-card-three .news-card-info {
  /* width: calc(100% - 196px); */
  margin-left: 25px;
  width: 70%;
}
.news-card-three .news-card-info .news-cat {
  color: var(--secondaryColor);
  display: block;
}
.news-card-three .news-card-info h3 {
  font-size: 15px;
  line-height: 24px;
  margin: 0px 0 2px;
  color: #000;
}
.news-metainfo li {
  display: inline-block !important;
  margin-right: 17px;
  position: relative;
  padding-left: 22px;
  color: var(--optionalColor);
  /* font-size: 14px; */
  padding: 0px !important;
  margin-bottom: 0px !important;
  width: inherit !important;
}
.news-metainfo li i {
  position: absolute;
  top: 4px;
  left: 0;
  font-size: 14px;
  line-height: 0.7;
  color: var(--secondaryColor);
}
.news-card-info img {
  border-radius: 100px;
  width: 30px;
  height: 30px;
}

.news-metainfo li a {
  font-size: 14px !important;
}

.news-card-img img {
  height: 100%;
  border-radius: 7px;
  height: 125px;
  object-fit: cover;
}
.news-card-three .news-card-info h3 a {
  color: #000;
}
.desktop_hide_webinar {
  display: none !important;
}

.button_blog_get a {
  display: inline-block;
  padding: 10px 24px;
  font-size: 15px;
  font-family: "Lufga";
  color: #fff;
  border-radius: 100px;
  background: #5aac4e;
}

.wrapper {
  position: fixed;
  right: -370px;
  top: 120px;
  max-width: 610px;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  padding: 15px 25px 22px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  z-index: 99999;
  right: 0;
  left: 0;
  margin: auto;
}
.wrapper.show {
  /* right: 20px; */
}
.wrappe .title-box {
  display: flex;
  align-items: center;
  column-gap: 15px;
  color: #4070f4;
  margin-bottom: 15px;
}
.wrappe .title-box i {
  font-size: 32px;
}
.wrappe .title-box h3 {
  font-size: 24px;
  font-weight: 500;
}
.wrappe .info {
  margin-bottom: 15px;
}
.designpopprivace .info img {
  width: 50px;
}
.designpopprivace .info p {
  font-size: 14px;
  font-weight: 400;
  line-height: initial;
  padding-top: 10px;
  padding-right: 40px;
}

.wrappe .info p a {
  color: #5aac4e;
  text-decoration: none;
}
.wrappe .info p a:hover {
  text-decoration: underline;
}

.designpopprivace .buttons button {
  padding: 7px 18px;
  margin-right: 11px;
  border: 1px solid #5aac4e;
}
.designpopprivace .buttons button:first-child {
  background: #fff;
  color: #5aac4e;
}

#modalpay .modal-content {
  position: initial;
  top: 440px;
  left: 50%;
  transform: inherit;
  background-color: white;
  padding: 0px;
  width: inherit;
  border-radius: 0px;
}

#modalpay .modal-body {
  padding: 0px;
}
#modalpay button.close {
  position: absolute;
  z-index: 1;
  background: #000;
  color: #fff;
  opacity: inherit;
  right: 10px;
  border-radius: 100px;
  height: 35px;
  width: 35px;
  top: 10px;
  font-weight: 400;
  font-size: 37px;
}
.text_pop_316 {
  background: #f4cf65;
  padding: 30px;
}
.text_pop_316 .heady h3 {
  color: #000;
  font-weight: 600;
  font-size: 24px;
}
.text_pop_316 .heady p {
  padding-bottom: 24px;
  font-size: 15px;
  line-height: initial;
}
.text_pop_316 .accepstep1 img {
  border-radius: 21px;
}
.text_pop_316 .accepstep1 p:last-child {
  font-size: 14px;
  text-align: left;
  line-height: initial;
}
#modalpay.modal-open .modal {
  padding-left: 0px !important;
}
#cookieNotice {
  border-radius: 0;
  position: fixed;
  bottom: 0px;
  top: auto;
  left: 0;
  right: 0;
  /* background: #000; */
  z-index: 99999;
  width: 100%;
  padding: 15px 0px;
  margin: auto;
  background: #fff;
  box-shadow: 0px 0px 28px #aaa;
}
#cookieNotice .row {
  display: flex;
  justify-content: center;
  align-content: center;
}
#cookieNotice .msg-wrap h3 {
  font-size: 16px;
  color: #000;
}
#cookieNotice .msg-wrap p {
  font-size: 14px;
  line-height: initial;
}
#cookieNotice .logo_wrap {
  padding-top: 18px;
}
#cookieNotice .button_wrap {
}
#cookieNotice .button_wrap button {
  display: inline-block;
  padding: 4px 24px;
  font-size: 15px;
  font-family: "Lufga";
  color: #fff;
  border-radius: 100px;
  background: #5aac4e;
  border: 0px;
  width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 12px;
}
.thankyou_informa {
  padding: 23px 0px;
  padding-top: 40px;
}
.thankyou_informa h2 {
  font-family: "Lufga";
  font-weight: 600;
  color: #000;
  font-size: 24px;
  padding-bottom: 24px;
  text-align: center;
}
.mjk .iti {
  display: block;
}

.form_column_form_popup .newattach input {
  border: 1px solid #ccc;
  padding: 7px !important;
  font-family: "Lufga" !important;
  font-size: 14px !important;
}
.submit_loadinggg {
  display: flex;
}
.submit_loadinggg img {
  width: 34px;
  margin: 6px;
}

.thankyouevent {
  padding: 180px 0px;
  text-align: center;
}
.thankyouevent h1 {
  font-family: "Lufga";
  font-weight: 700;
  padding-bottom: 17px;
  color: #000;
}
.thankyouevent p {
  font-size: 21px;
  line-height: inherit;
  color: #4d4d4d;
  font-weight: 300;
}
.thankyouevent .row {
  justify-content: center;
}
.thankyouevent span {
  font-family: "Lufga";
  font-weight: 500;
  padding-bottom: 20px;
  display: block;
  color: #28a745;
  text-transform: uppercase;
}
.thankyouevent a {
  font-family: "Lufga";
  color: #5aac4e;
  font-size: 17px;
  font-weight: 500;
  margin-top: 10px;
  display: inline-block;
}

form .error {
  border-bottom: 1px solid red !important;
}
.ticket_form {
  border: 1px solid red !important;
}

@media screen and (min-width: 1300px) {
  .startup_footer .top_footer .container {
    max-width: 90%;
  }
}

.footer_group h4 a {
  text-decoration: underline;
}

.swiper {
  user-select: none;
  box-sizing: border-box;
  overflow: hidden;
  width: 100%;

  height: auto;

  padding: 0px 0px;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  box-sizing: border-box;
}

.swiper-slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.swiper-slide-c7ca {
  border-radius: 20px;
}
.swiper-slide-content-bce3 {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 48px 0px;
  gap: 0px;
}
.swiper-slide-image-61a8 {
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
  width: 100%;
  border-radius: 1em;
}
.swiper-slide-93ce {
  border-radius: 20px;
}

.swiper-slide-content-1a7e {
  padding: 0px 0px;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: center;
}
.swiper-slide-image-3065 {
  max-width: 100%;
  min-width: 0;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
}

.home_title h2 {
  text-transform: uppercase;
  text-align: center;
  font-size: 50px;
  font-weight: 700;
  color: #000;
  font-family: "Lufga";
  padding-bottom: 6px;
}
.home_title p {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

@media screen and (max-width: 900px) {
  .home_title h2 {
    text-align: left;
    font-size: 35px;
  }
  .home_title p {
    text-align: left;
    max-width: 100%;
    margin: auto;
  }
  .home_title .fine-print {
    text-align: left;
  }
}

@media screen and (max-width: 460px) {
  .home_title h2 {
    text-align: left;
    font-size: 28px;
  }
  .home_title p {
    text-align: left;
    max-width: 100%;
    margin: auto;
  }
  .home_title .fine-print {
    text-align: left;
  }
}

#tabs-1 {
  background-size: cover;
  background-position: bottom;
  /* Add transition properties for a smooth change */
  transition: background-image 0.5s ease-in-out;
}

#tabs-1 .container {
  padding: 100px 0px 90px 0px;
}

#tabs-1 h2 {
  font-family: "Lufga";
  color: #ffffff;
  font-size: 45px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  padding-bottom: 30px;
}

#tabs-1 p {
  font-family: "Lufga";
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  max-width: 750px;
  margin: auto;
}

#tabs-1 .switcher-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

#tabs-1 .switcher-container button {
  white-space: nowrap;
}

#tabs-1 #tab-button {
  border: 2px solid #ffffff;
  border-radius: 30px;
  padding: 7px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-family: "Lufga";
  font-style: normal;
  font-weight: 400;
  /* font-size: 20px; */
  background-color: white;
  color: #000000;
  margin: 20px auto;
}

@media screen and (max-width: 768px) {
  #tabs-1 h2 {
    font-size: 30px;
    padding: 0px 15px;
    text-align: left;
  }
  #tabs-1 p {
    text-align: left;
    padding: 15px;
  }
  #tabs-1 .switcher-container {
    display: flex;
    justify-content: center;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 20px;
  }
  #tabs-1 #tab-button {
    margin: 20px 15px;
  }
}

@media screen and (max-width: 468px) {
  #tabs-1 h2 {
    font-size: 25px;
    padding: 10px 15px;
  }
  #tabs-1 p {
    font-size: 16px;
    padding: 0px 15px;
  }
  #tabs-1 .switcher-container {
    margin: 5px 15px;
    box-sizing: border-box;
    max-width: calc(100% - 30px);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  #tabs-1 .container {
    padding: 60px 0px 50px 0px;
  }
}
#tabs-1 .tab1-card {
  max-width: 280px;
  height: 380px;
  background-color: rgba(0, 0, 0, 0.15);
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 40px;
  border: solid 2px white;
  border-radius: 1em;
  padding: 1.1em;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.switcher-container button {
  border: solid 2px white;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(7px);
  border-radius: 30px;
  padding: 7px 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: hand;
  font-family: "Lufga";
  color: white;
  font-weight: 400;
  font-size: 1em;
}

@media screen and (max-width: 414px) {
  #tabs-1 .tab1-card {
    max-width: 270px;
    height: 360px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}

.switcher-container button:hover {
  background-color: rgba(255 255 255 / 60%);
  color: #000000;
}
.switcher-container button.selected {
  background-color: white;
  color: #000000;
}

#split-bill .split-bill {
  background-image: url("../images/split-bill/bg.png");
  background-size: cover;
  background-position: center;
  border-radius: 2em;
  margin: 100px auto;
  padding: 4em;
}

#split-bill-2 .split-bill-2 {
  background-color: #fafafa;
  border-radius: 2em;
  margin: 100px auto;
  padding: 4em;
}

.split-bill .text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.split-bill-2 .text-section,
.text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

#split-bill h3,
#split-bill h2,
#split-bill p {
  color: white;
}

#split-bill-2 h3,
#split-bill-2 h2,
#split-bill-2 p {
  color: #0e3323;
}

@media screen and (min-width: 992px) {
  #split-bill h2 {
    font-family: "Lufga";
    font-weight: 700;
    font-size: 40px;
    max-width: 90%;
  }
  #split-bill p {
    max-width: 90%;
  }
  #split-bill-2 h2 {
    font-family: "Lufga";
    font-weight: 700;
    font-size: 40px;
  }
}

.globe-bg {
  background-image: url("../images/3d-rendering-earth-map 2.png");
  background-position: center center;
  background-size: 60%;
  background-repeat: no-repeat;
}

@media screen and (max-width: 414px) {
  #split-bill h2 {
    font-family: "Lufga";
    font-weight: 700;
    font-size: 28px;
    /* max-width: 90%; */
  }
  #split-bill h3 {
    font-size: 23px;
  }
  #split-bill-2 h2 {
    font-family: "Lufga";
    font-weight: 700;
    font-size: 28px;
    /* max-width: 90%; */
  }
  #split-bill-2 .split-bill-2,
  #split-bill .split-bill {
    background-color: #fafafa;
    border-radius: 2em;
    margin: 80px 10px;
    max-width: calc(100% - 20px);
    padding: 1.8em;
  }
  #split-bill-2 h3 {
    font-size: 23px;
  }
}

@media (max-width: 992px) {
  .order-lg-2 {
    flex-direction: column-reverse; /* Change the flex direction at the large breakpoint */
  }
}

.split-bill-buttons,
.split-bill-buttons-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.split-bill-buttons button {
  border-radius: 40px;
  padding: 7px 25px;
  background-color: transparent;
  color: white;
  font-family: "Lufga";
  border: 2px solid white;
}

.split-bill-buttons-2 button {
  border-radius: 40px;
  padding: 7px 25px;
  background-color: transparent;
  color: #0e3323;
  font-family: "Lufga";
  border: 2px solid #0e3323;
}
.split-bill-buttons button.active,
.split-bill-buttons-2 button.active {
  border-radius: 40px;
  padding: 7px 25px;
  background-color: #c3f53c;
  color: black;
  font-family: "Lufga";
  border: none;
}

@media screen and (max-width: 700px) {
  #split-bill .split-bill {
    padding: 1.8em;
  }
}

#split-bill-row {
  min-height: 600px;
}

.new-text-color {
  color: var(--new-text-color);
}

.new-light-bg {
  background-color: var(--new-light-bg);
}

.rounded-container {
  border-radius: 2em;
  padding: 4em;
  margin: 100px auto;
}

.home-h2 {
  font-family: "Lufga";
  font-weight: 700;
  font-size: 40px;
}

.uppercase {
  text-transform: uppercase;
}

.bg-light-green {
  background-color: var(--new-light-green);
  color: #173301;
  text-align: center;
  padding: 4em 0px;
}
.last-green-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.last-green-container p,
.center-section-text {
  max-width: max(60%, 500px);
  margin: auto;
}

.green-section-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
}
.green-section-buttons button {
  border-radius: 40px;
  padding: 7px 25px;
  background-color: #173301;
  color: white;
  font-family: "Lufga";
  border: white solid 2px;
}
.green-section-buttons button.white {
  background-color: white;
  color: #173301;
}

p.smaller {
  font-size: 0.9em;
  margin-top: -14px;
}

.mobile-g-50 {
  gap: 50px;
}

.safety-first {
  text-align: center;
}

.centralizeflex {
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 992px) {
  .home-h2 {
    font-family: "Lufga";
    font-weight: 700;
    font-size: 32px;
  }
  .rounded-container {
    border-radius: 2em;
    padding: 2.5em;
    margin: 80px auto;
  }
}

@media screen and (max-width: 414px) {
  .home-h2 {
    font-family: "Lufga";
    font-weight: 700;
    font-size: 28px;
  }
  .rounded-container {
    border-radius: 2em;
    padding: 1.8em;
    margin: 20px 5px;
    max-width: calc(100% - 10px);
  }
  .bg-light-green {
    padding: 2em 0;
    text-align: left;
  }
  .last-green-container {
    padding: 15px;
  }
  .green-section-buttons {
    justify-content: flex-start;
  }
  .safety-first {
    text-align: left;
  }
  .centralizeflex {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .swiper-slide-content-9c86 {
    padding: 0px 0px 40px 0px;
    flex-direction: column;
    gap: 0px;
    align-items: center;
    justify-content: center;
  }
  #split-bill-row {
    gap: 50px;
  }
  .mobile-g-50 {
    gap: 50px;
  }
}

.swiper-slide-content-9c86 {
  padding: 0px 0px 40px 0px;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: center;
}
.swiper-slide-image-3065 {
  max-width: 100%;
  min-width: 0;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: 1em;
}

@media (min-width: 768px) {
  .swiper {
    width: 100%;

    height: 100%;

    padding: 0px 0px;
  }

  .swiper-slide {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1024px) {
  .swiper {
    width: 100%;

    height: 100%;

    padding: 0px 0px;
  }

  .swiper-slide {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1280px) {
  .swiper {
    width: 100%;

    height: 100%;

    padding: 0px 0px;
  }

  .swiper-slide {
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 1920px) {
  .swiper {
    width: 100%;

    height: 100%;

    padding: 0px 0px;
  }

  .swiper-slide {
    width: 100%;
    height: 100%;
  }
}

.mySwiper4 {
  --swiper-pagination-color: rgba(49, 50, 51, 1);
  --swiper-pagination-bullet-inactive-color: rgba(49, 50, 51, 1);
}
.swiper-slide-content-7318 {
  padding: 48px 0px;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: center;
}
.swiper-slide-text-a934 {
  color: rgba(255, 255, 255, 1);
  text-align: left;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 400;
  position: absolute;
  top: 69px;
  left: 30px;
  right: 30px;
}
.swiper-slide-image-3065 {
  max-width: 100%;
  min-width: 0;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
}
.swiper-slide-content-9c86 {
  position: relative;
}
.swiper-slide-content-9c86 img.swipergif {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
}

header .dark-logo {
  display: block;
}

.white-logo {
  display: none;
}

header.fix_style .dark-logo {
  display: none;
}

header.fix_style .white-logo {
  display: block;
}
