* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  margin-top: 0 !important; 
  overflow-x: hidden; 
}

body {
  overflow-x: hidden !important;
}

/* Body and Container */
body {
  margin: 0px;
  padding: 0px;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--dark-blue-color);
  padding-top: 76px;
}

:root {
  --primary-color: #87CEEB; /* Sky Blue */
  --secondary-color: #39FF14; /* Neon Green */
  --blue-color: #0751a0; /* Dark Blue */
  --dark-blue-color: #1E2A38; /* Dark Blue */
  --indigo-color: #4B0082; /* Indigo */
  --silver-grey-color: #C0C0C0; /* Silver Grey */
  --electric-blue-color: #00BFFF; /* Electric Blue */
  --aqua-color: #00FFFF; /* Aqua */
  --white-color: #FFFFFF; /* White */
}

h1,
h2,
h3,
h4, 
h5 {
  font-family: "Lora", serif;
  font-weight: 600;
  font-style: normal;
  line-height: 1.2;
}

h1 {
  font-size: 42px;
  margin: 0px 0px 20px 0px;
}

h2 {
  font-size: 38px;
  margin: 0px 0px 20px 0px;
}

h3 {
  font-size: 34px;
  margin: 0px 0px 20px 0px;
}

h4 {
  font-size: 32px;
  margin: 0px 0px 20px 0px;
}

h5 {
  font-size: 28px;
  margin: 0px 0px 20px 0px;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child {
  margin: 0px 0px 0px 0px;
}

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

a:hover {
  transition: .3s ease;
}

a[href=""]:hover {
  color: inherit;
}

a[href=""] {
  cursor: default;
  pointer-events: none;
}

.notclick > a {
  cursor: default;
  pointer-events: none;
}

p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0px 0px 20px 0px;
}

p:last-child {
  margin: 0;
}

ul {
  padding-left: 15px;
}

ol {
  padding-left: 20px;
}

ul,
ol {
  margin: 0 0 20px;
}

ul li,
ol li {
  font-size: 16px;
  line-height: 1.5;
}

.list-style ul {
  padding-left: 20px;
}

.list-style ul li, 
.list-style ol li {
  position: relative;
  list-style: none;
  padding-bottom: 10px;
}

.list-style ul li:last-child, 
.list-style ol li:last-child {
  padding-bottom: 0;
}

.list-style ul li::before, 
.list-style ol li::before {
  content: "\f00c";
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  position: absolute;
  left: -20px;
  top: 4px;
  color: var(--blue-color);
}

.content {
  margin: 0px 0px 20px 0px;
}

.content:last-child {
  margin: 0;
}

.m-0 {
  margin: 0 !important
}

.mt-0,
.my-0 {
  margin-top: 0 !important
}

.mr-0,
.mx-0 {
  margin-right: 0 !important
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important
}

.ml-0,
.mx-0 {
  margin-left: 0 !important
}

.p-0 {
  padding: 0 !important
}

.pt-0,
.py-0 {
  padding-top: 0 !important
}

.pr-0,
.px-0 {
  padding-right: 0 !important
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important
}

.pl-0,
.px-0 {
  padding-left: 0 !important
}

.w-100 {
  width: 100%;
  display: block;
}

.h-100 {
  height: 100%;
}

.img-fluid {
  width: 100%;
  display: block;
}

.uppercase_text {
  text-transform: uppercase;
}

.container {
  width: 100%;
  max-width: 1290px;
  margin: 0px auto;
}

.text-white {
  color: var(--white-color);
}

.text-left {
  text-align: left !important;
}

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

.text-right {
  text-align: right !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.btn, .button {
  background: var(--primary-color);
  color: var(--dark-blue-color);
  border: 1px solid var(--primary-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  transition: all 0.3s;
}

.btn:hover, .button:hover {
  background: var(--blue-color);
  color: var(--white-color);
  border-color: var(--blue-color);
}

.buttons-group {
  margin-top: 30px;
}

.buttons-group .btn:first-child {
  margin-left: 0 !important;
}

.buttons-group .btn {
  margin-left: 5px !important;
}

/* Preloader container */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* Make sure it's on top of everything */
  display: none; /* Hidden by default */
}

/* Spinning circle */
.preloader::before {
  content: "";
  width: 50px;
  height: 50px;
  border: 6px solid #f3f3f3; /* Light background color */
  border-top: 6px solid var(--primary-color); /* Blue color for the spinning part */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Keyframes for spinning animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


/* ------------ Header Css Start------------------ */


.header.active {
  box-shadow: rgb(0 0 0 / 10%) 0px 10px 15px -3px, rgb(0 0 0 / 5%) 0px 4px 6px -2px;
}

/*.header.active .sticky-logo {
  display: block;
}

.header.active .white-logo {
  display: none;
}

.sticky-logo {
  display: none;
}

.header.active .header_wrapper .menu-item a {
  color: var(--dark-blue-color);
}

.header.active .header_wrapper .menu_wrapper .current-menu-item > a {
  color: var(--primary-color);
}

.header.active .header_wrapper .menu-item.menu-item-has-children .current-menu-item a {
  color: var(--primary-color) !important;
}

.header.active .header_wrapper .menu-item.menu-item-has-children .current-menu-item a,
.header.active .header_wrapper .menu-item.menu-item-has-children.current-menu-ancestor > a {
  color: var(--primary-color);
}*/


.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s;
  background-color: var(--white-color);
  padding: 15px 15px;
  z-index: 99999;
}

.header_wrapper .logo {
  max-width: 160px;
  display: block;
}

.header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav-col .header_links {
  max-width: 1290px;
  margin: 0 auto;
}

.header_wrapper .menu_wrapper {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 58px;
}

.header_wrapper .menu-item {
  position: relative;
  list-style-type: none;
}

.header_wrapper .menu-item a {
  padding: 10px 0px;
  display: block;
  font-size: 16px;
  line-height: normal;
  color: var(--dark-blue-color);
  font-weight: 700;
}

.header_wrapper .menu_wrapper .current-menu-item > a {
  color: var(--blue-color);
}

.header_wrapper .menu-item.menu-item-has-children .current-menu-item a {
  color: var(--blue-color); !important;
}

.header_wrapper .menu-item.menu-item-has-children .current-menu-item a,
.header_wrapper .menu-item.menu-item-has-children.current-menu-ancestor > a {
  color: var(--blue-color);;
}

.header_wrapper .menu-item.menu-item-has-children {
  position: relative;
}

.header_wrapper .menu-item.menu-item-has-children > a:after {
  font: var(--fa-font-solid);
  content: '\f078';
  margin-left: 5px;
}

/*.header_wrapper .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background: var(--white-color);
  min-width: 220px;
  padding: 15px 15px;
  border-radius: 5px;
}*/

.header_wrapper .menu_wrapper .menu-item.menu-item-has-children .sub-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 15px solid white;
}

.header_wrapper .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background: var(--white-color);
  padding: 15px 15px;
  border-radius: 5px;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  min-width: 264px;
  border-radius: 0 0 15px 15px;
  top: 48.5px;
  box-shadow: 0 3px 4px 4px rgba(0, 0, 0, 0.03), 0 4px 8px -2px rgba(141, 141, 148, 0.2);
}

.header_wrapper .menu-item.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transition: .3s ease-in-out;
}

.header_wrapper .sub-menu li {
  list-style-type: none;
  margin-bottom: 10px;
}

.header_wrapper .sub-menu li:last-child {
  margin-bottom: 0px;
}

.header_wrapper .sub-menu a {
  color: #000 !important;
  margin: 0px;
  display: block;
  width: 100%;
  padding: 0px;
}

.header_wrapper .sub-menu a:hover {
  color: var(--primary-color);
}

.header_wrapper .menu-item .dropdown-btn {
  position: absolute;
  right: 20px;
  top: 14px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: var(--white-color);
  line-height: 28px;
  border: 1px solid var(--white-color);
  background-size: 20px;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.header_wrapper .dropdown-btn .fa {
  transition: transform 0.3s ease;
}

.header_wrapper .dropdown-btn.rotate .fa-solid {
  transform: rotate(180deg);
}

.header_wrapper .menu_icon {
  display: none;
}


/* ------------ Header Css End ------------------ */


/* ------------ Pages Css Start ------------------ */
.section-title h2 {
  color: var(--blue-color);
}

.hero-section {
  padding: 80px 15px;
  position: relative;
}

.hero-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
}

.hero-section .hero-col {
  width: calc(100% / 2 - 30px);
}

.hero-section .hero-col h1 {
  color: var(--blue-color);
}


.benefits-section {
  position: relative;
  padding: 80px 15px;
  background-color: #fbf9f8;
}

.benefits-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 30px;
}

.benefit-card {
  background-color: var(--white-color);
  border-radius: 10px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 4px solid var(--primary-color);
  width: calc(100% / 4 - 23px);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefit-icon img {
  max-width: 40px;
  margin: 0 auto;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 15px;
  color: var(--dark-blue-color);
}

.benefit-card p {
  color: var(--dark-blue-color);
}


.features-section {
  padding: 80px 15px;
  position: relative;
}

.features-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
}

.features-section .features-col {
  width: calc(100% / 2 - 30px);
}

.features-section .features-col img {
  border-radius: 15px;
}

.features-section .features-col h2 {
  color: var(--blue-color);
}

.cta-section {
  padding: 80px 15px;
  position: relative;
  background-color: #fbf9f8;
  text-align: center;
}

.cta-section h2 {
  color: var(--blue-color);
}

.breadcrumbs-section {
  padding: 40px 15px;
  background: #F6F6F6;
  min-height: 40px;
  color: #000;
}

.breadcrumbs-section .breadcrumb {
  margin-bottom: 15px;
}

.breadcrumbs-section .breadcrumb a {
  font-weight: 600;
  color: var(--blue-color);
}

.two-section {
  padding: 80px 15px;
  position: relative;
}

.two-section .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
}

.two-section .two-col {
  width: calc(100% / 2 - 30px);
}

.two-section .two-col h2:first-child {
  margin-top: 0;
}

.two-section .two-col h2 {
  color: var(--blue-color);
  margin-top: 50px;
}

.why-us-section {
  padding: 80px 15px;
  background-color: #f9f9f9;
}

.why-us-section .section-title {
  margin-bottom: 60px;
}

.why-us-grid .benefit-card {
  width: calc(100% / 3 - 20px);
  text-align: left;
}

.services-section {
  padding: 80px 15px;
}

.services-section .section-title {
  margin-bottom: 60px;
}

.services-grid .benefit-card {
  width: calc(100% / 3 - 20px);
  text-align: left;
}

.payment-options-section {
  padding: 80px 15px;
  background-color: #fff;
}

.payment-options-section .section-title {
  margin-bottom: 60px;
}

.payment-details {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.7;
}

.upi-qr {
  margin: 15px 0;
  max-width: 120px;
  border-radius: 6px;
}

.btn-small {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  font-size: 0.9rem;
  background-color: var(--primary-color);
  border-radius: 5px;
  text-decoration: none;
}

.btn-small:hover {
  background: var(--blue-color);
  color: var(--white-color);
  border-color: var(--blue-color);
}


.contact-info-form {
  padding: 80px 15px;
  background: #fff;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}

.contact-info {
  width: calc(40% / 1 - 20px);
}

.contact-form {
  width: calc(60% / 1 - 20px);
}

.contact-info h2 {
  color: var(--blue-color);
}

.contact-list ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
}

.contact-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-list i {
  font-size: 1.2rem;
  min-width: 20px;
}


/* ------------ Pages Css End ------------------ */

/* ------------ Slick Css Start ------------------ */
.slick-list {
  margin: 0 -10px;
}

.slick-slide {
  overflow: hidden;
  margin: 0 10px;
}

.slick-next::before {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  font-size: 24px;
}

.slick-next {
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  z-index: 1;
}

.slick-next:hover {
  color: var(--dark-blue-color);
}

.slick-prev::before {
  content: '\f060'; /* Unicode for the 'chevron-left' icon in Font Awesome 6 */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary-color);
  font-size: 24px;
}

.slick-prev {
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
  z-index: 1;
}

.slick-prev:hover {
  color: var(--dark-blue-color);
}

.slick-dots {
  bottom: 30px;
}

.slick-dots li button {
  display: none;
}

.slick-dots li {
  height: 8px;
  width: 50px;
  border-radius: 10px;
  background: var(--white-color);
  margin: 0px 8px;
}

.slick-dots li.slick-active {
  background: var(--primary-color);
}

/* ------------ Slick Css End ------------------ */

/* ------------ Form Css Start ------------------ */
.custom-contact-form {
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.custom-contact-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.custom-contact-form .form-row .form-group {
  width: calc(50% / 1 - 10px);
}


.custom-contact-form .form-group p {
  margin: 0;
}

.custom-contact-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: var(--dark-blue-color);
}

.custom-contact-form .form-group br {
  display: none;
}

.custom-contact-form .wpcf7-not-valid-tip {
  font-size: 12px;
}

.custom-contact-form input[type="text"],
.custom-contact-form input[type="email"],
.custom-contact-form input[type="tel"],
.custom-contact-form select,
.custom-contact-form textarea,
.custom-contact-form input[type="file"] {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  font-size: 16px;
  color: var(--dark-blue-color);
  background: transparent;
  transition: border-color 0.3s ease;
}

.custom-contact-form input::placeholder,
.custom-contact-form select::placeholder,
.custom-contact-form textarea::placeholder {
  color: var(--dark-blue-color);
  opacity: 1;
}

.custom-contact-form input[type="text"]:focus,
.custom-contact-form input[type="email"]:focus,
.custom-contact-form input[type="tel"]:focus,
.custom-contact-form select:focus,
.custom-contact-form textarea:focus {
  border-color: var(--primary-color);
  outline: none;
}

.custom-contact-form textarea {
  height: 80px;
  resize: vertical;
}

.custom-contact-form input[type="submit"] {
  background: var(--primary-color);
  color: var(--dark-blue-color);
  border: 1px solid var(--primary-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  transition: all 0.3s;
  box-shadow: none;
}

.custom-contact-form input[type="submit"]:hover {
  background: var(--blue-color);
  color: var(--white-color);
  border-color: var(--blue-color);
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--primary-color);
  color: var(--dark-blue-color);
}

/* ------------ Form Css End ------------------ */


/* ------------ Footer Css Start ------------------ */
.footer-section {
  background-color: var(--dark-blue-color);
  color: var(--white-color);
}

.footer-section .footer-info {
  padding: 60px 15px;
}

.footer-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.footer-col {
  width: calc(25% - 24px);
}

.footer-logo img {
	max-width: 145px;
}

.footer-heading {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
}

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

.footer-col ul li {
	margin-bottom: 10px;
}

.footer-col ul li:last-child {
  margin-bottom: 0;
}

.footer-col ul li a {
	color: var(--white-color);
	text-decoration: none;
}

.footer-col ul li a:hover {
	color: var(--primary-color);
}

.footer-col p {
  margin: 10px 0;
  color: var(--white-color);
}

.footer-col p a {
  color: var(--white-color);
}

.footer-col p a:hover {
  color: var(--primary-color);
}

.footer-col i {
	margin-right: 8px;
	color: var(--white-color);
}

.footer-col .address, .footer-col .call, .footer-col .email, .footer-col .fax {
  display: flex;
  align-items: flex-start;
}

.footer-col .address i, .footer-col .call i, .footer-col .email i, .footer-col .fax i {
  margin-top: 4px;
}

.footer-col .social-links {
  display: flex;
  margin-top: 20px;
}

.footer-col .social-link ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  margin-bottom: 0;
}

.footer-info .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  color: var(--white-color);
  transition: all 0.3s ease;
}

.footer-info .social-links a:hover {
  background-color: var(--primary-color);
  color: var(--dark-blue-color);
}

.footer-col .social-links i {
  margin: 0;
}

.footer-section .copy-right {
  padding: 15px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999;
}

.footer-section .copy-right .copyright {
  text-align: center;
  font-size: 14px;
}

.footer-section .copy-right a {
  color: var(--white-color);
}

.footer-section .copy-right a:hover {
  color: var(--primary-color);
}


/* ------------ Footer Css End ------------------ */




@media (max-width: 1200px) {
  .header_wrapper .menu_wrapper {
    gap: 40px;
  }
  
}


@media (max-width: 992px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 30px;
  }

  h5 {
    font-size: 26px;
  }

  .header_wrapper .menu_wrapper {
    gap: 24px;
  }

  .header_wrapper .menu-item a {
    font-size: 14px;
  }

  .hero-section .row,
  .features-section .row,
  .two-section .row {
    gap: 30px 30px;
  }

  .hero-section .hero-col,
  .features-section .features-col,
  .two-section .two-col {
    width: calc(100% / 2 - 15px);
  }

  .benefits-grid {
    gap: 40px 20px;
  }

  .benefit-card {
    width: calc(100% / 3 - 14px);
  }

  .contact-info, .contact-form {
    width: calc(50% / 1 - 20px);
  }

  .custom-contact-form {
    padding: 30px 15px;
  }

  .footer-row {
    gap: 30px 20px;
  }

  .footer-col {
    width: calc(50% - 10px) !important;
  }

  .footer-logo img {
    max-width: 120px;
  }


}

@media (max-width: 767px) {
  h1 {
    font-size: 32px;
    margin: 0px 0px 20px 0px;
  }

  h2 {
    font-size: 28px;
    margin: 0px 0px 20px 0px;
  }

  h3 {
    font-size: 26px;
    margin: 0px 0px 20px 0px;
  }

  h4 {
    font-size: 24px;
    margin: 0px 0px 20px 0px;
  }

  h5 {
    font-size: 22px;
    margin: 0px 0px 20px 0px;
  }

  p, ul li, ol li {
    font-size: 14px;
  }
	
  .btn, .button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .header_wrapper .logo-col {
    z-index: 99999;
  }

  .header_wrapper .menu_icon {
    position: absolute;
    display: block;
    z-index: 99999;
    cursor: pointer;
    font-size: 20px;
    height: 20px;
    width: 26px;
    right: 18px;
    top: 31px;
    transition: all 0.3s;
  }

  .header_wrapper .menu_icon i {
    color: #9e9e9e;
    font-size: 30px;
    margin-top: -2px;
    cursor: pointer;
  }

  .header_wrapper .menu_icon i:hover {
    color: var(--white-color);
  }

  .header_wrapper .navbar-toggler-icon {
    content: "";
    display: inline-block;
    width: 1.5em;
    height: auto;
    vertical-align: middle;
    background: no-repeat center center;
    background-size: 100% 100%;
    cursor: pointer;
  }

  .header_wrapper .navbar-toggler-icon::before {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    right: 0;
    margin: 0px auto;
    width: 100%;
    height: 7px;
    border-top: 2px solid var(--dark-blue-color);
    border-bottom: 2px solid var(--dark-blue-color);
    transform: rotate(0deg);
    transition: all 300ms ease-in-out;
  }

  .header_wrapper .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    margin: 0px auto;
    width: 100%;
    height: 7px;
    border-top: 2px solid var(--dark-blue-color);
    transform: rotate(0deg);
    transition: all 300ms ease-in-out;
  }

  .header.active .header_wrapper .navbar-toggler-icon::before, 
  .header.active .header_wrapper .navbar-toggler-icon::after {
    border-color: var(--dark-blue-color) !important;
  }

  .header_wrapper .menu_icon.active .navbar-toggler-icon::before {
    transform: rotate(45deg);
    border-bottom: none;
    border-bottom-color: currentcolor;
    top: 10px;
    left: 0px;
    transition: all 300ms ease-in-out;
    border-color: var(--dark-blue-color);
  }

  .header_wrapper .menu_icon.active .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    top: 10px;
    left: 4px;
    transition: all 300ms ease-in-out;
    border-color: var(--dark-blue-color);
  }

  .header_wrapper .menu_icon {
    display: block;
  }

  .header_wrapper .menu-item {
    border-top: 1.5px solid var(--white-color);
  }

  .header_wrapper .menu-item:first-child {
    border-top: none;
  }

  .header_wrapper .menu-item::after {
    display: none;
  }

  .header_wrapper .header_wrapper .menu-item:first-child {
    border: none;
  }

  .header_wrapper .menu-item.menu-item-has-children>a::after {
    display: none;
  }

  .header_wrapper .menu-item .dropdown-btn {
    display: block;
  }

  .header_wrapper ul.sub-menu {
    display: none;
    left: 0;
    border-radius: 0px;
    position: relative;
    width: 100%;
    box-shadow: none;
    float: none;
    opacity: 1 !important;
    visibility: visible !important;
    transition: unset !important;
    transform: unset;
    top: unset;
    min-width: auto;
    background: transparent;
    padding: 0;
    margin: 0;
  }

  .header_wrapper .menu_wrapper .menu-item.menu-item-has-children .sub-menu::before {
    display: none;
  }

  .header_wrapper .sub-menu li {
    margin-bottom: 0;
  }

  .header_wrapper .menu-item a {
    padding: 20px 20px;
    color: var(--white-color);
  }

  .header.active .header_wrapper .menu-item a {
    color: var(--white-color);
  }

  .header_wrapper .menu-item.menu-item-has-children .current-menu-item a, 
  .header_wrapper .menu-item.menu-item-has-children.current-menu-ancestor > a,
  .header.active .header_wrapper .menu-item.menu-item-has-children .current-menu-item a, 
  .header.active .header_wrapper .menu-item.menu-item-has-children.current-menu-ancestor > a {
    color: var(--dark-blue-color) !important;
  }

  .header_wrapper .menu_wrapper .current-menu-item > a {
    color: var(--dark-blue-color) !important;
  }

  .header_wrapper .sub-menu .menu-item:first-child {
    border-top: 1px solid var(--white-color);
  }

  .header_wrapper ul.sub-menu li a {
    color: var(--white-color) !important;
    padding: 20px 30px 20px 30px;
  }

  .header_wrapper .header_wrapper ul.sub-menu li {
    margin: 0;
    padding-bottom: 0;
  }

  .header_wrapper .menu_wrapper {
    position: fixed;
    left: 0px;
    right: 0;
    text-align: left;
    padding: 0;
    background: var(--primary-color);
    width: -webkit-fill-available;
    width: -moz-available;
    margin-top: 0;
    display: none;
    /* top: 92px; */
    top: 0;
    z-index: 9999;
    padding-top: 100px;
    display: none;
  }

  .header_wrapper .sub-menu {
    top: 45px;
  }

  .header_wrapper .menu_wrapper {
    display: none;
  }

  .header_wrapper .menu_wrapper.active {
    display: block;
  }

  .header_wrapper .sub-menu {
    z-index: 99;
  }

  .hero-section,
  .benefits-section,
  .features-section,
  .cta-section,
  .two-section,
  .why-us-section,
  .services-section,
  .payment-options-section,
  .contact-info-form {
    padding: 50px 15px;
  }

  .hero-section .hero-col,
  .features-section .features-col,
  .two-section .two-col {
    width: 100%;
  }

  .benefit-card {
    width: calc(100% / 2 - 10px);
    padding: 30px 20px;
  }

  .contact-info, .contact-form {
    width: 100%;
  }

  .custom-contact-form input[type="text"], 
  .custom-contact-form input[type="email"], 
  .custom-contact-form input[type="tel"], 
  .custom-contact-form select, 
  .custom-contact-form textarea, 
  .custom-contact-form input[type="file"] {
    font-size: 14px;
  }



}


@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 23px;
  }

  h4 {
    font-size: 21px;
  }

  h5 {
    font-size: 20px;
  }


  .benefit-card {
    width: 100%;
    padding: 30px 20px;
  }

  
  .custom-contact-form .form-row {
    gap: 0;
  }

  .custom-contact-form .form-row .form-group {
    width: 100%;
  }

  .footer-section .footer-info {
    padding: 50px 15px;
  }

  .footer-col ul {
    margin: 0;
  }

  .footer-col ul li:last-child {
    margin-bottom: 0;
  }

  .footer-col {
    width: 100% !important;
  }

  .footer-section .copy-right .copyright {
    font-size: 12px;
  }

}


