.my-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.my-navbar .navbar-brand img {
  width: 30px;
  opacity: 50%;
}
.my-navbar .navbar-brand p {
  font-size: 16px;
  line-height: 1.2;
}
.my-navbar .navbar-nav {
  background: linear-gradient(127.25deg, rgba(115, 115, 115, 0.262745098) 3.5%, rgba(115, 115, 115, 0.1647058824) 36.45%);
  border-radius: 100px;
  backdrop-filter: blur(40px);
}
.my-navbar .navbar-nav i {
  display: none;
}
.my-navbar .navbar-nav .nav-link {
  text-transform: capitalize;
  font-size: 14px;
  position: relative;
  height: 100%;
  padding: 15px 0;
}
.my-navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0%;
  height: 4px;
  border-radius: 100px;
  background: #008080;
  transition: all 0.3s ease-in-out;
}
.my-navbar .navbar-nav .nav-link:hover::after, .my-navbar .navbar-nav .nav-link.active::after {
  width: 100%;
}

@media (min-width: 200px) and (max-width: 991px) {
  .my-navbar .navbar-brand p {
    font-size: 14px;
    line-height: 1.1;
  }
  .my-navbar .navbar-nav {
    position: fixed;
    top: 50%;
    right: -100%;
    z-index: 1000;
    transform: translateY(-50%);
    transition: all 0.5s ease-in-out;
  }
  .my-navbar .navbar-nav.reveal {
    right: 5%;
  }
  .my-navbar .navbar-nav i {
    display: inline;
  }
  .my-navbar .navbar-nav .nav-link {
    font-size: 8px;
    padding: 0px 0;
  }
  .my-navbar .navbar-nav .nav-link::after {
    bottom: -3px;
  }
}
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 85dvh;
  position: relative;
  top: 0;
}
.hero .thiss {
  position: absolute;
  top: 0;
  z-index: -1;
}
.hero .blobs {
  position: absolute;
  z-index: -1;
  rotate: 10deg;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
  filter: blur(5px);
  animation: rotateBlobs 30s linear infinite, attachFilter 1s linear infinite forwards alternate-reverse;
}
.hero .blobs img {
  width: 100%;
  height: 100%;
}
.hero .blobs.left-blob {
  width: 35%;
  height: 400px;
  left: -25%;
  bottom: -10%;
}
.hero .blobs.right-blob {
  width: 40%;
  height: 400px;
  right: -28%;
  top: -10%;
  rotate: 228deg;
}
.hero .boxed-in {
  width: 75%;
  position: relative;
  z-index: 2;
}
.hero .boxed-in h1 {
  font-size: 50px;
  font-weight: 700;
}
.hero .boxed-in p {
  width: 65%;
}

@keyframes rotateBlobs {
  0% {
    rotate: 0;
  }
  50% {
    rotate: 180deg;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes attachFilter {
  0% {
    filter: saturate(1.5);
  }
  50% {
    filter: saturate(0.9);
  }
  100% {
    filter: saturate(2);
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hero {
    min-height: 75dvh;
  }
  .hero .blobs.left-blob {
    width: 400px;
    height: 400px;
    left: -35%;
    bottom: 5%;
  }
  .hero .blobs.right-blob {
    width: 400px;
    height: 400px;
    right: -40%;
    top: 5%;
  }
  .hero .boxed-in {
    width: 85%;
    position: relative;
    z-index: 2;
  }
  .hero .boxed-in h1 {
    font-size: 50px;
    font-weight: 700;
  }
  .hero .boxed-in p {
    width: 65%;
  }
}
@media (min-width: 200px) and (max-width: 767px) {
  .hero {
    min-height: 75dvh;
  }
  .hero .blobs.left-blob {
    width: 300px;
    height: 300px;
    left: -45%;
    bottom: 0%;
  }
  .hero .blobs.right-blob {
    width: 300px;
    height: 300px;
    right: -50%;
    top: -5%;
  }
  .hero .boxed-in {
    width: 100%;
  }
  .hero .boxed-in h1 {
    font-size: 30px;
  }
  .hero .boxed-in p {
    width: 100%;
  }
}
.about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: linear-gradient(127deg, rgba(115, 115, 115, 0.27), rgba(115, 115, 115, 0.16));
  padding: 3rem 5rem !important;
}
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 6px;
  background: linear-gradient(90deg, #008080, #D4AF37);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  pointer-events: none;
  border-radius: inherit;
  animation: animate-border 1.5s linear infinite;
}

@keyframes animate-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (min-width: 200px) and (max-width: 767px) {
  .about {
    padding: 2rem !important;
  }
  .about p {
    font-size: 12px;
  }
}
.glows, .services::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 70%;
  mix-blend-mode: screen;
}

.services {
  position: relative;
}
.services .card {
  position: relative;
  padding: 2rem 1.5rem;
  color: #FFFFFF;
  overflow: hidden;
  background: linear-gradient(127deg, rgba(115, 115, 115, 0.27), rgba(115, 115, 115, 0.16));
  min-height: 310px;
  border-radius: 0;
}
.services .card h4 {
  font-size: 20px;
}
.services .card p {
  font-size: 12px;
}
.services .card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 6px;
  background: linear-gradient(90deg, #008080, #D4AF37);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  pointer-events: none;
  border-radius: inherit;
  animation: animate-border 1.5s linear infinite;
}
.services .card img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  aspect-ratio: 7;
}
.services .card.one {
  border-top-left-radius: 30px;
}
.services .card.two {
  border-top-right-radius: 30px;
}
.services .card.three {
  border-bottom-left-radius: 30px;
}
.services .card.five {
  border-bottom-right-radius: 30px;
}
.services::before {
  right: -20%;
  background: #D4AF37;
}

@keyframes animate-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (min-width: 200px) and (max-width: 767px) {
  .services {
    position: relative;
  }
  .services .card {
    padding: 1.5rem;
    min-height: max-content;
  }
  .services .card img {
    width: 40px;
    height: 40px;
  }
  .services .card.one {
    border-radius: 30px 30px 0 0;
  }
  .services .card.two {
    border-top-right-radius: 0;
  }
  .services .card.three {
    border-bottom-left-radius: 0;
  }
  .services .card.five {
    border-radius: 0 0 30px 30px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .services {
    position: relative;
  }
  .services .card {
    padding: 1.5rem;
    min-height: 340px;
  }
  .services .card h4 {
    font-size: 20px;
  }
  .services .card p {
    font-size: 14px;
  }
  .services .card img {
    width: 40px;
    height: 40px;
  }
  .services .card.one {
    border-radius: 30px 30px 0 0;
  }
  .services .card.two {
    border-top-right-radius: 0;
  }
  .services .card.three {
    border-radius: 0;
  }
  .services .card.four {
    border-radius: 0 0 0 30px;
  }
  .services .card.five {
    border-radius: 0 0 30px 0;
  }
}
.glows, .why::after, .why::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 70%;
  mix-blend-mode: screen;
}

.why {
  position: relative;
}
.why .card {
  position: relative;
  padding: 2rem 4rem;
  color: #FFFFFF;
  overflow: hidden;
  background: linear-gradient(127deg, rgba(115, 115, 115, 0.27), rgba(115, 115, 115, 0.16));
  border-radius: 0;
}
.why .card h4 {
  font-size: 20px;
}
.why .card p {
  font-size: 12px;
}
.why .card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 6px;
  background: linear-gradient(90deg, #008080, #D4AF37);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  pointer-events: none;
  border-radius: inherit;
  animation: animate-border 1.5s linear infinite;
}
.why .card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 50%;
}
.why::before {
  right: -20%;
  bottom: -15%;
  width: 350px;
  height: 350px;
  background: #008080;
}
.why::after {
  left: -20%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  background: #D4AF37;
}

@keyframes animate-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.why .col-12:first-child .card {
  border-top-left-radius: 30px;
}

.why .col-12:last-child .card {
  border-bottom-right-radius: 30px;
}

.why .col-12:nth-child(odd) .card::after {
  background: #D4AF37;
}

.why .col-12:nth-child(even) .card::after {
  background: #008080;
}

@media (min-width: 200px) and (max-width: 767px) {
  .why .card {
    padding: 2rem;
  }
  .why .card h4 {
    font-size: 18px;
  }
  .why .card p {
    font-size: 11px;
  }
  .why .card::after {
    width: 25px;
  }
  .why::after {
    top: 40%;
  }
}
.glows, .process::after, .process::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 70%;
  mix-blend-mode: screen;
}

.process {
  position: relative;
}
.process .card {
  position: relative;
  padding: 2rem 4rem;
  color: #FFFFFF;
  overflow: hidden;
  background: linear-gradient(127deg, rgba(115, 115, 115, 0.27), rgba(115, 115, 115, 0.16));
  border-radius: 0;
}
.process .card h4 {
  font-size: 20px;
}
.process .card p {
  font-size: 12px;
}
.process .card::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 6px;
  background: linear-gradient(90deg, #008080, #D4AF37);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: destination-out;
  pointer-events: none;
  border-radius: inherit;
  animation: animate-border 1.5s linear infinite;
}
.process .card::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 50%;
}
.process .card.even::after {
  right: 0;
  top: 0;
  background: #008080;
}
.process .card.odd::after {
  left: 0;
  bottom: 0;
  background: #D4AF37;
}
.process .card :first-child {
  border-top-left-radius: 30px;
}
.process .card :last-child {
  border-bottom-right-radius: 30px;
}
.process::before {
  right: -20%;
  bottom: -15%;
  width: 300px;
  height: 300px;
  background: #D4AF37;
}
.process::after {
  left: -20%;
  bottom: -40%;
  z-index: -1;
  width: 350px;
  height: 350px;
  background: #008080;
}

@keyframes animate-border {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@media (min-width: 200px) and (max-width: 767px) {
  .process .card {
    position: relative;
    padding: 2rem;
  }
  .process .card h4 {
    font-size: 18px;
  }
  .process .card p {
    font-size: 11px;
  }
  .process .card::after {
    width: 25px;
  }
  .process::before {
    bottom: 35%;
  }
  .process::after {
    bottom: -30%;
  }
}
.cta {
  background: #008080;
  border-radius: 30px 0 30px 0;
  padding: 2rem 3rem;
  margin-top: 10rem !important;
  margin-bottom: 3rem;
  position: relative;
}
.cta .card {
  color: #FFFFFF;
}
.cta .card h3 {
  font-size: 30px;
}
.cta .card p {
  font-weight: light;
  font-size: 14px;
}
.cta .card .btn {
  background: #FFFFFF;
  color: #121212;
  height: 40px;
  width: max-content;
  padding-right: 70px;
  padding-left: 70px;
  border-radius: 100px;
  text-decoration: none;
}
.cta .card-img {
  position: absolute;
  right: 0;
  top: 0%;
  transform: translateY(-30%);
  width: 40%;
}
.cta .card-img img {
  width: 100%;
  height: 100%;
}

@keyframes repeated-pull {
  0% {
    transform: translateY(-35%);
  }
  100% {
    transform: translateY(-30%);
  }
}
@media (min-width: 200px) and (max-width: 767px) {
  .cta {
    padding: 2rem 1.5rem;
    margin-top: 5rem !important;
    margin-bottom: 0rem;
  }
  .cta .card {
    color: #FFFFFF;
  }
  .cta .card h3 {
    font-size: 22px;
  }
  .cta .card p {
    font-size: 12px;
  }
  .cta .card-img {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cta .card {
    color: #FFFFFF;
  }
  .cta .card h3 {
    font-size: 22px;
  }
  .cta .card p {
    font-size: 12px;
  }
  .cta .card-img {
    position: absolute;
    right: 0;
    top: 0%;
    transform: translateY(-30%) translateX(5%);
    width: 45%;
  }
  .cta .card-img img {
    width: 100%;
    height: 100%;
  }
}
.footer {
  margin-top: 4rem;
}
.footer h4 {
  font-size: 18px;
}
.footer .copyright {
  border-top: 1px solid;
  border-color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
}
.footer .navbar-brand img {
  width: 100px;
  opacity: 50%;
}
.footer .navbar-brand p {
  font-size: 32px;
  line-height: 1;
  font-weight: 400;
}
.footer .this-text {
  font-size: 14px;
  font-weight: 300;
  word-spacing: 8px;
  width: 80%;
  white-space: pre-wrap;
  margin-left: 5px !important;
}
.footer .card {
  background: transparent;
  color: #FFFFFF;
}
.footer .card .navbar-nav .nav-link {
  font-size: 12px;
  text-transform: capitalize;
  font-weight: 200;
  color: #FFFFFF;
  transition: all 0.5s linear;
  text-decoration: none;
}
.footer .card .navbar-nav .nav-link:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer .card .social-images {
  width: 40px;
}

@media (min-width: 200px) and (max-width: 767px) {
  .footer {
    margin-top: 1rem;
  }
  .footer h4 {
    font-size: 16px;
  }
  .footer .copyright {
    font-size: 12px;
  }
  .footer .navbar-brand img {
    width: 50px;
  }
  .footer .navbar-brand p {
    font-size: 20px;
  }
  .footer .this-text {
    width: 100%;
    word-spacing: 4px;
    margin-left: 0px !important;
  }
  .footer .card .social-images {
    width: 30px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #121212;
  color: #FFFFFF;
  line-height: 1.6;
  position: relative !important;
  overflow-x: hidden;
}

html, body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  display: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto !important;
}

h1, h2, h3, h4 {
  margin-bottom: 1rem;
}

.btn-acc {
  background: #D4AF37;
  color: #FFFFFF;
  height: 40px;
  min-width: 120px;
  border-radius: 100px;
  text-decoration: none;
}
.btn-acc:hover {
  color: #FFFFFF;
  background: #D4AF37 !important;
}

.btn-sec, .btn-sec-outline {
  background: #008080;
  border: 1px solid #008080;
  color: #FFFFFF;
  height: 40px;
  min-width: 120px;
  border-radius: 100px;
  text-decoration: none;
}
.btn-sec:hover, .btn-sec-outline:hover {
  color: #FFFFFF;
  background: #008080 !important;
}

.btn-sec-outline {
  background: transparent;
  border: 1px solid #008080;
}

.em-texts {
  color: #008080;
}

.heading-texts {
  color: transparent;
  background: linear-gradient(90deg, #FFFFFF 30.77%, #D4AF37 48.08%, #008080 64.42%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 40px;
}

.floating-btn, .floating-btn:focus {
  position: fixed;
  top: 75px;
  transform: rotate(0);
  right: 5%;
  z-index: 1000;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  color: #FFFFFF;
  background: linear-gradient(127.25deg, rgba(115, 115, 115, 0.8117647059) 3.5%, #313131 36.45%);
  border: 2px solid #008080;
  box-shadow: 0px 2px 20px #D4AF37;
  transition: all 0.5s ease-in-out, transform 1s ease-in-out;
  scale: 1;
  animation: zoom 0.5s linear 0s infinite forwards alternate-reverse;
}

.floating-btn.active {
  top: calc(0% + 140px);
  right: 9%;
  transform: rotate(360deg);
}

@keyframes zoom {
  0% {
    scale: 1;
  }
  0% {
    scale: 1.1;
  }
}
@media (min-width: 200px) and (max-width: 767px) {
  .heading-texts {
    font-size: 30px;
  }
  .em-texts {
    color: #D4AF37;
  }
}

/*# sourceMappingURL=styles.css.map */
