/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. Intro Video css
09. Our Environment css
10. What We Do css
11. Our Expertise css
12. Our Testimonials css
13. Our Facts css
14. Our FAQs css
15. Our Blog css
16. Footer css
17. About Us Page css 
18. Services Page css 
19. Service Single css 
20. Blog Archive css 
21. Blog Single css 
22. Our Products css
23. Product Single css
24. Team Page css 
25. Team Single css 
26. Pricing Page css
27. Testimonials Page css 
28. Image Gallery css 
29. Video Gallery css 
30. FAQs Page css 
31. Contact Us Page css 
32. 404 Error Page css 
33. Responsive css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
  --primary-color: #143d59;
  --bg-color: #e8e8e8;
  --text-color: #626c6d;
  --accent-color: #f3b31d;
  --white-color: #ffffff;
  --divider-color: #143d591a;
  --dark-divider-color: #ffffff1a;
  --error-color: rgb(230, 87, 87);
  --default-font: "Anek Bangla", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
  position: relative;
  font-family: var(--default-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background: var(--bg-color);
}

::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
  border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar {
  width: 7px;
  background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

::selection {
  color: var(--primary-color);
  background-color: var(--accent-color);
  filter: invert(1);
}

p {
  line-height: 1.6em;
  margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.2em;
  color: var(--primary-color);
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus {
  text-decoration: none;
  outline: 0;
}

html,
body {
  width: 100%;
  overflow-x: clip;
}

.container {
  max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}

.image-anime {
  position: relative;
  overflow: hidden;
}

.image-anime:after {
  content: "";
  position: absolute;
  width: 220%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}

.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}

.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}

.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}

.row > * {
  padding-right: 15px;
  padding-left: 15px;
}

.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}

.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}

.btn-default {
  position: relative;
  display: inline-block;
  background-color: #f4f4f4;
  font-size: 18px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--primary-color);
  background: var(--accent-color);
  border-radius: 0px;
  padding: 17px 55px 17px 20px;
  border: none;
  overflow: hidden;
  outline: none;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px auto;
  border-radius: 6px;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
  background-color: var(--accent-color);
}

.btn-default::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--white-color);
  z-index: -1;
  transition: all 0.4s ease-in-out;
  border: 1px solid #f3b31d;
  overflow: hidden;
}

.btn-default:hover::after {
  right: auto;
  left: 0;
  width: 100%;
  overflow: hidden;
}

.readmore-btn {
  position: relative;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2em;
  text-transform: capitalize;
  color: var(--primary-color);
  padding-right: 28px;
}

.readmore-btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  background-image: url("../images/arrow-primary.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  transform: translate(-3px, -50%);
  transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
  transform: translate(0px, -50%);
}

.cb-cursor:before {
  background: var(--accent-color);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

.loading-container {
  margin: 40px auto;
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--accent-color) transparent var(--accent-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}

#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.bg-section {
  width: 100%;
  max-width: 1820px;
  margin: 0 auto;
  border-radius: 20px;
}

.dark-section {
  background-color: var(--primary-color);
}

.section-row {
  margin-bottom: 80px;
}

.section-row .section-title {
  margin-bottom: 0;
}

.section-title.section-title-center {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.section-btn {
  text-align: right;
}

.section-content-btn .section-btn {
  margin-top: 30px;
  text-align: left;
}

.section-title-content p {
  margin-bottom: 20px;
}

.section-title-content p:last-child {
  margin-bottom: 0;
}

.section-title {
  margin-bottom: 40px;
}

.section-title h3 {
  position: relative;
  display: inline-block;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: normal;
  text-transform: uppercase;
  color: var(--primary-color);
  padding-left: 30px;
  margin-bottom: 10px;
}

.section-title h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: url("../images/icon-sub-heading.svg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 50%;
  width: 20px;
  height: 20px;
}

.section-title h1 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 0;
  cursor: none;
}

.section-title h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1em;
  margin-bottom: 0;
  cursor: none;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
  color: var(--white-color);
}
.navbar-brand img {
   
    height: auto;
    width: 35%;
    filter: brightness(0) invert(1);
}

.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}

.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid var(--dark-divider-color);
  border-radius: 0px;
  z-index: 100;
}

header.main-header .header-sticky {
  position: relative;
  top: 0;
  width: 100%;
  z-index: 100;
}

header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}

header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--primary-color);
  border-bottom: 1px solid var(--dark-divider-color);
  padding: 0 15px;
}

.navbar {
  padding: 30px 0;
  align-items: center;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu ul li {
  margin: 0 5px;
  position: relative;
}

.main-menu ul li a {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
  padding: 14px 10px !important;
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu > a:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 14px;
  margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scale(1, 0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 235px;
  border-radius: 12px;
  position: absolute;
  left: 0;
  top: 100%;
  background: var(--accent-color);
  transition: all 0.3s ease-in-out;
  text-align: left;
}

.main-menu ul li.submenu:first-child ul {
  width: 235px;
}

.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}

.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scale(1, 1);
  padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after {
  content: "\f105";
  float: right;
}

.main-menu ul ul li {
  margin: 0;
  padding: 0;
}

.main-menu ul ul li a {
  color: var(--primary-color);
  padding: 6px 20px !important;
  transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
  color: var(--white-color);
  background-color: transparent;
  padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
  display: none;
}

.responsive-menu,
.navbar-toggle {
  display: none;
}

.responsive-menu {
  top: 0;
  position: relative;
}

.slicknav_btn {
  background: var(--accent-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  width: 22px;
  background-color: var(--primary-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}

.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--accent-color);
}

.slicknav_menu ul {
  margin: 5px 0;
}

.slicknav_menu ul ul {
  margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
  position: relative;
  font-size: 18px;
  font-weight: 400;
  text-transform: capitalize;
  padding: 2px 20px;
  color: var(--primary-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--white-color);
}

.slicknav_menu ul ul li a {
  padding: 2px 20px 2px 30px;
}

.slicknav_arrow {
  font-size: 0 !important;
}

.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--primary-color);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--white-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

.hero {
  position: relative;
  padding: 195px 0 80px;
  margin-top: 50px;
}

.hero-content-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
}

.contact-now-box {
  display: flex;
  align-items: center;
  text-align: left;
}

.contact-now-box .icon-box {
  position: relative;
  background: var(--dark-divider-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.contact-now-box .icon-box img {
  max-width: 24px;
}

.contact-now-box-content h3 {
  font-size: 20px;
  color: var(--white-color);
}

.contact-now-box-content h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover {
  color: var(--accent-color);
}

.hero-content-footer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 40px;
}

.trusted-client-images {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.client-image {
  position: relative;
  border: 1px solid var(--primary-color);
  border-radius: 50%;
  margin-left: -14px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  z-index: 1;
}

.client-image:first-child {
  margin: 0;
}

.client-image figure {
  display: block;
}

.client-image img {
  width: 100%;
  border-radius: 50%;
}

.client-image.add-more {
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-image.add-more h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
}

.trusted-client-review p {
  color: var(--white-color);
  margin-bottom: 0;
}

.trusted-client-review p i {
  color: var(--accent-color);
  margin: 0 5px;
}

.hero-image {
  position: relative;
  text-align: right;
}

.hero-image figure {
  display: block;
}

.hero-image img {
  width: 100%;
  object-fit: cover;
  margin-bottom: -80px;
}
.hero-experience-box {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 200px;
  max-width: 200px;
  background: url("../images/about-us-img-2.jpg");
  box-shadow: 0px 0px 11.8px 0px rgba(0, 0, 0, 0.12);
  border-radius: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  animation: experienceobject 3s infinite linear alternate;
  overflow: hidden;
  background-size: 100%;
  border: 10px solid #f3b31d;
}
@keyframes experienceobject {
  50% {
    right: 40px;
  }
}

.hero-experience-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgb(255 255 255 / 38%);
  z-index: 0;
  transition: all 0.4s ease-in-out;
}

.hero-experience-box:hover::before {
  top: auto;
  height: 100%;
}

.hero-experience-box h2,
.hero-experience-box p {
  position: relative;
  z-index: 1;
}

.hero-experience-box h2 {
  font-size: 40px;
  font-weight: 700;
  width: calc(35% - 10px);
}

.hero-experience-box p {
  width: calc(65% - 10px);
  color: var(--primary-color);
  line-height: 1.3em;
  margin-bottom: 0;
}

/************************************/
/***        05. About Us css      ***/
/************************************/

.about-us {
  padding: 100px 0;
}

.about-us-images {
  position: relative;
  display: flex;
  justify-content: center;
  margin-right: 20px;
}

.about-us-img-1 {
  width: 100%;
  max-width: 290px;
  transform: rotate(-6.64deg);
}

.about-us-img-2 {
  width: 100%;
  max-width: 330px;
  margin-top: 70px;
  margin-left: -90px;
  transform: rotate(13.54deg);
}

.about-us-img-2 figure,
.about-us-img-1 figure {
  display: block;
  border-radius: 999px;
}

.about-us-img-2 figure {
  border: 6px solid var(--bg-color);
}

.about-us-img-2 figure img,
.about-us-img-1 figure img {
  width: 100%;
  aspect-ratio: 1 / 1.72;
  object-fit: cover;
  border-radius: 999px;
}

.about-us-circle {
  position: absolute;
  bottom: 40px;
  left: 70px;
  z-index: 1;
}

.about-us-circle a {
  display: inline-block;
  border: 5px solid var(--bg-color);
  border-radius: 50%;
}

.about-us-circle img {
  max-width: 170px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.about-us-circle a:hover img {
  animation-play-state: paused;
}

.about-us-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.about-us-body-item {
  position: relative;
  width: calc(50% - 15px);
  background: var(--primary-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  overflow: hidden;
}

.about-us-body-item:nth-child(even) {
  background: var(--accent-color);
}

.about-us-body-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-color);
  width: 100%;
  height: 0;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.about-us-body-item:nth-child(even)::before {
  background: var(--white-color);
}

.about-us-body-item:hover:before {
  height: 100%;
}

.about-us-body-item img {
  position: relative;
  max-width: 40px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.about-us-body-item:nth-child(even) img {
  filter: brightness(0) invert(0);
}

.about-us-body-item h3 {
  position: relative;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.about-us-body-item:nth-child(even) h3 {
  color: var(--primary-color);
}

.about-us-body-content {
  width: 100%;
}

.about-us-body-content p:last-child {
  margin: 0;
}

.about-us-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  margin-top: 40px;
}

.about-contact-box {
  display: flex;
  align-items: center;
  text-align: left;
}

.about-contact-box .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.about-contact-box .icon-box img {
  max-width: 24px;
}

.about-contact-box-content p {
  margin-bottom: 5px;
}

.about-contact-box-content h3 {
  font-size: 20px;
}

.about-contact-box-content h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.about-contact-box-content h3 a:hover {
  color: var(--accent-color);
}

.cart-count img {
  filter: brightness(1) invert(1);
  width: 24px;
  margin-right: 4px;
}
.cart-count span {
    width: 22px;
    height: 22px;
    background-color: #fff;
    color: #000;
    border-radius: 100%;
    text-align: center;
    line-height: 24px;
    font-size: 16px;
    position: absolute;
    top: -10px;
    right: -15px;
}
a.cart-count {
    position: relative;
}
/************************************/
/***      06. Our Services css	  ***/
/************************************/

.our-services {
  padding: 100px 0;
}

.service-item {
  position: relative;
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
  border: 1px solid #034b7c;
}

.service-image a,
.service-image figure {
  display: block;
  cursor: none;
}

.service-image figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    181deg,
    rgba(20, 61, 89, 0) 62.46%,
    rgba(20, 61, 89, 0.8) 85.88%
  );
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-image img {
  width: 100%;
  /* aspect-ratio: 1 / 1.34; */
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
  transform: scale(1.1);
}

.service-body {
  position: absolute;
  left: 25px;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 1;
}

.service-content {
    width: calc(100% - 50px);
    background-color: rgb(33 95 137);
    backdrop-filter: blur(1px);
    padding: 10px;
    border-radius: 8px;
}
.service-content h2 a {
  color: #fff;
  font-size: 1.5rem;
  color: #9ebfc2;
}

.service-content h3 {
  font-size: 20px;
  line-height: 1.4em;
  color: var(--white-color);
}

.service-content h3 a {
  color: inherit;
  font-size: 17px;
}

.service-btn a {
  width: 40px;
  height: 40px;
  /* border: 1px solid var(--white-color); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}
.service-btn a img {
    max-width: 20px;
    /* transform: rotate(-45deg); */
    transition: all 0.3s ease-in-out;
    filter: brightness(0) invert(1);
}

.service-btn a:hover img {
  transform: rotate(0deg);
}

.section-footer-text {
  margin-top: 30px;
  text-align: center;
}

.hero-content-footer .section-footer-text {
  text-align: left;
  width: calc(40% - 10px);
  margin-top: 0;
}

.section-footer-text p {
  margin: 0;
}

.section-footer-text p span {
  display: inline-block;
  line-height: 1.3em;
  color: var(--white-color);
  background: var(--accent-color);
  border-radius: 100px;
  padding: 2px 12px;
  margin-right: 10px;
}

.section-footer-text p a {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: capitalize;
  text-decoration: underline;
  transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
  color: var(--accent-color);
}

.dark-section .section-footer-text p {
  color: var(--white-color);
}

.dark-section .section-footer-text p a {
  color: var(--accent-color);
}

.dark-section .section-footer-text p a:hover {
  color: var(--white-color);
}

/************************************/
/***     07. Why Choose Us css    ***/
/************************************/

.why-choose-us {
  padding: 100px 0;
}

.why-choose-images {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 30px;
}

.why-choose-image-box-1 {
  width: calc(62% - 15px);
}

.why-choose-image-box-2 {
  width: calc(38% - 15px);
}

.why-choose-img-1 figure,
.why-choose-img-2 figure {
  display: block;
  border-radius: 20px;
}

.why-choose-img-1 img,
.why-choose-img-2 img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.why-choose-img-1 img {
  aspect-ratio: 1 / 1.3;
}

.why-choose-img-2 img {
  aspect-ratio: 1 / 1.1;
}

.why-choose-image-box-2 {
  text-align: center;
}

.why-choose-img-3 {
  margin: 20px 0 0 -122px;
}

.why-choose-img-3 figure {
  display: block;
  border: 10px solid var(--bg-color);
  border-radius: 20px;
}

.why-choose-img-3 img {
  width: 100%;
  aspect-ratio: 1 / 0.56;
  object-fit: cover;
}

.happy-customer-box {
  max-width: 250px;
  margin-top: 50px;
}

.happy-customer-box .trusted-client-review {
  margin-top: 10px;
}

.happy-customer-box .trusted-client-review p {
  color: var(--primary-color);
}

.happy-customer-box .trusted-client-review p span {
  color: var(--accent-color);
  font-weight: 600;
}

.why-choose-image-box-2 .about-us-circle {
  position: initial;
  margin-bottom: 30px;
}

.why-choose-image-box-2 .about-us-circle a {
  border: none;
}

.why-choose-image-box-2 .about-us-circle a img {
  max-width: 160px;
}

.why-choose-content {
  margin-left: 15px;
}

.why-choose-list {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.why-choose-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-list ul li {
  position: relative;
  width: calc(50% - 15px);
  line-height: 1.5em;
  padding-left: 25px;
}

.why-choose-list ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.why-choose-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
  margin-bottom: 40px;
}

.why-choose-item {
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
}

.why-choose-item .icon-box {
  margin-right: 20px;
}

.why-choose-item .icon-box img {
  max-width: 40px;
  transition: all 0.4s ease-in-out;
}

.why-choose-item:hover .icon-box img {
  transform: rotateY(180deg);
}

.agency-item-content {
  width: calc(100% - 60px);
}

.agency-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
}

.why-choose-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 60px;
}

.about-author-info {
  display: flex;
  align-items: center;
}

.about-author-image {
  margin-right: 15px;
}

.about-author-image figure {
  display: block;
  border-radius: 50%;
}

.about-author-image img {
  max-width: 50px;
}

.about-author-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.about-author-content p {
  line-height: 1.3em;
  text-transform: capitalize;
  margin-bottom: 0;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video {
  position: relative;
  background: url(../images/intro-video-bg.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0;
  overflow: hidden;
}

.intro-video::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  opacity: 80%;
}

.intro-video .container {
  position: relative;
  z-index: 1;
}

.intro-video-button {
  text-align: center;
  margin-top: 60px;
}

.intro-video-button a {
  display: inline-block;
  border-radius: 50%;
  cursor: none;
}

.intro-video-button a img {
  width: 100%;
  max-width: 150px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}

.intro-video-button a:hover img {
  animation-play-state: paused;
}

.intro-video-counter {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px 90px;
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 150px;
  padding: 40px 20px 0;
  z-index: 1;
}

.intro-counter-item {
  width: calc(25% - 67.5px);
}

.intro-counter-item h2 {
  font-size: 40px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.intro-counter-item p {
  font-size: 16px;
  color: var(--white-color);
  margin-bottom: 0;
}

/************************************/
/*** 	09. Our Environment css	  ***/
/************************************/

.our-environment {
  padding: 100px 0;
}

.our-environment-images {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.environment-img-1,
.environment-img-2 {
  width: 100%;
  border-radius: 20px;
}

.environment-img-1 figure,
.environment-img-2 figure {
  display: block;
  border-radius: 20px;
}

.environment-img-1 figure img,
.environment-img-2 figure img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.environment-img-1 figure img {
  aspect-ratio: 1 / 1.399;
}

.environment-img-2 {
  position: relative;
  width: 100%;
  max-width: 310px;
  margin-left: -111px;
}

.environment-img-2 figure {
  border: 4px solid var(--bg-color);
  border-radius: 24px;
}

.environment-img-2 figure img {
  aspect-ratio: 1 / 1.2;
}

.environment-img-2 .about-us-circle {
  position: relative;
  margin-left: 40px;
  margin-top: -80px;
  left: auto;
  bottom: auto;
  z-index: 1;
}

.environment-body-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.environment-body-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.environment-body-item .icon-box {
  position: relative;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  margin-right: 20px;
}

.environment-body-item .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.environment-body-item:hover .icon-box::before {
  transform: scale(1);
}

.environment-body-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 25px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.environment-body-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.environment-body-item-content {
  width: calc(100% - 70px);
}

.environment-body-item-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.environment-body-item-content p {
  margin-bottom: 0;
}

/************************************/
/*** 	  10. What We Do css	  ***/
/************************************/

.what-we-do {
  overflow: hidden;
}

.what-we-do .container-fluid {
  padding: 0;
}

.what-we-do-content {
  padding: 100px 30px 100px 2.25vw;
  height: 100%;
}

.what-we-do-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.what-we-do-item {
  width: calc(50% - 15px);
  border: 1px solid var(--dark-divider-color);
  border-radius: 20px;
  padding: 30px;
}

.what-we-do-item:nth-child(4n - 3),
.what-we-do-item:nth-child(4n) {
  background: var(--dark-divider-color);
}

.what-we-do-item .icon-box {
  margin-bottom: 30px;
}

.what-we-do-item .icon-box img {
  width: 100%;
  max-width: 50px;
}

.what-we-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.what-we-item-content p {
  color: var(--white-color);
  margin: 0;
}

.what-we-do-content .section-footer-text {
  margin-top: 40px;
  text-align: left;
}

.what-we-do-image {
  position: relative;
}

.what-we-do-image,
.what-we-do-image figure,
.what-we-do-image figure img {
  width: 100%;
  height: 100%;
}

.what-we-do-image figure img {
  aspect-ratio: 1 / 0.97;
  object-fit: cover;
}

.what-we-do-image .about-us-circle {
  bottom: auto;
  left: auto;
  top: 50%;
  transform: translate(-50%, -50%);
}

.what-we-do-image .about-us-circle a img {
  max-width: 130px;
}

/************************************/
/*** 	 11. Our Expertise css	  ***/
/************************************/

.our-expertise {
  padding: 100px 0;
}

.expertise-content .section-title {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 40px;
}

.expertise-list-box {
  margin-bottom: 30px;
}

.expertise-list-box:last-child {
  margin-bottom: 0;
}

.expertise-list-box h3 {
  position: relative;
  font-size: 20px;
  padding-left: 30px;
  margin-bottom: 10px;
}

.expertise-list-box h3::before {
  content: "\f14a";
  position: absolute;
  font-family: "FontAwesome";
  left: 0;
  top: 0;
  font-size: 18px;
  color: var(--accent-color);
}

.expertise-list-box p {
  margin: 0;
}

.expertise-image {
  position: relative;
  background: url("../images/expertise-image-bg.svg") no-repeat;
  background-position: center center;
  background-size: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.expertise-img-1 {
  width: calc(50% - 15px);
}

.expertise-img-2 {
  padding-top: 165px;
  width: calc(50% - 15px);
}

.expertise-img-1 img figure,
.expertise-img-2 img figure {
  display: block;
  border-radius: 20px;
}

.expertise-img-1 img,
.expertise-img-2 img {
  aspect-ratio: 1 / 1.29;
  object-fit: cover;
  border-radius: 20px;
}

.expert-doctor {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: max-content;
  padding: 20px;
  animation: doctormoveobject 3s infinite linear alternate;
}

@keyframes doctormoveobject {
  50% {
    left: 40px;
  }
}

.expert-doctor .icon-box {
  background-color: #ffe096;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  transition: all 0.3s ease-in-out;
}

.expert-doctor:hover .icon-box {
  background-color: var(--bg-color);
}

.expert-doctor .icon-box img {
  width: 100%;
  max-width: 30px;
  transition: all 0.3s ease-in-out;
}

.expert-doctor:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.expert-doctor-content {
  width: calc(100% - 80px);
}

.expert-doctor-content h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.expert-doctor-content p {
  color: var(--primary-color);
  margin: 0;
}

/************************************/
/***   12. Our Testimonials css	  ***/
/************************************/

.our-testimonials {
  position: relative;
  background: url("../images/testimonial-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0;
  overflow: hidden;
}

.our-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-color);
  opacity: 80%;
  width: 100%;
  height: 100%;
}

.our-testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials-content {
  margin-right: 15px;
}

.testimonials-counter-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 370px;
}

.testimonials-counter-box h2 {
  width: 130px;
  font-size: 50px;
  color: var(--white-color);
}

.testimonials-counter-box p {
  width: calc(100% - 150px);
  color: var(--white-color);
  border-left: 1px solid var(--dark-divider-color);
  margin: 0 0 0 15px;
  padding-left: 15px;
}

.testimonial-slider {
  position: relative;
  background: var(--dark-divider-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
}

.testimonial-slider .swiper-wrapper {
  cursor: none;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.testimonial-company-logo img {
  width: 100%;
  max-width: 150px;
}

.testimonial-quote img {
  width: 100%;
  max-width: 40px;
}

.testimonial-content {
  border-bottom: 1px solid var(--dark-divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.testimonial-content p {
  color: var(--white-color);
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  margin-right: 15px;
}

.author-image figure {
  display: block;
  border-radius: 50%;
}

.author-image img {
  width: 100%;
  max-width: 50px;
  border-radius: 50%;
}

.author-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 5px;
}

.author-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.testimonial-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  z-index: 1;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  background: var(--dark-divider-color);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-button-next {
  margin-left: 20px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
  background: var(--accent-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
  content: "\f061";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
  content: "\f060";
}

.company-supports-slider {
  border-top: 1px solid var(--dark-divider-color);
  padding-top: 60px;
  margin-top: 60px;
}

.company-supports-logo {
  text-align: center;
}

.company-supports-logo img {
  width: 100%;
  max-height: 40px;
}

/************************************/
/*** 	   13. Our Facts css	  ***/
/************************************/

.our-facts {
  padding: 100px 0;
}

.our-fact-image {
  position: relative;
}

.fact-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.fact-image img {
  width: 100%;
  aspect-ratio: 1 / 1.41;
  object-fit: cover;
  border-radius: 20px;
}

.company-rating {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 100%;
  max-width: 180px;
  display: inline-flex;
  align-items: baseline;
  background-color: var(--accent-color);
  padding: 5px 15px;
  border-radius: 100px;
}

.company-rating i {
  color: var(--primary-color);
  margin-right: 1px;
}

.company-rating p {
  font-weight: 700;
  color: var(--primary-color);
  margin: 0 0 0 5px;
}

.fact-content-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.fact-content-body {
  width: calc(62% - 15px);
}

.fact-info-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.fact-content-list {
  width: calc(100% - 170px);
  background: var(--accent-color);
  border-radius: 20px;
  padding: 30px;
}

.fact-content-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fact-content-list ul li {
  position: relative;
  color: var(--primary-color);
  line-height: 1.5em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.fact-content-list ul li:last-child {
  margin-bottom: 0;
}

.fact-content-list ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-color);
}

.fact-info-box .about-us-circle {
  position: initial;
  margin-left: 60px;
}

.fact-info-box .about-us-circle a {
  border: none;
}

.fact-info-box .about-us-circle a img {
  max-width: 110px;
}

.fact-content-image {
  width: calc(38% - 15px);
}

.fact-content-image figure {
  display: block;
  border-radius: 20px;
}

.fact-content-image img {
  width: 100%;
  aspect-ratio: 1 / 1.2;
  object-fit: cover;
  border-radius: 20px;
}

.fact-counter-list {
  border-top: 1px solid var(--divider-color);
  display: flex;
  gap: 30px 50px;
  flex-wrap: wrap;
  padding-top: 60px;
  margin-top: 60px;
}

.fact-counter-item {
  position: relative;
  width: calc(25% - 37.5px);
}

.fact-counter-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -25px;
  bottom: 0;
  background-color: var(--divider-color);
  width: 1px;
  height: 100%;
}

.fact-counter-item:last-child:before,
.fact-counter-item:nth-of-type(4n + 4):before {
  display: none;
}

.fact-counter-item h3 {
  font-size: 40px;
  margin-bottom: 5px;
}

.fact-counter-item p {
  margin: 0;
}

/************************************/
/*** 		14. Our FAQs css	  ***/
/************************************/

.our-faqs {
  padding: 100px 0;
}

.our-faqs-image {
  position: relative;
  padding-right: 70px;
}

.our-faqs-img figure {
  display: block;
  border-radius: 20px;
}

.our-faqs-img img {
  width: 100%;
  aspect-ratio: 1 / 1.065;
  object-fit: cover;
  border-radius: 20px;
}

.client-review-box {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 100%;
  max-width: 210px;
  text-align: center;
  background-color: var(--accent-color);
  border-radius: 10px;
  padding: 20px;
  animation: reviewbox 3s infinite linear alternate;
}

@keyframes reviewbox {
  50% {
    right: 50px;
  }
}

.client-review-box-content {
  margin-bottom: 15px;
}

.client-review-box-content p {
  font-weight: 500;
  color: var(--white-color);
  margin-bottom: 0;
}

.client-review-box-content p i {
  color: var(--primary-color);
  margin-right: 5px;
}

.client-review-box-content p span {
  font-weight: 400;
  display: block;
}

.client-review-box .client-image.add-more {
  background: var(--primary-color);
}

.client-review-box .client-image.add-more h3 {
  color: var(--white-color);
}

.faq-accordion .accordion-item {
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}

.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4em;
  padding: 20px 45px 20px 20px;
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: var(--dark-divider-color);
  color: var(--white-color);
}

.faq-accordion .accordion-header .accordion-button.collapsed {
  background-color: var(--dark-divider-color);
  color: var(--white-color);
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f068";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  font-size: 20px;
  font-weight: 900;
  color: var(--white-color);
  right: 20px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: "\f067";
}

.faq-accordion .accordion-item .accordion-body {
  border-top: 1px solid var(--dark-divider-color);
  background-color: var(--dark-divider-color);
  padding: 20px;
}

.faq-accordion .accordion-item .accordion-body p {
  color: var(--white-color);
  margin: 0;
}

/************************************/
/*** 		15. Our Blog css	  ***/
/************************************/

.our-blog {
  padding: 100px 0 70px;
}

.post-item {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.post-featured-image a {
  cursor: none;
  display: block;
  overflow: hidden;
}

.post-featured-image figure {
  display: block;
}

.post-featured-image img {
  aspect-ratio: 1 / 0.68;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
  transform: scale(1.1);
}

.post-item-body {
  padding: 20px;
}

.post-item-content {
  margin-bottom: 20px;
}

.post-item-content h2 {
  font-size: 20px;
  line-height: 1.4em;
}

.post-item-content h2 a {
  display: inline-block;
  color: inherit;
}

/************************************/
/*** 		16. Footer css		  ***/
/************************************/

.main-footer {
  padding: 100px 0 0;
  margin-bottom: 50px;
}

.about-footer {
  margin-right: 4.16vw;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
    width: 100%;
    max-width: 220px;
    filter: brightness(0) invert(1);
}

.about-footer-content p {
    color: var(--white-color);
    margin-bottom: 0;
    font-size: 16px;
    /* color: #000; */
    line-height: 1.8;
}

.footer-links h3 {
  font-size: 20px;
  color: var(--white-color);
  text-transform: capitalize;
  margin-bottom: 20px;
}

.footer-links ul {
  list-style: disc;
  margin: 0;
  padding-left: 22px;
}

.footer-links ul li {
  color: var(--white-color);
  line-height: 1.6em;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.footer-links ul li:last-child {
  margin-bottom: 0;
}

.footer-links ul li::marker {
  color: var(--accent-color);
  transition: all 0.3s ease-in-out;
}

.footer-links ul li:hover::marker {
  color: var(--white-color);
}

.footer-links ul li a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-contact-item:last-child {
  margin-bottom: 0;
}

.footer-contact-item .icon-box {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  border-radius: 50%;
  margin-right: 10px;
  overflow: hidden;
}

.footer-contact-item .icon-box::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  border-radius: 50%;
  transform: scale(0);
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box::before {
  transform: scale(1);
}

.footer-contact-item .icon-box img {
  position: relative;
  max-width: 20px;
  z-index: 1;
}

.footer-contact-content {
  width: calc(100% - 50px);
}

.footer-contact-content p {
  color: var(--white-color);
  margin: 0;
}

.footer-contact-content p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.footer-contact-content p a:hover {
  color: var(--accent-color);
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 60px;
}

.footer-social-link hr {
  height: 1px;
  width: 45%;
  color: var(--dark-divider-color);
  opacity: 1;
}

.footer-social-link ul {
  display: flex;
  justify-content: center;
  text-align: center;
  list-style: none;
  margin: 0 20px;
  padding: 0;
}

.footer-social-link ul li {
  display: inline-block;
  margin-right: 20px;
}

.footer-social-link ul li:last-child {
  margin: 0;
}

.footer-social-link ul li a {
  position: relative;
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  border-radius: 50%;
  overflow: hidden;
}

.footer-social-link ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: var(--white-color);
  border-radius: 50%;
  transform: scale(0);
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.footer-social-link ul li:hover a::before {
  transform: scale(1);
}

.footer-social-link ul li a i {
  position: relative;
  font-size: 20px;
  color: var(--primary-color);
  z-index: 1;
}

.footer-copyright {
  padding: 30px 0 60px;
}

.footer-copyright-text p {
  color: var(--white-color);
  margin: 0;
}

.footer-terms-condition ul {
  display: flex;
  justify-content: end;
  gap: 35px;
  list-style: disc;
  margin: 0;
  padding-left: 0;
}

.footer-terms-condition ul li::marker {
  color: var(--accent-color);
}

.footer-terms-condition ul li:first-child::marker {
  font-size: 0;
}

.footer-terms-condition ul li a {
  color: var(--white-color);
  line-height: 1.6em;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.footer-terms-condition ul li:hover a {
  color: var(--accent-color);
}

/************************************/
/*** 	 17. About Us Page css	  ***/
/************************************/

.page-header {
  padding: 210px 0 130px;
  margin-top: 50px;
}

.page-header-box {
  position: relative;
  text-align: center;
  z-index: 1;
}

.page-header-box h1 {
  display: inline-block;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1em;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
}

.page-header-box ol {
  position: relative;
  margin: 0;
  padding: 0;
  justify-content: center;
  z-index: 1;
}

.page-header-box ol li.breadcrumb-item {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
  text-transform: capitalize;
  color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}

.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}

.our-approach {
  position: relative;
  background-image: url("../images/approach-bg.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0 0;
  margin-bottom: 190px;
}

.our-approach::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 80%;
  border-radius: 20px;
  width: 100%;
  height: 100%;
}

.our-approach .container {
  position: relative;
  z-index: 1;
}

.approach-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: -190px;
}

.approach-item {
  position: relative;
  width: calc(33.33% - 20px);
  background: var(--primary-color);
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.approach-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-color);
  border-radius: 999px 999px 0 0;
  width: 100%;
  height: 0;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.approach-item:hover:before {
  border-radius: 0;
  height: 100%;
}

.approach-item .icon-box,
.approach-item-content,
.approach-list {
  position: relative;
  z-index: 1;
}

.approach-item .icon-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.approach-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.approach-item:hover .icon-box::before {
  transform: scale(1);
}

.approach-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.approach-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.approach-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}

.approach-item-content p {
  color: var(--white-color);
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.approach-list {
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 30px;
  padding-top: 30px;
  transition: all 0.4s ease-in-out;
}

.approach-item:hover .approach-list {
  border-color: var(--divider-color);
}

.approach-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.approach-list ul li {
  position: relative;
  color: var(--white-color);
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}

.approach-list ul li:last-child {
  margin-bottom: 0;
}

.approach-list ul li::before {
  content: "\f14a";
  font-family: "FontAwesome";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.approach-item:hover .approach-item-content h3,
.approach-item:hover .approach-item-content p,
.approach-item:hover .approach-list ul li,
.approach-item:hover .approach-list ul li::before {
  color: var(--primary-color);
}

.our-health {
  padding: 100px 0;
}

.our-health-content {
  margin-right: 15px;
}

.health-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.health-item:last-child {
  margin-bottom: 0;
}

.health-item .icon-box {
  position: relative;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent-color);
  border-radius: 50%;
  margin-right: 20px;
}

.health-item .icon-box:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.health-item:hover .icon-box::before {
  transform: scale(1);
}

.health-item .icon-box img {
  width: 100%;
  max-width: 30px;
  transition: all 0.3s ease-in-out;
}

.health-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}

.health-item-content {
  width: calc(100% - 80px);
}

.health-item-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 10px;
}

.health-item-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.our-health-image {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 68px;
}

.our-health-img-box {
  width: calc(50% - 10px);
}

.our-health-img-1 figure,
.our-health-img-2 figure,
.our-health-img-3 figure {
  display: block;
  border-radius: 20px;
}

.our-health-img-1 img,
.our-health-img-2 img,
.our-health-img-3 img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.our-health-img-1 {
  margin-bottom: 20px;
}

.our-health-img-1 img,
.our-health-img-2 img {
  aspect-ratio: 1 / 1.065;
}

.our-health-img-3,
.our-health-img-3 figure {
  height: 100%;
}

.our-health-img-3 img {
  height: 100%;
  aspect-ratio: 1 / 2.2;
}

.our-health-image .about-us-circle {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  bottom: auto;
}

.our-health-image .about-us-circle a img {
  max-width: 150px;
}

.our-team {
  padding: 100px 0 70px;
}

.team-member-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.team-image {
  overflow: hidden;
}

.team-image figure,
.team-image a {
  cursor: none;
  display: block;
  border-radius: 20px;
}

.team-image img {
  width: 100%;
  aspect-ratio: 1 / 1.27;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image img {
  transform: scale(1.1);
}

.team-body {
  position: relative;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 15px;
  margin: 0 30px;
  margin-top: -60px;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
}

.team-member-item:hover .team-body {
  border-color: var(--accent-color);
}

.team-body:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.team-member-item:hover .team-body:after {
  top: 0;
}

.team-social-icon ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
  margin-bottom: 10px;
  z-index: 1;
}

.team-social-icon ul li {
  display: inline-block;
  margin-right: 20px;
}

.team-social-icon ul li:last-child {
  margin: 0;
}

.team-social-icon ul li a {
  color: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a i {
  font-size: 18px;
  color: inherit;
}

.team-content {
  position: relative;
  text-align: center;
  z-index: 1;
}

.team-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.team-content h3 a {
  color: inherit;
}

.team-content p {
  font-weight: 500;
  text-transform: capitalize;
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.team-member-item:hover .team-social-icon ul li a,
.team-member-item:hover .team-content h3,
.team-member-item:hover .team-content p {
  color: var(--white-color);
}

/************************************/
/*** 	 18. Services Page css	  ***/
/************************************/

.page-services {
  padding: 100px 0 70px;
}

.page-services .services-item {
  background: var(--primary-color);
  width: 100%;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

/************************************/
/*** 	19. Service Single css	  ***/
/************************************/

.page-service-single {
  padding: 100px 0;
}

.page-single-sidebar {
  position: sticky;
  top: 20px;
  margin-right: 15px;
}

.page-category-list {
  border-radius: 20px;
  margin-bottom: 60px;
  overflow: hidden;
}

.page-category-list h3 {
  font-size: 20px;
  text-transform: capitalize;
  background: var(--accent-color);
  padding: 26px 40px;
}

.page-category-list ul {
  background-color: var(--primary-color);
  list-style: none;
  margin: 0;
  padding: 40px;
}

.page-category-list ul li {
  text-transform: capitalize;
  line-height: 1.5em;
  border-bottom: 1px solid var(--dark-divider-color);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.page-category-list ul li:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}

.page-category-list ul li a {
  position: relative;
  display: block;
  color: var(--white-color);
  padding-right: 30px;
  transition: all 0.3s ease-in-out;
}

.page-category-list ul li:hover a {
  color: var(--accent-color);
}

.page-category-list ul li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: url("../images/arrow-white.svg") no-repeat;
  background-size: cover;
  background-position: center center;
  width: 22px;
  height: 22px;
}

.sidebar-cta-box {
  position: relative;
  background: url("../images/sidebar-cta-bg.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.sidebar-cta-box:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--primary-color);
  opacity: 60%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.sidebar-cta-logo,
.cta-contact-item,
.sidebar-cta-image {
  position: relative;
  z-index: 1;
}

.sidebar-cta-logo {
  margin-bottom: 20px;
}

.sidebar-cta-logo img {
  width: 100%;
  max-width: 168px;
}

.cta-contact-item {
  background: var(--dark-divider-color);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  padding: 20px 30px;
  border-radius: 20px;
  margin-bottom: 30px;
}

.cta-contact-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cta-contact-header img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.cta-contact-header p {
  color: var(--white-color);
  margin-bottom: 0;
}

.cta-contact-item-content h3 {
  font-size: 24px;
  color: var(--white-color);
}

.cta-contact-item-content h3 a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.cta-contact-item-content h3 a:hover {
  color: var(--accent-color);
}

.sidebar-cta-image {
  border-radius: 20px;
  overflow: hidden;
}

.sidebar-cta-image figure {
  display: block;
}

.sidebar-cta-image img {
  width: 100%;
  aspect-ratio: 1 / 0.483;
  object-fit: cover;
}

.page-single-image {
  margin-bottom: 40px;
}

.page-single-image figure {
  display: block;
  border-radius: 20px;
}

.page-single-image img {
  width: 100%;
  aspect-ratio: 1 / 0.598;
  object-fit: cover;
  border-radius: 20px;
}

.service-entry {
  margin-bottom: 60px;
}

.service-entry p {
  margin-bottom: 20px;
}

.service-entry p:last-child {
  margin-bottom: 0;
}

.service-entry h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 20px;
}

.service-entry ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-entry ul li {
  position: relative;
  width: calc(50% - 10px);
  line-height: 1.5em;
  padding-left: 30px;
}

.service-entry ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.service-deliver-box,
.service-quality-box,
.service-caring-box {
  margin-top: 60px;
}

.service-deliver-image-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-deliver-image,
.service-deliver-content {
  width: calc(50% - 15px);
}

.service-deliver-image figure {
  display: block;
  border-radius: 20px;
  height: 100%;
}

.service-deliver-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 0.75;
  object-fit: cover;
  border-radius: 20px;
}

.service-deliver-item {
  display: flex;
  background: var(--primary-color);
  border-radius: 20px;
  margin-bottom: 30px;
  padding: 30px;
}

.service-deliver-item:last-child {
  margin-bottom: 0;
}

.service-deliver-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.service-deliver-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}

.service-deliver-item:hover .icon-box::before {
  transform: scale(1);
}

.service-deliver-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.service-deliver-item-content {
  width: calc(100% - 70px);
}

.service-deliver-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 10px;
}

.service-deliver-item-content p {
  color: var(--white-color);
  margin-bottom: 0;
}

.service-quality-list,
.page-single-image-video {
  margin-top: 40px;
}

.page-single-image-video {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.page-single-image-video figure {
  display: block;
  border-radius: 20px;
}

.page-single-image-video figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  opacity: 70%;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.page-single-image-video img {
  width: 100%;
  aspect-ratio: 1 / 0.35;
  object-fit: cover;
  border-radius: 20px;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.video-play-button a {
  position: relative;
  background: var(--accent-color);
  border-radius: 100%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
}

.video-play-button a:before,
.video-play-button a:after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 160%;
  height: 160%;
  border: 50px solid var(--white-color);
  opacity: 30%;
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
  animation-delay: 0.3s;
}

@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

.video-play-button a i {
  font-size: 20px;
  color: var(--primary-color);
  margin-left: 3px;
}

.service-caring-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.service-caring-item {
  position: relative;
  width: calc(50% - 15px);
  display: flex;
  border-left: 4px solid var(--accent-color);
  background: var(--primary-color);
  border-radius: 20px;
  padding: 20px;
  overflow: hidden;
  transition: all 0.6s ease-in-out;
}

.service-caring-item:hover {
  background: transparent;
}

.service-caring-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
}

.service-caring-item:hover::before {
  width: 100%;
}

.service-caring-item .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  z-index: 1;
}

.service-caring-item .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  border-radius: 50%;
  transform: scale(0);
  transition: all 0.3s ease-in-out;
  z-index: 0;
}

.service-caring-item:hover .icon-box::before {
  transform: scale(1);
}

.service-caring-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 24px;
  z-index: 1;
}

.service-caring-item-content {
  position: relative;
  width: calc(100% - 70px);
  z-index: 1;
}

.service-caring-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 5px;
  transition: all 0.4s ease-in-out;
}

.service-caring-item-content p {
  color: var(--white-color);
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}

.service-caring-item:hover .service-caring-item-content h3,
.service-caring-item:hover .service-caring-item-content p {
  color: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button {
  background: var(--white-color);
  color: var(--primary-color);
}

.page-single-faqs
  .faq-accordion
  .accordion-header
  .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--white-color);
}

.page-single-faqs .faq-accordion .accordion-item .accordion-body {
  background: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-item .accordion-button::after {
  color: var(--white-color);
}

.page-single-faqs
  .faq-accordion
  .accordion-item
  .accordion-button.collapsed::after {
  color: var(--primary-color);
}

/************************************/
/***    20. Blog Archive css	  ***/
/************************************/

.page-blog {
  padding: 100px 0;
}

.page-pagination {
  margin-top: 30px;
  text-align: center;
}

.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--divider-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 600;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
  background: var(--accent-color);
}

/************************************/
/*** 	 21. Blog Single css	  ***/
/************************************/

.page-single-post {
  padding: 100px 0;
}

.post-single-meta {
  margin-top: 5px;
}

.post-single-meta ol li {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 15px;
}

.post-single-meta ol li:last-child {
  margin-right: 0;
}

.post-single-meta ol li i {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 5px;
}

.post-image {
  position: relative;
  margin-bottom: 30px;
}

.post-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}

.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.5;
  object-fit: cover;
  border-radius: 20px;
}

.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.post-entry:after {
  content: "";
  display: block;
  clear: both;
}

.post-entry a {
  color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
  font-weight: 700;
  line-height: 1.1em;
  margin: 0 0 0.4em;
}

.post-entry h1 {
  font-size: 70px;
}

.post-entry h2 {
  font-size: 50px;
}

.post-entry h3 {
  font-size: 40px;
}

.post-entry h4 {
  font-size: 30px;
}

.post-entry h5 {
  font-size: 24px;
}

.post-entry h6 {
  font-size: 20px;
}

.post-entry p {
  margin-bottom: 20px;
}

.post-entry p:last-child {
  margin-bottom: 0;
}

.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}

.post-entry ol {
  margin: 0 0 30px;
}

.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6em;
  color: var(--text-color);
  margin-bottom: 15px;
}

.post-entry ul li:last-child {
  margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
  margin-bottom: 0;
}

.post-entry blockquote {
  background: url("../images/icon-blockquote.svg"), var(--primary-color);
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 45px;
  border-radius: 20px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}

.post-entry blockquote p {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4em;
  color: var(--white-color);
}

.post-entry blockquote p:last-child {
  margin-bottom: 0;
}

.tag-links {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1em;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
  background: var(--accent-color);
  color: var(--primary-color);
}

.post-social-sharing {
  text-align: right;
}

.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}

.post-social-sharing ul li:last-child {
  margin-right: 0;
}

.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
  background: var(--accent-color);
  color: var(--primary-color);
}

.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}

/************************************/
/*** 	 22. Our Products css	  ***/
/************************************/

.page-product {
  padding: 100px 0;
}

.our-product-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.product-item {
  width: calc(25% - 22.5px);
  background: var(--white-color);
  border-radius: 20px;
  text-align: center;
  padding: 30px;
}

.product-image {
  margin-bottom: 15px;
}

.product-image img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.product-rating {
  margin-bottom: 15px;
}

.product-rating i {
  color: var(--accent-color);
}

.product-item-content h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.product-item-content h2 a {
  color: inherit;
}

.product-item-content h3 {
  font-size: 20px;
  color: var(--accent-color);
}

.product-item-content h3 span {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--primary-color);
  opacity: 30%;
}

.page-product .page-pagination {
  margin-top: 60px;
}

/************************************/
/*** 	 23. Product Single css	  ***/
/************************************/

.page-product-single {
  padding: 100px 0;
}

.product-about-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
}

.product-single-content,
.team-member-image {
  width: calc(50% - 30px);
}

.team-member-image {
  background: var(--white-color);
  border-radius: 20px;
  text-align: center;
  align-content: center;
  padding: 100px 40px;
}

.team-member-image figure img {
  width: 100%;
  max-width: 400px;
}

.customer-rating-box {
  margin-bottom: 30px;
}

.customer-rating-box i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 2px;
}

.customer-rating-box i:last-child {
  margin-right: 0;
}

.customer-rating-box span {
  font-size: 14px;
  color: var(--primary-color);
  margin-left: 5px;
}

.product-single-content h3 {
  font-size: 30px;
  margin-bottom: 20px;
}

.product-single-content h3 span {
  font-size: 20px;
  color: var(--primary-color);
  opacity: 0.3;
  text-decoration: line-through;
}

.product-single-content h2 {
  font-size: 46px;
  margin-bottom: 20px;
}

.product-single-content p {
  margin-bottom: 20px;
}

.product-single-content ul {
  list-style: disc;
  padding: 0 0 0 22px;
  margin: 0 0 20px 0;
}

.product-single-content ul li {
  line-height: 1.4em;
  margin-bottom: 12px;
}

.product-single-content ul li:last-child {
  margin-bottom: 0;
}

.product-cart-btn {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.product-cart-btn input {
  display: block;
  width: 50px;
  background: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  text-align: center;
  padding: 5px;
}

.product-cart-btn input:focus-visible {
  outline: none;
}

.product-cart-btn .btn-default {
  padding: 17px 20px;
}

.product-cart-btn .btn-default::before {
  display: none;
}

.product-single-info {
  margin-top: 100px;
}

.product-step-nav {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.product-step-nav .nav-tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  border: none;
}

.product-step-nav ul li {
  width: auto;
}

.product-step-nav ul li .nav-link {
  position: relative;
  width: 100%;
  background: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 600;
  line-height: 1em;
  padding: 0;
  border-radius: 0;
  margin: 0;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

.product-step-nav ul li .nav-link.active,
.product-step-nav ul li .nav-link:hover {
  background: transparent;
  color: var(--accent-color);
}

.product-step-nav ul li .nav-link::before {
  content: "";
  display: block;
  position: absolute;
  top: auto;
  left: auto;
  bottom: -32px;
  right: 0;
  background: var(--primary-color);
  width: 0;
  height: 2px;
  transition: all 0.4s ease-in-out;
}

.product-step-nav ul li .nav-link.active::before,
.product-step-nav ul li .nav-link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}

.product-tab-item-box h3 {
  font-size: 20px;
  margin-top: 20px;
}

.product-tab-item-box h2 {
  font-size: 46px;
  margin-top: 20px;
}

.product-tab-item-box p {
  margin: 20px 0 0 0;
}

.product-tab-item-box ul {
  list-style: disc;
  padding: 0 0 0 22px;
  margin: 20px 0 0 0;
}

.product-tab-item-box ul li {
  line-height: 1.4em;
  margin-bottom: 12px;
}

.product-tab-item-box ul li:last-child {
  margin-bottom: 0;
}

.product-review-from-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 60px;
}

.review-form,
.customer-review-list {
  width: calc(50% - 30px);
}

.customer-review-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.customer-review-item:last-child {
  margin-bottom: 0;
}

.customer-review-item .icon-box {
  margin-right: 20px;
}

.customer-review-item .icon-box img {
  width: 100%;
  max-width: 60px;
  border-radius: 50%;
}

.customer-review-item-body {
  width: calc(100% - 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.customer-review-item-content p {
  margin: 0 0 5px 0;
}

.customer-review-item-content p:last-child {
  margin-bottom: 0;
}

.customer-review-item-content p span {
  color: var(--primary-color);
  font-weight: 600;
}

.customer-review-item-rating i {
  color: var(--accent-color);
  font-size: 16px;
}

.review-form-content {
  margin-bottom: 30px;
}

.review-form-content h3 {
  font-size: 20px;
  margin: 0;
}

.review-form-content p {
  margin: 15px 0 0 0;
}

.review-form .form-control {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.445em;
  color: var(--white-color);
  background-color: transparent;
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  padding: 17px 20px;
  box-shadow: none;
  outline: none;
}

.review-form .form-control::placeholder {
  color: var(--primary-color);
}

.review-form-note {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.review-form-note .form-label {
  margin: 0;
}

.review-form .btn-default {
  width: 100%;
  padding: 17px;
  margin-top: 20px;
}

.review-form .btn-default::before {
  display: none;
}

.related-products-box {
  margin: 0 0 100px 0;
background-color: #f5f5f5;
padding:50px 0;
}

.related-products-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.related-products-box .section-title {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

/************************************/
/*** 	  24. Team Page css 	  ***/
/************************************/

.page-team {
  padding: 100px 0 70px;
}

/************************************/
/*** 	  25. Team Single css	  ***/
/************************************/

.page-team-single {
  padding: 100px 0;
}

.team-single-image {
  margin-bottom: 60px;
}

.team-single-image figure {
  display: block;
  border-radius: 20px;
}

.team-single-image img {
  width: 100%;
  aspect-ratio: 1 / 1.58;
  object-fit: cover;
  border-radius: 20px;
}

.team-sidebar-category-box {
  background: var(--white-color);
  border-radius: 20px;
  padding: 40px;
}

.team-sidebar-category-item {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 25px;
  padding-bottom: 25px;
}

.team-sidebar-category-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.team-sidebar-category-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.team-category-info {
  display: flex;
  align-items: center;
}

.team-category-info img {
  width: 100%;
  max-width: 20px;
  margin-right: 10px;
}

.team-category-info p {
  margin-bottom: 0;
}

.team-sidebar-category-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team-sidebar-category-item ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 15px;
}

.team-sidebar-category-item ul li:last-child {
  margin-right: 0;
}

.team-sidebar-category-item ul li a {
  background: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.team-sidebar-category-item ul li:hover a {
  background-color: var(--accent-color);
}

.team-sidebar-category-item ul li a i {
  color: var(--white-color);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.team-sidebar-category-item ul li:hover a i {
  color: var(--primary-color);
}

.team-member-about,
.team-member-service,
.team-skills-box {
  margin-bottom: 60px;
}

.team-member-about .section-title {
  margin-bottom: 0;
}

.member-service-list,
.member-service-counters {
  margin-top: 40px;
}

.member-service-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.member-service-list ul li {
  position: relative;
  line-height: 1.4em;
  padding-left: 25px;
  margin-bottom: 15px;
}

.member-service-list ul li:last-child {
  margin-bottom: 0;
}

.member-service-list ul li::before {
  content: "\f14a";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  font-weight: 900;
  color: var(--accent-color);
}

.member-service-counters {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.member-service-counter-item {
  position: relative;
  width: calc(33.33% - 20px);
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 40px 35px;
  overflow: hidden;
}

.member-service-counter-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: var(--primary-color);
  border-radius: 500px 500px 0 0;
  transition: all 0.4s ease-in-out;
}

.member-service-counter-item:hover:before {
  height: 100%;
  border-radius: 0;
}

.member-service-counter-item h2,
.member-service-counter-item p {
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.member-service-counter-item h2 {
  font-size: 50px;
  margin-bottom: 5px;
}

.member-service-counter-item:hover h2 {
  color: var(--accent-color);
}

.member-service-counter-item p {
  margin-bottom: 0;
}

.member-service-counter-item:hover p {
  color: var(--white-color);
}

.team-skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  margin-top: 40px;
}

.team-skills-list .skills-progress-bar {
  width: calc(50% - 15px);
  margin-bottom: 0;
}

.skills-progress-bar {
  margin-bottom: 20px;
}

.skills-progress-bar:last-child {
  margin-bottom: 0;
}

.skills-progress-bar .skill-data {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
  font-size: 16px;
  line-height: normal;
}

.skills-progress-bar .skillbar .skill-progress {
  position: relative;
  width: 100%;
  height: 16px;
  background: var(--divider-color);
  border: 1px solid var(--divider-color);
  border-radius: 100px;
  overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 100px;
}

/************************************/
/***   26. Testimonials Page css  ***/
/************************************/

.page-testimonials {
  padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
  background-color: var(--primary-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

/************************************/
/*** 	27. Image Gallery css	  ***/
/************************************/

.page-testimonials {
  padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
  background-color: var(--primary-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 40px;
}

/************************************/
/*** 	 28. Image Gallery css	  ***/
/************************************/

.page-gallery {
  padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
  cursor: none;
}

.page-gallery-box .photo-gallery figure {
  display: block;
  border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.829;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	29. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
  padding: 100px 0 70px;
}

.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}

.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}

.video-gallery-image a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 20px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
  opacity: 50%;
  visibility: visible;
  transform: scale(1);
}

.video-gallery-image a::after {
  content: "\f04b";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}

.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}

.video-gallery-image img {
  width: 100%;
  aspect-ratio: 1 / 0.829;
  object-fit: cover;
  border-radius: 20px;
}

/************************************/
/*** 	   30. FAQs Page css	  ***/
/************************************/

.page-faqs {
  padding: 100px 0;
}

.page-faqs .page-faq-accordion {
  margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child {
  margin-bottom: 0px;
}

/************************************/
/*** 	31. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
  padding: 100px 0;
}

.contact-us-content {
  margin-right: 20px;
}

.contact-info-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-item .icon-box {
  position: relative;
  background-color: var(--accent-color);
  height: 50px;
  width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  overflow: hidden;
  z-index: 1;
}

.contact-info-item .icon-box::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  background-color: var(--primary-color);
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  height: 100%;
  height: 100%;
}

.contact-info-item:hover .icon-box::before {
  transform: scale(1);
}

.contact-info-item .icon-box img {
  position: relative;
  max-width: 24px;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}

.contact-info-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.contact-item-content {
  position: relative;
  width: calc(100% - 70px);
  z-index: 1;
}

.contact-item-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.contact-item-content p {
  margin: 0;
}

.contact-item-content p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}

.contact-item-content p a:hover {
  color: var(--accent-color);
}

.contact-social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--divider-color);
  margin-top: 30px;
  padding-top: 30px;
}

.contact-social-links h3 {
  font-size: 20px;
}

.contact-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-social-links ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}

.contact-social-links ul li:last-child {
  margin-right: 0;
}

.contact-social-links ul li a {
  background: var(--primary-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}

.contact-social-links ul li:hover a {
  background-color: var(--accent-color);
}

.contact-social-links ul li a i {
  color: var(--white-color);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}

.contact-social-links ul li:hover a i {
  color: var(--primary-color);
}

.contact-us-form {
  position: relative;
  border-radius: 20px;
  padding: 40px;
}

.contact-form .form-control {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.445em;
  color: var(--white-color);
  background-color: var(--dark-divider-color);
  border: none;
  border-radius: 20px;
  padding: 17px 20px;
  box-shadow: none;
  outline: none;
}

.contact-form .form-control::placeholder {
  color: var(--white-color);
}

.contact-form .btn-default {
  width: 100%;
  padding: 17px;
}

.contact-form .btn-default::before {
  display: none;
}

.google-map-iframe {
  height: 700px;
  border-radius: 20px;
  margin-top: 100px;
  overflow: hidden;
}

.google-map-iframe iframe {
  width: 100%;
  height: 700px;
  filter: grayscale(1);
  transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover {
  filter: grayscale(0);
}

/************************************/
/*** 	32. 404 Error Page css	  ***/
/************************************/

.error-page {
  padding: 100px 0;
}

.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}

.error-page-image img {
  width: 100%;
  max-width: 45%;
}

.error-page-content {
  text-align: center;
}

.error-page-content .section-title {
  margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1820px) {
  .bg-section {
    width: calc(100% - 30px);
    margin: 0 15px;
  }

  .hero,
  .page-header {
    margin: 15px 15px 0;
  }

  .main-footer {
    margin-bottom: 20px;
  }

  .our-approach {
    margin-bottom: 190px;
  }
}

@media only screen and (max-width: 1366px) {
  .what-we-do-content {
    padding: 100px 80px 100px 25px;
  }

  .what-we-do-image .about-us-circle a img {
    max-width: 100px;
  }
}

@media only screen and (max-width: 1024px) {
  .main-menu ul li {
    margin: 0;
  }

  .what-we-do-content {
    padding: 100px 80px 100px 15px;
  }
}

@media only screen and (max-width: 991px) {
  body {
    font-size: 16px;
  }

  .btn-default {
    font-size: 16px;
    padding: 14px 50px 14px 15px;
  }

  .btn-default::before {
    width: 35px;
    height: 35px;
  }

  .navbar {
    padding: 20px 0;
  }

  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }

  .responsive-menu,
  .navbar-toggle {
    display: block;
  }

  .header-btn {
    display: none;
  }

  .bg-section {
    width: 100%;
    margin: 0px;
    border-radius: 0;
  }

  .section-row {
    margin-bottom: 40px;
  }

  .section-title.section-title-center {
    max-width: 100%;
  }

  .section-content-btn .section-btn {
    margin-top: 20px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h3 {
    padding-left: 25px;
  }

  .section-title h3::before {
    width: 18px;
    height: 18px;
  }

  .section-title h1 {
    font-size: 50px;
  }

  .section-title h2 {
    font-size: 38px;
  }

  .section-title p {
    margin-top: 10px;
  }

  .section-title-content {
    margin-top: 10px;
  }

  .section-btn {
    text-align: left;
    margin-top: 15px;
  }

  .hero {
    padding: 140px 0 50px;
  }

  .hero-content {
    margin-bottom: 30px;
  }

  .hero-content-footer {
    margin-top: 30px;
  }

  .hero-image {
    max-width: 65%;
    margin: 0 auto;
  }

  .hero-image img {
    margin-bottom: -50px;
  }

  .hero-experience-box {
    max-width: 180px;
  }

  .hero-experience-box h2 {
    font-size: 34px;
  }

  .about-us {
    padding: 50px 0;
  }

  .about-us-images {
    max-width: 75%;
    margin: 0 auto;
    margin-bottom: 30px;
  }

  .about-us-circle {
    left: 105px;
  }

  .about-us-circle img {
    max-width: 140px;
  }

  .about-us-footer {
    margin-top: 30px;
  }

  .our-services {
    padding: 50px 0;
  }

  .service-image img {
    aspect-ratio: 1 / 0.98;
  }

  .service-body {
    left: 20px;
    bottom: 20px;
    right: 20px;
  }

  .section-footer-text {
    margin-top: 10px;
  }

  .section-footer-text p span {
    font-size: 14px;
    padding: 2px 8px;
    margin-right: 5px;
  }

  .why-choose-us {
    padding: 50px 0;
  }

  .why-choose-images {
    max-width: 80%;
    margin: 0 auto 30px;
  }

  .why-choose-content {
    margin-left: 0;
  }

  .why-choose-body,
  .why-choose-list {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .intro-video {
    padding: 50px 0;
  }

  .intro-video-button {
    margin-top: 40px;
  }

  .intro-video-button a img {
    max-width: 110px;
  }

  .intro-video-counter {
    gap: 30px 20px;
    margin-top: 40px;
    padding: 30px 0px 0;
  }

  .intro-counter-item {
    width: calc(25% - 15px);
  }

  .intro-counter-item h2 {
    font-size: 36px;
  }

  .intro-counter-item p {
    font-size: 14px;
  }

  .our-environment {
    padding: 50px 0;
  }

  .our-environment-images {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .environment-img-1 figure img {
    width: 100%;
    aspect-ratio: 1 / 1.02;
    border-radius: 20px;
  }

  .environment-img-2 figure img {
    aspect-ratio: 1 / 1.09;
  }

  .environment-body-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }

  .what-we-do-content {
    padding: 50px 15px 70px;
    height: auto;
  }

  .what-we-do-item {
    padding: 20px;
  }

  .what-we-do-item .icon-box {
    margin-bottom: 20px;
  }

  .what-we-do-content .section-footer-text {
    margin-top: 30px;
  }

  .what-we-do-image,
  .what-we-do-image figure,
  .what-we-do-image figure img {
    height: auto;
  }

  .what-we-do-image figure img {
    aspect-ratio: 1 / 0.77;
  }

  .what-we-do-image .about-us-circle {
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
  }

  .our-expertise {
    padding: 50px 0;
  }

  .expertise-content {
    margin-bottom: 30px;
  }

  .expertise-content .section-title {
    padding-bottom: 30px;
  }

  .expertise-list-box {
    margin-bottom: 20px;
  }

  .expertise-list-box h3 {
    margin-bottom: 10px;
  }

  .expertise-image {
    max-width: 80%;
    margin: 0 auto;
  }

  .our-testimonials {
    padding: 50px 0;
  }

  .testimonials-content {
    margin: 0 0 30px;
  }

  .testimonials-counter-box h2 {
    width: 100px;
    font-size: 38px;
  }

  .testimonials-counter-box p {
    width: calc(100% - 115px);
  }

  .testimonial-slider {
    padding: 30px;
  }

  .testimonial-header {
    margin-bottom: 20px;
  }

  .testimonial-content {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .company-supports-slider {
    padding-top: 30px;
    margin-top: 30px;
  }

  .our-facts {
    padding: 50px 0;
  }

  .our-fact-image {
    margin-bottom: 30px;
  }

  .fact-image img {
    aspect-ratio: 1 / 0.5;
    object-position: top center;
  }

  .company-rating {
    max-width: 165px;
    bottom: 20px;
    left: 20px;
  }

  .fact-content-list {
    padding: 20px;
  }

  .fact-content-list ul li {
    margin-bottom: 10px;
  }

  .fact-circle-image img {
    max-width: 95px;
  }

  .fact-counter-list {
    gap: 30px;
    padding-top: 30px;
    margin-top: 30px;
  }

  .fact-counter-item {
    width: calc(25% - 22.5px);
  }

  .fact-counter-item::before {
    right: -15px;
  }

  .fact-counter-item h3 {
    font-size: 32px;
  }

  .our-faqs {
    padding: 50px 0;
  }

  .our-faqs-image {
    margin-bottom: 30px;
  }

  .our-faqs-img img {
    aspect-ratio: 1 / 0.8;
  }

  .faq-accordion .accordion-item {
    margin-bottom: 20px;
  }

  .faq-accordion .accordion-header .accordion-button {
    padding: 14px 40px 14px 15px;
  }

  .faq-accordion .accordion-item .accordion-body {
    padding: 15px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    right: 15px;
    font-size: 18px;
  }

  .our-blog {
    padding: 50px 0 20px;
  }

  .post-item-content {
    margin-bottom: 15px;
  }

  .main-footer {
    padding: 50px 0 0;
    margin-bottom: 0;
  }

  .about-footer {
    margin: 0 0 30px;
  }

  .footer-logo {
    margin-bottom: 30px;
  }

  .footer-links h3 {
    margin-bottom: 15px;
  }

  .footer-links ul li {
    margin-bottom: 10px;
  }

  .footer-contact-item {
    margin-bottom: 15px;
  }

  .footer-social-link {
    margin-top: 40px;
  }

  .footer-copyright {
    padding: 30px 0;
  }

  .page-header {
    padding: 170px 0 80px;
  }

  .page-header-box h1 {
    font-size: 50px;
  }

  .our-approach {
    padding: 50px 0 0;
    margin-bottom: 190px;
  }

  .our-approach::before {
    border-radius: 0;
  }

  .approach-item {
    width: calc(50% - 15px);
    border-radius: 20px;
    padding: 30px;
  }

  .approach-item .icon-box {
    margin-bottom: 30px;
  }

  .approach-list {
    margin-top: 20px;
    padding-top: 20px;
  }

  .approach-list ul li {
    padding-left: 25px;
    margin-bottom: 10px;
  }

  .our-health {
    padding: 50px 0;
  }

  .our-health-content {
    margin: 0 0 30px;
  }

  .health-item .icon-box {
    height: 50px;
    width: 50px;
    margin-right: 10px;
  }

  .health-item .icon-box img {
    max-width: 26px;
  }

  .health-item-content {
    width: calc(100% - 60px);
  }

  .health-item-content h3 {
    margin-bottom: 5px;
  }

  .our-health-image {
    max-width: 75%;
    margin: 0 auto;
  }

  .our-health-image .about-us-circle a img {
    max-width: 120px;
  }

  .our-team {
    padding: 50px 0 20px;
  }

  .team-image img {
    aspect-ratio: 1 / 1.1;
  }

  .team-body {
    padding: 10px;
  }

  .page-services {
    padding: 50px 0 20px;
  }

  .page-service-single {
    padding: 50px 0;
  }

  .page-single-sidebar {
    position: initial;
    margin: 0 0 30px;
  }

  .page-category-list {
    margin-bottom: 30px;
  }

  .page-category-list h3 {
    padding: 20px;
  }

  .page-category-list ul {
    padding: 30px;
  }

  .page-category-list ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .page-category-list ul li a {
    padding-right: 25px;
  }

  .page-category-list ul li a::before {
    width: 20px;
    height: 20px;
  }

  .sidebar-cta-box {
    padding: 30px;
  }

  .sidebar-cta-logo {
    margin-bottom: 15px;
  }

  .cta-contact-item {
    padding: 15px 20px;
    margin-bottom: 20px;
  }

  .cta-contact-item-content h3 {
    font-size: 22px;
  }

  .sidebar-cta-image img {
    aspect-ratio: 1 / 0.35;
  }

  .page-single-image {
    margin-bottom: 30px;
  }

  .service-entry {
    margin-bottom: 40px;
  }

  .service-entry p {
    margin-bottom: 15px;
  }

  .service-entry h2 {
    font-size: 38px;
    margin-bottom: 15px;
  }

  .service-entry ul {
    gap: 10px 20px;
  }

  .service-entry ul li {
    padding-left: 25px;
  }

  .service-deliver-box,
  .service-quality-box,
  .service-caring-box {
    margin-top: 40px;
  }

  .service-deliver-image-content {
    margin-top: 30px;
  }

  .service-deliver-item {
    padding: 20px;
  }

  .service-quality-list,
  .page-single-image-video {
    margin-top: 30px;
  }

  .service-caring-item-list {
    gap: 20px;
    margin-top: 30px;
  }

  .service-caring-item {
    width: calc(50% - 10px);
  }

  .page-blog {
    padding: 50px 0;
  }

  .page-pagination {
    margin-top: 10px;
  }

  .page-single-post {
    padding: 50px 0;
  }

  .post-image {
    margin-bottom: 20px;
  }

  .post-entry h1,
  .post-entry h2,
  .post-entry h3,
  .post-entry h4,
  .post-entry h5,
  .post-entry h6 {
    margin: 0 0 0.42em;
  }

  .post-entry h2 {
    font-size: 38px;
  }

  .post-entry p {
    margin-bottom: 15px;
  }

  .post-entry ol li,
  .post-entry ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .post-entry blockquote {
    background-position: 20px 20px;
    background-size: 40px;
    padding: 20px 20px 20px 70px;
    margin-bottom: 20px;
  }

  .post-entry blockquote p {
    font-size: 18px;
  }

  .post-tags {
    margin-bottom: 20px;
  }

  .tag-links {
    gap: 10px;
  }

  .post-tags .tag-links a {
    padding: 10px 15px;
  }

  .post-social-sharing ul {
    text-align: left;
  }

  .page-product {
    padding: 50px 0;
  }

  .product-item {
    width: calc(50% - 15px);
    padding: 20px;
  }

  .product-image img {
    width: 200px;
    height: 200px;
  }

  .page-product .page-pagination {
    margin-top: 40px;
  }

  .page-product-single {
    padding: 50px 0;
  }

  .product-single-content,
  .team-member-image {
    width: 100%;
  }

  .team-member-image {
    padding: 30px;
  }

  .customer-rating-box {
    margin-bottom: 20px;
  }

  .product-single-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .product-single-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .product-single-content p {
    margin-bottom: 15px;
  }

  .product-single-content ul li {
    margin-bottom: 10px;
  }

  .product-cart-btn {
    margin-top: 20px;
  }

  .product-cart-btn .btn-default {
    padding: 15px;
  }

  .product-single-info {
    margin-top: 50px;
  }

  .product-step-nav {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .product-step-nav ul li .nav-link {
    font-size: 16px;
  }

  .product-step-nav ul li .nav-link::before {
    bottom: -21px;
  }

  .product-tab-item-box h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .product-tab-item-box p {
    margin: 15px 0 0 0;
  }

  .product-tab-item-box ul li {
    margin-top: 10px;
  }

  .review-form,
  .customer-review-list {
    width: 100%;
  }

  .customer-review-item {
    margin-bottom: 30px;
  }

  .customer-review-item-content p {
    margin: 0 0 5px 0;
  }

  .review-form .form-control {
    font-size: 16px;
    padding: 12px 15px;
  }

  .related-products-box {
    margin-top: 50px;
  }

  .related-products-box .section-title {
    margin: 0 auto 30px;
  }

  .page-team {
    padding: 50px 0 20px;
  }

  .page-team-single {
    padding: 50px 0;
  }

  .team-single-image {
    margin-bottom: 30px;
  }

  .team-single-image img {
    aspect-ratio: 1 / 0.8;
  }

  .team-sidebar-category-box {
    padding: 30px;
  }

  .team-sidebar-category-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }

  .team-sidebar-category-item ul li {
    margin-right: 10px;
  }

  .team-member-about,
  .team-member-service,
  .team-skills-box {
    margin-bottom: 40px;
  }

  .member-service-list,
  .member-service-counters {
    margin-top: 30px;
  }

  .member-service-list ul li {
    margin-bottom: 10px;
  }

  .member-service-counter-item {
    padding: 30px 25px;
  }

  .member-service-counter-item h2 {
    font-size: 38px;
  }

  .team-skills-list {
    gap: 30px;
    margin-top: 30px;
  }

  .page-testimonials {
    padding: 50px 0 20px;
  }

  .page-testimonials .testimonial-item {
    padding: 20px;
  }

  .page-gallery {
    padding: 50px 0 20px;
  }

  .page-video-gallery {
    padding: 50px 0 20px;
  }

  .page-faqs {
    padding: 50px 0;
  }

  .page-faqs .page-faq-accordion {
    margin-bottom: 40px;
  }

  .page-contact-us {
    padding: 50px 0;
  }

  .contact-us-content {
    margin: 0 0 30px;
  }

  .contact-info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .contact-social-links {
    margin-top: 20px;
    padding-top: 20px;
  }

  .contact-us-form {
    padding: 30px;
  }

  .contact-form .form-control {
    border-radius: 14px;
    padding: 13px 15px;
  }

  .contact-form .btn-default {
    padding: 14px;
  }

  .google-map-iframe {
    height: 450px;
    margin-top: 50px;
  }

  .google-map-iframe iframe {
    height: 450px;
  }

  .error-page {
    padding: 50px 0;
  }

  .error-page-image {
    margin-bottom: 20px;
  }

  .error-page-image img {
    max-width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .section-row {
    margin-bottom: 30px;
  }

  .section-title h1 {
    font-size: 30px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .hero-content-body {
    gap: 15px;
  }

  .contact-now-box .icon-box {
    width: 45px;
    height: 45px;
  }

  .contact-now-box .icon-box img {
    max-width: 20px;
  }

  .contact-now-box-content h3 {
    font-size: 18px;
  }

  .hero-content-footer {
    margin-top: 20px;
  }

  .hero-image {
    max-width: 100%;
  }

  .hero-experience-box {
    max-width: 160px;
  }

  .hero-experience-box h2 {
    font-size: 28px;
  }

  .hero-experience-box p {
    font-size: 14px;
  }

  .about-us-images {
    max-width: 92%;
  }

  .about-us-img-2 {
    margin-top: 90px;
    margin-left: -65px;
  }

  .about-us-circle {
    bottom: 20px;
    left: 55px;
  }

  .about-us-circle img {
    max-width: 90px;
  }

  .about-us-body {
    gap: 20px;
  }

  .about-us-body-item {
    width: 100%;
  }

  .about-us-footer {
    gap: 15px;
  }

  .about-contact-box .icon-box {
    width: 45px;
    height: 45px;
  }

  .about-contact-box .icon-box img {
    max-width: 20px;
  }

  .about-contact-box-content p {
    margin-bottom: 2px;
  }

  .about-contact-box-content h3 {
    font-size: 18px;
  }

  .service-content h3 {
    font-size: 18px;
  }

  .why-choose-images {
    max-width: 100%;
    gap: 20px;
  }

  .why-choose-image-box-1 {
    width: calc(58% - 10px);
  }

  .why-choose-image-box-2 {
    width: calc(42% - 10px);
  }

  .why-choose-img-3 {
    margin: 10px 0 0 -52px;
  }

  .why-choose-img-1 img {
    aspect-ratio: 1 / 1.43;
  }

  .why-choose-image-box-2 .about-us-circle {
    margin-bottom: 20px;
  }

  .why-choose-image-box-2 .about-us-circle a img {
    max-width: 100px;
  }

  .happy-customer-box {
    max-width: 150px;
    margin-top: 30px;
  }

  .happy-customer-box .trusted-client-review p {
    font-size: 14px;
  }

  .why-choose-body,
  .why-choose-list {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .why-choose-list ul {
    gap: 10px;
  }

  .why-choose-list ul li {
    width: 100%;
  }

  .why-choose-footer,
  .why-choose-body {
    gap: 20px;
  }

  .why-choose-item {
    width: 100%;
  }

  .why-choose-item .icon-box {
    margin-right: 10px;
  }

  .agency-item-content {
    width: calc(100% - 50px);
  }

  .agency-item-content h3 {
    font-size: 18px;
  }

  .intro-video-button a img {
    max-width: 90px;
  }

  .intro-video-counter {
    gap: 30px 15px;
    margin-top: 30px;
    padding: 30px 0px 0;
  }

  .intro-counter-item {
    width: calc(50% - 7.5px);
  }

  .intro-counter-item h2 {
    font-size: 26px;
    margin-bottom: 5px;
  }

  .environment-img-2 {
    max-width: 180px;
    margin-left: -80px;
  }

  .environment-img-1 figure img {
    aspect-ratio: 1 / 1.3;
  }

  .environment-img-2 .about-us-circle {
    margin-top: -50px;
  }

  .environment-body-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .environment-body-item .icon-box {
    margin-right: 10px;
  }

  .environment-body-item-content {
    width: calc(100% - 60px);
  }

  .environment-body-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .what-we-do-list {
    gap: 20px;
  }

  .what-we-do-item {
    width: 100%;
  }

  .what-we-do-item .icon-box img {
    max-width: 44px;
  }

  .what-we-do-item:nth-child(4n - 3),
  .what-we-do-item:nth-child(4n) {
    background: transparent;
  }

  .what-we-do-item:nth-child(even) {
    background: var(--dark-divider-color);
  }

  .expertise-list-box h3 {
    font-size: 18px;
    padding-left: 25px;
  }

  .expertise-list-box h3::before {
    font-size: 16px;
  }

  .expertise-image {
    max-width: 100%;
    background-size: 75% auto;
    gap: 20px;
  }

  .expertise-img-1,
  .expertise-img-2 {
    width: calc(50% - 10px);
  }

  .expertise-img-2 {
    padding-top: 100px;
  }

  .expert-doctor {
    max-width: 180px;
    padding: 10px;
    border-radius: 12px;
  }

  .expert-doctor .icon-box {
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }

  .expert-doctor .icon-box img {
    max-width: 22px;
  }

  .expert-doctor-content {
    width: calc(100% - 55px);
  }

  .expert-doctor-content h3 {
    font-size: 18px;
    margin-bottom: 0px;
  }

  .expert-doctor-content p {
    font-size: 14px;
  }

  .testimonials-counter-box {
    max-width: 100%;
  }

  .testimonials-counter-box h2 {
    width: 70px;
    font-size: 26px;
  }

  .testimonials-counter-box p {
    width: calc(100% - 85px);
  }

  .testimonial-slider {
    padding: 20px;
  }

  .author-content h3 {
    font-size: 18px;
  }

  .testimonial-btn {
    position: initial;
    justify-content: center;
    margin-top: 20px;
  }

  .testimonial-slider .testimonial-button-next {
    margin-left: 10px;
  }

  .fact-image img {
    aspect-ratio: 1 / 0.9;
    object-position: center;
    border-radius: 20px;
  }

  .fact-content-body,
  .fact-content-image,
  .fact-content-list {
    width: 100%;
  }

  .fact-info-box .about-us-circle {
    margin: 20px auto -95px;
  }

  .fact-content-image img {
    aspect-ratio: 1 / 0.9;
  }

  .fact-counter-item {
    width: calc(50% - 15px);
  }

  .fact-counter-item:nth-of-type(2n + 2):before {
    display: none;
  }

  .fact-counter-item h3 {
    font-size: 26px;
  }

  .our-faqs-image {
    padding-right: 30px;
  }

  .our-faqs-img img {
    aspect-ratio: 1 / 0.98;
  }

  .client-review-box {
    bottom: 15px;
    padding: 10px;
  }

  .client-review-box-content {
    margin-bottom: 10px;
  }

  .faq-accordion .accordion-header .accordion-button {
    padding: 12px 40px 12px 15px;
    font-size: 18px;
  }

  .faq-accordion .accordion-item .accordion-button::after,
  .faq-accordion .accordion-item .accordion-button.collapsed::after {
    font-size: 16px;
  }

  .faq-accordion .accordion-item .accordion-body p {
    font-size: 14px;
  }

  .post-item-content h2 {
    font-size: 18px;
  }

  .footer-logo {
    margin-bottom: 15px;
  }

  .footer-links {
    margin-bottom: 30px;
  }

  .footer-links h3 {
    font-size: 18px;
  }

  .footer-links ul li {
    margin-bottom: 6px;
  }

  .footer-social-link {
    margin-top: 0px;
  }

  .footer-social-link ul {
    margin: 0 10px;
  }

  .footer-social-link ul li {
    margin-right: 15px;
  }

  .footer-social-link ul li a {
    width: 35px;
    height: 35px;
  }

  .footer-social-link ul li a i {
    font-size: 18px;
  }

  .footer-copyright {
    padding: 15px 0;
  }

  .footer-copyright-text {
    text-align: center;
    margin-bottom: 5px;
  }

  .footer-terms-condition ul {
    justify-content: center;
  }

  .page-header-box h1 {
    font-size: 30px;
  }

  .page-header-box ol li.breadcrumb-item {
    font-size: 16px;
  }

  .approach-item {
    width: 100%;
    padding: 20px;
  }

  .approach-item .icon-box {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
  }

  .approach-item .icon-box img {
    max-width: 26px;
  }

  .what-we-do-list {
    margin-bottom: 30px;
  }

  .what-we-do-list-content h3 {
    font-size: 18px;
  }

  .our-health-image {
    max-width: 100%;
    padding-left: 40px;
  }

  .our-health-img-1 figure,
  .our-health-img-1 img,
  .our-health-img-2 figure,
  .our-health-img-2 img,
  .our-health-img-3 figure,
  .our-health-img-3 img {
    border-radius: 14px;
  }

  .our-health-image .about-us-circle a img {
    max-width: 90px;
  }

  .team-content h3 {
    font-size: 18px;
  }

  .page-category-list h3 {
    font-size: 18px;
    padding: 15px 20px;
  }

  .page-category-list ul {
    padding: 20px;
  }

  .sidebar-cta-box {
    padding: 20px;
  }

  .cta-contact-header {
    margin-bottom: 5px;
  }

  .cta-contact-item-content h3 {
    font-size: 20px;
  }

  .sidebar-cta-image img {
    aspect-ratio: 1 / 0.5;
  }

  .page-single-image {
    margin-bottom: 20px;
  }

  .service-entry h2 {
    font-size: 26px;
  }

  .service-entry ul li {
    width: 100%;
  }

  .service-deliver-image-content {
    gap: 20px;
  }

  .service-deliver-image,
  .service-deliver-content {
    width: 100%;
  }

  .service-deliver-image figure,
  .service-deliver-image img {
    height: auto;
  }

  .service-deliver-item {
    margin-bottom: 20px;
  }

  .service-deliver-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .page-single-image-video img {
    aspect-ratio: 1 / 0.6;
  }

  .service-caring-item {
    width: 100%;
    padding: 15px;
  }

  .service-caring-item-content h3 {
    font-size: 18px;
  }

  .post-single-meta ol li {
    font-size: 16px;
  }

  .post-single-meta ol li i {
    font-size: 16px;
  }

  .post-image img {
    aspect-ratio: 1 / 0.7;
  }

  .post-entry blockquote {
    background-position: 15px 15px;
    padding: 60px 15px 15px 15px;
  }

  .post-entry blockquote p {
    font-size: 16px;
  }

  .post-entry h2 {
    font-size: 26px;
  }

  .tag-links {
    font-size: 18px;
  }

  .product-item {
    width: 100%;
  }

  .product-image img {
    width: 180px;
    height: 180px;
  }

  .product-item-content h3,
  .product-item-content h2 {
    font-size: 18px;
  }

  .customer-rating-box i {
    font-size: 16px;
  }

  .product-single-content h3 {
    font-size: 24px;
  }

  .product-single-content h3 span {
    font-size: 18px;
  }

  .product-single-content h2 {
    font-size: 26px;
  }

  .product-step-nav .nav-tabs {
    gap: 20px;
  }

  .product-tab-item-box h2 {
    font-size: 26px;
  }

  .customer-review-item .icon-box {
    margin-right: 10px;
  }

  .customer-review-item .icon-box img {
    max-width: 50px;
  }

  .customer-review-item-body {
    width: calc(100% - 60px);
  }

  .team-single-image img {
    aspect-ratio: 1 / 1.05;
  }

  .team-sidebar-category-box {
    padding: 20px;
  }

  .team-sidebar-category-item h3 {
    font-size: 18px;
  }

  .member-service-counters {
    gap: 20px;
  }

  .member-service-counter-item {
    width: calc(50% - 10px);
    padding: 15px;
  }

  .member-service-counter-item h2 {
    font-size: 26px;
  }

  .team-skills-list {
    gap: 20px;
  }

  .team-skills-list .skills-progress-bar {
    width: 100%;
  }

  .contact-info-item .icon-box {
    margin-right: 10px;
  }

  .contact-item-content {
    width: calc(100% - 60px);
  }

  .contact-item-content h3,
  .contact-social-links h3 {
    font-size: 18px;
  }

  .contact-social-links {
    gap: 10px;
  }

  .contact-social-links ul li {
    margin-right: 5px;
  }

  .contact-social-links ul li a {
    width: 36px;
    height: 36px;
  }

  .contact-us-form {
    padding: 20px;
  }

  .google-map-iframe,
  .google-map-iframe iframe {
    height: 350px;
  }
}


.tf-product-info-quantity {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}
img.pic.mainPic {
    max-width: 80%;
}
.user-actions h2 {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 30px;
}


@media screen and (max-width: 780px) {
 .navbar-brand {
    text-align: center;
}
}
