@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 {
  --primary-color: #52b765;
  --secondary-color: #ffffff;
  --helping-color: #323232;
}
.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.primary-bg {
  background-color: var(--primary-color);
}
.primary-text {
  color: var(--primary-color);
}
.secondary-bg {
  background-color: var(--secondary-color);
}
.secondary-text {
  color: var(--secondary-color);
}
.helping-bg {
  background-color: var(--helping-color);
}
.helping-text {
  color: var(--helping-color);
}
.hover-primary:hover {
  color: var(--primary-color);
  background: var(--secondary-color);
  border: 1px solid var(--primary-color);
}
.hover-primary-transparent:hover {
  color: var(--primary-color);
  background: transparent;
  border: 1px solid var(--primary-color);
}
.hover-helping:hover {
  color: var(--helping-color);
  background: var(--secondary-color);
  border: 1px solid var(--helping-color);
}
.primary-border {
  border: solid 2px var(--primary-color);
}
.helping-border {
  border: solid 2px var(--helping-color);
}
.bubble-holder {
  width: 100%;
  height: calc(100vh - 120px);
  position: relative;
  overflow: hidden;
  background-image: url("../assets/images/slider-image-1.jpg");
}

.circles-container {
  width: 90%;
  height: 90%;
  position: absolute;
  overflow: hidden;
}

.circles {
  position: absolute;
  display: block;
  list-style: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  background: -moz-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 70%
  ); /* FF3.6+ */
  background: -webkit-gradient(
    radial,
    center center,
    0px,
    center center,
    100%,
    color-stop(0%, rgba(255, 255, 255, 0.5)),
    color-stop(70%, rgba(255, 255, 255, 0))
  ); /* Chrome,Safari4+ */
  background: -webkit-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 70%
  ); /* Chrome10+,Safari5.1+ */
  background: -o-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 70%
  ); /* Opera 12+ */
  background: -ms-radial-gradient(
    center,
    ellipse cover,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 70%
  ); /* IE10+ */
  background: radial-gradient(
    ellipse at center,
    rgba(255, 255, 255, 0.5) 0%,
    rgba(255, 255, 255, 0) 70%
  ); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#80ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
  -webkit-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2),
    inset 0px 10px 30px 5px rgba(255, 255, 255, 1);
  -moz-box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2),
    inset 0px 10px 30px 5px rgba(255, 255, 255, 1);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2),
    inset 0px 10px 30px 5px rgba(255, 255, 255, 1);
  color: aqua;
  opacity: 1;
  animation: floating 6s linear infinite;
}

.circles:first-child {
  width: 100px;
  height: 100px;
  position: absolute;
  overflow: hidden;
  left: 20%;
  top: 100px;
  animation: floating 6.2s linear infinite;
}

.circles:nth-child(2) {
  width: 110px;
  height: 110px;
  position: absolute;
  overflow: hidden;
  left: 70%;
  top: 500px;
  animation: floating 8.4s linear infinite;
}

.circles:nth-child(3) {
  width: 91px;
  height: 91px;
  position: absolute;
  overflow: hidden;
  left: 40%;
  top: 800px;
  animation: floating 6.1s linear infinite;
}

.circles:nth-child(4) {
  width: 89px;
  height: 89px;
  position: absolute;
  overflow: hidden;
  left: 80%;
  top: 40%;
  animation: floating 5s linear infinite;
}

.circles:nth-child(5) {
  width: 70px;
  height: 70px;
  position: absolute;
  overflow: hidden;
  left: 40%;
  top: 60%;
  animation: floating 6.1s linear infinite;
}

.circles:nth-child(6) {
  width: 50px;
  height: 50px;
  position: absolute;
  overflow: hidden;
  left: 15%;
  top: 60%;
  animation: floating 5.5s linear infinite;
}

.circles:nth-child(7) {
  width: 75px;
  height: 75px;
  position: absolute;
  overflow: hidden;
  left: 35%;
  top: 40%;
  animation: floating 4.2s linear infinite;
}

.circles:nth-child(8) {
  width: 75px;
  height: 75px;
  position: absolute;
  overflow: hidden;
  left: 65%;
  top: 10%;
  animation: floating 5.5s linear infinite;
}

@keyframes floating {
  0% {
    transform: translateY(800px);
    opacity: 1;
    border-radius: 50%;
  }
  100% {
    transform: translateY(-150px);
    opacity: 0;
    border-radius: 50%;
  }
}

div.inside {
  background-color: #addfff;
  border-radius: 30%;
  display: block;
  position: relative;
  height: 15%;
  width: 9%;
  left: 65%;
  top: 55%;
}

/* 
#bubble-container {
	position: relative;
	overflow: hidden;
}

.bubbles {
	position: absolute;
	font-size: 2rem;
	animation: floatUp 6.9s linear infinite;
	cursor: pointer;
}

@keyframes floatUp {
	0% {
		transform: translate(0, 0);
		opacity: 1;
	}
	80% {
		opacity: 1;
	}
	100% {
		transform: translate(0, -120vh)
translateX(calc(-50vw + 100vw * var(--randomX)));
		opacity: 0;
	}
}

.bubble-pop {
	animation: pop 0.1s forwards;
}

@keyframes pop {
	50% {
		transform: scale(1.2);
		opacity: 1;
	}
	to {
		opacity: 0;
	}
} */

.swiper {
  width: 100%;
  height: 100%;
}

.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: 100%;
  object-fit: cover;
}
.quick_contact a {
  position: fixed;
  width: 40px;
  height: 40px;
  right: 18px;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: transform 0.5s ease;
}
.qwhtsapp {
  bottom: 70px;
  background-color: #25d366;
}
.qcall {
  bottom: 120px;
  background-color: #2196f3;
}
.quick_contact_icon {
  margin: 8px;
}
.quick_contact a:hover {
  transform: scale(1.1);
}

section {
  position: relative;
  opacity: 0;
  transition: 0.9s;
  transition-timing-function: cubic-bezier(0.5, 0, 0, 1);
}

section.active {
  opacity: 1;
  top: 0;
  scale: 1;
}
