@charset "UTF-8";
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  font-family: "Open Sans", sans-serif;
  color: #222;
    margin: 0;
}

a {
  color: #262626;
  text-decoration: none;
}

a:hover {
  color: #262626;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #262626;
  border-top-color: #d1e6f9;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 80px;
  z-index: 996;
  background: #262626;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #666;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

.datepicker-dropdown {
  padding: 20px !important;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 0;
  top: 0px;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
}

#header.header-scrolled {
  top: 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: "Poppins", sans-serif;
}

#header .logo a {
  color: #2c4964;
}

#header .logo img {
  max-height: 80px;
}

/**
* Appointment Button *
*/
.appointment-btn {
    margin-left: 25px;
    border-color: #262626;
    color: #262626;
    border: 1px solid;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}

.appointment-btn:hover {
  background: #262626;
  color: #fff;
}

@media (max-width: 768px) {
  .appointment-btn {
    margin: 0 15px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin: 0;
}

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

.navbar li {
  position: relative;
}

.navbar>ul>li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 25px;
}
.navbar>ul>li.dropdown {
    padding-right: 15px;
}
.navbar>ul>li.dropdown:after {
    content: "\f078";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 17px;
    font-size: 12px;
}
.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid #fff;
  padding: 5px 2px;
  font-weight: 600;
}

.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: #262626;
  border-color: #262626;
}

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

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

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #262626;
  border: none;
}

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

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  background-color: #262626;
}

.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 (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

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

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2c4964;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(28, 47, 65, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #2c4964;
  border: none;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #262626;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

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

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

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

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #262626;
}

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  background-color: #2c4964;
  padding: 200px 0;    
}

#hero .container {
  position: relative;
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #2c4964;
}

#hero h2 {
  color: #fff;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: #262626;
}

#hero .btn-get-started:hover {
  background: #3291e6;
}

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

@media (max-width: 992px) {
  #hero {
    margin-bottom: 0;
    height: 100vh;
  }

  #hero .container {
    padding-bottom: 63px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

@media (max-height: 600px) {
  #hero {
    height: 110vh;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f1f7fd;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #262626;
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #262626;
  bottom: 0;
  left: calc(50% - 20px);
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 40px 0;
    background-color: #f1f7fd;
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 100px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: #262626;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #2c4964;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #4b7dab;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background: #a9a9a9;
  color: #262626;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}


@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  background: #3c3c3c;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #262626;
  box-shadow: 0px 2px 15px rgb(0 0 0 / 10%);
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
  margin: 0;
}

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

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

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #1c84e3;
  font-size: 18px;
  line-height: 1;
}

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

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

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #959595;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #bfdcf7;
}

#footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #262626;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}

#footer .footer-newsletter form input[type=submit]:hover {
  background: #1c84e3;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  background: #fff;
  color: #262626;
  line-height: 1;
  margin-right: 4px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

#footer .social-links a:hover {
  background: #000000;
  color: #fff;
  text-decoration: none;
}

/*********************/
.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}
.footer-logo img{
/*    max-width: 180px;*/
}
.hamburgur-img img {
    max-width: 50px;
}
.arrow {
  border: solid #000;
  border-width: 0px 1px 1px 0;
  display: inline-block;
  padding: 3px;
  margin: -3px 0 0;
}

.arrow.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.text-center {
    text-align: center;
}
.social-links img {
    max-width: 20px;
}

.social-links {
    display: flex;
}
.back-to-top img {
    max-width: 30px;
}
#main {
    margin-top: 135px;
}
.home-hero-section {
    position: relative;
    background-color: #d8edff;
    padding: 60px 0 150px;
}

.home-hero-title {
    color: #262626;
    font-size: 2rem;
    margin: 0 0 5px;
}

.home-hero-content p {
    color: #262626;
    font-size: 14px;
}

.home-hero-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}
.reg-title {
    font-size: 0.9rem;
    color: #262626;
    font-weight: normal;
    margin: 0 0 5px;
}

.home-price-list p {
    color: #262626;
    font-size: 1rem;
    margin: 0;
}

.home-price-list p span {
    font-size: 0.7rem;
}

.home-link-box {
    border: 1px solid #737373;
    display: inline-block;
    border-radius: 5px;
    padding: 10px;
    text-align: center;
    margin: 0 0 10px 10px;
}

.home-link-box:first-child {
    margin-left: 0px;
}

.home-hero-box {
    text-align: center;
}
.icon-box-content {
    background-color: #fff;
    display: flex;
    border-radius: 10px;
    height: 100%;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
}
.icon-box-section [class*="col-"] {
    margin-bottom: 30px;
}
.icon-left i {
    background-color: #000;
    display: flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
    font-size: 20px;
}

.icon-right-content {
    padding: 30px 20px;
}

.ir-title {
    font-size: 1.25rem;
    line-height: 1;
    margin: 0 0 10px;
}

.icon-right-content p {
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}
.icon-box-section {
    margin-top: -135px;
    position: relative;
}
.home-service-title {
    position: relative;
    color: #222;
    font-size: 2.5rem;
    line-height: 1.3;
    display: inline-block;
    padding: 0px 0 20px;
        margin: 0 0 40px;
}

.home-service-title span {
    color: #888;
}

.home-services {
    padding: 0 0 60px;
}

.home-service-title:before {
    position: absolute;
    content: '';
    border-bottom: 5px solid #888888;
    height: 5px;
    width: 30%;
    bottom: 0;
}
.service-icon i {
    color: #262626;
    font-size: 30px;
}

.services-box {
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 30px;
    height: 100%;
}

.home-services .row + .row [class*='col-'] {
    margin-bottom: 30px;
}

.sb-title {
    font-weight: 600;
    font-size: 1.25rem;
    margin: 20px 0 10px;
}

.sb-price {
    color: #888888;
    font-size: 1.75rem;
    margin: 0;
}

.sb-price span {
    font-size: 0.8rem;
    color: #555;
}

.sb-content p {
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
}

.rm-btn {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #262626;
    border: 1px solid #262626;
    cursor: pointer;
}
.rm-btn:hover, .rm-btn:focus {
    color: #262626;
    background-color: transparent;
}
.tc-apply p {
    font-size: 12px;
    line-height: 1;
    margin: 0;
}

.sb-readmore {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
}
.what-df-title {
    position: relative;
    color: #222;
    font-size: 2.5rem;
    line-height: 1.3;
    display: inline-block;
    padding: 0px 0 20px;
    margin: 0 0 40px;
}

.what-df-title span {
    color: #777;
}

.what-df-title:before {
    position: absolute;
    content: '';
    border-bottom: 5px solid #777777;
    height: 5px;
    width: 25%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.what-diff-header {
    text-align: center;
}
.customer-img {
    text-align: center;
        margin-bottom: 30px;
}
.what-icon {
    color: #262626;
    font-size: 42px;
}

.what-icon-box {
    text-align: center;
    margin-bottom: 50px;
}

.what-ic-title {
    font-size: 18px;
    font-weight: 700;
    margin: 10px 0;
}

.what-ic-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    max-width: 70%;
    margin: 0 auto;
}

.what-icon-box:last-child {
    margin-bottom: 0;
}

.fixed-icon {
    position: fixed;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    width: 100%;
    left: 0;
    right: 37px;
}

.whatsapp-icon i {
    background-color: #00c654;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.whatsapp-icon a {
    font-size: 35px;
    display: inline-block;
    margin: 15px;
}
.comment-icon i {
    background-color: #262626;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.comment-icon a {
    font-size: 24px;
    display: inline-block;
    margin: 15px;
}


.fixed-icon a {
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.5);
    border-radius: 50%;
}
.btn-close {
    cursor: pointer;
    background: transparent;
    border: none;
    font-size: 2rem;
    position: absolute;
    right: 0;
    top: 5px;
}

.fixed-form-content p {
    text-align: center;
    margin-top: 25px;
    color: #000;
    font-size: 18px;
}
.submit-btn {
    font-family: "Raleway", sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 12px 20px;
    border-radius: 50px;
    transition: 0.5s;
    color: #fff;
    background: #262626;
    border: 1px solid #262626;
    cursor: pointer;
}

.submit-btn:hover, .submit-btn:focus {
    background: transparent;
    color: #262626;
}

.mm-opening #main {
    margin-top: 0px;
}
.mob_social a {
    display: block;
    margin-bottom: 15px;
    margin-left: 40px;
    margin-right: 40px;
}

.mob_social {
    margin-top: 15px;
    text-align: center;
    border-bottom: 1px solid rgb(0 0 0 / 30%);
}
.mm-listview>li>a:hover {
    background-color: #262626;
    color: #fff;
}
.gst-tab-content .nav-link {
    border-color: #262626;
    color: #262626;
    border: 1px solid;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 16px;
    display: inline-block;
    background-color: transparent;
    cursor: pointer;
    margin-right: 10px;
}

.gst-tab-content .nav-link.active, .gst-tab-content .nav-link:hover, .gst-tab-content .nav-link:focus {
    background-color: #262626;
    color: #fff;
}

.gst-form-section {
    position: relative;
    background-color: #f1f1f1;
}

.gst-form-content {
    background-color: #fff;
    padding: 20px 10px 20px;
    border-radius: 10px;
    box-shadow: 0 0 1.25rem rgb(31 45 61 / 5%);
}
.gst-price p {
    margin: 0;
}

.gst-price span {
    font-weight: 600;
    position: absolute;
    left: 120px;
}

.gst-price span.strike {
    text-decoration: line-through;
}

.gst-price {
    position: relative;
}
.rating-box span {
    background-color: #00c85d;
    padding: 5px 10px;
    color: #fff;
}
.list-icon li {
    list-style: none;
    position: relative;
    font-size: 16px;
    margin-bottom: 10px;
    left: 20px;
}
.list-icon li:before {
    left: -20px;
    top: 0;
    position: absolute;
    font-size: 18px;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;
}
.list-icon.list-icon-check li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    color: #00c45b;
}
.list-icon.list-icon-asterisk li:before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    color: #00c45b;
}
.gst-right-form {
    background-color: #fff;
    padding: 20px 15px 20px;
    border-radius: 10px;
    box-shadow: 0 0 1.25rem rgb(31 45 61 / 5%);
}

.gst-r-title {
    margin: 0 0 15px;
    font-size: 1.25rem;
    line-height: 1;
}

.gst-right-title {
    margin: 0 0 20px;
    font-size: 1.25rem;
    line-height: 1;
}
.gst-right-form .submit-btn {
    display: block;
    width: 100%;
    border-radius: 7px;
}
.grey-section {
    background-color: #f1f1f1;
}
.jsp-sub-content h2 {
    font-size: 1rem;
    margin: 0 0 5px;
    line-height: 1;
}

.jsp-sub-content p {
    font-size: 16px;
    margin: 0 0 20px;
}

.jsp-main-title {
    text-align: center;
    font-size: 2rem;
    line-height: 1.5;
    margin: 0 0 25px;
    position: relative;
    padding-bottom: 15px;
}
.jsp-main-title:before {
    position: absolute;
    content: '';
    width: 7%;
    text-align: center;
    border-bottom: 5px solid #666;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
}
/*******************/
/*accordion*/
/*******************/

.accordion {
  --bs-accordion-color: var(--bs-body-color);
  --bs-accordion-bg: var(--bs-body-bg);
  --bs-accordion-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
  --bs-accordion-border-color: var(--bs-border-color);
  --bs-accordion-border-width: var(--bs-border-width);
  --bs-accordion-border-radius: var(--bs-border-radius);
  --bs-accordion-inner-border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
  --bs-accordion-btn-padding-x: 1.25rem;
  --bs-accordion-btn-padding-y: 1rem;
  --bs-accordion-btn-color: var(--bs-body-color);
  --bs-accordion-btn-bg: var(--bs-accordion-bg);
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%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");
  --bs-accordion-btn-icon-width: 1.25rem;
  --bs-accordion-btn-icon-transform: rotate(-180deg);
  --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23052c65'%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");
  --bs-accordion-btn-focus-border-color: #86b7fe;
  --bs-accordion-btn-focus-box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  --bs-accordion-body-padding-x: 1.25rem;
  --bs-accordion-body-padding-y: 1rem;
  --bs-accordion-active-color: var(--bs-primary-text-emphasis);
  --bs-accordion-active-bg: var(--bs-primary-bg-subtle);
}

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: var(--bs-accordion-btn-padding-y) var(--bs-accordion-btn-padding-x);
  font-size: 1rem;
  color: var(--bs-accordion-btn-color);
  text-align: left;
  background-color: var(--bs-accordion-btn-bg);
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: var(--bs-accordion-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}
.accordion-button:not(.collapsed)::after {
  background-image: var(--bs-accordion-btn-active-icon);
  transform: var(--bs-accordion-btn-icon-transform);
}
.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: var(--bs-accordion-btn-icon);
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: var(--bs-accordion-btn-focus-border-color);
  outline: 0;
  box-shadow: var(--bs-accordion-btn-focus-box-shadow);
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  color: var(--bs-accordion-color);
  background-color: var(--bs-accordion-bg);
  border: var(--bs-accordion-border-width) solid var(--bs-accordion-border-color);
}
.accordion-item:first-of-type {
  border-top-left-radius: var(--bs-accordion-border-radius);
  border-top-right-radius: var(--bs-accordion-border-radius);
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: var(--bs-accordion-inner-border-radius);
  border-top-right-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: var(--bs-accordion-inner-border-radius);
  border-bottom-left-radius: var(--bs-accordion-inner-border-radius);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: var(--bs-accordion-border-radius);
  border-bottom-left-radius: var(--bs-accordion-border-radius);
}

.accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button, .accordion-flush .accordion-item .accordion-button.collapsed {
  border-radius: 0;
}

[data-bs-theme=dark] .accordion-button::after {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%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");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236ea8fe'%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");
}
.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    transition: none;
  }
}
/*******************/
/*accordion*/
/*******************/
.faq-content .accordion-header {
    margin: 0;
}
.faq-content .accordion-header .accordion-header {
    font-weight: 600;
}

.faq-content .accordion-button {
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.faq-content .accordion-body p {
    font-size: 15px;
    line-height: 1.3;
    margin: 0 0 10px;
}

.faq-content .accordion-body p:last-child {
    margin-bottom: 0px;
}

.faq-content .accordion-button:focus {
    border-color: transparent;
    box-shadow: none;
}

.faq-content .accordion-button:not(.collapsed) {
    background-color: #f1f1f1f1;
    color: #262626;
}
.strike {
    text-decoration: line-through;
}

.top-mob-sec {
    background-color: #262626;
}

.top-mob {
    text-align: center;
    color: #f1f1f1;
}
.top-mob a {
    color: #f1f1f1;
    display: inline-block;
    padding: 5px 0;
    font-size: 14px;
}
.terms-popup a {
    display: inline-block;
    text-decoration: underline;
    line-height: 1.3;
    padding: 10px 0;
    font-size: 14px;
}
.popup-terms-content-title {
    font-size: 1.5rem;
    text-align: center;
    margin: 10px 0 25px;
}
.call-now-mob .submit-btn {
    display: block;
    width: 100%;
    border-radius: 7px;
    text-align: center;
}

.call-now-mob {
    padding: 10px 0;
}
.list-icon.list-icon-asterisk {
    column-count: 2;
    padding-inline-start: 0;
}
.list-icon.list-icon-check {
    padding-inline-start: 0;
}
.des-link {
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.footer-ad-link a {
    color: #fff;
    line-height: 1.5;
    display: inline-block;
}

.footer-ad-link a:hover, .footer-ad-link a:focus {
    color: #959595;
}
.about-content h3, .about-content h4 {
    margin: 0;
}
.rating-box p {
    color: #075107;
    margin-top: 0;
}
p.opce {
    color: #075107;
    font-weight: bold;
}

p.opce span {
    font-weight: bold;
}
.alert-danger {
    color: red;
}
.alert-success {
    color: #00c45b;
}
.alert p {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 14px;
}
/****************************/
/****************************/
/********RWD MEDIA QUERIES************/
/****************************/
/****************************/
@media (min-width:992px){
    #header.header-scrolled .des-logo {
        display: none !important;
    } 
}
@media(min-width:768px) and (max-width:991px){
    #main {
        margin-top: 85px;
    }
}
@media(max-width:767px){
    section.about {
        padding: 30px 0;
    }
    .about-img {
        margin-bottom: 20px;
    }
    .list-icon li {
        font-size: 13px;
    }

    .list-icon li:before {
        font-size: 16px;
    }
    #header .logo img {
        max-height: 55px;
    }
    .home-service-title {
        font-size: 1.75rem;
        padding: 0 0 10px;
        margin: 0 0 20px;
    }
    .what-df-title {
        font-size: 1.5rem;
    }
    #main {
        margin-top: 85px;
    }
    .home-hero-title {
        font-size: 1.5rem;
    }
    
    .faq-content .accordion-body p {
        font-size: 13px;
        line-height: 1.7;
    }

    .faq-content .accordion-button {
        font-size: 14px;
        line-height: 1.5;
    }
    .gst-form-section {
        padding: 20px 0;
    }
    .jsp-sub-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    .jsp-main-title {
        font-size: 1.5rem;
    line-height: 1.5;
    }

    .faq-content .accordion-body p {
        font-size: 13px;
        line-height: 1.7;
    }

    .faq-content .accordion-button {
        font-size: 14px;
        line-height: 1.5;
    }

    .gst-form-section {
        padding: 20px 0;
    }

    .sb-readmore {
        margin-top: 15px;
    }

    .sb-title {
        margin: 10px 0 5px;
        font-size: 1rem;
    }

    .sb-content p {
        margin: 5px 0 0;
    }

    .services-box {
        padding: 15px 15px 0;
    }
    .icon-right-content {
        padding: 12px 15px;
    }

    .icon-right-content p {
        font-size: 14px;
    }

    .ir-title {
        font-size: 1rem;
        margin: 0 0 5px;
    }

    .icon-box-section {
        padding: 30px 0;
        margin-top: -80px;
    }

    .home-hero-section {
        padding: 40px 0 100px;
    }

    .home-service-title {}

    .home-services {
        padding: 0 0 30px;
    }

    .what-different-section {
        padding: 0px 0 30px;
    }
    .terms-popup {
        text-align: center;
    }
    .terms-popup a {
        font-size: 12px;
    }
}