@charset "utf-8";
/****Font****/
.zain-extralight {
  font-family: "Zain", sans-serif;
  font-weight: 200;
  font-style: normal;
}
.zain-light {
  font-family: "Zain", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.zain-regular {
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.zain-bold {
  font-family: "Zain", sans-serif;
  font-weight: 700;
  font-style: normal;
}
.zain-extrabold {
  font-family: "Zain", sans-serif;
  font-weight: 800;
  font-style: normal;
}
.zain-black {
  font-family: "Zain", sans-serif;
  font-weight: 900;
  font-style: normal;
}
.zain-light-italic {
  font-family: "Zain", sans-serif;
  font-weight: 300;
  font-style: italic;
}
.zain-regular-italic {
  font-family: "Zain", sans-serif;
  font-weight: 400;
  font-style: italic;
}
/****General****/
html, body {
	margin:0;
	padding: 0;
	font-family: "Zain", sans-serif;
  color: #424242;
  font-weight: 400;
}
html {
  scroll-behavior: smooth;
}
div {
	box-sizing: border-box;
}
button:focus, a:focus, .btn:focus {
  outline: none;
  box-shadow: none;
}
.ellipse {
  background-image: url(../images/ellipse-big.svg);
  background-repeat: no-repeat;
  background-position: top right;
}
.footer {
  position: relative;
  background-color: #8F72DE;
  box-shadow: 0px 6px 10px 0px rgba(0,0,0,0.27) inset;
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0,0,0,0.27) inset;
  -moz-box-shadow: 0px 6px 10px 0px rgba(0,0,0,0.27) inset;
}
.sombra {
  box-shadow: 0px 6px 10px 0px rgba(0,0,0,0.27);
  -webkit-box-shadow: 0px 6px 10px 0px rgba(0,0,0,0.27);
  -moz-box-shadow: 0px 6px 10px 0px rgba(0,0,0,0.27);
}
.fondo {
  background-color: #e8e8e8;
  overflow: hidden;
}
/*********/
.bola {
  position: fixed;
  animation: spin 120s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg); /* Starting rotation angle */
  }
  100% {
    transform: rotate(360deg); /* Ending rotation angle */
  }
}
.modal-content .bola {
  position: absolute;
}
/*****text****/
.text-purple {
  color: #884CBA;
}
.text-purple2 {
  color: #44356A;
}
.text-purple3 {
  color: #B83CCC;
}
.line-hight-1 {
  line-height: 1;
}
p, a, li {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.2;
  text-decoration: none;
  color: #424242;
}
p .fa-regular,p .fa-solid, a .fa-regular, a .fa-solid {
  font-size: 1rem;
}
h1 {
  font-size: 3.5rem;
}
h2 .h2 {
  font-size: 2.6rem;
}
h1, h2, h3, h4, h5 {
  color: #424242;
}
.link-simple {
  text-decoration: none;
  position: relative;
}
.link-simple::before {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #884CBA;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all .4s ease;
}
.link-simple:hover::before {
  width: 100%;
}
/****Navigation****/
.menu-link {
  padding: .7rem 1.2rem;
  border: 1px solid #822494;
  border-radius: 1.5rem;
  color: #822494;
  font-weight: 400;
  margin-left: .8rem;
  line-height: 1.2rem;
  transition: all .4s ease;
}
.menu-link:hover, .menu-link.active {
  background-color: #822494;
  color: #FFF;
}
.menu-link.active {
  pointer-events: none;
}
.offcanvas-body {
  background: #812090;
  background: linear-gradient(180deg,rgba(129, 32, 144, 1) 0%, rgba(148, 148, 255, 1) 100%);
}
.offcanvas.offcanvas-end {
  border-left: 0!important;
}
.phone-link {
  display: block;
}
.phone-link.active {
  background-image: url(../images/semi.svg);
  background-repeat: no-repeat;
  background-position: center left;
}
.phone-link h1 {
  color: #E8E8E8;
}
.multi {
  mix-blend-mode: multiply;
}
/*******/
@media (max-width: 576px) {
  .img-contact {
    transform: translateX(60px);
  }
  .bola {
    left: 200px;
    top: 10%;
  }
  h2 .h2 {
    font-size: 2.6rem;
  }
}
@media (min-width: 576px) {
  .modal-content.ellipse {
    background-position: right -100px top -100px;
    background-size: 90%;
  }
  .bola {
    right: -120px;
    top: -100px;
  }
  h2 .h2 {
    font-size: 2.6rem;
  }
}
@media (min-width: 992px) {
  .modal-content.ellipse {
    background-position: right -250px top -300px !important;
    background-size: 60% !important;
  }
  .bola {
    right: -220px;
    top: -300px;
  }
}