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

[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;
}

/* ------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;
}

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: 1350px;
  }
}

/* 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: #fff;
  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: 600;
  color: #fff;
  font-size: 16.5px;
  font-family: "Lufga", sans-serif;
  text-transform: uppercase;
}

.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: 140px;
}

.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: 220px;
  position: relative;
  padding-bottom: 50px;
  background: #002715;
}

.banner_section .container {
  position: relative;
}

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

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

.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: c;
  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: #000;
}

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

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

/* 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;
}

/* 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: #262626;
  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: block;
  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;
}

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: #0e0e0e;
}

/* footer heading and text colors variable */
footer h2,
footer h3,
footer p,
footer a {
  color: var(--text-white);
}

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;
}

.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 ; */
  /* background-color: #000; */
  font-size: 15px;
  /* padding: 12px 25px; */
  /* border-radius: 100px; */
  display: inline-block;
  /* margin-top: 20px; */
  position: relative;
  font-family: "Lufga", sans-serif;

  color: #ffffff !important;
  background-color: #000000;
  border-radius: 100px;
  border: 2px solid transparent;
  padding: 8px 25px;
  transition-duration: 0.5s;
  margin-top: 20px;
}
.business316 .banner_section a:hover {
  color: #0e3323 !important;
  border: #0e3323 solid 2px;
  background-color: transparent;
  transition-duration: 0.5s;
}

.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; */

  color: #ffffff;
  background-color: #000000;
  border-radius: 100px;
  border: 2px solid transparent;
  padding: 8px 25px;
  transition-duration: 0.5s;
  margin-top: 20px;
}

.ready_content a:hover {
  color: #0e3323;
  border: #0e3323 solid 2px;
  background-color: transparent;
  transition-duration: 0.5s;
}

.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;
  font-size: 15px;
}
.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: "Lufga";
  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: "Lufga";
  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: #5aac4e;
  margin-left: 11px;
}
.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 {
  padding-top: 120px;
  position: relative;
  padding-bottom: 120px;
  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: 600;
  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: 150px 0;
}
.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: #c3f53c;
  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: 700;
  margin-bottom: 30px;
  color: #000;
}

.marketplace_sell_content p {
  color: #000;
}

.banners_btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 50px;
}

.banners_btn .started_btn {
  flex: 0 0 40%;
  max-width: 40%;
}

.banners_btn .started_btn span {
  max-width: 150px;
  display: inline-block;
  font-size: 12px;
  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;
}
/*=========================================================================     28-04-2023       ==============================================================*/

.faqqq .col-sm-6 {
  display: flex;
}

.pricin_boxx_con p {
  font-size: 15px;
}

/* 5/6/23 */

.want-ship-fbox {
  background: #fff;
  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);
}

.want-ship-fbox h3 {
  font-family: "Lufga";
  font-size: 25px;
  font-weight: 700;
  color: #000;
  padding-bottom: 11px;
  margin-bottom: 20px;
}

.country-name a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.75rem;
  padding: 26px 30px;
  text-decoration: none;
  transition: all 0.45s;
  box-shadow: 1px 8px 15px -13px rgba(0, 0, 0, 0.13);
  margin-bottom: 18px;
}

.country-p {
  display: flex;
}

.country-p p.Flag-p {
  margin-right: 1rem;
  font-size: 22px;
  font-weight: 500;
}

.country-p p.contnt-p {
  font-size: 16px;
  line-height: 1.5rem;
  font-weight: 500;
}

.country-p p {
  margin-bottom: 0;
}

.county-arw i.fa.fa-arrow-right {
  color: #4cc93a;
}

.my-country-lited {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 25px;
}

.my-country-lited a {
  color: #4cc93a;
  font-weight: 600;
  font-family: "Lufga";
}

.my-country-lited a i {
  margin-left: 10px;
}

.with-bigblue h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
  font-family: "Lufga";
}
.bigblue-three {
  display: flex;
  margin-bottom: 10px;
}
.bigblue-icon img {
  width: 17px;
  margin-right: 10px;
}

.bigblue-cont h5 {
  font-size: 18px;
  font-weight: 600;
  font-family: "Lufga";
}
.bigblue-cont {
  margin-top: 4px;
  width: 100%;
}
.bigblue-cont p {
  font-size: 16px;
}
.form-cont-cntr {
  /* align-items: center; */
}

.lets_talk_page .with-bigblue {
  padding-right: 110px;
}

.three-support-b {
  padding: 60px 0px 110px;
}

.spoort-boxes {
  background: #5aac4e17;
  padding: 25px 30px;
  border-radius: 20px;
}

.suport-boxes-haeding {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.suport-boxes-haeding i {
  margin-right: 10px;
  color: #5aac4e;
  font-size: 25px;
}
.suport-boxes-haeding h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 0;
  font-family: "Lufga";
}

.spoort-boxes a {
  color: #4cc93a;
  font-weight: 600;
  margin-top: 16px;
  display: block;
  font-family: "Lufga";
}

.spoort-boxes a i {
  margin-left: 10px;
}

.trusted-branding-logo ul li img {
  width: 220px;
  background: #fff;
  padding: 8px;
}

.trusted-branding-logo ul li {
  width: 25%;
  text-align: center;
}
.trusted-branding-logo ul {
  /* display: flex; */
  /* flex-wrap: wrap; */
  width: 100%;
  margin: auto;
  text-align: center;
}
.trusted-brand-heading h2 {
  font-size: 36px;
  font-family: "Lufga";
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 51px;
}

.trusted-branding-logo ul li {
  width: 28%;
  text-align: center;
  margin-bottom: 35px;
  display: inline-block;
  align-items: center;
  justify-content: center;
}

.trusted-leading-brand {
  padding-bottom: 100px;
  margin-top: 20px;
}

.contct-main-h h2 {
  font-family: "Lufga";
}

.business_footer .top_footer {
  background: #92d050;
  padding-bottom: 19px;
  padding-top: 70px;
}

.business_footer h3 {
  margin-bottom: 51px;
  color: #000;
  font-weight: 600;
  font-size: 17px;
  font-family: "Lufga";
}
.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: 70px;
  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;
}
.subscripe_footer form .form_input {
  width: 64%;
}
.footer_group-sec ul li a.group_co {
  text-decoration: underline;
}

.lets_talk .with-bigblue h4 {
  font-size: 24px;
  color: #000;
}
.lets_talk .bigblue-cont h5 {
  font-size: 18px;
  color: #000;
}

.join_partner {
  position: relative;
}

.gating_started_box {
  position: absolute;
  top: 35%;
  width: 440px;
  background: #fff;
  padding: 20px;
  border-bottom: 5px solid #f6d167;
}

.gating_started_box h2 {
  color: #000;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}

.gating_started_box h3 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.gating_started_box p {
  font-size: 14px;
  color: #000;
  line-height: 24px;
}
.start_tab_pane {
  padding: 80px 0;
}

.sidebar_tab_pane .nav-link {
  border: none;
  border-bottom: 1px solid #000;
  text-align: left;
  font-size: 16px;
  padding: 10px 0px;
  font-family: "Lufga";
  color: #000;
  border-radius: 0;
  background-color: initial;
}

.sidebar_tab_pane .nav-link.active {
  background-color: initial;
  color: #5aac4e;
}
.tab_pane_content h2 {
  color: #000;
  margin-bottom: 20px;
  font-size: 24px;
}

.tab_pane_content ul li {
  margin-bottom: 15px;
  display: flex;
  font-family: "Lufga";
  color: #000;
}

.tab_pane_content ul li i {
  margin-right: 10px;
  color: #5aac4e;
  margin-top: 6px;
}

.hightlight_text h3 {
  background: #5aac4e;
  color: #fff;
  padding: 15px;
  border-radius: 4px;
  margin: 0;
}

.center_form {
  padding: 30px 30px 1px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0px 0px 50px rgba(0 0 0 / 10%);
}
.form_field_input {
  margin-bottom: 20px;
  padding: 0 10px;
}

.form_field_input label {
  font-family: "Lufga";
  color: #000;
  font-size: 14px;
  font-weight: 500;
}

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

.form_flex_row .form_field_input {
  flex: 1;
  padding: 0 10px;
}
.center_form button {
  font-size: 18px;
  width: 150px;
  margin: 30px auto;
  display: block;
}
.form_field_input input::placeholder {
  font-family: "Lufga";
  color: #ccc;
}

.form_field_input input {
  height: 44px;
  border: 1px solid #ccc;
  /* color: #fff; */
  padding-left: 15px !important;
  font-weight: 500;
}
.form_field_input input:focus {
  outline: none;
}
.tab_pane_container {
  background: #f5f5f5;
  padding: 30px;
}
.start_form_section {
  background: linear-gradient(to bottom, #d9ffe1 1%, #ffffff 100%);
  padding-top: 100px;
}
.join_partner img {
  width: 100%;
}
.join_partner_page .navbar-expand-lg .navbar-nav .nav-link {
  color: #fff;
}
.flag_container {
  background: whitesmoke;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.flag_box {
  flex: 1;
  text-align: center;
  border: 1px solid #000;
  align-self: stretch;
  padding: 20px;
  transition: 400ms;
}

.flag_container .flag_box:nth-child(1),
.flag_container .flag_box:nth-child(2) {
  border-right: none;
}
.flag_box span {
  font-family: "Lufga";
  margin-left: 10px;
}

.flag_box:hover {
  background: #375623;
}

.flag_box:hover span {
  color: #fff;
}
.costtt_pri {
  margin-bottom: 40px;
}
.lets_talk_page .costtt_pri {
  padding-right: 110px;
  margin-top: 46px;
}
.costtt_pri h3 {
  font-size: 23px;
  color: #000;
  font-weight: 700;
  margin-bottom: 27px;
  max-width: 470px;
}
.costtt_pri p {
  font-size: 16px;
}
.filfiment_cost {
  padding-bottom: 80px;
}
.spoort-boxes p {
  font-size: 15px;
}
.filfiment_cost_cont img {
  width: 52px;
  margin-bottom: 17px;
}
.filfiment_cost_cont h2 {
  font-weight: 600;
  color: #000;
  font-size: 28px;
  padding-bottom: 10px;
}
.filfiment_cost_cont p {
  font-size: 16px;
}
.pricing-tablebuss .table > thead > tr > th {
  background: #203764;
  color: #fff;
  font-family: "Lufga";
  text-transform: uppercase;
  font-weight: 500;
}

.pricing-tablebuss .table tr td {
  font-family: "Lufga";
  font-weight: 400;
  font-size: 14px;
}
.pricing-tablebuss .table tr td:first-child {
  font-weight: 600;
  font-size: 15px;
}

.pricing-tablebuss .table {
  border: 1px solid #ddd;
}

.pricing-tablebuss .table-striped tbody tr:nth-of-type(odd) {
  background-color: #eeffeb;
}

.pricing_cont_form select {
  width: 100%;
  padding: 5px;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #ccc;
  height: 44px;
  padding-left: 15px !important;
}
.pricing_cont_form {
  background: #fff;
  padding: 30px 20px;
  box-shadow: 0px 0px 30px #d5d5d5;
}
.lets_talk_page .pricing_cont_form {
  border: 1px solid #e1e1e1;
  box-shadow: 20px 20px 0px #5aac4e;
  padding: 30px 20px 250px;
}
.check_box_formm .form-check {
  margin-bottom: 9px;
}
.check_box_formm .form-check-input {
  margin-left: -21px;
  top: 3px;
}
.check_box_formm .form-check-label {
  font-family: "Lufga";
  font-weight: 400;
  color: #000;
  font-size: 15px;
  padding-left: 25px;
}

.check_box_formm p {
  font-size: 15px;
  padding-left: 15px;
  padding-top: 14px;
}

.pricing_cont_form button {
  margin-left: 13px;
  padding: 8px 30px;
  font-size: 16px;
  margin-top: 20px;
}
.pricing_cont_form .form_field_input label {
  text-transform: uppercase;
}
.filfiment_cost_cont a {
  font-family: "Lufga";
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  margin-top: 27px;
  padding: 10px 27px;
}

.trusted-leading-brand {
  padding-bottom: 50px;
}

.lets_talk_page .form_field_input input,
.lets_talk_page .form_field_input select {
  border: none;
  border-bottom: 1px solid #5aac4e;
  border-radius: 0;
  padding: 0 !important;
  height: 55px;
  width: 100%;
}
.iti--separate-dial-code .iti__selected-flag {
  background-color: initial !important;
}

.lets_talk_page .form_field_input input::placeholder {
  font-weight: 100;
  color: #ababab;
}
.lets_talk_page .check_box_formm .form-check-input {
  margin-left: -27px;
  top: 1px;
  width: 18px;
  height: 18px;
}
.lets_talk_page .form_field_input label span {
  color: #f00;
}
.lets_talk_page .filfiment_cost_cont {
  padding-right: 65px;
}
.lets_talk_page .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255 255 255);
}
.lets_talk_page .pricing-tablebuss .table-striped tbody tr:nth-of-type(even) {
  background-color: #eeffeb;
}
.lets_talk_page .pricing-tablebuss .table tr td {
  padding: 22px 10px;
}
.pricing-tablebuss .table tr td:last-child {
  width: 400px;
}
.grow_business {
  padding: 50px 0 150px 0;
}

.brand_business {
  background: #5aac4e;
  padding: 30px;
}

.brand_business img {
  max-width: 180px;
  display: block;
  margin: 0 auto 20px;
}

.brand_business h3 {
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
}

.grow_business h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #000;
}
.lets_talk_page .pricing_cont_form button.btn.puprple_btn {
  margin-top: 50px;
}

form .error {
  border-bottom: 1px solid red !important;
}
