/*Main Css */
:root {
  --primary: #00b67a;
  --bg-light: #ffdecc;
  --bg-gray: #f4f9ff;
  --black: #000000;
  --white: #ffffff;
  --dark: #333333;

  --font-heading: "Syne";
  --font-accent: "DMSans";
  --font-body: "DMSans";

  --icon: "Font Awesome 6 Pro", sans-serif;
}
::selection {
  background: #0dcaf0ba;
  color: #fff;
  text-shadow: none;
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
  display: none;
}

::-webkit-scrollbar-track-piece {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
  border-radius: 10px;
  background-color: #0dcaf0ba;
}

/* Tabbing CSS */

[class^="box-"] {
  display: none;
}

[class^="box-"].showfirst {
  display: block;
}

body {
  font-family: var(--font-body);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1;
  background-color: #141414;
  color: #fff;
  position: relative;
  z-index: 0;
}
body.inner-header {
  /* padding-top: 100px; */
}
h1,
h2,
h3,
h4,
h5,
h6 {
  display: block;
  font-weight: normal;
  font-family: "Syne";
}

*:hover,
*:focus,
* {
  outline: none !important;
}

img {
  max-width: 100%;
  height: auto;
}

a,
input[type="submit"] {
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  display: inline-block;
  cursor: pointer;
  text-decoration: none;
}

textarea,
select,
input[type],
textarea,
select,
button {
  font-family: var(--font-body);
  font-weight: 400;
}

/* Padding Classes */
.pad-zero {
  padding: 0px;
}
.pad-l-zero {
  padding-left: 0px;
}
.pad-r-zero {
  padding-right: 0px;
}
.ovr-hiddn {
  overflow: hidden;
}
.overlay:after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}
.overlay {
  display: none;
}
.overlay.active {
  display: block;
}

/* Heading Classes */
.hding-1 h1 {
  font-size: 75px;
  font-weight: 700;
  line-height: 75px;
}
.highlighted {
  color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
  margin: 0 -15px;
}
.slick-slide {
  margin: 0 15px;
}
.slick-dots {
  padding: 50px 0 0;
  text-align: center;
}
.slick-dots li {
  margin: 0 10px 0 0px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  overflow: hidden;
  padding: 0px;
  border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
  color: #fff;
  opacity: 1;
  font-size: 20px;
}
.slick-dots li button {
  height: 12px;
  width: 12px;
  border-radius: 100px;
  padding: 0px;
  background: #dddddd;
  border: none;
  cursor: pointer;
  font-size: 0px;
  padding: 0px;
  -webkit-transition: all 0.4s ease-In-out;
  -moz-transition: all 0.4s ease-In-out;
  -o-transition: all 0.4s ease-In-out;
  transition: all 0.4s ease-In-out;
  box-sizing: border-box;
}
.slick-dots li.slick-active button {
  background: #cef98c;
  border: solid 1px #cef98c;
  padding: 5px;
}

/*header css*/
header {
  transition: all 0.4s ease-In-out;
  position: fixed;
  background: transparent;
  z-index: 1;
  left: 0;
  right: 0;
  top: 0;
  z-index: 40;
}
.menuWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: inline-block;
}
.logo img {
  display: block;
}

/* Hamburger Menu */
.menu-Bar {
  width: 30px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0px;
  margin: auto;
  z-index: 22;
  display: none;
}
.menu-Bar span {
  display: block;
  height: 4px;
  width: 100%;
  background: #b7df75;
  position: absolute;
  transition: 0.6s all;
  border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
  top: 0;
}
.menu-Bar span:nth-child(2) {
  top: 8px;
  transform-origin: left;
}
.menu-Bar span:nth-child(3) {
  top: 16px;
}
.menu-Bar.open span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
  transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 12px;
  transform-origin: right-center;
}
/* Menu Css */

.main-header {
  display: flex;
  height: 85px;
  padding: 7px 10.5px 6px 25.5px;
  align-items: center;
  width: 77%;
  margin: auto;
  border-radius: 100px;
  border: 1px solid rgba(217, 217, 217, 0.3);
  background: var(--Color, #232c1d);
  box-shadow: 0px 4px 39.6px 0px rgba(0, 0, 0, 0.25);
  margin-top: 30px;
  position: relative;
  z-index: 165;
}
.menu {
  font-size: 0px;
  display: inline-block;
  vertical-align: middle;
}
.menu > li {
  display: inline-block;
  vertical-align: middle;
  padding: 12px 0 12px 30px;
}
.menu > li > a {
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 500;
}
.header-btn {
  padding: 15px 20px;
  padding: 18px 30px;
  color: #000000 !important;
  font-weight: 500;
  font-size: 18px;
  transition: 0.5s ease;
  border-radius: 42px;
  background: var(--Main, #cdf986);
}
.header-btn:hover {
  transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
  color: var(--primary);
}

@keyframes scale-display {
  0% {
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
}
@keyframes scale-display--reversed {
  0% {
    display: inline-flex;
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
  }
  99% {
    display: inline-flex;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
  100% {
    display: none;
    opacity: 0;
    transform: scale(0);
    -webkit-transform: scale(0);
  }
}

/* Menu Dropdown CSS */
.has-child {
  position: relative;
  z-index: 1;
}
.dropdown {
  position: absolute;
  background: #141414;
  border-radius: 0px 0px 10px 10px;
  top: 100%;
  text-align: start;
  width: 300px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
  display: none;
}

@keyframes slide {
  0% {
    height: 0;
  }
  100% {
    height: auto;
  }
}
.dropdown .dropdown {
  left: 100%;
  top: 0;
}
.dropdown ul li a {
  font-size: 16px;
  line-height: 30px;
  color: #fff;
  padding: 10px 20px;
}
.dropdown li:not(:last-child) {
  border-bottom: 1px solid #ffffff1a;
}
.chev.rotate {
  transform: rotate(180deg);
}
.chev {
  transition: 0.5s ease;
}
/* Dropdown CSS*/

@keyframes btotreverse {
  0% {
    top: 75px;
    opacity: 1;
  }
  100% {
    top: 115px;
    opacity: 0;
  }
}

@keyframes btot {
  0% {
    top: 115px;
    opacity: 0;
  }
  100% {
    top: 40px;
    opacity: 1;
  }
}

/* Main Banner CSS */

span.color-h1-banner {
  color: var(--Main, #cdf986);
}
.banner-ul {
  border-radius: 14px;
  border: 1px solid rgba(217, 217, 217, 0.3);
  background: #232c1d;
  backdrop-filter: blur(8.5px);
  width: 62%;
  padding: 10px 12px;
  margin: 20px auto;
}
.mainBanner {
  position: relative;
  border-radius: 0px 0px 80px 80px;
  text-align: center;
  z-index: 0;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: 68vw;
}
.banner-content {
  padding: 180px 0 100px;
}
h1.banner-heading {
  margin-bottom: 1rem;
  color: #fcfcfc;
  font-size: 58px;
  font-weight: 600;
  line-height: 70px;
}
span.sub-heading {
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  font-weight: 400;
  border-radius: 59px;
  background: linear-gradient(
    179deg,
    #83a34e -36.26%,
    #cdf986 47.54%,
    #83a34e 131.33%
  );
  padding: 10px 20px;
  margin-bottom: 25px;
  position: relative;
  z-index: 0;
}
p.banner-text {
  font-weight: 300;
  font-size: 17px;
  line-height: 22px;
  color: #fcfcfc;
  width: 68%;
  padding-bottom: 1rem;
  opacity: 0.7;
  margin: auto;
}

/* Accordian */
.accordion-list {
  position: relative;
}
.accordion-list li {
  padding: 30px 35px 30px 30px;
  cursor: pointer;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #d1d5db;
  background: white;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  margin-bottom: 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(217, 217, 217, 0.10);
  background: #252525;
}
ul.accordion-list li span {
  display: flex;
  position: relative;
}
.accordion-list li h3 {
  font-size: 24px;
  color: #fcfcfc;
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
}
ul.accordion-list li h3:after {
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 0;
  color: #9ca3af;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 600;
  top: 0;
  background: #fbfbfb;
  color: black;
  border-radius: 100px;
  height: 26px;
  width: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}
.accordion-list li.active h4::after {
  color: #9ca3af;
  content: "\f077";
}
ul.accordion-list li.active h3:after {
  content: "\f077";
  background: #cffc8b;
}
.answer p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #919191;
  border-top: 1px solid #5b5b5b;
  padding-top: 10px;
}
/* Accordian */

/* popup */
.overlay {
  background-color: rgb(197 197 197 / 32%);
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999999;
  display: none;
  backdrop-filter: blur(10px);
}
.popupmain {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  width: 530px;
  z-index: 9999999;
  overflow: hidden;
  display: none;
  border-radius: 8px;
  max-width: 100%;
  max-height: 100vh;
  overflow-y: auto;
}
.mmpopup {
  text-align: center;
  background: #2c2c2c;
  padding: 0px 40px 15px;
  background: url(../images/Group.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: end;
  justify-content: end;
  flex-direction: column;
  height: 69vh;
}
.mmpopup .formpop {
  width: 100%;
  margin: 24px auto;
}
.mmpopup .fld-input {
  height: 50px;
  width: 100%;
  border-radius: 40px;
  margin-bottom: 1rem;
  border: 2px solid #000000;
  overflow: hidden;
}
.mmpopup .centercont h3 {
  font-size: 38px;
  color: #141515;
  margin-bottom: 10px;
}
.mmpopup .centercont h4 {
  font-size: 20px;
  color: #566060;
  margin-bottom: 15px;
}
.mmpopup .centercont h4 span span {
  display: none;
}
.mmpopup .centercont p {
  color: #333;
  font-size: 14px;
  margin-bottom: 120px;
  line-height: 20px;
}
.closeico {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 9999;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cdf986;
  border-radius: 100px;
}
.closeico i {
  background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
    no-repeat;
  width: 16px;
  height: 16px;
  display: block;
}
.closeico1 {
  position: absolute;
  top: 15px;
  right: 20px;
  z-index: 9999;
}
.closeico1 i {
  background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
    no-repeat;
  width: 16px;
  height: 16px;
  display: block;
}
.mmpopup .centercont p {
  color: #000;
  max-width: 390px;
  margin: auto;
  display: none;
  position: relative;
}
.mmpopup .centercont ul {
  margin-bottom: 30px;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding: 27px 49px 27px 24px;
  background: #fff;
  border-radius: 10px;
  margin-right: 20px;
}
.mmpopup .centercont ul li {
  display: block;
  font-size: 15px;
  color: #000;
  padding-bottom: 12px;
}
.mmpopup .centercont ul li.last {
  padding-bottom: 0;
}
.mmpopup .centercont ul li i {
  color: #ff533e;
  border: 1px solid;
  border-radius: 100px;
  margin-right: 8px;
  font-size: 10px;
  padding: 3px;
}
.mmpopup .centercont h4 {
  font-size: 36px;
  color: #000000;
}
.mmpopup .centercont h3 {
  font-size: 50px;
  font-weight: 400;
  color: #0085ff;
}
.mmpopup .centercont h3 span {
  display: block;
  margin: 0 30px;
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: #000;
}
.mmpopup .centercont h4 span {
  font-weight: 700;
  color: #010101;
  font-size: 50px;
}
.fld-input input {
  width: 100%;
  height: 100%;
  padding: 0 20px 0px 40px;
  font-size: 16px;
  letter-spacing: 0.2px;
  background: transparent;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none;
  position: relative;
}
.fld-input input::placeholder {
  color: #737373;
  font-weight: 400;
}
.fld-btn button {
  border-radius: 50px;
  background-color: #000000;
  width: 100%;
  color: #cdf986;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: 0.5s;
  height: 50px;
  cursor: pointer;
  border: 0;
}
.fld-btn button i {
  padding-left: 12px;
}
.fld-btn button:hover {
  transform: scale(1.03);
}
/* popup */

/* packages */
.pckg-sec {
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.pckg {
  padding: 42px 26px 20px;
  border-radius: 20px;
  background: rgba(37, 37, 37, 0.5);
}
.pckg .btn-wrap a {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.pckg .btn-wrap .btn-norm {
  color: var(--primary);
  transition: 0.5s ease;
}
.pckg .btn-wrap .btn-norm:hover {
  transform: scale(1.03);
}
.pckg .upper .title {
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 600;
}
.pckg .upper .starting-in {
  font-size: 14px;
  line-height: 20px;
  color: #6b7280;
}
a.logo img {
    height: 70px;
    width: 135px;
}
.pckg .upper p {
  font-size: 16px;
  line-height: 22px;
  color: #fcfcfc;
  font-weight: 300;
  margin-bottom: 1rem;
  font-family: 'DMSans';
}
.pckg .upper .price {
  display: flex;
  align-items: baseline;
  gap: 0px;
  margin: 1.5rem 0;
}
.pckg .upper .price .amount {
  font-weight: 600;
  font-size: 50px;
  line-height: 40px;
  color: #fff;
}
.pckg .upper .price .uspto {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.48);
}
.pckg .upper {
  border-bottom: 1px solid #ffffff1a;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.pckg .bottom ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #fcfcfc;
  position: relative;
}
.pckg .bottom ul {
  margin: 1rem 0 3rem;
  padding-left: 30px;
  height: 200px;
  overflow-y: auto;
  border-bottom: 1px solid #ffffff1a;
  margin-bottom: 20px;
}
.bottom span {
  color: #fcfcfc;
  font-size: 20px;
  line-height: 24px;
}
.pckg .bottom ul li:not(.last) {
  margin-bottom: 0.5rem;
}
.pckg .bottom ul li::before {
  content: "";
  background-image: url(../images/banner/tick.webp);
  top: 4px;
  left: -27px;
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
}
.pckg .btn-wrap {
  flex-direction: column;
  margin: 0;
}
/* packages */

/* Sec Headings */
.sec-heading {
  margin-bottom: 2rem;
}
.sec-heading.center {
  text-align: center;
}
.sec-heading h2 {
  font-size: 44px;
  line-height: 48px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px !important;
  /* width: 70%; */
  margin: auto;
}
.sec-heading.white h2 {
  color: white;
}
.sec-heading p {
  width: 85%;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #fcfcfc;
  margin: 1rem 0;
  opacity: 0.7;
  margin: auto;
}
.sec-heading .sub-heading {
  font-weight: 400;
  font-size: 16px;
  line-height: 29px;
  color: #000000;
  margin-bottom: 1rem;
}
/* Sec Headings */

/* sections */
section {
  padding: 4rem 0;
  position: relative;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
}
.padding-2 {
  padding: 1rem 0;
}
/* sections */

/* Theme Buttons */
.btn-wrap {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin: 1rem 0;
  justify-content: center;
}
.btn-wrap .theme-btn {
  padding: 15px 30px;
  color: #000000;
  font-weight: 500;
  font-size: 18px;
  transition: 0.5s ease;
  border-radius: 42px;
  background: var(--Main, #cdf986);
  text-align: center;
}
.btn-wrap .theme-btn.bordered {
  background: #fff;
  color: var(--black);
}
.btn-wrap .theme-btn:hover {
  transform: scale(1.03);
}
/* Theme Buttons */

/* Country Code */
.newcountrycode {
  position: relative;
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  height: 45px;
  border-radius: 5px;
}
.newcountrycode select {
  width: 56px;
  border: 0;
  padding: 0px 19px;
  font-size: 16px;
  position: relative;
  z-index: 1;
  background: transparent;
}
.newcountrycode .countrycode {
  width: 70px;
  border: 0;
  background: #f9f9f9;
  text-align: center;
  padding: 5px;
  border-radius: 5px;
  margin: 0 10px;
}
.newcountrycode .phone-field {
  width: 100%;
}
.newcountrycode input {
  border: 0;
}
/* Country Code */

/* ---------------------------footer------------------------------- */
.copyright p,
.copyright a {
  color: white;
}
ul.f-link {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-hdng p {
  color: #fff;
  line-height: normal;
  padding-bottom: 16px;
}
.hours {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-text h4 {
  color: #fcfcfc;
  font-size: 24px;
  font-weight: 600;
  line-height: 39px; 
}
.footer-text p {
  color: #fcfcfc;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px; 
}
.row.tb-border {
  border-top: 1px solid #ffffff52;
  border-bottom: 1px solid #ffffff52;
  padding: 25px 0;
  margin-top: 40px;
}

/* ----------------------------------footer---------------------- */

.design-card-list .slick-slide,
.design-card-list-2 .slick-slide {
  margin: 0 10px;
}
.design-card-list-2 {
  direction: rtl;
}
.design-card-list,
.design-card-list-2 {
  padding-bottom: 2rem;
}
.design-card-list li,
.design-card-list-2 li {
  position: relative;
  display: flex !important;
  justify-content: center;
}
.design-card-list li .indusrtry-name,
.design-card-list-2 li .indusrtry-name {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 13px 50px;
  position: absolute;
  width: auto;
  height: 66px;
  bottom: 20px;
  z-index: 1;
  background: rgb(0 0 0 / 50%);
  border-radius: 25px;
  opacity: 0;
  transition: 0.5s ease;
}
.design-card-list li:hover .indusrtry-name,
.design-card-list-2 li:hover .indusrtry-name {
  opacity: 1;
}

.rated {
  margin-bottom: 1rem;
}
.color-dark {
  color: #212121 !important;
}
.color-2 {
  color: #2d2d2d !important;
}
.mt-responsive {
  margin-top: 20px;
}
.rated p {
  font-weight: 400;
  font-size: 20px;
  line-height: 27px;
  color: #000000;
  padding: 1rem 0;
}

/* -------------------------counter CSS------------------------  */
ul#counter {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.counter-wrapper .counter {
  display: flex;
  align-items: center;
  gap: 20px;
}
.counter-wrapper .counter span.count {
  font-weight: 700;
  font-size: 45px;
  color: #000;
}
ul#counter li .counter > div {
  font-weight: 700;
  font-size: 64px;
  color: #000;
  margin-bottom: 0rem;
  flex-shrink: 0;
  font-family: "Inria Serif";
}
ul#counter li {
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  padding: 0rem;
  text-align: center;
  line-height: 28px;
  display: flex;
  align-items: start;
  justify-content: start;
}
ul#counter li .counter span.text {
  font-size: 15.3px;
  font-family: "Euclid Square";
  font-weight: normal;
}
/* -------------------------counter CSS------------------------  */

/* -------------------------contact us-------------------------- */
.input-field1 label {
  padding-left: 10px;
  color: #292929;
  font-weight: 500;
  padding-bottom: 8px;
}
.input-field1 input,
.input-field1 textarea {
  cursor: pointer;
  height: 58px;
  width: 100%;
  font-size: 16px;
  color: #222222;
  padding: 15px 14px;
  outline: none !important;
  text-transform: capitalize;
  margin-bottom: 30px;
  border-radius: 20px;
  border: solid 1px #00000021;
  background-color: #fff;
}
.input-field1 textarea {
  height: 58px;
}
.send {
  text-align: left;
  padding-top: 35px;
}
.details h5 {
  font-size: 18px;
  padding-bottom: 20px;
  color: #202529;
}
.details a {
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
.details {
  margin-bottom: 40px;
}

/* -------------------------contact us-------------------------- */

/* ---------------------------footer------------------------------- */
footer {
  background: #222222;
  padding: 60px 0px 0px 0px;
  position: relative;
  z-index: -1;
}
.copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.footer-sec p {
  color: #fff;
  line-height: 1.5;
  font-size: 16px;
  padding-top: 20px;
}
.footer-hdng h4 {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 10px;
  border-bottom: 1px solid #474747;
  display: inline-block;
  padding-bottom: 7px;
}
.f-menu li a {
  color: #fff;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
}
.footer-hdng p {
  color: #fff;
  line-height: normal;
  padding-bottom: 16px;
}
.hours {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hours p {
  color: #fff;
  font-size: 16px;
}
.f-menu li a i {
  color: #ffffff;
}

.f-menu li {
  line-height: 2;
}
.copyright-sec {
  background: #222222;
}
.f-link li {
  width: 40.8px;
  height: 40.8px;
  background: var(--primary);
  border-radius: 50px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ----------------------------------footer---------------------- */

/* 404 */
.error-text {
  font-size: 96px;
  line-height: 68px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.error-heading {
  font-weight: 500;
  font-size: 52px;
  line-height: 68px;
}
.error-image {
  margin-top: 100px;
}
.thankyou-text {
  font-size: 20px;
  initial-letter: 30;
  line-height: 34px;
  margin-top: 20px;
}
/* 404 */

/* terms */
.terms .roman {
  list-style: upper-roman;
}
.terms ul {
  padding-left: 40px;
  line-height: 25px;
  font-size: 16px;
  color: #ffffff;
}
.terms ul li {
  margin-bottom: 1rem;
  list-style: none;
  list-style: disc;
}
.terms ul li::marker {
  font-size: 22px;
  font-weight: 500;
}
.terms h4 {
  font-size: 24px;
  margin: 1rem 0;
  color: #fff;
}
.terms p {
  margin-bottom: 2rem;
  color: #afafaf;
}
/* terms */


@media (max-width: 2000px) {
    .mainBanner {
    height: 63vw;
}

}

@media (max-width: 1860px) {
    .mainBanner {
    height: 67vw;
}

}

@media (max-width: 1670px) {
    .mainBanner {
        height: 72vw;
}

}

@media (max-width: 1500px) {
    .mainBanner {
        height: 78vw;
}

}

@media (max-width: 1400px) {
    .mainBanner {
        height: 82vw;
    }

}

@media (max-width: 1300px) {
    .mainBanner {
        height: 88vw;
    }

}







@media (max-width: 2000px) {
    .inner-extra {
    height: 120vh !important;
}

}

@media (max-width: 1670px) {
    .inner-extra {
        height: 110vh !important;
}

}

@media (max-width: 1440px) {

  section {
    background-position: bottom !important;
}

  .sub-div-step-img img {
    height: 250px !important;
    width: 500px !important;
}

.amount:before {
    display: none;
}


  .inner-extra {
    height: 105vh !important;
}

.hp-banner h3 {
    margin: 50px 0px 10px 0px !important;
}

.fld-input img{
  display: none;
}

  h2.sec-1-h2 {
    font-size: 40px !important;
}

.sub-div-circle-relate p {
    font-size: 12px !important;
}

  .header-btn {
    padding: 10px 13px;
    font-size: 14px !important;
}

  .laptop-img {
    top: 9vw !important;
}

.laptop-img img {
    height: 200px !important;
}

.circle-1 {
    height: 380px !important;
    width: 380px !important;
}

.circle-2 {
    height: 500px !important;
    width: 500px !important;
    top: 19.5vw !important;
}

.circle-3 {
    height: 610px !important;
    width: 610px !important;
    top: 15vw !important;
    left: 24.2vw !important;
}

  .main-header {width: 95%;}

.menu > li {
    padding: 0px 12px !important;
}

.round-step-2 {
    display: none;
}

.round-step {
    display: none;
}

.extra-step-css {
    margin-left: 4vw !important;
}

.sub-div-step-text {
    margin-left: 100px;
}

  .mmpopup {
    height: 70vh !important;
}

.fld-input img {
    left: 5vw;
    top: 25.5vw;
}

.img-2 img {
    top: 31vw !important;
}

.img-3 img {
    top: 36.5vw;
}

.main-img-balls {
    display: none !important;
}

}

@media (max-width: 1260px) {
    .inner-extra {
        height: 100vh !important;
    }

}





@media (max-width: 1200px) {

  .mmpopup {
    height: 70vh !important;
}

.fld-input img {
    left: 5vw;
    top: 25.5vw;
}

.img-2 img {
    top: 31vw !important;
}

.img-3 img {
    top: 36.5vw;
}

  ul.menu.btns li {
    border-bottom: none !important;
}

.amount:before {
    display: none !important;
}


  .circle-1 {
    height: 375px !important;
    width: 375px !important;
}

.circle-2 {
    height: 500px !important;
    width: 500px !important;
}

.circle-3 {
    height: 605px !important;
    width: 605px !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(1) {
    right: 27vw !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(2) {
    right: 19vw !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(3) {
    right: 18vw !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(4) {right: 24vw !important;}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(2) {
    left: 22vw !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(1) {
    left: 28.5vw !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(3) {
    left: 21.5vw !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(4) {
    left: 26vw !important;
}

.laptop-img {
    left: 2vw !important;
    top: 15.7vw !important;
}

.pckg .upper .title {
    font-size: 18px;
}

.pckg .upper p {
    font-size: 14px;
    line-height: 20px;
}

.amount:before {
    background: transparent;
}

  .sub-div-circle-relate p {
    font-size: 10px !important;
}

.sub-div-circle-relate {
    gap: 11px;
}

.sub-div-circle-relate {
    width: 17%;
}

.amount:before {
    background: transparent;
}

.extra-step-css {
    margin-left: 100px !important;
}


  .main-img-balls {
    display: none ;
}

.mainBanner {
    height: 160vh !important;
}

h2.sec-1-h2 {
    font-size: 40px !important;
}

.sec-heading h2 {
    font-size: 36px !important;
}

.sec-heading .sub-heading {
    font-size: 14px !important;
}

.step-number p {
    font-size: 95px !important;
}

.sub-div-step-text h3 {
    font-size: 26px !important;
}

.sub-div-step-text p {
    font-size: 13px;
    line-height: 18px !important;
}

.sec-card-offer-sec h3 {
    font-size: 22px !important;
    margin-bottom: 1px !important;
}

.sec-card-offer-sec p {
    font-size: 14px !important;
}

.btn-wrap .theme-btn {
    font-size: 16px !important;
    padding: 14px 30px !important;
}

.sec-spending-step-text p {
    font-size: 13px !important;
    line-height: 18px !important;
}

.sec-spending-step-text h4 {
    font-size: 18px !important;
}

.number-step-spending h5 {
    font-size: 80px !important;
}

.accordion-list li h3 {
    font-size: 14px !important;
}

.answer p {
    font-size: 12px !important;
    line-height: 18px !important;
}

.sub-last-text h2 {
    font-size: 50px !important;
}

.footer-text h4 {
    font-size: 18px !important;
}

.footer-text p {
    font-size: 14px !important;
}

ul.f-menu li a {
    font-size: 15px !important;
}

.counter {
    font-size: 60px !important;
}

  header {
    padding: 1rem 0;
  }
  .btns {
    margin: 1.5rem 0;
  }
  .dropdown {
    position: unset;
    box-shadow: none;
    width: 100%;
    background: transparent;
    color: black;
  }
  .dropdown ul li a {
    padding: 0;
    line-height: 1rem;
    padding: 1rem;
    font-weight: 500;
    color: #000000;
  }
  .form-head .form-heading {
    white-space: normal;
    font-size: 20px;
  }
  .form-head {
    padding: 1rem;
  }
  .btn-normal {
    padding: 10px 8px;
  }
  .sub-menu a {
    color: #333 !important;
    margin-bottom: 0 !important;
  }
  .sub-menu {
    left: auto !important;
    padding-top: 16px;
    top: 24px;
  }
  a.header-btn {
    padding: 15px 20px !important;
    margin-bottom: 0 !important;
    display: flex !important;
    gap: 5px !important;
    align-items: center;
  }
  .menuWrap .menu:first-child {
    padding-left: 0;
    width: 100%;
  }
  img {
    max-width: 100%;
    height: auto;
  }
  .menu-Bar {
    display: block;
    top: 0px;
  }
  .menuWrap.open {
    display: flex;
    left: 0px;
  }
  .menuWrap {
    position: fixed;
    left: -210%;
    top: 0;
    bottom: 0;
    margin: auto;
    background: #ffffff;
    height: 100vh;
    display: flex;
    align-items: center;
    flex-flow: column;
    transition: all 0.4s ease;
    z-index: 3;
    width: 70%;
    overflow-y: auto;
    box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%),
      0px 2px 4px -1px rgb(0 0 0 / 6%);
  }
  ul.menu > li {
    display: flex;
    justify-content: center;
    gap: 5px;
    border-bottom: 1px solid #ddd;
    padding: 0;
    flex-direction: column;
  }
  ul.menu > li > a {
    margin-bottom: 10px;
    padding: 0;
    display: block;
    text-align: center;
    margin-bottom: 15px;
    padding-right: 0px;
    margin-right: 0px;
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
  }
  .container {
    position: relative;
  }
  header .main-header ul.menu > li > a {
    color: #333;
    width: 100%;
    text-align: left;
    margin: 0;
    display: flex;
    justify-content: space-between;
    padding: 1rem;
  }
  header .main-header ul.menu > li > a:before {
    display: none;
  }
}

@media (max-width: 1025px) {
  .btn-wrap .theme-btn {
    font-size: 16px;
  }
  .overlap-slider {
    width: 100%;
    position: relative;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

.hp-banner h3 {
    margin: 60px 0px 0px 0px !important;
}

      .laptop-img img {
        height: 150px !important;
    }

  .fld-input img {
    height: 15px !important;
    position: absolute !important;
    left: 6vw !important;
    top: 30.7vw !important;
}
.img-2 img{
    top: 37.4vw !important;
}
.img-3 img{
    top: 44.1vw !important;
}

  
  .circle-1 {
    height: 325px !important;
    width: 325px !important;
}

.circle-2 {
    height: 420px !important;
    width: 420px !important;
}

.circle-3 {
    height: 520px !important;
    width: 520px !important;
    top: 14vw !important;
}


  .sub-div-step-text p {
    font-size: 14px !important;
    width: 90% !important;
}

.sub-div-step-img img {
    height: 200px !important;
    width: 400px !important;
}

.tabs-offer-sec a {
    margin: 20px 5px 0px 0px !important;
    padding: 5px 10px !important;
    font-size: 12px !important;
}

.sec-card-offer-sec {
    padding: 30px 15px 0px 20px !important;
}
  

      .extra-step-css {
        margin-left: 20px !important;
    }

  .inner-extra{
    height: 105vh !important;
  }
  
      .mainBanner {
        height: 105vh !important;
    }

  .pckg .upper p {
    font-size: 14px !important;
}

.sec-price-sub h4 {
    font-size: 18px !important;
}

.pckg .upper .price .amount {
    font-size: 36px !important;
}

.sec-price-sub {
    padding: 5px 5px !important;
}

.bottom span {
    font-size: 16px !important;
}

.pckg .bottom ul li {
    font-size: 14px !important;
}

.pckg {
    padding: 22px 20px 10px;
}

  .mmpopup {
    height: 70vh !important;
}

.mmpopup .centercont p {
    display: none !important;
}

.mmpopup .centercont h4 span {
    color: black !important;
    text-align: center !important;
}

.mmpopup {
    background-size: contain !important;
}

.mmpopup .centercont h3 span {
    font-size: 29px !important;
}

.centercont.dynamic {
    margin-top: 11vw !important;
}

  .number-step-spending h5 {
    font-size: 80px !important;
}

.main-text-counter-sec {
    padding: 20px 10px !important;
    gap: 10px !important;
}


  h1.banner-heading {
    font-size: 60px !important;
    line-height: 60px !important;
}

.pckg .upper .price .amount {
    font-size: 34px !important;
}

.pckg .upper p {
    font-size: 14px !important;
}

.sec-price-sub h4 {
    font-size: 20px !important;
}

.sec-heading p {
    width: 90% !important;
}

}

@media only screen and (min-width: 768px) and (max-width: 991px) {

  .main-steps-sec-div:before {
    display: none !important;
}

.sec-2-theme-extra {
    display: block !important;
}

.col-lg-12.p-0.d-flex.align-items-center {
    margin: 0 !important;
}

  .hp-banner p {
    width: 100% !important;
}

      .mainBanner
 {
        /* height: 147vw !important; */
    }

  .number-step-spending p {
    text-align: end !important;
    line-height: 50px !important;
    font-size: 60px !important;
    font-weight: 500 !important;
}

.card-theme-sec-3 {
    margin-bottom: 30px !important;
}

.img-for-d-flex-div img {
    display: none !important;
}

.img-for-d-flex-div {
    width: 100% !important;
}

.sec-2-theme-extra {
    display: block !important;
}

.inner-extra {
    height: 100vh !important;
}

.hp-banner h3 {
    margin: 70px 0px 10px 0px !important;
}

.card-theme-sec-1 {
    margin-bottom: 25px !important;
}
  
  .sub-div-circle-relate {
    width: 22% !important;
}

  .footer-sec {
    text-align: center !important;
    margin-bottom: 30px !important;
}


.footer-text {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.cards-img {
    text-align: center !important;
}

.banner-imgbg {
    display: none !important;
}

.laptop-img img {
    display: none !important;
}

.circle-3 {
    display: none !important;
}

.circle-2 {
    display: none !important;
}

.circle-1 {
    display: none !important;
}

.list-row-circle-relate-main-1 {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: space-around;
    margin-bottom: 30px;
}

.list-row-circle-relate-main-2 {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: space-around;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(4) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(3) {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(2) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(1) {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
}


.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(4) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(3) {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(2) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(1) {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
}
  .sub-div-step-text {
    border-radius: 34px !important;
    border: 1px solid rgba(217, 217, 217, 0.2) !important;
    background: #252525 !important;
    padding: 40px 40px !important;
    margin-bottom: 30px !important;
}

.faqs-img {
    display: none !important;
}

  .col-lg-12.col-md-12.col-12.p-0.d-flex.align-items-center {
    margin: 0 !important;
}

  .sec-spending-img {
    display: none !important;
}

  h2.sec-1-h2 {
    margin: 0 !important;
    width: 100% !important;
}

.sub-div-step-img {
    display: none !important;
}

.col-lg-5.col-md-12.col-12.p-0 {
    display: none !important;
}



  h1.banner-heading {
    font-size: 56px !important;
    line-height: 56px !important;
}

.sec-heading p {
    width: 90% !important;
}

.sec-card-offer-sec {
    text-align: center !important;
}

.sec-spending-step-text {
    margin-bottom: 20px !important;
}

}

@media only screen and (min-width: 568px) and (max-width: 767px) {

  .main-steps-sec-div:before {
    display: none !important;
}

.sec-2-theme-extra {
    display: block !important;
}

.col-lg-12.p-0.d-flex.align-items-center {
    margin: 0 !important;
}

  .banner-ul {
    width: 100% !important;
}

.hp-banner h3 {
    margin: 50px 0px 10px 0px !important;
}

section.sec-round-laptop {
    height: 85vw !important;
}

      .mainBanner {
        height: 145vh !important;
    }

  .inner-extra {
    height: 100vh !important;
}

.hp-banner h3 {margin: 50px 0px 10px 0px !important;}

.hp-banner p {
    width: 95% !important;
}

.card-theme-sec-1 {
    margin-bottom: 20px;
}

section {
    background-position: bottom !important;
}

.img-for-d-flex-div img {
    display: none !important;
}

.img-for-d-flex-div {
    width: 100% !important;
}

.sec-2-theme-card.sec-2-theme-extra {
    display: block !important;
}

.card-theme-sec-3 {
    margin-bottom: 30px !important;
}

.number-step-spending p {
    text-align: end !important;
    line-height: 60px !important;
    font-size: 60px !important;
    font-weight: 600 !important;
}

.sub-last-text h2 {
    font-size: 42px !important;
}

.footer-hdng h4 {
    margin-top: 30px !important;
}

  .fld-input img {
    display: none !important;
}

.mmpopup .centercont h3 span {
    font-size: 26px !important;
}

.centercont.dynamic {
    width: 100% !important;
}

    .sub-div-circle-relate {
    width: 24% !important;
    margin-bottom: 20px !important;
}

  .footer-sec {
    text-align: center !important;
    margin-bottom: 30px !important;
}


.footer-text {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.cards-img {
    text-align: center !important;
}

.banner-imgbg {
    display: none !important;
}

.laptop-img img {
    display: none !important;
}

.circle-3 {
    display: none !important;
}

.circle-2 {
    display: none !important;
}

.circle-1 {
    display: none !important;
}
.list-row-circle-relate-main-1 {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: space-around;
}

.list-row-circle-relate-main-2 {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: space-around;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(4) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(3) {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(2) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(1) {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
}


.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(4) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(3) {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(2) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(1) {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
}



    .sub-div-step-text {
    border-radius: 34px !important;
    border: 1px solid rgba(217, 217, 217, 0.2) !important;
    background: #252525 !important;
    padding: 40px 40px !important;
    width: 90% !important;
    margin: auto !important;
    margin-bottom: 30px !important;
}

.faqs-img {
    display: none !important;
}

  .col-lg-12.col-md-12.col-12.p-0.d-flex.align-items-center {
    margin: 0 !important;
}

    .sec-spending-img {
    display: none !important;
}

  h2.sec-1-h2 {
    margin: 0 !important;
    width: 100% !important;
}

.sub-div-step-img {
    display: none !important ;
}

.col-lg-5.col-md-12.col-12.p-0 {
    display: none !important;
}

.sec-spending-step-text {
    margin-bottom: 20px !important;
}

}

@media only screen and (min-width: 414px) and (max-width: 567px) {
    
    .counter {
    font-size: 40px !important;
}

  .main-steps-sec-div:before {
    display: none !important;
}

.sec-2-theme-extra {
    display: block !important;
}

.col-lg-12.p-0.d-flex.align-items-center {
    margin: 0 !important;
}

      .mainBanner
 {
        height: 144vh !important;
    }

.hp-banner h3 {
    margin: 60px 0px 10px 0px !important;
}

section {
    background-position: bottom !important;
}
  .sec-2-theme-extra {
    display: block !important;
    width: 100% !important;
}

.img-for-d-flex-div {
    width: 100% !important;
}

.mmpopup {
    height: 52vh !important;
    background-size: contain !important;
}

section.faqs {background-position: bottom !important;}

  section.counter-sec {
    background-position: bottom !important;
}

.main-text-counter-sec {
    gap: 0 !important;
    padding: 20px 0px !important;
}

.number-step-spending p {
    font-size: 60px !important;
    text-align: end !important;
    line-height: 40px !important;
    font-weight: 500 !important;
}

section.sec-1 {
    background-position: bottom !important;
}

.card-theme-sec-3 {
    margin-bottom: 30px !important;
}

.img-for-d-flex-div img {
    display: none !important;
}

.card-theme-sec-1 {
    margin-bottom: 30px !important;
}

section.theme-sec-2 {
    background-position: bottom;
}

.sec-offer-text .span-banner {
    display: none !important;
}

  ul.accordion-list li h3:after {
    right: -24px !important;
    top: -1px !important;
}

  .footer-hdng {
    margin-top: 40px !important;
}

  .sub-last-text a svg {
    height: 70px !important;
}

.banner-content .span-banner {
    display: none !important;
}

.sec-card-offer-sec {
    padding: 20px 20px !important;
}

.sub-last-text h2 {
    font-size: 30px !important;
}

  .banner-ul {
    width: 100% !important;
}

.inner-extra {height: 101vh !important;}

.hp-banner p {
    width: 92% !important;
}

section.sec-round-laptop {
    height: 660px !important;
}

section.step-spending {
    background-position: bottom !important;
}

  .fld-input img {
    display: none !important;
}

.mmpopup .centercont h3 span {
    font-size: 21px !important;
}

.centercont.dynamic {
    width: 100% !important;
}

    .sub-div-circle-relate {
    width: 48% !important;
    margin-bottom: 20px !important;
}

  .footer-sec {
    text-align: center !important;
    margin-bottom: 30px !important;
}


.footer-text {
    text-align: center !important;
    margin-bottom: 30px !important;
}

.cards-img {
    text-align: center !important;
}

.banner-imgbg {
    display: none !important;
}

.laptop-img img {
    display: none !important;
}

.circle-3 {
    display: none !important;
}

.circle-2 {
    display: none !important;
}

.circle-1 {
    display: none !important;
}

.list-row-circle-relate-main-1 {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: space-around;
    margin-bottom: 20px !important;
}

.list-row-circle-relate-main-2 {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    justify-content: space-around;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(4) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(3) {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(2) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(1) {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
}


.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(4) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(3) {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(2) {
    position: relative !important;
    top: 0vw !important;
    left: 0vw !important;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(1) {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
}
  .sub-div-step-text {
    border-radius: 34px !important;
    border: 1px solid rgba(217, 217, 217, 0.2) !important;
    background: #252525 !important;
    padding: 40px 40px !important;
    width: 90% !important;
    margin: auto !important;
    margin-bottom: 30px !important;
    padding: 20px 20px !important;
}

.faqs-img {
    display: none !important;
}

  .col-lg-12.col-md-12.col-12.p-0.d-flex.align-items-center {
    margin: 0 !important;
}

  .sec-spending-step-text {
    margin-bottom: 20px !important;
}

    .sec-spending-img {
    display: none !important;
}

  h2.sec-1-h2 {
    margin: 0 !important;
    width: 100% !important;
}

.sub-div-step-img {
    display: none !important;
}

.col-lg-5.col-md-12.col-12.p-0 {
    display: none !important;
}

}

@media only screen and (min-width: 375px) and (max-width: 736px) {
  .pkg-list {
    grid-template-columns: repeat(1, 1fr);
  }
  header {
    padding: 1rem 0;
  }
  .banner-content {
    padding: 160px 0 20px;
  }
  span.sub-heading {
    margin-bottom: 1rem;
    font-size: 12px;
  }
  h1.banner-heading {
    font-size: 35px;
    line-height: 36px;
    margin-bottom: 1rem;
  }
  p.banner-text {
    max-width: 100%;
    font-size: 16px;
    line-height: 25px;
    width: 95%;
  }
  .btn-wrap {
    flex-direction: column;
    margin-bottom: 2rem;
  }
  .btn-wrap a {
    width: 100%;
    text-align: center;
  }
  .banner-img {
    display: none;
  }
  .sec-heading h2 {
    font-size: 26px !important;
    line-height: 34px;
  }
  .sec-heading p {
    font-size: 16px;
    line-height: 26px;
    width: 90%;
  }
  .sec-heading .sub-heading {
    margin-bottom: 0.5rem;
  }
  .copyright {
    flex-direction: column;
    gap: 12px;
  }
}

ul.banner-ul li {
 color: #fcfcfc;
 font-size: 16px;
 font-weight: 300;
 letter-spacing: 0.4px;
 line-height: 18px;
 border-bottom: 2px solid #373f32;
 width: 100%;
 padding: 12px 0px 12px 18px;
 margin: auto;
 position: relative;
 z-index: 0;
 opacity: 0.7;
 text-align: start;
}

ul.banner-ul li.last {
  border: none;
}

ul.banner-ul li:before {
  position: absolute;
  z-index: 0;
  background-image: url(../images/banner/list.webp);
  background-repeat: no-repeat;
  top: 10px;
  left: -3px;
  content: "";
  height: 100%;
  width: 100%;
}

.main-img-balls {
  height: 0px;
}

.sub-small-plus {
  position: relative;
  z-index: -1;
  bottom: 28vw;
  left: 25vw;
}

.sub-large-plus {
  position: relative;
  z-index: -1;
  bottom: 24vw;
  right: 26vw;
}

@keyframes moveUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-400px);
  }
}

.mainBanner:before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 40px;
  background-image: url(../images/banner/vector.webp);
  background-repeat: no-repeat;
  width: 12vw;
  height: 100%;
  content: "";
}

.mainBanner:after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  background-image: url(../images/banner/vector.webp);
  background-repeat: no-repeat;
  width: 12vw;
  height: 100%;
  content: "";
}

.hp-banner p {
  color: #000;
  font-size: 18px;
  width: 50%;
  font-weight: 500;
  line-height: 24px;
  margin: auto;
  padding-bottom: 30px;
}

.hp-banner h3 {
  color: #000;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
  margin: 100px 0px 10px 0px;
}

.hp-banner {
  height: 250px;
}

h2.sec-1-h2 {
  width: 125%;
  margin-left: -170px;
  font-size: 50px;
  line-height: 1.1;
  margin-top: -70px;
}

.banner-imgbg .box {
  position: absolute;
  background: #8eb355;
  border-radius: 100%;
  animation: ripple 3s infinite ease-in-out;
  height: 20vw;
  width: 20vw;
}
.banner-imgbg .box:nth-child(1) {
  inset: 40%;
  top: 30vw;
  z-index: 5;
  opacity: 1;
  animation-delay: 0.2s;
  left: 39vw;
}
.banner-imgbg .box:nth-child(2) {
  inset: 40%;
  z-index: 4;
  top: 30vw;
  opacity: 0.2;
  animation-delay: 0.4s;
  left: 39vw;
}
.banner-imgbg .box:nth-child(3) {
  inset: 40%;
  z-index: 3;
  opacity: 0.15;
  animation-delay: 0.6s;
  left: 39vw;
  top: 30vw;
}
.banner-imgbg .box:nth-child(4) {
  inset: 40%;
  z-index: 2;
  opacity: 0.08;
  animation-delay: 0.8s;
  left: 39vw;
  top: 30vw;
}
.banner-imgbg .box:nth-child(5) {
  inset: 40%;
  z-index: 1;
  opacity: 0.03;
  animation-delay: 1s;
  left: 39vw;
  top: 30vw;
}
@keyframes ripple {
  0% {
    transform: scale(1);
    box-shadow: #0000004d 0 10px 10px 0;
  }
  50% {
    transform: scale(1.3);
    box-shadow: #0000004d 0 30px 20px 0;
  }
  100% {
    transform: scale(1);
    box-shadow: #0000004d 0 10px 10px 0;
  }
}

.laptop-img {
  text-align: center;
  z-index: 5;
  position: relative;
  top: 18.9vw;
  left: -0.5vw;
}
.circle-1 {
  position: absolute;
  z-index: 0;
  height: 32vw;
  width: 32vw;
  border: 1px solid #d9d9d9;
  border-radius: 100%;
  top: 24.5vw;
  left: 33.5vw;
  opacity: 0.3;
}
.circle-2 {
  position: absolute;
  z-index: 0;
  height: 42.5vw;
  width: 42.5vw;
  border: 1px solid #d9d9d9;
  border-radius: 100%;
  top: 18.5vw;
  left: 28.5vw;
  opacity: 0.1;
}
.circle-3 {
  position: absolute;
  z-index: 0;
  height: 53vw;
  width: 53vw;
  border: 1px solid #d9d9d9;
  border-radius: 100%;
  top: 13vw;
  left: 23.5vw;
  opacity: 0.1;
}

section.sec-round-laptop {
  height: 71vw;
  border-radius: 80px 80px 0px 0px;
  position: relative;
  background-repeat: no-repeat;
  padding: 5rem 0px 5rem 0px;
  z-index: -1;
  background-size: cover;
  background-position: center;
}

.span-banner {
  text-align: center;
}
.sub-div-circle-relate {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 300px;
  border: 1px solid rgba(217, 217, 217, 0.62);
  background: #101010;
  width: 18%;
  padding: 5px 10px;
  justify-content: space-between;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(1) {
  position: absolute;
  z-index: 0;
  top: 24vw;
  left: 25vw;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(2) {
  position: absolute;
  z-index: 0;
  top: 32vw;
  left: 19vw;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(3) {
  position: absolute;
  z-index: 0;
  top: 41vw;
  left: 17vw;
}

.list-row-circle-relate-main-1 .sub-div-circle-relate:nth-child(4) {
  position: absolute;
  z-index: 0;
  top: 50vw;
  left: 21vw;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(1) {
  position: absolute;
  z-index: 0;
  top: 24vw;
  right: 27vw;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(2) {
  position: absolute;
  z-index: 0;
  top: 32vw;
  right: 20.5vw;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(3) {
  position: absolute;
  z-index: 0;
  top: 41vw;
  right: 19vw;
}

.list-row-circle-relate-main-2 .sub-div-circle-relate:nth-child(4) {
  position: absolute;
  z-index: 0;
  top: 51vw;
  right: 22.4vw;
}

a.simple-btn {
  color: #fcfcfc;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 24px;
  letter-spacing: -0.28px;
}

section.sec-spending {
  padding: 4rem 0px 0px 0px;
  background-repeat: no-repeat;
  background-size: cover;
}

.sec-price-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
}
.sec-price-sub {
  border-radius: 10px;
  border: 1px solid rgba(205, 249, 134, 0.1);
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 10px;
}
.sec-price-sub h4 {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 0.3;
  padding-bottom: 8px;
  font-family: 'DMSans';
}
.sec-price-sub p {
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 400 !important;
}
.amount:before {
  position: absolute;
  z-index: 0;
  background: #3a3b36;
  top: -10px;
  right: -86px;
  height: 65px;
  width: 2px;
  content: "";
}
.amount {
  position: relative;
  z-index: 0;
}
.main-steps-sec-div {
  padding: 4rem 0rem 4rem 0rem;
  position: relative;
  z-index: 2;
}
.sub-div-step-img {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}
.step-number p {
  color: rgba(252, 252, 252, 0.1);
  font-size: 100px;
  font-weight: 600;
  position: relative;
  z-index: 2;
  left: 0vw;
}
.round-step {
  border-radius: 340px;
  border: 5px dashed #d9d9d9;
  opacity: 0.4;
  width: 340px;
  height: 340px;
  position: absolute;
  left: 13.5vw;
  z-index: -1;
  transition: all ease 0.5s;
}
.round-step-2 {
  border-radius: 340px;
  border: 5px dashed #d9d9d9;
  opacity: 0.4;
  width: 321px;
  height: 340px;
  position: absolute;
  left: 19.5vw;
  z-index: -1;
}
.step-number p:before {
  position: absolute;
  z-index: -1;
  top: -50px;
  left: -25px;
  background: linear-gradient(270deg, #141414, #141414, transparent);
  height: 200px;
  width: 100%;
  content: "";
}
.main-steps-sec-div:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.sub-div-step-text h3 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  line-height: 39px;
  margin-bottom: 10px;
}
.sub-div-step-text p {
  color: #fcfcfc;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.67;
}
.sub-div-step-text {
  width: 80%;
  padding-left: 80px;
}
.extra-step-css {
  margin-left: -130px;
}
.main-steps-sec-div:hover .step-number {
  display: block;
  transition: all ease 0.5s;
}
.step-number {
  transition: all ease 0.5s;
}
.main-steps-sec-div:hover .round-step {
  display: block;
  transition: all ease 0.5s;
}
.main-steps-sec-div:hover .round-step-2 {
  display: block;
  transition: all ease 0.5s;
}
section.steps {
  position: relative;
  z-index: -1;
}
section.steps:before {
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 42vw;
  background-image: url(../images/banner/circle-step.webp);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  content: "";
}
.sec-card-offer-sec {
  border-radius: 34px;
  border: 1px solid rgba(217, 217, 217, 0.2);
  background: #252525;
  padding: 40px 40px 0px 40px;
  margin-bottom: 30px;
  overflow: hidden;
}
.sec-card-offer-sec h3 {
  color: #fff;
  font-size: 34px;
  line-height: 40px;
  margin-bottom: 15px;
  font-weight: 600;
}
.sec-card-offer-sec p {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  opacity: 0.67;
}
.tabs-offer-sec a {
  border-radius: 100px;
  border: 1px solid rgba(205, 249, 134, 0.2);
  background: rgba(205, 249, 134, 0.02);
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  opacity: 0.67;
  padding: 5px 15px;
  margin: 20px 10px 0px 0px;
}
main {
  padding-top: 120px;
}
section.step-spending {
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
}
.number-step-spending h5 {
  color: #3a3a3a;
  font-size: 115px;
  font-family: 'DMSans';
  font-weight: 600;
  text-align: end;
  line-height: 1;
  opacity: 1;
}
.sec-spending-step-text h4 {
  color: #fcfcfc;
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  border-bottom: 1px solid #5b5b5b;
  padding-bottom: 12px;
}
.sec-spending-step-text p {
  color: #fcfcfc;
  font-size: 15px;
  font-weight: 300;
  opacity: 0.67;
  line-height: 1.56;
}
.sec-spending-step-text {
  border-radius: 20px;
  background: #252525;
  padding: 20px 20px;
}
.sec-spending-img img {
  height: 100%;
  width: 100%;
}
.main-steps-sec-div:before {
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 15vw;
  height: 2px;
  width: 70vw;
  content: "";
  opacity: 0.1;
  background: #d9d9d9;
}
section.sec-text-offer {
  background-size: cover;
  background-repeat: no-repeat;
  padding: 6rem 0px;
  border-radius: 0px 80px 0px 0px;
}
.main-text-counter-sec {
  display: flex;
  align-items: anchor-center;
  gap: 20px;
  border-radius: 20px;
  border: 1px solid rgba(217, 217, 217, 0.3);
  background: #252525;
  padding: 30px 20px;
  margin-bottom: 20px;
  justify-content: start;
}
.counter {
  font-size: 50px;
  font-weight: 700;
  width: 150px;
}
.sub-div-counter h4 {
  color: #fcfcfc;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  border-bottom: 1px solid #5b5b5b;
  padding-bottom: 12px;
}
.sub-div-counter p {
  color: #fcfcfc;
  font-size: 15px;
  font-weight: 300;
  opacity: 0.67;
  line-height: 1.56;
}
.main-counter-img-logos {
  border-radius: 20px;
  border: 1px solid rgba(217, 217, 217, 0.3);
  background: #252525;
  padding: 40px 20px 25px 20px;
}
.logo-img-counter {
  text-align: center;
  border-radius: 15px;
  border: 2px solid rgba(217, 217, 217, 0.1);
  background: #252525;
  padding: 20px 10px;
  margin-bottom: 19px;
}
.reviews-cards-main {
  margin-bottom: 20px;
  padding: 25px 25px;
  border-radius: 20px;
  border: 1px solid rgba(217, 217, 217, 0.3);
  background: #252525;
}
.reviews-cards-main p {
  color: #fff;
  font-size: 14px;
  font-weight: 300;
  opacity: 0.6;
  line-height: 20px;
  text-align: start;
}
.pro-text p {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  line-height: normal;
}
.pro-text h6 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: capitalize;
}
.pro-main {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}
.faqs-img {
    text-align: center;
}
section.sec-last {
    background: #222222;
    padding: 2rem 0px;
    border-bottom: 1px solid #333333;
}
.sec-last-text-sec {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sub-last-text h2 {
    color: #FCFCFC;
    text-align: center;
    font-size: 74px;
    font-weight: 600;
    line-height: 44px;
}
.portfolio-sec-img {
    text-align: center;
    margin-bottom: 30px;
}
.inner-extra {
    height: 54vw;
    background-size: cover;
    background-position: bottom;
}
.extra-large {
    bottom: 12vw;
}
.extra-small {
    bottom: 22vw;
}
.ml2 .letter {
  display: inline-block;
  line-height: 1em;
}
.custome-modal-field img {
    width: 14px;
    margin-top: 4px;
    margin-right: 5px;
    position: absolute;
    top: 10px;
    left: 15px;
    object-fit: contain;
}
.fld-input img {
    display: none;
}
.img-2 img{
    top: 19.4vw;
}
.img-3 img{
    top: 22.9vw;
}
.contact-text-form h4 {
    color: #FFF;
    font-size: 44px;
    font-weight: 500;
    line-height: 45px; 
    letter-spacing: 0.88px;
    margin-bottom: 10px;
}
.contact-text p {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #fcfcfc;
    margin-bottom: 1.2rem;
    opacity: 0.7;
}
.contact-text-form p {
    font-weight: 300;
    font-size: 16px;
    line-height: 22px;
    color: #fcfcfc;
    margin-bottom: 1rem;
    opacity: 0.7;
    width: 85%;
}
.input-label-div label {
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    line-height: normal;
    opacity: 0.7;
    margin: 7px 5px;
}
.input-label-div {
    margin-bottom: 10px;
}
.input-label-div input {
    border: 1px solid rgba(217, 217, 217, 0.30);
    background: transparent;
    color: white;
}
.input-label-div textarea {
    border: 1px solid rgba(217, 217, 217, 0.30);
    background: transparent;
    height: 150px !important;
    align-self: stretch;
}
.input-label-div input:focus {
    background: transparent;
    color: white;
}
.contact-text h5 {
    color: #FFF;
    font-size: 24px;
    font-weight: 600;
    line-height: 30px; 
    letter-spacing: 0.48px;
    text-transform: capitalize;
    margin-bottom: 10px;
}
.btn-contact a {
    border-radius: 60px;
    border: 1px solid rgba(205, 249, 134, 0.50);
    background: rgba(205, 249, 134, 0.10);
    color: #fff;
    padding: 17px 22px;
    margin: 0px 5px;
    font-size: 16px;
}
.btn-contact {
    margin-bottom: 40px;
    display: flex;
}
.contact-text {
    border-radius: 20px;
    border: 1px solid rgba(217, 217, 217, 0.30);
    background: #252525;
    padding: 20px 20px 30px 20px;
    width: 90%;
    margin: auto;
}
.img-contact {
    text-align: center;
}
button.btn-contact-submit {
    padding: 15px 20px;
    padding: 18px 30px;
    color: #000000 !important;
    font-weight: 500;
    font-size: 18px;
    transition: 0.5s ease;
    border-radius: 42px;
    background: var(--Main, #cdf986);
    width: 100%;
    border: none;
    margin-top: 10px;
}
.card-theme-sec-1 {
    border-radius: 20px;
    background: #252525;
    text-align: center;
    padding: 20px 20px;
}
.card-theme-sec-1 h3 {
    color: #FCFCFC;
    font-size: 20px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 15px;
}
.sec-2-theme-card {
    border-radius: 34px;
    border: 1px solid rgba(217, 217, 217, 0.20);
    background: #252525;
    padding: 30px 20px 20px 20px;
}
.sec-2-theme-extra {
     display: flex; 
     align-items: center; 
     gap: 10px; 
}
.sec-2-theme-card img {
    width: 100%;
}
.sec-2-theme-card p {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px; 
    opacity: 0.67;
    margin-bottom: 30px;
}
.sec-2-theme-card h3 {
    color: #FFF;
    font-size: 34px;
    font-weight: 600;
    line-height: 39px;
    margin-bottom: 14px;
}
.card-theme-sec-3 {
    border-radius: 20px;
    border: 1px solid rgba(217, 217, 217, 0.20);
    background: #252525;
    padding: 20px 20px;
}
.card-theme-sec-3 h3 {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
    margin-bottom: 10px;
}
.card-theme-sec-3 p {
    color: #FCFCFC;
    font-size: 14px;
    font-weight: 400;
    line-height: 19px; 
    letter-spacing: -0.14px;
    opacity: 0.67;
    margin-bottom: 15px;
}
.card-theme-sec-3 img {
    width: 100%;
}
.fld-input input::placeholder {
  color: black;
  opacity: 1; 
  font-weight: 500;
}
.img-for-d-flex-div {
    width: 50%;
}
.img-for-d-flex-div h3 {
    font-size: 36px;
}
.offer-sec-img img {
    margin-bottom: -4px;
}
.testi-slide {
    margin-bottom: 30px;
}

.drop-card-main {
    border-radius: 20px;
    border: 1px solid rgba(217, 217, 217, 0.20);
    background: #252525;
    padding: 20px 20px;
    margin-bottom: 30px;
}

.drop-card-main p {
    color: #FCFCFC;
    font-size: 14px;
    font-style: normal;
    line-height: 19px;
    margin: 10px 0px -5px 0px;
    opacity: 0.67;
}

.drop-card-main h4 {
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: normal;
}

.drop-card-main img {
    width: 100%;
}

.step-number-extra p:before {
    background: transparent;
}

.step-number.step-number-extra {
    position: relative;
    left: -5vw;
}

section.steps.step-drop-ex:before {
    background: transparent;
}

.sec-2-drop-card h3 {
    color: #FFF;
    font-size: 34px;
    font-weight: 600;
    line-height: 39px; 
    margin-bottom: 10px;
}

.sec-2-drop-card p {
    color: #FFF;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.67;
}

.extra-img-card img {
    height: 100px;
    width: 100px;
    margin-bottom: 12px;
}














ul.overview-nav.d2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
}

ul.overview-nav.d2 li.active a {
    padding: 15px 20px;
    padding: 18px 30px;
    color: #000000 !important;
    font-weight: 500;
    font-size: 18px;
    transition: 0.5s ease;
    border-radius: 42px;
    background: var(--Main, #cdf986);
}

ul.overview-nav.d2 li a {
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    padding: 18px 30px;
    font-weight: 500;
    font-size: 18px;
    transition: 0.5s ease;
    border-radius: 42px;
    background: transparent;
}

