/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #621278;
  --theme-color2: #ff1212;
  --title-color: #111111;
  --body-color: #788094;
  --smoke-color: #f5f7fa;
  --smoke-color2: #f5f8fd;
  --black-color: #000000;
  --gray-color: #bdbdbd;
  --white-color: #ffffff;
  --light-color: #bdbdbd;
  --yellow-color: #ffb539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --th-border-color: #d8dde1;
  /* --title-font: "Josefin Sans", sans-serif; */
  --body-font: "DM Sans", sans-serif;
  --icon-font: "Font Awesome 6 Pro";


}

* {
  font-family: "Montserrat", sans-serif;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: auto !important;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--th-border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--th-border-color);
  padding: 9px 12px;
}

a {
  color: var(--theme-color);
  text-decoration: none;
  outline: 0;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

a:hover {
  color: var(--title-color);
  text-decoration: none !important;

}

a:active,
a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0;
}

button {
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  font-family: var(--body-font);
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}



h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}



/*------------------- 2.5. Mobile Menu -------------------*/
.th-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}

.th-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  background-color: var(--smoke-color2);
  width: 200px;
}

.th-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}

.th-menu-wrapper .th-menu-toggle {
  border: none;
  font-size: 22px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 35px;
  font-size: 18px;
  z-index: 1;
  color: var(--white-color);
  background-color: #112e20;
  border-radius: 50%;
}

.th-menu-wrapper .th-menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.th-menu-wrapper .th-menu-area {
  width: 100%;
  max-width: 369px;
  background-color: #fff;
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
  z-index: 1;
}

.th-menu-wrapper.th-body-visible {
  opacity: 1;
  visibility: visible;
}

.th-menu-wrapper.th-body-visible .th-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.th-mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}

.th-mobile-menu ul {
  margin: 0;
  padding: 0 0;
}

.th-mobile-menu ul li {
  border-bottom: 1px solid #fdedf1;
  list-style-type: none;
}

.th-mobile-menu ul li li:first-child {
  border-top: 1px solid #fdedf1;
}

.th-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--title-color);
  padding-left: 18px;
}

.th-mobile-menu ul li a:before {
  content: "\f105";
  font-family: var(--icon-font);
  position: absolute;
  left: 0;
  top: 12px;
  margin-right: 10px;
  display: inline-block;
}

.th-mobile-menu ul li.th-active>a {
  color: var(--theme-color);
}

.th-mobile-menu ul li.th-active>a:before {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.th-mobile-menu ul li ul li {
  padding-left: 20px;
}

.th-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}

.th-mobile-menu ul .th-item-has-children>a .th-mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}

.th-mobile-menu ul .th-item-has-children>a .th-mean-expand:before {
  content: "\f067";
  font-family: var(--icon-font);
}

.th-mobile-menu ul .th-item-has-children>a:after {
  content: "\f067";
  font-family: var(--icon-font);
  width: 22px;
  height: 22px;
  line-height: 22px;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  border-radius: 50px;
  background-color: var(--smoke-color);
  float: right;
  margin-top: 1px;
}

.th-mobile-menu ul .th-item-has-children.th-active>a .th-mean-expand:before {
  content: "\f068";
}

.th-mobile-menu ul .th-item-has-children.th-active>a:after {
  content: "\f068";
}

.th-mobile-menu>ul {
  padding: 0 40px;
}

.th-mobile-menu>ul>li:last-child {
  border-bottom: none;
}

.th-menu-toggle {
  width: 56px;
  height: 56px;
  padding: 0;
  font-size: 20px;
  border: none;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  border-radius: 5px;
  position: relative;
  z-index: 999;
  bottom: 0px;
}

.th-menu-toggle:hover {
  background-color: var(--title-color);
}

.th-menu-toggle.style-text,
.th-menu-toggle.style-text-white {
  width: auto;
  height: auto;
  background-color: transparent;
  color: var(--title-color);
  font-size: 20px;
}

.th-menu-toggle.style-text i,
.th-menu-toggle.style-text-white i {
  margin-right: 10px;
}

.th-menu-toggle.style-text-white {
  color: var(--white-color);
}

@media (max-width: 400px) {
  .th-menu-wrapper .th-menu-area {
    width: 100%;
    max-width: 350px;
  }

  .th-mobile-menu>ul {
    padding: 0 20px;
  }
}

/*=================================
    03. Utilities
==================================*/



.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  -webkit-transition: all 300ms linear;
  transition: all 300ms linear;
}

.scroll-top:after {
  content: "\f062";
  font-family: var(--icon-font);
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border: 2px solid var(--theme-color);
  box-shadow: none;
  border-radius: 50%;
}

.scroll-top svg {
  color: var(--theme-color);
  border-radius: 50%;
  background: transparent;
}

.scroll-top svg path {
  fill: none;
}

.scroll-top .progress-circle path {
  stroke: var(--theme-color);
  stroke-width: 20px;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  transition: all 400ms linear;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.header-button .icon-btn {
  display: inline-block;
  width: var(--btn-size, 56px);
  height: var(--btn-size, 56px);
  line-height: var(--btn-size, 54px);
  font-size: var(--btn-font-size, 20px);
  background-color: var(--icon-bg, #fff);
  color: var(--title-color);
  text-align: center;
  border-radius: 0;
  border: 1px solid rgb(214, 214, 214);
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  position: relative;
}

.header-button .icon-btn:hover {
  background-color: var(--theme-color);

}

.mySwiper {
  cursor: pointer;
}

/*------------------- 3.4. Common -------------------*/
.shape-mockup-wrap {
  z-index: 2;
  position: relative;
}

.shape-mockup {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.shape-mockup.z-index-3 {
  z-index: 3;
  pointer-events: none;
}

.shape-mockup.z-index-1 {
  z-index: 1;
  pointer-events: none;
}

.shape-mockup .svg-img {
  height: 110px;
  width: 110px;
}

.z-index-step1 {
  position: relative;
  z-index: 4 !important;
}

.z-index-common {
  position: relative;
  z-index: 3;
}

.z-index-3 {
  z-index: 3;
}

.z-index-n1 {
  z-index: -1;
}

.media-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.badge {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 0.25em 0.45em;
  font-size: 0.7em;
  border-radius: 50%;
  top: 8px;
  right: 8px;
  font-weight: 400;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.th-social a {
  display: inline-block;
  width: var(--icon-size, 46px);
  height: var(--icon-size, 46px);
  line-height: var(--icon-size, 46px);
  background-color: var(--smoke-color);
  color: var(--title-color);
  font-size: 16px;
  text-align: center;
  margin-right: 5px;
  border-radius: 99px;
}

.th-social a:last-child {
  margin-right: 0;
}

.th-social a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.th-social.color-theme a {
  color: var(--body-color);
  border-color: var(--theme-color);
}

.bg-mask {
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.box-icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.box-text {
  margin-bottom: -0.5em;
}


.th-bg-img {
  position: absolute;
  inset: 0;
}

.th-bg-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.xdsoft_datetimepicker {
  background-color: var(--white-color);
  z-index: 5;
}

.mfp-zoom-in .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.7;
}

.mfp-zoom-in.mfp-removing .mfp-content {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}





/*------------------- 3.9. Overlay -------------------*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}


.about-logo {
  margin-bottom: 15px;
}

.th-widget-about {
  max-width: 315px;
}

.th-widget-about .about-logo {
  margin-bottom: 35px;
  width: 200px !important;
}

.th-widget-about .about-text {
  margin-bottom: 20px;
  margin-top: -0.5em;
}

.th-widget-about .th-social {
  margin-top: 20px;
}



.icon-group a {
  color: var(--white-color);
  font-size: 18px;
  margin-right: 17px;
}

.icon-group a:last-child {
  margin-right: 0;
}

.newsletter-form {
  position: relative;
  max-width: 465px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  /* gap: 10px; */
}

.newsletter-form .th-btn {
  min-width: 145px;
  padding: 21px 20px;
}

/* Small devices */
@media (max-width: 767px) {


  .th-widget-about .about-text {
    margin-bottom: 15px;
  }

  .social-box.mb-30 {
    margin-bottom: 25px;
  }
}

@media (max-width: 575px) {
  .header-layout1 .header-logo img {
    max-width: 162px !important;
    margin-top: 16px;
  }
}

/*------------------- 4.2. Header  -------------------*/
.th-header {
  position: relative;
  z-index: 99999;
}



.th-header .menu-area {
  position: relative;
  z-index: 2;
}

.sticky-wrapper {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}

.sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: rgb(255, 255, 255);
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.07));
  -webkit-animation: stickyAni 0.4s ease-in-out;
  animation: stickyAni 0.4s ease-in-out;
}

@-webkit-keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@keyframes stickyAni {
  0% {
    -webkit-transform: translate3d(0, -40px, 0) scaleY(0.8);
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0) scaleY(1);
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}

@media only screen and (max-width: 973px) {
  .menu-area .row>* {
    width: 20% !important;
  }
}

.main-menu a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  color: var(--title-color);
  text-transform: capitalize;
}

.main-menu a:hover {
  color: var(--theme-color);
}

.main-menu>ul>li {
  margin: 0 19px;
}

.main-menu>ul>li>a {
  /* padding: 37px 0; */
}

.main-menu>ul>li>a:hover {
  color: var(--theme-color);
}

.main-menu ul {
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 99;
}

.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}

.main-menu ul li.menu-item-has-children>a:after {
  content: "\2b";
  display: inline-block;
  position: relative;
  font-family: var(--icon-font);
  margin-left: 4px;
  font-weight: 600;
  top: 0;
  font-size: 0.9em;
  color: inherit;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}

.main-menu ul li.menu-item-has-children>a:hover:after {
  content: "\f068";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-menu ul li:last-child {
  margin-right: 0 !important;
}

.main-menu ul li:first-child {
  margin-left: 0 !important;
}

.main-menu ul li:hover>ul.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
  z-index: 9;
}

.main-menu ul.sub-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  visibility: hidden;
  min-width: 230px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 7px;
  left: -14px;
  opacity: 0;
  z-index: -1;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

.main-menu ul.sub-menu a {
  font-size: 16px;
  line-height: 30px;
}

.main-menu ul.sub-menu {
  padding: 18px 20px 18px 18px;
  left: -27px;
}

.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
}

.main-menu ul.sub-menu li.menu-item-has-children>a:after {
  content: "\2b";
  float: right;
  top: 1px;
  display: inline-block;
}

.main-menu ul.sub-menu li.menu-item-has-children>a:hover:after {
  content: "\f068";
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.main-menu ul.sub-menu li a {
  position: relative;
  padding-left: 0;
  text-transform: capitalize;
}

.main-menu ul.sub-menu li a:before {
  content: "\2b";
  display: inline-block;
  position: relative;
  font-family: var(--icon-font);
  margin-right: 7px;
  font-weight: 600;
  top: 0;
  font-size: 0.9em;
  color: inherit;
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition: 0.3s transform, 0.3s -webkit-transform;
}


.main-menu ul.sub-menu li a:hover {
  padding-left: 23px;
}

.main-menu ul.sub-menu li a:hover:before {
  visibility: visible;
  opacity: 1;
  left: 0;
}

.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 20px;
}

.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}

@media (max-width: 1500px) {
  .main-menu>ul>li {
    margin: 0 13px;
  }
}

.menu-style1>ul>li {
  margin: 0 14px;
  /* Medium Large devices */
}

@media (max-width: 1299px) {
  .menu-style1>ul>li {
    margin: 0 10px;
  }
}

.menu-style1>ul>li>a {
  padding: 17px 0;
  color: var(--white-color);
  font-weight: 500;
}

.menu-style1>ul>li>a:hover {
  color: var(--theme-color);
}



.header-button .icon-btn:hover .badge {
  background-color: var(--title-color);
}

.header-button .searchBoxToggler i {
  color: var(--theme-color2);
}

.header-button .sideMenuInfo i {
  color: var(--theme-color2);
}

.social-links .social-title {
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  margin: 0 10px 0 0;
  color: black;
}

.social-links a {
  font-size: 16px;
  display: inline-block;
  color: var(--body-color);
  margin: 0 15px 0 0;
}

.social-links a:last-child {
  margin-right: 0 !important;
}

.social-links a:hover {
  color: var(--theme-color);
}

.header-logo {
  /* padding-top: 16px; */
  /* padding-bottom: 15px; */
}

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

.header-links li {
  display: inline-block;
  position: relative;
  margin-right: 30px;
}

.header-links li:last-child {
  margin-right: 0;
}

.header-links li>i {
  margin-right: 10px;
}

.header-links li,
.header-links span,
.header-links p,
.header-links a {
  color: rgb(231, 231, 231);
}

.header-links a:hover {
  color: var(--theme-color);
}

.header-links b,
.header-links strong {
  font-weight: 500;
  margin-right: 2px;
}

.header-links .social-links a {
  font-size: 14px;
}

.header-notice {
  margin: 0;
}

.header-top {
  padding: 7px 0;
  background: linear-gradient(90deg, rgb(98, 18, 120) 0%, rgb(255, 18, 18) 100%);
  --body-color: #fff;
  position: relative;
}


.header-top a:hover {
  color: var(--theme-color);
}

.dropdown-link {
  position: relative;
}

.dropdown-link>a {
  color: var(--body-color);
}

.dropdown-link>a img {
  margin-right: 4px;
}

.dropdown-toggle::after {
  content: "\f078";
  border: none;
  font-family: var(--icon-font);
  vertical-align: middle;
  font-weight: 400;
  margin-left: 6px;
  margin-top: -1px;
}

.dropdown-menu {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: auto;
  top: calc(100% + 6px) !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
  padding: 8px 20px !important;
  text-align: center;
  border-color: var(--th-border-color);
}

.dropdown-menu li {
  padding-right: 0;
  margin-right: 0;
}

.dropdown-menu li:after {
  display: none;
}

.dropdown-menu li a {
  display: block;
}

.dropdown-menu a {
  color: var(--title-color) !important;
}

.dropdown-menu a:hover {
  color: var(--theme-color) !important;
}

.dropdown-menu:before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  background-color: var(--white-color);
  z-index: -1;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-top: 1px solid var(--th-border-color);
  border-left: 1px solid var(--th-border-color);
}

/* Header 1 -------------------------------------------------------------------------------------- */
.header-layout1 {
  position: relative;
}

.header-layout1 .sticky-wrapper {
  box-shadow: 0px 10px 20px rgba(2, 29, 53, 0.06);
}

.header-layout1 .menu-area {
  position: relative;
  z-index: 2;
}

.header-layout1 .menu-area::before {
  /* content: "";
  top: 0;
  left: 6%;
  width: 150px;
  height: 130px;
  background-image: url(../img/bg/logo_bg_1.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 2;
  clip-path: polygon(100% 0, 100% 75%, 50% 100%, 0 75%, 0 50%, 0 0); */

}


.header-layout1 .header-logo {
  position: relative;
  z-index: 99;
  right: 16px;
  bottom: 10px;
  height: 77px;
  width: 190px;
  /* padding: 20px 100px 20px 0; */
}

.header-layout1 .header-logo::before {
  content: "";
  top: 10px;
  left: -112px;
  width: 550px;
  height: 77px;
  background-image: url(../img/backgrounds/bg-why.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  /* opacity: .9; */
  z-index: -1;
  clip-path: polygon(0 0, 100% 0%, 80% 100%, 0% 100%);
}

@media (max-width: 767px) {
  .header-layout1 .header-logo::before {
    display: none;
  }

}



.header-layout1 .header-logo img {
  width: 300px;
}


.header-layout1 .th-menu-toggle {
  margin-left: auto;
}

@media (min-width: 1300px) {
  .header-layout1 {
    --main-container: 1620px;
  }
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .header-layout1 .header-button .th-btn {
    display: none;
  }

  /* .header-layout1 .header-logo {
        padding: 20px 50px 20px 0;
    } */


}

/* Medium devices */
@media (max-width: 991px) {
  .header-layout1 .header-logo {
    /* padding: 15px 50px 15px 0; */
    height: 90px;
  }
}

/* Extra small devices */
@media (max-width: 575px) {

  /* .header-layout1 .header-logo img {
    width: 250px;
  } */
  .header-layout1 .header-logo {
    height: 82px;
    padding-right: 0;
  }



  .header-layout1 .header-logo h2 {
    font-size: 36px;
  }

  .header-layout1 .header-logo img {
    max-width: 150px;
  }
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .unittest-header .main-menu a {
    font-size: 15px;
  }

  .unittest-header .main-menu>ul>li {
    margin: 0 11px;
  }
}


.info-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}



.info-card-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}

.info-card .box-icon {
  font-size: 36px;
  color: var(--theme-color2);
}

.info-card .box-title {
  margin: 0 0 -0.2em 0;
  font-size: 20px;
  font-weight: 500;
}

.info-card .box-text {
  margin: -0.3em 0 0 0;
}




/*------------------- 4.00. Popup Search  -------------------*/
.popup-search-box {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.95);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.popup-search-box button.searchClose {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 40px;
  right: 40px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--theme-color);
  background-color: transparent;
  font-size: 22px;
  border-radius: 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  color: var(--theme-color);
}

.popup-search-box button.searchClose:hover {
  color: var(--body-color);
  background-color: #fff;
  border-color: transparent;
  border-color: transparent;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.popup-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  -webkit-transform: translate(-50%, -50%) scale(0);
  -ms-transform: translate(-50%, -50%) scale(0);
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: -webkit-transform ease 0.4s;
  transition: -webkit-transform ease 0.4s;
  transition: transform ease 0.4s;
  transition: transform ease 0.4s, -webkit-transform ease 0.4s;
  /* Large devices */
}

@media (max-width: 1199px) {
  .popup-search-box form {
    max-width: 600px;
  }
}

.popup-search-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: 2px solid var(--theme-color);
  background-color: transparent;
  padding-left: 30px;
  color: #fff;
  border-radius: 50px;
}

.popup-search-box form input::-moz-placeholder {
  color: #fff;
}

.popup-search-box form input::-webkit-input-placeholder {
  color: #fff;
}

.popup-search-box form input:-ms-input-placeholder {
  color: #fff;
}

.popup-search-box form input::-ms-input-placeholder {
  color: #fff;
}

.popup-search-box form input::placeholder {
  color: #fff;
}

.popup-search-box form button {
  position: absolute;
  top: 0px;
  background-color: transparent;
  border: none;
  color: #fff;
  font-size: 24px;
  right: 12px;
  color: var(--white-color);
  cursor: pointer;
  width: 70px;
  height: 70px;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  -webkit-transform: scale(1.001);
  -ms-transform: scale(1.001);
  transform: scale(1.001);
}

.popup-search-box form button:hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.popup-search-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
  border-radius: 0;
}

.popup-search-box.show form {
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
  -webkit-transform: translate(-50%, -50%) scale(1);
  -ms-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

/*------------------- 4.00. Popup Side Menu  -------------------*/
.sidemenu-wrapper {
  position: fixed;
  z-index: 999999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper .th-social a {
  box-shadow: none;
}

.sidemenu-wrapper .newsletter-widget .btn-group {
  margin-top: 15px;
}

.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 2px solid;
  width: 50px;
  height: 50px;
  line-height: 48px;
  font-size: 24px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white-color);
  border-radius: 50%;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: all ease 0.4s;
  transition: all ease 0.4s;
}

.sidemenu-wrapper .closeButton:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sidemenu-wrapper .sidemenu-content {
  background-color: var(--white-color);
  width: 450px;
  max-width: calc(100% - 15px);
  margin-left: auto;
  padding: 80px 30px;
  height: 100%;
  overflow: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  -webkit-transition-delay: 1s;
  transition-delay: 1s;
  -webkit-transition: right ease 1s;
  transition: right ease 1s;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .sidemenu-wrapper .sidemenu-content {
    max-width: 100%;
  }
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #f5f5f5;
}

.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 2px;
  background-color: #f5f5f5;
}

.sidemenu-wrapper .sidemenu-content select,
.sidemenu-wrapper .sidemenu-content input,
.sidemenu-wrapper .sidemenu-content .form-select,
.sidemenu-wrapper .sidemenu-content .form-control,
.sidemenu-wrapper .sidemenu-content textarea {
  background-color: var(--smoke-color2);
  border-radius: 27px;
}

.sidemenu-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
}

.sidemenu-wrapper .info-box_icon {
  background-color: rgba(255, 156, 0, 0.15);
}

.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  -webkit-transition: all ease 0.8s;
  transition: all ease 0.8s;
}

.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}



.logo-bg {
  background-color: red;
}

.header-layout1 .header-logo .logo-bg {
  position: absolute;
  top: 0;
  right: -26px;
  height: 100%;
  width: 200px;
  background-image: url(../img/bg/logo_bg_1.png);
  background-size: auto;
  background-repeat: repeat;
  background-position: center right;
  z-index: -1;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 42px) 100%, 0% 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 42px) 100%, 0% 100%);
}


/* over navbar ///////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////////////////////////////////////////////// */

/* common  */

.section-padding {
  padding: 70px 0;
  overflow-x: hidden;
  overflow-y: hidden;
}

.section-min-padding {
  padding: 40px 0;
}

@media only screen and (max-width:375px) {
  .section-padding {
    padding: 40px 0;
  }
}

@media only screen and (max-width:768px) {
  .mob-center {
    text-align: center;
  }
}

@media only screen and (max-width:1190px) {
  .mobile-margin {
    margin-bottom: 25px;
  }
}

.color-black {
  color: black;
}




.title {

  width: 100%;
}

.title h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--theme-color);
  margin-bottom: 10px;
}

.title h6 {
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-color2);
  margin-bottom: 10px;
  position: relative;
}

.title h6::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 5px;
  background: linear-gradient(to right, var(--theme-color2), transparent);
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (max-width: 575px) {
  .title h2 {
    font-size: 28px;
  }

}

p {
  font-size: 16px;
  margin: 0 0 15px 0;
  color: rgb(41, 41, 41);

}

/*------------------- 3.2. Buttons -------------------*/
.th-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: uppercase;
  text-align: center;
  color: var(--title-color);
  background: -webkit-linear-gradient(top,
      var(--theme-color) 37.5%,
      #ddfff1 100%);
  background: linear-gradient(180deg, var(--theme-color) 37.5%, #ddfff1 100%);
  box-shadow: 0px 3px 15px rgba(174, 211, 195, 0.7);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  padding: 21px 30px;
  min-width: 170px;
  border-radius: 30px;
}

.th-btn:before {
  content: "";
  position: absolute;
  height: 56%;
  top: 1px;
  left: 10px;
  width: calc(100% - 20px);
  background: -webkit-linear-gradient(top,
      #a9ffda 0%,
      rgba(169, 255, 218, 0) 78.65%);
  background: linear-gradient(180deg,
      #a9ffda 0%,
      rgba(169, 255, 218, 0) 78.65%);
  -webkit-filter: blur(2px);
  filter: blur(2px);
  z-index: -1;
  -webkit-transition: all 0.4s ease-out;
  transition: all 0.4s ease-out;
  border-radius: inherit;
}

.th-btn i {
  font-size: 0.95em;
}

.th-btn:hover {
  -webkit-transform: translateY(-3px);
  -ms-transform: translateY(-3px);
  transform: translateY(-3px);
}




/* about section  */
.about {
  background-image: url(../img/backgrounds/pattern_bg_4.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about .about-image {
  border-radius: 50%;
}

/* service  */
.another-service-page {
  padding-bottom: 70px !important;

}

.service {
  background-color: #F5F9FC;
  padding-bottom: 200px;
}

.service .card {
  background-color: white;
  border-radius: 20px;
  padding: 20px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  position: relative;
}

.service .card:hover {
  border: 1px solid rgba(70, 0, 128, 0.322);
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
}

.service .card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 20px;
  border-bottom: 2px solid var(--theme-color);
  transition: all 0.3s ease-in-out;
}

.service .card:hover::after {
  width: 100%;
}

.service .card .image {
  overflow: hidden;
  border-radius: 14px;
}

.service .card .image img {
  border-radius: 14px;
  transition: transform 0.4s ease-in-out;
  /* Add transition here */
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.service .card:hover img {
  transform: scale(1.2);
}


.service .card h4 {
  font-size: 19px;
  font-weight: 600;
  color: var(--theme-color);
  margin: 20px 0 10px;
}

.short-text {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* Show only 3 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service .card .service-btn {
  color: red;
  position: relative;
  z-index: 2;

}

/* why  */
.why-choose-us-section {
  position: relative;


}

.why-choose-us-section .title {
  text-align: center;
}

.why-choose-us-section .background-why {
  background-image: url(../img/backgrounds/bg-why.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  margin-top: -100px;
  border-radius: 30px;
}

.why-choose-us-section .background-why::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(37, 37, 37, 0.103); */
  background: linear-gradient(150deg, rgba(77, 20, 151, 0.247) 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: inherit;
}

.why-choose {
  overflow-x: hidden;
  overflow-y: hidden;
  /* background-color: #a8187328; */
  background: linear-gradient(to top, #a8187328 50%, rgba(255, 255, 255, 0)) !important;

}

.why-choose .title h6::after {
  display: none;
}

.why-choose .why-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

}

.why-choose .why-content i {
  font-size: 30px;
  padding: 20px;
  border: 1px solid var(--theme-color);
  border-radius: 50%;
  color: var(--theme-color);
  transition: all 0.3s ease-in-out;
}

.why-choose .why-content i:hover {
  transform: rotateY(180deg);

}

.why-choose .why-content h5 {
  font-weight: 600;
  color: var(--theme-color);

}

.why-choose .why-content p {
  margin-bottom: 0;
}

.direct-call-section {
  background-image: url(../img/backgrounds/direct-call-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0px 4px 15px rgba(173, 173, 173, 0.192);
}

.direct-call-section h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--theme-color);
}

.direct-call-content p {
  margin-bottom: 0;
}

.direct-call-content {
  position: relative;
}

.direct-call-content::before {
  content: "";
  width: 6px;
  height: 100%;
  border-radius: 3px;
  background-color: var(--theme-color);
  position: absolute;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* Custom CSS for counter section */
.counter-section {
  background-color: #ff3333;
}

.counter-box {
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.counter-number {
  font-size: 96px;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
  line-height: 1em;
  opacity: 0.15;
}

.counter-text {
  font-size: 1.4rem;
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 0;
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

@media (max-width: 767.98px) {
  .counter-number {
    font-size: 2.8rem;
  }

  .counter-text {
    font-size: 1rem;
  }

  .counter-box {
    margin-bottom: 25px;
  }
}

/* schedule  */
.table-container {
  width: 100%;
  max-width: 1200px;
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.table-wrapper {
  overflow-x: auto;
  /* Allows horizontal scrolling on small screens */
}

/* Table and cell styling */
.vaccine-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
  /* Ensures the table doesn't get too narrow */
}

.vaccine-table th,
.vaccine-table td {
  border: 1px solid #e5e7eb;
  /* Light gray border */
  padding: 0.75rem;
  text-align: center;
  vertical-align: middle;
  font-size: 0.875rem;
  line-height: 1.25;
  white-space: nowrap;
  /* Prevents text from wrapping */
}

.vaccine-table thead th {
  font-weight: 700;
  background-color: #f9fafb;
  color: #1f2937;
}

.vaccine-table tbody th {
  text-align: left;
  font-weight: 500;
  background-color: #ffffff;
  color: #1f2937;
}

/* Specific color styles for cells based on the image */
.red-header {
  background-color: #ef4444;
  color: white;
}

.green-cell {
  background-color: #22c55e;
  color: #1f2937;
}

.yellow-cell {
  background-color: #eab308;
  color: #1f2937;
}

.blue-cell {
  background-color: #3b82f6;
  color: white;
}

.no-bg {
  background-color: transparent;
}

h1 {
  text-align: center;
  padding: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
}

.footer {
  background-color: #00001b;
  padding: 70px 0 0 0;
}

.footer .footer-top-content {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 20px;
}

.footer .newspaper-icon {
  width: 60px;
}

.footer .footer-top-content h2 {
  font-size: 26px;
  color: white;
}

.footer .footer-top-input input {
  width: 100%;
  padding: 25px 230px 25px 30px;
  border-radius: 35px;
  border: none;
  background-color: #ffffff;
  color: #00001b;
  font-size: 16px;
}

.footer .footer-top-input .th-btn {
  position: absolute;
  top: 9px;
  right: 20px;
}

@media screen and (max-width: 528px) {
  .footer .footer-top-input input {
    width: 100%;
    padding: 25px;

  }

  .footer .footer-top-input .th-btn {
    position: relative;
    left: 50%;
    top: 100%;
    transform: translate(-50%, 16%);
  }

}

.footer .single-footer-wized-one .title {
  font-size: 25px;
  color: white;
  margin-bottom: 25px;
  text-transform: capitalize;
}


.single-footer-wized-one .title {
  font-size: 18px;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 15px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 5px;
}

/* .single-footer-wized-one .title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: #007bff;
} */

.single-footer-wized-one .footer-image img {
  max-width: 150px;
  /* Adjust logo size */
  height: auto;
  margin-top: 10px;
}

.single-footer-wized-one p {
  color: #cacaca;
}

.single-footer-wized-one ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-footer-wized-one ul li {
  margin-bottom: 10px;
}

.single-footer-wized-one ul li a,
.footer-info p {
  color: #cacaca;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  /* Animation for links */
  display: inline-block;
  /* Essential for transform on inline elements */
}

.single-footer-wized-one ul li a:hover,
.footer-info p:hover {
  color: #ff002b;
  /* Change color on hover */
  transform: translateX(5px);
  /* Slide effect on hover */
}

.footer-info {
  color: #555;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  /* Align text to the top with icon */
  gap: 10px;
  margin-bottom: 15px;
}

.footer-info img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  /* Prevent icon from shrinking */
  margin-top: 2px;
  /* Adjust if needed for better alignment */
}

.footer-image {
  padding: 0px 16px;
  background: #fff;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 10px;
}



.footer-info p {
  margin: 0;
  line-height: 1.5;
}

/* Copyright Area */
.copyright-area-four {
  border-top: 1px solid #eeeeee6c !important;
  padding-top: 20px !important;
  text-align: center;
}

.copyright-area-four p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

.copyright-area-four a {
  color: #eeeeee !important;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.copyright-area-four a:hover {
  color: #b30000;
}

.border-top {
  border-top: 1px solid #dee2e656 !important;
}

/* Fixed Social Media Icons */
.social-media-icons-fix {
  position: fixed;
  bottom: 40px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
  /* Ensure it stays on top */
}

.social-media-icons-fix a {
  display: block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-media-icons-fix a:hover {
  transform: scale(1.1);
  /* Pop effect on hover */
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.social-media-icons-fix img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* testimonial  */
.testimonial {

  background-color: #f8f9fb;
}

.testimonial-content {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  position: relative;
  height: 100%;
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.testimonial-content::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 30px;
  width: 80px;
  height: 80px;
  background-image: url(../img/icons/quote.png);
  background-size: cover;
  background-position: center;
  /* opacity: 0.1; */

}

.testimonial-content .test-para {
  padding-bottom: 40px;
  border-bottom: 1px solid #e0e0e0;
}

.testimonial-bottom {
  margin-top: 15px;
  display: flex;
  align-items: center;
  gap: 15px;

}

.testimonial-bottom img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.testimonial-bottom h4 {
  margin: 5px 0 2px;
  font-size: 1.1rem;
  color: var(--theme-color);
}

.testimonial-bottom p {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 0;
}

swiper-container {
  width: 100%;
  /* padding-bottom: 40px; */
}

.swiper-pagination {
  z-index: -10 !important;
  display: none !important;
}

/* breadcrumb  */
.breadcrumb-wrapper {
  width: 100%;
  height: 60vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding-left: 120px;
}

.breadcrumb-wrapper::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0.95;
  background: -webkit-gradient(linear, right top, left top, color-stop(25%, transparent), color-stop(55.11%, #132573));
  background: linear-gradient(-90deg, transparent 25%, #132573 55.11%);
  z-index: -1;
}


.breadcrumb-wrapper h2 {
  font-size: 40px;
  font-weight: 700;
  color: white;
  text-align: center;
  text-transform: capitalize;
}

.breadcrumb-wrapper li,
.breadcrumb-wrapper a {
  text-transform: capitalize;
}

@media screen and (max-width: 538px) {
  .breadcrumb-wrapper {
    align-items: center;
    padding-left: 0;
  }

  .breadcrumb-wrapper h2 {
    font-size: 38px;
  }

}

/* about  */
.about-clinic .title h6::after {
  display: none;

}

.about-clinic img {
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
}

.about-clinic img:hover {

  filter: grayscale(100%);

}

.specialty-section {
  margin-bottom: 30px;
}

.specialty-title {
  color: var(--theme-color);
  /* Pink color for the title */
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--theme-color);
  /* Underline for the title */
  display: inline-block;
  /* To make the underline only as wide as the text */
}

.specialty-list {
  list-style: none;
  /* Remove default bullet points */
  padding: 0;
}

.specialty-list li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #333;
  position: relative;
  /* For custom bullet positioning */
  padding-left: 20px;
  /* Space for the custom bullet */
}

.specialty-list li::before {
  content: '•';
  /* Custom bullet point */
  color: var(--theme-color2);
  /* Light sea green color for bullets */
  font-size: 44px;
  position: absolute;
  left: 0;
  top: -24px;
  /* Adjust vertical alignment */
}

.png-pediatrician {
  position: relative;
}

.png-pediatrician::after {
  content: "";
  position: absolute;
  top: -150px;
  right: 0;
  width: 550px;
  height: 600px;
  background-image: url(../img/icons/pediatrician-list-img.png);
  background-size: cover;
  background-position: center;
  opacity: 0.1;
}

.location-card h5 {
  color: var(--theme-color);
  margin: 15px 0;
}

.location-card h6 {
  color: var(--theme-color2);
}

/* contact  */
.appointment {
  background-image: url(../img/backgrounds/appoinment.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.oppointment .title h6::after {
  display: none !important;
}

.form-group {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;

}

.form-group .input {
  width: 50%;
}

.form-control {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #01010100;
  background-color: #be989800 !important;
  background-clip: padding-box;
  border: 1px solid #6212785e !important;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* Contact Page ---------------------------------- */
.location-card {
  background-color: var(--white-color);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  padding: 30px 40px;
  margin-bottom: 10px;
  position: relative;
  /* Extra small devices */
}

@media (max-width: 375px) {
  .location-card {
    padding: 30px 20px;
  }
}

.location-card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  height: 4px;
  width: calc(100% - 60px);
  background-image: -webkit-radial-gradient(50% 50%,
      50% 50%,
      var(--theme-color) 56.77%,
      rgba(4, 206, 120, 0) 100%);
  background-image: radial-gradient(50% 50% at 50% 50%,
      var(--theme-color) 56.77%,
      rgba(4, 206, 120, 0) 100%);
}

.location-card .box-title {
  border-bottom: 1px solid var(--th-border-color);
  text-align: center;
  padding-bottom: 22px;
  margin-bottom: 24px;
}

.location-card .footer-info {
  margin-bottom: 12px;
}

.location-card .footer-info:last-of-type {
  margin-bottom: 0;
}

.location-card.active:after {
  background-image: -webkit-radial-gradient(50% 50%,
      50% 50%,
      var(--theme-color2) 56.77%,
      rgba(4, 206, 120, 0) 100%);
  background-image: radial-gradient(50% 50% at 50% 50%,
      var(--theme-color2) 56.77%,
      rgba(4, 206, 120, 0) 100%);
}

.contact-feature {
  background-color: var(--white-color);
  padding: 40px;
  box-shadow: 0px 5px 30px rgba(0, 0, 0, 0.06);
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  /* Medium Large devices */
  /* Large devices */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
}

@media (max-width: 1299px) {
  .contact-feature {
    padding: 20px;
  }
}

@media (max-width: 1199px) {
  .contact-feature {
    padding: 40px;
  }
}

@media (max-width: 991px) {
  .contact-feature {
    padding: 12px;
  }
}

@media (max-width: 767px) {
  .contact-feature {
    padding: 30px;
  }
}

@media (max-width: 375px) {
  .contact-feature {
    padding: 15px;
    gap: 15px;
  }
}

.contact-feature .box-icon {
  width: 70px;
  height: 70px;
  line-height: 70px;
  font-size: 36px;
  color: var(--white-color);
  background-color: var(--theme-color2);
  border-radius: 16px;
  text-align: center;
}

.contact-feature .box-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 1px;
}

.contact-feature .box-text {
  margin-bottom: -0.15em;
}

.contact-feature .box-schedule {
  color: var(--theme-color);
  margin-bottom: -0.5em;
}

.footer-info i {
  color: var(--theme-color);
  min-width: 23px;
  margin-top: 6px;
}

.footer-info a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Social Media Icon Hover Animation */
.footer-social-icons .social-icon img {
  width: 42px;
  height: 42px;
  transition: transform 0.3s, box-shadow 0.3s;
  border-radius: 50%;
  /* background: #fff; */
  padding: 4px;
  margin-right: 1px;
}

.footer-social-icons .social-icon:hover img {
  transform: scale(1.15) rotate(-8deg);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}


/* service details  */
.service-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.service-btn1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  color: #002366;
  font-weight: 600;
  border: 1px solid #002366;
  border-radius: 50px;
  padding: 15px 25px;
  font-size: 16px;
  transition: all 0.3s ease;
  /* width: 300px; */
}

.service-btn1 .icon {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.service-btn1:hover {
  background: #002366;
  color: #fff;
}

.service-btn1:hover .icon {
  transform: translateX(4px) translateY(-4px);
}

.service-details-content h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--theme-color);
  margin-bottom: 15px;
}

.service-details-content ul {
  padding-left: 18px;
}

.service-details-content ul li {
  margin-bottom: 20px;
}

.service-details-image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform ease 0.4s;
}

.service-details-image img {
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 2/1;
  position: relative;
}

/* gallery  */
.gallery .image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  transition: transform ease 0.4s;
}

.gallery .image img {
  transition: transform ease 0.4s;
  position: relative;
}

.gallery .image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background-color: rgb(0, 0, 0);
  opacity: 0;
  transition: all ease 0.4s;
  z-index: 99;
  border-radius: 20px;

}

.gallery .image:hover::after {
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.gallery .image:hover img {
  transform: scale(1.1);

}