.home-page-header .section-page-header.bg-transperent{
  background-color: white;
}
.home-page-header .section-page-header.bg-transperent .header{
  height: calc(var(--header-height) * 0.8);
}
.home-page-header .section-page-header.bg-transperent .nav-link{
  color: black;
}
.home-banner-section {
  position: relative;
  height: 100vh;
  /* height: calc(100vh - var(--header-height)); */
}

.banner-bg-carousel {
  height: 100%;
  width: 100%;
}
.banner-bg-carousel .item {
  width: 100%;
  height: 100vh;
  /* height: calc(100vh - var(--header-height)); */
}
.banner-bg-carousel img {
  width: 100%;
  height: 100%;
}

.home-banner-section .center-container {
  position: absolute;
  width: 60%;
  height: 100%;
  /* background: radial-gradient(#ffffff00, #000000c8); */
  background-color: var(--theme-color-light);
  /* mix-blend-mode: hard-light; */
  clip-path: polygon(0% 0%, 79% 0, 100% 100%, 75% 100%, 0% 100%);
  padding: 20px;
  border-radius: 0px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 5;
}

.home-banner-section .center-container .carousel-contianer {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 80%;
  height: 100%;
  
  
}

.banner-text-carousel {
  width: 100%;
  text-align: center;
}

.page-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--theme-color-1);
  position: relative;
  z-index: 10;
  /* color: black; */
}

#homeBannerTextCarousel .item .title{
  color: black;
  font-size: 30px;
  margin-top: 20px;
}

/* About */

.about-section .image-main-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.about-section .image-main-container::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50% 0 50% 0;
  border: 3px solid var(--theme-color-1);
  transform: translateX(-15px) translateY(-15px);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.about-section .image-main-container .img {
  width: 100%;
  height: 100%;
  border-radius: 50% 0 50% 0;
  position: relative;
  z-index: 1;
}

/* Products */

.products-section .inner-container {
  background-color: rgba(255, 255, 255, 0.873);
}

.service-carousel-card {
  border-radius: 20px;
  box-shadow: 0 0 14px rgba(162, 162, 162, 0.4);
  height: 60vh;
  overflow: hidden;
}

.service-carousel-card .carousel-inner {
  background-color: white;
  clip-path: polygon(0 0, 72% 0, 100% 35%, 100% 100%, 0 100%, 0 0);
  width: 100%;
  box-sizing: border-box;
  height: 44%;
  display: flex;
  flex-direction: column;
}

.service-carousel-card .carousel-inner .clickable-text {
  position: absolute;
  bottom: 0px;
  left: 20px;
}

.service-carousel-card .carousel-inner p {
  flex: 1;
  overflow: hidden;
}

.service-carousel-card .carousel-inner .title {
  color: var(--theme-color-blue);
  font-size: 1.3rem;
  font-weight: 500;
  width: 75%;
}

/* resue */
.reuse-section {
  background-color: #cbe2b663;
}
.reuse-section .resue-para {
  width: 75%;
  margin: auto;
}
.reuse-images-container .circle-img-container {
  position: relative;
}
.reuse-images-container .circle-img-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  scale: 1.05;
  width: 50vh;
  height: 50vh;
  background-image: url(../images/bg-images/cirlce-border.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 5;
  animation: rotate360 8s infinite linear;
}

.reuse-images-container .circle-img-container .img {
  width: 50vh;
  height: 50vh;
  border-radius: 50%;
  margin: auto;
}

/* Contact */

.home-contact-form .input-field .input {
  width: 100%;
  padding: 10px;
  margin: 2px 0;
  border-radius: 5px;
  border: 1px solid rgb(134, 134, 134);
}

.home-contact-form .input-field .input:focus {
  outline: 0;
  color: var(--theme-color-1);
  border: 1px solid var(--theme-color-1);
}

/* *************************** */
/*         Media Queries      */
/* ************************* */

/* Large laptop */
@media screen and (max-width: 1400px) {
}
/* Small laptop */
@media screen and (max-width: 1200px) {
}
/* Tablet */
@media screen and (max-width: 992px) {
}
@media screen and (max-width: 768px) {
}
/* Large mobile */
@media screen and (max-width: 576px) {
  .home-banner-section .center-container{
    width: 100%;
    clip-path: none;
    height: 50%;
    top: unset;
  }
  .home-banner-section .center-container .carousel-contianer{
    width: 100%;
  }
  .page-main-title{
    font-size: 2rem;
  }
  #homeBannerTextCarousel .item .title{
    font-size: 17px;
  }
  .about-section .image-main-container {
    width: 100%;
    margin-top: 45px;
    height: 260px;
    position: relative;
  }

  .service-carousel-card {
    height: 70vh;
  }

  .reuse-section .resue-para {
    width: 100%;
  }

  .reuse-images-container .circle-img-container::after {
    width: 110px;
    height: 110px;
  }

  .reuse-images-container .circle-img-container .img {
    width: 110px;
    height: 110px;
  }
}
/* Small mobile */
@media screen and (max-width: 375px) {
}
@media screen and (max-width: 320px) {
}
