 
/*===========================
  COMMON css 
===========================*/
 :root {
  --font: "Poppins", sans-serif;
  --title-font: "Paytone One", sans-serif;
  --body-color: #1d2150;
  --heading-color: #1d2150;
  --lila-color: #b996fe;
  --rosa-color: #ffa2bc;
  --verde-color: #6dc1a0;
  --amarillo-color: #ffc147;
  --white: #ffffff;
}

.txt-color{
  color:var(--heading-color);
}

.lila-color{
  color:var(--lila-color);
}

.rosa-color{
  color:var(--rosa-color);
}

.amarillo-color{
  color:var(--amarillo-color);
}

.verde-color{
  color:var(--verde-color);
}

 
.lila-bg{
  background:var(--lila-color);
}

.rosa-bg{
  background:var(--rosa-color);
}

.amarillo-bg{
  background:var(--amarillo-color);
}

.verde-bg{
  background:var(--verde-color);
}

 


body {
  font-family: var(--font);
  font-weight: normal;
  font-style: normal;
  color: var(--body-color);
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

a,
button,
input,
textarea {
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
a:focus,
input:focus,
textarea:focus,
button:focus,
.navbar-toggler:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

i,
span,
a {
  display: inline-block;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

h1,
h2,
h3,
h4,
h5,
h6 {
   color: var(--heading-color);
  margin: 0px;
}

h1 {
  font-size: 48px;
	font-family:var(--title-font);
}

h2 {
  font-size: 42px;
	font-family:var(--title-font);
}

h3 {
  font-size: 28px;
	font-family:var(--title-font);
}

h4 {
  font-size: 22px;
	font-family:var(--title-font);
}

h5 {
  font-size: 18px;
	font-family:var(--title-font);
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--body-color);
  margin: 0px;
}

.bg_cover {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}





/*===== All Button Style =====*/
.ud-main-btn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    font-weight: 500;
    font-size: 16px;
    border-radius: 40px;
    padding: 15px 25px;
    border: 1px solid transparent;
    color: var(--white);
    cursor: pointer;
    z-index: 5;
    -webkit-transition: all 0.4s ease-out 0s;
    transition: all 0.4s ease-out 0s;
    background: var(--amarillo-color);
}
.ud-main-btn:hover {
  color: var(--white);
  background: var(--verde-color);
}

@media (max-width: 767px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.back-to-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--lila-color);
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 100%;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: var(--white);
}

.back-to-top:hover {
  color: var(--white);
  background: var(--heading-color);
}

/* ===== Header CSS ===== */
.fpc-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 199;
  
  background-color: rgba(255, 255, 255, 0.4);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky {
  position: fixed;
  z-index: 199;
  background-color: rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.sticky .navbar {
  padding: 0;
}

.navbar {
  padding: 0px 0;
  border-radius: 5px;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-brand {
    padding: 5px 0px;
  }
}

.fpc-header .navbar-brand img {
 /* max-width: 160px;*/
  height: 120px;
	transition:0.5s all;
}
.fpc-header.sticky .navbar-brand img {
 /* max-width: 160px;*/
  height: 80px;
}

.navbar-toggler {
  padding: 0;
}

.navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: var(--lila-color);
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

@media only screen and (max-width: 1199px)  {
 .fpc-header .navbar-brand img {
     height: 90px;
}
  .navbar-collapse {
    position: absolute;
    top: 100%;
    right: 0;
    max-width: 300px;
    width: 100%;
    background-color: var(--white);
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 0px;
    display: none;
    border-radius: 5px;
  }
  .navbar-collapse.show {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav {
    padding: 20px 30px;
  }
}

.navbar-nav .nav-item {
  position: relative;
  padding: 0px 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    padding: 0px 12px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item {
    padding: 0px;
  }
}

.navbar-nav .nav-item > a {
  font-size: 16px;
  font-weight: 400;
  color: var(--heading-color);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 20px 0px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a {
    display: block;
    padding: 8px 0;
    color: var(--heading-color);
  }
}

.navbar-nav .nav-item > a:hover, 
.navbar-nav .nav-item > a.active {
  color: var(--lila-color);
 }

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item > a:hover, .navbar-nav .nav-item > a.active {
    color: var(--lila-color);
    opacity: 1;
  }
}

 
.navbar-nav .nav-item:hover > a {
  color: var(--lila-color);
  opacity: 0.5;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item:hover > a {
    color: var(--lila-color);
    opacity: 1;
  }
}

 

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-btn {
    position: absolute;
    top: 50%;
    right: 50px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}

.navbar-btn .ud-main-btn {
  padding: 8px 16px;
  background: transparent;
}

.navbar-btn .ud-login-btn:hover {
  opacity: 0.5;
}

.navbar-btn .ud-white-btn {
  background: rgba(255, 255, 255, 0.2);
}

.navbar-btn .ud-white-btn:hover {
  background: white;
  color: var(--heading-color);
}

.sticky .navbar-toggler .toggler-icon {
  background-color: var(--heading-color);
}

.sticky .navbar-nav .nav-item:hover > a {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-nav .nav-item a {
  color: var(--heading-color);
}

.sticky .navbar-nav .nav-item a.active, .sticky .navbar-nav .nav-item a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn {
  color: var(--heading-color);
}

.sticky .navbar-btn .ud-main-btn.ud-login-btn:hover {
  color: var(--primary-color);
  opacity: 1;
}

.sticky .navbar-btn .ud-white-btn {
  background: var(--primary-color);
  color: var(--white);
}

.sticky .navbar-btn .ud-white-btn:hover {
  background: var(--heading-color);
}

/* ===== Hero CSS ===== */
.hero {
  background: url(../images/bg-header.jpg) no-repeat center var(--white);
  padding-top: 120px;
  min-height: 100vh;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero {
    padding-top: 100px;
  }
}

@media (max-width: 767px) {
  .hero {
    padding-top: 80px;
  }
}

.hero-content {
  position: relative;
  z-index: 100; 
  margin: 0 auto; 
  background-size: 100%;
 
}

.hero-img {
	border-radius:100%;
	overflow:hidden;
}

.hero-content .hero-title {
  font-size: 58px;
  line-height: 70px;
  text-align: left;
  margin-bottom: 30px;
}

.hero-content .sup-title {
    font-family: var(--font);
    font-size: 28px;
    text-transform: uppercase;
    line-height: 1.2;
    text-align: left;
    margin-bottom: 0px;
    position: relative;
    font-weight: 700;
}
.logo-fundacion{
	max-width:200px;
}

.hero-content .hero-desc {
  font-weight: normal;
  font-size: 22px;
  line-height: 35px;
  text-align: left;
  color: var(--heading-color);
  opacity: 1; 
  margin: auto;
  margin-bottom: 30px;
}


@media (max-width: 1199px) {

.hero-content .hero-title {
    font-size: 48px;
    line-height: 48px;
    text-align: left;
    margin-bottom: 30px;
}
.hero-content .sup-title {
     font-size: 28px; 
}
.hero-content .hero-desc {
    font-weight: normal;
    font-size: 18px;
    line-height: 30px; 
}

}
@media (max-width: 767px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .hero-content .hero-title {
    font-size: 38px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .hero-content .hero-title {
    font-size: 26px;
    line-height: 38px;
  }

  .hero-content {
    position: relative;
    z-index: 100;
    max-width: 780px;
    margin: 0 auto;
     background-size: 100%;
     padding: 65px 30px;
}
}



@media (max-width: 767px) {
  .hero-content .hero-desc {
    font-size: 16px;
    line-height: 30px;
  }
}

.hero-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hero-buttons .ud-main-btn {
  margin: 8px;
}

@media (max-width: 767px) {
  .hero-buttons .ud-main-btn {
    margin: 5px;
  }
}

@media (max-width: 767px) {
  .hero-buttons .ud-main-btn {
    padding: 12px 16px;
  }
}

.hero-buttons .ud-white-btn {
  background: var(--white);
  color: var(--heading-color);
}

.hero-buttons .ud-white-btn:hover {
  -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.2);
  background: #fefefe;
  color: var(--primary-color);
}

.hero-buttons .ud-link-btn:hover {
  color: var(--white);
  background: transparent;
  opacity: 0.5;
}

.hero-brands-wrapper {
  text-align: center;
  margin-bottom: 40px;
}

.hero-brands-wrapper img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0.5;
  max-width: 250px;
}

.hero-brands-wrapper img:hover {
  opacity: 1;
}

.hero-image {
  max-width: 845px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-image img {
  max-width: 100%;
  text-align: center;
}

.hero-image .shape {
  position: absolute;
  z-index: -1;
}

.hero-image .shape.shape-1 {
  bottom: 0;
  left: -30px;
}

.hero-image .shape.shape-2 {
  top: -20px;
  right: -20px;
}




/* ===== Etapas CSS ===== */

 
.cronograma {
   padding:90px 0;
  height: 100%;
}

.circle {
    font-weight: bold;
    padding: 15px 20px;
    border-radius: 50%;
    background-color: var(--rosa-color);
    /* color: #4D4545; */
    height: 70px;
    width: 70px;
    z-index: 2;
    line-height: 40px;
    font-size: 32px;
}

.how-it-works.row {
  display: flex;
}
.how-it-works.row .col-2 {
  display: inline-flex;
  align-self: stretch;
  align-items: center;
  justify-content: center;
	    position: relative;
}
.how-it-works.row .col-2::after {
  content: "";
  position: absolute;
  border-left: 3px solid var(--amarillo-color);
  z-index: 1;
}
.how-it-works.row .col-2.bottom::after {
  height: 50%;
  left: 50%;
  top: 50%;
}
.how-it-works.row .col-2.full::after {
  height: 100%;
  left: calc(50% - 3px);
}
.how-it-works.row .col-2.top::after {
  height: 100%;
  left: 50%;
  top: 0;
}

.timeline div {
  padding: 0;
  height: 40px;
}
.timeline hr {
  border-top: 3px solid var(--amarillo-color);
  margin: 0;
  top: 17px;
  position: relative;
	opacity:1;
}
.timeline .col-2 {
  display: flex;
  overflow: hidden;
}
.timeline .corner {
    border: 3px solid var(--amarillo-color);
    width: 100%;
    position: relative;
    border-radius: 15px;
}
.timeline .top-right {
  left: 50%;
  top: -50%;
}
.timeline .left-bottom {
  left: -50%;
  top: calc(50% - 3px);
}
.timeline .top-left {
  left: -50%;
  top: -50%;
}
.timeline .right-bottom {
  left: 50%;
  top: calc(50% - 3px);
}
@media only screen and (max-width: 767px)  {
.circle { 
    height: 50px;
    width: 50px;
    z-index: 2;
    line-height: 20px;
    font-size: 22px;
}
}
/* ===== Features CSS ===== */
.features {
    padding-top: 120px;
    padding-bottom: 90px; 
		position:relative;
}

.features:after {
	content:'';
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
  opacity:0.2;
	background: url(../images/male-hands-holding-screaming-newborn.png) no-repeat center;
    background-size: cover;
}


.deco-faq {
    position: relative;
    padding: 30px 60px 30px 0;
}



.image-faq-1{
border-radius: 40px; 
}

.image-faq-2{
border-radius: 100%;
    position: absolute;
    bottom: -80px;
    right: 0;
    width: 70%;
    box-shadow: 4px 6px 15px 0px rgba(0,0,0,0.38);
}

@media (max-width: 767px) {
  .features {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.ud-section-title {
  max-width: 620px;
  margin-bottom: 70px;
}

.ud-section-title span {
  font-weight: 600;
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.ud-section-title h2 {
  font-weight: 700;
  font-size: 42px;
  line-height: 55px;
  text-transform: capitalize;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.ud-section-title p {
  font-size: 20px;
  line-height: 30px;
}

@media (max-width: 767px) {
  .ud-section-title p {
    font-size: 16px;
    line-height: 26px;
  }
}

.single-feature {
  margin-bottom: 40px;
}


 


.single-feature .ud-feature-title {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  margin-bottom: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single-feature .ud-feature-title {
    font-size: 18px;
    line-height: 26px;
  }
}

.single-feature .ud-feature-desc {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}

.single-feature .ud-feature-link {
  font-weight: 500;
  color: var(--body-color);
}

.single-feature .ud-feature-link:hover {
  color: var(--primary-color);
}

/* ===== About CSS ===== */
.fpc-about {
	position:relative;
background: rgb(255,193,71);
background: -moz-linear-gradient(180deg, rgba(255,193,71,0) 0%, rgba(255,193,71,0.12368697478991597) 50%, rgba(255,193,71,0) 100%);
background: -webkit-linear-gradient(180deg, rgba(255,193,71,0) 0%, rgba(255,193,71,0.12368697478991597) 50%, rgba(255,193,71,0) 100%);
background: linear-gradient(180deg, rgba(255,193,71,0) 0%, rgba(255,193,71,0.12368697478991597) 50%, rgba(255,193,71,0) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffc147",endColorstr="#ffc147",GradientType=1);

padding: 120px 0;
}

.about-image{
	  border-radius: 10% 10% 10% 10%;
    overflow: hidden;
}


ul.fpc-list {
    padding: 0;
    margin: 0;
}

  ul.fpc-list li {
    list-style-type: none;
    display: flex; 
    margin-bottom: 12px;
}
.fpc-list .fpc-list-icon {
    width: 40px;
    height: 40px;
    text-align: center;
    border-radius: 100%;
    margin-right: 15px;
    color: var(--lila-color);
    background-color: var(--white);
    line-height: 40px;
    box-shadow: 0px 6px 14px 0px rgb(0 0 0 / 10%);
    font-size: 14px;
}
.fpc-list .fpc-list-icon  i {
    width: 40px;
    display: inline-block;
}
.fpc-list .fpc-list-info {
    margin: 0;
    font-size: 18px; 
    line-height: 26px;
}

.about-wrapper-2 {
		width:100%;
		max-width:1320px;
		margin:auto;
    background-image: url(../images/bebicare-banner1-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
    padding: 0px 40px 0 40px; 
    border-radius: 50px;
}
.about-image-2 {
mix-blend-mode: multiply;
}

.about-wrapper-2 .about-content-wrapper {
	padding:50px 0;
}

@media (max-width: 767px) {
  .fpc-about {
    padding: 80px 0;
  }
}
 

.feature {
    padding: 80px 35px 200px;
    border-radius: 45px;
    position: relative;
    overflow: hidden;
		    height: 100%;
}
.feature.feature-01 { 
    background: url(../images/baby-girl-her-crib.jpg) no-repeat center bottom;
    background-size: contain;
}
.feature.feature-02 { 
    background: url(../images/newborn-boy.jpg) no-repeat center bottom;
    background-size: contain;
}

.feature.feature-03 { 
    background: url(../images/baby-feet-mother-hands.jpg) no-repeat center bottom;
    background-size: contain;
}

.feature:before {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    border-radius: 45px;
}

.feature.feature-01:before{
	background:var(--rosa-color)
}
 
.feature.feature-02:before{
	background:var(--verde-color)
}
 
.feature.feature-03:before{
	background:var(--amarillo-color)
}
 
.feature::after {
    position: absolute;
    content: "";
    top: -60px;
    width: 110%;
    height: 60%;
    background: var(--white);
    opacity: 0.3;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    left: 50%;
}


.feature-icon {
	position: relative;
	z-index: 1;
	text-align: center;
	margin-bottom: 40px;
	border-radius: 25px;
	background:var(--white);
	box-shadow: 0px 10px 25px 0px rgba(0, 0, 0, 0.15);
	text-align: center;
	font-size: 30px;
	border: 1px solid #f9f6f6;
	line-height: 80px;
	width: 100px;
	height: 100px;
	padding: 10px;
	transition: 00.8s all;
	display: flex;
	align-items: center;
	justify-content: center;
}

.feature-icon img{ 
    width: 80%;
 		transition:00.8s all;
}


.single-feature:hover .feature-icon img {
      width: 90%;

}
 
 

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-wrapper {
    display: block;
  }
  ul.botones{
    flex-direction: column;
  }
  
  ul.botones li{
    width: 100%;
    margin-bottom: 30px;
  }
}

.about-content-wrapper {
  padding: 30px;
	position:relative;
	padding-bottom:100px;
}
.star-01 {
    position: absolute;
    top: 10px;
    /* right: 10px; */
    left: -20%;
    width: 100px;
    -webkit-animation: rotate-center 16s ease-in-out infinite both;
    animation: rotate-center 16s ease-in-out infinite both;
}

.star-02 {
    position: absolute;
    top: 200px;
    
    left: 95%;
    width: 70px;
    width: 50px;
-webkit-animation: rotate-center 6s ease-in-out infinite both;
	        animation: rotate-center 6s ease-in-out infinite both;
}
.star-03 {
    position: absolute;
    top: 50px;
    left: 92%;
    width: 50px;
		-webkit-animation: rotate-center 20s ease-in-out infinite both;
	        animation: rotate-center 20s ease-in-out infinite both;
}
 
@-webkit-keyframes ping {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(2.2);
            transform: scale(2.2);
    opacity: 0.2;
  }
}
@keyframes ping {
  0% {
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
    opacity: 1;
  }
  80% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(2.2);
            transform: scale(2.2);
    opacity: 0.2;
  }
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .about-content-wrapper {
    padding: 50px 30px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-content-wrapper {
    padding: 50px;
  }
}
 

 
.about-content h2 {
 
  margin-bottom: 20px;
}

@media (max-width: 767px) {
 
}
 

.about-content .ud-main-btn:hover {
  background: #2748b4;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .about-image {
    text-align: center;
  }
}


/* ===== FAQ CSS ===== */
.faq {
  padding-top: 120px;
  padding-bottom: 90px;
  background:url("../images/bebicare-banner1-bg.png") center top;
  background-size:cover;
  position: relative;
  z-index: 1;
}
.sticky-title {
	position:sticky;
	top:150px;
}

@media (max-width: 767px) {
  .faq {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.faq .shape {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: 0;
}

.single-faq {
  background: var(--white);
  border: 1px solid #f3f4fe;
  -webkit-box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
          box-shadow: 0px 20px 95px rgba(201, 203, 204, 0.3);
  border-radius: 10px;
  margin-bottom: 30px;
}

.single-faq .faq-btn {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	justify-content:space-between;				
  border: none;
  background: transparent;
   font-size: 21px;
	font-family:var(--title-font);
  color: var(--lila-color);
  opacity: 0.88;
  padding: 30px;
}

.faq-btn.collapsed{
	  color: var(--heading-color);

}


@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .single-faq .faq-btn {
    padding: 15px;
  }
}

.single-faq .faq-btn.collapsed span.icon i {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}

.single-faq .faq-btn span.icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 42px;
  height: 42px;
  background: rgba(48, 86, 211, 0.06);
  border-radius: 10px;
  color: var(--primary-color);
  margin-left: 24px;
}

.single-faq .faq-btn span.icon i {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 14px;
  font-weight: 700;
}

.single-faq .faq-body {
    padding: 0px 80px 40px 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 767px) {
  .single-faq .faq-body {
    padding: 0px 40px 20px 40px;
  }
}

 

/* ===== Team CSS ===== */
.team {
  padding-top: 60px;
  padding-bottom: 80px;
}

@media (max-width: 767px) {
  .team {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.single-team {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e3e3e3;
}


.single-team .team-image-wrapper {
  width: 170px;
  height: 170px;
  position: relative;
  margin: 0px auto 25px;
}

.single-team .team-image {
    border-radius: 100%;
    border: 4px solid  ;
}

.single-team .team-image img {
  width: 100%;
  border-radius: 100%;
}

 

.single-team .team-info {
 
}
.team-name {
	display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.single-team .team-name h4 {
  font-weight: 500;
  font-size: 32px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.single-team .team-info h6 {
  font-weight: 500;
  font-size: 12px;
  color: var(--body-color);
}

.single-team .team-socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.single-team .team-socials a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0px 10px;
  color: #cdced6;
}

.single-team .team-socials a:hover {
  color: var(--primary-color);
}
@media only screen and (max-width: 767px)  {
.single-team { 
    padding: 30px;
}
}


/* ===== Contact CSS ===== */
.contact {
  padding: 120px 0px;
  position: relative;
	background:url(../images/contact.jpg) no-repeat right top;
}

@media (max-width: 767px) {
  .contact {
    padding: 80px 0;
  }
}

.contact::before {
  content: "";
  position: absolute;
  z-index: ;
  width: 100%;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--rosa-color);
	opacity:0.21
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact::after {
    height: 45%;
  }
}

.contact-title {
  margin-bottom: 150px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-title {
    margin-bottom: 50px;
  }
}

.contact-title span {
  color: var(--heading-color);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.contact-title h2 {
  font-weight: 600;
  font-size: 35px;
  line-height: 41px;
}

.contact-info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .contact-info-wrapper {
    margin-bottom: 50px;
  }
}

.contact-info-wrapper .ud-single-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  width: 330px;
  margin-bottom: 150px;
}

.contact-info-wrapper .ud-info-icon {
  font-size: 32px;
  color: var(--primary-color);
  margin-right: 24px;
}

.contact-info-wrapper .ud-info-meta h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-info-wrapper .ud-info-meta p {
  font-size: 15px;
  line-height: 24px;
}

.contact-form-wrapper {
  -webkit-box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 4px 28px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  background: var(--white);
  padding: 60px;
}

@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 40px 30px;
  }
  .contact-info-wrapper .ud-single-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 100%;
    width: 100%;
    margin-bottom: 0px;
}
}

@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-wrapper {
    padding: 50px 40px;
  }
}

.contact-form-wrapper .contact-form-title {
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 30px;
}

@media (max-width: 767px) {
  .contact-form-wrapper .contact-form-title {
    font-size: 24px;
  }
}

.contact-form-wrapper .ud-form-group {
  margin-bottom: 25px;
}

.contact-form-wrapper .ud-form-group label {
  display: block;
  font-weight: normal;
  font-size: 12px;
}

.contact-form-wrapper .ud-form-group input,
.contact-form-wrapper .ud-form-group textarea {
  display: block;
  width: 100%;
  padding: 15px 0;
  border: none;
  outline: none;
  border-bottom: 1px solid #f1f1f1;
  resize: none;
}

.contact-form-wrapper .ud-form-group input:focus,
.contact-form-wrapper .ud-form-group textarea:focus {
  border-color: var(--primary-color);
}

/* ===== Footer CSS ===== */
.ud-footer {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

 

.ud-footer-bottom {
  padding: 35px 0;
  border-top: 1px solid rgba(136, 144, 164, 0.43);
}

.ud-footer-bottom .ud-footer-bottom-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a {
  font-weight: normal;
  font-size: 15px;
  margin-right: 30px;
  display: inline-block;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-left a {
    margin: 0px 8px 8px;
  }
}

.ud-footer-bottom .ud-footer-bottom-left a:hover {
  color: var(--primary-color);
}

.ud-footer-bottom .ud-footer-bottom-right {
  text-align: right;
  font-weight: normal;
  font-size: 15px;
  color: #f3f4fe;
}

.ud-footer-bottom .ud-footer-bottom-right a {
  color: var(--primary-color);
}

.ud-footer-bottom .ud-footer-bottom-right a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .ud-footer-bottom .ud-footer-bottom-right {
    text-align: center;
    margin-top: 10px;
  }
}

/* ====== Banner CSS ======= */


/* ====== particulas CSS ======= */
div.decora {
 
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8; 
}

.deco-home {
  -webkit-animation: deco-home linear 30s alternate infinite;
          animation: deco-home linear 30s alternate infinite;

  transform: translate3d(54vw, 13vh, 0);
  z-index: 12;
}

 

@-webkit-keyframes deco-home {
  50% {
    transform: translate3d(52vw, 86vh, 0);
  }
  100% {
    transform: translate3d(42vw, 55vh, 0);
  }
}

@keyframes deco-home {
  50% {
    transform: translate3d(52vw, 86vh, 0);
  }
  100% {
    transform: translate3d(42vw, 55vh, 0);
  }
}
.deco-home-dos {
  -webkit-animation: deco-home-dos linear 30s alternate infinite;
          animation: deco-home-dos linear 30s alternate infinite;

  transform: translate3d(54vw, 13vh, 0);
  z-index: 12;
}

@-webkit-keyframes deco-home-dos {
  33% {
    transform: translate3d(18vw, 38vh, 0) rotate(200deg);
  }
  100% {
    transform: translate3d(5vw, 80vh, 0) rotate(30deg);
  }
}
@keyframes deco-home-dos {
  33% {
    transform: translate3d(18vw, 38vh, 0) rotate(200deg);
  }
  100% {
    transform: translate3d(5vw, 80vh, 0) rotate(30deg);
  }
}

.deco-home-3 {
  -webkit-animation: deco-home-3 linear 30s alternate infinite;
          animation: deco-home-3 linear 30s alternate infinite;

  transform: translate3d(85vw, 48vh, 0);
  z-index: 7;
}
@-webkit-keyframes deco-home-3 {
  50% {
    transform: translate3d(18vw, 45vh, 0);
  }
  100% {
    transform: translate3d(20vw, 97vh, 0);
  }
}

@keyframes deco-home-3 {
  50% {
    transform: translate3d(18vw, 45vh, 0);
  }
  100% {
    transform: translate3d(20vw, 97vh, 0);
  }
}

.deco-home-4 {
  -webkit-animation: deco-home-4 linear 15s alternate infinite;
          animation:deco-home-4 linear 15s alternate infinite;

  transform: translate3d(10vw, -48vh, 0) rotate(205deg);
}

.deco-home-5 {
  -webkit-animation: deco-home-4 linear 20s alternate infinite;
          animation: deco-home-4 linear 20s alternate infinite;

  transform: translate3d(-76vw, -24vh, 0) rotate(191deg);
}


@-webkit-keyframes deco-home-4 {
  33% {
    transform: translate3d(27vw, 22vh, 0) rotate(65deg);
  }
  100% {
    transform: translate3d(50vw, -92vh, 0) rotate(121deg);
  }
}
@keyframes deco-home-4 {
  33% {
    transform: translate3d(27vw, 22vh, 0) rotate(65deg);
  }
  100% {
    transform: translate3d(50vw, -92vh, 0) rotate(121deg);
  }
}
.light-blue {
  -webkit-animation: light-blue linear 30s alternate infinite;
          animation: light-blue linear 30s alternate infinite;

  transform: translate3d(74vw, 79vh, 0);
  z-index: 8;
}

.light-blue::before {
  -webkit-animation: light-blue-pseudo linear 15s alternate infinite;
          animation: light-blue-pseudo linear 15s alternate infinite;

  transform: translate3d(-21vw, -42vh, 0) rotate(344deg);
}

.light-blue::after {
  -webkit-animation: light-blue-pseudo linear 20s alternate infinite;
          animation: light-blue-pseudo linear 20s alternate infinite;

  transform: translate3d(-11vw, -46vh, 0) rotate(90deg);
}

@-webkit-keyframes light-blue {
  50% {
    transform: translate3d(30vw, 3vh, 0);
  }
  100% {
    transform: translate3d(71vw, 29vh, 0);
  }
}

@keyframes light-blue {
  50% {
    transform: translate3d(30vw, 3vh, 0);
  }
  100% {
    transform: translate3d(71vw, 29vh, 0);
  }
}
@-webkit-keyframes light-blue-pseudo {
  33% {
    transform: translate3d(32vw, 86vh, 0) rotate(273deg);
  }
  100% {
    transform: translate3d(19vw, 19vh, 0) rotate(184deg);
  }
}
@keyframes light-blue-pseudo {
  33% {
    transform: translate3d(32vw, 86vh, 0) rotate(273deg);
  }
  100% {
    transform: translate3d(19vw, 19vh, 0) rotate(184deg);
  }
}
.red {
  -webkit-animation: red linear 30s alternate infinite;
          animation: red linear 30s alternate infinite;

  transform: translate3d(15vw, 4vh, 0);
  z-index: 3;
}

.red::before {
  -webkit-animation: red-pseudo linear 15s alternate infinite;
          animation: red-pseudo linear 15s alternate infinite;

  transform: translate3d(36vw, 49vh, 0) rotate(357deg);
}

.red::after {
  -webkit-animation: red-pseudo linear 20s alternate infinite;
          animation: red-pseudo linear 20s alternate infinite;

  transform: translate3d(42vw, 70vh, 0) rotate(360deg);
}

@-webkit-keyframes red {
  50% {
    transform: translate3d(26vw, 19vh, 0);
  }
  100% {
    transform: translate3d(15vw, 43vh, 0);
  }
}

@keyframes red {
  50% {
    transform: translate3d(26vw, 19vh, 0);
  }
  100% {
    transform: translate3d(15vw, 43vh, 0);
  }
}
@-webkit-keyframes red-pseudo {
  33% {
    transform: translate3d(-16vw, 62vh, 0) rotate(6deg);
  }
  100% {
    transform: translate3d(17vw, 16vh, 0) rotate(49deg);
  }
}
@keyframes red-pseudo {
  33% {
    transform: translate3d(-16vw, 62vh, 0) rotate(6deg);
  }
  100% {
    transform: translate3d(17vw, 16vh, 0) rotate(49deg);
  }
}
.orange {
  -webkit-animation: orange linear 30s alternate infinite;
          animation: orange linear 30s alternate infinite;
 

  transform: translate3d(34vw, 37vh, 0);
  z-index: 3;
}

.orange::before {
  -webkit-animation: orange-pseudo linear 15s alternate infinite;
          animation: orange-pseudo linear 15s alternate infinite;

  transform: translate3d(53vw, -18vh, 0) rotate(109deg);
}

.orange::after {
  -webkit-animation: orange-pseudo linear 20s alternate infinite;
          animation: orange-pseudo linear 20s alternate infinite;

  transform: translate3d(26vw, 3vh, 0) rotate(293deg);
}

@-webkit-keyframes orange {
  50% {
    transform: translate3d(84vw, 16vh, 0);
  }
  100% {
    transform: translate3d(28vw, 98vh, 0);
  }
}

@keyframes orange {
  50% {
    transform: translate3d(84vw, 16vh, 0);
  }
  100% {
    transform: translate3d(28vw, 98vh, 0);
  }
}
@-webkit-keyframes orange-pseudo {
  33% {
    transform: translate3d(-64vw, 59vh, 0) rotate(175deg);
  }
  100% {
    transform: translate3d(53vw, -35vh, 0) rotate(260deg);
  }
}
@keyframes orange-pseudo {
  33% {
    transform: translate3d(-64vw, 59vh, 0) rotate(175deg);
  }
  100% {
    transform: translate3d(53vw, -35vh, 0) rotate(260deg);
  }
}
.yellow {
  -webkit-animation: yellow linear 30s alternate infinite;
          animation: yellow linear 30s alternate infinite;

  transform: translate3d(73vw, 83vh, 0);
  z-index: 5;
}

.yellow::before {
  -webkit-animation: yellow-pseudo linear 15s alternate infinite;
          animation: yellow-pseudo linear 15s alternate infinite;

  transform: translate3d(-35vw, -28vh, 0) rotate(159deg);
}

.yellow::after {
  -webkit-animation: yellow-pseudo linear 20s alternate infinite;
          animation: yellow-pseudo linear 20s alternate infinite;

  transform: translate3d(19vw, -77vh, 0) rotate(165deg);
}

@-webkit-keyframes yellow {
  50% {
    transform: translate3d(54vw, 7vh, 0);
  }
  100% {
    transform: translate3d(88vw, 92vh, 0);
  }
}

@keyframes yellow {
  50% {
    transform: translate3d(54vw, 7vh, 0);
  }
  100% {
    transform: translate3d(88vw, 92vh, 0);
  }
}
@-webkit-keyframes yellow-pseudo {
  33% {
    transform: translate3d(8vw, 25vh, 0) rotate(11deg);
  }
  100% {
    transform: translate3d(-65vw, -43vh, 0) rotate(49deg);
  }
}
@keyframes yellow-pseudo {
  33% {
    transform: translate3d(8vw, 25vh, 0) rotate(11deg);
  }
  100% {
    transform: translate3d(-65vw, -43vh, 0) rotate(49deg);
  }
}
.cyan {
  -webkit-animation: cyan linear 30s alternate infinite;
          animation: cyan linear 30s alternate infinite;

  transform: translate3d(15vw, 8vh, 0);
  z-index: 12;
}

.cyan::before {
  -webkit-animation: cyan-pseudo linear 15s alternate infinite;
          animation: cyan-pseudo linear 15s alternate infinite;

  transform: translate3d(21vw, 69vh, 0) rotate(138deg);
}

.cyan::after {
  -webkit-animation: cyan-pseudo linear 20s alternate infinite;
          animation: cyan-pseudo linear 20s alternate infinite;

  transform: translate3d(56vw, 38vh, 0) rotate(316deg);
}

@-webkit-keyframes cyan {
  50% {
    transform: translate3d(46vw, 55vh, 0);
  }
  100% {
    transform: translate3d(11vw, 22vh, 0);
  }
}

@keyframes cyan {
  50% {
    transform: translate3d(46vw, 55vh, 0);
  }
  100% {
    transform: translate3d(11vw, 22vh, 0);
  }
}
@-webkit-keyframes cyan-pseudo {
  33% {
    transform: translate3d(4vw, -13vh, 0) rotate(329deg);
  }
  100% {
    transform: translate3d(-6vw, -16vh, 0) rotate(188deg);
  }
}
@keyframes cyan-pseudo {
  33% {
    transform: translate3d(4vw, -13vh, 0) rotate(329deg);
  }
  100% {
    transform: translate3d(-6vw, -16vh, 0) rotate(188deg);
  }
}
.light-green {
  -webkit-animation: light-green linear 30s alternate infinite;
          animation: light-green linear 30s alternate infinite;

  transform: translate3d(58vw, 50vh, 0);
  z-index: 10;
}

.light-green::before {
  -webkit-animation: light-green-pseudo linear 15s alternate infinite;
          animation: light-green-pseudo linear 15s alternate infinite;

  transform: translate3d(-6vw, 23vh, 0) rotate(63deg);
}

.light-green::after {
  -webkit-animation: light-green-pseudo linear 20s alternate infinite;
          animation: light-green-pseudo linear 20s alternate infinite;

  transform: translate3d(11vw, -7vh, 0) rotate(346deg);
}

@-webkit-keyframes light-green {
  50% {
    transform: translate3d(9vw, 98vh, 0);
  }
  100% {
    transform: translate3d(89vw, 92vh, 0);
  }
}

@keyframes light-green {
  50% {
    transform: translate3d(9vw, 98vh, 0);
  }
  100% {
    transform: translate3d(89vw, 92vh, 0);
  }
}
@-webkit-keyframes light-green-pseudo {
  33% {
    transform: translate3d(89vw, -46vh, 0) rotate(301deg);
  }
  100% {
    transform: translate3d(-48vw, -21vh, 0) rotate(2deg);
  }
}
@keyframes light-green-pseudo {
  33% {
    transform: translate3d(89vw, -46vh, 0) rotate(301deg);
  }
  100% {
    transform: translate3d(-48vw, -21vh, 0) rotate(2deg);
  }
}
.lime {
  -webkit-animation: lime linear 30s alternate infinite;
          animation: lime linear 30s alternate infinite;

  transform: translate3d(49vw, 71vh, 0);
  z-index: 6;
}

.lime::before {
  -webkit-animation: lime-pseudo linear 15s alternate infinite;
          animation: lime-pseudo linear 15s alternate infinite;
 
  transform: translate3d(19vw, -29vh, 0) rotate(140deg);
}

.lime::after {
  -webkit-animation: lime-pseudo linear 20s alternate infinite;
          animation: lime-pseudo linear 20s alternate infinite;

  transform: translate3d(-11vw, -62vh, 0) rotate(123deg);
}

@-webkit-keyframes lime {
  50% {
    transform: translate3d(50vw, 42vh, 0);
  }
  100% {
    transform: translate3d(88vw, 61vh, 0);
  }
}

@keyframes lime {
  50% {
    transform: translate3d(50vw, 42vh, 0);
  }
  100% {
    transform: translate3d(88vw, 61vh, 0);
  }
}
@-webkit-keyframes lime-pseudo {
  33% {
    transform: translate3d(36vw, -34vh, 0) rotate(289deg);
  }
  100% {
    transform: translate3d(-45vw, -61vh, 0) rotate(235deg);
  }
}
@keyframes lime-pseudo {
  33% {
    transform: translate3d(36vw, -34vh, 0) rotate(289deg);
  }
  100% {
    transform: translate3d(-45vw, -61vh, 0) rotate(235deg);
  }
}
.magenta {
  -webkit-animation: magenta linear 30s alternate infinite;
          animation: magenta linear 30s alternate infinite;

  transform: translate3d(53vw, 45vh, 0);
  z-index: 11;
}

.magenta::before {
  -webkit-animation: magenta-pseudo linear 15s alternate infinite;
          animation: magenta-pseudo linear 15s alternate infinite;

  transform: translate3d(-22vw, 43vh, 0) rotate(178deg);
}

.magenta::after {
  -webkit-animation: magenta-pseudo linear 20s alternate infinite;
          animation: magenta-pseudo linear 20s alternate infinite;

  transform: translate3d(-32vw, 24vh, 0) rotate(289deg);
}

@-webkit-keyframes magenta {
  50% {
    transform: translate3d(16vw, 60vh, 0);
  }
  100% {
    transform: translate3d(87vw, 8vh, 0);
  }
}

@keyframes magenta {
  50% {
    transform: translate3d(16vw, 60vh, 0);
  }
  100% {
    transform: translate3d(87vw, 8vh, 0);
  }
}
@-webkit-keyframes magenta-pseudo {
  33% {
    transform: translate3d(43vw, -4vh, 0) rotate(38deg);
  }
  100% {
    transform: translate3d(-70vw, 56vh, 0) rotate(150deg);
  }
}
@keyframes magenta-pseudo {
  33% {
    transform: translate3d(43vw, -4vh, 0) rotate(38deg);
  }
  100% {
    transform: translate3d(-70vw, 56vh, 0) rotate(150deg);
  }
}
.lightish-red {
  -webkit-animation: lightish-red linear 30s alternate infinite;
          animation: lightish-red linear 30s alternate infinite;

  transform: translate3d(80vw, 58vh, 0);
  z-index: 9;
}

.lightish-red::before {
  -webkit-animation: lightish-red-pseudo linear 15s alternate infinite;
          animation: lightish-red-pseudo linear 15s alternate infinite;

  transform: translate3d(-18vw, -58vh, 0) rotate(149deg);
}

.lightish-red::after {
  -webkit-animation: lightish-red-pseudo linear 20s alternate infinite;
          animation: lightish-red-pseudo linear 20s alternate infinite;

  transform: translate3d(-55vw, -56vh, 0) rotate(209deg);
}

@-webkit-keyframes lightish-red {
  50% {
    transform: translate3d(22vw, 83vh, 0);
  }
  100% {
    transform: translate3d(28vw, 82vh, 0);
  }
}

@keyframes lightish-red {
  50% {
    transform: translate3d(22vw, 83vh, 0);
  }
  100% {
    transform: translate3d(28vw, 82vh, 0);
  }
}
@-webkit-keyframes lightish-red-pseudo {
  33% {
    transform: translate3d(35vw, -18vh, 0) rotate(25deg);
  }
  100% {
    transform: translate3d(60vw, 14vh, 0) rotate(10deg);
  }
}
@keyframes lightish-red-pseudo {
  33% {
    transform: translate3d(35vw, -18vh, 0) rotate(25deg);
  }
  100% {
    transform: translate3d(60vw, 14vh, 0) rotate(10deg);
  }
}
.pink {
  -webkit-animation: pink linear 30s alternate infinite;
          animation: pink linear 30s alternate infinite;
  transform: translate3d(76vw, 10vh, 0);
  z-index: 9;
}

.pink::before {
  -webkit-animation: pink-pseudo linear 15s alternate infinite;
          animation: pink-pseudo linear 15s alternate infinite;
  transform: translate3d(-41vw, 39vh, 0) rotate(176deg);
}

.pink::after {
  -webkit-animation: pink-pseudo linear 20s alternate infinite;
          animation: pink-pseudo linear 20s alternate infinite;

  transform: translate3d(-7vw, 59vh, 0) rotate(132deg);
}

@-webkit-keyframes pink {
  50% {
    transform: translate3d(44vw, 61vh, 0);
  }
  100% {
    transform: translate3d(26vw, 37vh, 0);
  }
}

@keyframes pink {
  50% {
    transform: translate3d(44vw, 61vh, 0);
  }
  100% {
    transform: translate3d(26vw, 37vh, 0);
  }
}
@-webkit-keyframes pink-pseudo {
  33% {
    transform: translate3d(-36vw, 31vh, 0) rotate(133deg);
  }
  100% {
    transform: translate3d(72vw, 32vh, 0) rotate(175deg);
  }
}
@keyframes pink-pseudo {
  33% {
    transform: translate3d(-36vw, 31vh, 0) rotate(133deg);
  }
  100% {
    transform: translate3d(72vw, 32vh, 0) rotate(175deg);
  }
}


.heartbeat {
	position:absolute;
	    top: 200px;
    right: 20px;
    left: auto;
    width: 150px;
	-webkit-animation: heartbeat 10s ease-in-out infinite both;
	        animation: heartbeat 10s ease-in-out infinite both;
}
 
@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

.wobble-hor-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90%;
    -webkit-animation: wobble-hor-bottom 8s infinite both;
    animation: wobble-hor-bottom 8s infinite both;
}
 
@-webkit-keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}
@keyframes wobble-hor-bottom {
  0%,
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
  }
  15% {
    -webkit-transform: translateX(-30px) rotate(-6deg);
            transform: translateX(-30px) rotate(-6deg);
  }
  30% {
    -webkit-transform: translateX(15px) rotate(6deg);
            transform: translateX(15px) rotate(6deg);
  }
  45% {
    -webkit-transform: translateX(-15px) rotate(-3.6deg);
            transform: translateX(-15px) rotate(-3.6deg);
  }
  60% {
    -webkit-transform: translateX(9px) rotate(2.4deg);
            transform: translateX(9px) rotate(2.4deg);
  }
  75% {
    -webkit-transform: translateX(-6px) rotate(-1.2deg);
            transform: translateX(-6px) rotate(-1.2deg);
  }
}


.shake-br {
    position: absolute;
    bottom: 130px;
    left: 52%;
    width: 90px;
	-webkit-animation: shake-br 12s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
	        animation: shake-br 12s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}

 
 
@-webkit-keyframes shake-br {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}
@keyframes shake-br {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}

@media (max-width: 1199px) {
.heartbeat { 
    width: 100px; 
}
}

@media (max-width: 767px) {
  .decora{display: none;}
	
	.heartbeat {
    top: 150px;
    right: auto;
    left: calc(100% - 250px);
    width: 100px;
	}
	.star-01 {
    position: absolute;
    top: calc(100% - 10px);
    /* right: 10px; */
    left: 0%;
    width: 100px;
    -webkit-animation: rotate-center 16s ease-in-out infinite both;
    animation: rotate-center 16s ease-in-out infinite both;
}
.shake-br {
    position: absolute;
    bottom: 0%;
    left: calc(10% + 90px);
    width: 90px;
    -webkit-animation: shake-br 12s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
    animation: shake-br 12s cubic-bezier(0.455, 0.030, 0.515, 0.955) infinite both;
}
.image-faq-2 {
    border-radius: 100%;
    position: absolute;
    bottom: 20px;
    right: 0;
    width: 50%;
    box-shadow: 4px 6px 15px 0px rgba(0,0,0,0.38);
}
}

@media (max-width: 576px) {
h2 {
    font-size: 36px;
    font-family: var(--title-font);
}
.heartbeat {
    top: 150px;
    right: auto;
    left: calc(100% - 100px);
    width: 50px;
}
.wobble-hor-bottom {
    position: relative;
    bottom: 0;
    left: 0;
    width: 80%;
    -webkit-animation: wobble-hor-bottom 8s infinite both;
    animation: wobble-hor-bottom 8s infinite both;
    margin: auto;
}
.feature {
    padding: 80px 35px 300px;
 
}
.features { 
    padding: 80px 30px 40px;
}
.postulantes{
	    padding: 0px 30px 40px;

}
.team {
    padding: 40px 30px;
}
.contact {
    padding: 80px 30px;
}
.cronograma {
    padding: 0px 30px;
}
.star-02 {
    position: absolute;
    top: 0px;
    left: 80%;
    width: 70px;
    width: 50px;
    -webkit-animation: rotate-center 6s ease-in-out infinite both;
    animation: rotate-center 6s ease-in-out infinite both;
}
.star-03 {
    position: absolute;
    top: 80px;
    left: 70%;
    width: 50px;
    -webkit-animation: rotate-center 20s ease-in-out infinite both;
    animation: rotate-center 20s ease-in-out infinite both;
}
}
/*# sourceMappingURL=ud-styles.css.map */