@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
@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');

:root {
  --text-color: #666;
  --primary-color: #ff0000;
  --heading-font-family: "Sora", sans-serif;
  --text-font-family: "Poppins", sans-serif;
  --secondary-color: #898787;
}

.offcanvas {
  transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
}

body {
  overflow-x: hidden;
}

.container-fluid {
  max-width: 1260px;
}

header {
  padding: 6px 0;
  background: #f8f7f4;
}


.logo img {
  width: 105px;
}

.m-logo {
  width: 130px;
}

.navbar {
  padding: 0px;
}

.navbar-expand-lg .offcanvas {
  justify-content: center;
}

#navbarTogglerDemo02 {
  justify-content: end;
}

.navbar-light .navbar-nav .nav-link {
  font-family: var(--heading-font-family);
  padding: 10px 20px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--secondary-color);
  transition: 0.4s;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  position: relative;
}


.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
  color: var(--primary-color);
}


.dropdown-toggle::after {
  display: inline-block;
  border: none;
}

.dropdown-item {
  font-size: 15px;
  font-family: var(--text-font-family);
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}


.top-cnt a {
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--heading-font-family);
  font-size: 15px;
  background: var(--primary-color);
  color: var(--bs-white);
  padding: 15px 20px;
  font-weight: 600;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.top-cnt a span {
  position: relative;
  overflow: hidden;
}

.top-cnt a span::before {
  content: "\e65a";
  font-family: 'themify';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: absolute;
  top: 3px;
  right: 0;
  width: 1em;
  height: auto;
  transform: scale(.26) translate(-55px, 50px);
  transition: transform .4s ease-in-out, opacity .4s ease-in-out;
  font-size: 17px;
}

.top-cnt a span i {
  font-size: 17px;
  position: relative;
  top: 3px;
  display: inline-block;
  transition: transform .4s ease-in-out, opacity .4s ease-in-out;
}

.top-cnt a:hover span i {
  transform: scale(.26) translate(55px, -50px);
}

.top-cnt a:hover span::before {
  transform: scale(1) translate(-2px, 0);
}

.top-cnt a:hover {
  background: #222;
}

.top-cnt a img {
  display: none;
}



.banner {
  position: relative;
  overflow: hidden;
  padding: 5px 15px 0;
  background: linear-gradient(360deg, transparent 20%, #f8f7f4 80%);
}


/*.carousel-item::before{
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
background: linear-gradient(360deg, rgba(0, 0, 0, 0.7)  20%, transparent 80%);

}*/


.carousel-caption {
  right: 40%;
  left: 10%;
  color: #fff;
  padding: 15px;
  text-align: left;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  top: 0;
  height: 100%;
}

.carousel-caption h6 {
  font-family: var(--text-font-family);
  background: var(--primary-color);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  color: var(--bs-white);
  text-transform: uppercase;
  font-size: 15px
}

.carousel-caption h2 {
  font-family: var(--heading-font-family);
  font-size: 36px;
  font-weight: 600;
  color: var(--bs-body-color);
}

.carousel-caption p {
  font-family: var(--text-font-family);
  line-height: 26px;
  color: var(--text-color);
}

.carousel-caption a {
  font-family: var(--text-font-family);
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  background: var(--primary-color);
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 40px 12px 22px;
  color: #fff;
  margin-right: 10px;
  border-radius: 30px;
}

.carousel-caption a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  -webkit-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border-radius: 30px;
}

.carousel-caption a:hover::before {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
}

.carousel-caption a:hover {
  color: var(--secondary-color);
}

.carousel-caption a span {
  display: inline-block;
  transition: 0.7s;
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  position: absolute;
  right: 16px;
  top: 17px;
  font-size: 13px;
}


.carousel .carousel-item img {
  border-radius: 20px;
}

.carousel-control.right {
  background: none;
}

.carousel-control.left {
  background: none;
}

.carousel .carousel-item.active .animated1 {
  -webkit-animation: fadeInRight 1s ease-in-out 500ms both;
  animation: fadeInRight 1s ease-in-out 500ms both;
}

.carousel .carousel-item.active .animated2 {
  -webkit-animation: fadeInLeft 1s ease-in-out 500ms both;
  animation: fadeInLeft 1s ease-in-out 500ms both;
}

.carousel .carousel-item.active .animated3 {
  -webkit-animation: fadeInDown 1s ease-in-out 500ms both;
  animation: fadeInDown 1s ease-in-out 500ms both;
}

.carousel .carousel-item.active .animated4 {
  -webkit-animation: fadeInUp 1s ease-in-out 500ms both;
  animation: fadeInUp 1s ease-in-out 500ms both;
}

.carousel-caption::before {
  -webkit-animation: fadeInLeft 1s ease-in-out 500ms both;
  animation: fadeInLeft 1s ease-in-out 500ms both;
}

.carousel-inner>.carousel-item .carousel-caption {
  z-index: 99;
  opacity: 0;
  -webkit-transition: opacity 500ms;
  -moz-transition: opacity 500ms;
  -o-transition: opacity 500ms;
  transition: opacity 500ms;
}

.carousel .carousel-item.active .carousel-caption {
  z-index: 99;
  opacity: 1;
  -webkit-transition: opacity 100ms;
  -moz-transition: opacity 100ms;
  -o-transition: opacity 100ms;
  transition: opacity 100ms;
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: .6s;
  transition-property: opacity;
}

.carousel-indicators {
  justify-content: end;
  margin-right: 5%;
  width: 400px;
  left: auto;
  margin-left: 0;
}


.carousel-indicators [data-bs-target] {
  width: 100px;
  height: 100px;
  text-indent: 0;
  cursor: pointer;
  background: none;
  border: 1px solid var(--bs-white);
  font-family: var(--heading-font-family);
  color: var(--bs-white);
  transition: opacity .6s ease;
  text-align: left;
  align-items: end;
  display: flex;
  padding: 10px;
  font-weight: 600;
  line-height: 21px;
  position: relative;
  font-size: 18px;
}

.carousel-indicators span {
  position: absolute;
  right: 0;
  top: 0;
  padding: 8px;
}


.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
  transform: translate3d(0, 0, 0);
}

.sec-1 {
  padding: 40px 0;
  background: var(--bs-white);
}

.sec1-bx {
  display: flex;
  gap: 15px;
}

.sec1-bx .sec1-icon {
  background: var(--primary-color);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  text-align: center;
  line-height: 65px;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.sec1-bx .sec1-icon img {
  width: 40px;
  filter: invert();
}

.sec1-bx:hover .sec1-icon {
  -webkit-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.sec1-bx .sec1-content {
  width: 75%;
}

.sec1-bx .sec1-content h4 {
  font-family: var(--heading-font-family);
  font-size: 20px;
}

.sec1-bx .sec1-content p {
  font-family: var(--text-font-family);
  line-height: 26px;
  color: var(--text-color);
}


.sec-2 {
  padding: 60px 0;
  background: url(../images/sec1-bg.png) no-repeat top right;
  /*background: url(../images/dt.png) no-repeat left ;*/
}

.sec2-left {
  margin-right: 40px;
  position: relative;
}

.sec2-left img {
  border-radius: 30px;
}

.sec2-ct {
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../images/about-counter-bg.jpg) no-repeat center;
  background-size: cover;
  z-index: 9;
  text-align: center;
  border-radius: 20px;
  padding: 45px 15px;
  width: 180px;
}

.sec2-ct::before {
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
}

.sec2-ct h2 {
  color: var(--bs-white);
  font-family: var(--heading-font-family);
  font-size: 45px;
  font-weight: 600;
}

.sec2-ct p {
  color: var(--bs-white);
  font-family: var(--text-font-family);
  margin: 0;
}

.sec2-right h6 {
  font-family: var(--text-font-family);
  background: var(--primary-color);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  color: var(--bs-white);
  text-transform: uppercase;
  font-size: 15px;
}

.sec2-right h2 {
  font-family: var(--heading-font-family);
  font-size: 42px;
}

.sec2-right p {
  font-family: var(--text-font-family);
  font-size: 15px;
  color: var(--text-color);
  line-height: 27px;
}

.sec2-bx {
  display: flex;
  gap: 20px;
  align-items: center;
}

.sec2-bx h2 {
  font-family: var(--text-font-family);
  font-size: 45px;
  margin: 0;
  color: #e80000;
}

.sec2-bx p {
  margin: 0;
  line-height: 1.2;
}

.sec2-lnk {
  display: flex;
}

.sec2-lnk a {
  text-transform: uppercase;
  text-decoration: none;
  font-family: var(--heading-font-family);
  font-size: 15px;
  background: var(--primary-color);
  color: var(--bs-white);
  padding: 15px 20px;
  font-weight: 600;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.sec2-lnk a span {
  position: relative;
  overflow: hidden;
}

.sec2-lnk a span i {
  font-size: 17px;
  position: relative;
  top: 3px;
  display: inline-block;
  transition: transform .4s ease-in-out, opacity .4s ease-in-out;
}

.sec2-lnk a span::before {
  content: "\e65a";
  font-family: 'themify';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: absolute;
  top: 3px;
  right: 0;
  width: 1em;
  height: auto;
  transform: scale(.26) translate(-55px, 50px);
  transition: transform .4s ease-in-out, opacity .4s ease-in-out;
  font-size: 17px;
}

.sec2-lnk a:hover {
  background: #222;
}

.sec2-lnk a:hover span::before {
  transform: scale(1) translate(-2px, 0);
}

.sec2-lnk a:hover span i {
  transform: scale(.26) translate(55px, -50px);
}

.sec2-call {
  display: flex;
  grid-gap: 15px;
  align-items: center;
}

.sec2-call span {
  font-size: 30px;
  color: var(--primary-color);
}

.sec2-call p {
  margin: 0;
}

.sec2-call h4 {
  font-family: var(--heading-font-family);
  margin: 0;
  font-size: 22px;
}

.sec2-call h4 a {
  text-decoration: none;
  color: #222;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.sec2-call h4 a:hover {
  color: var(--primary-color);
}

.txt-movement {
  width: 300%;
  display: flex;
  overflow: hidden;
  animation: txt 25s ease infinite;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
}

@keyframes txt {
  0% {
    left: 0%;
  }

  100% {
    left: -100%;
  }
}

.txt-movement:hover {
  animation-play-state: paused;
}

.txt-movement h2 {
  font-size: 70px;
  margin: 0;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: transparent;
  text-shadow: 1px 1px 0 var(--primary-color), -1px -1px 0 var(--primary-color), 1px -1px 0 var(--primary-color), -1px 1px 0 var(--primary-color), 1px 1px 0 var(--primary-color);
  -webkit-text-fill-color: #fff;
  -webkit-text-stroke-width: 0;

  /*-webkit-text-stroke: 2px var(--primary-color);*/
  /*  -webkit-text-fill-color: transparent;*/
  font-family: var(--heading-font-family);
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  position: relative;
}

.txt-movement h2 i {
  margin-right: 10px;
}

.txt-movement h2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  content: attr(data-text);
  transition: max-width .8s cubic-bezier(.22, .61, .36, 1);
  -webkit-text-fill-color: var(--primary-color);
  -webkit-text-stroke: transparent;
  max-width: 0;
}

.txt-movement h2:hover::before {
  max-width: 100%;
}

.sec-3 {
  padding: 60px 0;
  background: #f8f7f4;
}


.sec3-title h6 {
  font-family: var(--text-font-family);
  background: var(--primary-color);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  color: var(--bs-white);
  text-transform: uppercase;
  font-size: 15px;
}

.sec3-title h2 {
  font-family: var(--heading-font-family);
  font-size: 42px;
}


.sec3-bx a {
  display: block;
  text-decoration: none;
  padding: 15px;
  border-radius: 30px;
  background: var(--bs-white);
  padding: 30px 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 15px 12px 0 12px;
}

.sec3-bx img {
  border-radius: 50%;
  margin-bottom: 25px;
}

.sec3-bx h6 {
  font-family: var(--text-font-family);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.5px;
  font-weight: 400;
  color: var(--primary-color);
  position: relative;
}

.sec3-bx h6::before {
  display: inline-block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 5px;
  background-color: var(--secondary-color);
  margin-bottom: 1px;
}

.sec3-bx h4 {
  font-size: 20.8px;
  font-weight: 500;
  font-family: var(--heading-font-family);
  color: var(--bs-body-color);
  margin: 0;
}


.sec3-bx a .s-icon {
  z-index: 9;
  position: absolute;
  top: 0;
  right: 0;
  width: 65px;
  height: 65px;
  padding: 7px 0 0 7px;
  border-radius: 0 0 0 30px;
  font-family: var(--heading-font-family);
  background-color: #f8f7f4;
}

.sec3-bx a .s-icon div {
  text-align: center;
  background: var(--primary-color);
  width: 50px;
  height: 50px;
  font-size: 18px;
  line-height: 50px;
  border-radius: 50%;
  font-weight: 600;
  color: var(--bs-white);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.sec3-bx a .s-icon::before,
.sec3-bx a .s-icon::after {
  box-shadow: inset -30px 30px 0 0 #f8f7f4;
}

.sec3-bx a .s-icon::before {
  content: "";
  display: block;
  width: 98%;
  height: 80%;
  position: absolute;
  border-radius: 20px;
  top: -30px;
  left: -34px;
  z-index: -1;
}

.sec3-bx a .s-icon::after {
  content: "";
  display: block;
  width: 80%;
  height: 98%;
  position: absolute;
  border-radius: 20px;
  bottom: -33px;
  right: -30px;
  z-index: -1;
}


.sec3-bx a .s-icon div span {
  position: relative;
  overflow: hidden;
}

.sec3-bx a .s-icon div span i {
  position: relative;
  display: inline-block;
  top: 3px;
  transition: transform .4s ease-in-out, opacity .4s ease-in-out;
}

.sec3-bx a .s-icon div span::before {
  content: "\e65a";
  font-family: 'themify';
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: absolute;
  top: 17px;
  right: 0;
  width: 1em;
  height: auto;
  transform: scale(.26) translate(-55px, 50px);
  transition: transform .4s ease-in-out, opacity .4s ease-in-out;
}

.sec3-bx a:hover .s-icon div span i {
  transform: scale(.26) translate(55px, -50px);
}

.sec3-bx a:hover .s-icon div span::before {
  transform: scale(1) translate(-2px, 0);
}


.sec3-bx a:hover .s-icon div {
  background: #222;
}


.slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bs-body-color);
  color: var(--bs-white);
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px !important;
  border-radius: 50%;
  z-index: 9;
  cursor: pointer;
}

.slick-pre {
  left: -20px;
}

.slick-nxt {
  right: -20px;
}

.sec-4 {
  padding: 60px 0;
  background: #e80000 url(../images/sec4-bg.png) no-repeat;
}

.sec4-left img {
  border-radius: 30px;
}

.pbm-outter {
  background: #e80505;
  padding: 76px 127px;
  border-radius: 0 0 35px;
  position: absolute;
  left: 0;
}

.pbm-left {
  position: absolute;
  left: 0;
  top: 0;
  padding: 30px 25px;
  border-radius: 30px;
  background-color: var(--bs-white);
  font-family: var(--heading-font-family);
  display: flex;
  align-items: start;
  gap: 12px;
  z-index: 9;
}


.pbmit-top-right-corner {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  right: -40px;
  transform: rotate(90deg) scaleX(-1);
}


.pbmit-bottom-left-corner {
  width: 30px;
  height: 30px;
  position: absolute;
  bottom: -40px;
  left: 0;
  transform: rotate(90deg) scaleX(-1);
}


.pbm-left .pbmit-content h4 {
  font-size: 18px;
  font-weight: 500;
  line-height: 26px;
}

.pbm-left .pbmit-content p {
  font-size: 13px;
  font-weight: 300;
  color: #6e778c;
  margin: 0;
}

.pbm-left .pbmit-content p span {
  font-size: 14px;
  font-weight: 500;
  color: var(--bs-body-color);
}

.pbm-left .pbmit-content p span i {
  color: #fdcf00;
  padding-right: 3px;
}

.sec4-right h6 {
  font-family: var(--text-font-family);
  background: var(--bs-body-color);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  color: var(--bs-white);
  text-transform: uppercase;
  font-size: 15px;
}

.sec4-right h2 {
  font-family: var(--heading-font-family);
  font-weight: 500;
  font-size: 45px;
  line-height: 60px;
  letter-spacing: 0;
  color: var(--bs-white);
}

.sec4-right p {
  font-family: var(--text-font-family);
  font-size: 15px;
  color: var(--bs-white);
  line-height: 27px;
}


.sec4-right .sec2-lnk a {
  background: var(--bs-body-color);
  font-weight: 400;
}

.sec4-right .sec2-lnk a:hover {
  background: #a20404;
}

.sec4-box {
  margin-top: 70px;
  position: relative;
  z-index: 9;
}

.sec4-box span {
  position: absolute;
  top: -4px;
  left: 58px;
  width: 28px;
  height: 30px;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  color: var(--bs-white);
  background-color: var(--bs-body-color);
  transition: all 0.4s ease-in;
  font-family: var(--text-font-family);
  z-index: 99;
}

.sec4-box:hover span {
  background: #a20404;
}

.sec4-box h4 {
  font-size: 24px;
  font-weight: 500;
  font-family: var(--heading-font-family);
  color: var(--bs-white);
}

.sec4-box p {
  font-family: var(--text-font-family);
  font-size: 15px;
  line-height: 26px;
  color: var(--bs-white);
  margin: 0;
}


.sec4-icon {
  background: var(--bs-white);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  text-align: center;
  line-height: 80px;
  margin-bottom: 25px;
  position: relative;
  z-index: 9;
}

.sec4-box::before {
  content: '';
  position: relative;
  top: 40px;
  left: 0;
  right: 0;
  width: 110%;
  height: 1px;
  z-index: -1;
  display: block;
  background-color: rgba(255, 255, 255, .5);
}


.sec-4 .row .col-lg-3:last-child .sec4-box::before {
  display: none;
}

.sec4-icon img {
  width: 50px;
}


.sec-5 {
  padding: 60px 0;
  background: #f8f7f4 url(../images/sec5-bg.png) no-repeat right;
  background-size: 800px;
}


.sec-5 h2 {
  font-family: var(--heading-font-family);
  font-size: 46px;
}

.sec-5 h2 span {
  display: block;
}

.sec-5 ul {
  padding-left: 0;
  list-style: none;
}

.sec-5 p,
.sec-5 ul li {
  font-family: var(--text-font-family);
  font-size: 15px;
  color: var(--text-color);
  line-height: 27px;
}

.sec-6 {
  padding: 0 0 50px;
  background: #f8f7f4;
}

.sec-6 .row {
  background: var(--bs-white);
  border-radius: 30px;
  position: relative;
  overflow: hidden;
}

.sec6-right {
  padding: 30px 25px;
}

.sec6-right h2 {
  font-family: var(--heading-font-family);
  font-size: 46px;
}

.sec6-right p {
  font-family: var(--text-font-family);
  font-size: 15px;
  color: var(--text-color);
  line-height: 27px;
}


.img-comp-container {
  position: relative;
  height: 200px;
  /*should be the same height as the images*/
}

.img-comp-img {
  position: absolute;
  width: auto;
  height: auto;
  overflow: hidden;
}

.img-comp-img img {
  display: block;
  /* vertical-align: middle; */
}

.img-comp-slider {
  position: absolute;
  z-index: 99999;
  cursor: ew-resize;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;

  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.img-comp-slider::after {
  content: " ";
  display: block;
  background: #fff;
  position: absolute;
  z-index: -1;
  width: 3px;
  height: 550px;
  top: -260px;
  left: 17px;
  box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.twentytwenty-overlay {
  transition-property: background;
  background: transparent;
  z-index: 25;
  transition-duration: 0.5s;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%
}

/*.twentytwenty-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}
  */

.c-out {
  display: flex;
  align-items: center;
  gap: 15px;
}

.c-out p {
  font-weight: 500;
  margin-bottom: 0;
  font-size: 20px;
  width: 40%;
  font-family: var(--heading-font-family);
}

.pie {
  --p: 20;
  --b: 22px;
  --c: darkred;
  --w: 140px;

  width: var(--w);
  aspect-ratio: 1;
  position: relative;
  display: inline-grid;
  margin: 5px;
  place-content: center;
  font-size: 30px;
  font-weight: bold;
  font-family: var(--heading-font-family);
}

.pie:before,
.pie:after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.pie:before {
  inset: 0;
  background: radial-gradient(farthest-side, var(--c) 98%, #0000) top/var(--b) var(--b) no-repeat,
    conic-gradient(var(--c) calc(var(--p)*1%), #f0f0f0 0);
  -webkit-mask: radial-gradient(farthest-side, #0000 calc(99% - var(--b)), #f0f0f0 calc(100% - var(--b)));
  mask: radial-gradient(farthest-side, #0000 calc(99% - var(--b)), #f0f0f0 calc(100% - var(--b)));
}

.pie:after {
  inset: calc(50% - var(--b)/2);
  background: var(--c);
  transform: rotate(calc(var(--p)*3.6deg)) translateY(calc(50% - var(--w)/2));
}

.sec-7 {
  padding: 50px 0;
}

.sec7-title {
  text-align: center;
}

.sec7-title h6 {
  font-family: var(--text-font-family);
  background: var(--primary-color);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  color: var(--bs-white);
  text-transform: uppercase;
  font-size: 15px;
}

.sec7-title h2 {
  font-family: var(--heading-font-family);
  font-size: 42px;
}

.sec7-bx a {
  text-decoration: none;
  border-radius: 30px;
  margin: 15px 15px 0;
  display: block;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.sec7-bx,
.sec7-bx a img {
  border-radius: 30px;
  transition: .6s;
  -webkit-transition: .6s;
  -moz-transition: .6s;
}

.sec7-bx a:hover img {
  transform: scale(1.08);
  -webkit-transform: scale(1.08);
  -moz-transform: scale(1.08);
  opacity: 0.5;
}

.sec7-bx a span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: var(--primary-color);
  color: var(--bs-white);
  border-radius: 50%;
  padding: 10px;
}


footer {
  padding: 50px 0;
  position: relative;
  z-index: 9;
  background: url(../images/footer-bg.jpg) no-repeat right bottom;
  background-position: 100% -25%;
}

/*footer::before{
  position: absolute;
  content: '';
  right: 45%;
  bottom: 0;
  width: 182px;
  height: 181px;
  background:url(../images/footer-bg.png) no-repeat;
  z-index: -1; 
}*/

.footer-top {
  padding: 35px 0;
  background-color: #e80000;
  position: relative;
  overflow: hidden;
  z-index: 9;
}

.footer-top img {
  width: 200px;
  opacity: 0.3;
  position: absolute;
  left: 40%;
  top: 0;
  z-index: -1;
}

.footer-top h4 {
  color: var(--bs-white);
  font-family: var(--heading-font-family);
  height: 100%;
  display: flex;
  align-items: center;
}


.ft-bx a {
  display: flex;
  text-decoration: none;
  font-family: var(--text-font-family);
  font-size: 15px;
  color: var(--bs-white);
  font-weight: 500;
  gap: 12px;
  align-items: center;
}

.ft-bx a span {
  background: var(--bs-body-color);
  width: 47px;
  height: 47px;
  text-align: center;
  line-height: 47px;
  font-size: 17px;
  border-radius: 50%;
}

.footer-about {
  margin-top: -85px;
  position: relative;
  z-index: 9;
}

.f-light-logo {
  position: absolute;
  left: -21%;
  opacity: 0.1;
  z-index: -1;
  width: 215px !important;
  top: -23px;
}

.cd-footer-right h3 {
  font-family: var(--heading-font-family);
}

.cd-footer-right h3 span {
  color: var(--primary-color);
  display: inline-block;
}


.footer-about img {
  width: 135px;
  margin-bottom: 12px;
}

.social-links li {
  list-style: none;
}

.social-links li a {
  text-decoration: none;
  display: block;
  height: 40px;
  width: 40px;
  color: var(--bs-white);
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 8px;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.social-links li:nth-child(1) a {
  background: #3055ae;
}

.social-links li:nth-child(2) a {
  background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-links li:nth-child(3) a {
  background: #cd0001;
}

.social-links li:nth-child(4) a {
  background: #50abf1;
}

.social-links li:nth-child(5) a {
  background: #00669a;
}

.footer-links {
  padding-top: 50px;
}

.footer-links h4 {
  font-family: var(--heading-font-family);
  font-size: 22px;
  position: relative;
  margin-bottom: 15px;
}

.footer-links h4::before {
  position: absolute;
  content: '';
  left: 0;
  bottom: -5px;
  width: 25px;
  height: 2px;
  background: var(--primary-color);
}

.footer-links ul {
  padding: 0;
  list-style: none;
}

.footer-links ul li a {
  text-decoration: none;
  font-family: var(--text-font-family);
  font-size: 15px;
  display: block;
  line-height: 30px;
  color: var(--text-color);
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.footer-links ul li a:hover {
  color: var(--primary-color);
  padding-left: 3px;
}

.footer-links ul li a span {
  font-size: 13px;
  padding-right: 4px;
}

.footer-links p,
.footer-about p {
  font-family: var(--text-font-family);
  font-size: 15px;
  line-height: 28px;
  color: var(--text-color);
  margin: 0;
}



.fixed-tp {
  position: fixed;
  bottom: 10px;
  right: 10px;
  background: var(--primary-color);
  z-index: 999;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  color: #fff !important;
  text-decoration: none;
}

.about-us-banner {
  background: url(../images/about-us-banner.jpg) no-repeat center;
  background-size: cover;
  border-radius: 1.2rem;
  padding: 100px 30px;
}


.services-banner {
  background: url(../images/services-banner.jpg) no-repeat center;
  background-size: cover;
  border-radius: 1.2rem;
  padding: 100px 30px;
}

/* .banner-img img {
  position: relative;
  border-radius: 1.25rem;
  height: 100%;
  width: 100%;
} */

.about-us-sec {
  padding: 5px 0;
  background: linear-gradient(360deg, transparent 20%, #f8f7f4 80%);
}

.banner-content h1 {
  position: relative;
  font-family: var(--heading-font-family);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
}

.banner-content h1::before {
  position: absolute;
  content: "";
  background: white;
  height: 1px;
  width: calc(100% + 10px);
  bottom: 0;
  left: 0;
}

.banner-content h1::after {
  position: absolute;
  content: "";
  background: white;
  height: 10px;
  width: 10px;
  bottom: 0;
  right: -10px;
  bottom: -4px;
  border-radius: 30px;
}

.banner-content {
  padding: 0;
}

.about-us-img-1 {
  border-radius: 30px;
}

.about-us-img-2 {
  position: absolute;
  border-radius: 30px;
  top: 35%;
  left: 35%;
  /* transform: translate(50% , 50%); */
}

.about-us-sec-2-content {
  padding-left: 8%;
}

.about-us-sec-2-cont {
  padding: 50px 16px;
  padding-bottom: 20px;
}

.about-us-sec-2-content .about-us-label h6 {
  font-family: var(--text-font-family);
  background: var(--primary-color);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  color: var(--bs-white);
  text-transform: uppercase;
  font-size: 15px;
}

.about-us-sec-2-content h1 {
  font-family: var(--heading-font-family);
  font-weight: 500;
  font-size: 48px;
}

.about-us-sec-2-content .content-p {
  font-family: var(--text-font-family);
  color: var(--text-color);
  line-height: 27px;
  font-size: 15px;
}

.about-us-sec-2-content ul {
  padding: 0;
  list-style: none;
}

.about-us-sec-2-content ul li h4 {
  font-family: Sora, sans-serif;
  /* font-size: 18px; */
}

.about-us-sec-3 .content-p {
  font-family: var(--text-font-family);
  color: var(--text-color);
  line-height: 27px;
  font-size: 15px;
}

.about-us-sec-2-content ul .about-us-li-1 {
  border-bottom: 1px solid rgb(219, 219, 219);
}

.about-us-sec-2-content ul li h4 span {
  color: #ff0000;
}

.about-us-sec-2-content ul li h4 {
  color: #200000;
}

.home-navigation-p a,
.about-navigation-p a {
  text-decoration: none;
  font-family: var(--text-font-family);
  color: white;
  font-size: 15px;
}

.about-us-cards {
  padding: 35px 0;
  padding-left: 35px;
}

.about-us-card-p {
  font-family: var(--text-font-family);
  color: var(--text-color);
  line-height: 27px;
  font-size: 15px;
  width: 75%;
}

.about-us-card-number {
  position: absolute;
  font-size: 114px;
  font-weight: 700;
  top: -11px;
  left: 5px;
  z-index: -1;
  opacity: 0.2;
  color: #c9c9c9;
  line-height: 0.8;
}

.about-us-card-h4 {
  font-family: var(--heading-font-family);
  font-size: 28px;
  font-weight: 600;
}

.about-us-card-heading {
  padding: 10px 0;
}

.about-us-dental-icon {
  color: #ff0000;
}

.about-us-future-vission {
  padding-bottom: 50px;
  position: relative;
  padding: 60px 0;
  color: white;
}

.future-vision-h6 {
  font-family: var(--text-font-family);
  background: black;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  color: var(--bs-white);
  text-transform: uppercase;
  font-size: 15px;
}

.about-us-future-vission::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 60%;
  left: 0;
  top: 0;
  background: url(../images/committed-to-excellence-original.jpg) no-repeat;
  background-size: cover;
  z-index: -1;
}

.future-vision-h1 {
  width: 80%;
  margin-bottom: 60px;
  font-family: var(--heading-font-family);
}


.future-vision-title-2 {
  padding: 42px 0;
}

.future-vision-button {
  display: inline-block;
  background: #222;
  /* padding: 22px 30px; */
  padding: 12px 25px;
  border-radius: 50px;
  transition: 1s;
}

.future-vision-button:hover {
  background: white;
  color: var(--primary-color);
}

.future-vision-button:hover a {
  color: var(--primary-color);
}

.future-vision-button a {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: white;
}

.future-vision-card {
  background: white;
  color: black;
  padding: 24px;
  border-radius: 20px;
}

.future-vision-card-h5 {
  font-family: var(--text-font-family);
  border-bottom: 1px solid rgb(227, 227, 227);
}

.future-vision-card-p {
  font-family: var(--text-font-family);
  color: var(--text-color);
  font-size: 15px;
  padding: 0 10px;
  width: 102%;
  line-height: 27px;
}

.quality-service-img-1 {
  height: 90%;
  padding: 0;
  border-radius: 15px;
  margin-left: 5px;
}

.quality-service-img-2 {
  height: 55%;
  position: absolute;
  border-radius: 15px;
  margin-left: 15px;
  top: 38%;
  left: -10%;
  /* transform: translate(50% , 50%); */
}

.quality-service-content {
  padding-left: 5%;
}

.quality-service-cont {
  padding: 40px 0px;
  padding-bottom: 20px;
}

.quality-service-content .quality-service-label h6 {
  font-family: var(--text-font-family);
  background: var(--primary-color);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  color: var(--bs-white);
  text-transform: uppercase;
  font-size: 15px;
}

.quality-service-content h1 {
  font-family: var(--heading-font-family);
  font-weight: 500;
  font-size: 48px;
}

.quality-service-content .quality-service-content-p {
  font-family: var(--text-font-family);
  color: var(--text-color);
  line-height: 27px;
  font-size: 15px;
  width: 90%;
}

.about-us-sec-2-content ul {
  padding: 0;
  list-style: none;
}

.about-us-sec-2-content ul li h4 {
  font-family: Sora, sans-serif;
  /* font-size: 18px; */
}

.about-us-sec-3 .content-p {
  font-family: var(--text-font-family);
  color: var(--text-color);
  line-height: 27px;
  font-size: 15px;
}

.about-us-sec-2-content ul .about-us-li-1 {
  border-bottom: 1px solid rgb(219, 219, 219);
}

.about-us-sec-2-content ul li h4 span {
  color: #ff0000;
}

.about-us-sec-2-content ul li h4 {
  color: #200000;
}

.quality-service-ul {
  display: flex;
  padding: 50px 0;
  gap: 55px;
  line-height: 27px;
}

.quality-service-ul ul li {
  font-family: var(--text-font-family);
  color: var(--text-color);
  line-height: 27px;
  font-size: 15px;
}

.why-choose-us-label {
  font-family: var(--text-font-family);
  display: inline-block;
  text-transform: uppercase;
  font-size: 15px;
  background: var(--primary-color);
  padding: 4px 12px;
  border-radius: 30px;
  color: var(--bs-white);
  font-weight: 500;
}

.why-choose-us-h1 {
  padding: 0px 0px 30px 0px;
  font-family: var(--heading-font-family);
}

.why-choose-us-h5 {
  font-family: var(--text-font-family);
}

.why-choose-us-p {
  font-family: var(--text-font-family);
  /* color: var(--text-color); */
  line-height: 27px;
  font-size: 15px;
  width: 96%;
  padding: 0px 0px 35px 0px;
  margin-bottom: 0;
}

.why-choose-us-button {
  display: inline-block;
  background: var(--primary-color);
  /* padding: 22px 30px; */
  padding: 12px 25px;
  border-radius: 50px;
  transition: 1s;
}

.why-choose-us-button a {
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  color: white;
}

.why-choose-us-button:hover {
  background: black;
}

.why-choose-us-p-li {
  font-family: var(--text-font-family);
  /* color: var(--text-color); */
  line-height: 27px;
  font-size: 15px;
  width: 90%;
}

.why-choose-us-element {
  padding: 0;
}

.why-choose-us-sec {
  position: relative;
  background: url(../images/why-choose-us-banner-bg.jpg) no-repeat;
  background-size: cover;
  color: white;
  padding: 60px 0;
}

.contact-us-banner-container {
  background: url(../images/contact-us-banner.jpg) no-repeat center;
  background-size: cover;
  border-radius: 1.2rem;
  padding: 100px 30px;
}

.contact-us-cards {
  position: relative;
  padding: 45px;
  border-radius: 15px;
  /* border: 1px solid black;  */
  background: white;
  transition: all 0.25s ease-in-out;
}

.contact-us-cards h3 {
  position: relative;
  font-family: var(--heading-font-family);
  font-size: 26px;
  line-height: 32px;
  padding-top: 20px;
  margin: 20px 12px 0 0;
  border-top: 1px solid #e0e3e9;

}

.contact-us-cards p {
  font-family: var(--text-font-family);
  position: relative;
  z-index: 99;
}

.contact-card-h3::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #222;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.contact-card-h3::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 0;
  width: 10px;
  height: 10px;
  background: #d4d8e1;
  border-radius: 50%;
}

.contact-us-cards:hover {
  transform: translateY(-5%);
}

.contact-card-p-1 {
  padding: 30px 0 43px;
  color: var(--text-color);
  margin-bottom: 0;
}

.contact-card-p-2 {
  padding: 34px 0;
  color: var(--text-color);
  margin-bottom: 0;
}

.contact-card-p-3 {
  padding: 24px 0px 20px 0px;
  color: var(--text-color);
  margin-bottom: 0;
}

.contact-us-cards:hover .contact-card-h3::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #222;
  transition: .4s;
  -webkit-transition: .4s;
  -moz-transition: .4s;
}

.contact-us-cards .contact-card-icon {
  font-size: 40px;
  color: #ff0000;
}

.contact-us-cards .contact-card-bg-icon-1,
.contact-us-cards .contact-card-bg-icon-2,
.contact-us-cards .contact-card-bg-icon-3 {
  position: absolute;
  bottom: 0px;
  right: 20px;
  opacity: 0.05;
  font-size: 140px;
  color: #000
}

.enquiry-banner-bg {
  background: url(../images/enquiry-banner.jpg) no-repeat center;
  background-size: cover;
  border-radius: 1.2rem;
  padding: 90px 30px;
}

.enquiry-banner-content h1 {
  position: relative;
  font-family: var(--heading-font-family);
  color: white;
  font-weight: 600;
  text-transform: uppercase;
  display: inline-block;
  bottom: 5px;
}

.enquiry-banner-content h1::before {
  position: absolute;
  content: "";
  width: calc(100% + 8px);
  background: white;
  height: 1px;
  left: 0;
  bottom: -6px;
}

.enquiry-banner-content h1::after {
  position: absolute;
  content: "";
  width: 10px;
  background: white;
  height: 10px;
  border-radius: 30px;
  right: -18px;
  bottom: -10px;
}

.enquiry-navigation-p a {
  text-decoration: none;
  font-family: var(--text-font-family);
  color: white;
  font-size: 15px;
}

.enquiry-label h6 {
  font-family: var(--text-font-family);
  background: var(--primary-color);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  color: var(--bs-white);
  text-transform: uppercase;
  font-size: 15px;
}

.enquiry-left-sec-heading h1 {
  font-family: var(--heading-font-family);
  font-size: 55px;
  font-weight: 600;
}

.enquiry-left-sec-heading h1 span {
  color: var(--primary-color);
}

.enquiry-right-sec {
  padding: 100px 0 0 20px;
}

.enquiry-right-sec form {
  display: flex;
  flex-direction: column;
}

.enquiry-right-sec .contact-form .input-row {
  padding-bottom: 30px;
}

:root {
  --line: #e6edf0;
  --text: #2b3a45;
  --muted: #8fa6b2;
  --primary: #ff0000;
}

.contact-form .input-row {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  /* border-bottom:1px solid var(--line); */
}

.contact-form .input-row i {
  color: var(--muted);
  font-size: 18px;
  width: 26px;
  /* keeps icons aligned */
  text-align: center;
  position: absolute;
}

.line-input {
  flex: 1;
  border-left: 0;
  border-right: 0;
   border-top: 0;
  outline: 0;
  border-bottom: 1px solid #d1d1d1;
  background: transparent;
  color: var(--text);
  font-size: 16px;
padding: 8px 0 8px 35px;
font-family: var(--text-font-family);
}

.line-input::placeholder {
  color: #9fb1bb;
}

.line-input:focus {
  /* animate underline on focus */
  box-shadow: 0 1px 0 0 var(--primary);
}

.textarea {
  resize: vertical;
  line-height: 1.5;
}

.get-in-touch-btn .btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  transition: 1s;
  font-family: var(--text-font-family);
}

.get-in-touch-btn .btn:hover {
  background: #b90000;
  color: white;
  scale: 1.1;
}

.enquiry-sec-2 {
  padding: 45px 10px;
}

.enquiry-right-sec .agree-condition {
  font-family: var(--text-font-family);
  color: var(--text-color);
  font-size: 14px;
}

.enquiry-right-sec .agree-condition span {
  text-decoration: underline;
}

.services-head-text label {
  font-family: var(--text-font-family);
  font-weight: 500;
  padding: 3px 5px;
  margin-bottom: 10px;
  border-radius: 10px;
  background: var(--primary-color);
  color: white;
}

.services-head-text h1 {
  font-family: var(--heading-font-family);
}

.services-head-text p {
  font-family: var(--text-font-family);
  color: var(--text-color);
}

.services-head-text span {
  color: var(--primary-color);
}

/* .services-card:hover{
  background: var(--primary-color);
} */

/* .services-card:hover h3,
.services-card:hover p {
  color: white;
} */

.services-card {
  position: relative;
  height: 100%;
  background: white;
  padding: 40px;
  border: 1px solid rgb(230, 230, 230);
  border-radius: 30px;
  transition: 1s;
  z-index: 1;
}

.services-card::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 25px;
  height: 50px;
  width: 50px;
  background: var(--primary-color);
  opacity: 0.1;
  border-radius: 50%;
  z-index: 1;
}

.services-card::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 25px;
  height: 50px;
  width: 50px;
  background: rgb(235, 235, 235);
  opacity: 0;
  border-radius: 50%;
  z-index: -1;
}

.services-card:hover .services-card::after {
  opacity: 1;
}

.service-card-bg::before {
  content: "";
  position: absolute;
  bottom: 0%;
  left: 0;
  background-color:  rgb(233 228 228 / 50%);
  height: 0%;
  width: 100%;
  border-radius: 30px;
  opacity: 0;
  transition: 0.7s ease;
  z-index: -1;
}

.services-card:hover .service-card-bg::before {
  height: 100%;
  /* bottom: 0; */
  opacity: 1;
}

.services-title h3 {
  font-family: var(--heading-font-family);
  color: var(--primary-color);
  transition: 1s;
}

.services-text p {
  font-family: var(--text-font-family);
  color: var(--text-color);
  text-align: justify;
  transition: 1s;
}

.services-img .img-2 {
  position: absolute;
  left: 40px;
  opacity: 0;
  transition: 1s;
}

/* .services-card:hover .img-2 {
  opacity: 1;
} */

@media only screen and (max-width: 480px) {

  .top-cnt a div,
  .top-cnt a span {
    display: none;
  }

  .top-cnt a img {
    display: inline-block;
  }

  .top-cnt a {
    border-radius: 50%;
    display: flex;
    align-items: center;
    gap: 0px;
    width: 45px;
    height: 45px;
    justify-content: center;
  }
}

@media only screen and (min-width: 0px) and (max-width: 575px) {
  .logo img {
    width: 98px;
  }

  .top-cnt {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .top-cnt a {
    font-size: 13px;
    padding: 10px 16px;
  }


  .navbar-light .navbar-nav .nav-link {
    color: var(--bs-black);
  }

  .carousel-caption h6 {
    font-size: 13px;
  }


  .carousel-caption h2 {
    font-size: 18px;
  }

  .carousel-caption p {
    display: none;
  }

  .carousel-caption a {
    display: none;
  }

  .sec2-right {
    margin-top: 20px;
  }

  .sec4-box::before {
    display: none;
  }

  .img-comp-container {
    height: 600px;
  }

  .about-us-img-1 {
	margin-bottom: 15px;
}
  .about-us-img-2 {
	display: none;
}

.future-vision-card {
	margin-bottom: 15px;
}

.contact-us-cards {
margin-bottom: 15px;
}

  .ft-bx a {
    margin: 12px 0;
  }

  footer {
    background-position: bottom;
  }

  .footer-links {
    padding-top: 30px;
  }

}

@media only screen and (min-width: 576px) and (max-width: 767px) {}


@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (max-width: 767px) {
  .footer-about {
    margin-top: 0;
  }
}

@media only screen and (max-width: 991px) {
  .navbar-toggler {
    background: var(--bs-gray-800);
    color: var(--bs-white);
    box-shadow: none;
  }

  .navbar-light .navbar-nav .nav-link {
    color: var(--bs-black);
  }

  .top-cnt {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navbar-expand-lg .offcanvas {
    justify-content: flex-start;
  }

}



@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .logo img {
    width: 210px;
  }
}


@media only screen and (min-width: 1200px) and (max-width: 1399px) {}

@media (min-width: 1400px) {}