:root {
    --theme-black-color: #212121;
    
}
body {
  font-family: "Nunito Sans", sans-serif;
  color: #172845;
}

.box-shadow {
  box-shadow: 0 4px 40px #eeeeee, 0 4px 8px rgba(66, 71, 76, 0.05), 0 0 1px rgba(66, 71, 76, 0.32);
}

.theme-red {
  color: #c92112;
}

.theme-blue {
  color: #172845;
}

.site-flex-ul {
  padding: 0;
  --list-style-type: none;
  list-style-type: var(--list-style-type);
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 80%;
  align-items: center;
  margin: 0 auto 0;
}
.site-flex-ul li {
  --img-block-size: 100%;
  list-style-type: var(--list-style-type);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
  max-width: calc(var(--img-block-size) / 3);
  text-align: center;
}
.site-flex-ul li img {
  width: calc(var(--img-block-size) / 3);
  height: calc(var(--img-block-size) / 3);
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 5px;
}
.site-flex-ul li p {
  margin: 0;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
}

.theme-ul {
  list-style-type: none;
  padding: 0;
  column-count: 2;
  text-align: left;
  width: fit-content;
  margin: 15px auto 0;
}
.theme-ul li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  width: 100%;
}
.theme-ul li svg {
  margin-right: 8px;
  width: 18px;
  height: auto;
}
.theme-ul li span {
  flex: 1;
}




.adv-banner {
  background: #820201 url(../images/Valentine-Banner-Background.jpg) no-repeat;
  background-size: cover;
  min-height: 50px;
  display: flex;
  width: 100%;
  color: #f4f7f9;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  padding: 5px 10px;
  text-align: center;
  font-size: 16px;
}
.adv-banner span {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .adv-banner {
    flex-direction: column;
  }
  .adv-banner span {
    margin-right: 0;
  }
}
@media (max-width: 480px) {
  .adv-banner {
    font-size: 14px;
  }
}
/* typography start */
.font-lg {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 15px;
}

.font-md {
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--themecolor);
  font-weight: 700;
}

.font-sm {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.font-xs{
    font-size: 18px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: var(--theme-black-color);
}
.li-pv li{
     font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.5px;
  color: var(--theme-black-color);
margin-bottom: 1rem;
}
.bigtxt {
  font-size: 72px;
  color: var(--themecolor);
  font-weight: 500;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .font-lg {
    font-size: 45px;
  }
  .font-sm {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .font-lg {
    font-size: 45px;
  }
  .font-sm {
    font-size: 30px;
  }
}
@media (max-width: 640px) {
  .font-md {
    font-size: 34px;
  }
}
@media (max-width: 360px) {
  .font-lg {
    font-size: 32px;
  }
  .font-sm {
    font-size: 22px;
  }
}
/* typography end */
/* button start */
/* button start */
.banner-btn {
  display: flex;
  justify-content: center;
}

.site-btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 50px;
  border: 2px solid var(--themecolor);
  padding: 10px 30px;
  font-weight: 600;
  transition: all 0.2s ease-in;
  width: auto;
}

.site-btn:hover {
  border: 2px solid var(--themecolor);
}

.solid-btn {
  background-color: var(--themecolor);
  color: #f4f7f9;
}

.solid-btn:hover {
  background-color: #fff;
  color: var(--themecolor);
}

.btn-big {
  font-size: 18px;
  padding: 12px 30px;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.border-btn {
  background-color: #fff;
  color: var(--themecolor);
}

.border-btn:hover {
  background-color: var(--themecolor);
  color: #f4f7f9;
}

.btn-pulse {
  animation: pulse 1.5s infinite;
}
.btn-pulse:hover {
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 33, 18, 0.2);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(201, 33, 18, 0);
  }
}
@media (min-width: 992px) {
  .nav-btn {
    border-left: 1px solid #ccc;
    padding-left: 30px;
  }
}
@media (max-width: 1024px) {
  .site-btn {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  .nav-btn .site-btn {
    display: block;
    width: 100%;
    margin-top: 15px;
  }
}
@media (max-width: 850px) {
  .site-btn {
    padding: 8px 20px;
    font-size: 16px;
  }
}
/* button end */
/* header start */
header nav {
  height: 80px;
}
header nav .navbar-brand img {
  max-width: 200px;
}
header nav .navbar-toggler {
  z-index: 6;
  position: fixed;
  right: 15px;
  height: 48px;
}
header nav .navbar-toggler:focus {
  box-shadow: none;
}
header nav .navbar-toggler .icon-bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #666;
  margin: 6px 0;
  transition: 0.4s;
}
header nav .navbar-toggler.collapsed .icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}
header nav .navbar-toggler.collapsed .icon-bar:nth-child(2) {
  opacity: 0;
}
header nav .navbar-toggler.collapsed .icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}
header nav .navbar-nav .nav-item {
  margin: 0 15px;
}
header nav .navbar-nav .nav-item.active a {
  color: var(--themecolor);
}
header nav .navbar-nav .nav-item .nav-link:hover {
  color: var(--themecolor);
}
header nav .navbar-nav .nav-item .nav-link.active {
  color: var(--themecolor);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 991px) {
   body {
    padding-top: 80px;
  } 
  header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
  }
  header nav .navbar-brand {
    position: fixed;
    left: 15px;
    z-index: 6;
  }
  header nav .navbar-nav {
    position: fixed;
    left: 0;
    right: 0;
    background: #fff;
    top: 70px;
    bottom: 0;
    min-height: 100vh;
    padding: 15px 15px 0;
    overflow-y: auto;
    z-index: 5;
  }
  header nav .navbar-nav .nav-item {
    margin: 0;
  }
  header nav .navbar-nav .nav-item .nav-link {
    font-size: 20px;
  }
  header nav .navbar-nav .navbar-toggler {
    position: fixed;
    right: 15px;
    z-index: 6;
  }
  header .collapse {
    transition: all 0.1s ease;
  }
  header .collapse:not(.show) {
    display: block;
    opacity: 0;
    visibility: hidden;
  }
  header .collapse.show {
    opacity: 1;
    visibility: visible;
  }
  header .collapse.show .navbar-nav {
    height: 100vh;
  }
  header .collapse .navbar-nav {
    transition: all 0.8s ease;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 80px;
  }
}

/* header end */
/* section1 start */
@media (min-width: 768px) {
  .section1 {
    padding: 20px 0;
  }
}
.section1 .bannerHero {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 1200px) and (max-width: 1440px) {
  .section1 .bannerHero {
    min-height: 77vh;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section1 .bannerHero {
    min-height: 70vh;
  }
}
.section1 .as-seen-on {
  display: flex;
  margin: 20px 0;
  padding: 0 5px;
}
.section1 .as-seen-on img {
  margin-right: 30px;
  display: inline-block;
  height: 35px;
  max-width: 33.33%;
  -o-object-fit: contain;
     object-fit: contain;
}
.section1 details {
  display: block;
  margin: 25px 0 0;
  color: var(--themecolor);
}
.section1 details p a {
  display: inline-block;
  margin-right: 15px;
  color: var(--themecolor);
  font-size: 14px;
}
.section1 h1, .section1 h2 {
  color: var(--themecolor);
}

/* section1 end */
/* section2 start */
.section2_block_inner {
  background-color: var(--basecolor);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.section2_block_inner > h4{
    color: var(--themecolor);
    font-size: 2.9rem;
}
.section2_block_inner > h3 {
    font-size: 18px;
}
.section2_block button {
  display: block;
  margin: 0 auto 20px;
}

.section2_block h6 {
  color: #afaeae;
  font-weight: normal;
}

.section2_block img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 250px;
  width: auto;
}

.section2_block_inner img {
  max-height: 330px;
  margin: 0 auto 15px;
  display: block;
}

.section2_block_inner h5 {
  font-weight: 400;
}

/* section2 end */
/* easysteps start */
section.easysteps {
    background-color: var(--basecolor);
}
.easysteps .softbox {
  border-radius: 20px;
  padding: 25px 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  margin: 0 auto 40px;
  background-color: #fff;
}
.easysteps .softbox h4 {
  text-align: center;
  font-weight: 700;
  color: var(--themecolor);
}
.easysteps .softbox p {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 0;
}
.easysteps .softbox img {
  aspect-ratio: 9/16;
  max-height: 600px;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 10px auto 0;
  display: block;
}

/* easysteps end */
/* guarantee start */
.guarantee h3 {
  font-size: 28px;
}

/* guarantee end */
/* faq start */
.faq {
  min-height: 0vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 50px 0 50px;
}
.faq .accordion {
  margin-top: 30px;
}

.faq .accordion-item {
  margin-bottom: 20px;
  border-radius: 15px;
  border: 0;
  overflow: hidden;
  box-shadow: 0 4px 40px #EEEEEE, 0 4px 8px rgba(66, 71, 76, 0.05), 0 0 1px rgba(66, 71, 76, 0.32);
}

.faq .accordion-item .accordion-button {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.faq .accordion-item .accordion-button:not(.collapsed) {
  background-color: #fff;
  box-shadow: none;
}

.faq .accordion-item .accordion-body h4 {
  font-size: 22px;
  font-weight: 600;
}

@media (max-width: 640px) {
  .faq h3 {
    font-size: 34px;
  }
  .faq {
    padding: 25px 0;
  }
}
@media (max-width: 420px) {
  .faq h3 {
    font-size: 28px;
  }
  .faq .accordion-item .accordion-button {
    font-size: 16px;
  }
  .faq .accordion-item .accordion-body p {
    font-size: 14px;
  }
  .faq .accordion-item .accordion-body h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
  }
}
.faq_body h3 {
  margin-top: 3.5rem;
}

.accordion-button {
  font-size: 20px;
    background: none;
    box-shadow: none;
    padding: 18px;
}

.accordion-button:not(.collapsed) {
  color: var(--themecolor);
  background: none;
  box-shadow: none;
}

.accordion-item {
  margin-bottom: 20px;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 15px -4px #ccc;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23c92112'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* faq end */
/* footer start */
footer {
  color: #f4f7f9;
  background-color: var(--basecolor);
  padding: 70px 0;
}
footer .footer-logo img {
  max-width: 200px;
}
footer .footer-list {
  margin-bottom: 30px;
}
footer .footer-list h6 {
  font-size: 20px;
  color: #f4f7f9;
  margin-bottom: 15px;
  font-weight: 700;
}
footer .footer-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer .footer-list ul li {
  margin: 5px 0 10px;
} 
footer .footer-list ul li a {
  text-decoration: none;
  color: #f4f7f9;
  transition: all 0.2s ease;
  font-weight: 400;
}
footer .footer-list ul li a:hover {
  color: var(--themecolor);
}
footer .social-icons {
  display: flex;
  gap: 10px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
footer .social-icons li {
  list-style-type: none;
}
footer .social-icons li a {
  color: #f4f7f9;
  margin: 0 5px 0 0;
  font-size: 22px;
  transition: all 0.2s ease;
}
footer .social-icons li a:hover {
  color: var(--themecolor);
}
footer .legitScript {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
footer .legitScript img {
  width: 100%;
  height: auto;
}



/* added */
.banner_cont{
    width: 100%;
    background: #172845;
    padding: 3em 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.banner_cont h1{
    color: #f4f7f9;
    font-size: 42px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1px;
}


.top-banner{
    background:#172845 url(../images/Group-22-1.png) no-repeat;
    background-size: 485px;
    background-position:right 10% bottom;
    padding: 100px 25px;
}
.about-content h3, .footerpage_body h3,.wp-block-heading{
    font-size: 32px;
    letter-spacing: 1px;
    line-height: 1.4;
}
.faq_body h3{
      font-size: 32px;
    letter-spacing: 1px;
    line-height: 1.4;
}
@media (max-width:991px){
.top-banner {
    background-size: 315px;
    background-position: right bottom;
    padding: 40px 20px 155px;
}
}

.top-banner h1{
    color: #f4f7f9;
    font-size:42px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 1px;
}
/* about us page */

.about_body img{
    border-radius: 25px;
}

.about_body h2{
    font-weight: 700;
    font-size:42px;
}
.about_body p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .5px;
}

/* health-new page */
.health-cont {
    padding: 0 10px;
}
.health-cont img{
    border-radius: 15px;
    width:100%;
    margin-bottom: 1.2rem;
}

.health-text h3, .health-text h3 a {
    font-weight: 700;
    font-size: 26px;
    color: #000;
}

.health-text a{
    color:var(--themecolor);
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
}



/* contact us */

.contact_body h2 {
    font-weight: 700;
    line-height: 1.2;
    font-size: 42px;
}

.contact_body .contact-left p, .contact_body .contact-left p a {
   text-decoration: none;
    font-size: 16px;
    text-decoration: none;
    color: #212121;
    line-height: 1.6;
    letter-spacing: .5px;

}

.contact_body .contact-left p a{
    color: var(--themecolor);
    font-weight: 400;
}

.social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.contact_body .contact-left p.social a {
    font-size: 30px;
    margin-right: 15px;
    color: #000;
}
.contact_body .contact-left .social a:hover {
    color: var(--themecolor);
}
.contact-left label {
    font-weight: 500;
}
@media (min-width:768px){
    .contact_body .contact-left, .contact_body .contact-right{
    padding: 0 30px;
}
}


.health_inner_body h1{
    font-weight: 700;
    margin-bottom: 3.5rem;
    font-size: 42px;
}

.health_inner_body img {
    border-radius: 20px;
    margin: 0 auto 30px;
    display: block;
}

.health_inner_body h2{
    font-weight: 700;
}

body {
    overflow-x: hidden;
}

@media (max-width: 767px) {
  .section2_block_inner > h4{
      font-size: 2.2rem;
  }
  .site-flex-ul{
      max-width: 100%
  }
  .site-flex-ul li img {
    width: calc(var(--img-block-size) / 2);
    height: calc(var(--img-block-size) / 2);
  }
}


/* start page css start*/

/* starter start */
.starter {
  background-color: var(--basecolor);
}
.starter h1 {
  color: #f4f7f9;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 30px;
  text-align: center;
}
.starter .titlebox h4 {
  color: var(--themecolor);
  font-weight: 700;
  font-size: 52px;
  margin-bottom: 20px;
}
.starter .titlebox p {
    font-size: 20px;
    font-weight: 600;
    display: inline;
    color: var(--basecolor);
    padding: 5px 14px;
    background: #fff;
    border-radius: 15px;
}
.starter img {
    min-height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
    max-height: 620px;
}


@media (max-width: 1400px) and (min-width: 992px) {
  .starter h1 {
    font-size: 62px;
  }
  .starter .titlebox h4 {
    font-size: 42px;
    margin-bottom: 15px;
  }
  .starter .titlebox p {
    font-size: 13px;
}
}
@media (max-width: 991px) {
 .starter img {
    height: auto;
    width: 100%;
    min-height: 0;
    max-height: none;
}
  .starter .titlebox h4 {
    font-size: 28px;
    margin-bottom: 10px;
}
.starter .titlebox p {
    font-size: 18px;
    /* margin-bottom: 25px; */
    margin-bottom: 0;
    display: inline-block;
}
}
@media (max-width: 767px) {
 .starter h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

}

@media (max-width:520px){
  .starter .titlebox p {
    font-size: 3.4vw;
}

}
/* starter end */
/* section 2 start */
.section2 {
  padding: 50px 0;
  min-height: 0vw;
}
.section2 h2 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--themecolor);
}
.section2 p {
  line-height: 1.5;
  padding: 0 20px;
}
.section2 img {
  max-width: 85%;
  margin: 0 auto 25px;
  display: block;
}

@media (max-width: 640px) {
  .section2 h2 {
    font-size: 34px;
  }
}
@media (max-width: 420px) {
  .section2 h2 {
    font-size: 28px;
  }
}
/* section 2 end */
/* starter2 start */
.starter2 {
  margin: 70px 0;
}
.starter2 h2 {
  font-size: 42px;
  text-align: center;
  font-weight: 700;
  color: var(--themecolor);
}
.starter2 .medication-opt {
  background-color: var(--basecolor);
  min-height: 400px;
  margin-bottom: 50px;
  border-radius: 25px;
  padding: 30px 0 50px;
}
.starter2 .medication-opt .productcard {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.starter2 .medication-opt .productcard img {
  max-width: 100px;
}
.starter2 .medication-opt .productcard h4 {
  color: var(--themecolor);
  font-weight: 700;
  font-size: 52px;
  margin-bottom: 20px;
}
.starter2 .medication-opt .productcard p {
  font-size: 20px;
  font-weight: 600;
  color: #f4f7f9;
}
.starter2 .medication-opt .options {
  max-width: 578px;
  width: 90%;
}


.boldred {
  color: var(--themecolor);
  margin-right: auto;
  margin-left: 5px;
  font-weight: 700;
}

input[type=radio] {
  accent-color: #e1040d;
}

.question {
  left: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(1.4);
}
.question + label {
  align-items: center;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 12px;
  color: #000;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 11px 12px 9px 45px;
  width: 100%;
}
.question + label .most-popular {
  background: #e1040d;
  -webkit-clip-path: polygon(10% 0, 100% 0, 94% 50%, 100% 100%, 9% 100%, 0 50%);
  clip-path: polygon(10% 0, 100% 0, 94% 50%, 100% 100%, 9% 100%, 0 50%);
  color: #f4f7f9;
  font-size: 10px;
  font-weight: 600;
  padding: 3px 14px;
}
.question:checked + label {
  background: rgb(255, 202, 202);
  border: 1px solid #e1040d;
  color: #000;
}

@media (max-width: 1199px) and (min-width: 992px) {
  .starter2 .medication-opt .productcard h4 {
    font-size: 36px;
  }
  .starter2 .medication-opt .productcard p {
    font-size: 15px;
  }
  .question + label {
    font-size: 11px;
    padding: 11px 12px 11px 40px;
}
.question{
    left: 15px;
}
}
@media (max-width: 991px) {
    .starter2 .medication-opt{
        margin: 0;
    }
  .starter2 .medication-opt .options {
    max-width: 100%;
    width: 90%;
    margin: auto;
    margin-top: 30px;
  }
  .option-btn {
    width: 90%;
    margin: 40px auto 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .starter2 .medication-opt .productcard h4 {
    font-size: 8vw;
    margin-bottom: 20px;
  }
  .starter2 .medication-opt .productcard p {
    font-size: 2.9vw;
  }
}
@media screen and (max-width: 767px) {
    .starter2 .medication-opt .productcard img {
    max-width: 65px;
}
    .starter2 .medication-opt .productcard h4 {
    font-size: 6vw;
    margin-bottom: 10px;
}
    .starter2 h2{
        font-size: 32px;
    }
  .question {
    left: 15px;
    -moz-transform: translateY(-50%) scale(1.1);
    transform: translateY(-50%) scale(1.1);
    -o-transform: translateY(-50%) scale(1.1);
    -webkit-transform: translateY(-50%) scale(1.1);
}
  .question + label .most-popular {
    font-size: 9px;
  }
  .question + label {
    font-size: 13px;
    font-weight: 400;
    padding: 15px 10px 15px 32px;
  }
    
}

@media (max-width:520px){
   .question + label {
    font-size: 2.4vw;
    padding: 4vw 4vw 4vw 7vw;
    flex-wrap: wrap;
    line-height: 3vw;
    letter-spacing: -0.05vw;
}
   .question + label .most-popular {
    font-size: 2vw;
    position: absolute;
    right: 2vw;
}
.question {
    left: 3vw;
    transform: translateY(-50%) scale(1.2);
    width: 2vw;
    top: 5.8vw;
}
}

/* starter2 end */
/* process section start */
.process {
  padding-top: 50px;
  padding-right: 24px;
  padding-bottom: 50px;
  padding-left: 24px;
  background-color: var(--basecolor);
  min-height: 0vw;
}
.process .header h2 {
  color: #f4f7f9;
  margin-bottom: 44px;
  max-width: 620px;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}
.process .process-block .process-item {
  background-color: #ffffff;
  padding-top: 20px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  max-width: 275px;
  width: 100%;
  text-align: center;
}
.process .process-block .process-item svg {
  border-radius: 12px;
  margin-bottom: 20px;
}
.process .process-block .process-item h3 {
  color: var(--basecolor);
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: 600;
  line-height: 1.2;
}

@media (max-width: 991px) and (min-width: 768px) {
  .process .process-block .process-item {
    max-width: 30%;
  }
}
@media (max-width: 767px) {
  .process .process-block .process-item {
    max-width: 90%;
  }
  .process {
    padding: 45px 0;
  }
}
@media (max-width: 640px) {
  .process .header h2 {
    font-size: 34px;
  }
}
@media (max-width: 420px) {
  .process .header h2 {
    font-size: 28px;
  }
}
/* process section end */



a.downpage {
    margin: 0 auto 30px;
    display: block;
    width: 40px;
    color: red;
    font-size: 34px;
    line-height: 0;
    position: relative;
    top: -10px;
    animation: topdown 2s infinite;
}

a.downpage:hover{
    animation: none;
    top:0;
}

@keyframes topdown{
    0%{
        top:-10px;
    }
    100%{
        top:5px;
    }
}

.titlebox {
    text-align: center;
}

.titlebox span.titlebox_para {
    text-align: center;
    display: block;
    color: #f4f7f9;
    max-width: 26rem;
    margin: 1rem auto;
    font-size: 0.9rem;
}
.tm_text {
    font-size: 24px;
}
.ccpa-table td {
    padding: 8px 0;
}
.ccpa-table{
    font-size: 16px;
    color: var(--theme-black-color);
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.legitScript img {
    max-height: 100px;
}