:root {
  --primary: #effe43;
  --primary-light: #ffa825;
  --secondary: #0a323f;
  --secondary-light: #007c85;
  --white: #fff;
  --text: #232323;
  --backgorund: #fafafa;
  --bar: #027d85;
  --light-bg: #dbefe8;
  --bg: #f9fdfb;
}

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

.light-bg {
  background-color: var(--light-bg);
}

.primary-bg {
  background-color: var(--primary) !important;
}

.primary-g-bg {
  background: linear-gradient(
    45deg,
    var(--primary) 50%,
    var(--primary-light) 85%
  );
}

.secondary-g-bg {
  background: linear-gradient(
    180deg,
    var(--secondary-light) -7.5%,
    #045862 100%
  );
}

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

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

.bar-bg {
  background-color: var(--bar);
}

.button-light {
  background-color: var(--bar);
  color: var(--white);
  padding: 5px 20px;
  border-radius: 6px;
  border: 1px solid var(--bar);
  outline: none;
  font-weight: 500;
  font-family: "Roboto";
}

.button-light:hover {
  background: var(--backgorund);
  color: var(--bar);
  cursor: pointer;
}

.button-getStarted {
  background-color: var(--white);
  color: var(--secondary);
  padding: 8px 14px;
  border-radius: 21px;
  border: 1px solid var(--secondary);
  outline: none;
  font-family: "Nunito";
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
}
.button-getStarted:hover {
  cursor: pointer;
  border: 1px solid var(--white);
  background-color: var(--secondary);
  color: var(--white);
}

.link-primary {
  color: var(--white);
}
.link-primary:hover {
  color: var(--primary);
}

body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
li,
input,
button,
span {
  font-family: "Roboto";
}

body {
  background: var(--bg);
}

#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  /* Adjust the height as needed */
  background-color: var(--secondary-light);
  /* Progress bar color */
  z-index: 99999;
  /* Ensure the progress bar stays on top */
  transition: width 0.2s ease;
  /* Smooth transition effect */
}

.head-title {
  color: #fff;
  /* color: var(--secondary); */
  position: relative;
  font-size: 52px;
  line-height: 58px;
}

.head-title::after {
  content: "";
  height: 7px;
  width: 60px;
  border-radius: 6px;
  background-color: var(--primary);
  /* background-color: var(--secondary-light); */
  position: absolute;
  left: 0px;
  bottom: -12px;
}

.section_wrapper {
  padding: 92px 0;
}

input:focus,
textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}
.section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 3rem;
}
.section-title > h2 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 39.84px;
  position: relative;
  color: var(--secondary);
}

.section-title > .ceprater {
  height: 6px;
  width: 50px;
  border-radius: 6px;
  background-color: var(--bar);
}

.head-price {
  color: #fff;
  /* color: var(--secondary); */
  position: relative;
  font-size: 32px;
  line-height: 58px;
}

.head-text {
  width: 60%;
}

.head-text p {
  color: #fff;
  /* color: var(--secondary); */
  position: relative;
  font-size: 21px;
  line-height: 28px;
  font-family: "Roboto";
}

.callback-form {
  background-color: #fff;
  border-radius: 8px;
  height: fit-content;
  box-shadow: 4px 4px 21px 0px rgb(2 125 133 / 21%);
}

.primary-btn {
  background: linear-gradient(
    180deg,
    var(--secondary-light) -7.5%,
    #045862 100%
  );
  width: 100%;
  color: #fff;
  box-shadow: 4px 4px 12px 0 rgb(0 124 133 / 32%);
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-family: "Roboto";
  letter-spacing: 0.8px;
  display: flex;
  justify-content: center;
}

/* .primary-btn:hover {
  background: linear-gradient(
    45deg,
    var(--primary-light) 50%,
    var(--primary) 85%
  );
} */
.primary-btn:focus {
  outline: none;
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
}

.sticky-position {
  position: fixed;
  top: 100px;
  width: 355px;
}

.sticky-form {
  position: absolute;
  bottom: 0px;
  width: 355px;
}

.custom-container {
  padding-left: 70px;
  padding-right: 70px;
  position: relative;
}


.head1{
  font-size: 34px;
  line-height: 36px;
  font-weight: bold;
  position: relative;
  font-family: "Roboto";
  margin-top: 3rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.head2{
  font-size: 30px;
  line-height: 32px;
  font-weight: 700;
  font-family: "Roboto";
  position: relative;
  margin-top: 3rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.head1::before,
.head2::before {
  content: "";
  height: 6px;
  width: 70px;
  border-radius: 6px;
  background-color: var(--bar);
  position: absolute;
  left: 0px;
  bottom: -10px;
}

#serviceLinks{
    padding: 0px 1.5rem 3rem 3rem;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
}

.service-list>li {
  margin-right: 5px;
}
.service-list>li a {
  color: #0a323f;
}
.service-list>li::after {
  content: '|';
  margin-left: 5px;
  font-weight: 600;
}
.service-list>li a:hover {
  color: #007bff;
}

.strip-title {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}
.strip-title:hover {
  color: var(--white);
}
.strip-title > i {
  color: var(--primary);
  margin-right: 5px;
}

.form-title {
  font-weight: 700;
  text-align: center;
  position: relative;
  font-family: "Roboto";
  color: var(--secondary);
}

.form-title::after {
  content: "";
  height: 5px;
  width: 40px;
  border-radius: 6px;
  background-color: var(--secondary-light);
  position: absolute;
  left: 45%;
  bottom: -8px;
}

.response {
  font-size: 12px;
  font-family: "Roboto";
  color: green;
}

.loading {
  font-size: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  border-radius: 15px;
  padding: 0;
  border: 3px solid #ffffff;
  border-bottom: 3px solid rgba(255, 255, 255, 0);
  border-left: 3px solid rgba(255, 255, 255, 0);
  /* background-color:transparent !important;  */
  animation-name: rotateAnimation;
  -webkit-animation-name: wk-rotateAnimation;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
}

.loader {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-left: 4px solid #333;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

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

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

.hide {
  display: none;
}

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

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

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

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

.finish {
  -webkit-transform: scaleX(1) !important;
  transform: scaleX(1) !important;
}

.hide-loading {
  opacity: 0;
  -webkit-transform: rotate(0deg) !important;
  transform: rotate(0deg) !important;
  -webkit-transform: scale(0) !important;
  transform: scale(0) !important;
}

/* Banner Section Start */
.banner {
  background-color: var(--secondary);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 70px;
}
.home_banner {
  /* background-color: var(--secondary); */
  background: url('../images/banner-Bizfoc.webp');
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 30px;
  padding-bottom: 70px;
  min-height: 650px;
  display:flex;
}

.toc-wrapper {
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 1rem;
  background-color: rgba(4, 29, 63, 0.05);
}

.toc-list {
  padding: 1rem !important;
  margin: 0px !important;
}

.toc-list > li::marker {
  color: var(--secondary);
}

.toc-wrapper a {
  color: var(--secondary);
  font-size: 18px;
  font-weight: 500;
  font-family: "Roboto";
}

.rating-wrapper {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rating-wrapper > div > p {
  font-size: 11px;
  line-height: 14px;
  font-weight: 500;
  margin-bottom: 0px;
}

.head-card-wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  padding: 1.5rem 1rem;
  margin: auto;
  border-radius: 65px;
  border: 1px solid rgb(255 255 255 / 42%);
  /* background-color: rgb(255 255 255 / 10%); */
  background: linear-gradient(
    136.23deg,
    rgba(249, 253, 251, 0.1512) -14.88%,
    rgba(249, 253, 251, 0) 96.89%
  );
  backdrop-filter: blur(10px);
}

.head-card-items {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.3%;
  padding: 0 4.5rem;
}

.head-card-items::after {
  content: "";
  height: 100%;
  width: 6px;
  border-radius: 6px;
  background-color: var(--primary);
  position: absolute;
  left: 0px;
  top: auto;
}

.head-card-items:first-child::after {
  content: "";
  height: 0px;
  width: 0px;
  border-radius: 6px;
  background-color: var(--primary);
  position: absolute;
}

.head-card-items > div > img {
  height: 50px;
  width: 50px;
  border-radius: 25px;
  margin-right: 25px;
}

.head-card-items > div > span {
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  color: #fff;
  font-family: "Roboto";
}

/* Banner Section ENd */

/* ************ Body Content Styling ************* */

.content-container h1 {
  font-size: 34px;
  line-height: 36px;
  font-weight: bold;
  position: relative;
  font-family: "Roboto";
  margin-top: 3rem;
  margin-bottom: 2rem;
  color: var(--secondary);
}

.content-container h1::before {
  content: "";
  height: 6px;
  width: 70px;
  border-radius: 6px;
  background-color: var(--bar);
  position: absolute;
  left: 0px;
  bottom: -10px;
}

/*.content-container h2 {*/
/*  font-size: 30px;*/
/*  line-height: 32px;*/
/*  font-weight: 700;*/
/*  font-family: "Roboto";*/
/*  position: relative;*/
/*  margin-top: 3rem;*/
/*  margin-bottom: 2rem;*/
/*  color: var(--secondary);*/
/*}*/





.head3 {
  font-size: 21px;
  margin-top: 1rem;
  color: var(--secondary);
  font-family: "Roboto";
}

.content-container p {
  font-size: 1rem;
  line-height: 21px;
  margin-bottom: 0.25rem;
  font-family: "Roboto";
  color: var(--secondary);
}

.content-container ul {
  list-style: disc;
  padding-left: 2.3rem;
  margin-bottom: 1rem;
}

.content-container li {
  margin-bottom: 0.4rem;
  text-align: justify;
  color: var(--secondary);
}

/* *****FAQ Section******* */
.card-header .title {
  font-size: 17px;
  color: var(--text);
  font-weight: 500;
}

.card-header .accicon {
  font-size: 20px;
  margin-left: 6px;
  color: var(--secondary-light);
}

.card-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  /* padding: 10px 15px 10px 0px !important; */
  background-color: var(--backgorund) !important;
}

.card {
  /* border: none !important; */
  margin-bottom: 0.5rem;
}

.card-body {
  border: none !important;
  text-align: justify;
}

.card-body p,
.card-body li {
  font-size: 14px;
}

.card-header:not(.collapsed) .rotate-icon {
  transform: rotate(180deg);
}

/* *****FAQ Section******* */

/*** Start contact us**** */

.contact_form_card {
  align-items: center;
}
.contact_form_card .title {
  color: var(--secondary);
  font-family: "Roboto";
  font-size: 28px;
  font-weight: 600;
  line-height: 32.81px;
  position: relative;
}
.contact_form_card .title::after {
  content: "";
  height: 5px;
  width: 50px;
  border-radius: 6px;
  background-color: var(--bar);
  position: absolute;
  left: 2px;
  bottom: -8px;
}

.contact_btn {
  box-shadow: 0px 4px 12px 0px #027d8514;
  border: 1px solid var(--bar);
  height: 42px;
  border-radius: 21px;
  background: var(--bar);
  border: none;
  outline: none;
  font-family: "Nunito";
  font-size: 18px;
  font-weight: 700;
  line-height: 28.64px;
  text-align: center;
  color: var(--white);
  padding: 4px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact_btn:hover {
  background: var(--backgorund);
  color: var(--bar);
  cursor: pointer;
  border: 1px solid var(--bar);
}

/*** End contact us**** */

/*** Start about us**** */

.about_us_text h3 {
  font-weight: 700;
  font-family: "Roboto";
  color: var(--secondary);
}
.about_us_text p:nth-child(3) {
  font-weight: 500;
}
.about_us_text p {
  font-family: "Roboto";
}

#team-wrapper .card{
  border-radius: 12px;
  overflow: hidden;
}

#team-wrapper .card > img {
  height: 235px;
  width: 235px;
  border-radius: 50%;
  margin-left: 10px;
  margin-top: 10px;  
  -webkit-filter: grayscale(100%); 
  filter: grayscale(100%);
}

/*** End about us**** */

/*** Start we are different **** */

.we_are_diff .card {
  height: 300px;
  border-radius: 16px;
  border: 1px solid #f9fdfb52;
  padding: 20px;
  background: linear-gradient(
    136.23deg,
    rgba(249, 253, 251, 0.1512) -14.88%,
    rgba(249, 253, 251, 0) 96.89%
  );
  transition: 500ms ease;
}
.we_are_diff .card:hover {
  cursor: pointer;
  margin-top: 30px;
  border: 1px solid #f9fdfb52;
  background: var(--light-bg);
  transition: 500ms ease;
}
.we_are_diff .card:hover .card_text p {
  color: var(--secondary);
  font-weight: 500;
  font-family: "Roboto";
}
.we_are_diff .card:hover .card_image img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2494%)
    hue-rotate(167deg) brightness(88%) contrast(99%);
}

.we_are_diff .card_text h4 {
  color: var(--bar);
  margin-bottom: 1.5rem;
  font-family: "Roboto";
}
.we_are_diff .card_text p {
  color: var(--backgorund);
}
.we_are_diff .card_image {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.we_are_diff .card_image img {
  height: 60px;
  width: 60px;
}

/*** End we are different **** */

/*** Start our mission section **** */
.our_mission {
  padding-bottom: 10rem;
}
.our_mission .card {
  height: 300px;
  border-radius: 16px;
  border: 1px solid #f9fdfb52;
  padding: 20px;
  background: linear-gradient(
    136.23deg,
    rgba(249, 253, 251, 0.1512) -14.88%,
    rgba(249, 253, 251, 0) 96.89%
  );
  transition: 500ms ease;
}
.our_mission .card:hover {
  cursor: pointer;
  border: 1px solid #f9fdfb52;
  background: var(--light-bg);
  transition: 500ms ease;
}
.our_mission .card:hover p {
  color: var(--secondary);
  font-family: "Roboto";
}
.our_mission .card:hover h4 {
  color: var(--bar);
}
.our_mission .card:hover .card_image img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2494%)
    hue-rotate(167deg) brightness(88%) contrast(99%);
}

.our_mission .card_text h4 {
  font-size: 28px;
  color: var(--white);
  margin-bottom: 1rem;
  font-family: "Roboto";
}
.our_mission .card_text p {
  font-size: 21px;
  line-height: 26px;
  color: #ffffff9e;
  line-clamp: 4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.our_mission .card_image {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.our_mission .card_image img {
  height: 60px;
  width: 60px;
}

/*** End our mission section **** */

/* ************ Body Content Styling ************* */

/* *********** footer styling starts here *************** */

.footer_wrapper {
  padding: 90px 70px;
}

.footer-title {
  position: relative;
  color: #fff;
  margin-bottom: 1.7rem;
}

.footer-title::after {
  content: "";
  height: 5px;
  width: 50px;
  border-radius: 6px;
  background-color: var(--primary);
  position: absolute;
  left: 0px;
  bottom: -8px;
}

.footer-item > ul > li {
  position: relative;
  margin-bottom: 5px;
}

.footer-item > ul > li::before {
  content: url("../images/forward-arrow-small.svg");
}

.footer-item > ul > li > a {
  color: #fff;
  font-size: 14px;
}

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

.footer-social-icons {
  display: flex;
}

.footer-social-icons > li a > i {
  font-size: 20px;
  color: #fff;
}

.svg-img:hover {
  cursor: pointer;
  filter: invert(25%) sepia(76%) saturate(656%) hue-rotate(9deg)
    brightness(105%) contrast(101%);
}

.footer-social-icons > li {
  margin-right: 12px;
}

.location-pin {
  padding-left: 14px;
  position: relative;
  font-size: 14px;
  text-align: justify;
  color: #fff;
}

.location-pin::before {
  content: url("../images/Places.svg");
  position: absolute;
  left: 0px;
  height: 14px;
  width: 14px;
}

.call {
  padding-left: 14px;
  position: relative;
  font-size: 14px;
}

.call:hover a {
  color: var(--primary) !important;
}

.call::before {
  content: url("../images/Phone.svg");
  position: absolute;
  left: 0px;
  height: 14px;
  width: 14px;
}

.mail {
  padding-left: 14px;
  position: relative;
  font-size: 14px;
}

.mail:hover a {
  color: var(--primary) !important;
}

.mail::before {
  content: url("../images/Messages.svg");
  position: absolute;
  left: 0px;
  height: 14px;
  width: 14px;
}

.subscribe-input {
  border-radius: 1.25rem !important;
  /* position: relative; */
  border: 1px solid rgb(255 255 255 / 42%) !important;
  background-color: rgb(255 255 255 / 10%) !important;
  color: #fff !important;
}

.subscribe-input:focus {
  outline: none;
}

.subscribe-button {
  position: absolute;
  border-radius: 1.25rem !important;
  right: 0;
  padding: 0.4rem 3rem !important;
  color: var(--secondary);
  background-color: var(--primary);
  transition: ease-in 500ms;
}

.subscribe-button:hover {
  color: var(--primary);
  background-color: var(--secondary);
  transition: ease-out 500ms;
}

.wh_floating_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.call_floating_btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 100px;
  height: 100px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

@keyframes pulsing {
  to {
    box-shadow: 0 0 0 30px rgba(232, 76, 61, 0);
  }
}

.contact_icon,
.call_contact_icon {
  background-color: #42db87;
  color: #fff;
  width: 60px;
  height: 60px;
  font-size: 30px;
  border-radius: 50px;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translatey(0px);
  animation: pulse 1.5s infinite;
  box-shadow: 0 0 0 0 #42db87;
  -webkit-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulsing 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  font-weight: normal;
  font-family: "Roboto";
  text-decoration: none !important;
  transition: all 300ms ease-in-out;
}

.call_contact_icon {
  background-color: var(--secondary-light);
  box-shadow: 0 0 0 0 var(--secondary-light);
  font-size: 26px;
}

/* **********footer styling ends here *********** */

/* Start Slick Slider  */

.slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: -1.5rem;
  left: 45%;
}

.slick-dots button {
  margin: 5px;
  height: 12px;
  width: 12px;
  font-size: 0;
  border-radius: 10px;
  color: #c8d1d6;
  background-color: #c8d1d6;
  border: none;
  transition: 500ms ease-out;
  outline: none;
}

li.slick-active button {
  background-color: var(--secondary-light);
  color: var(--secondary-light);
  transition: 500ms ease-out;
}

.slick-arrow {
  position: absolute;
  opacity: 0.7;
  bottom: -50px;
  z-index: 1;
  width: 30px;
  height: 30px;
  transform: translateY(-50%);
  padding: 0;
  overflow: hidden;
  font-size: 15px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 2px solid var(--bar);
  border-radius: 16px;
  cursor: pointer;
  outline: none;
  transition: 0.25s;
  color: var(--bar);
}
.slick-arrow:hover,
.slick-arrow:focus {
  border-color: var(--bar);
  color: var(--white);
  background: var(--bar);
  outline: none;
}
.slick-arrow:active {
  transform: translateY(-50%) scale(0.9);
}
.slick-prev {
  right: 70px;
}
.slick-next {
  right: 10px;
}
.slick-slide img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* End Slick Slider  */

/* ******** Start CLient banner section ******** */

.clients-banner-wrapper {
  padding-top: 6rem;
  background-color: #fff;
}

.clients-banner .slick-list {
  position: relative !important;
}
.clients-banner .slider {
  height: 80px;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.clients-banner .slider img {
  text-align: center;
  /* -webkit-filter: grayscale(100%);
  filter: grayscale(100%); */
  /* height: 100%; */
  width: 100%;
  object-fit: contain;
  margin: 0;
}
.clients-banner .slider img:hover {
  cursor: pointer;
  /* -webkit-filter: grayscale(0%);
  filter: grayscale(0%); */
}

/* ******** End CLient banner section ******** */

/* ******** Start Our Services section ******** */

.our-services .nav-item {
  height: 95px;
  border-bottom: 1px solid var(--light-bg);
  background-color: var(--bar);
}
.our-services .nav-item .nav-tab {
  color: var(--white) !important;
  font-weight: 500;
  height: 100%;
  display: flex;
  border: 0;
  align-items: center;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 21px;
  padding: 20px;
}
.our-services .nav-item .nav-tab > div {
  height: 40px;
  width: 40px;
  border-radius: 21px;
  margin-right: 10px;
  background-color: var(--light-bg);
}
.our-services .nav-item .active > div {
  background-color: var(--bar);
}
.our-services .nav-item .active > div > img {
  filter: brightness(0) invert(1);
}
.our-services .nav-item div > img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2494%)
    hue-rotate(167deg) brightness(88%) contrast(99%);
}
.our-services .nav-item .active {
  background-color: var(--light-bg) !important;
  color: var(--secondary) !important;
}

.service-card {
  height: 180px;
  margin-bottom: 20px;
  border-radius: 6px;
  border: 1px solid #027d8536;
  box-shadow: 2px 2px 6px 0px #027d851f;
  padding: 21px;
  position: relative;
}

.service-card .card_img {
  height: 40px;
  width: 40px;
  border-radius: 20px;
  background-color: var(--bar);
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-card h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--secondary);
}
.service-card p {
  font-family: "Roboto";
  font-size: 11px;
  line-height: 12.89px;
  letter-spacing: 0.03em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.service-card .read_more a {
  color: var(--white);
}
.service-card .read_more {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 21px;
  width: 21px;
  border-radius: 11px;
  background: var(--bar);
  font-size: 10px;
  position: absolute;
  right: 18px;
  bottom: 12px;
}
.service-card .read_more:hover {
  background-color: var(--secondary);
  cursor: pointer;
}

/* ******** End Our Services section ******** */

/* *********counter section start ***** */

.ads_wrapper {
  height: 300px;
}
.ads_container {
  padding: 30px 110px;
  background-color: var(--white);
  border-radius: 36px;
  box-shadow: 0px 4px 21px 0px #0a323f1f;
  display: flex;
  align-items: center;
  position: absolute;
  top: -150px;
}
.ads_container h2 {
  font-family: "PT Sans";
  font-size: 52px;
  font-weight: 700;
  line-height: 56px;
  color: var(--secondary);
}
.ads_container p {
  font-family: "Nunito";
  font-size: 21px;
  font-weight: 400;
  line-height: 28px;

  color: var(--secondary);
}

.counter_slider {
  padding-top: 4rem;
  height: 230px;
}
.counter_slider .counter_item {
  display: flex !important;
  align-items: center !important;
  position: relative;
}
.counter_slider .counter_item .circle_counter {
  height: 140px;
  width: 140px;
  border-radius: 50%;
}

.counter_slider .counter_item p {
  font-size: 27px;
  display: flex;
  align-items: center;
  margin: 0px;
  margin-top: 5px;
  position: absolute;
  left: 9%;
  top: 36%;
}
.counter_slider .counter_item .count {
  font-family: "Gluten";
  font-size: 64px;
  line-height: 36px;
  color: var(--secondary);
}
.counter_slider .counter_item .title {
  font-family: "Gluten";
  margin-left: 6px;
}
/* *********counter section end ***** */

/* ******** Start Why Choose section ******** */
.why_choose {
  align-items: center;
}
.why_choose h2 {
  font-size: 36px;
  font-family: "Roboto Condensed", sans-serif;
  position: relative;
  margin-bottom: 30px;
}
.why_choose h2::before {
  content: "";
  height: 6px;
  width: 50px;
  border-radius: 6px;
  background-color: var(--bar);
  position: absolute;
  left: 0px;
  bottom: -12px;
}
.why_choose p {
  font-size: 21px;
  font-family: "Nunito", sans-serif;
}
.why_choose ul > li {
  font-family: "Nunito", sans-serif;
  font-size: 21px;
  line-height: 38px;
  font-weight: bold;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 10px;
}
.why_choose ul > li::before {
  content: "";
  background: url("../images/tick.svg");
  height: 32px;
  width: 32px;
  position: absolute;
  left: 0px;
  top: 2px;
}

/* ******** End Why Choose section ******** */

/* **** Start Testimonials ****** */

.testimonial_rating {
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 600;
  line-height: 21.09px;
  text-align: center;
  color: var(--secondary);
}

.testimonial_items {
  padding: 21px;
  background: var(--backgorund);
  box-shadow: 0px 4px 8px 0px #0a323f36;
  border: 1px solid #f9fdfb36;
  border-radius: 6px;
  font-family: "Roboto";
  margin: 10px;
  min-height: 245px !important;
  max-height: 245px !important;
}
.testimonial_items .item_top {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.testimonial_items .item_bottom p {
  font-size: 14px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 7;
  -webkit-box-orient: vertical;
  text-align: justify;
}
.testimonial_items .item_top .icon {
  height: 42px;
  width: 42px;
  border-radius: 21px;
  background-color: var(--primary-light);
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
}
.testimonial_items .item_top .content span {
  font-family: "Roboto";
  font-size: 18px;
  font-weight: 600;
  line-height: 21.09px;
}
.testimonial_items .item_top .content img {
  width: 80px;
}

/* **** Ends Testimonials ****** */


/* ********** Start Thank You Page *********** */

.thank_you_wapper > h2 {
  font-size: 72px;
  color: var(--secondary);
}
.thank_you_wapper > p {
  font-size: 21px;
  color: var(--text);
}
.thank_you_wapper .button {
  font-size: 17px;
  font-family: "Nunito";
  font-weight: bold;
  color: var(--bar);
  border: 1px solid var(--bar);
  border-radius: 6px;
  padding: 6px 18px;
  transition: 300ms ease;
}
.thank_you_wapper .button:hover {
  color: var(--white);
  cursor: pointer;
  border: 1px solid var(--bar);
  background-color: var(--bar);
  transition: 300ms ease;
}

/* ********** End Thank You Page *********** */

/* @media queries styling for screen resizing */

@media (max-width: 1088px) {
  .sticky-form,
  .sticky-position {
    width: 295px;
  }
}

@media (max-width: 992px) {
  .ads_container {
    padding: 50px 30px;
  }
  .ads_container h2 {
    font-size: 42px;
    line-height: 46px;
  }
}

@media (max-width: 768px) {
  .head-card-wrapper {
    border-radius: 12px;
  }

  .head-card-items::after {
    display: none !important;
  }

  .head-title {
    font-size: 36px;
    line-height: 40px;
  }

  .head-price {
    font-size: 27px;
    margin: 15px 0px;
  }

  .head-card-items {
    justify-content: flex-start;
    margin-bottom: 10px;
    border-radius: 12px;
    padding: 0.5rem;
    width: 100%;
  }

  .sticky-form,
  .sticky-position {
    position: relative;
    margin-top: 3rem;
    width: 100%;
  }

  .our_mission .card:first-child {
    margin-bottom: 3rem;
  }

  .our_mission{
    padding-bottom:5rem;
  }

  .ads_wrapper {
    height: 140px;
  }

  .ads_container {
    padding: 21px;
    top: -170px;
    left: 0;
    margin: 15px;
  }

  .ads_container h2{
    font-size: 32px;
    line-height: 36px;
  }
  .ads_container p, .our_mission .card_text p{
    font-size: 17px;
    line-height: 23px;
  }

  .ads_container > div:last-child {
    display: none;
  }


  .footer-title {
    margin-top: 2rem;
  }

  .content-container h1::before
{
    width: 50px;
    height: 5px;
  }

  .content-container h1 {
    font-size: 27px;
    line-height: 28px;
  }

  /*.content-container h2 {*/
  /*  font-size: 25px;*/
  /*  line-height: 26px;*/
  /*}*/

  .content-container ul,
  .content-container ol {
    padding-left: 1.5rem;
  }

  .footer-item > ul > li > a {
    font-size: 16px;
  }

  .footer-item {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .call_floating_btn {
    display : flex;
    bottom: 15px;
    right: 5px;
  }
}

@media (max-width: 568px) {
  .banner {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .footer_wrapper {
    padding: 35px 15px;
  }

  .head-card-items {
    margin-bottom: 0px;
    border-radius: 12px;
    padding: 0.25rem;
  }

  .head-card-items > div > span {
    font-size: 19px;
  }

  .head-card-items > div > img {
    height: 32px;
    width: 32px;
    border-radius: 16px;
  }

  .head-text {
    width: 100%;
  }

  .head-text > p {
    font-size: 18px;
  }

  .wh_floating_btn {
    bottom: 75px;
    right: 5px;
  }

  .call_floating_btn {
    bottom: 75px;
    left: 5px;
  }

  .contact_icon,
  .call_contact_icon {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .contact_icon {
    font-size: 26px;
  }

  .subscribe-button {
    padding: 6px 20px !important;
  }
}

    
