﻿.wrapper {
  max-width: 100%;
}

.youtube {
  background-color: #000;
  margin-bottom: 0px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.youtube img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  opacity: 1;
}

.youtube .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}

.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26.0px;
  border-color: transparent transparent transparent #fff;
}

.youtube img,
.youtube .play-button {
  cursor: pointer;
}

.youtube img,
.youtube iframe,
.youtube .play-button,
.youtube .play-button:before {
  position: absolute;
}

.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
 body {
  min-height: 0vw;
  font-size: calc(0.4241516966067865vw + 0.4245259481037923em);
}

/* Max Font Size */
@media screen and (min-width:1660px) {
  body {
    font-size: 0.8645833333333333em;
  }
}

/* Min Font Size */
@media screen and (max-width:991px) {
  body {
    font-size: calc(0.20181634712411706vw + 0.5625em);
  }
}

.container {
  max-width: 120em;
}

@media only screen and (min-width: 1600px) {
  .link {
    font-size: 1.1em;
  }

}


/* Desktop Only CSS (i.e. hover states) */
@media only screen and (min-width: 992px) {}

/* Main Variables */
:root {
  --main-dark: black;
  --main-light: white;
}

/* Global Styles */
::selection {
  background: var(--main-dark);
  color: var(--main-light);
  text-shadow: none;
}

img::selection,
svg::selection {
  background: transparent;
}

/* Link color inherits from parent font color  */
a {
  color: inherit;
}

/* Disable / enable clicking on an element and its children  */
.no-click {
  pointer-events: none;
}

.can-click {
  pointer-events: auto;
}

/* Target any element with a certain "word" in the class name  */
[class*="spacer"] {}

/*RichText Margin of First and Last Child*/
.w-richtext>*:first-child {
  margin-top: 0;
}

.w-richtext>*:last-child {
  margin-bottom: 0;
}


/*Testimonial slider*/
.testimonials_slider .w-slider-dot {
  width;
  50px;
  background-color: #D9D9D9;
}

.testimonials_slider .w-slider-dot.w-active {
  background-color: #1e64c4;
}

/*
@media only screen and (min-width: 320px) and (max-width: 992px)  {
.testimonials_slider .w-slider-dot{
background-color: black;
}
*/


/*Video Testimonial slider*/
.video_testimonials_slider .w-slider-dot {
  width;
  50px;
  background-color: #D9D9D9;
}

.video_testimonials_slider .w-slider-dot.w-active {
  background-color: #1e64c4;
}

/*
@media only screen and (min-width: 320px) and (max-width: 992px)  {
.video_testimonials_slider .w-slider-dot{
background-color: black;
}
*/


/*Gallery slider*/
.gallery_slider .w-slider-dot {
  background-color: #D9D9D9;
}

.gallery_slider .w-slider-dot.w-active {
  background-color: #1e64c4;
}

/*
@media only screen and (min-width: 320px) and (max-width: 992px)  {
.gallery_slider .w-slider-dot{
background-color: black;
}
*/

.smile_image-wrap {
  aspect-ratio: 1 / 1;
}
 
/* Pulsing Outline */
.pulsing-outline {
  box-shadow: 0 0 0 0 rgba(255, 49, 185, 1);
  animation: pulsing-outline 2s infinite;
}

@keyframes pulsing-outline {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 49, 185, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 49, 185, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 49, 185, 0);
  }
}



/* Scroll Indicator */
.scroll-indicator {
  position: relative;
  overflow: hidden;
}

.scroll-indicator::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, black, transparent);
  position: absolute;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  transform: translateY(-101%);
  animation: scroll-indicator 1.5s ease infinite;
}

@keyframes scroll-indicator {
  0% {
    transform: translateY(-101%);
  }

  35% {
    transform: translateY(0%);
  }

  75% {
    transform: translateY(0%);
  }

  100% {
    transform: translateY(101%);
  }
}



/* Animate Circle */
:root {
  --circle-btn-bg: #915ff2;
  --circle-btn-text: white;
  --circle-btn-speed: 0.4s;
  --circle-btn-half-speed: 0.25s;
  --circle-ease-out: cubic-bezier(0.61, 1, 0.88, 1);
  --circle-ease-in: cubic-bezier(0.12, 0, 0.39, 0);
}

.reveal-circle {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: -webkit-radial-gradient(white);
}

.reveal-circle:hover {
  color: var(--circle-btn-text);
  background-color: var(--circle-btn-bg);
  transition: background-color 0.0s linear var(--circle-btn-speed);
}

.reveal-circle::after {
  pointer-events: none;
  background-color: var(--circle-btn-bg);
  transform: translateY(5em);
  content: "";
  z-index: 1;
  position: absolute;
  width: 100%;
  padding-top: 100%;
  left: 0%;
  top: 0%;
  right: 0%;
  bottom: auto;
  border-radius: 50%;
  transition: border-radius var(--circle-btn-half-speed) var(--circle-ease-in) 0.0s,
    transform var(--circle-btn-speed) var(--circle-ease-in);
}

.reveal-circle:hover::after {
  border-radius: 0%;
  transform: translateY(0em);
  transition: border-radius var(--circle-btn-half-speed) var(--circle-ease-out) var(--circle-btn-half-speed),
    transform var(--circle-btn-speed) var(--circle-ease-out);
}





/* Animate Line */
:root {
  --animate-line-color: currentColor;
  --animate-line-speed: 0.3s;
  --animate-line-ease: cubic-bezier(0.12, 0, 0.39, 0);
}

.animate-line {
  display: inline-block;
  position: relative;
  overflow-x: hidden;
}

.animate-line::after {
  pointer-events: none;
  background-color: var(--animate-line-color);
  content: "";
  height: 1px;
  position: absolute;
  left: auto;
  top: auto;
  right: 0%;
  bottom: 0%;
  width: 0%;
  transition: width var(--animate-line-ease) var(--animate-line-speed);
}

.animate-line:hover::after {
  width: 100%;
  right: auto;
  left: 0%;
}
