:root {
  --sr-primary-color: #007a73;
  --sr-secondry-color: #95c122;

  --sr-link-color: #007a73;
  --sr-link-hover-color: #005f59;
}

body {
  color: var(--bs-black);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
}
body.open .navigation-menu__labels {
  translate: 0 0;
  visibility: visible;
}

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

ul li,
p {
  font-size: 16px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media only screen and (max-width: 767.98px) {
  ul li,
  p {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
}

::-webkit-scrollbar-corner {
  background-color: transparent;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: var(--bs-white);
}

::-webkit-scrollbar-thumb {
  height: 50px;
  background: var(--bs-black);
}

::placeholder {
  color: var(--bs-black) !important;
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--bs-black) !important;
}

::-ms-input-placeholder {
  color: var(--bs-black) !important;
}

.text-color {
  color: #007a75 !important;
}

.bg-color {
  background-color: #007a75 !important;
}

.bg-light {
  background-color: var(--bs-gray-200) !important;
}

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

.bg-gradient {
  background-image: linear-gradient(90deg, #0f7956, #007a75) !important;
  background-color: #007a75;
}

.bg-gradient2 {
  background: radial-gradient(circle at 50% 48%, #0f7956 30%, #007a75 100%);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #007a75;
}

.validation {
  color: var(--bs-danger);
  font-size: 14px;
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.list-icon-check {
  padding-left: 0;
  list-style: none;
}
.list-icon-check li {
  display: flex;
  align-items: center;
  margin-bottom: 0.25rem;
  padding-left: 10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon-check li {
    align-items: start;
    padding-left: 10px;
  }
}
.list-icon-check li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--bs-black);
  position: relative;
  top: 0px;
  left: -10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon-check li::before {
    font-size: 14px;
  }
}

.list-icon {
  padding-left: 0;
  list-style: none;
}
.list-icon li {
  display: flex;
  align-items: start;
  margin-bottom: 0.25rem;
  padding-left: 10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon li {
    align-items: start;
    padding-left: 10px;
  }
}
.list-icon li::before {
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-size: 18px;
  font-weight: 900;
  color: var(--bs-black);
  position: relative;
  top: 0px;
  left: -10px;
}
@media only screen and (max-width: 767.98px) {
  .list-icon li::before {
    font-size: 14px;
  }
}

.list-icon li a,
.list-icon li a:hover {
  color: white;
  text-decoration: none;
}

.mobile-call-btn {
  display: none;
  padding: 10px 8px;
  position: fixed;
  z-index: 9999;
  bottom: 15px;
  right: 15px;
  background: #ffc107;
  border-radius: 5%;
  width: auto;
  text-align: center;
  line-height: 1.1;
  transition: all 0.3s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  animation: dropdownSlideIn 0.5s ease-in;
  animation-duration: 0.5s;
  -webkit-animation-duration: 0.3s;
  animation-fill-mode: both;
  -webkit-animation-fill-mode: both;
}

.mobile-call-btn.show {
  display: block;
}
.mobile-call-btn a {
  background: transparent;
  color: var(--bs-black);
  font-weight: bold;
}
.mobile-call-btn a i {
  font-size: 2rem;
  color: #007a75;
}

@keyframes dropdownSlideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
  100% {
    transform: translateY(0rem);
    opacity: 1;
  }
  0% {
    transform: translateY(1rem);
    opacity: 0;
  }
}
@-webkit-keyframes dropdownSlideIn {
  0% {
    -webkit-transform: transform;
    -webkit-opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    -webkit-opacity: 1;
  }
  0% {
    -webkit-transform: translateY(1rem);
    -webkit-opacity: 0;
  }
}
header.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  background-color: #333;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
}
header.sticky .header_wrapper {
  padding: 10px 0;
}
header.sticky .header_wrapper .logo img {
  filter: drop-shadow(1px 0 0 #fff) drop-shadow(-1px 0 #fff) drop-shadow(0 1px 0 #fff) drop-shadow(0 -1px 0 #fff) drop-shadow(1px 1px 0 #fff) drop-shadow(1px -1px 0 #fff) drop-shadow(-1px 1px 0 #fff) drop-shadow(-1px -1px 0 #fff);
}
header {
  position: relative;
  width: 100%;
  z-index: 99;
  box-shadow: 5px 3px 20px #cbcbcb;
}
header .header_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper {
    text-align: center;
    display: flex;
  }
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper .logo {
    margin-bottom: 10px;
  }
  header .header_wrapper .logo img {
    max-width: 150px;
  }
}
header .header_wrapper .menu_top {
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper .menu_top {
    display: none;
  }
}
header .header_wrapper .menu_top ul {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
header .header_wrapper .menu_top ul li {
  list-style: none;
}
header .header_wrapper .menu_top ul li a {
  padding-right: 40px;
  font-size: 16px;
  font-weight: 500;
  color: #000;
}
header.sticky .header_wrapper .menu_top ul li a {
  color: #fff;
}
header .header_wrapper .info {
  display: flex;
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper .info {
    margin-left: auto;
  }
}
header .header_wrapper .info a {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  background-color: #fff;
  border: 2px solid #fff;
  letter-spacing: 2px;
  padding: 3px;
  padding-right: 15px;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
header .header_wrapper .info a:first-child {
  margin-right: 15px;
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper .info a {
    font-size: 12px;
    padding: 2px;
    padding-right: 10px;
    font-weight: 700;
    letter-spacing: 0;
  }
}
header .header_wrapper .info a i {
  width: 40px;
  height: 40px;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  margin-right: 15px;
  border-radius: 50%;
}
@media only screen and (max-width: 767.98px) {
  header .header_wrapper .info a i {
    width: 25px;
    height: 25px;
    font-size: 13px;
    margin-right: 5px;
  }
}

.hero_section {
  position: relative;
  padding: 150px 0 140px;
  background-image: url('/wp-content/themes/sriaasconsultants/css/../images/hero-bg.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  color: #fff;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section {
    padding: 50px 0 30px;
    background-size: cover;
  }
}
.hero_section .content {
  position: relative;
  padding-right: 30px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content {
    z-index: 2;
    margin-bottom: 35px;
  }
}
.hero_section .content h1 {
  font-size: 38px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 5px;
  text-align: left;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-shadow: 2px 7px 5px rgba(0, 0, 0, 0.3), 0px -4px 10px rgba(255, 255, 255, 0.3);
  position: relative;
  color: #fff;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content h1 {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 30px;
  }
}
.hero_section .content h1 span {
  display: block;
  font-size: 70px;
  font-weight: 700;
  letter-spacing: 5px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content h1 span {
    font-size: 30px;
    letter-spacing: 2px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content p {
    margin-bottom: 20px;
    font-size: 12px;
  }
}
.hero_section .content ul li {
  font-size: 18px;
  font-weight: 600;
}
.hero_section .content ul li::before {
  color: #fff;
  font-size: 22px;
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content ul li::before {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767.98px) {
  .hero_section .content ul li {
    font-size: 16px;
  }
}

.appoinment_form {
  position: relative;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
  z-index: 1;
  border-radius: 20px;
}
@media only screen and (max-width: 767.98px) {
  .appoinment_form {
    margin-bottom: 40px;
  }
}
.appoinment_form::before {
  position: absolute;
  content: "";
  background-color: #FFC000;
  width: 200px;
  height: 200px;
  right: -15px;
  border-radius: 30px;
  bottom: -15px;
  opacity: 0.5;
}
@media only screen and (max-width: 767.98px) {
  .appoinment_form::before {
    right: -10px;
    bottom: -10px;
  }
}
.appoinment_form::after {
  position: absolute;
  content: "";
  background-color: #FFC000;
  width: 200px;
  height: 200px;
  left: -15px;
  border-radius: 30px;
  top: -15px;
  opacity: 0.5;
}
@media only screen and (max-width: 767.98px) {
  .appoinment_form::after {
    left: -10px;
    top: -10px;
  }
}
.appoinment_form .inner {
  position: relative;
  background-color: #fff;
  z-index: 2;
  padding: 30px;
  border-radius: 20px;
}
.appoinment_form .inner .title_main {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #007a73;
  padding: 10px;
  color: #fff;
  position: relative;
  border-radius: 20px;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 767.98px) {
  .appoinment_form .inner .title_main {
    font-size: 18px;
  }
}
.appoinment_form .inner .title_main::after {
  content: "";
  border-top: 10px solid #007a73;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  position: absolute;
  width: 20px;
  bottom: -10px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.appoinment_form .inner .form-group {
  margin-bottom: 20px;
}
.appoinment_form .inner .form-group .form-select,
.appoinment_form .inner .form-group .form-control {
  box-shadow: rgba(9, 30, 66, 0.15) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
  border-radius: 10px;
  border: none;
  padding: 10px 20px;
}
.appoinment_form .inner .form-group .submit-btn {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.appoinment_form .inner .form-group .submit-btn button {
  border: none;
  background-color: #ffc107;
  padding: 10px 20px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  border-radius: 15px;
  box-shadow: rgba(9, 30, 66, 0.15) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
@media only screen and (max-width: 767.98px) {
  .appoinment_form .inner .form-group .submit-btn button {
    font-size: 12px;
    letter-spacing: 2px;
  }
}

main {
  border-radius: 50px;
  background-color: #fff;
  position: relative;
  margin-top: 0px;
  margin-bottom: -50px;
}
main .benifits {
  position: relative;
  padding: 50px 0;
}
main .benifits .title {
  font-size: 60px;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 55px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  main .benifits .title {
    font-size: 30px;
    letter-spacing: 2px;
    line-height: 40px;
  }
}
main .benifits .title span {
  display: block;
  font-size: 30px;
  letter-spacing: 2px;
}
main .benifits .title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
main .benifits .title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
main .benifits .content {
  position: relative;
}
main .benifits .content .pointers {
  background-color: #fffae4;
  padding: 20px;
  border-radius: 15px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
main .about_left {
  position: relative;
  padding: 70px 0;
  margin-bottom: 50px;
}
@media only screen and (max-width: 767.98px) {
  main .about_left {
    padding: 30px 0;
    margin-bottom: 0;
  }
}
main .about_left::before {
  content: "";
  position: absolute;
  width: 76%;
  height: 100%;
  background-color: #ffc107;
  top: 0;
  bottom: 0;
}
@media only screen and (max-width: 767.98px) {
  main .about_left::before {
    width: 100%;
  }
}
main .about_left .content {
  position: relative;
}
main .about_left .content .title {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  main .about_left .content .title {
    font-size: 30px;
    letter-spacing: 2px;
    padding-bottom: 10px;
  }
}
main .about_left .content .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
main .about_left .content .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
main .about_left .display {
  position: relative;
  border-radius: 15px;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  overflow: hidden;
  display: block;
  border: 5px solid #fff;
}
main .about_left .display img {
  border-radius: 15px;
}
main .approach {
  position: relative;
  padding: 50px 0;
}
@media only screen and (max-width: 767.98px) {
  main .approach {
    padding: 30px 0;
  }
}
main .approach .content {
  position: relative;
  padding: 40px;
  background-color: #fffae4;
  margin-left: -100px;
  z-index: 2;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
@media only screen and (max-width: 767.98px) {
  main .approach .content {
    margin-left: 0;
    margin-bottom: 30px;
    padding: 20px;
  }
}
main .approach .title {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  main .approach .title {
    font-size: 30px;
    letter-spacing: 2px;
    padding-bottom: 10px;
  }
}
main .approach .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
main .approach .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
main .approach .display {
  position: relative;
  z-index: 1;
}
main .approach .display img {
  width: 100%;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
  position: relative;
  z-index: 2;
}
main .approach .display::before {
  content: "";
  position: absolute;
  right: -10px;
  height: 50%;
  width: 100px;
  border-radius: 20px;
  background-color: #ffc107;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
main .approach .display::after {
  content: "";
  position: absolute;
  left: -10px;
  height: 50%;
  width: 100px;
  border-radius: 20px;
  background-color: #ffc107;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
main .benifits__Sec {
  position: relative;
}
main .benifits__Sec .title {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  main .benifits__Sec .title {
    font-size: 30px;
    letter-spacing: 2px;
    padding-bottom: 10px;
  }
}
main .benifits__Sec .title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}
main .benifits__Sec .title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
  margin-left: auto;
  margin-right: auto;
}
main .benifits__Sec .benifits_box {
  background-color: #fff;
  border-radius: 30px;
  padding: 10px;
  text-align: center;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
main .benifits__Sec .benifits_box p {
  padding: 0 10px;
  font-size: 16px;
}
main .benifits__Sec .benifits_box img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 20px;
}
main .benifits__Sec .benifits_box h4 {
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
main .benifits__Sec .benifits_box h4::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 50px;
  height: 3px;
  background-color: var(--bs-black);
  border-radius: 10px;
  bottom: 0;
}
main .timings {
  position: relative;
  margin-top: 50px;
  margin-bottom: 50px;
}
main .timings .timing_section {
  background-color: #ffc107;
  outline: 5px solid #ffc107;
  outline-offset: 10px;
  padding: 50px;
  border-radius: 50px;
  color: #333;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
@media only screen and (max-width: 767.98px) {
  main .timings .timing_section {
    outline: none;
  }
}
main .timings .timing_section .title {
  font-size: 35px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 15px;
  color: #333;
}
@media only screen and (max-width: 767.98px) {
  main .timings .timing_section .title {
    font-size: 30px;
  }
}
main .timings .timing_section .title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #333;
  z-index: 1;
}
main .timings .timing_section .title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #333;
}
main .timings .timing_section a {
  font-size: 45px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  letter-spacing: 2px;
}
@media only screen and (max-width: 767.98px) {
  main .timings .timing_section a {
    font-size: 25px;
    margin-bottom: 30px;
  }
}
main .timings .timing_section a i {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #333;
  font-size: 30px;
  display: flex;
  align-items: center;
  color: #fff;
  justify-content: center;
  margin-right: 15px;
  animation: heartBeat 1000ms infinite linear;
}
@media only screen and (max-width: 767.98px) {
  main .timings .timing_section a i {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}
main .timings .timing_section .appointment_btn {
  background-color: #333;
  outline: 2px solid #333;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  display: inline-block;
  border-radius: 15px;
  outline: 2px solid #333;
  outline-offset: 5px;
  font-weight: 500;
}
main .expert {
  position: relative;
  padding: 100px 0 50px;
}
@media only screen and (max-width: 767.98px) {
  main .expert {
    padding-bottom: 0;
    padding-top: 40px;
  }
}
main .expert .expert-message {
  position: relative;
  border-right: 20px solid #ffc107;
  border-bottom: 20px solid #ffc107;
  padding: 30px;
  padding-left: 0;
}
main .expert .expert-message::before {
  position: absolute;
  content: "";
  width: 340px;
  height: 20px;
  background-color: #ffc107;
  top: -20px;
  right: -20px;
}
main .expert .expert-message .expeert-profile {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
  max-width: 280px;
  margin-left: auto;
}
main .expert .expert-message .expert-info {
  margin-top: 20px;
  text-align: right;
  border-right: 5px solid #ffc107;
  padding-right: 15px;
}
main .expert .expert-message .expert-info h4 {
  font-size: 22px;
  line-height: 32px;
  margin-bottom: 0;
  font-weight: 600;
}
main .expert .expert-message .expert-info span {
  font-style: italic;
}
main .expert .expert-message .expert-details {
  position: relative;
  padding-top: 0;
}
main .expert .expert-message .expert-details h4.main-title {
  font-size: 40px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  main .expert .expert-message .expert-details h4.main-title {
    font-size: 30px;
    letter-spacing: 2px;
  }
}
main .expert .expert-message .expert-details h4.main-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
main .expert .expert-message .expert-details h4.main-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
main .pricing {
  position: relative;
  padding: 50px 0;
}
main .pricing .title {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767.98px) {
  main .pricing .title {
    font-size: 30px;
    letter-spacing: 2px;
    padding-bottom: 10px;
  }
}
main .pricing .title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}
main .pricing .title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
  margin-left: auto;
  margin-right: auto;
}
main .pricing .price-box {
  position: relative;
  border-radius: 15px;
  border: 1px solid #E3EEFE;
  background: #fff;
  padding: 50px;
  margin-top: 30px;
  transition: 0.4s;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
main .pricing .price-box.active {
  border: 2px solid #333;
  transform: translateY(-20px);
}
main .pricing .price-box .box-title {
  font-weight: 600;
  letter-spacing: -0.48px;
}
main .pricing .price-box_text {
  color: #333;
  font-weight: 600;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #D9D9D9;
}
main .pricing .price-box_price {
  color: #333;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.96px;
  margin-bottom: 0.2rem;
}
main .pricing .price-box .available-list {
  padding: 0;
  margin-bottom: 35px;
}
main .testimonials {
  position: relative;
  padding: 50px 0;
  margin-bottom: 100px;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials {
    padding: 30px 0;
  }
}
main .testimonials::before {
  content: "";
  position: absolute;
  width: 67%;
  height: 100%;
  background-color: #ffc107;
  right: 0;
  top: 0;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials::before {
    width: 100%;
  }
}
main .testimonials .content {
  position: relative;
  padding-left: 25px;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials .content {
    padding: 20px 10px;
  }
}
main .testimonials .content .title {
  font-size: 40px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #000;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials .content .title {
    font-size: 30px;
    letter-spacing: 2px;
  }
}
main .testimonials .content .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
main .testimonials .content .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
main .testimonials .content p {
  color: #000;
}
main .testimonials .testimonial_slider .owl-stage {
  display: flex;
}
main .testimonials .testimonial_slider .owl-item {
  display: flex;
  flex-direction: column;
}
main .testimonials .testimonial_slider .owl-nav {
  position: absolute;
  bottom: -30px;
  width: 145px;
  display: flex;
  right: 10px;
  justify-content: space-between;
}
main .testimonials .testimonial_slider .owl-nav button.owl-prev {
  width: 70px;
  height: 50px;
  background-color: #007a75;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 55px;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
main .testimonials .testimonial_slider .owl-nav button.owl-next {
  width: 70px;
  height: 50px;
  background-color: #007a75;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 55px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
main .testimonials .testimonial_slider .testimonial {
  background-color: #007a75;
  color: #fff;
  height: 100%;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 125px 40px 35px;
  margin: 10px;
  position: relative;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials .testimonial_slider .testimonial {
    padding: 75px 20px 15px;
  }
}
main .testimonials .testimonial_slider .testimonial::before {
  content: "\f10d";
  position: absolute;
  color: #fff;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  top: 20px;
  left: 40px;
  font-size: 75px;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials .testimonial_slider .testimonial::before {
    top: 0;
    left: 20px;
    font-size: 55px;
  }
}
main .testimonials .testimonial_slider .testimonial p {
  margin-bottom: 20px;
  font-size: 18px;
  font-style: italic;
}
@media only screen and (max-width: 767.98px) {
  main .testimonials .testimonial_slider .testimonial p {
    font-size: 16px;
  }
}
main .testimonials .testimonial_slider .testimonial .profile_details {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
main .testimonials .testimonial_slider .testimonial .profile_details .profile_pic {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-right: 20px;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}
main .testimonials .testimonial_slider .testimonial .profile_details .info {
  position: relative;
}
main .testimonials .testimonial_slider .testimonial .profile_details .info .name {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 3px;
}
main .testimonials .testimonial_slider .testimonial .profile_details .info img {
  max-width: 100px;
}
main .faq_section {
  position: relative;
  padding: 50px 0;
}
@media only screen and (max-width: 767.98px) {
  main .faq_section {
    padding: 30px 0;
    padding-bottom: 0;
  }
}
main .faq_section .title {
  font-size: 45px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-weight: 700;
  position: relative;
  margin-bottom: 40px;
  padding-bottom: 10px;
  text-align: center;
}
@media only screen and (max-width: 767.98px) {
  main .faq_section .title {
    font-size: 30px;
    padding-bottom: 10px;
    letter-spacing: 2px;
  }
}
main .faq_section .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 5px;
  width: 55px;
  background-color: #000;
  z-index: 1;
}
main .faq_section .title::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 2px;
  height: 1px;
  width: 200px;
  max-width: 255px;
  background-color: #000;
}
main .faq_section h5 {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: 600;
}
main .faq_section h5 span {
  background-color: #FFC000;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  font-size: 18px;
  border-radius: 50%;
  font-weight: 700;
}
main .faq_section h5 em {
  max-width: 75%;
  font-style: normal;
}

footer {
  background-color: #333;
  padding: 100px 0 20px 0;
  color: #fff;
  text-align: center;
}
footer .copyright {
  background-color: #007a73;
  margin-top: 20px;
  padding: 20px;
}
footer .footer_menu {
  text-align: center;
}
footer .footer_menu ul {
  list-style: none;
  display: flex;
  margin: auto;
  margin-top: 50px;
  justify-content: center;
}
@media only screen and (max-width: 767.98px) {
  footer .footer_menu ul {
    padding: 0;
    flex-wrap: wrap;
  }
}
footer .footer_menu ul li a {
  margin: auto 15px;
  letter-spacing: 2px;
  opacity: 0.7;
  transition: 0.3s all;
  color: white;
}
@media only screen and (max-width: 767.98px) {
  footer .footer_menu ul li {
    border-right: 1px solid #fff;
    margin-bottom: 10px;
  }
  footer .footer_menu ul li:nth-child(3),
  footer .footer_menu ul li:nth-child(5) {
    border-right: none;
  }
  footer .footer_menu ul li a {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
  }
}
footer .footer_menu ul li a:hover {
    opacity: 1;
    color: #ffc107;
    text-decoration: underline;
}
@media only screen and (max-width: 767.98px) {
  footer .col-lg-4 {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dotted #ccc;
  }
}


/* WooCommerce Cart Icon */
.cart-contents {
  display: flex !important;
}
.cart-contents::before {
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
  content: '\f07a' !important;
  font-size: 17px !important;
  color: #000000 !important;
}
.cart-contents.fa-solid {
  font-weight: 900 !important;
}
header.sticky .cart-contents::before {
  color: #fff !important;
}
.cart-contents:hover {
  text-decoration: none;
}
.cart-contents-count {
  position: absolute;
  top: 10px;
  transform: translateY(-105%) translateX(25%);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  line-height: 22px;
  height: 22px;
  width: 22px;
  vertical-align: middle;
  text-align: center;
  color: #fff;
  background: #ffaa00;
  border-radius: 50%;
  padding: 1px;
}