@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

:root {
  --color-primary: #1b2e35;
  --color-secondary: #20950f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Poppins", sans-serif;
  color: var(--color-default);
}

a {
  color: var(--color-secondary);
  text-decoration: none;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

p {
  line-height: 1.7;
  /* font-size: 13px; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding-top: 70px;
  overflow: hidden;
}

.sections-bg {
  background-color: #e6f4f670;
}

.section-header {
  text-align: center;
  /*  padding-bottom: 60px;*/
}

.section-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.section-header h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-secondary);
  left: 0;
  right: 0;
  bottom: 0;
}

.section-header:not(.text-start) h2:after {
  margin: auto;
}

.section-header p {
  margin-bottom: 30px;
  color: #414141;
}


/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: var(--color-secondary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: var(--color-primary);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.topbar {
  background: #dbf0d8ab;
  height: 40px;
  font-size: 14px;
  transition: all 0.5s;
  color: #fff;
  padding: 0;
}

.topbar .contact-info i {
  font-style: normal;
  color: #20950f;
  line-height: 0;
}

.topbar .contact-info i a,
.topbar .contact-info i span {
  padding-left: 5px;
  color: #000;
}

@media (max-width: 575px) {

  .topbar .contact-info i a,
  .topbar .contact-info i span {
    font-size: 13px;
  }

}

.topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.topbar .contact-info i a:hover {
  /*  color: #fff;*/
  text-decoration: underline;
}

.topbar .social-links a {
  color: var(--color-primary);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

/*.topbar .social-links a:hover {
  color: #fff;
}*/
.pc {
  color: var(--color-secondary);
}

.header {
  transition: all 0.5s;
  z-index: 997;
  position: relative;
  height: 90px;
  background-color: #e6f4f670;
}

.header.sticked {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 70px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.header.sticked img {
  height: 50px;

}

.sticked-header-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*    padding: 0 3px;*/
    font-family: var(--font-secondary);
    font-size: 16px;
    /*    font-weight: 600;*/
    color: #000;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-secondary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    /*    font-weight: 600;*/
    color: #006a5d;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-secondary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: var(--color-primary);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #fff;
  }

  .navbar .getstarted,
  .navbar .getstarted:focus {
    background: var(--color-primary);
    padding: 8px 20px;
    border-radius: 4px;
    margin: 15px;
    color: #fff;
  }

  .navbar .getstarted:hover,
  .navbar .getstarted:focus:hover {
    color: #fff;
    background: rgba(0, 131, 116, 0.8);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    background-color: var(--color-secondary);

  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin-left: 10px;
    margin-right: 10px;
  }

  .header img {
    height: 50px;
  }

  .login span {
    display: none;
  }

  .logo {
    margin-right: auto;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    z-index: 9996;
  }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/


.testimonials .testimonial-wrap {
  padding-left: 10px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 30px 10px;
  box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
  position: relative;
  background: #fff;
  border-radius: 10px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  margin-right: 15px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #000;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--color-secondary);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  margin: 15px auto 15px auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}


/*--------------------------------------------------------------
# Frequently Asked Questions Section
--------------------------------------------------------------*/
.faq .content h3 {
  font-weight: 400;
  font-size: 34px;
}

.faq .content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 5px;
}

.faq .content p {
  font-size: 15px;
  color: #6c757d;
}

.faq .accordion-item {
  margin-bottom: 20px;
  border: 1px solid #ccc !important;
}

.accordion {
  width: 80%;
  margin: 0 auto;
}

.faq .accordion-item:last-child {
  margin-bottom: 0;
}

.faq .accordion-collapse {
  border: 0;
}

.faq .accordion-button {
  padding: 15px 50px 15px 20px;
  font-weight: 600;
  border: 0;
  line-height: 24px;
  text-align: left;
  background: #fff;
  box-shadow: none;
  border-radius: 10px;
}

.faq .accordion-button .num {
  padding-right: 10px;
  font-size: 20px;
  line-height: 0;
  color: var(--color-primary);
}

.faq .accordion-button:not(.collapsed) {
  color: var(--color-primary);
  border-bottom: 0;
  box-shadow: none;
}

.faq .accordion-button:after {
  position: absolute;
  right: 20px;
  top: 20px;
}

.faq .accordion-body {
  /*  padding: 0 40px 30px 45px;*/
  border: 0;
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  position: relative;
  background: #e6f4f670;
  padding: 0;
}

@media (min-width: 1365px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
/*  line-height: 1.3;*/
}

.hero p {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  margin-bottom: 30px;
}

.tax-status .btn-get-started {
  background-color: #fff;
  color: #000;
}

.btn-get-started {
  width: fit-content;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.3s;
  background: var(--color-secondary);
}

.btn-get-started:hover {
  color: #fff;
  background: var(--color-primary);
}
.btn-get-started-card {
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 50px;
  transition: 0.3s;
  background: var(--color-secondary);
}

.btn-get-started-card:hover {
  color: #fff;
  background: var(--color-primary);
}
@media (max-width: 640px) {
  .hero h2 {
    font-size: 32px;
  }

}

.hero .icon-boxes {
  padding-bottom: 20px;
}

@media (min-width: 1200px) {
  .hero .icon-boxes:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: calc(50% + 20px);
    background-color: #fff;
  }
}

.hero .icon-box {
  padding: 20px 30px;
  position: relative;
  overflow: hidden;
  background: #1a2336;
  box-shadow: 0 0 29px 0 rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
  height: 100%;
  width: 100%;
  text-align: center;
}

.hero .icon-box .title {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
}

.hero .icon-box .title a {
  color: #fff;
  transition: 0.3s;
}

.icon-box .title a:hover {
  color: var(--color-secondary);
}

.hero .icon-box .icon {
  margin-bottom: 20px;
  padding-top: 10px;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.6);

}

.hero .icon-box .icon img {
  filter: invert(1);
}

/*.hero .icon-box:hover {
  background: #009786;
}*/

.hero .icon-box:hover .title a,
.hero .icon-box:hover .icon {
  color: #fff;
}


/* contact  */
.contact .info-item {
  width: 100%;
  background-color: #fff;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #d3d3d3;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 20px;
  /* color: #fff; */
}

.contact .info-item i {
  font-size: 24px;
  color: #fff;
  width: 50px;
  height: 50px;
  background-color: var(--color-secondary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  color: var(--color-primary);
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact .info-item a {
  color: #000;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 15px;
  font-weight: 500;
}

.contact .info-item:hover i {
  color: var(--color-primary);
  background-color: #fff;
  border: 1px solid var(--color-primary);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background-color: var(--color-primary);
  padding-top: 50px;
  color: #fff;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-info .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  font-family: var(--font-primary);
}

.footer .footer-info p {
  font-size: 14px;
  font-family: var(--font-primary);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer h4:after {
  content: "";
  height: 3px;
  width: 30px;
  display: flex;
  background: var(--color-secondary);
  gap: 10px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  color: rgba(0, 131, 116, 0.8);
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  display: inline-block;
  /* line-height: 1; */
  font-size: 15px;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  text-align: center;
  background: #0a171c;
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

/* Common */

.icon-box {
  background: #fff;
  padding: 24px;
  border: 1px solid #c7c7c7;
  border-radius: 20px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  color: var(--color-primary);
}

.icon-box .title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

.icon-box .icon {
  margin-bottom: 20px;
  transition: all 0.3s ease-in-out;
}

.icon-box .title a {
  color: #000;
  font-size: 18px;
  transition: 0.3s;
}

.icon-box p {
  color: #414141;
  font-size: 14px;
}

.icon-box img {
  height: 55px;
}

:is(.digital, .services, .nri-section) .icon-box .icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #bddade;
  background: #e6f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
}

:is(.about-company, .nri-section) .section-header h2:after {
  margin: 0 !important;
}

:is(.about-company, .nri-section) .section-header {
  text-align: left !important;
  padding: 0 !important;
}

.tax-status {
  background-color: var(--color-secondary);
}

.services .service-bg {
  color: #fff;
  display: flex;
  align-items: start;
  padding: 40px;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
}

.tax-return .box {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  text-align: center;
  background: #fff;
  border-radius: 20px;
  padding: 1rem;
}

.tax-return .box span {
  font-size: 25px;
  color: #bbbfc5;
  display: block;
  text-align: right;
  font-weight: 600;
}

.tax-return .box h3 {
  font-size: 17px;
  color: #000;
  font-weight: 600;
  line-height: 23px;
}

.tax-return p {
  text-align: center;
  font-size: 15px;
}

.why-icon {
  background: #fffc;
  padding: 10px 15px;
  border: 1px solid #cccc;
  border-radius: 4px;
  width: 100%;
}

.why-icon h5 {
  font-size: 15px;
}


@media (max-width: 600px) {
  .hero {
    padding-top: 25px;
  }

  section {
    padding-top: 30px;
  }

  .hero .icon-boxes {
    margin-top: 25px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .accordion {
    width: 100%;
  }

  .footer .footer-links {
    margin-bottom: 10px;
  }

  .section-header {
    text-align: left;
  }

  .section-header h2:after {
    margin: initial;
  }

  .tax-return p {
    text-align: left;
  }

  .tax-return .box p {
    text-align: center;
  }

  .services .service-bg {
    padding: 30px;
    gap: 0px;
  }

  .footer {
    padding-top: 25px;
  }
  .icon-box {
    border: 1px solid #c7c7c75c;
  }

}

#grad2 {
    background-image: linear-gradient(215deg, #2c9a26cf, #2c9a26cf);
    background-size: 100% 50%;
    background-repeat: repeat-x;
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#msform fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 4px;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;

    /*stacking fieldsets above each other*/
    position: relative;
}

#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;

    /*stacking fieldsets above each other*/
    position: relative;
}

/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform fieldset .form-card {
    text-align: left;
    color: #9E9E9E;
}

/*#msform input, #msform textarea {
    padding: 0px 8px 4px 8px;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    color: #2C3E50;
    font-size: 14px;
}*/

/*#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    font-weight: 500;
    border-bottom: 2px solid skyblue;
    outline-width: 0;
}*/

#msform fieldset .form-card .form-group input {
  font-size: 14px;
}

#msform fieldset .form-card .form-group {
  font-size: 14px;
}

/*Blue Buttons*/
#msform .action-button {
    width: 130px;
    background: var(--color-primary);
    color: white;
    border: 0 none;
    cursor: pointer;
    padding: 6px 24px;
    margin: 10px 5px;
    font-size: 15px;
    border-radius: 50px;
}

#msform .action-button:hover, #msform .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px var(--color-primary);
}

/*Previous Buttons*/
#msform .action-button-previous {
     width: 130px;
    background: #616161;
/*    font-weight: bold;*/
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 6px 24px;
    margin: 10px 5px;
    font-size: 15px;
    border-radius: 50px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #616161;
}

.form-check, .form-card label {
    color: #000;
    font-size: 14px;
}

.form-check-input:checked {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.custom-file-label {
    /* width: 200px; */
    /* height: 40px; */
    /* background: var(--color-primary); */
    padding: 8px 24px;
    border: 2px solid #ccc;
    /* margin-left: 30px; */
    border-radius: 50px;
    color: #000;
    text-align: center;
    cursor: pointer;
    color: #000 !important;
}

/*Dropdown List Exp Date*/
select.list-dt {
    border: none;
    outline: 0;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px 3px 5px;
    margin: 2px;
}

select.list-dt:focus {
    border-bottom: 2px solid skyblue;
}

/*The background card*/
.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative;
}

/*FieldSet headings*/

.fs-title {
    font-size: 22px;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}


/*progressbar*/
#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: #939393;
    padding: 0;
    display: flex;
    align-items: center;
}

#progressbar .active {
    color: #000000;
}

#progressbar li {
    list-style-type: none;
    font-size: 14px;
    /* width: auto; */
    /* float: left; */
    position: relative;
    flex-grow: 1;
    font-weight: 400;
}

/*Icons in the ProgressBar*/
#progressbar #account:before {
    font-family: 'BOOTSTRAP-ICONS';
    content: "\F47A";
}

#progressbar #personal:before {
    font-family: 'BOOTSTRAP-ICONS';
    content: "\F4DA";
}

#progressbar #payment:before {
    font-family: 'BOOTSTRAP-ICONS';
    content: "\F633";
}

#progressbar #confirm:before {
    font-family: 'BOOTSTRAP-ICONS';
    content: "\F633";
}

/*ProgressBar before any progress*/
#progressbar li:before {
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: #939393;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px;
}
/*ProgressBar connectors*/
#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

/*Color number of the step and the connector before it*/
#progressbar li.active:before, #progressbar li.active:after {
    background: var(--color-primary);
}

/*Imaged Radio Buttons*/
.radio-group {
    position: relative;
    margin-bottom: 25px;
}

.radio {
    display:inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: lightblue;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor:pointer;
    margin: 8px 2px; 
}

.radio:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.radio.selected {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}

/*Fit image in bootstrap div*/
.fit-image{
    width: 100%;
    object-fit: cover;
}

/*--------------------------------------------------------------
# 404 Page
--------------------------------------------------------------*/
/*.error-404 {*/
/*    margin-top: 90px;*/
/*}*/
.err-text {
  font-size: 10em;
  font-weight: 600;
  color: #000;
  letter-spacing: -2px;
  margin-bottom: -44px;
}

.err-text span {
  color: var(--color-primary);
}

.msg-text {
  font-size: 30px;
  color: #000;
  font-weight: 600;
  margin-bottom: 10px;
}

.err a {
  color: var(--color-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: .5s;
}

.err p {
  color: #222;
  font-size: 17px;
}

#p_ag {
    /*background-color: #9C27B0;*/
    background-image: linear-gradient(215deg, #2c9a26cf, #2c9a26cf);
}

#p_ag p {
    font-size: 14px;
}

 #p_ag .card {
     border: none;
 }
 
 #p_ag .fs-text {
    font-size: 17px;
    padding-left: 1rem;
    font-weight: bold;
    display: block;
 }
 
 #p_ag .p-name {
    font-weight: 700;
 }

 #p_ag .card-header {
     /*padding: .5rem 1rem;*/
     height: 42px;
     margin-bottom: 0;
     background-color: #fff;
     border: none;
 }
 
 #p_ag span {
    font-size: 14px;
}

#p_ag span.fw-bold {
    font-size: 15px;
}

 #p_ag .card-header:hover {
     color: #212529;
     background-color: #e2e6ea;
     border-color: #dae0e5;
     /*box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, .5);*/
 }
 
  #p_ag label {
    cursor: pointer;
    font-size: 14px;
  }
  
  #p_ag .border-right {
          /*border-color: ;*/
    border-right: 1px solid rgba(229,231,235,1);
  }


 #p_ag .form-control {
     height: 50px;
     border: 2px solid #eee;
     border-radius: 6px;
     font-size: 14px;
 }

 #p_ag .form-control:focus {
     color: #495057;
     background-color: #fff;
     border-color: #039be5;
     outline: 0;
     box-shadow: none;
 }

 #p_ag .input {
     position: relative;
 }

 #p_ag .input i {
     position: absolute;
     top: 16px;
     left: 11px;
     color: #989898;
 }

 #p_ag .input input {
     text-indent: 25px;
 }

 #p_ag .card-text {
     font-size: 13px;
     margin-left: 6px;
 }

 #p_ag .certificate-text {
     font-size: 12px;
 }

 #p_ag .billing {
     font-size: 11px;
 }

 #p_ag .super-price {
     top: 0px;
     font-size: 22px;
 }

 #p_ag .super-month {
     font-size: 11px;
 }

 #p_ag .line {
     color: #bfbdbd;
 }

 #p_ag .free-button {
    width: 130px;
    background: #004763;
    color: white;
    border: 0 none;
    cursor: pointer;
    padding: 6px 24px;
    margin: 10px 5px;
    font-size: 15px;
    border-radius: 50px;
}

 #p_ag .free-button:hover,  #p_ag .free-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #004763;
}

 #p_ag .payment-card-body {
     flex: 1 1 auto;
     padding: 24px 1rem !important;
 }
 
 .thanks img {
    width: 315px;
}

.thanks .section-title h2 {
    box-shadow: unset;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-left: 0;
    width: auto;
}

.thanks span.fw-bold {
    width: 45px;
    border: 1px solid #434445;
    border-radius: 50%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks .number {
    flex-basis: 15%;
}

.thanks .content {
    flex-basis: 85%;
}

.th-sec .call-now {
    background: #2776af;
}

.th-sec.sec-refund-status {
    background-image: none;
}

.th-sec.sec-refund-status article::before {
    content: none;
}

.thanks .account-btn {
    color: #000;
    font-size: 15px;
    font-weight: 500;
    border: none;
    padding: 0.7rem 2.5rem;
    text-transform: uppercase;
    border: 1.5px solid #000;
    border-radius: 100px;
    display: inline-block;
    cursor: pointer;
    outline: none;
    vertical-align: middle;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.thanks .btn-arrow {
    position: relative;
    transition: background-color 300ms ease-out;
}

.thanks .btn-arrow span {
    display: inline-block;
    position: relative;
    transition: all 300ms ease-out;
    will-change: transform;
}

.thanks .btn-arrow svg {
    position: absolute;
    width: 1.1em;
    right: 0px;
    opacity: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 300ms ease-out;
    will-change: right, opacity;
}

.thanks .btn-arrow:hover svg {
    opacity: 1;
    right: -1.6rem;
    color: #000;
}



/* singlep page */

.breadcrumbs .page-header {
    min-height: 20vh;
    position: relative;
}
.breadcrumbs nav {
    background-color: #20950f12;
    padding: 15px 0;
}
.breadcrumbs nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-default);
}
.breadcrumbs nav ol li+li::before {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px;
    color: var(--color-secondary);
    content: "/";
}
.icon-box .lists {
    margin-bottom: 1rem;
    font-size: 14px;
}
.icon-box .list {
    margin-bottom: 0.5rem;
}

.icon-box .list svg {
    height: 1.5rem;
    width: 1.5rem;
    flex-shrink: 0;
    color: rgb(0 71 99);
}

.banner_tag {
    background: var(--color-primary);
    width: fit-content;
    color: #fff;
    padding: 4px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 14px;
}

.ribbon {
  position: absolute;
  left: -5px; top: -5px;
  z-index: 1;
  overflow: hidden;
  width: 75px; height: 75px;
  text-align: right;
}
.ribbon span {
  font-size: 12px;
  font-weight: bold;
  color: #FFF;
  text-transform: uppercase;
  text-align: center;
  line-height: 20px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 100px;
  display: block;
  background: #79A70A;
  background: linear-gradient(#ff5959 0%, #cb0202 100%);
  box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
  position: absolute;
  top: 19px; left: -21px;
}
.ribbon span::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid #d10c0c;
    border-right: 3px solid transparent;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #d10c0c;
}
.ribbon span::after {
    content: "";
    position: absolute;
    right: 0px;
    top: 100%;
    z-index: -1;
    border-left: 3px solid transparent;
    border-right: 3px solid #d10c0c;
    border-bottom: 3px solid transparent;
    border-top: 3px solid #d10c0c;
}

.price-tag {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}
.price-tag del {
    font-weight: 400;
    font-size: 16px;
}

.price-tag {
    --f: .5em;
    --r: .8em;
    position: absolute;
    right: 20px;
    top: calc(-1* var(--f));
    padding: 15px;
    border: solid #0000;
    border-width: 0 calc(2* var(--f)) var(--r) 0;
    background: radial-gradient(50% 100% at bottom, #1a2336 98%, #0000 101%) 100% 0 / calc(2* var(--f)) var(--f) no-repeat border-box;
    background-color: #1a2336c9;
    border-radius: var(--f) var(--f) 0 0;
    clip-path: polygon(100% 0, 0 0, 0 calc(100% - var(--r)), calc(50% - var(--f)) 100%, calc(100% - 2* var(--f)) calc(100% - var(--r)), calc(100% - 2* var(--f)) var(--f), 100% var(--f));
}

.strip-secs {
    display: flex;
    justify-content: center;
    gap: 45px;
    flex-wrap: wrap;
}
.hero-strip {
    background: #3aa5d761;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 4px;
    width: 20%;
}
.hero-strip a {
    display: flex;
    align-items: center;
     gap: 15px;
     color: #000;
}

.hero-strip img {
    background: #fff;
    height: 50px;
    padding: 10px;
    margin-left: -50px;
    box-shadow: 0px 5px 6px 0px #cccc;
    border-radius: 4px;
}

.hero-strip2 {
    background: #f8c30157;
}

.hero-strip3 {
    background: #ec836696;
}

.hero-strip4 {
    background: #00b8128f;
}


@media (max-width: 600px) {
    .thanks span.fw-bold {
        width: 32px;
        height: 32px;
    }
    
    .hero-strip {
         width: 80%;
    }
   .strip-secs {
    gap: 15px;
   }

}

@media screen and (min-width:768px) and (max-width:1023px) {
     .hero-strip {
         width: 43%;
    }
   .strip-secs {
    gap: 35px;
   }   
    
}

.bh-widget-page-wrapper {
    bottom: 15px !important;
}