body {
  font-family: "Roboto", sans-serif;
  position: relative;
  font-size: 18px;
  color: #333333;
  overflow-x: clip;
  scroll-behavior: smooth;
}

a {
  color: #6A4C93;
  text-decoration: none;
}
a:hover {
  color: #ec549e;
}

img {
  max-width: 100%;
}

h1,
h2 {
  color: #6A4C93;
  font-weight: 700;
  margin-bottom: 20px;
}
h1 span,
h2 span {
  font-size: 70%;
  display: block;
  color: #ec549e;
}

h3 {
  color: #6A4C93;
}
h3 span {
  font-size: 80%;
  display: block;
  color: #ec549e;
}

.bg-gra {
  background: linear-gradient(to bottom, rgba(236, 84, 158, 0.1), rgba(106, 76, 147, 0.1));
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.preloader.fade-out {
  opacity: 0;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(76, 175, 80, 0.3);
  border-radius: 50%;
  border-top-color: #6A4C93;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.navbar {
  transition: all 0.3s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 150;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.navbar.scrolled .navbar-brand {
  transition: transform 0.3s ease;
}
.navbar.scrolled .navbar-brand img {
  height: 60px;
  transition: all 0.3s ease;
}
.navbar.scrolled .navbar-brand:hover {
  transform: scale(1.05);
}
.navbar .navbar-brand img {
  height: 100px;
  transition: all 0.3s ease;
}
.navbar .navbar-brand:hover {
  transform: scale(1.05);
}
.navbar .nav-item {
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 15px;
  position: relative;
  font-size: 18px;
  transition: background-color 0.3s ease;
}
.navbar .nav-item:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ec549e;
  transition: width 0.3s ease;
}
.navbar .nav-item:hover::after {
  width: 100%;
}
.navbar .nav-item .nav-link {
  color: #6A4C93;
}
.navbar .nav-item .nav-link:hover {
  color: #ec549e;
}
.navbar .dropdown-menu {
  padding: 0;
  border: 0;
  min-width: 15em;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}
.navbar .dropdown-menu li {
  border-bottom: 1px solid #eee;
  margin-left: 0;
}
.navbar .dropdown-menu li:last-child {
  border-bottom: none;
}
.navbar .dropdown-menu li .dropdown-item {
  padding: 0.4rem 0.8rem;
  text-transform: capitalize;
  white-space: wrap;
  transition: background-color 0.3s ease;
}
.navbar .dropdown-menu li .dropdown-item:hover {
  background-color: #ec549e;
  color: #ffffff;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
    transition: height 0.35s ease;
    z-index: 112;
  }
}
.can-menu {
  padding: 0;
}
.can-menu ul {
  list-style-type: none;
  padding: 0;
  width: 100%;
}
.can-menu ul li {
  list-style-type: none;
  border-bottom: 1px solid #f1f1f1;
  padding: 0px 15px;
}
.can-menu ul li:hover {
  background-color: #ec549e;
  color: #ffffff;
}
.can-menu ul li a {
  color: #333333;
  font-weight: 500;
}
.can-menu ul li a:hover {
  color: #ffffff;
}
.can-menu ul li a:hover a {
  color: #6A4C93;
}
.can-menu ul li .dropdown-menu {
  margin: 0 20px !important;
  width: 100%;
}
.can-menu ul li .dropdown-menu .dropdown-item {
  font-size: 16px;
  white-space: wrap;
}
.can-menu ul li .dropdown-toggle::after {
  float: right;
  margin-top: 10px;
}
.can-menu ul li .active {
  color: #6A4C93;
}
.can-menu ul li li {
  font-weight: normal;
  padding: 3px 0;
  border-left: 1px solid #f1f1f1;
}
.can-menu ul li li a {
  color: #333333;
}
.can-menu ul li li a:hover {
  background-color: #ec549e;
  color: #ffffff;
}

.offcanvas-title h2 {
  font-size: 20px;
  font-weight: 600;
}

.offcanvas {
  width: 300px !important;
}

.genial-btn {
  background-color: #6A4C93;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-right: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.genial-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}
.genial-btn:hover {
  background-color: #ec549e;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}
.genial-btn:hover:before {
  left: 100%;
}
.genial-btn.outline {
  background-color: transparent;
  border: 2px solid #ffffff;
}
.genial-btn.outline:hover {
  background-color: #ffffff;
  color: #6A4C93;
}

.genial-carousel {
  position: relative;
  overflow: hidden;
}
.genial-carousel .carousel-inner {
  z-index: 95;
}
.genial-carousel .carousel-inner .carousel-item {
  height: 100vh;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}
.genial-carousel .carousel-inner .carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 209, 102, 0.7), rgba(236, 84, 158, 0.7));
  z-index: 1;
}
.genial-carousel .carousel-inner .carousel-item.video-slide::before {
  background: linear-gradient(to bottom, rgba(106, 76, 147, 0.6), rgba(236, 84, 158, 0.6));
}
.genial-carousel .carousel-inner .carousel-item .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  transform: scale(1);
  transition: transform 10s ease;
}
.genial-carousel .carousel-inner .carousel-item.active .background-image {
  transform: scale(1.1);
}
.genial-carousel .carousel-caption {
  bottom: auto;
  top: 60%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: left;
}
@media (min-width: 991px) {
  .genial-carousel .carousel-caption {
    width: 50%;
  }
}
.genial-carousel .carousel-caption strong {
  line-height: 1;
  display: block;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-30px);
  transition: opacity 0.5s ease;
  transition-property: opacity, transform;
}
@media (max-width: 768px) {
  .genial-carousel .carousel-caption strong {
    font-size: 2.5rem;
  }
}
.genial-carousel .carousel-caption p {
  font-size: 1.4rem;
  margin-bottom: 30px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s 0.3s;
  transition-property: opacity, transform;
  transition-delay: 0.3s;
}
.genial-carousel .carousel-caption .btn-group {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s 0.6s;
  transition-property: opacity, transform;
  transition-delay: 0.6s;
}
.genial-carousel .carousel-item.active .carousel-caption strong,
.genial-carousel .carousel-item.active .carousel-caption p,
.genial-carousel .carousel-item.active .carousel-caption .btn-group {
  opacity: 1;
  transform: translateY(0);
}
.genial-carousel .carousel-btn {
  background-color: #6A4C93;
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-right: 15px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.genial-carousel .carousel-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s ease;
  z-index: -1;
}
.genial-carousel .carousel-btn:hover {
  background-color: #ec549e;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.genial-carousel .carousel-btn:hover:before {
  left: 100%;
}
.genial-carousel .carousel-btn.outline {
  background-color: transparent;
  border: 2px solid #ffffff;
}
.genial-carousel .carousel-btn.outline:hover {
  background-color: #ffffff;
  color: #6A4C93;
}
.genial-carousel .carousel-indicators {
  bottom: 30px;
  z-index: 96;
}
.genial-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  position: relative;
  transition: all 0.3s ease;
}
.genial-carousel .carousel-indicators button.active {
  background-color: #ffffff;
  transform: scale(1.2);
}
.genial-carousel .carousel-indicators button:before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0);
  transition: all 0.3s ease;
}
.genial-carousel .carousel-indicators button.active:before {
  border-color: rgba(255, 255, 255, 0.5);
}
.genial-carousel .carousel-control-prev,
.genial-carousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 97;
}
.genial-carousel .carousel-control-prev:hover,
.genial-carousel .carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 0.4);
}
.genial-carousel .carousel-control-prev {
  left: 30px;
}
.genial-carousel .carousel-control-next {
  right: 30px;
}
.genial-carousel:hover .carousel-control-prev,
.genial-carousel:hover .carousel-control-next {
  opacity: 1;
}
.genial-carousel .video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.genial-carousel .video-container video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.shape {
  position: absolute;
  z-index: 90;
}
.shape-1 {
  top: 20%;
  left: 10%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 209, 102, 0.3);
  animation: float 6s ease-in-out infinite;
}
.shape-2 {
  bottom: 20%;
  right: 10%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(236, 84, 158, 0.3);
  animation: float 8s ease-in-out infinite;
}
.shape-3 {
  top: 40%;
  right: 20%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(106, 76, 147, 0.3);
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.ws-block {
  padding: 80px 0;
}
@media (max-width: 576px) {
  .ws-block {
    padding: 50px 0;
  }
}
.ws-block ul li {
  margin-bottom: 10px;
}
.ws-block .icon {
  color: #6A4C93;
  width: 100px;
  height: 100px;
  text-align: center;
  padding-top: 27px;
  font-size: 38px;
}

.services {
  padding: 80px 0;
  background-color: #f9f9f9;
  background: linear-gradient(to bottom, rgba(255, 209, 102, 0.2), rgba(236, 84, 158, 0.2));
}
@media (max-width: 576px) {
  .services {
    padding: 50px 0;
  }
}
.services .section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #6A4C93;
  position: relative;
}
.services .section-title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ec549e;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.services .service-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  padding-bottom: 0;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.services .service-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, rgba(106, 76, 147, 0.1), rgba(106, 76, 147, 0.05));
  transition: height 0.5s ease;
  z-index: -1;
}
.services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
.services .service-card:hover:before {
  height: 100%;
}
.services .service-card:hover .service-icon {
  background-color: #6A4C93;
  transform: rotateY(180deg);
}
.services .service-card:hover .service-icon i {
  transform: rotateY(180deg);
}
.services .service-card:hover .service-title {
  color: #ec549e;
}
.services .service-card .service-icon {
  width: 80px;
  height: 80px;
  background-color: #ec549e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.services .service-card .service-icon i {
  font-size: 36px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.services .service-card .service-title {
  color: #6A4C93;
  font-weight: 600;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.services .service-card .service-description {
  color: #666666;
}
.services .service-card .service-btn {
  display: inline-block;
  margin-top: 15px;
  color: #6A4C93;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.services .service-card .service-btn:hover {
  color: #ec549e;
  transform: translateX(5px);
}

.stats {
  background: linear-gradient(to bottom, rgba(236, 84, 158, 0.9), rgba(106, 76, 147, 0.9));
  padding: 80px 0;
  color: #ffffff;
}
@media (max-width: 576px) {
  .stats {
    padding: 50px 0;
  }
}
.stats .counter-box {
  text-align: center;
  padding: 20px;
}
.stats .counter-box .counter-icon {
  font-size: 40px;
  color: #FFD166;
  margin-bottom: 15px;
}
.stats .counter-box .counter, .stats .counter-box .count {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}
.stats .counter-box .counter-text {
  font-size: 18px;
  font-weight: 500;
}

.story {
  padding: 100px 0;
  background: linear-gradient(to bottom, rgba(236, 84, 158, 0.1), rgba(106, 76, 147, 0.1));
  position: relative;
  overflow: hidden;
}
.story .story-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(to 45deg, rgba(255, 209, 102, 0.1), rgba(236, 84, 158, 0.1));
  z-index: 1;
}
.story .story-shape-1 {
  top: -150px;
  left: -150px;
}
.story .story-shape-2 {
  bottom: -150px;
  right: -150px;
}
.story .story-content {
  position: relative;
  z-index: 2;
}
.story .story-content .story-title {
  color: #6A4C93;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}
.story .story-content .story-title:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #ec549e;
  bottom: -10px;
  left: 0;
}
.story .story-content .story-text {
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
}
.story .story-content .story-text .story-highlight {
  color: #6A4C93;
  font-weight: 600;
}
.story .story-image {
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  position: relative;
}
.story .story-image img {
  transition: all 0.3s ease;
}
.story .story-image:hover img {
  transform: scale(1.05);
}

.testimonials {
  padding: 80px 0;
  background: linear-gradient(to bottom, rgba(236, 84, 158, 0.2), rgba(106, 76, 147, 0.2));
  font-size: 16px;
}
@media (max-width: 576px) {
  .testimonials {
    padding: 50px 0;
  }
}
.testimonials .section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #6A4C93;
  position: relative;
}
.testimonials .section-title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ec549e;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.testimonials .testimonial-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 20px 15px;
  position: relative;
}
.testimonials .testimonial-card:before {
  content: "\f10d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 24px;
  color: #ec549e;
  opacity: 0.2;
}
.testimonials .testimonial-card .testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
  color: #555555;
}
.testimonials .testimonial-card .testimonial-author {
  display: flex;
  align-items: center;
}
.testimonials .testimonial-card .testimonial-author .testimonial-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials .testimonial-card .testimonial-author .testimonial-info h5 {
  margin-bottom: 5px;
  color: #6A4C93;
}
.testimonials .testimonial-card .testimonial-author .testimonial-info p {
  color: #aaaaaa;
  margin: 0;
}

.faq {
  padding: 80px 0;
  background: linear-gradient(to bottom, rgba(236, 84, 158, 0.1), rgba(106, 76, 147, 0.1));
}
@media (max-width: 576px) {
  .faq {
    padding: 50px 0;
  }
}
.faq .section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #6A4C93;
  position: relative;
}
.faq .section-title:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background: #ec549e;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}
.faq .accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 10px !important;
  overflow: hidden;
}
.faq .accordion-item .accordion-button {
  background-color: #ffffff;
  color: #6A4C93;
  font-weight: 600;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.faq .accordion-item .accordion-button:not(.collapsed) {
  background-color: #6A4C93;
  color: #ffffff;
}
.faq .accordion-item .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq .accordion-item .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(0, 0, 0, 0.1);
}
.faq .accordion-item .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236A4C93'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.faq .accordion-item .accordion-body {
  padding: 20px;
  color: #666666;
}

.qcontact {
  padding: 80px 0;
  background-color: #ec549e;
  color: #ffffff;
  padding-bottom: 0px;
  border-radius: 0 0 50px 50px;
  position: relative;
  z-index: 2;
}
@media (max-width: 576px) {
  .qcontact {
    padding: 50px 0;
  }
}
@media (max-width: 576px) {
  .qcontact {
    border-radius: 0 0 20px 20px;
  }
}
.qcontact .q-img {
  margin-top: -130px;
  margin-left: -20px;
}
.qcontact h2 {
  color: #FFD166;
}
.qcontact .form-group {
  position: relative;
}
.qcontact .form-group input:focus + label,
.qcontact .form-group input:valid + label,
.qcontact .form-group textarea:focus + label,
.qcontact .form-group textarea:valid + label {
  font-size: 12px;
  color: #ffffff;
  top: -7px;
  left: 10px;
  padding: 0px 10px 0px 10px;
  background-color: #ec549e;
  border-radius: 2px;
}
.qcontact .form-group label {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.6);
  padding: 7px 15px;
  font-size: 16px;
}
.qcontact .form-group input[type=text]:focus {
  outline: none;
}
.qcontact label {
  font-size: 16px;
}
.qcontact .form-control {
  background: none;
}

.contact {
  background: linear-gradient(to bottom, rgba(106, 76, 147, 0.1), rgba(106, 76, 147, 0.2));
  background-color: #6A4C93;
  color: #ffffff;
  border: 0;
  border-radius: 30px;
}
.contact h3 {
  color: #FFD166;
  margin-bottom: 25px;
}
.contact .form-group {
  position: relative;
}
.contact .form-group input:focus + label,
.contact .form-group input:valid + label,
.contact .form-group textarea:focus + label,
.contact .form-group textarea:valid + label {
  font-size: 12px;
  color: #6A4C93;
  top: -7px;
  left: 10px;
  padding: 0px 10px 0px 10px;
  background-color: #ffffff;
  border-radius: 2px;
}
.contact .form-group label {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  pointer-events: none;
  color: #afbdcf;
  padding: 7px 15px;
  font-size: 16px;
}
.contact .form-group input[type=text]:focus {
  outline: none;
}

.refer {
  background: linear-gradient(to bottom, rgba(255, 209, 102, 0.2), rgba(236, 84, 158, 0.2));
}
.refer .form-group {
  position: relative;
}
.refer .form-group input:focus + label,
.refer .form-group input:valid + label,
.refer .form-group textarea:focus + label,
.refer .form-group textarea:valid + label, .refer .form-group .date {
  font-size: 12px;
  color: #6A4C93;
  top: -7px;
  left: 10px;
  padding: 0px 10px 0px 10px;
  background-color: #ffffff;
  border-radius: 2px;
}
.refer .form-group label {
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  pointer-events: none;
  color: #666666;
  padding: 7px 15px;
  font-size: 16px;
}
.refer .form-group input[type=text]:focus {
  outline: none;
}
.refer label {
  color: #666666;
  font-size: 16px;
}

footer {
  background: linear-gradient(to top, #6a4c93, #6a4c93);
  margin-top: -50px;
  font-size: 16px;
  z-index: 1;
  color: #ffffff;
  padding: 100px 0 30px;
  position: relative;
  overflow: hidden;
}
footer a {
  color: #ffffff;
}
footer a:hover {
  color: #FFD166;
}
footer .footer-shape {
  position: absolute;
  opacity: 0.1;
}
footer .footer-shape-1 {
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: #FFD166;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
footer .footer-shape-2 {
  bottom: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: #ec549e;
  border-radius: 50%;
  transform: translate(30%, 30%);
}
footer .footer-widget .footer-logo {
  margin-bottom: 25px;
}
footer .footer-widget .footer-about {
  margin-bottom: 20px;
  line-height: 1.7;
}
footer .footer-widget .footer-contact p {
  display: flex;
}
footer .footer-widget .footer-contact p i {
  margin-right: 15px;
  margin-top: 5px;
  width: 20px;
  color: #FFD166;
  text-align: center;
}
footer .footer-widget .footer-contact h3 {
  font-size: 20px;
  color: #ffffff;
}
footer .footer-widget .footer-title {
  color: #FFD166;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}
footer .footer-widget .footer-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background: #ec549e;
}
footer .footer-widget .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .footer-widget .footer-links li {
  margin-bottom: 9px;
  transition: all 0.3s ease;
}
footer .footer-widget .footer-links li:hover {
  transform: translateX(5px);
}
footer .footer-widget .footer-links li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}
footer .footer-widget .footer-links li a:hover {
  color: #FFD166;
}
footer .footer-widget .footer-links li a i {
  margin-right: 8px;
  font-size: 12px;
}
footer .footer-widget .social-icons {
  margin-top: 25px;
}
footer .footer-widget .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  margin-right: 10px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}
footer .footer-widget .social-icons a:hover {
  background: #FFD166;
  color: #6A4C93;
  transform: translateY(-5px);
}
footer .footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #ec549e;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
}
.back-to-top:hover {
  background-color: #6A4C93;
}

.tooltip-inner {
  background-color: #6A4C93;
  padding: 8px 15px;
  border-radius: 5px;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #6A4C93;
}

.popover {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}
.popover .popover-header {
  background-color: #6A4C93;
  color: #ffffff;
  border: none;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

@media (max-width: 767px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
  .counter {
    font-size: 30px;
  }
  .counter-text {
    font-size: 16px;
  }
  .story-image {
    margin-top: 40px;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.gradient-bg {
  background: linear-gradient(to bottom, #FFD166, #ec549e, #6A4C93);
}

.ws-title {
  position: relative;
  width: 100%;
  height: 40vh;
  overflow: hidden;
  display: flex;
  color: #ffffff;
}
.ws-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 209, 102, 0.7), rgba(236, 84, 158, 0.7));
  z-index: 1;
}
@media (max-width: 768px) {
  .ws-title {
    height: 30vh;
  }
}
.ws-title img {
  position: absolute;
  width: 100%;
}
@media (max-width: 1140px) {
  .ws-title img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
}
.ws-title .title {
  position: absolute;
  bottom: 30px;
  width: 100%;
  z-index: 110;
}
.ws-title .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  z-index: 97;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.ws-title h1 {
  color: #ffffff;
  position: relative;
}
.ws-title h1:after {
  content: "";
  position: absolute;
  width: 60px;
  height: 3px;
  background: #FFD166;
  bottom: -10px;
  left: 0;
}
.ws-title a {
  color: #ffffff;
}

.team .team-card {
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: center;
}
.team .team-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(106, 76, 147, 0.1), rgba(106, 76, 147, 0.05));
  transition: height 0.5s ease;
  z-index: -1;
}
.team .team-card:hover {
  transform: translateY(-10px);
}

.s-links {
  text-align: center;
  margin-top: -50px;
  margin-bottom: 40px;
}
.s-links div {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 40px;
  background-color: #ffffff;
}
.s-links div a {
  cursor: pointer;
  outline: none;
  margin: 0 1px;
}
.s-links div a.outline {
  position: relative;
  z-index: 3;
  background: #fff;
  color: #fff;
  border: #fff solid 2px;
  border-radius: 100%;
  transition: all 0.2s linear;
  width: 32px;
  height: 32px;
  padding-top: 2px;
  display: inline-block;
  text-align: center;
  box-shadow: 0 0.1rem 0.1rem rgba(0, 0, 0, 0.15) !important;
}
.s-links div a.outline a {
  text-decoration: none;
}
.s-links div a.outline:hover {
  color: white;
  background: #1172c4;
  border-color: white;
  transition: all 0.2s linear;
}
.s-links div a.outline:active {
  border-radius: 4px;
}
.s-links div a.fb {
  color: #005397;
}
.s-links div a.fb:hover {
  background: #005397;
}
.s-links div a.tw {
  color: #00aedd;
}
.s-links div a.tw:hover {
  background: #00aedd;
}
.s-links div a.in {
  color: #005397;
}
.s-links div a.in:hover {
  background: #005397;
}
.s-links div a.gp {
  color: #e3411f;
}
.s-links div a.gp:hover {
  background: #e3411f;
}
.s-links div a.yt {
  color: #ca3737;
}
.s-links div a.yt:hover {
  background: #ca3737;
}
.s-links div a.pi {
  color: #cb2027;
}
.s-links div a.pi:hover {
  background: #cb2027;
}
.s-links div a.ig {
  color: #000;
}
.s-links div a.ig:hover {
  background: #333;
}

.list {
  font-size: 16px;
}
.list .icon {
  width: 50px;
  height: 50px;
  background-color: #ec549e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px;
  transition: all 0.3s ease;
  float: left;
  margin-right: 20px;
  padding: 0;
}
.list .icon i {
  font-size: 25px;
  color: #ffffff;
  transition: all 0.3s ease;
}
.list:hover .icon {
  background-color: #6A4C93;
  transform: rotateY(180deg);
}
.list:hover .icon i {
  transform: rotateY(180deg);
}

.gallery img {
  margin-bottom: 15px;
}

.gallery-sm img {
  max-height: 75px;
  margin-bottom: 5px;
}

.gallery-md img {
  max-height: 150px;
  margin-bottom: 5px;
}

.gallery-lg img {
  max-height: 200px;
  margin-bottom: 5px;
}/*# sourceMappingURL=app.css.map */