html {
  /* For Firefox */
  overflow-y: scroll;
  /* scrollbar-color: #b8b8b8 #282829; */
  scrollbar-width: thin;
}

/* For Chrome and other browsers except Firefox */
body::-webkit-scrollbar {
  width: 0.5em;
  background-color: #282829;
}

body::-webkit-scrollbar-thumb {
  background-color: #b8b8b8;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-os-font-smoothing: grayscale;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: 0;
  vertical-align: baseline;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 auto;
  font-size: 16px;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  color: #000;
}

::selection {
  background-color: #2050ec;
  color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #000;
}

a {
  transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  outline: 0;
  color: #000;
}

a:hover {
  outline: none;
  color: #1d1d1d;
  text-decoration: none !important;
}

.wow {
  visibility: hidden;
}

.clear {
  clear: both;
}

img:not(table img) {
  max-width: 100%;
}

iframe {
  border: 0;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

p {
  font-size: 16px;
  color: #757576;
}

figure {
  margin: 0 auto;
  display: block;
  text-align: center;
}

body.scroll-off {
  overflow: hidden;
}

.section-padding {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-heading {
  color: #dd5a5a;
  font-size: 29px;
  font-weight: bold;
  margin-bottom: 0;
}

.section {
  margin-top: 50px;
}

.font-400 {
  font-weight: 400;
}

.font-500 {
  font-weight: 500;
}

::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

::-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

:-moz-placeholder {
  color: rgba(0, 0, 0, 0.3);
}

/*==================== User Dropdown Start ===================*/

.user_dropdown {
  display: inline-block;
}

.user_dropdown > a {
  color: #494949;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.user_dropdown img {
  height: 35px;
  width: auto;
  border-radius: 50%;
}

.user_dropdown .dropdown-menu.show {
  display: block;
  left: auto;
  right: 0;
  width: 160px;
  overflow-x: hidden;
  padding-bottom: 0;
  box-shadow: 1px 1px 8px 0px rgba(60, 64, 67, 0.3);
  border: none;
  border-radius: 2px;
  margin-top: 10px;
  opacity: 1;
  visibility: visible;
}

.user_name > div {
  white-space: nowrap;
  max-width: calc(160px - 10px);
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  vertical-align: middle;
  color: #494949;
  text-transform: capitalize;
  font-size: 15px;
}

.user_name {
  padding: 0 10px;
  border-bottom: 1px solid #e9ecef;
}

.user_name small {
  color: #a2a2a2;
  text-transform: lowercase;
}

.user_name .user_email {
  margin-top: -18px;
}

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

.user_dropdown ul li {
  display: block;
}

.user_dropdown ul li a {
  color: #494949;
  text-transform: capitalize;
  font-size: 14px;
  padding: 5px 0;
  padding-left: 20px;
  display: block;
  border-bottom: 1px solid #e9ecef;
}

.user_dropdown ul li a i {
  margin-right: 5px;
}

.user_dropdown ul li a:hover {
  background-color: #e9ecef;
}

/*==================== User Dropdown End ===================*/

/* *** loader css start ****  */

.loader-wrapper {
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  top: 0;
  left: 0;
}

.loader {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
}

.loader:before {
  content: "";
  width: 100px;
  height: 100px;
  border: 5px solid rgba(0, 0, 0, 0.05);
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1.5s infinite linear;
  display: block;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

@-webkit-keyframes spin {
  0% {
    transform: rotate(0deg);
  }

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

.loader img {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* *** loader css end  ****  */

/*==================== Header Start ===================*/

#header {
  height: 100px;
  display: flex;
  align-items: center;
  /* z-index: 10; */
  position: relative;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05);
  background: 0 0 !important;
  background-color: #fff !important;
}

#header.is-sticky {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  z-index: 99999;
  transform: translateY(-100%);
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  height: 65px;
  border-bottom: 1px solid #ededed;
}

#header.is-sticky.awake {
  transform: translateY(0%);
  -webkit-transition: 0.3s all ease-out;
  -o-transition: 0.3s all ease-out;
  transition: 0.3s all ease-out;
}

#header.is-sticky.inner_pages_head,
#header.inner_pages_head {
  height: 65px;
}

#header > .container-fluid > .navbar {
  padding-left: 0;
  padding-right: 0;
}

#header .navbar-brand img {
  height: 45px;
  width: auto;
}

#header .navbar-expand-lg .navbar-nav .nav-item {
  margin-right: 60px;
}

#header .navbar-expand-lg .navbar-nav .nav-item:last-child {
  margin-right: 0px;
}

#header .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
  font-size: 20px;
  font-weight: 400;
  position: relative;
  letter-spacing: -0.02em;
  color: #101928;
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover,
#header .navbar-expand-lg .navbar-nav .nav-item.active .nav-link {
  color: #008b8b;
}

#header .navbar-expand-lg .navbar-nav .nav-link:hover {
  text-decoration: none;
}

#header .dropdown-toggle::after {
  border: none;
  background-image: url(../img/drop_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-top: -1px;
  height: 10px;
  width: 21px;
  display: none;
}

.header-dropdown .dropdown-menu {
  border: 1px solid #12aa9b !important;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
  border-radius: 14px;
  width: 187px;
  margin-top: 10px;
  padding: 0 18px;
}

.header-dropdown .dropdown-item {
  color: #101928;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #ededee;
  padding: 14px 0;
  text-decoration: none;
}

.header-dropdown .dropdown-item:hover,
.header-dropdown .dropdown-item:focus {
  background-color: transparent;
  color: var(--primary-color);
}

.header-droparrow li:first-child::after {
  content: "";
  position: absolute;
  background-image: url(../img/drop_arrow_up.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: -1px;
  height: 20px;
  width: 29px;
  top: -16px;
  right: 42px;
}

#header .extra_nav {
  margin-left: 0;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item {
  margin-right: 16px;
}

#header .navbar-expand-lg .extra_nav .navbar-nav .nav-item:last-child {
  margin-right: 0px;
}

#header .extra_nav .nav-item:list-child {
  margin-right: 0px;
}

#header .navbar-expand-lg .navbar-nav .nav-link.extra_btn {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  padding: 10px 29px !important;
  background: #008b8b;
  color: #fff !important;
  border: 1px solid transparent;
}

#header .navbar-expand-lg .navbar-nav .nav-link.extra_btn:hover {
  background: transparent;
  border: 1px solid #008b8b;
  color: #008b8b !important;
}

#header .navbar-expand-lg .navbar-nav .nav-link.extra_btn.with-border {
  border: 1px solid #008b8b;
  background: transparent;
  color: #008b8b !important;
  min-width: 156px;
}

#header .navbar-expand-lg .navbar-nav .nav-link.extra_btn.with-border:hover {
  background: #008b8b;
  color: #fff !important;
}

#header .extra_btn:hover {
  background-color: rgba(255, 255, 255, 0.24);
}

#header .sign_up_btn .extra_btn {
  background-color: #c72026;
  color: #fff !important;
  border: 1px solid #008b8b;
}

#header .sign_up_btn .extra_btn:hover {
  background-color: #008b8b;
  color: #ffffff !important;
}

#header .login_btn .extra_btn {
  background-color: #fff;
  color: #c72026 !important;
  border: 1px solid #008b8b;
}

#header .login_btn .extra_btn:hover {
  background-color: #008b8b;
  color: #fff !important;
}

#header .extra_btn:before {
  display: none;
}

#header .flag_ico {
  position: absolute;
  left: 5px;
  top: 50%;
  transform: translateY(-50%);
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop {
  padding-left: 32px;
  padding-right: 5px;
  width: auto;
  font-weight: 400;
  color: #000;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop:hover {
  background-color: #ebebeb;
}

#header .navbar-expand-lg .navbar-nav .nav-link.lang_drop img {
  width: 21px;
  height: auto;
  vertical-align: text-bottom;
}

#header .for_mobile {
  display: none;
}

#header .for_desktop {
  display: block;
}

#header .dropdown-item {
  font-weight: 300;
}

/*#header .dropdown-item:hover {
    background-color: #30383d;
    color: rgba(255,255,255,0.60);
}*/

.langugae_filter {
  position: relative;
}

.lang_dropdown {
  display: none;
  position: absolute;
  top: 100%;
  min-width: 80px;
  background-color: #fff;
  color: rgba(255, 255, 255, 0.6);
  right: 0;
  box-shadow: 1px 1px 8px 0px rgba(60, 64, 67, 0.3);
  font-size: 14px;
}

.lang_country {
  position: relative;
  cursor: pointer;
}

.lang_country {
  position: relative;
  padding: 5px 0px 5px 34px;
  color: #494949;
  border-bottom: 1px solid #e9e9e9;
}

.lang_country .flag_ico img {
  max-width: 19px;
}

.lang_country:last-child {
  border-bottom: 0;
}

.lang_country:hover {
  color: #c72026;
  background-color: #ececec;
}

.langugae_filter:hover .lang_dropdown {
  display: block;
}

.navbar-brand {
  font-size: 0;
}

/*==================== Header End ===================*/

/*==================== Footer login Signup Section ===================*/

.footer-logsign-link {
  position: relative;
}

.footer-logsign-link:after,
.footer-logsign-link:before {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  z-index: -1;
}

.footer-logsign-link:before {
  background-color: #df1f26;
  left: 0;
}

.footer-logsign-link:after {
  background-color: #ec2027;
  right: 0;
}

.footer-signin-link a,
.footer-signup-link a {
  height: 150px;
  align-items: center;
  padding-left: 50px;
  display: flex;
  flex-wrap: wrap;
  padding-right: 10px;
}

.footer-signup-link a {
  background-color: #df1f26;
  padding-left: 0px;
}

.footer-signin-link a {
  background-color: #ec2027;
}

.footer-signin-link a span,
.footer-signup-link a span {
  color: #fff;
  font-size: 36px;
  width: 100%;
}

.footer-signin-link a p,
.footer-signup-link a p {
  color: #fff;
  font-size: 15px;
  width: 100%;
  margin-bottom: 0;
}

.footer-signup-link a span.footer-link-arrow,
.footer-signin-link a span.footer-link-arrow {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  background-color: #d42027;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 23px;
  transition: 0.5s all;
}

.footer-signup-link a:hover span.footer-link-arrow,
.footer-signin-link a:hover span.footer-link-arrow {
  background-color: #fff;
  color: #d42027;
}

/*==================== Footer login Signup Section ===================*/

/*==================== Footer ===================*/

.footer-block figure {
  margin: 0 0 30px;
  display: inline-block;
  max-width: 219px;
}

.cts_no {
  font-size: 15px;
  padding: 0 80px 0 0;
}

.cts_no p {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
}

.copyright {
  padding: 15px 0;
  border-top: 1px solid #ffffff10;
  color: rgb(255 255 255 / 70%);
  font-size: 14px;
  margin-top: 30px;
}

.newsletter-form .form-control {
  height: 45px;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3);
  font-weight: 400;
  background: transparent;
  border: 0;
  border-radius: 3px;
  padding-right: 40px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.relative-box {
  position: relative;
  top: 7px;
}

.relative-box .subscribe-btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #827e7e;
  height: 45px;
  font-size: 20px;
  background: no-repeat;
}

.relative-box .subscribe-btn:hover {
  color: #d42027;
}

footer h6 {
  font-size: 17px;
  color: #000;
  margin: 0 0 27px;
  position: relative;
}

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

ul.footer-links li {
  margin: 3px 0;
  padding: 0;
  list-style: none;
  margin-bottom: 10px;
}

ul.footer-links li a,
.full-location {
  font-size: 16px;
  font-weight: 400;
  color: rgb(255 255 255 / 80%);
}

.main-location-heading {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}

ul.footer-links li a:hover {
  color: #008b8b;
}

ul.footer-links.socialize li a {
  position: relative;
  padding-left: 25px;
}

.company-dec {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

ul.footer-links.socialize li a i {
  position: absolute;
  left: -9px;
  width: 30px;
  text-align: center;
  top: -4px;
  color: #959595;
  font-size: 17px;
}

footer h6 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

footer h6 {
  font-size: 18px;
  margin: 0 0 27px;
  font-weight: 500;
}

.subscribe_text {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.footer_wrapper {
  background: #101928;
  padding-top: 300px;
}

.navbar {
  padding: 0;
}

#top-button {
  display: inline-block;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}

#top-button.show {
  opacity: 1;
  visibility: visible;
}

.back_top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  background-color: #dea366;
  display: none;
  border: #dea366 1px solid;
  z-index: 1;

  border-radius: 4px;
}

.back_top span {
  position: relative;
  display: block;
  color: #fff;
  width: 100%;
  height: 100%;
}

.back_top span svg {
  width: 22px;
  height: 21px;
  position: absolute;
  left: 0;
  margin: 0 auto;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
}

.back_top:hover {
  border-color: #dea366;
  color: #dea366;
  background-color: #fff;
}

.back_top:hover span {
  color: #dea366;
}

/*==================== Footer ===================*/

#header .navbar-expand-lg .navbar-nav .nav-item.dropdown .nav-link {
  padding-right: 0;
}

.mobiledrop {
  position: absolute;
  right: 0px;
  top: 0;
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background-color: transparent;
}

/* Custom Select */

.custom_checkbox input[type="checkbox"],
.custom_checkbox input[type="radio"] {
  height: 21px;
  width: 21px;
  min-width: 21px;
  margin: 0;
  padding: 0;
  opacity: 1;
  appearance: none;
  border: 2px solid #d0d0d0;
  border-radius: 5px;
  background: transparent;
  position: relative;
  margin-right: 10px;
  cursor: pointer;
}

.custom_checkbox input[type="checkbox"]:checked,
.custom_checkbox input[type="radio"]:checked {
  border: 2px solid #1295d6;
  background: #1295d6;
}

.custom_checkbox input[type="checkbox"]:checked::before,
.custom_checkbox input[type="radio"]:checked::before {
  content: "\f00c";
  height: 100%;
  color: #fff;
  font-family: "Font-awesome-5-pro";
  position: absolute;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.custom_checkbox label {
  color: #555 !important;
}

/* Custom Radio */
.custom_radio [type="radio"]:checked,
.custom_radio [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.custom_radio [type="radio"]:checked + label,
.custom_radio [type="radio"]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #666;
}

.custom_radio [type="radio"]:checked + label:before,
.custom_radio [type="radio"]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #b5b5b5;
  border-radius: 100%;
  background: transparent;
}

.custom_radio [type="radio"]:checked + label:before {
  border: 1px solid #008b8b;
}

.custom_radio [type="radio"]:checked + label::after,
.custom_radio [type="radio"]:not(:checked) + label::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #008b8b;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.custom_radio [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.custom_radio [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/*  */
.nav-tabs .nav-link {
  cursor: pointer;
}

.nav-tabs .nav-item:hover .nav-link {
  background-color: #f0f0f0;
  /* Change the background color on hover */
  color: #333;
  /* Change the text color on hover */
}

.nav-tabs .nav-link.active {
  background-color: #fff;
  /* Change the background color of the active tab */
  color: #333;
  /* Change the text color of the active tab */
}

.tab-content {
  padding: 20px;
  border: 1px solid #ddd;
  border-top: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),
  only screen and (min--moz-device-pixel-ratio: 2),
  only screen and (-o-min-device-pixel-ratio: 2/1),
  only screen and (min-device-pixel-ratio: 2),
  only screen and (min-resolution: 192dpi),
  only screen and (min-resolution: 2dppx) {
}

.ReactModalPortal .ReactModal__Overlay.ReactModal__Overlay--after-open {
  background-color: rgba(0, 0, 0, 0.75) !important;
  z-index: 2000 !important;
}

.ReactModalPortal .modal-title {
  color: #101928 !important;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.48px;
  /* text-transform: capitalize; */
}

.upload-card .close-button {
  color: #c50909 !important;
  border: 1px solid #101928;
  background-color: transparent;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 18px;
  position: absolute;
  top: -8px;
  right: -15px;
  border-color: #c50909 !important;
  font-size: 22px;
  background: #fff;
}
.upload-card .close-button:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.ReactModalPortal .close-button {
  color: #000 var(--primary-color);
  border: 1px solid #101928;
  background-color: transparent;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-size: 18px;
}

.ReactModalPortal .close-button:hover {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.ReactModalPortal .ReactModal__Content.ReactModal__Content--after-open {
  max-width: 790px;
  margin: auto;
  inset: 0 !important;
  border-radius: 22px !important;
  /* position: relative !important;  */
  overflow: hidden !important;
  height: max-content;
  width: 100%;
  background-color: #fff;
}

.ReactModalPortal .modal-header {
  padding-top: 0;
}

.form-group.radio-inputBox {
  display: flex;
  gap: 50px;
  margin-bottom: 0 !important;
}

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

.form-check-input:focus {
  border-color: var(--primary-color) !important;
  outline: 0;
  box-shadow: none !important;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.modal-content::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.modal-content {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* step 3 number input width */
.react-tel-input .form-control {
  width: 100% !important;
}

/* new-css */

.cmn-btn {
  background: #008b8b;
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
}

.cmn-btn:hover {
  color: #fff;
  text-decoration: none;
}

.cmn-btn {
  margin-top: 46px;
}

.service-type-second {
  background: #f1faf9;
  padding: 60px 0;
  position: relative;
}

.right-top-shape {
  position: absolute;
  right: 20px;
  top: -82px;
}

.left-bottom-shape {
  position: absolute;
  left: 20px;
  bottom: -114px;
  z-index: -1;
}

.cmn-btn.theme-btn {
  margin-top: 32px;
  display: inline-block;
}

.service-types .common-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  height: 4px;
  width: calc(100% - 20px);
  background-color: #008080;
  border-radius: 3px;
}

.service-types .service-type-second .common-heading:after {
  right: 0;
  width: calc(100% - 20px);
  left: unset;
}

.common-heading {
  font-size: 36px;
  font-weight: 600;
  color: #101928;
  position: relative;
  display: inline-block;
}

.service-box-left-lines {
  position: relative;
  padding-left: 60px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.service-box-left-lines::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  border-left: 2px dashed #b3b3b3;
}

.service-box-left-lines::after {
  content: "";
  position: absolute;
  left: -5px;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #008b8b;
  border-radius: 50%;
}

.service-box-right-lines {
  position: relative;
  padding-right: 70px;
  padding-top: 70px;
  padding-bottom: 70px;
}

.service-box-right-lines::before {
  content: "";
  position: absolute;
  right: 23px;
  top: 0;
  height: 100%;
  border-left: 2px dashed #b3b3b3;
}

.service-box-right-lines::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #008b8b;
  border-radius: 50%;
}

.custom-card {
  border: 1px solid #cce7e7;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0px 4px 24px 2px rgba(38, 45, 118, 0.08);
}

.main-card {
  border: 1px solid #cce7e7;
  border-radius: 10px;
  padding: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

img.crd-set {
  padding: 12px 0;
}

.top-heading {
  margin-bottom: 32px;
}

.custom-card {
  display: flex;
  gap: 20px;
  align-items: center;
}

.pera-cnt {
  color: #373f3f;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.about-content p {
  color: #667185;
  font-size: 16px;
}

.about-content {
  margin: 30px 0;
}

.set-h2-style {
  font-size: 42px;
  font-weight: 600;
  color: #101928;
}

.platform-section .set-h2-style,
.counter-section .set-h2-style {
  position: relative;
  display: inline-block;
}

.platform-section .set-h2-style::after,
.counter-section .set-h2-style::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  height: 4px;
  width: calc(100% - 30px);
  background-color: #008080;
  border-radius: 3px;
  transform: translateX(-50%);
}

.set-h4-style {
  font-size: 24px;
  font-weight: 600;
  color: #101928;
}

.set-h4-style.ft-change {
  font-size: 26px;
}

section.brand-section {
  background: #008b8b;
}

.brand-logo-grp {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 40px 0;
  gap: 40px;
}

.brand-item .pera-cnt {
  color: #ffffff;
  opacity: 70%;
  font-size: 24px;
  font-weight: 500;
}

.brand-item {
  text-align: center;
}

.brand-item img {
  max-width: 100%;
  margin-bottom: 20px;
}

.counter-section {
  margin: 80px 0;
}

.counter-box {
  text-align: center;
  border-radius: 20px;
  border: 1px solid #12aa9b1f;
  background: #fff;
  box-shadow: 0px 4px 24px 2px rgba(38, 45, 118, 0.08);
  transition: transform 0.3s ease;
  padding: 0 22px 22px 22px;
  margin-top: 46px;
}

.counter-box:hover {
  transform: translateY(-10px);
}

.counter-card-title {
  color: #101928;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 26px;
  margin-top: 16px;
}

.counter-card-number {
  color: #008b8b;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  border-radius: 16px;
  border: 1px solid rgba(18, 170, 155, 0.08);
  background: rgba(18, 170, 155, 0.06);
  padding: 12px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.counter-icon {
  background: #fff;
  display: inline-block;
  border: 10px solid rgb(18 170 155 / 6%);
  padding: 20px;
  border-radius: 50%;
  margin-top: -60px;
}

.service-type-first {
  margin: 100px 0 82px;
}

#header .container-fluid {
  padding-right: var(--bs-gutter-x, 70px);
  padding-left: var(--bs-gutter-x, 70px);
}

.outer-border {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  padding: 22px;
}

.hero-content {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: linear-gradient(
    112deg,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.62) 101.12%
  );
  backdrop-filter: blur(21px);
  padding: 68px 105px 90px;
}

.hero-title {
  color: #008b8b;
  text-align: center;
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -1.6px;
}

.hero-content p {
  color: #667185;
  text-align: center;
  font-size: 24px;
  font-weight: 400;
  letter-spacing: -0.48px;
}

.hero-btn-group {
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-top: 40px;
}

.hero-btn-group .theme-btn {
  border-radius: 12px;
  color: #fff !important;
}

.hero-btn-group .theme-btn:hover {
  background: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color) !important;
  text-decoration: none;
}

.hero-outer-content {
  max-width: 950px;
  margin: auto;
}

.counter-box {
  position: relative;
}

.counter-box::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 0;
  width: 154px;
  height: 65px;
  transform: translateX(-50%);
  background-image: url(../img/counter-card.png);
  background-repeat: no-repeat;
}

.counter-icon {
  background: #fff;
  display: inline-block;
  border: 10px solid rgb(18 170 155 / 6%);
  padding: 20px;
  border-radius: 50%;
  margin-top: -60px;
  fill: #fff;
  filter: drop-shadow(0px 4px 24px rgba(38, 45, 118, 0.08));
  position: relative;
  z-index: 1;
  border: 0;
  top: -15px;
  left: 2px;
}

.counter-box {
  border: 0;
}

.hero-section {
  padding: 104px 0 250px;
}

.top-screen-list {
  display: flex;
  gap: 90px;
  align-items: center;
  list-style: none;
  margin-top: -100px;
  padding-left: 0;
  justify-content: center;
}

.top-screen-img {
  border-radius: 19px;
  background: #fff;
  box-shadow: 0px 4px 32px 0px rgba(38, 45, 118, 0.1);
  padding: 16px 10px;
  height: 330px;
}

.top-screen-img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.top-screen-list .top-screen-img:nth-child(2) {
  height: 380px;
}

.footer_wrapper {
  position: relative;
  margin-top: 50px;
}

.socialLinksBox {
  position: relative;
  z-index: 9;
  display: grid;
  justify-content: end;
  margin-bottom: 62px;
  margin-top: -120px;
}

.socialLinksBox + .row {
  position: relative;
  z-index: 10;
}

.socialLinksBox h6 {
  margin-bottom: 16px;
}

.socialLinks a {
  width: 50px;
  height: 50px;
  border: 1px solid rgb(255 255 255 / 32%);
  display: inline-grid;
  place-content: center;
  border-radius: 50%;
  transition: all 0.3s linear;
}

.socialLinks a:hover {
  border: 1px solid #008b8b;
  color: #008b8b;
}

.socialLinks a:hover svg path {
  fill: #008b8b;
}

.socialLinks a:not(:last-child) {
  margin-right: 20px;
}

.link-custom-width .col-6.col-md-3 {
  width: 145px;
}

.link-custom-width {
  justify-content: space-between;
}

.max-1014 {
  max-width: 1014px;
  margin-left: auto;
}

.footer-block {
  max-width: 280px;
}

.footer_wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 350px;
  left: 0;
  top: 0;
  z-index: 3;
  background-repeat: no-repeat;
  background-image: url("../img/footer-bg-shap.png");
  background-position: left top;
}

.navbar-nav .nav-link.dropdown-toggle {
  background: transparent;
  border: none;
}

/* responsive-media-css */

.cms_section {
  padding-top: 76px;
}

.cms_section :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  color: #101928;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 18px;
}

.cms_section .page_title_heading {
  color: #008b8b;
  font-size: 40px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 38px;
}

.cms_section p {
  color: #373f3f;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-bottom: 36px;
}

/* faq css */

.faq_accordionBlock .accordion-body {
  padding: 0 24px 0;
}

.faq_accordionBlock .accordion-item {
  overflow: hidden;
  margin-bottom: 16px;
  border-radius: 14px;
  background: #fff;
  border: none;
  box-shadow: 0px 4px 24px 2px rgba(38, 45, 118, 0.08);
}

.accordion-item.active {
  overflow: hidden;
}

.faq_accordionBlock .accordion-button:focus {
  box-shadow: none;
  border: 0;
}

.Accordeion_DescTitle {
  color: #6f6c90;
  font-size: 18px;
  line-height: 30px;
  /* 166.667% */
}

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

.faq_accordionTitle {
  text-transform: capitalize;
  padding-right: 40px;
  color: #121212;
  font-size: 18px;
  font-weight: 500;
  width: 100%;
}

.accordion-button {
  padding: 18px 24px;
  color: #121212;
  font-size: 18px;
  font-weight: 500;
}

.faq_accordionBlock .accordion-button::after {
  transform: rotate(0deg);
  top: 19px;
}

.faq_accordionBlock .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.faq_accordionBlock .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none;
}

.page_title_heading.faq-heading {
  margin-bottom: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid #ededee;
  color: #008b8b;
  font-size: 32px;
  font-weight: 600;
}

.faq-brake {
  height: 1px;
  width: 100%;
  background-color: #ededee;
  display: block;
  margin-block: 32px;
}

/* faq css end */
.contact-us-section .form-group {
  margin-bottom: 20px;
}

.other-query {
  color: #101928;
  font-size: 26px;
  font-weight: 600;
  /* text-transform: capitalize; */
  margin-bottom: 8px;
}

.mb-36 {
  margin-bottom: 36px;
}

.about-affittool-sec {
  padding: 62px 0;
}

.about-affittool-sec .text-center .common-heading::after {
  transform: translateX(-50%);
  left: 50%;
}

.common-banner-sec {
  background: #008b8b;
  padding-block: 78px;
  position: relative;
}

.common-banner-sec::after,
.common-banner-sec::before {
  content: "";
  position: absolute;
  background-repeat: no-repeat !important;
  top: 0;
  height: 100%;
  user-select: none;
  background-size: cover !important;
}

.common-banner-sec .section-header {
  position: relative;
  z-index: 1;
}

.common-banner-sec::after {
  left: 0;
  background: #008b8b;
  background-image: url(../img/banner-left-shap.png);
  width: 400px;
  background-position: right !important;
}

.common-banner-sec::before {
  right: 0;
  width: 400px;
  background-image: url(../img/banner-right-shap.png);
}

.banner-heading {
  color: #fff;
  text-align: center;
  font-size: 42px;
  margin-bottom: 22px;
  font-weight: 600;
}

.pep-info-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.pep-info-box {
  position: absolute;
  top: -24px;
  left: 22px;
  width: 380px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  /* font-size: 8px; */
  /* line-height: 1.6; */
  color: #495057;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
}
.pre-info-head {
  padding: 6px 12px;
  background-color: var(--primary-color);
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
}
.pre-info-body {
  padding: 6px 12px;
}
.pep-info-box p {
  font-size: 12px;
  font-weight: normal;
  line-height: 1.5;
  color: #494949;
}

.pep-info-wrapper:hover .pep-info-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .pep-info-box {
    position: fixed;
    top: auto;
    left: 50%;
    bottom: 250px;
    transform: translateX(-50%);

    width: calc(100% - 32px);
    max-width: 90%;

    border-radius: 8px;
  }

  .pep-info-wrapper:hover .pep-info-box,
  .pep-info-wrapper:focus-within .pep-info-box {
    transform: translateX(-50%);
  }
}

.banner-info {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.section-header .banner-info:not(:last-of-type) {
  margin-bottom: 26px;
}

.on-about-sec.counter-section {
  margin: 126px 0;
}

.connectivity-sec {
  background: #f1faf9;
  padding: 62px 0;
}

.connectivity-sec .banner-heading {
  color: #101928;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
}

.connectivity-sec .banner-info {
  color: #667185;
  text-align: center;
  font-size: 18px;
}

.connectivity-btn {
  display: flex;
  max-width: 712px;
  justify-content: center;
  margin: auto;
  gap: 32px;
  margin-top: 52px;
}

.connectivity-btn .theme-btn {
  padding: 17px 20px;
  min-width: 216px;
  text-align: center;
}

.careers-sec {
  padding: 106px 0;
}

.careers-sec .row {
  align-items: center;
}
.careers-sec .row .col-md-7 {
  padding-left: 150px;
}

.career-heading {
  color: #101928;
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 18px;
}

.career-content p {
  color: #667185;
  font-size: 18px;
  font-weight: 500;
}

.career-content .theme-btn {
  display: inline-block;
  margin-top: 52px;
  min-width: 196px;
  text-align: center;
}

.career-avtar-img {
  position: relative;
}

.career-avtar-img::after {
  content: "";
  position: absolute;
  left: -92px;
  width: 85px;
  height: 78px;
  background-image: url("../img/careers-right.png");
  background-repeat: no-repeat;
  background-size: contain;
  top: 44px;
}

.mt-102 {
  margin-top: 102px;
}
.pt-102 {
  padding-top: 102px;
}

.nav-item.dropdown:hover .header-droparrow,
.header-droparrow:hover {
  display: block;
  position: absolute;
  right: 0;
  border-radius: 14px;
}

#header .user_name {
  padding: 0 10px;
  border-bottom: 1px solid #e9ecef;
  color: #494949;
  font-size: 14px;
  padding: 6px 14px;
}

.btn-track {
  margin-top: 20px;
  padding: 10px 28px !important;
}
.brand-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 32px;
  padding-left: 0;
  margin-bottom: 0;
  margin-top: 32px;
}
.brand-item-child {
  width: 82px;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(0, 139, 139, 0.1);
  background: rgba(0, 139, 139, 0.1);
}
.brand-item-child img {
  width: 62px;
  height: 52px;
  object-fit: contain;
}
.status-list {
  display: flex;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: end;
  margin-top: 25px;
}
.status-items {
  color: #008b8b;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  border: 1px solid #008b8b;
  border-radius: 8px;
  white-space: nowrap;
  padding: 9px 20px;
}
.border-none::after {
  content: none !important;
}
.agent-banner {
  padding-block: 49px;
}
.affittool-logo-sec {
  padding: 22px 0 32px;
}
.agent-content {
  margin: 18px 0;
}

.about-affittool-sec + .common-banner-sec.mt-102 {
  margin-top: 35px;
}

.cursor-pointer {
  cursor: pointer;
}

.text-underline {
  text-decoration: underline;
}

.uploaded-images-preview {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.file-preview-container {
  background: #eaeaea;
  max-width: 70px;
  max-height: 70px;
  border-radius: 4px;
  position: relative;
}

.file-preview-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.upload-doc-text {
  color: #667185;
  font-size: 16px;
  font-weight: 400;
}

.fancybox__container {
  z-index: 99999 !important;
}

.ReactModal__Content.ReactModal__Content--after-open.add-contracts-modal.tax-code-model {
  overflow: visible !important;
}

.btnGroup input {
  display: none;
}
.btnGroup {
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}
.btnGroup .borderBtn {
  cursor: pointer;
  min-width: 120px;
}
.btnGroup .borderBtn:hover {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  background-color: transparent;
}

.btnGroup input[type="radio"] {
  display: none;
}

.btnGroup input[type="radio"]:checked + label {
  background-color: var(--primary-color);
  color: #fff;
}
.uploadPhotoBox .file-preview-container {
  background: transparent;
  max-width: fit-content;
  max-height: fit-content;
}
.uploadPhotoBox .upload-card .close-button {
  width: fit-content;
  height: fit-content;
  border: 0;
  background: transparent;
  top: -16px;
}

/*  */
.request_item_flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.request_item_flex .btnBlock {
  align-items: center;
}
/*  */

.score-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.score-layout > div {
  width: 100%;
}

@media screen and (min-width: 1415px) {
  .score-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .score-layout > div:first-child {
    flex: 0 0 40%;
    min-width: 400px;
  }

  .score-layout > div:last-child {
    flex: 0 0 60%;
    min-width: 400px;
  }
}
.hover-report-type:hover {
  background: #008b8b !important; /* darker green */
}

/* Table */
.sds-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.sds-table th,
.sds-table td {
  padding: 15px;
  text-align: left;
}
.sds-table th {
  background: var(--primary-color);
  color: white;
}
.sds-table tr:not(:first-child):hover {
  background-color: #f1f1f1;
}

/* Badges */
.sds-badge {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
  color: white;
}
.RED {
  background-color: #e74c3c;
}
.GREEN {
  background-color: #2ecc71;
}

/* Buttons */
.sds-button {
  background-color: #3498db;
  border: none;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}
.sds-button:hover {
  background-color: #2980b9;
}

/* Modal Overlay */
.sds-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);

  /* Fade-in animation */
  animation: sds-fadeIn 0.2s ease forwards;
}

/* Modal Content */
.sds-modal-content {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  max-width: 600px;
  width: 80%;

  /* Smooth pop-up effect */
  transform: scale(0.9);
  opacity: 0;
  animation: sds-popIn 0.2s ease forwards;
}

/* Close Button */
.sds-close {
  float: right;
  font-size: 24px;
  cursor: pointer;
}

/* Animations */
@keyframes sds-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes sds-popIn {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.dash--pie-chart-img canvas {
  width: 100% !important;
  height: 100% !important;
}

.dashboard-cardBlock .row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* forces all cards to be same height */
}

.dashboard-cardBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  flex: 1 1 0;
  height: 100%;
  box-sizing: border-box;
}

.dash--pie-chart-img {
  /* display: flex; */
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 220px;
}

.dash--pie-chart-img canvas {
  /* max-width: 220px !important; */
  max-height: 220px !important;
  height: auto !important;
  margin: auto !important;
}
.maxWidthFixPie canvas {
  max-width: 220px !important;
}
