* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
}
/* ANIMATIONS */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    transform: translateY(-80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
/* Back To Top */
#buttonToTop {
  display: inline-block;
  background-color: #000000a6;
  width: 36px;
  height: 36px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#buttonToTop i::before {
  color: #ffffff;
}
#buttonToTop::after {
  content: "";
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 36px;
  color: #fff;
}
#buttonToTop:hover {
  cursor: pointer;
  background-color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
#buttonToTop:hover i::before {
  color: #000000a6;
}
#buttonToTop:active {
  background-color: #555;
}
#buttonToTop.showTheTop {
  opacity: 1;
  visibility: visible;
}
/*NAVBAR*/
.sticky-menu {
  position: fixed;
  width: 100%;
  background: #ffffff;
  top: 0;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  padding-top: 0;
  padding-bottom: 0;
  z-index: 9999;
}
@media only screen and (max-width: 480px) {
  .sticky-menu {
    position: relative;
    animation: none;
  }
}

.nav-background {
  background-color: #ffffff;
}
.navbar {
  padding: 0 !important;
  height: 90px;
  box-shadow: 0px 1px 10px #999;
}
.navbar-brand {
  padding: 0 !important;
}
.navbar .nav-item:hover .dropdown-menu {
  /* display: block; */
  animation: 300ms ease-in-out 0s normal none 1 running fadeInUp;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}
@media only screen and (max-width: 480px) {
  .navbar .nav-item .dropdown-toggle::after {
    display: inline-block;
  }
  .navbar {
    padding: 10px 0 !important;
  }
}
.nav-item > .active {
  color: #000000 !important;
}

.nav-link {
  font-size: 14px !important;
  padding: 33px 10px !important;
  font-weight: 700 !important;
}
.nav-link::after {
  display: block;
  content: "";
  border-bottom: solid 3px #000000;
  transform: scaleX(0);
  transition: transform 250ms ease-in-out;
}
@media only screen and (max-width: 480px) {
  .nav-link {
    padding: 8px 10px !important;
    width: max-content !important;
  }
}

.nav-link:hover::after {
  transform: scaleX(1);
}
.nav-flag::after {
  transform: scaleX(0) !important;
}
.dropdown-menu {
  font-size: 12px !important;
  padding: 1rem !important;
  border-radius: 0 !important;
  background-color: #25408f !important;
  margin-top: -1px !important;
  margin-left: -1px !important;
  width: 100% !important;
  min-width: 250px !important;
}
.dropdown-item {
  color: #ffffff !important;
  padding: 15px 20px 15px 10px !important;
  border-bottom: 1px solid #ffffff !important;
}
.dropdown-menu li:first-child {
  border-top: 1px solid #ffffff !important;
}
.dropdown-item:hover {
  background-color: rgba(159, 171, 206, 0.1) !important;
}
#menu {
  display: none;
}
#menu {
  width: 35px;
  height: 30px;
  cursor: pointer;
  border: none;
  background-color: #fff;
}
.bar,
.change .bar {
  background-color: #000000;
}

.bar {
  height: 4px;
  width: 25px;
  display: block;
  border-radius: 5px;
  transition: 0.3s;
}
#bar1 {
  transform: translateY(-4px);
}
#bar3 {
  transform: translateY(4px);
}
#menu-bar {
  z-index: 2;
}
.change #bar1 {
  transform: translateY(4px) rotateZ(-45deg);
}
.change #bar3 {
  transform: translateY(-4px) rotate(45deg);
}
.change #bar2 {
  opacity: 0;
}
@media only screen and (max-width: 992px) {
  #menu {
    display: inline-block;
  }
  #menu {
    float: right;
    margin: 27px 0;
  }
  #menu-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .navbar {
    padding: 10px 0;
    height: auto;
  }
}
/*SLIDER*/
.slide-right {
  animation: 0.5s ease-in-out slide-right;
}
@keyframes slide-right {
  from {
    margin-left: -100%;
  }
  to {
    margin-left: 0%;
  }
}
.slide-top {
  animation: 0.5s ease-in-out slide-top;
}
@keyframes slide-top {
  from {
    margin-bottom: -100%;
  }
  to {
    margin-bottom: 0%;
  }
}
.mySlides {
  display: none;
}
.main-banner-slider {
  /* background-image: url("images/kalip.webp");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%; */
  position: relative;
  /* background-attachment: initial; */
  /* z-index: 1; */
}

@media only screen and (max-width: 480px) {
  .slide-items {
    padding: 20px 0;
  }
}

.slide-items-top span {
  font-size: 20px;
}

@media only screen and (max-width: 480px) {
  .main-banner p {
    font-size: 24px;
  }
}
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  bottom: -13px;
  width: auto;
  margin-top: -22px;
  color: #000000;
  font-weight: bold;
  font-size: 18px;
  transition: 0.2s ease;
  border-radius: 3px;
  user-select: none;
  text-decoration: none;
}
.prev i::before,
.next i::before {
  font-size: 48px;
}
.prev {
  left: 7%;
}
@media only screen and (max-width: 992px) {
  .prev {
    left: 5%;
  }
  .prev i::before,
  .next i::before {
    font-size: 32px;
  }
}
.next {
  left: 10%;
}

.prev i:hover,
.next i:hover {
  color: #5b5757a6;
}

.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.mySlides > .numbertext {
  color: #000000;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  font-weight: 700;
}
.slider-dots {
  cursor: pointer;
  position: absolute;
  bottom: 0;
  right: 5%;
  margin-top: -22px;
  transition: 0.6s ease;
  user-select: none;
  text-decoration: none;
}

.dot {
  cursor: pointer;
  height: 3px;
  width: 30px;
  margin: 0 2px;
  background-color: #5b5757a6;
  display: inline-block;
  transition: background-color 0.6s ease;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
@media only screen and (max-width: 480px) {
  .dot {
    height: 2px;
    width: 20px;
  }
}

.active,
.dot:hover {
  background-color: #000000;
}
/* BAnt area */
.bant-area {
  padding: 36px 0;
  background: #f1c40f;
}

@media only screen and (max-width: 480px) {
  .bant-area {
    padding: 18px 0;
  }
}

/* Fading animation */
.fadeSlide {
  animation-name: fade;
  animation-duration: 3s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@media only screen and (max-width: 300px) {
  .prev,
  .next,
  .text {
    font-size: 11px;
  }
}
/*VIDEOS*/
.facility-area {
  margin: 30px 0 60px;
}

.youtube-video {
  aspect-ratio: 16 / 9;
  width: 100%;
  border-radius: 2rem;
  padding: 20px;
}
/* .youtube-video .ytp-impression-link{
    display: none !important;
} */
.main-title span {
  font-size: 16px;
  margin-bottom: 20px;
}
/* CERTIFICATE */
.certificate-area {
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.certificate-content {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
}
.certificate-btn {
  width: 120px;
  height: 50px;
  border: 2px solid #000000;
  font-size: 16px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 0;
  transition: 0.3s ease-in-out;
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  background-color: #ffffff;
  border-radius: 12px;
}

.certificate-btn::before,
.certificate-btn::after {
  position: absolute;
  background: #ffffff;
  z-index: -1;
  transition: 0.3s ease-in-out;
  content: "";
}

.certificate-btn::before {
  height: 50px;
  width: 70px;
}

.certificate-btn::after {
  width: 120px;
  height: 25px;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.certificate-btn:hover::before {
  width: 0px;
  background: #fff;
}

.certificate-btn:hover::after {
  height: 0px;
  background: #fff;
}

.certificate-btn:hover {
  background: #000;
  color: #fff;
}
.certificates {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
/* CARDS */
.cards-area {
  margin: 0;
  padding: 60px 0 45px;
  /* background-color: #f3f4f6; */
  /* background-image: url("images/bg-image.png"); */
  /* background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 180px; */
}
@media only screen and (max-width: 992px) {
  .cards-area {
    padding: 30px 20px;
  }
  .about-us-text {
    padding: 0 20px;
  }
}
.main-title {
  text-align: center;
  color: #000000;
  font-size: 24px;
  font-weight: 700;
}
.cards-title-text {
  position: relative;
  text-align: center;
  padding: 0 0 10px;
  margin-bottom: 30px;
}
.cards-title-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 125px;
  height: 1px;
  background-color: #000000;
}
.cards-title-text-index {
  position: relative;
  text-align: center;
  padding: 0 0 10px;
  margin-bottom: 30px;
  color: #000000;
}
.cards-title-text-index:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 125px;
  height: 1px;
  background-color: #000000;
}

.cards {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.cards-img {
  position: relative;
}

.cards-img-one {
  background-image: url("images/2.jpg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 260px;
  position: relative;
  background-attachment: initial;
  border-radius: 8px;
  z-index: 1;
}

.cards-img-one:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  opacity: 0.3;
  border-radius: 8px;
}

.cards-img-one p {
  position: absolute;
  color: #ffffff;
  bottom: 10%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}
.cards-img-one p {
  background-image: linear-gradient(
    to right,
    #ffffff,
    #ffffff 50%,
    #ffffff 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  width: max-content;
}

.cards-img-one p:before {
  content: "";
  background: #ffffff;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.cards-img-one p:hover {
  background-position: 0;
}

.cards-img-one p:hover::before {
  width: 100%;
}
.cards-img-two {
  background-image: url("images/3.jpg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 260px;
  position: relative;
  background-attachment: initial;
  border-radius: 8px;
  z-index: 1;
}

.cards-img-two:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  opacity: 0.3;
  border-radius: 8px;
}

.cards-img-two p {
  position: absolute;
  color: #ffffff;
  bottom: 10%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}
.cards-img-two p {
  background-image: linear-gradient(
    to right,
    #ffffff,
    #ffffff 50%,
    #ffffff 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  width: max-content;
}

.cards-img-two p:before {
  content: "";
  background: #ffffff;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.cards-img-two p:hover {
  background-position: 0;
}

.cards-img-two p:hover::before {
  width: 100%;
}

.cards-img-three {
  background-image: url("images/5.jpg");
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  min-height: 260px;
  position: relative;
  background-attachment: initial;
  border-radius: 8px;
  z-index: 1;
}

.cards-img-three:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  opacity: 0.3;
  border-radius: 8px;
}

.cards-img-three p {
  position: absolute;
  color: #ffffff;
  bottom: 10%;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}
.cards-img-three p {
  background-image: linear-gradient(
    to right,
    #ffffff,
    #ffffff 50%,
    #ffffff 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
  width: max-content;
}

.cards-img-three p:before {
  content: "";
  background: #ffffff;
  display: block;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.cards-img-three p:hover {
  background-position: 0;
}

.cards-img-three p:hover::before {
  width: 100%;
}
.cards-text {
  display: flex;
  font-size: 14px;
  color: #000000a6;
  gap: 5px;
  padding: 10px 10px 0 10px;
}
.cards-text p {
  margin: 0;
}
.cards-text span {
  color: #000000;
  font-weight: 600;
}

/* FOOTER */
.footer-top-area {
  background-image: url("images/navLogo.png");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  position: relative;
  z-index: 1;
  padding: 100px 0;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px,
    rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.footer-top-area:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  z-index: -1;
  opacity: 0.2;
}

.icons {
  padding-left: 12px;
}
.icons i:before {
  font-size: 16px;
}

a,
a:hover {
  text-decoration: none;
}

.single-widget img {
  margin-bottom: 10px;
  margin-left: -6px;
}

.single-widget p {
  color: #000000a6;
  font-size: 14px;
}

.single-widget.contact a {
  text-decoration: none;
}

.single-widget.contact ul li {
  position: relative;
}

.single-widget.contact ul li i {
  position: absolute;
  left: -12px;
  top: 4px;
  font-size: 16px;
  fill: #000000;
  color: #000000;
  border-color: #000000;
  font-style: normal;
  font-weight: 600;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.single-widget.contact ul li span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.single-widget ul li span {
  color: #000000;
}

.single-widget ul li {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
}

.single-widget a {
  color: #000000;
  text-decoration: none;
  font-size: 17px;
}

.single-widget a:hover {
  color: #000000a6;
}

.single-widget.contact ul li a {
  position: relative;
  color: #000000a6;
  font-size: 14px;
}

.single-widget .default-btn {
  display: block;
  width: 100%;
  margin-top: 20px;
}

.single-widget {
  padding: 30px 30px;
}
@media only screen and (max-width: 480px) {
  .single-widget {
    padding: 30px 15px;
  }
}

.footer-bottom-area {
  background-color: #000000;
  padding: 20px 0;
}


.footer-bottom-area .copy-right {
  text-align: center;
}

.footer-bottom-area .copy-right p {
  text-transform: capitalize;
  margin-bottom: 0;
  color: #fff;
}

.footer-bottom-area .copy-right p a {
  color: #fff;
  font-weight: 700;
}

.copy-right a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.single-widget h3 {
  color: #000000;
  font-size: 24px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}
.single-widget-fast {
  padding: 30px;
}
@media only screen and (max-width: 480px) {
  .single-widget-fast {
    padding: 30px 15px;
  }
}
.single-widget-fast h3 {
  color: #000000;
  font-size: 24px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.single-widget.contact ul li span {
  display: block;
  font-size: 16px;
  font-weight: 600;
}

.single-widget-fast ul li span {
  color: #000000;
}

.single-widget-fast ul li {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
}

.single-widget-fast a {
  color: #000000;
  text-decoration: none;
  font-size: 14px;
}

.single-widget-fast a:hover {
  color: #000000a6;
}

.single-widget-fast.contact ul li a {
  position: relative;
  color: #000000a6;
  font-size: 14px;
}

/****************/
.swiper {
  padding: 0 50px !important;
}
.mySwiper-products{
  padding: 50px !important;
}
.swiper-pagination-fraction{
  font-weight: 700;
}
@media only screen and (max-width: 480px) {
  .swiper {
    padding:35px 0 !important;
  }
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 440px;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  color: #000000;
}
@media only screen and (max-width: 480px) {
  .swiper-slide img {
    object-fit: contain;
  }
}
.swiper-pagination-bullet-active {
  background-color: #ffffff !important;
}
.swiper-button-next,
.swiper-button-prev {
  color: #ffffff !important;
}

.our-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.our-area img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}
.video-area-top {
  background-color: #ffffff;
  padding: 50px 0;
}
.google-maps {
  width: 100%;
  height: auto;
  min-height: 400px;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.address-area {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  margin: auto 0;
}
.addresses {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
  min-height: 400px;
}
.address-title {
  font-weight: 700;
  font-size: 16px;
}
.address-text span,
.address-phone span {
  font-weight: 700;
  margin-right: 5px;
}
.spacing-m {
  margin: 3rem 0;
}
@media only screen and (max-width: 480px) {
  .spacing-m {
    margin: 1rem 0;
  }
}
.swiper-slide:hover .overlay {
  opacity: 0.5;
}
.overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .3s ease;
  background-color: #000;
  border-radius: 16px;
}
.overlay > .icons {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}
.overlay > .icons i::before{
  font-size: 32px;
  color:#ffffff;
}
.swipder-slide:hover .overlay > .icons i::before{
  opacity: 1;
}