@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

body {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0px;
}

body::-webkit-scrollbar {
  width: 0.5em;
}

body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #999;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--primary-color);
  outline: 1px solid var(--primary-color);
}

html {
  scroll-behavior: smooth;
}

:root {
  --primary-color: #1c3b69;
  --secondary-color: #018242;
}

*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}

p {
  font-size: 17px;
  color: #000;
}

ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  text-decoration: none;
}

button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}

section {
  padding: 70px 0 70px;
  overflow: hidden;
}

.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
  justify-content: space-between;
}

.large_heading {
  font-size: 2.5rem;
  line-height: 1.2;
}

.heading {
  font-size: 40px;
  line-height: 1.2;
}

.sub_heading {
  font-size: 26px;
}

.small_heading {
  font-size: 20px;
}

.title {
  font-size: 19px;
}
.text {
  font-size: 16px;
}

.fontWeight300 {
  font-weight: 300;
}

.fontWeight400 {
  font-weight: 400;
}

.fontWeight500 {
  font-weight: 500;
}

.fontWeight600 {
  font-weight: 600;
}

.fontWeight700 {
  font-weight: 700;
}

.fontWeight800 {
  font-weight: 800;
}

.fontWeight900 {
  font-weight: 900;
}
.header.stricky-fixed {
  position: fixed;
  z-index: 999;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  width: 100%;
  background: #fff;
  backdrop-filter: blur(10px);
  -webkit-animation-name: menu_sticky;
  animation-name: menu_sticky;
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
  padding: 3px 0;
}
.header.stricky-fixed .leftLogo img {
  width: 200px;
}
.header.stricky-fixed .rightMenu ul li a {
  color: #444;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }

  100% {
    margin-top: 0;
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }

  50% {
    margin-top: -130px;
  }
}
ul.megaList{
 position: absolute;
 top: 10px !important; 
 left: 220px !important;
 border-radius: 5px !important;
 display: block !important;
}
.rightMenu ul li ul li:hover ul.megaList{
  visibility: visible;
  opacity: 1;
  top: 0 !important;
}
.megaList li a{
  display: block;
}
.text_secondary {
  color: var(--secondary-color);
}
.text_primary {
  color: var(--primary-color);
}
.text_purple {
  color: var(--purple-color);
}
.bgPrimary {
  background: var(--primary-color) !important;
}

.bgSecondary {
  background: var(--secondary-color) !important;
}
.bgPurple {
  background: var(--purple-color) !important;
}
.containerFull {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  width: 100%;
  padding: 10px 0;
  width: 100%;
}

.leftLogo {
  width: 200px;
}
.leftLogo img {
  max-width: 100%;
}

.btnTheme {
  background: transparent;
  display: inline-block;
  padding: 12px 35px;
  border: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  font-weight: 600;
}
.bgGradient {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  ) !important;
}
.btnTheme:after {
  content: "";
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--secondary-color);
  z-index: -1;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.btnTheme:hover:after {
  width: 100%;
  right: auto;
  left: 0;
}
.hoverWhite:after {
  background: var(--secondary-color);
}
.hoverWhite:hover {
  color: #fff !important;
}
.rightMenu ul {
  display: flex;
  align-items: center;
}
.rightMenu ul li a {
  display: inline-block;
  padding: 8px 12px;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.rightMenu ul li a:hover, .rightMenu ul li.active > a {
  color: var(--primary-color);
  background: #eee;
}
.rightMenu ul li .megaMenu ul,
.rightMenu ul li .megaSub {
  position: absolute;
  top: 80px;
  left: 0;
  padding: 15px;
  background: #fff;
  border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0 0 10px 10px;
  -moz-border-radius: 0 0 10px 10px;
  -ms-border-radius: 0 0 10px 10px;
  -o-border-radius: 0 0 10px 10px;
  flex-wrap: wrap;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  z-index: 9;
}
.megaSub {
  width: 100%;
}
.rightMenu ul li:hover .megaSub {
  visibility: visible;
  opacity: 1;
}
.rightMenu ul li ul li a {
  padding: 8px 15px;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  display: block;
  width: 100%;
}
.rightMenu ul li ul {
  width: 250px;
}
.rightMenu ul li ul li{
  position: relative;
}
.rightMenu ul li ul.column {
  width: 500px;
}
.rightMenu ul li ul.column li {
  width: calc(100% / 2);
}
.rightMenu ul li:hover .megaMenu > ul {
  visibility: visible;
  opacity: 1;
  top: 35px;
}
.heroSection {
  background: url(../images/bg/hero.jpg) no-repeat;
  background-size: cover;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  padding: 150px 0 80px 0;
}
.heroSection:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: -1;
}
.textGradient {
  background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--primary-color)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.textGrey {
  color: #ccc;
}
.borderPrimary {
  border-color: var(--primary-color) !important;
}
.hoverDanger:hover {
  background: #f8d7da !important;
}
.rightMenu ul li a i {
  font-size: 12px;
}
.textLightBanner {
  color: #ccc;
}
.whatsappBg {
  background: #25d366;
}
.whatsAppChat {
  position: fixed;
  bottom: -8px;
  right: 0px;
  z-index: 99;
}
.whatsAppChat a {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding-right: 10px;
  height: 65px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}
.whatsAppChat img {
  width: 80px;
}
.go-top {
  position: fixed;
  cursor: pointer;
  bottom: -100px;
  right: 5px;
  background-color: var(--primary-color);
  z-index: 999;
  width: 45px;
  height: 45px;
  text-align: center;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  font-size: 16px;
  -webkit-transition: 0.9s;
  transition: 0.9s;
  overflow: hidden;
  color: #fff;
}

.go-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 5px;
}
.textGold {
  color: #fff;
}
@keyframes fadeAnimation {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeAnimation {
  animation: fadeAnimation 1s ease-in-out infinite;
  -webkit-animation: fadeAnimation 1s ease-in-out infinite;
}
.imgTreatment img {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  height: 200px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.itemTreatmentCards {
  border: 1px solid #e0e0e0;
  padding: 25px;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 100%;
}
.itemTreatmentCards a {
  color: var(--secondary-color);
  display: inline-block;
  margin-top: 10px;
}
.imgTreatment {
  overflow: hidden;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.itemTreatmentCards:hover .icons {
  background: #f4ecd8;
  color: var(--secondary-color);
}
.hoverAni {
  transition: all 0.3s ease-in-out;
}
.hoverAni:hover {
  box-shadow: var(--bs-box-shadow);
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
  -moz-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  -o-transform: translateY(-10px);
}
.icons {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.4rem;
}
.bgGray {
  background: #f2f4f8;
}
.itemWhy:hover .icons {
  background: var(--primary-color);
  color: #fff;
}
.itemWhy {
  margin-bottom: 30px;
}
.itemDr {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.imgDr {
  overflow: hidden;
  border-radius: 10px 10px 0px 0px;
}
.imgDr img {
  width: 100%;
  border-radius: 10px 10px 0px 0px;
  -webkit-border-radius: 10px 10px 0px 0px;
  -moz-border-radius: 10px 10px 0px 0px;
  -ms-border-radius: 10px 10px 0px 0px;
  -o-border-radius: 10px 10px 0px 0px;
  height: 334px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.drBg {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 0px 0px 10px 10px;
  -webkit-border-radius: 0px 0px 10px 10px;
  -moz-border-radius: 0px 0px 10px 10px;
  -ms-border-radius: 0px 0px 10px 10px;
  -o-border-radius: 0px 0px 10px 10px;
}
.btnText {
  display: inline-block;
  color: var(--secondary-color);
}
.itemDr:hover .imgDr img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.itemAfterBefore {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 10px;
   user-select: none;
    -webkit-user-drag: none;
  pointer-events: none;
}

.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  pointer-events: none;
   user-select: none;
    -webkit-user-drag: none;
}

.image.after {
  clip-path: inset(0 50% 0 0);
}

.slider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 3px;
  height: 100%;
  background: #fff;
  cursor: ew-resize;
  z-index: 10;
}

.slider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
  border: 2px solid #000;
}
.itemcase {
  padding: 10px;
  border-radius: 10px;
  background: #fff; /* optional */
  height: 100%;
}
.itemTestimonial {
  padding: 10px;
}
.slick-next:before,
.slick-prev:before {
  display: none;
}

.slick-next,
.slick-prev {
  background-color: var(--secondary-color) !important;
  color: #fff !important;
  font-size: 18px !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50%;
  z-index: 9;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.slick-prev {
  left: -8px !important;
}
.slick-next {
  right: -8px !important;
}
.slick-next:hover,
.slick-prev:hover {
  background: var(--primary-color) !important;
  color: #fff !important;
}
.footer {
  background: var(--primary-color);
  padding: 60px 0;
}
.footerMenu {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.footerMenu li {
  width: calc(100% / 2);
}
.footerMenu li a {
  color: #ccc;
  display: inline-block;
  padding: 5px 0;
  font-size: 16px;
}
.footerMenu li a:hover {
  color: #fff;
}
.contactInfo {
  margin-top: 10px;
}
.contactInfo li a {
  color: #ccc;
  display: inline-block;
  padding: 5px 0;
  font-size: 16px;
}
.contactInfo li a:hover {
  color: #fff;
}
.contactInfo li a i {
  margin-right: 5px;
  color: #fff;
}
.contactInfo li {
  color: #ccc;
}
.socialLink {
  display: flex;
}
.socialLink li a {
  color: #ccc;
  display: inline-block;
  padding: 8px;
  font-size: 16px;
}
.bottomMenu ul {
  display: flex;
  gap: 15px;
}
.bottomMenu ul li a {
  font-size: 0.875em;
  font-weight: 600;
}
.floatingIcon {
  position: fixed;
  bottom: 60px;
  right: 0px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 50px;
}
.floatingIcon a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
}
.googleReview {
  width: 250px;
}
.googleReview img {
  width: 100%;
}
.itemAwrds {
  padding: 0 10px;
}
.imgAward img {
  width: 100%;
  border-radius: 10px;
}
.imgDoctor {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.imgAward img {
  height: 127px;
  object-fit: cover;
}
.itemAwrds p {
  font-size: 14px;
}
.btnLink {
  display: inline-block;
  color: var(--secondary-color);
  margin-top: 20px;
  font-weight: 600;
  text-decoration: underline;
}
.space {
  height: 15px;
}
.centerBig,
.imgSmall {
  padding: 10px;
  background: #fff;
  border-radius: 10px;
}
.centerBig img,
.imgSmall img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  height: 100%;
  object-position: center;
}
.imgSmall {
  height: 250px;
  margin: 10px 0;
}
.centerBig {
  height: 100%;
}
.rotateIcon {
  width: 90px;
  animation: rotateIcon infinite 10s linear;
  -webkit-animation: rotateIcon infinite 10s linear;
  position: relative;
}
.rotateIcon img {
  max-width: 100%;
}
@keyframes rotateIcon {
  from {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
  }
}
.rotateIcon .iconCal {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--primary-color);
  font-size: 22px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.iconCal p {
  animation: rotateIcon2 infinite 10s linear;
  -webkit-animation: rotateIcon2 infinite 10s linear;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  color: #fff;
}
@keyframes rotateIcon2 {
  from {
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
}
.innerImg {
  overflow: hidden;
  border-radius: 15px 15px 0 0;
  -webkit-border-radius: 15px 15px 0 0;
  -moz-border-radius: 15px 15px 0 0;
  -ms-border-radius: 15px 15px 0 0;
  -o-border-radius: 15px 15px 0 0;
}
.innerImg img,
.innerAwards img {
  width: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  height: 250px;
  object-fit: cover;
}
.innerAwards img {
  height: 306px;
  object-fit: cover;
}
.small_heading {
  font-size: 20px;
}
.descptionAward {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px;
  border-radius: 0 0 15px 15px;
  -webkit-border-radius: 0 0 15px 15px;
  -moz-border-radius: 0 0 15px 15px;
  -ms-border-radius: 0 0 15px 15px;
  -o-border-radius: 0 0 15px 15px;
  background: linear-gradient(
    to bottom,
    rgba(28, 59, 105, 0.3) 0%,
    rgba(28, 59, 105, 0.09) 1%,
    rgba(28, 59, 105, 1) 100%
  );
}
.descptionAward h4 {
  color: #fff;
  font-weight: 500;
}
.itemFeature p {
  font-size: 16px;
}
.itemFeature:hover .innerImg img {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
}
.itemFeature {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin-bottom: 40px;
}
figure {
  margin: 0;
}
.leftHigh ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
.leftHigh ul li {
  color: #fff;
  padding: 5px 15px;
  position: relative;
  padding-left: 40px;
}
.leftHigh ul li:after {
  content: "\f00c";
  position: absolute;
  top: 8px;
  left: 5px;
  font-family: var(--fa-style-family, "Font Awesome 6 Free");
  font-weight: var(--fa-style, 900);
  color: #25d366;
}
.rightHigh {
  background: #fff;
  padding: 10px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin-bottom: 0 !important;
}
.rightHigh img {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  margin-bottom: 0 !important;
}
.innerDepartment img {
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.itemDepartment {
  margin: 20px 0;
}
.rightHigh img {
  max-width: 100%;
}
.why-choose-box-1 {
  position: relative;
  z-index: 1;
}
.why-choose-box-1 .why-choose-item {
  flex-direction: row-reverse;
}
.why-choose-item {
  display: flex;
  margin-bottom: 60px;
}
.why-choose-box-1 .why-choose-item .icon-box {
  margin-left: 15px;
  margin-right: 0;
}
.why-choose-item .icon-box img {
  max-width: 48px;
}
.why-choose-box-1 .why-choose-item .why-choose-content {
  text-align: right;
}
.why-choose-content {
  width: calc(100% - 63px);
}
.why-choose-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 10px;
  color: var(--primary-color);
}
.why-choose-image img {
  max-width: 100%;
}
.why-choose-content p {
  font-size: 16px;
  color: #222;
}
.itemTestimonial a img {
  max-width: 100%;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.itemTestimonial a {
  position: relative;
}
.itemTestimonial a button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  font-size: 22px;
}
.highLight {
  padding-left: 20px;
  font-weight: 600;
  animation: blink 10s ease-in-out infinite;
  -webkit-animation: blink 1s ease-in-out infinite;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.stricky-fixed .highLight {
  color: crimson !important;
}
.service-item {
  position: relative;
  background-color: #fff;
  box-shadow: 0px 4px 40px 0px #0000000f;
  border-radius: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px;
  overflow: hidden;
  z-index: 1;
}

.service-item:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: var(--primary-color);
  border-radius: 0px;
  transition: all 0.2s ease-in-out;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.service-item:hover:before {
  top: 0;
}

.service-item .icon-box {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.service-item .icon-box img {
  max-width: 48px;
  transition: all 0.5s ease-in-out;
}

.service-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}

.service-body {
  position: relative;
  z-index: 1;
}

.service-body h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  transition: 0.5s ease-in-out;
}

.service-item:hover .service-body ul li,
.service-item:hover .service-body h3 {
  color: #fff;
}

.service-body p {
  margin: 0;
  transition: 0.5s ease-in-out;
}

.read-more-btn {
  position: relative;
  z-index: 1;
}

.read-more-btn a {
  position: relative;
  display: inline-block;
  color: var(--secondary-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  padding-right: 35px;
  transition: all 0.5s ease-in-out;
}

.service-item:hover .read-more-btn a {
  color: #fff;
}

.service-item:hover .read-more-btn a:hover {
  color: var(--secondary-color);
}

.read-more-btn a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-image: url("../images/arrow-white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px auto;
  background-color: var(--secondary-color);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  transition: 0.4s ease-in-out;
}

.read-more-btn a:hover:after {
  background-size: 10px auto;
  transform: rotate(45deg);
}

.services-box-footer {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 30px;
  text-align: center;
}
.shortBanner {
  background-image: url(../images/bg/hero.webp);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 200px 0 150px;
  position: relative;
  z-index: 1;
  height: 458px;
}
.shortBanner:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}
.shortBanner h1 {
  font-size: 54px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.shortBanner ol {
  margin: 0;
  padding: 0;
  justify-content: center;
}
.shortBanner ol li.breadcrumb-item {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: capitalize;
}
.shortBanner ol li.breadcrumb-item a {
  color: inherit;
}
ol li.breadcrumb-item.active {
  color: #fff;
  font-weight: 600;
}
.leftInner ul {
  margin-top: 15px;
}
.leftInner ul li {
  padding: 5px;
}
.leftInner ul li i {
  color: var(--secondary-color);
  font-size: 15px;
  padding-right: 5px;
}
.rightInner{
  height: 100%;
}
.rightInner img {
  height: 100%;
  width: 100%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  object-fit: cover;
}
.iconBox {
  width: 50px;
  height: 50px;
  background: #E6F7E6;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iconBox i {
  color: var(--secondary-color);
  font-size: 20px;
}
.rightIcon {
  width: calc(100% - 70px);
}
.rightIcon p {
  font-size: 15px;
}
.itemBoxTreat {
  padding: 15px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 1px solid #686868;
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
}
.iconTreat {
  width: 50px;
  height: 50px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-size: 1.5rem;
}
.itemBoxTreat:hover {
  border-color: var(--secondary-color);
}
.accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: #fff;
}
.accordion-item {
  margin: 10px 0;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.accordion-button {
  border-top: 1px solid #e0e0e0;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  font-size: 1.3rem;
  font-weight: 500;
}
.accordion-button:focus {
  box-shadow: none;
  outline: none;
}
.linkQuick ul {
  margin-top: 10px;
}
.linkQuick ul li a {
  color: #333;
  padding: 4px 5px;
  display: block;
  border-bottom: 1px dashed #c0c0c0;
}
.bannerRightImg {
  background: #fff;
  padding: 5px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.bannerRightImg img {
  max-width: 100%;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.itemFeature .small_heading,
.itemFeature h4 {
  font-size: 18px;
}
.service-body ul li {
  padding: 5px 0;
}

.hFixed {
  height: 150px;
  object-fit: cover;
}

.fullHeight {
  height: 100%;
}
.fullHeight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fullHeight figure {
  height: 100%;
}

.fiveCard p {
  font-size: 15px;
  margin-top: 15px;
}

.fiveCard .iconBox {
  width: 60px;
  height: 60px;
}
.fiveCard .iconBox i {
  font-size: 24px;
}
.itemBoxTreat p {
  font-size: 16px;
}

.lisyPoint ul {
  list-style-type: disc;
}
.lisyPoint ul li {
  padding: 10px 5px;
}
.leftTabs {
  position: relative;
  z-index: 9;
}
.leftTabs ul li {
  padding: 10px 10px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.centerImg img {
  max-width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  z-index: 1;
}
.leftTabs ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  z-index: -1;
}
.leftTabs ul li.active:after {
  width: 100%;
  background: #bcd3f5;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.rightCotnent ul li a {
  display: inline-block;
  padding: 5px 10px;
  color: #333;
}
.rightCotnent ul {
  margin-top: 15px;
}
.rightCotnent ul li:hover a {
  color: var(--secondary-color);
}
.rightContent {
  visibility: hidden;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
  position: absolute;
  -webkit-transform: translateX(20px);
  -moz-transform: translateX(20px);
  -ms-transform: translateX(20px);
  -o-transform: translateX(20px);
}

.rightContent.active {
  visibility: visible;
  opacity: 1;
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}

.fullHeightSection {
  height: calc(100vh + 120px);
}

.leftMargin {
  margin-left: -150px;
}
.leftMargin {
  font-size: 1.8rem;
}
.rightCotnent p {
  font-size: 15px;
}
.titleLeft {
  width: calc(100% - 300px);
}
.whiteHover:hover {
  color: #fff !important;
}
.borderSecondar {
  border-color: var(--secondary-color);
}
.listItem li {
  position: relative;
}
.listItem li a {
  display: inline-block;
  padding: 5px 5px;
  padding-left: 20px;
  color: #222;
}
.listItem li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #666;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.listItem li a:hover {
  text-decoration: underline;
  color: var(--primary-color);
}

.leftInfo p,
.leftInfo p a {
  font-size: 14px;
}
.formItem {
  margin-bottom: 20px;
}
.formItem input,
.formItem textarea {
  padding: 10px 15px;
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #e0e0e0;
  font-size: 14px;
  height: 50px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.formItem input:focus,
.formItem textarea:focus {
  border-color: var(--primary-color);
}
.formItem textarea {
  height: 170px;
}
.itemBookForm {
  position: relative;
  margin: 10px 0;
}

.itemBookForm .radioCard {
  display: block;
  cursor: pointer;
}

.itemBookForm .radioCard input {
  display: none;
}

.itemBookForm .radioCard span {
  display: block;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #d0d7e2;
  background: #f4f6f9;
  color: #0a1a3a;
  font-size: 13px;
  transition: all 0.3s ease;
  font-weight: 600;
  text-align: center;
}
.itemBookForm .radioCard input:checked + span {
  background: #0a1a3a;
  color: #fff;
  border-color: #0a1a3a;
}
.itemBookForm .radioCard input:checked + span {
  background: linear-gradient(135deg, #0a1a3a, var(--primary-color));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.fontSmall {
  font-size: 15px;
}

.hoverTextWhite:hover {
  color: #fff !important;
}
.whatsappBtn {
  color: #333;
}

.whatsappBtn:after {
  background: #25d366;
}
.whatsappBtn:hover {
  color: #fff;
}

.tag {
  background: #2094f31a;
  color: var(--primary-color);
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  padding: 5px 15px;
}
.blogItem h3 {
  color: #888;
}
.blogItem ul li {
  color: #666;
  font-size: 14px;
  font-weight: 600;
}
.blogItem:hover h3 {
  color: var(--secondary-color);
}
.blogImg img {
  width: 100%;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.blogItem {
  border: 1px solid #333;
  padding: 5px;
  border-radius: 10px;
}
.testimonial-box-item {
  background: #fff;
  box-shadow: 0px 4px 40px 0px #0000000f;
  border: 1px solid var(--dark-divider-color);
  border-radius: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px;
}

.testimonial-box-item .testimonial-box-header {
  margin-bottom: 20px;
}

.testimonial-quote-img {
  margin-bottom: 20px;
}

.testimonial-quote-img img {
  max-width: 32px;
}

.testimonial-box-header .testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-box-header .testimonial-rating i {
  font-size: 16px;
  color: #f5a200;
}

.testimonial-box-header .testimonial-box-content p {
  margin: 0;
  font-size: 15px;
}

.testimonial-box-body {
  display: flex;
  align-items: center;
}

.testimonial-box-body .author-box-image {
  width: 56px;
  height: 56px;
  margin-right: 10px;
}

.testimonial-box-body .author-box-image img {
  width: 56px;
  height: 56px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-box-body .author-box-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
}

.testimonial-box-body .author-box-content {
  width: calc(100% - 66px);
}

.testimonial-box-body .author-box-content p {
  text-transform: capitalize;
  margin: 0;
}
.listTab {
  display: flex;
  margin-top: 30px;
}
.listTab li {
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 10px 25px;
  margin: 0 5px;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
  font-weight: 500;
  cursor: pointer;
}
.listTab li.active {
  background: var(--primary-color);
  color: #fff;
}

.itemTabTest {
  display: none;
}

.itemTabTest.active {
  display: block;
}
.borderRadius {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.borderRadius2 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.blogDes p {
  margin: 5px 0;
  color: #333;
}

.recent_posts a img {
  width: 120px;
  margin-right: 15px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.recent_posts a span {
  overflow: hidden;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  height: 53px;
  font-size: 16px;
}
.recent_posts a {
  display: flex;
  color: #000;
  align-items: center;
}
.recent_posts {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.rightBlog {
  position: sticky;
  position: -webkit-sticky;
  top: 100px;
  z-index: 9;
}
.overflowAuto {
  overflow: auto;
}
.h250 {
  height: 400px;
}
.cardImg img{
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.cardImg{
  position: relative;
  z-index: 9;
}
.newHero{
  background: url(../images/bg/banner.webp) no-repeat;
  background-size: cover;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
  padding: 60px 0 80px 0;
}
.iconsLeftHome{
  width: 35px;
}
.iconsLeftHome img{
  width: 100%;
}
.rightIconHome{
  width: calc(100% - 53px);
}
.rightIconHome p{
  font-size: 13px;
}
.rightIconHome i{
  font-size: 10px;
}
.btnBorder{
  border:1px solid #fff;
  color: #fff;
}
.btnBorder:after{
  background: #25d366; 
}
.btnBorder:hover{
  border-color: transparent;
}
.btnBorder i{
  font-size: 24px;
  vertical-align: middle;
  padding-right: 5px;
}
.textNew i{
  font-size: 16px;
}
.bottomBanner{
  margin-top: -40px;
  position: relative;
  z-index: 9;
}
.iconBottom{
  width: 50px;
}
.iconBottom img{
  max-width: 100%;
}
.rightBottom{
  width: calc(100% - 67px);
}
.rightBottom p{
  font-size: 15px;
}
.rightBottom .sub_heading{
  font-size: 23px;
}
.footerBottom{
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: var(--primary-color);
  padding: 5px;
  z-index: 99;
  transition: all 0.5s ease-in-out;
}
.footerBottom.active{
  bottom: 0;
}
.googleImg{
  width: 80px;
}
.footerBottom p{
  font-size: 15px;
}
.footerBottom a{
  font-size: 15px;
}
.footerBottom a i{
  font-size: 10px;
  padding-left: 3px;
}
.testiImg{
  width: 150px;
}
.itemTesti p, .itemTesti h4{
  color: #fff;
}
.itemTesti p{
  font-size: 13px;
}
.itemTesti h4{
  font-size: 15px;
  margin-top: 5px;
}
.breadcrumb-item+.breadcrumb-item::before{
  color: #fff;
  content: "-";
}
.bgLight{
  background: #E6F7E6;
}
.why-choose-box-2 .icon-box{
  margin-right: 15px;
}
.form-step{
  display:none;
}

.form-step.active{
  display:block;
}
#nextBtn, #submitBtn{
  margin-left: auto;
}
.step.active{
  background: #E6F7E6;
  border-color: var(--secondary-color) !important;
}
.step.active p{
  color: var(--secondary-color) !important;
}
.step .bi-1-circle-fill, .step .bi-2-circle-fill, .step .bi-3-circle-fill{
  display: none;
}
.step.active .bi-1-circle-fill, .step.active .bi-2-circle-fill, .step.active .bi-3-circle-fill{
  display: inline-block;
}
.step.active .bi-1-circle, .step.active .bi-2-circle, .step.active .bi-3-circle{
  display: none;
}
.youtubThumbnail img{
  width: 100%;
  object-fit: cover;
  height: 100%;
}
.youtubThumbnail{
  position: relative;
  aspect-ratio: 16 / 9;
  height: auto;
}
.btnYoutube{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  color: #ff0000;
  font-size: 4.5rem;
}
.youtubThumbnail iframe{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.formItem label{
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
}
.iconNew{
  width: 80px;
  height: 80px;
  border:1px solid #315c9c;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 10px;
}
.iconNew img{
  max-width: 100%;
}
.centerIcon ul{
  display: flex;
  justify-content: center;
}
.centerIcon ul li{
  text-align: center;
  border-right: 1px solid #3260a5;
  padding: 10px 10px;
}
.centerIcon ul li p{
  color: #fff;
}
.borderRight{
  border-right: 1px solid #3260a5;
}
.centerIcon ul li:last-child{
  border-right: none;
}
.iconsTele{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-body ul{
  display: none;
}
.itemBoxTab{
  padding: 20px;
  background: #fff;
  border:1px solid #e0e0e0;
  cursor: pointer;
  margin-bottom: 15px;
}
.itemBoxTab ul{
  display: none;
  margin-top: 15px;
  margin-left: 25px;
  list-style-type: disc;
}
.itemBoxTab ul li{
  padding: 5px 5px;
}
.itemBoxTab .small_heading{
  font-size: 18px;
}
.itemBoxTab h3 {
  display: flex;
  justify-content: space-between;
}
.itemTestimonial iframe{
  width: 100%;
  height:250px;
  border-radius: 20px;
}
.ceramcoBg{
  background: url(../images/bg/bg.webp) no-repeat;
  background-position: center;
  background-size: cover;
}
.centerLogo {
  width: 200px;
  margin: 15px auto;
}
.centerLogo img{
  max-width: 100%;
}
.iconInnerAligner{
  width: 70px;
  height: 70px;
  background: #fff;
  border-radius: 50%;
  border:1px solid #f1f1f1;
  padding: 15px;
}
.iconInnerAligner img{
  max-width: 100%;
}
.itemLeftInner{
  display: flex;
  column-gap: 10px;
}
.rightAligner{
  width: calc(100% - 80px);
}
.itemLeftInner p{
  font-size: 15px;
}
.textBlue{
  color: #2196f3;
}
.bgBlue{
  background: #2196f3;
}
.itemFooter p{
  font-size: 16px;
}
.footerLogo{
  width: 150px;
}
.footerLogo img{
  max-width: 100%;
}
.borderTop{
  border-top:1px solid #3e6fb9;
  margin-bottom: 3rem;
}


/* ceramco align */
.centerLogo{
  width: 200px;
  margin: 15px auto;
}
.centerLogo img{
  max-width: 100%;
}
.section{
  background: url(../images/bg/ceramco-align.jpg) no-repeat;
  background-size: cover;
  padding: 40px 0;
}
.text_primary{
  color: var(--primary-color) !important;
}
 .featureCard {
  position: relative;
  background: var(--bg-white);
  border-radius: 20px;
  padding: 42px 30px 36px;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 119, 182, 0.12);
  box-shadow: 0 12px 34px rgba(26, 42, 58, 0.06);
  overflow: hidden;
  margin-bottom: 20px;
}

.featureCard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.featureCard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(0, 168, 232, 0.32);
}

.featureCard:hover::before {
  opacity: 1;
}

.featureIcon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 12px 28px rgba(0, 168, 232, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featureCard:hover .featureIcon {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 36px rgba(0, 168, 232, 0.36);
}

.featureIcon :is(i, svg) {
  width: 32px;
  height: 32px;
  display: block;
  stroke-width: 2.15;
}

.featureCard h3 {
  font-size: 1.7rem;
  font-weight: 600;
  color:var(--primary-color);
  margin-bottom: 12px;
  line-height: 1.1;
}

.featureCard p {
  color: #666;
  font-size: 16px;
}

.bgSection{
  background: #F0F9FF;
}
.w-65{
  width:60%;
  margin: 0 auto;
}

.iconNumber{
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.iconNumber:after{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border:1px solid var(--primary-color);
  border-radius: 50%;
}
.itemProcess{
  position: relative;
  padding-bottom: 4rem;
}
.itemProcess:before{
  content: '';
  width: 1px;
  height: 54%;
  background: var(--primary-color);
  position: absolute;
  top: 54px;
  left:25px;
}
.itemProcess:last-child:before{
  display: none;
}
.itemProcess:last-child{
  padding-bottom: 0;
}
.numberRight{
  width: calc(100% - 80px);
}
 .leftBenefit p {
  color: #666;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.benefitList {
  list-style: none;
  margin-top: 30px;
}

.benefitList li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color:#333;
  font-weight: 500;
}

.benefitList li :is(i, svg) {
  width: 22px;
  height: 22px;
  color: var(--primary-color);
  flex-shrink: 0;
  stroke-width: 2.3;
}
.rightBenefit {
    background: var(--primary-color);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.rightBenefit::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.rightBenefitIcon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.2);
}

.rightBenefitIcon :is(i, svg) {
    width: 40px;
    height: 40px;
    color: white;
    display: block;
    stroke-width: 2.1;
}

.rightBenefit h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
}

.rightBenefit p {
    opacity: 0.9;
    position: relative;
}
.advantagesGrid {
    position: relative;
    max-width: 1080px;
    margin: 0 auto;
    padding: 10px 0;
}

.advantagesGrid::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(0, 168, 232, 0.45), transparent);
    transform: translateX(-50%);
}

.advantageCard {
    position: relative;
    width: calc(50% - 58px);
    margin-bottom: 34px;
    padding: 0;
    transition: all 0.3s ease;
}

.advantageCard:nth-child(odd) {
    margin-right: auto;
    text-align: right;
}

.advantageCard:nth-child(even) {
    margin-left: auto;
}

.advantageCard:hover {
    transform: translateY(-4px);
}

.advantageCardHeader {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.advantageCard:nth-child(odd) .advantageCardHeader {
    flex-direction: row-reverse;
}

.advantageCardHeader :is(i, svg) {
    width: 48px;
    height: 48px;
    min-width: 48px;
    padding: 12px;
    color: white;
    background:var(--primary-color);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 10px 24px rgba(0, 168, 232, 0.25);
    flex-shrink: 0;
    display: block;
    stroke-width: 2.15;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantageCard:hover .advantageCardHeader :is(i, svg) {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 14px 30px rgba(0, 168, 232, 0.34);
}

.advantageCard h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.35;
    margin-bottom: 8px;
}

.advantageCard p {
    color:#666;
    font-size: 0.95rem;
    line-height: 1.75;
}

.advantageCard::after {
    content: '';
    position: absolute;
    top: 22px;
    width: 18px;
    height: 18px;
    background: #fff;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(0, 168, 232, 0.1);
}

.advantageCard:nth-child(odd)::after {
    right: -67px;
}

.advantageCard:nth-child(even)::after {
    left: -67px;
}
.hoverWhiteBtn:hover:after{
  background: #fff !important;
}
.ceramcoBg{
  background: url('../images/bg/ceramcoa-lign-bg.jpg') no-repeat;
  background-size: cover;
  background-position: center;
}
.menuFixed{
  padding: 10px 0;
}
.menuFixed ul{
  display: flex;
  column-gap: 10px;
}
.menuFixed ul li{
  width: calc(100% / 3 - 10px);
  border-right: 1px solid #4073be;
  text-align: center;
}
.menuFixed ul li i{
  display: block;
  font-size: 18px;
  margin-bottom: 5px;
}
.menuFixed ul li a{
  color: #fff;
  display: inline-block;
  font-size: 13px;
}
.menuFixed ul li:last-child{
  border-right: none;
}
.imgDoctor{
  height: 350px;
  object-fit: cover;
}
.showAfterLoad{
  display: none;
}