/*
Version: 1.0
Author: Symlink Technology
Author URI: https://www.symlinktech.com/.
*/

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

:root {
  --primaryColor: #ed9121;
  --bodyBg: #fff;
  --txtColor: #191919;
  --subTextColor: #6a6a6c;
  --shades01: #ffffff;
  --borderColor: #be71d2;
  --veiwWidth: calc(100vw - 17px);
  --padding: calc(var(--veiwWidth) / 2 - 785px);
  --background: #7ac145;
}

/* ********|| INITIALIZATION STARTS ||******** */
body,
html {
  width: 100%;
  line-height: 18px;
  margin: 0 auto !important;
  padding: 0 !important;
  font-family: "DM Sans", system-ui;
  font-weight: 300;
  -webkit-font-smoothing: subpixel-antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  font-size: 14px;
  color: var(--color01);
  background: var(--bodyBg);
  position: relative;
  z-index: 0;
}

*:focus {
  outline: none !important;
  outline-offset: none !important;
  outline-offset: 0 !important;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:focus {
  outline: none;
  text-decoration: none;
}
input:focus,
label:focus {
  outline: none !important;
  outline-offset: none !important;
  outline-offset: 0 !important;
}
/* ********|| INITIALIZATION ENDS ||******** */

/* ********|| PSEUDO ELEMENTS STARTS ||******** */
::selection {
  background-color: var(--primaryColor);
  color: #fff;
}
::-moz-selection {
  background-color: var(--primaryColor);
  color: #fff;
}
::-webkit-selection {
  background-color: var(--primaryColor);
  color: #fff;
}

:-webkit-focus {
  outline: none !important;
}
:-moz-focus {
  outline: none !important;
}
:focus {
  outline: none !important;
}

select:-webkit-focusring {
  color: var(--primaryColor) !important;
  text-shadow: 0 0 0 var(--textMedColor);
}
select:-moz-focusring {
  color: var(--primaryColor) !important;
  text-shadow: 0 0 0 var(--textMedColor);
}
select:focusring {
  color: var(--primaryColor) !important;
  text-shadow: 0 0 0 var(--textMedColor);
}

::input-placeholder {
  color: var(--textColor) !important;
}
::-moz-input-placeholder {
  color: var(--textColor) !important;
}
::-webkit-input-placeholder {
  color: var(--textColor) !important;
}

/*::-webkit-scrollbar-track{	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.1);box-shadow: inset 0 0 6px rgba(0,0,0,0.1);background-color: var(--textMedColor);}
::-webkit-scrollbar{width: 5px;height: 5px;background-color: var(--textMedColor);}
::-webkit-scrollbar-thumb{background-color: var(--secondaryColorAltLight);}*/
/* ********|| PSEUDO ELEMENTS ENDS ||******** */
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* ********|| ADJUSTMENT CLASSES STARTS ||******** */
*,
::after,
::before {
  box-sizing: border-box;
}
a {
  color: var(--bodyBg);
  transition: all 0.3s ease;
}
a:hover,
a:focus {
  color: #333;
}
p {
  margin: 0 0 10px;
}
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid var(--c4dee4);
}

.required:after {
  content: "*";
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  position: absolute;
  margin: 0 0 0 3px;
}
.separator_dashed {
  border-bottom: var(--textMedColor) 1px dashed;
}
.separator_dotted {
  border-bottom: var(--textMedColor) 1px dotted;
}
.separator_solid {
  border-bottom: var(--textMedColor) 1px solid;
}
/* ********|| ADJUSTMENT CLASSES ENDS ||******** */

section {
  position: relative;
}
.form-group {
  position: relative;
  margin: 0 0 20px;
}
.control-label {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 2px;
  color: #212121;
  display: block;
}

.form-control {
  border-radius: 4px;
  box-shadow: none;
  border: 1px solid #ddd;
  color: var(--textColor);
  background: #fff;
  min-width: 50px;
  min-height: 38px;
  width: 100%;
  padding: 6px 12px;
  font-family: inherit;
  font-size: 14px;
}
.form-control:focus {
  border-color: var(--primaryColor);
  box-shadow: none;
}
.form-control::-webkit-input-placeholder {
  color: var(--textColor) !important;
}
.form-control:-moz-placeholder {
  color: var(--textColor) !important;
  opacity: 1 !important;
}
.form-control::-moz-placeholder {
  color: var(--textColor) !important;
  opacity: 1 !important;
}
.form-control:-ms-input-placeholder {
  color: var(--textColor) !important;
}
.form-control::-ms-input-placeholder {
  color: var(--textColor) !important;
}
textarea.form-control {
  resize: none;
  min-height: 100px;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  background-color: #fff;
  opacity: 0.7;
  cursor: not-allowed;
}

.custom-checkbox {
  position: relative;
  padding-left: 24px;
  margin: 3px 0;
  display: inline-block;
}
.custom-checkbox .custom-checkbox-input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.custom-checkbox .custom-checkbox-label {
  position: relative;
  margin: 0;
  line-height: 16px;
  font-size: 14px;
}
.custom-checkbox .custom-checkbox-label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ddd;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  border-radius: 2px;
}
.custom-checkbox .custom-checkbox-label:after {
  content: "\f00c";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  width: 16px;
  height: 16px;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 10px;
  display: none;
  color: #fff;
  text-align: center;
}
.custom-checkbox .custom-checkbox-input:checked ~ .custom-checkbox-label:after {
  display: block;
}
.custom-checkbox
  .custom-checkbox-input:checked
  ~ .custom-checkbox-label:before {
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}

.custom-radio {
  position: relative;
  padding-left: 24px;
  margin: 3px 0;
  display: inline-block;
}
.custom-radio .custom-radio-input {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.custom-radio .custom-radio-label {
  position: relative;
  margin: 0;
  line-height: 16px;
  font-size: 14px;
}
.custom-radio .custom-radio-label:before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ddd;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  border-radius: 50%;
}
.custom-radio .custom-radio-label:after {
  content: "\f111";
  position: absolute;
  font-family: "Font Awesome 5 Pro";
  width: 16px;
  height: 16px;
  top: 50%;
  left: -24px;
  transform: translateY(-50%);
  font-weight: 600;
  font-size: 8px;
  display: none;
  color: #fff;
  text-align: center;
}
.custom-radio .custom-radio-input:checked ~ .custom-radio-label:after {
  display: block;
}
.custom-radio .custom-radio-input:checked ~ .custom-radio-label:before {
  background: var(--primaryColor);
  border: 1px solid var(--primaryColor);
}

.custom-tab {
}
.custom-tab .custom-tab-navigation {
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto 10px;
}
.custom-tab .custom-tab-navigation > li {
  width: auto;
  margin: 5px;
  position: relative;
}
.custom-tab .custom-tab-navigation > li > a {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 20px;
  display: block;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  position: relative;
  border-radius: 4px;
  max-width: 300px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.custom-tab .custom-tab-navigation > li.active > a,
.custom-tab .custom-tab-navigation > li > a:hover {
  background-color: var(--primaryColor);
}
.custom-tab .custom-tab-content {
}
.custom-tab .custom-tab-content .custom-tab-wrap {
  display: none;
  background: transparent;
  padding: 20px 0;
}
.custom-tab .custom-tab-content .custom-tab-wrap.active {
  display: block;
}
.custom-tab .custom-tab-content .custom-tab-navigation > li > a {
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 600;
}
.custom-tab .custom-tab {
  margin-top: -20px;
}
.custom-tab .custom-tab .custom-tab-navigation {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .custom-tab .custom-tab-navigation {
    max-width: 620px;
  }
}
@media (min-width: 768px) {
  .custom-tab .custom-tab-navigation {
    max-width: 740px;
  }
}
@media (min-width: 992px) {
  .custom-tab .custom-tab-navigation {
    max-width: 1140px;
  }
}
@media (min-width: 1200px) {
  .custom-tab .custom-tab-navigation {
    max-width: 1200px;
  }
}

/* /////////////////////////////////////////////////////////////// */
/*             			   	 	BOOTSTRAP FIX            			   				 */
/* /////////////////////////////////////////////////////////////// */
@media (min-width: 576px) {
  :root {
    --padding: 15px;
  }
  .container {
    max-width: none;
  }
  .modal-dialog {
    max-width: 700px;
  }
  .modal-sm {
    max-width: 400px;
  }
}
@media (min-width: 768px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 710px) / 2);
  }
  .container {
    max-width: 740px;
  }
}
@media (min-width: 992px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 930px) / 2);
  }
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 1140px) / 2);
  }
  .container {
    max-width: 1170px;
  }
}
@media (min-width: 1440px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 1310px) / 2);
  }
  .container {
    max-width: 1340px;
  }
}
@media (min-width: 1600px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 1370px) / 2);
  }
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 1900px) {
  :root {
    --padding: calc(calc(var(--veiwWidth) - 1470px) / 2);
  }
  .container {
    max-width: 1500px;
  }
}

.modal-open {
  overflow: auto;
}
.modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.overflow-hidden {
  overflow: hidden !important;
}
.dropdown .dropdown-toggle {
  padding-right: 16px !important;
  position: relative;
}
.dropdown .dropdown-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  font-weight: 500;
  display: block;
  position: absolute;
  margin: 0;
  vertical-align: unset;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: 0;
  color: var(--primaryColor);
  opacity: 1;
  margin-top: 2px;
  transition: all 0.3s ease;
}
.dropdown.show .dropdown-toggle::after {
  transform: translateY(-50%) rotate(-180deg);
}
.dropdown .dropdown-menu {
  display: block;
  top: 100% !important;
  left: 50% !important;
  transform: translate(-50%, 50px) !important;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease all;
}
.dropdown .dropdown-menu.show {
  display: block;
  transform: translate(-50%, 0) !important;
  visibility: visible;
  opacity: 1;
  transition: 0.5s ease all;
}
.dropdown-menu .dropdown-item {
  display: flex;
  padding: 5px 15px;
  color: var(--secondaryColor);
}
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:active {
  background: var(--primaryColor);
  color: #fff;
}
.mega-dropdown {
  position: static !important;
}
.mega-dropdown .mega-dropdown-menu {
  display: block;
  width: 100%;
  top: auto !important;
  left: 50% !important;
  transform: translate(-50%, 50px) !important;
  padding: 20px 40px;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s ease all;
}
.mega-dropdown .mega-dropdown-menu.show {
  display: block;
  transform: translate(-50%, 0) !important;
  visibility: visible;
  opacity: 1;
  transition: 0.5s ease all;
}

/*////////////////////////////////////////////////////////////////*/
/*             		          	 HOME PAGE      	      				  	*/
/*////////////////////////////////////////////////////////////////*/

/* ********|| HEADER STARTS ||******** */

.background-image {
  background-image: url();
}

/* ********|| HEADER ENDS ||******** */

/* ********|| BANNER START ||******** */

/* ********|| BANNER ENDS ||******** */

/* ********|| FOOTER STARTS ||******** */

/* ********|| FOOTER ENDS ||******** */

/* ********|| MODAL STARTS ||******** */
/* ********|| MODAL ENDS ||******** */

/* ********|| RESPONSIVE STARTS ||******** */

@media screen and (max-width: 1600px) {
}
@media screen and (max-width: 1440px) {
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 990px) {
}
@media screen and (max-width: 990px) and (orientation: landscape) {
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 767px) and (orientation: landscape) {
}
@media screen and (max-width: 600px) {
}
@media screen and (max-width: 480px) {
}
@media screen and (max-width: 360px) {
}
@media screen and (max-width: 320px) {
}
/* ********|| RESPONSIVE ENDS ||******** */

/*////////////////////////////////////////////////////////////////*/
/*             		          	 HOME PAGE      	      				  	*/

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
}

#loader img {
  width: 200px;
  height: 200px;
}

/*////////////////////////////////////////////////////////////////*/

/* ********|| HEADER STARTS ||******** */

.background-image {
  background-image: url("../images/bg-img\ \(1\).png");
}
.bg-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 9;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}
header .container-fluid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
}
header .brand {
  position: relative;
  height: 60px;
  transition: all 0.3s ease;
}
header .brand .logo {
  display: flex;
  width: 100%;
  height: 100%;
}
header .brand .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}
header .navigation {
  display: flex;
  gap: 40px;
  flex-shrink: 0;
}
header .navigation-header {
  display: none;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  flex-shrink: 0;
  box-shadow: inset 0px -20px 50px -10px rgba(var(--shades02-rgb), 0.2);
  transition: all 0.3s ease;
}
header .navigation-menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}
header .navigation-menu .menu-item {
  display: flex;
  transition: all 0.3s ease;
  font-family: "inter", sans-serif;
}
header .navigation-menu .menu-item + .menu-item {
  margin: 0 0 0 38px;
}
header .navigation-menu .menu-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--shades01);
  display: inline-flex;
  align-items: center;
  line-height: 24px;
}
header .navigation-menu .menu-link:hover,
header .navigation-menu .menu-link.active {
  color: var(--primaryColor);
}
header .navigation-menu .menu-link a.active {
  color: var(--primaryColor);
}
header .navigation-menu .menu-link:hover span:first-child img,
header .navigation-menu .menu-link.active span:first-child img {
  -moz-filter: brightness(1);
  -webkit-filter: brightness(1);
  filter: brightness(1);
}
header .language {
  position: relative;
  display: flex;
  align-items: center;
}
header .language .dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0;
  padding: 0 16px 0 0 !important;
}
header .btn-menu-trigger {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: var(--shades01);
  font-size: 30px;
}
header.scrolled {
  height: 80px;
  background-color: #333;
  box-shadow: rgba(27, 27, 27, 0.5) 0px 0px 10px 2px;
}
header.scrolled .brand {
  position: relative;
  height: 60px;
}
header.scrolled .navigation-menu .menu-item + .menu-item {
  margin: 0 0 0 40px;
}
header.scrolled .navigation-menu .menu-link {
  font-size: 16px;
}
header.alt {
  height: 100px;
  background-color: var(--scrollBg);
  position: sticky;
}
header.alt .brand {
  position: relative;
  height: 60px;
}
header.alt .navigation-menu .menu-item + .menu-item {
  margin: 0 0 0 40px;
}
header.alt .navigation-menu .menu-link {
  font-size: 16px;
}
.container-fluid .sblc-btn {
  background-color: var(--primaryColor);
  padding: 16px 30px;
  border: none;
  color: var(--shades01);
  border-radius: 8px;
  transition: 0.3s all ease;
  white-space: nowrap;
}
.container-fluid .sblc-btn:hover {
  background-color: var(--subprimaryColor);
}
.gap-50 {
  gap: 50px;
}

/* .border-bottom {
  border-bottom: 1 px solid rgba(255, 255, 255, 0.582) !important;
} */
/* ********|| HEADER ENDS ||******** */

/* ********|| BANNER STARTS ||******** */
.section-banner {
  position: relative; /* padding: 200px 0; */
  padding-top: 0px;
  display: flex;
  align-items: center;
  z-index: 0;
  height: 100vh;
  overflow: hidden;
}
.section-banner .banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.section-banner .banner-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(var(--primaryAlt-rgb), 0.5),
    rgba(var(--primaryAlt-rgb), 0.2)
  );
  z-index: 0;
}
.section-banner .banner-image:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../images/banner-bottom.png);
  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: auto 310px;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section-banner .banner-cards {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: -1;
}
.section-banner .banner-cards .container {
  position: relative;
}
.section-banner .banner-cards .card-inner {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 700px;
}
.section-banner .banner-cards .card-inner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-banner .banner-content {
  position: relative;
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
}
.section-banner .banner-title {
  font-size: 44px;
  font-weight: 800;
  color: var(--primary);
  text-transform: uppercase;
  margin: 0 0 16px;
}
.section-banner .banner-subtitle {
  font-size: 30px;
  font-weight: 500;
  color: var(--shades01);
  margin: 0 0 16px;
}
.section-banner .banner-description {
  font-size: 18px;
  color: var(--shades01);
  line-height: 1.5;
  margin: 0 0 16px;
}
.section-banner .banner-stats {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
  justify-content: center;
  margin-bottom: 10px;
}
.section-banner .banner-stats .stats-data {
  font-size: 88px;
  font-weight: 800;
  color: var(--shades01);
  padding-top: 0px;
  font-family: "DM Sans", system-ui;
  line-height: 110px;
  margin: 0;
}
.section-banner .banner-stats .stats-label {
  font-size: 18px;
  color: var(--shades01);
  padding: 4px 0 4px 16px;
  border-left: 1px solid var(--primary);
  line-height: 1.5;
}
.section-banner .sub-title {
  display: flex;
  margin: 0;
  justify-content: center;
}
.section-banner .sub-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
  background-color: var(--primary);
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: var(--shades01);
  border-radius: 4px;
  padding-top: 50px;
  font-family: "DM Sans", system-ui;
}
/* ********|| BANNER ENDS ||******** */

/* ********|| BANNER below starts ||******** */
.banner-below {
  padding-top: 6rem;
  justify-content: space-between;
}
.banner-below .banner-text {
  padding-top: 0px;
  max-width: 600px;
  width: 100%;
}
.banner-below .banner-text .heading {
  font-size: 52px;
  color: var(--textColor);
  font-weight: 700;
  font-family: "DM Sans", system-ui;
  line-height: 64px;
}
.heading-line {
  width: 76px;
  background: var(--borderColor);
  height: 5px;
  opacity: 1 !important;
}
.banner-below .banner-text .paragraph {
  font-size: 18px;
  color: var(--textColor);
  padding: 0px 0px 20px 0;
  line-height: 28px;
  font-stretch: 20px;
  font-weight: 400;
}
.banner-below .banner-text .paragraph p {
  padding-bottom: 20px;
}
.view-sample {
  background-color: var(--primaryColor);
  padding: 16px 30px;
  border: none;
  color: var(--shades01);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s all ease;
  line-height: 24px;
}
.view-sample:hover {
  background-color: var(--primaryColor);
  color: var(--textColor);
}
.section-2img {
  border-radius: 8px;
}



.view-sample-green {
  background-color: green;
  padding: 16px 30px;
  border: none;
  color: var(--shades01);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s all ease;
  line-height: 24px;
}

/* ********|| BANNER below ends ||******** */

/* ********|| FEATURES START ||******** */
.features {
  padding-top: 6rem;
}
.features .features-content-wraper {
  display: flex;
  justify-content: space-between;
}

.features .icon-bg {
  background-color: var(--txtColor);
  padding: 20px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  align-items: center;
  display: flex;
  justify-content: center;
}
.features .icon-text {
  border: 1px solid rgb(190, 190, 190);
  padding: 20px;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  width: 100%;
}
.features .icon-text .title {
  font-size: 16px;
  padding-bottom: 12px;
  color: var(--textColor);
  line-height: 24px;
  font-weight: 500;
}
.features .icon-text .link a {
  font-size: 16px;
  color: var(--primaryColor);
  text-decoration: underline;
  font-weight: 700;
}
.gap {
  margin-bottom: 20px;
}
.features .heading {
  font-size: 52px;
  line-height: 64px;
  color: var(--txtColor);
  font-weight: 700;
  font-family: "DM Sans", system-ui;
}
.features .right-text {
  padding-left: 0px;
  max-width: 600px;
  width: 100%;
  color: --txtColor;
}
.features .right-text .description {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--txtColor);
  font-family: "Inter", sans-serif;
}
.features .right-text .description p {
  padding-bottom: 20px;
}
.features .view-sample {
  padding-bottom: 20px;
  width: 100%;
}
.features .view-sample:hover {
  background-color: var(--primaryColor);
  color: var(--textColor);
}
/* ********|| FEATURES ends ||******** */
/* ********|| ADVANTAGES START ||******** */
.advantage {
  display: flex;
  flex-direction: column;
}
.advantage .advantages-bg {
  background-color: var(--blueFade);
  padding: 20px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.advantage .advantages-bg .advantages-text {
  border: 2px solid white;
  border-radius: 5px;
  padding: 14px 20px;
  border-radius: 8px;
  align-items: center;
  font-size: 24px;
  font-family: "DM Sans", system-ui;
  font-weight: 700;
  color: var(--txtColor);
  line-height: 34px;
  gap: 20px;
}
.advantage .heading {
  color: var(--txtColor);
  font-size: 52px;
  font-weight: 700;
  padding-bottom: 20px;
  font-family: "DM Sans", system-ui;
}
.advantage .advantage-heading {
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 6rem;
  padding-bottom: 20px;
}
.checked-img-wrapper {
  width: 88px;
  height: 88px;
  overflow: hidden;
}
.checked-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.advantage .advantage-btn {
  background-color: var(--primaryColor);
  color: var(--bodyBg);
  font-size: 16px;
  font-weight: 600;
  padding: 16px 28px;
  display: inline;
  margin: 0 auto;
  border-radius: 6px;
  cursor: pointer;
}
.advantage .advantage-btn:hover a {
  background-color: var(--primaryColor);
  color: var(--txtColor);
}
/* ********|| ADVANTAGES ends ||******** */
/* ********|| REQUEST FORM START ||******** */
.request-form {
  padding-top: 80px;
}
.request-form .form-heading {
  font-size: 36px;
  color: var(--txtColor);
  font-weight: 700;
  text-align: center;
  padding-top: 40px;
  padding: 40px 70px 0px 70px;
  font-family: "DM Sans", system-ui;
  line-height: 46px;
}
.request-form .form-heading.form-heading-2 {
  padding: 40px 92px 0px 92px;
}
.request-form .form-section {
  padding-top: 50px; /* padding-left: 30px; */
  background-color: var(--shades01);
}
.request-form .form-section .check-title {
  font-size: 16px;
  color: var(--textColor);
  font-weight: normal;
  line-height: 24px;
}
.request-form .form-section .form-padding {
  padding: 12px !important;
}
.request-form .form-section .form-radio {
  padding: 16px 0;
}
.request-form .form-section .form-section div {
  font-size: 16px;
  color: var(--textColor);
  line-height: 24px;
  font-family: "Inter", sans-serif;
}
.pl-radio {
  padding-left: 50px !important;
}
.form-shadow-bg {
  background: white;
  border: 1px solid #e8e8e8;
  border-left: none;
  padding: 40px;
  border-radius: 0px 10px 0px 0px;
}
.request-form .request-form-image-content {
  position: relative;
  gap: 24px;
}
.request-form .request-form-image-content .form-imgwrapper {
  height: 456px;
  overflow: hidden;
}
.request-form .request-form-image-content .form-imgwrapper.form-imgwrapper-2 {
  height: 100%;
  overflow: hidden;
}
.form-imgwrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px 0px 0px 10px;
}
.form-imgwrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* ********|| REQUEST FORM EN||******** */
/* ********|| project-funding star||******** */
.project-funding {
  padding-top: 6rem;
}
.project-funding .heading {
  color: var(--blueSecondary);
  font-size: 52px;
  font-weight: 600;
  padding-bottom: 10px;
  padding-top: 20px;
  width: 66%;
  line-height: 64px;
  font-family: "DM Sans", system-ui;
}
.project-funding .project-funding-description {
  font-size: 18px;
  color: var(--textColor);
  line-height: 28px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}
.project-funding .project-funding-description .paragraph {
  font-size: 24px;
  font-weight: 700;
  color: var(--textColor);
  line-height: 34px;
  font-family: "DM Sans", system-ui;
}

/* ********|| project-funding EN||******** */

/* ********|| benefits star||******** */
.benefits-bg {
  background: #e8e8e878;
  padding-bottom: 64px;
  margin-top: 80px;
}
.benefits .heading {
  color: var(--blueSecondary);
  font-size: 52px;
  font-weight: 600;
  padding-bottom: 10px;
  padding-top: 20px;
  width: 66%;
  line-height: 64px;
  font-family: "DM Sans", system-ui;
}
.benefits .advantage-heading {
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-top: 6rem;
  padding-bottom: 5px;
}

.benefits-section .benefits-img-content {
  width: 88px;
  height: 88px;
  border-radius: 50px;
  background-color: #f2f9ec;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.benefits-section .descriptions {
  margin-bottom: auto;
  font-size: 16px;
  line-height: 24px;
}
.benefits-section .step {
  color: var(--primaryColor);
  font-size: 24px;
  font-weight: 700;
  font-family: "DM Sans", system-ui;
  text-align: center;
  margin-top: 16px;
}
.benefits-img-wrapper {
  width: 35px;
  height: auto;
  overflow: hidden;
  margin: 0 auto;
}
.benefits-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  /* grid-template-columns: repeat(
    4,
    1fr
  );  */
  gap: 26px;
}
.benefits .benefits-section {
  background-color: var(--shades01);
  box-shadow: 2px 5px 11px -3px rgb(163, 163, 163);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  justify-content: center;
  border-radius: 7px;
  border-bottom: 6px solid var(--borderColor);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  width: 20%;
}
/* .benefits .benefits-section:nth-child(2) { border-left: 6px solid var(--primaryColor);}
.benefits .benefits-section:nth-child(4) { border-left: 6px solid var(--primaryColor);}
.benefits .benefits-section:nth-child(5) { border-left: 6px solid var(--primaryColor);}
.benefits .benefits-section:nth-child(7) { border-left: 6px solid var(--primaryColor);} */
.view-sample-big {
  background-color: var(--background);
  padding: 22px 36px;
  border: none;
  color: var(--shades01);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 700;
  transition: 0.3s all ease;
  line-height: 34px;
  font-family: "DM Sans", system-ui;
}
.view-sample-big:hover {
  background-color: var(--background);
  color: var(--textColor);
}
/* ********|| benefits END ||******** */

/* ********|| PROTECT START  ||******** */
.protect-description {
  padding-top: 6rem;
}
.protect-description .description {
  margin: 0 auto;
  width: 928px;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--borderColor);
  line-height: 46px;
  font-family: "DM Sans", system-ui;
}

/* ********|| PROTECT END ||******** */

/* ********|| BENEFITS START ||******** */

.benefits-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--textColor);
  text-align: center;
  line-height: 64px;
  padding: 0 100px;
}
/* ********|| BENEFITS END ||******** */

/* ********|| FAQ STAR ||******** */
.faq {
  padding-top: 6rem;
}
.faq .heading {
  color: var(--blueSecondary);
  font-size: 52px;
  font-weight: 700;
  padding-bottom: 0;
  padding-top: 20px;
  width: 100%;
  line-height: 64px;
  font-family: "DM Sans", system-ui;
}
.faq .faq-heading {
  text-align: center;
  align-items: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 5px;
}

.accordion-button::after {
  content: "\2b";
  font-family: "Font Awesome 6 Pro";
  background: none;
  font-size: 18px;
  transform-origin: center;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accordion-button:not(.collapsed)::after {
  content: "\f00d";
  font-family: "Font Awesome 6 Pro";
  background: none;
  font-size: 18px;
}
.accordion-item {
  border-top: 0;
  border-left: 0;
  border-right: 0;
  padding: 30px 0 0 0;
  break-inside: avoid !important;
}
.accordion-body {
  padding-bottom: 20px;
  font-size: 16px;
  color: var(--textColor);
  font-family: "Inter", sans-serif;
  line-height: 24px;
  break-inside: avoid !important;
  word-wrap: break-word;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button:not(.collapsed) {
  background-color: #f6f6f6;
  color: var(--borderColor);
}
.accordion-collapse {
  background-color: #f6f6f6;
  padding-bottom: 0;
}
.accordion-button {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  font-family: "DM Sans", system-ui;
}
.col-count {
  column-count: 2;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.accordion-body {
  font-family: "poppins", sans-serif !important;
}
/* ********|| FAQ EN ||******** */

/* ********|| 2ND FORM STAR ||******** */
.px {
  padding: 0 30px;
}
.w-90 {
  width: 90%;
}
.form-shadow-bg-2 {
  background: white;
  padding: 40px;
  border-radius: 10px 0 0 10px;
  border: 1px solid #e8e8e8;
  border-right: none;
}
.form2-imgwrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0px 10px 10px 0px;
}
.form2-imgwrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.form-check-input:checked {
  background-color: var(--background);
  border-color: var(--background);
  box-shadow: 0px 0px 2px 4px #dbdbdb;
}
.form-check-input:checked[type="radio"] {
  --bs-form-check-bg-image: url() !important;
}
.form-check-input:checked + .form-check-label {
  color: var(--background);
}
.form-check-label {
  padding-left: 8px;
}
/* ********|| 2ND FORM END  ||******** */

/* ********|| HEADER ENDS ||******** */

/* ********|| DIGITAL FUND START ||******** */
.degital-fund {
  position: relative;
  padding-top: 6rem;
}
.degital-fund .container {
  position: relative;
  max-width: 928px;
  width: 100%;
}
.degital-fund .degital-fund-title {
  font-size: 52px;
  font-weight: 700;
  color: var(--background);
  text-align: center;
  margin: 0 auto;
  line-height: 64px;
  font-family: "DM Sans", system-ui;
}
/* ********|| DIGITAL FUND ENDS ||******** */

/* ********|| FOOTER STARTS ||******** */
.footer {
  position: relative;
  padding: 110px 0 0px 0;
  display: flex;
  align-items: center;
  z-index: 0;
  height: 100%;
  overflow: hidden;
  margin-top: 100px;
}
.footer .footer-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.footer-text {
  position: absolute;
  top: 0px;
  left: 0px;
}
.footer-logowrapper {
  width: 286px;
  height: 112px;
  overflow: hidden;
}
.footer-logowrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-content {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 70px;
  justify-content: center;
}
.footer-menuitem {
  display: flex;
  padding: 0px 46px;
}
.footer-border {
  border-right: 1px solid var(--shades01);
}
.footer-menuitem a {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--shades01);
}
.footer-copyright {
  display: flex;
  justify-content: space-between;
  color: var(--shades01);
  padding: 20px 40px 20px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.37);
}
.footer-copyright ul {
  display: flex;
  list-style: none;
}
.footer-copyright ul li {
  padding: 0px 20px;
}
.footer-copyright ul li a {
  color: var(--shades01);
}
.footer-pb {
  padding-bottom: 120px;
}

/* ********|| FOOTER ENDS ||******** */

/* ********|| MODAL STARTS ||******** */
/* .accordion-item:not(.collapsed) {
  background-color: rgb(216, 216, 216);
  color: var(--primaryColor);
} */
/* ********|| MODAL ENDS ||******** */

/* ********|| RESPONSIVE STARTS ||******** */

@media screen and (max-width: 1600px) {
  .section-banner .banner-stats .stats-data {
    font-size: 75px;
    line-height: 90px;
  }
  .section-banner .sub-title {
    font-size: 20px;
  }
  .banner-below .banner-text .heading {
    font-size: 46px;
    line-height: 58px;
  }
  .features .heading {
    font-size: 46px;
    line-height: 58px;
  }
  .advantage .heading {
    font-size: 46px;
  }
  .advantage .advantages-bg .advantages-text {
    font-size: 20px;
    display: flex;
    gap: 12px;
  }
  .checked-img-wrapper {
    width: 100px;
  }
  .request-form .form-heading {
    font-size: 36px;
    padding: 40px 50px 0px 50px;
  }
  .project-funding .heading {
    font-size: 46px;
  }
  .view-sample-big {
    font-size: 22px;
  }
  .faq .heading {
    font-size: 46px;
  }
  .request-form .form-heading.form-heading-2 {
    padding: 40px 32px 0px 32px;
  }
  .degital-fund .degital-fund-title {
    font-size: 46px;
  }
  .benefits .heading {
    width: 66%;
  }
  .section-banner .btn-action {
    padding: 0 34px;
  }
  .checked-img-wrapper {
    width: 130px;
  }
  .benefits .benefits-section {
    padding: 18px 20px;
  }
  .benefits-img-wrapper {
    width: 26px;
    height: 28px;
  }
  .benefits .benefits-section {
    width: 22%;
  }
}
@media screen and (max-width: 1440px) {
  .features .right-text {
    padding-left: 60px;
  }
  .project-funding {
    padding-top: 96px;
  }
  .payment .payment-grid {
    padding: 0 38px;
  }
  .payment .alert {
    padding: 20px 94px;
  }
  .footer-menuitem {
    padding: 0px 42px;
  }
  .section-banner .banner-action {
    padding: 0px 180px;
  }
  .section-banner .btn-action {
    padding: 0 0px;
  }
  .banner-below .banner-text {
    padding-top: 0px;
  }
  .banner-below .banner-text .heading {
    font-size: 36px;
    line-height: 48px;
  }
  .features .heading {
    font-size: 36px;
    line-height: 48px;
  }
}
@media screen and (max-width: 1400px) {
  .banner-below .banner-text {
    max-width: 550px;
    width: 100%;
  }
  .features .right-text {
    max-width: 550px;
    width: 100%;
  }
  .features .right-text {
    padding-left: 0px;
  }
}
@media screen and (max-width: 1366px) {
}
@media screen and (max-width: 1280px) {
  .request-form .form-section .form-padding {
    padding: 12px 6px !important;
  }
  .footer-menuitem {
    padding: 0px 38px;
  }
}
@media screen and (max-width: 1024px) {
  header .btn-menu-trigger {
    display: flex;
  }
  header .navigation {
    gap: 20px;
  }
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  header .navigation-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background-color: var(--txtColor);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    transform: translateX(100%);
    opacity: 1; /* visibility: visible; */
  }
  header .navigation-wrapper.active {
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
  }
  header .navigation-header {
    display: flex;
  }
  header .navigation-menu {
    flex-direction: column;
    overflow: auto;
    flex-grow: 1;
    flex-shrink: 1;
    padding: 20px 0;
  }
  header .navigation-menu .menu-item {
    padding: 0 30px;
  }
  header .navigation-menu .menu-item + .menu-item,
  header.scrolled .navigation-menu .menu-item + .menu-item {
    margin: 0;
  }
  header .navigation-menu .menu-item + .menu-item .menu-link {
    border-top: 1px solid rgba(var(--primary-rgb), 0.1);
  }
  header .navigation-menu .menu-link {
    font-size: 20px;
    padding: 20px 0;
    width: 100%;
    font-weight: 400;
  }
  header .navigation-menu .menu-link.active {
    font-weight: 700;
  }
  header .navigation-menu .menu-link span:first-child {
    display: inline-flex;
  }
  header.scrolled .navigation-header {
    height: 100px;
  }
  header.scrolled .navigation-wrapper .brand {
    height: 60px;
  }
  header.scrolled .navigation-menu .menu-link {
    font-size: 20px;
  }
  header.alt .navigation-menu .menu-item + .menu-item {
    margin: 0;
  }
  header.alt .navigation-menu .menu-link {
    font-size: 20px;
    padding: 20px 0;
    width: 100%;
    font-weight: 400;
  }
  header.alt .navigation-menu .menu-link.active {
    font-weight: 700;
  }
  .footer-menuitem {
    padding: 0px 26px;
  }
  .banner-below .banner-text {
    padding-top: 0;
    padding-right: 20px;
  }
  .features .heading {
    font-size: 41px;
    line-height: 48px;
  }
  .advantage .advantages-bg .advantages-text {
    font-size: 20px;
    line-height: 28px;
  }
  .benefits .heading {
    width: 90%;
  }
  .payment .payment-grid {
    padding: 0 0px;
  }
  .project-funding .project-funding-description {
    padding-right: 30px;
  }
  .banner-below {
    align-items: center;
  }

  /* -Bikram start- */
  .section-banner .banner-stats .stats-data {
    font-size: 46px;
    line-height: 65px;
  }
  .section-banner .banner-action {
    padding: 0px 90px;
  }
  .section-banner .sub-title {
    font-weight: 600;
  }
  .banner-below .banner-text {
    max-width: 460px;
  }
  .features .right-text {
    max-width: 460px;
  }
  .advantage .heading {
    font-size: 36px;
  }
  .checked-img-wrapper {
    width: 70px;
  }

  .request-form .form-heading.form-heading-2 {
    padding: 40px 0px 0px 0px;
  }
  .request-form .form-section {
    padding-top: 20px;
    background-color: var(--shades01);
  }
  .request-form .form-heading {
    font-size: 26px;
    line-height: 36px;
  }
  .advantage .advantages-bg .advantages-text {
    font-size: 16px;
  }
  .banner-below .banner-text .heading {
    font-size: 36px;
    line-height: 48px;
  }
  .banner-below .banner-text .paragraph {
    font-size: 16px;
  }
  .features .right-text {
    padding-left: 0px;
  }
  .features .heading {
    font-size: 36px;
    line-height: 48px;
  }
  .advantage .advantages-bg .advantages-text {
    font-size: 18px;
    line-height: 24px;
  }
  .checked-img-wrapper {
    width: 90px;
  }
  .benefits .heading {
    font-size: 36px;
  }
  .project-funding .heading {
    font-size: 36px;
  }
  .protect-description .description {
    width: 768px;
  }
  .degital-fund .degital-fund-title {
    font-size: 36px;
  }
  .degital-fund .degital-fund-title {
    line-height: 50px;
  }
  .benefits .benefits-section {
    width: 30%;
  }
  /* -Bikram end- */
}
@media screen and (max-width: 990px) {
  .banner-below .banner-text {
    padding-top: 20px;
    padding-right: 12px;
  }
  .features .right-text {
    padding-left: 12px;
    padding-top: 36px;
  }
  .project-funding .project-funding-description {
    padding-right: 0px;
  }
  .benefits .heading {
    width: 100%;
  }
  .payment .payment-section {
    margin-bottom: 30px;
  }
  .payment .alert {
    margin-top: 0px;
  }
  .col-count {
    column-count: 1;
  }
  .banner-below {
    padding-top: 3rem;
  }
  .section-banner .banner-stats .stats-data {
    font-size: 50px;
  }
  .section-banner .banner-action {
    padding: 20px 0px;
  }
  .payment .alert {
    padding: 20px 0px;
  }
  .payment .payment-grid {
    padding: 0 64px;
  }
  .footer-menuitem {
    padding: 0px 12px;
  }
  .view-sample-big {
    font-size: 22px;
  }
  .footer-pb {
    padding-bottom: 80px;
  }
  .banner-below .banner-text {
    max-width: 100%;
  }
  .features .right-text {
    max-width: 100%;
  }
  .advantage .advantages-bg {
    background-color: var(--blueFade);
    padding: 0px;
    border-radius: 8px;
    margin-bottom: 0px;
  }
  .advantage .advantage-heading {
    padding-bottom: 0px;
  }
  hr {
    margin-top: 0px;
  }
  .protect-description .description {
    width: 100%;
    font-size: 30px;
    line-height: 40px;
  }
  .faq .heading {
    font-size: 36px;
  }
  .form-imgwrapper {
    border-radius: 10px 10px 0px 0px;
  }
  .form-shadow-bg {
    border: 1px solid #e8e8e8;
    border-radius: 0px 0px 10px 10px;
  }
  .benefits .benefits-section {
    width: 46%;
  }
}
@media screen and (max-width: 990px) and (orientation: landscape) {
  .section-banner .banner-stats .stats-data {
    font-size: 42px;
    line-height: 50px;
  }
  .section-banner .sub-title {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 767px) and (orientation: landscape) {
}
@media screen and (max-width: 600px) {
  .features .features-content-wraper {
    gap: 48px;
  }
}
@media screen and (max-width: 480px) {
  .section-banner .banner-image-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    visibility: visible;
  }
  .section-banner .banner-image {
    display: none;
  }
  header .btn-menu-trigger {
    font-size: 26px;
  }
  header.scrolled .brand {
    height: 40px;
  }
  header.scrolled {
    height: 60px;
  }
  .section-banner .btn-action {
    padding: 0;
    font-size: 20px;
    line-height: 28px;
  }
  header .brand {
    height: 40px;
  }
  .footer-menu {
    flex-wrap: wrap;
    padding-bottom: 70px;
    justify-content: center;
  }
  .footer-menuitem {
    padding: 0px 16px;
  }
  .footer {
    padding: 70px 0 0px 0;
    margin-top: 65px;
  }
  .privacy {
    padding-top: 0px;
    text-align: center;
    display: flex;
    justify-content: center;
  }
  .footer-copyright {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px 20px 20px 20px;
  }
  .footer-logowrapper {
    width: 160px;
  }
  .gap-50 {
    gap: 23px;
  }
  .container-fluid .sblc-btn {
    padding: 11px 12px;
  }
  .section-banner .banner-stats .stats-data {
    font-size: 58px;
    line-height: 74px;
  }
  .banner-below .banner-text .heading {
    font-size: 32px;
  }
  .banner-below .banner-text .subheading {
    padding-top: 12px;
  }
  .features .icon-bg {
    border-bottom-left-radius: 0px;
    border-top-right-radius: 10px;
  }
  .features .icon-text {
    border-top-right-radius: 0;
    border-bottom-left-radius: 10px;
  }
  .column-reverse-sm {
    flex-direction: column-reverse;
  }
  .features {
    padding-top: 10px;
  }
  .features .heading {
    font-size: 32px;
    line-height: 42px;
  }
  .request-form .form-heading {
    font-size: 26px;
    padding: 0 30px;
  }
  .form-shadow-bg {
    padding: 40px 20px;
  }
  .request-form .form-section {
    padding-top: 20px;
  }
  .benefits .heading {
    font-size: 32px;
    line-height: 42px;
    padding-bottom: 0px;
  }
  .benefits .advantage-heading {
    padding-top: 38px;
  }
  .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .payment .payment-grid {
    padding: 0 0px;
  }
  .payment .payment-body {
    padding: 38px 16px;
    font-size: 20px;
    line-height: 28px;
  }
  .payment .payment-section .payment-section-header {
    padding: 20px 25px;
  }
  .payment .payment-section .payment-section-header-2 {
    padding: 20px 25px;
  }
  .payment .alert {
    padding: 20px 0px;
  }
  .faq .heading {
    font-size: 32px;
    line-height: 42px;
  }
  .faq .faq-heading {
    padding-top: 28px;
  }
  .payment .heading {
    width: 100%;
    font-size: 32px;
  }
  .heading-line {
    margin-top: 12px;
  }
  .advantage .heading {
    font-size: 40px;
    padding-bottom: 10px;
  }
  .advantage .advantage-heading {
    padding-top: 30px;
    padding-bottom: 10px;
  }
  .form-shadow-bg-2 {
    padding: 40px 20px;
  }
  .request-form {
    padding-top: 24px;
  }
  .advantage .advantages-bg .advantages-text {
    font-size: 20px;
    line-height: 28px;
  }
  .checked-img-wrapper {
    width: 90px;
    height: 92px;
  }
  .project-funding .project-funding-description .paragraph {
    font-size: 20px;
    line-height: 28px;
  }
  .section-banner .banner-stats .stats-data {
    padding-top: 12px;
  }
  .section-banner .btn-action {
    padding-top: 6px;
  }
  .view-sample {
    width: 100%;
  }
  .banner-below .banner-text .paragraph {
    padding-bottom: 0px;
  }
  .pl-radio {
    padding-left: 20px !important;
  }
  .pl-1 {
    padding-left: 50px !important;
  }
  .project-funding {
    padding-top: 48px;
  }
  .footer .footer-image-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
    visibility: visible;
  }
  .footer .footer-image {
    display: none;
  }
  .view-sample {
    font-size: 16px;
    text-align: center;
    display: block;
    line-height: 24px;
    padding: 16px 8px;
  }
  .benefits-img-wrapper {
    width: 28px;
    height: 28px;
  }
  .view-sample-big {
    display: block;
  }
  .payment .payment-bg {
    margin-top: 30px;
  }
  header {
    height: 60px;
  }
  .pr-6 {
    padding-right: 6px;
  }
  .pl-6 {
    padding-left: 6px;
  }
  .container {
    padding: 0px 20px;
  }
  .footer-pb {
    padding-bottom: 0px;
  }
  .accordion {
    margin: 0 -20px;
  }
  .accordion-button {
    padding: 8px 24px;
    gap: 8px;
  }

  .section-banner .banner-stats .stats-data {
    font-size: 40px;
    line-height: 50px;
  }
  .section-banner .sub-title {
    margin-top: 24px;
    font-size: 16px;
    font-size: 20px;
    line-height: 28px;
  }
  .banner-below .banner-text .heading {
    line-height: 42px;
  }
  .banner-below .banner-text .paragraph {
    font-size: 18px;
  }
  .advantage .heading {
    font-size: 32px;
  }
  .advantage .advantages-bg .advantages-text {
    align-items: start;
    font-size: 24px;
    line-height: 34px;
    padding: 20px;
  }

  .advantage .advantage-btn {
    text-align: center;
    line-height: 24px;
    margin-top: 24px;
  }
  .checked-img-wrapper {
    width: 56px;
    height: 56px;
  }
  .benefits-title {
    font-size: 26px;
    padding: 0 0px;
    line-height: 36px;
  }
  .view-sample-big {
    font-size: 18px;
  }
  .view-sample-big {
    padding: 16px 36px;
  }
  .project-funding {
    padding-top: 28px;
  }
  .project-funding .heading {
    width: 100%;
    line-height: 42px;
  }
  .protect-description,
  .faq {
    padding-top: 4rem;
  }
  .protect-description .description {
    font-size: 26px;
    line-height: 36px;
  }
  .faq .faq-heading {
    padding-top: 0px;
  }
  .request-form .form-heading.form-heading-2 {
    padding: 0px 0px 0px 0px;
  }
  .degital-fund .degital-fund-title {
    font-size: 32px;
  }
  .mobile-row-reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 360px) {
  .section-banner .banner-stats .stats-data {
    font-size: 48px;
  }
}
@media screen and (max-width: 320px) {
}
/* ********|| RESPONSIVE ENDS ||******** */
