:root {
  --blue-color:#29149C;
  --green-color:#00B04E;
  --red-color: #E40000;
  --white-color: #fffaf8;
  --black-color: #000000;
  --gray-color: #808080;
  --swiper-navigation-color:#00B04E;
  --swiper-theme-color:#00B04E;
}

body {
  background-color: #fffaf8;
  font-size: 1em;
  font-family: "Poppins";
  font-weight: 400;
  overflow-x: hidden;
}

.blue-color {
  color: #29149C !important;
}

.blue-color-bg {
  background-color: #29149C !important;
}

.green-color {
  color: #00B04E !important;
}

.green-color-bg {
  background-color: #00B04E !important;
}

.container {
  max-width: 85%;
}

html {
  font-size: 16px;
}

.text-primary {
  color: #29149C !important;
}

.btn-primary {
  background: #00B04E !important;
  border: 0;
  border-radius: 50px;
}

.bg-alt {
  background-color: #ecf5f0 !important;
}

footer {
  position: relative;
  z-index: 10;
  font-size: 0.8rem;
}

@media (max-width: 680px) {
  .container {
    max-width: 92%;
  }
}
@media (min-width: 320px) {
  html {
    font-size: calc(12px + 0.2vw);
  }
}
@media (min-width: 768px) {
  html {
    font-size: calc(14px + 0.3vw);
  }
}
@media (min-width: 1200px) {
  html {
    font-size: calc(15px + 0.2vw);
  }
}
@media (min-width: 1920px) {
  html {
    font-size: calc(16px + 0.5vw);
  }
}
@media (min-width: 2560px) {
  html {
    font-size: calc(17px + 0.6vw);
  }
}
@media (min-width: 3840px) {
  html {
    font-size: calc(18px + 0.8vw);
  }
}
.header-placeholder {
  min-height: 120px;
}

.navbar {
  opacity: 0;
  animation: drop 500ms ease-in 100ms 1 normal forwards;
}
@keyframes drop {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.navbar .navbar-brand img {
  max-height: 55px;
  width: auto;
}
@media screen and (max-width: 768px) {
  .navbar .navbar-brand img {
    max-height: 40px;
  }
}
.navbar a {
  color: var(--green-color);
  font-size: 0.8rem;
}
.navbar a:hover {
  color: var(--blue-color);
}
.navbar li ul {
  display: block;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease-in-out;
}
.navbar li:hover ul {
  display: block;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px);
}
.navbar li.active a {
  color: var(--blue-color);
}

[data-animated] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

[data-animated].animate {
  opacity: 1;
  transform: translateY(0);
}

.counter[data-animated] {
  opacity: 1;
}

[data-animated] img, img[data-animated], [data-animated] video, video[data-animated] {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s linear;
}

[data-animated].animate img, img[data-animated].animate, [data-animated].animate video, video[data-animated].animate {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.social-icons a {
  transition: all 0.3s ease-in-out;
  padding: 5px;
  line-height: 25px;
  display: inline-block;
  font-size: 18px;
  background: #00B04E;
  border-radius: 50%;
  color: #fff;
  width: 35px;
  height: 35px;
  text-align: center;
}
.social-icons a i {
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.social-icons a:hover {
  background-color: var(--blue-color);
}

#footer .list-unstyled li {
  margin-bottom: 10px;
  line-height: 1.4;
}
#footer .list-unstyled li a:hover {
  color: #00B04E;
}

@media screen and (max-width: 768px) {
  footer {
    font-size: 1rem;
  }
  .navbar a {
    display: block;
    text-align: center;
  }
}
.sitemap-section a {
  color: #00B04E;
  text-decoration: none;
}
.sitemap-section a:hover {
  color: var(--blue-color);
}/*# sourceMappingURL=custom.css.map */