@import url(https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&display=swap);
@import url(animate.min.css);

@font-face {
  font-family: "HK Grotesk";
  src: url("/fonts/HKGrotesk-Bold.woff2") format("woff2"),
    url("/fonts/HKGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "HK Grotesk";
  src: url("/fonts/HKGrotesk-Regular.woff2") format("woff2"),
    url("/fonts/HKGrotesk-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family: "HK Grotesk";
  --font-bold: bold;
  --font-normal: normal;

  --main-heading-color: #1c1919;
  --sub-heading-color: #1c1919;
  --auth-main-heading-color: #1c1919;
  --auth-sub-heading-color: #808080;
  --input-color: #808080;
  --paragraph-color: #000000;
  --subs-heading-color: #0b0b0b;
  --base-color: #25a450;
  --btn-bg-color: #60ca9c;
  --btn-color: #fff;
  --social-links-bg: #e4e4e4;

  --font-main-heading: 64px;
  --font-sub-heading: 20px;
  --font-auth-main-heading: 16px;
  --font-auth-sub-heading: 14px;
  --font-paragraph: 18px;
  --font-subs-heading: 36px;
  --font-input: 18px;

  --height-main-heading: 72px;
  --height-sub-heading: 30px;
  --height-auth-main-heading: 24px;
  --height-auth-sub-heading: 20px;
  --height-paragraph: 30px;
  --height-subs-heading: 42px;
  --height-input: 30px;

  --margin-main-heading: 24px;
  --margin-sub-heading: 32px;
  --margin-subs-heading: 48px;
  --letter-spacing-sub-heading: -0.75px;

  --auth-padding: 24px;
  --para-padding: 32px;

  --main-container-width: 960px;
  --content-width: 100%;
  --input-width: 376px;

  --input-border: 8px;
  --input-border-color: 1px solid rgba(96, 202, 156, 0.24);
  --btn-border-radius: 8px;
  --btn-box-shadow: 0px 10px 20px rgba(96, 202, 156, 0.18),
    0px 2px 6px rgba(96, 202, 156, 0.12), 0px 0px 1px rgba(0, 0, 0, 0.04);
}

:root {
  --nav-color: #565656;
  --font-navs: 16px;
  --height-navs: 24px;
}

* {
  margin: 0;
  scroll-behavior: smooth;
  font-family: "DM Sans", sans-serif;
}

a {
  transition: 0.3s;
  color: #60ca9c;
  text-decoration: none;
}

a:active,
a:focus,
a:hover,
a:hover:focus {
  color: #4abb8a !important;
}

img {
  max-width: 100%;
}

*,
:focus,
:hover {
  outline: 0;
}

body,
html {
  height: 100%;
  color: grey;
}

body {
  font-size: 14px;
  line-height: 24px;
}

.noselect {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

.container {
  width: 84.53%;
  padding-left: 0;
  padding-right: 0;
  max-width: 1440px;
}

.wh-bg-sec .ccol .link.dis,
.wh-bg-sec .ccol .link.dis:hover,
.wh-bg-sec .ccol .link.dis:focus {
  color: #60ca9c !important;
  opacity: 0.6;
}

@media (max-width: 991px) {
  .container {
    width: 90%;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.mb-img,
.mb-show {
  display: none;
}

@media (max-width: 810px) {
  .mb-img {
    display: block;
  }
}

@media (max-width: 767px) {
  .container {
    width: 100%;
  }
}

/*--------------Header------------------------------------------*/
header .container-fluid {
  padding: 6px 32px;
}

header.fixed {
  position: absolute;
  padding-top: 10px;
  width: 100%;
  top: 0;
  z-index: 2;
}

header.fixed-enabled {
  position: fixed !important;
  background-color: #f2f2f2;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.8s ease;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  z-index: 999;
  box-shadow: 0px 1px 4px rgb(0 0 0 / 8%), 0px 8px 16px rgb(0 0 0 / 4%);
  padding: 4px 0px;
  padding-bottom: 6px !important;
}

header.fixed-enabled .col-4.ccol {
  display: block;
  max-width: 141px;
}

header.fixed-enabled .col-8 {
  flex: 1 0 0%;
}

header ul {
  list-style: none;
  padding-left: 0px;
  margin-bottom: 0px;
}

header ul li {
  display: inline-block;
}

header .links a {
  color: #767676;
  line-height: var(--height-navs);
  margin-right: 32px;
  font-size: var(--font-navs);
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
}

header .ul li:last-child a {
  margin-right: 0;
}

header .links a svg {
  margin-left: 6px;
  transition: all 125ms ease 0s;
  position: relative;
  top: -1px;
}

header .links a:active svg path,
header .links a:focus svg path,
header .links a:hover svg path,
header .links a:hover:focus svg path {
  fill: #4abb8a;
}

.show-nav {
  display: none;
}

.logo-li {
  display: none;
}

@media (max-width: 980px) {
  header .links ul li a {
    margin-right: 15px;
  }
}

@media (max-width: 860px) {
  header .links ul li a {
    font-size: 14px;
    line-height: 18px;
  }
}


@media (max-width: 788px) {
  header .links ul li a {
    margin-right: 13px;
  }

  header .links ul li:last-child a {
    margin-right: 0;
  }

}

@media (max-width: 767px) {
  header .col-4.ccol {
    display: none;
  }

  header .col-8.ccol {
    width: 100%;
  }

  .logo-li {
    display: block;
  }

  .logo {
    display: none;
  }

  .fixed-enabled .logo {
    display: inline-block;
  }

  .mb-show {
    display: block;
    text-align: center;
    max-width: 128px;
    margin: auto;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    padding-top: 11px;
  }

  .show-nav {
    display: block;
    float: right;
    position: relative;
    top: 7px;
    z-index: 9999;
  }

  .fixed-enabled .show-nav {
    top: 0px;
  }

  .show-nav.bt .cl {
    display: none;
  }

  .show-nav.bt.active .open {
    display: none;
  }

  .show-nav.bt.active .cl {
    display: block;
  }

  header ul.animated {
    display: block;
  }

  header ul {
    position: absolute;
    width: 100%;
    max-width: 100%;
    background-color: #ffffff;
    padding-top: 15px;
    border-radius: 4px;
    top: 0px;
    left: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    z-index: 999;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 4%), 0px 2px 6px rgb(0 0 0 / 4%),
      0px 0px 1px rgb(0 0 0 / 4%);
    display: none;
  }

  header ul li {
    width: 100%;
    margin-bottom: 2px;
  }

  header .links ul li a {
    display: block;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    padding: 14px 10px;
    color: #787878;
    text-align: center;
    margin-right: 0px !important;
  }

  header ul li a:hover,
  header ul li a:hover:focus,
  header ul li a:focus,
  header ul li a.active {
    background-color: #60ca9c;
    color: #fff !important;
  }

  header .links a:active svg path,
  header .links a:focus svg path,
  header .links a:hover svg path,
  header .links a:hover:focus svg path,
  header .links a.active svg path {
    fill: #fff;
  }

  header ul:before {
    content: "";
    position: absolute;
    right: 9px;
    top: -9px;
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid #fafafa;
    z-index: -1;
  }

  header ul li:last-child {
    margin-bottom: 13px;
  }

  header ul li.logo-li a,
  header ul li.logo-li a:hover,
  header ul li.logo-li a:focus,
  header ul li.logo-li a:active,
  header ul li.logo-li a.ative {
    background-color: #fff;
  }
}

/*--------------Header------------------------------------------*/
/*--------------FOOTER-----------------------------------------------*/
.footer .show-sm {
  display: none;
}

.footer .container,
.dis-sec .container {
  width: 84.53%;
  padding-left: 0;
  padding-right: 0;
  max-width: 960px;
}

.footer.full .container,
.dis-sec.full .container {
  max-width: 1440px;
}

.footer .container {
  position: relative;
}

.footer.other {
  margin-top: 78px;
}

.footer .title {
  color: #0b0b0b;
  font-weight: 700;
  font-size: 36px;
  line-height: 48px;
  max-width: 819px;
  margin-bottom: 32px;
}

.footer .link {
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: #60ca9c;
  margin-bottom: 48px;
  display: inline-block;
}

.footer .link svg {
  margin-left: 9px;
  position: relative;
  top: -4px;
}

/*MEDIA*/
@media (max-width: 1198px) {
  .footer .col-sm-12 {
    text-align: center;
  }

  .row.f-nav-row .col-sm-12 {
    text-align: left;
  }

  .footer .title {
    margin: auto;
    margin-bottom: 32px;
  }

  .footer .link {
    margin-bottom: 24px;
  }

  .subs-sec .ccont {
    margin: auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .footer .title {
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 24px;
    max-width: 490px;
  }

  .footer .link {
    font-size: 17px;
  }

  :root {
    --font-subs-heading: 22px;
    --height-subs-heading: 23px;
  }
}

@media (max-width: 425px) {
  .footer .title {
    max-width: 310px;
  }
}

@media (max-width: 332px) {
  .footer .title {
    font-size: 20px;
    line-height: 23px;
  }

  .footer .link {
    font-size: 15px;
  }
}

@media (max-width: 250px) {
  .footer .link {
    max-width: 180px;
  }
}

/*--------------FOOTER-----------------------------------------------*/

/*--------------DIS SECTION------------------------------------------*/
.dis-sec {
  color: grey;
  padding-top: 73px;
}

.dis-sec .h5 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: grey;
}

.dis-sec p {
  max-width: 898px;
  font-size: 14px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 24px;
}

.dis-sec p.lst {
  max-width: 829px;
}

.bar {
  background: rgba(120, 120, 120, 0.2);
  border-radius: 4px;
  width: 100%;
  max-width: 1200px;
  display: block;
  height: 1px;
  margin-bottom: 64px;
  margin-top: 64px;
}

.full .bar {
  max-width: 1440px;
}

.dis-sec a {
  color: #808080;
  display: inline-block;
  position: relative;
}

.dis-sec a:before {
  content: "";
  width: 100%;
  background-color: #808080;
  height: 1px;
  left: 0px;
  position: absolute;
  bottom: 4px;
}

.dis-sec a:hover:before,
.dis-sec a:focus:before {
  background-color: #60ca9c;
}

/*MEDIA*/
@media (max-width: 375px) {
  .dis-sec {
    padding-top: 64px;
  }

  .dis-sec .h5 {
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 24px;
  }

  .dis-sec p {
    max-width: 325px;
    margin: auto;
    margin-bottom: 24px;
    text-align: center;
  }

  .dis-sec p.lst {
    max-width: 314px;
    margin-bottom: 0px;
  }

  .bar {
    margin-bottom: 32px;
    margin-top: 32px;
    max-width: 327px;
  }
}

/*--------------DIS SECTION------------------------------------------*/
/*new footer nav*/
.footer {
  padding-top: 18px;
}

.footer .ccol {
  max-width: 192px;
  display: block;
  float: left;
  width: 20%;
}

.footer .ccol ul {
  list-style: none;
  padding-left: 0px;
}

.footer .ccol ul li {
  width: 100%;
}

.footer .ccol ul li a {
  color: #646464;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 8px;
  display: block;
}

.footer .ccol ul li a.disable {
  color: #646464 !important;
}

.footer .ccol ul li a span {
  font-size: 8px;
  line-height: 24px;
  color: #a2b2c2;
  position: relative;
  top: -1.2px;
}

.footer .ccol ul li a:hover svg path,
.footer .ccol ul li a:focus svg path,
.footer .ccol ul li a:hover:focus svg path {
  fill: #60ca9c;
}

.footer .tt {
  font-weight: bold;
  font-size: 14px;
  line-height: 24px;
  color: #646464;
  margin-bottom: 16px;
}

.footer .ccol.c-4 {
  float: right;
  text-align: right;
}

.footer .ccol.c-4 svg {
  margin-right: 8px;
}

.footer-logo {
  overflow: hidden;
}

.footer-logo img {
  margin-left: -8px;
}

.btn.scrolltop {
  bottom: 48px;
  right: 0;
  font-weight: 700;
  font-size: 14px;
  line-height: 24px;
  color: #fff !important;
  width: 100%;
  max-width: 117px;
  background: #222338 !important;
  backdrop-filter: blur(40px);
  border-radius: 4px;
  padding: 5px 5px;
  outline: 0 !important;
  box-shadow: none !important;
  float: right;
}

.row.lst-row {
  padding-top: 30px;
  padding-bottom: 47px;
}

/*footer*/
@media (max-width: 991px) {

  .footer .container,
  .dis-sec .container {
    width: 95%;
    padding: 0px 15px;
  }

  .subs-sec .container {
    width: 95% !important;
    padding: 0px 15px;
  }

  .footer .ccol ul li a {
    color: #646464;
    font-size: 12px;
  }
}

@media (max-width: 767px) {

  .footer .container,
  .dis-sec .container {
    width: 100%;
  }

  .subs-sec .container {
    width: 100% !important;
  }
}

@media (max-width: 730px) {

  .footer .ccol,
  .footer .lst-row .col-7 {
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .row.lst-row {
    padding-top: 8px;
    padding-bottom: 26px;
  }

  .footer .ccol .inner {
    max-width: 135px;
    margin: auto;
    text-align: center;
    margin-bottom: 28px;
  }

  .footer .btn {
    display: none;
  }

  .footer .show-sm.btn {
    display: block;
    margin-bottom: 30px;
  }

  .footer .tt {
    color: #000000;
    display: inline-block;
    font-size: 16px;
  }
}

/* new footer nav */
/* Subscribe sec */
.subs-sec {
  padding-bottom: 46px;
}

.subs-img img {
  width: 100%;
  height: auto;
}

.subs-sec {
  margin-top: -90px;
}

.subs-sec .ccont {
  border-bottom: 1px solid rgba(120, 120, 120, 0.2);
  padding-bottom: 64px;
}

.sub-m1 {
  font-family: var(--font-family);
  font-weight: var(--font-normal);
  font-size: var(--font-subs-heading);
  line-height: var(--height-subs-heading);
  color: var(--subs-heading-color);
  margin-bottom: var(--margin-main-heading);
}

.subs-sec .ccont p {
  font-family: var(--font-family);
  font-weight: var(--font-normal);
  font-size: var(--font-paragraph);
  line-height: var(--height-paragraph);
  color: var(--paragraph-color);
  margin-bottom: var(--margin-subs-heading);
}

.subs-sec input {
  border: var(--input-border-color);
  -webkit-border-radius: var(--input-border);
  -moz-border-radius: var(--input-border);
  border-radius: var(--input-border);
  max-width: var(--input-width);
  height: 56px;
  padding: 13px 32px;
  width: 100%;
  margin-right: 16px;
  display: inline-block;
  font-family: var(--font-family);
}

.subs input::placeholder {
  color: var(--input-color);
  font-size: var(--font-input);
  line-height: var(--height-input);
}

.subs-sec button.btn {
  font-family: var(--font-family);
  font-weight: var(--font-normal);
  font-size: var(--font-paragraph);
  color: var(--btn-color);
  line-height: var(--height-paragraph);
  background: var(--btn-bg-color);
  box-shadow: var(--btn-box-shadow);
  -webkit-box-shadow: var(--btn-box-shadow);
  -moz-box-shadow: var(--btn-box-shadow);
  border-radius: var(--btn-border-radius);
  -webkit-border-radius: var(--btn-border-radius);
  -moz-border-radius: var(--btn-border-radius);
  padding: 12px 52px 12px 32px;
  background-image: url(../images/chevron-right-small.svg);
  background-repeat: no-repeat;
  background-position-x: 117px;
  background-position-y: center;
  vertical-align: inherit;
  margin: auto;
  max-width: 166px;
  transition: 0.2s;
}

.subs-sec .btn-check:focus+.subs-sec .btn,
.btn:focus {
  outline: 0;
  box-shadow: none;
}

.subs-sec .btn:hover,
.subs-sec .btn:focus,
.subs-sec .btn:hover:focus {
  color: var(--btn-color);
  opacity: 0.8;
}

.subs-sec input.form-control:focus,
.subs-sec input:focus:hover {
  outline: none;
  box-shadow: none;
  border: 1px solid rgb(96 202 156 / 46%);
}

.subs-sec .container {
  max-width: 960px;
  width: 84.53%;
}

@media(max-width:1200px) {
  .subs-sec {
    margin-top: 0px;
  }
}

@media (max-width: 767px) {
  .sub-m1 {
    font-size: 27px;
    font-weight: 600;
  }
}

@media (max-width: 620px) {
  .subs-input {
    max-width: 400px;
    margin: auto;
  }

  .subs-sec .ccont p {
    margin-bottom: 15px;
  }

  .subs-sec input {
    display: block;
    max-width: 100% !important;
    margin-bottom: 10px;
  }

  .subs-sec .btn {
    display: block;
  }
}

@media (max-width: 420px) {
  .subs-sec .ccont p {
    max-width: 280px;
    margin: auto;
    margin-bottom: 14px;
  }

  .sub-m1 {
    padding-top: 20px;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
  }
}