@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
:root {
  --black: #000;
  --theme-color: #162731;
  --alternate-color: #2c2c2c;
  --white: #fff;
}
body,
html {
  overflow-x: hidden;
}
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}
a {
  color: var(--theme-color);
  text-decoration: none;
  transition: 0.3s ease;
}
a:hover {
  text-decoration: underline;
  color: var(--alternate-color);
}
.themeBtn {
  display: flex;
  padding: 18px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 50px;
  background: #FF6A37;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
}
.themeBtn:hover {
  background: #ffffff;
  color: #FF6A37;
}
ul {
  padding-left: 20px;
}
h1,
.h1 {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 88px;
  font-style: normal;
  font-weight: 700;
  line-height: 88px;
}
h2,
.h2 {
  color: #000000;
  font-family: "Open Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 54px;
  text-transform: uppercase;
}
h3,
.h3 {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: 43px;
}
.pageHeader {
  z-index: 1;
  position: absolute;
  width: 100%;
}
.pageHeader .navbar {
  padding: 50px 0 0;
}
.pageHeader .navbar-nav .nav-link {
  letter-spacing: 1.4px;
  padding-left: 0;
  padding-right: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
}
.pageHeader .navbar-nav .nav-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  transition: 0.3s ease;
  height: 2px;
  background-color: var(--white);
}
.pageHeader .navbar-nav .nav-link:hover:after {
  width: 100%;
}
.pageHeader .navbar-nav .nav-link:hover {
  text-decoration: none;
}
.pageHeader .navbar-nav li.nav-item {
  padding-left: 14px;
  padding-right: 14px;
}
.pageHeader .navbar-nav .headerBtn .nav-link:after {
  width: 100%;
  height: 100%;
  z-index: -1;
  background: transparent;
  border: 1.5px solid #c79e4a;
}
.pageHeader .navbar-nav .headerBtn .nav-link {
  padding: 10px 20px;
}
.pageHeader .navbar-nav .headerBtn:hover .nav-link {
  color: var(--white);
}
.pageHeader .navbar-nav .headerBtn:hover .nav-link:after {
  background: #c79e4a;
}
.hero {
  position: relative;
  height: 740px;
  background-image: url(/wp-content/uploads/2025/09/hero-img-n.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  /* margin-top: -165px; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  padding-top: 200px;
}
.hero h1 {
  /* margin-top: 55px; */
}
.hero .right-img {
  position: absolute;
  right: -86px;
  bottom: -50px;
  max-width: 579px;
}
.hero .right-img img {
  /* width: 550px; */
}
.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 150px;
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  background-color: #fff;
  bottom: -1px;
}
.hero h3 {
  margin: 40px 0;
}
.hero .themeBtn {
  color: #FFF;
  font-family: "Open Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  max-width: 398px;
}
.hero .themeBtn:hover {
  color: #FF6A37;
  text-decoration: none;
}
.why-clarity {
  padding-top: 70px;
  padding-bottom: 175px;
}
.why-clarity h2 {
  margin-bottom: 30px;
}
.why-clarity p {
  color: #252628;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 25px;
}
.why-clarity .two-col {
  margin-top: 50px;
}
.why-clarity .two-col h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
  color: #252628;
}
.why-clarity .two-col ul {
  list-style: none;
}
.why-clarity .two-col ul li {
  color: #000;
  font-family: 'Inter';
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 18px;
  position: relative;
  padding-left: 50px;
  padding-right: 90px;
}
.why-clarity .two-col ul li::before {
  content: '';
  position: absolute;
  width: 44px;
  height: 44px;
  background-image: url(../images/landingpage/green-tick.svg);
  background-repeat: no-repeat;
  background-size: contain;
  left: -22px;
  top: -4px;
}
.why-clarity .two-col .points {
  position: relative;
}
.why-clarity .two-col .points::after {
  position: absolute;
  content: '';
  height: 100%;
  width: 1px;
  background-color: #000;
  top: 0;
  right: 35px;
}
.why-clarity .two-col .row .col-lg-6:last-child .points::after {
  position: absolute;
  content: '';
  height: 1px;
  width: 100%;
  background-color: #000;
  bottom: 0;
  visibility: hidden;
}
.why-clarity {
  position: relative;
}
.why-clarity::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 150px;
  clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
  background-color: #D6D1AB;
  bottom: -1px;
}
.footer {
  background-color: #241F21;
  padding: 50px 0;
}
.footer-quick-links p {
  margin-bottom: 0;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
}
.social-links {
  text-align: right;
}
.footer-quick-links p a {
  color: #fff;
  transition: all ease 0.4s;
  text-decoration: underline
}
.footer-quick-links p a:hover {
  color: #FF6A37;
}
.social-links svg path {
  transition: all ease 0.4s;
}
.social-links svg:hover path {
  fill: #FF6A37;
}
.footer-quick-links p span {
  margin: 0 12px;
}
.download-guide {
  background-color: #D6D1AB;
  padding: 80px 0 53px 0;
}
.download-guide p.title {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 48px;
  text-transform: uppercase;
  margin-bottom: 0;
}
.download-guide .download-btn {
  text-align: center;
  margin-top: 35px;
}
.download-guide .download-btn a {
  display: inline-flex;
  color: #FFF;
  font-family: "Open Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  padding: 5px 32px;
  min-width: 370px;
}
.download-guide .download-btn a:hover {
  color: #FF6A37;
  text-decoration: none;
}
.download-guide form input {
  border: 1px solid #ACA39E;
  background: #FFF;
  border-radius: 0;
  height: 42px;
}
.download-guide form label {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 10px;
}
.download-guide form {
  margin-top: 40px;
}
.download-guide p.note {
  color: #000;
  text-align: center;
  font-size: 12px;
  line-height: 120%;
  margin-bottom: 0;
  margin-top: 38px;
}
.download-guide p.note a {
  text-decoration: underline;
}
.download-guide p.note a:hover {
  text-decoration: none;
  color: #FF6A37;
}
.download-guide .gform_wrapper.gravity-theme .gfield input.large,
.gform_wrapper.gravity-theme .gfield select.large {
  width: 100%;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.gform_wrapper.gravity-theme .gform_footer .gform_button {
  display: flex;
  padding: 10px 32px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 50px;
  background: #FF6A37;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
  height: 100%;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
  text-transform: uppercase;
  color: #fff;
}
.gform_wrapper.gravity-theme .gform_footer .gform_button:hover {
  background: #ffffff;
  color: #FF6A37;
}
.gform_wrapper.gravity-theme #field_submit,
.gform_wrapper.gravity-theme .gform_footer {
  display: flex;
  justify-content: center;
  padding-top: 32px !important;
}
.download-guide .gform_wrapper.gravity-theme .gfield_label {
  color: #000 !important;
  font-family: "Open Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 30px;
}
.download-guide .gform_wrapper.gravity-theme .gfield_required .gfield_required_custom,
.gform_wrapper.gravity-theme .gfield_required .gfield_required_text {
  color: #000;
  font-family: "Open Sans";
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  font-style: normal !important;
  text-transform: lowercase;
}
.download-guide h4 {
  font-family: "Open Sans";
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
.download-guide h6 {
  color: #000;
  text-align: center;
  font-family: "Open Sans";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
}
.download-guide h6 a {
  text-decoration: underline
}
.page-template-landing-thankyou .hero .themeBtn {
  max-width: max-content;
}
/*landing page pop up css*/
#pum-6346 {
  background-color: #000000ad
}
#pum-6346 .pum-container {
  background-color: #ddd;
  border-radius: .90909rem
}
#pum-6346 .pum-container .pum-title {
  text-align: center
}
#pum-6346 .pum-container .titlewrap h3 {
  text-align: center;
  font-weight: 700;
  font-size: 1.27273rem;
  color: #000
}
#pum-6346 .pum-container .titlewrap h4 {
  text-align: center;
  font-weight: 700;
  font-size: 1.27273rem;
  color: #000
}
#pum-6346 .pum-container .titlewrap .hrwrap {
  display: block;
  position: relative;
  margin: auto;
  width: 100%
}
#pum-6346 .pum-container .titlewrap .hrwrap hr.customhr {
  width: 32%;
  text-align: left;
  margin: 0;
  position: relative;
  display: inline-block
}
#pum-6346 .pum-container .titlewrap .hrwrap hr.customhr1 {
  border: 5px solid #005057;
  opacity: 1;
}
#pum-6346 .pum-container .titlewrap .hrwrap hr.customhr2 {
  border: 5px solid #42797c;
  opacity: 1;
}
#pum-6346 .pum-container .titlewrap .hrwrap hr.customhr3 {
  border: 5px solid #7ca7ae;
  opacity: 1;
}
#pum-6346 .pum-content+.pum-close {
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 0;
  color: #000;
  font-size: 1.59091rem;
  transition-duration: .3s;
  transition-property: all;
  right: -45px;
  padding: 3px
}
#pum-6346 .pum-content+.pum-close:hover {
  color: #005057
}
#pum-6346 .gform_button {
  margin-bottom: 0;
  position: absolute;
  right: 0;
  bottom: .59091rem
}
#pum-6346 .gform_button:hover {
  background-color: #ddd
}
#pum-6346 .gform_footer {
  padding: 0
}
#pum-6346 .pum-container .titlewrap h3 {
  font-family: "open sans", serif;
  color: #000;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  font-size: 28px;
  margin-bottom: .5rem;
}
#pum-6346 .pum-container label {
  display: inline-block;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-bottom: 8px;
  padding: 0;
  font-family: Open Sans;
  font-size: 28px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: .1em;
  text-align: left;
  color: #000;
}
#pum-6346 .pum-container label span {
  font-weight: 400 !important;
  font-family: Open Sans;
  line-height: 28px;
  letter-spacing: 0;
  text-align: left;
  font-style: inherit;
  color: #c02b0a;
  display: inline-block;
  font-size: 13.008px;
  text-transform: capitalize;
}
#pum-6346 .gform_button {
  background-color: #005057;
  border-radius: 20px;
  padding: 4px 15px 4px 15px;
  font-family: Open Sans;
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: .1em;
  text-align: center;
  box-shadow: -4px 4px 4px 0 #00000040;
  transition-duration: .2s;
  transition-property: all;
  margin-left: auto;
  align-self: flex-end;
  display: inline-flex;
  height: auto;
  min-width: auto;
}
#pum-6346 .gform_button:hover {
  color: #005057;
  background-color: transparent;
}
#pum-6346 form {
  margin-top: -15px;
}
#pum-6346 form input[type="text"],
#pum-6346 form input[type="email"] {
  border: .04545rem solid !important;
  margin: 0;
  font-size: 15px;
  margin-bottom: 0;
  margin-top: 0;
  padding: 8px;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 2.5rem;
  margin: 0 0 .72727rem;
  padding: .36364rem;
  border: 1px solid #cacaca;
  border-radius: 0;
  background-color: #fff;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  transition: box-shadow .5s, border-color .25s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-left: 8px;
  font-family: 'Open Sans';
}
#pum-6346 .pum-container [type=checkbox]+label {
  display: inline-block;
  vertical-align: baseline;
  margin-left: .36364rem;
  margin-right: .72727rem;
  margin-bottom: 0;
  font-size: 14px !important;
  color: #000;
  font-weight: 400 !important;
  letter-spacing: 0;
}
#pum-6346 form legend {
  line-height: 28px;
  letter-spacing: .1em;
  text-align: left;
  color: #000;
}
#pum-6346 form #gform_fields_2 {
  grid-row-gap: 0;
}
#pum-6346 .gform_footer {
  padding: 0;
  margin: 0;
  text-align: left;
  justify-content: left;
  padding-top: 15px !important;
}
#pum-6346 .pum-content+.pum-close i {
  font-size: 35px;
  display: block;
}
.page-template-landing-thankyou .btn-wrap {
  display: flex;
  align-items: center;
}
.page-template-landing-thankyou .btn-wrap .themeBtn {
  text-transform: uppercase;
}
.page-template-landing-thankyou .btn-wrap .themeBtn.btn-reverse {
  margin-left: 7%;
  background-color: #fff;
  color: #C03B0E;
  text-decoration: none;
}
.page-template-landing-thankyou .btn-wrap .themeBtn.btn-reverse:hover {
  background-color: #FF6A37;
  color: #fff;
  text-decoration: none;
}
.hero .container,
.hero .row {
  height: 100%;
}
.hero .row div[class^="col-"] {
  position: relative;
}
.page-template-landingpage .gform_body .commentary-check legend {
    display: none;
}
.page-template-landingpage .gform_body .commentary-check .gchoice {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
}
.page-template-landingpage .gform_body .commentary-check .gchoice .gfield-choice-input {
    width: 22px;
    margin-left: 10px
}
.page-template-landingpage .gform_body .commentary-check .gchoice label {
    line-height: 16px;
}
@media (min-width:1920px) {
  .hero {
    height: 740px;
    padding-top: 200px;
  }
  .hero .right-img {
    position: absolute;
    bottom: -100px;
  }
  .hero .col-md-7 {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width:767px) {
  #pum-6346 .gform_button {
    font-size: 12px;
  }
}
/*landing page pop up css*/
@media only screen and (min-device-width:1024px) and (max-device-width:1376px) and (-webkit-min-device-pixel-ratio:2) {
  .hero .right-img {
    position: absolute;
    bottom: 0;
  }
  .footer-quick-links p {
    font-size: 12px;
  }
}
@media (min-width:1024px) {
  .page-template-landing-thankyou .footer {
    background-color: #241F21;
    padding: 50px 0;
    position: fixed;
    width: 100%;
    bottom: 0;
  }
}
@media (min-width:1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1196px;
  }
  .gform_wrapper.gravity-theme .gform_footer .gform_button {
    min-width: 310px;
  }
}
@media (min-width:1600px) {
  .hero .right-img {
    right: -114px;
    bottom: -50px;
  }
  .hero .right-img img {
    width: 700px;
  }
}
@media (max-width:1439px) {
  h1,
  .h1 {
    font-size: 80px;
  }
}
@media (max-width:1200px) {
  .hero .themeBtn {
    font-size: 18px;
  }
}
@media (max-width:1024px) {
  h1,
  .h1 {
    font-size: 70px;
    line-height: 70px;
  }
  h3 br {
    display: none;
  }
  .hero .right-img {
    bottom: 0;
  }
  .footer-quick-links p {
    font-size: 12px;
  }
  .page-template-landing-thankyou .btn-wrap {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .page-template-landing-thankyou .btn-wrap .themeBtn.btn-reverse {
    margin-left: 0;
    margin-top: 30px;
  }
  .page-template-landing-thankyou .hero {
    height: calc(100vh - 150px);
    min-height: 600px;
  }
}
@media (max-width:991px) {
  h1,
  .h1 {
    font-size: 50px;
    line-height: 55px;
  }
  h3,
  .h3 {
    font-size: 28px;
    line-height: 35px;
  }
  .hero h3 {
    margin: 20px 0;
    font-size: 26px;
  }
  h1 br,
  h3 br {
    display: none;
  }
  .hero .themeBtn,
  .gform_wrapper.gravity-theme .gform_footer .gform_button {
    font-size: 16px;
  }
  .hero .right-img {
    bottom: 20px;
  }
  .pageHeader .navbar {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .pageHeader .navbar-nav .headerBtn {
    margin-top: 10px;
  }
  .pageHeader .navbar-expand-lg .navbar-collapse {
    margin-top: 0;
  }
  .pageHeader .navbar-nav .headerBtn .nav-link {
    text-align: center;
  }
  h2,
  .h2 {
    font-size: 28px;
    line-height: 40px;
  }
  .why-clarity p {
    font-size: 20px;
    line-height: 28px;
  }
  .why-clarity .two-col .row .col-lg-6:last-child {
    margin-top: 50px;
  }
  .why-clarity .two-col .row .col-lg-6:last-child .points::after {
    visibility: visible;
    top: -30px;
  }
  .why-clarity .two-col .row .col-lg-6:first-child .points::after {
    display: none;
  }
  .why-clarity .two-col {
    margin-top: 20px;
  }
  .why-clarity .two-col .points::after {
    right: 0;
  }
  .footer {
    padding: 25px 0;
  }
  .social-links {
    text-align: left;
    margin-top: 15px;
  }
  .footer-quick-links p span {
    margin: 0 5px;
  }
  .download-guide form label {
    font-size: 16px;
  }
  .hero {
    height: 675px;
  }
}
@media (max-width:767px) {
  .hero {
    padding-top: 0;
  }
  .hero .right-img {
    position: relative;
    bottom: -35px;
    right: 0;
  }
  .hero {
    height: auto;
  }
  .hero .themeBtn,
  .gform_wrapper.gravity-theme .gform_footer .gform_button {
    font-size: 18px;
  }
  .hero h1 {
    margin-top: 190px;
  }
  .navbar-brand img {
    width: 75px;
  }
  .themeBtn {
    padding: 15px 30px;
  }
  h2,
  .h2 {
    font-size: 22px;
    line-height: 32px;
  }
  .why-clarity p {
    font-size: 18px;
    line-height: 26px;
  }
  .why-clarity .two-col ul li {
    padding-right: 0;
    font-size: 18px;
    line-height: 24px;
    padding-left: 30px;
  }
  .download-guide .download-btn a {
    width: auto;
    min-width: auto;
  }
  .download-guide form .row {
    display: block;
  }
  .page-template-landing-thankyou .btn-wrap .themeBtn.btn-reverse {
    margin-left: 0;
    margin-top: 20px;
  }
  .page-template-landing-thankyou .hero {
    height: auto;
  }
  .page-template-landingpage .gform_body .commentary-check .gchoice label {
        max-width: 312px;
    }
}