@import "fonts/font.css";
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://cdn-uicons.flaticon.com/2.4.2/uicons-solid-rounded/css/uicons-solid-rounded.css");
@import url("https://cdn-uicons.flaticon.com/2.4.2/uicons-bold-straight/css/uicons-bold-straight.css");
@import url("https://cdn-uicons.flaticon.com/2.4.2/uicons-brands/css/uicons-brands.css");
@import url("https://cdn-uicons.flaticon.com/2.4.0/uicons-solid-straight/css/uicons-solid-straight.css");
@import url("https://cdn-uicons.flaticon.com/2.4.0/uicons-solid-rounded/css/uicons-solid-rounded.css");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Colors */
/* Fonts */
.default-text-content {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 20px;
}

body {
  font-family: "Outfit";
  color: #727272;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
  overflow-x: hidden;
}

.content {
  width: 100%;
  max-width: 1510px;
  margin: 0 auto;
  padding: 0px 20px;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@media all and (max-width: 999px) {
  input,
  button,
  textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
  }
}
#login-view,
#pass-recover {
  display: none;
}

.button {
  font-size: 1rem;
  font-weight: 600;
  color: #a657ab;
  text-decoration: none;
  padding-bottom: 5px;
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
}
.button:after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #a657ab;
  content: "";
  transition: all 150ms ease-in-out;
}
.button:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: #231822;
  content: "";
  transition: all 150ms ease-in-out;
  transition-delay: 200ms;
}
.button:hover {
  color: #231822;
  transition: all 150ms ease-in-out;
}
.button:hover:after {
  width: 0;
}
.button:hover:before {
  width: 100%;
}
.button.alt {
  color: #f8f8f8;
  border-color: #f8f8f8;
}
.button.alt:hover {
  color: #c990cc;
}
.button.alt:hover:before {
  background: #c990cc;
}
.button.alt2 {
  color: #79527c;
  border-color: #79527c;
}
.button.alt2:hover {
  color: #231822;
  border-color: #231822;
}

.login-view-wrapper {
  float: left;
  width: 100%;
  max-width: 400px;
}
.login-view-wrapper h3 {
  float: left;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px;
  font-family: "Outfit";
  font-size: 20px;
  color: #c990cc;
}
.login-view-wrapper .inset {
  float: left;
  width: 100%;
  padding: 20px;
  font-family: "Outfit";
}
.login-view-wrapper .inset p {
  margin-bottom: 10px;
}
.login-view-wrapper .inset label {
  font-family: "Outfit";
  float: left;
  width: 100%;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.login-view-wrapper .inset input[type=text],
.login-view-wrapper .inset input[type=password] {
  float: left;
  width: 100%;
  border: 2px solid #f1f1f1;
  padding: 15px;
  margin-bottom: 15px;
  font-family: "Outfit";
  font-size: 16px;
}
.login-view-wrapper .inset input[type=submit] {
  float: right;
  background: #c990cc;
  color: white;
  font-family: "Outfit";
  text-transform: uppercase;
  padding: 15px;
  border: 0px;
}
.login-view-wrapper .inset a {
  color: #444;
  text-decoration: none;
  font-size: 13px;
  font-family: "Outfit";
}

.request-block {
  float: left;
  width: 100%;
  padding: 10px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  text-align: center;
  margin-top: 20px;
}
.request-block.success {
  color: #18a15f;
  border: 1px solid rgba(24, 161, 95, 0.3);
  background: rgba(24, 161, 95, 0.05);
}
.request-block.error {
  color: #d95044;
  border: 1px solid rgba(217, 80, 68, 0.3);
  background: rgba(217, 80, 68, 0.05);
}

.default-text-content h1 {
  color: #c990cc;
  font-size: 3rem;
}
.default-text-content h2 {
  color: #c990cc;
  font-size: 2.2rem;
}
.default-text-content h3 {
  color: #c990cc;
  font-size: 1.5rem;
}
.default-text-content h1,
.default-text-content h2,
.default-text-content h3 {
  margin-bottom: 20px;
}
.default-text-content p {
  margin-bottom: 20px;
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 150;
}
#main-nav .close {
  position: absolute;
  left: 0px;
  top: 0px;
  bottom: 0px;
  width: 100%;
  background: rgba(35, 24, 34, 0.8);
  opacity: 0;
}
#main-nav:target {
  right: 0;
}
#main-nav:target .close {
  opacity: 1;
  -webkit-transition: all 500ms ease-in;
  -moz-transition: all 500ms ease-in;
  -o-transition: all 500ms ease-in;
  transition: all 500ms ease-in;
}
#main-nav:target .inset {
  -webkit-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
}
#main-nav .inset {
  width: 250px;
  position: absolute;
  bottom: 0px;
  top: 0px;
  left: 0px;
  padding: 40px;
  -webkit-transform: translateX(-250px);
  -ms-transform: translateX(-250px);
  -o-transform: translateX(-250px);
  transform: translateX(-250px);
  -webkit-transition: all 202ms ease-in;
  -moz-transition: all 202ms ease-in;
  -o-transition: all 202ms ease-in;
  transition: all 202ms ease-in;
  z-index: 200;
  background: #231822;
}
#main-nav .inset a {
  float: left;
  width: 100%;
  color: white;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
  text-transform: uppercase;
  gap: 10px;
  position: relative;
}
#main-nav .inset a:after {
  content: "";
  width: 10px;
  height: 1px;
  background: white;
  display: block;
  margin-top: 10px;
  opacity: 0.5;
  position: absolute;
  left: 0;
  bottom: -15px;
}

header {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
  width: 100%;
  height: 200px;
  background: none;
}
@media all and (max-width: 999px) {
  header {
    position: fixed;
    z-index: 100;
    height: 80px;
    top: 0px;
    left: 0px;
    background-color: rgba(29, 30, 41, 0.8);
    -webkit-box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 46px 0px rgba(0, 0, 0, 0.06);
    display: flex;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
  }
  header .logo-holder {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .menu {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 60px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url(../images/menu.svg) center center no-repeat;
    outline: none;
  }
}
header .logo {
  height: 100%;
  display: flex;
  align-items: center;
}
@media all and (max-width: 999px) {
  header .logo img {
    height: 45px;
    width: auto;
  }
}
header .inset {
  float: left;
  width: 100%;
  display: flex;
}
header .inset nav {
  width: 100%;
  margin-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 6%;
}
@media all and (max-width: 999px) {
  header .inset nav {
    display: none;
  }
}
@media all and (max-width: 1280px) {
  header .inset nav {
    margin-left: 0px;
  }
}
header .inset nav a {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Outfit";
  text-decoration: none;
  color: white;
  position: relative;
  font-size: 1.2rem;
}
header .inset nav a.default-item:hover {
  color: #79527c;
}
header .inset nav a.default-item:hover:before {
  height: 2px;
}
header .inset nav a.default-item:before {
  content: "";
  position: absolute;
  bottom: -10px;
  width: 20%;
  height: 0px;
  background: #c990cc;
  -webkit-transition: all 150ms ease-in;
  -moz-transition: all 150ms ease-in;
  -o-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
}
header .inset nav .button-header {
  border-top: 1px solid #c990cc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 20px;
  background-color: rgba(86, 59, 88, 0.4745098039);
  color: #c990cc;
}
header .inset nav .button-header i {
  width: 21px;
  height: 21px;
}
header .inset nav .button-header:hover {
  border-top: 1px solid #f8f8f8;
  color: #f8f8f8;
  background: #c990cc;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  -webkit-transition: all 150ms ease-in;
  -moz-transition: all 150ms ease-in;
  -o-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
}

main.home .hero {
  height: 1100px;
  width: 100%;
  background: rgb(22, 15, 22);
  background: linear-gradient(90deg, rgb(22, 15, 22) 15%, rgb(54, 37, 55) 100%);
  padding-top: 200px;
  z-index: 1;
}
@media all and (max-width: 999px) {
  main.home .hero {
    height: fit-content;
    padding-top: 140px;
  }
}
@media all and (max-width: 999px) {
  main.home .hero .content {
    padding: 0;
  }
}
main.home .hero .item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7%;
  width: 100%;
  height: 900px;
}
@media all and (max-width: 999px) {
  main.home .hero .item {
    height: fit-content;
  }
}
@media all and (max-width: 599px) {
  main.home .hero .item {
    flex-direction: column-reverse;
  }
}
main.home .hero .item .heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  height: 100%;
  width: 40%;
  padding-bottom: 100px;
  z-index: 2;
}
@media all and (max-width: 599px) {
  main.home .hero .item .heading {
    width: 90%;
    padding-bottom: 2rem;
  }
}
main.home .hero .item .heading h2 {
  font-size: 7rem;
  background: -webkit-linear-gradient(59deg, rgb(255, 255, 255) 0%, rgb(201, 144, 204) 81%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  font-weight: "Outfit";
  line-height: 1.1;
}
@media all and (max-width: 999px) {
  main.home .hero .item .heading h2 {
    font-size: 2.4rem;
  }
}
main.home .hero .item .heading p {
  font-size: 1.3rem;
  color: #c990cc;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}
@media all and (max-width: 999px) {
  main.home .hero .item .heading p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
main.home .hero .item .heading .slider-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
main.home .hero .item .heading .slider-buttons .button-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border: 2px solid #c990cc;
  text-decoration: none;
}
main.home .hero .item .heading .slider-buttons .button-container i {
  font-size: 24px;
  color: #c990cc;
  line-height: 0;
}
main.home .hero .item .heading .slider-buttons .button-container.not-active {
  border-color: #432345;
}
main.home .hero .item .heading .slider-buttons .button-container.not-active i {
  color: #432345;
}
main.home .hero .item .hero-img {
  height: 900px;
  width: 60%;
  margin-top: 100px;
  z-index: 1;
}
@media all and (max-width: 999px) {
  main.home .hero .item .hero-img {
    height: fit-content;
    margin-top: 0;
  }
}
@media all and (max-width: 599px) {
  main.home .hero .item .hero-img {
    width: 90%;
    padding-bottom: 2rem;
  }
}
main.home .hero .item .hero-img img {
  width: 100%;
  height: auto;
  max-height: 930px;
}
main.home .areas {
  position: relative;
  width: 100%;
  padding-top: 80px;
  z-index: 1;
}
@media all and (max-width: 999px) {
  main.home .areas {
    padding-top: 4rem;
  }
}
main.home .areas .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
main.home .areas .title {
  width: 100%;
}
main.home .areas .title h3 {
  font-size: 3.5rem;
  font-weight: 500;
  background: linear-gradient(90deg, #432345 0%, #a657ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0;
  margin-bottom: 3rem;
}
@media all and (max-width: 999px) {
  main.home .areas .title h3 {
    font-size: 2rem;
    margin: 0;
  }
}
main.home .areas .list-areas {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media all and (max-width: 999px) {
  main.home .areas .list-areas {
    display: flex;
    flex-direction: column;
  }
}
main.home .areas .list-areas .area {
  position: relative;
  width: 50%;
}
@media all and (max-width: 999px) {
  main.home .areas .list-areas .area {
    width: 100%;
  }
}
main.home .areas .list-areas .area:nth-child(odd) {
  margin-top: -220px;
}
@media all and (max-width: 999px) {
  main.home .areas .list-areas .area:nth-child(odd) {
    margin-top: 4rem;
  }
}
main.home .areas .list-areas .area:nth-child(even) {
  margin-top: 90px;
}
@media all and (max-width: 999px) {
  main.home .areas .list-areas .area:nth-child(even) {
    margin-top: 4rem;
  }
}
main.home .areas .list-areas .area:nth-child(2) {
  margin-top: 310px;
}
@media all and (max-width: 999px) {
  main.home .areas .list-areas .area:nth-child(2) {
    margin-top: 4rem;
  }
}
main.home .areas .list-areas .area:nth-child(1) {
  margin-top: 0px;
}
@media all and (max-width: 999px) {
  main.home .areas .list-areas .area:nth-child(1) {
    margin-top: 4rem;
  }
}
main.home .areas .list-areas .area .image {
  width: 100%;
  display: block;
}
main.home .areas .list-areas .area .image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
main.home .areas .list-areas .area .box {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 50%;
  max-height: 320px;
  width: 70%;
  margin-bottom: -3rem;
  padding: 2rem;
  background-color: white;
}
@media all and (max-width: 1199px) {
  main.home .areas .list-areas .area .box {
    position: relative;
    width: 100%;
    margin-top: -2rem;
    max-height: none;
    padding: 0;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}
main.home .areas .list-areas .area .box h4 {
  font-size: 2.4rem;
  color: #79527c;
  font-weight: 600;
  line-height: 1.1;
}
main.home .areas .list-areas .area .box h4:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #79527c;
  display: block;
  margin: 10px 0;
  opacity: 0.5;
}
main.home .areas .list-areas .area .box p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #726872;
}
main.home .areas .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  width: 50%;
  padding: 6rem 0;
  border-right: 1px solid #c990cc;
}
@media all and (max-width: 999px) {
  main.home .areas .info {
    border-right: none;
    width: 100%;
  }
}
main.home .areas .info p {
  max-width: 560px;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  color: #726872;
  margin-right: 2rem;
}
@media all and (max-width: 999px) {
  main.home .areas .info p {
    margin-right: 0;
    text-align: justify;
    line-height: 1.4;
  }
}
main.home .team {
  min-height: 820px;
  width: 100%;
  background: rgb(124, 58, 128);
  background: linear-gradient(270deg, rgb(124, 58, 128) 0%, rgb(82, 43, 85) 100%);
}
@media all and (max-width: 999px) {
  main.home .team {
    min-height: auto;
  }
}
main.home .team .content {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media all and (max-width: 999px) {
  main.home .team .content {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 2rem;
  }
}
main.home .team .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  min-height: 770px;
  width: 50%;
  padding-right: 10%;
  border-right: 1px solid rgba(201, 144, 204, 0.4431372549);
}
@media all and (max-width: 999px) {
  main.home .team .info {
    width: 100%;
    border-right: none;
    min-height: auto;
    padding: 2rem;
  }
}
main.home .team .info h2 {
  font-size: 5.5rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.home .team .info h2 {
    font-size: 3rem;
  }
}
main.home .team .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #dd81e3;
  display: block;
  margin-top: 3rem;
  opacity: 0.5;
}
main.home .team .info p {
  font-size: 1.3rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}
@media all and (max-width: 999px) {
  main.home .team .info p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
main.home .team .image {
  margin: auto 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
}
main.home .team .image img {
  width: 90%;
  height: auto;
}
main.home .about-us .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 4rem;
}
@media all and (max-width: 999px) {
  main.home .about-us .content {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}
main.home .about-us .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
@media all and (max-width: 999px) {
  main.home .about-us .info {
    padding: 2rem;
    padding-left: 0;
    padding-right: 0;
  }
}
main.home .about-us .info h2 {
  font-size: 5.4rem;
  color: #79527c;
  /* Quem Somos */
  background: linear-gradient(90deg, #432345 0%, #a657ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.home .about-us .info h2 {
    font-size: 2.8rem;
  }
}
main.home .about-us .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #dd81e3;
  display: block;
  margin-top: 3rem;
  opacity: 0.5;
}
main.home .about-us .info p {
  font-size: 1.3rem;
  color: #726872;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}
@media all and (max-width: 999px) {
  main.home .about-us .info p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
main.home .about-us .image {
  height: 105%;
}
main.home .about-us .image img {
  width: 100%;
  height: auto;
  margin-bottom: -40px;
  z-index: 11;
}
@media all and (max-width: 999px) {
  main.home .about-us .image img {
    margin-bottom: 0;
  }
}
main.home .contact {
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(../images/contact-bg.png) center center no-repeat;
  background-size: cover !important;
  width: 100%;
  min-height: 780px;
}
@media all and (max-width: 999px) {
  main.home .contact {
    min-height: auto;
  }
}
main.home .contact .content {
  display: flex;
  align-items: center;
  justify-content: center;
}
main.home .contact .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 2rem;
  max-width: 820px;
}
main.home .contact .info h2 {
  font-size: 5.2rem;
  background: -webkit-linear-gradient(59deg, rgb(255, 255, 255) 20%, rgb(201, 144, 204) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media all and (max-width: 999px) {
  main.home .contact .info h2 {
    font-size: 2.5rem;
  }
}
main.home .contact .info p {
  font-size: 1.2rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}
@media all and (max-width: 999px) {
  main.home .contact .info p {
    font-size: 1.1rem;
    line-height: 1.2;
  }
}

footer {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: radial-gradient(112.71% 200.69% at 48.59% 110%, #ffffff 0%, #f8edf8 100%);
}
footer .content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
@media all and (max-width: 599px) {
  footer .content {
    flex-direction: column;
    gap: 0;
  }
}
footer .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 30%;
}
footer .left .social {
  display: flex;
  gap: 2rem;
}
footer .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 70%;
}
@media all and (max-width: 599px) {
  footer .right {
    width: 100%;
  }
}
footer .right .options {
  border-bottom: 1px solid rgb(228, 228, 228);
  padding: 2rem 0;
  width: 100%;
}
footer .right .options ul {
  list-style-type: none;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media all and (max-width: 899px) {
  footer .right .options ul {
    flex-direction: column;
    text-align: center;
  }
}
footer .right .options ul li a {
  font-size: 1.15rem;
  font-weight: 400;
  color: #79527c;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
footer .right .options .slogan {
  width: 100%;
}
footer .right .options .slogan p {
  text-align: center;
  font-size: 1rem;
  color: #79527c;
  font-weight: 700;
  margin-top: 0.5rem;
}
footer .right .contact {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  width: 100%;
}
@media all and (max-width: 699px) {
  footer .right .contact {
    flex-direction: column;
  }
}
footer .right .contact h5 {
  font-size: 1.2rem;
  color: #a657ab;
  font-weight: 400;
  margin: 0;
}
footer .right .contact .fw-logo {
  margin-left: auto;
}

main.landing-page .hero-slider {
  float: left;
  width: 100%;
}
main.landing-page .hero-slider .item {
  float: left;
  width: 50%;
  padding-bottom: 40%;
  background-size: cover !important;
}
main.landing-page .box-list {
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media all and (max-width: 999px) {
  main.landing-page .box-list {
    flex-direction: column;
  }
}
main.landing-page .box-list .item {
  width: 31%;
  box-shadow: 0 14px 28px 0 rgba(0, 0, 0, 0.04);
  border: 1px solid #e5e5e5;
  margin: 1%;
}
@media all and (max-width: 999px) {
  main.landing-page .box-list .item {
    width: 100%;
  }
}
main.landing-page .box-list .item .image {
  float: left;
  width: 100%;
}
main.landing-page .box-list .item .image img {
  max-width: 100%;
  height: auto;
}
main.landing-page .box-list .item .info {
  float: left;
  width: 100%;
  padding: 25px;
}
main.landing-page .box-list .item .info p {
  font-size: 1rem;
}
main.landing-page .box-list .item .info h3 {
  float: left;
  width: 100%;
  font-size: 30px;
  color: #231822;
  font-family: "Outfit";
}
main.landing-page .box-list .item .info h3:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background: #f1f1f1;
  margin-bottom: 20px;
  margin-top: 10px;
}
main.landing-page .box-list .item .info a.more {
  float: left;
  font-family: "Outfit";
  text-transform: uppercase;
  color: #c990cc;
  font-size: 12px;
  text-decoration: none;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 10px;
  -webkit-transition: all 150ms ease-in;
  -moz-transition: all 150ms ease-in;
  -o-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
  margin-top: 20px;
}
main.landing-page .box-list .item .info a.more:hover {
  border-bottom: 2px solid #c990cc;
}
main.landing-page .box-list .item .info a.more img {
  vertical-align: middle;
  margin-left: 4px;
}
main.landing-page .post-content {
  float: left;
  width: 100%;
  margin-bottom: 40px;
  line-height: 1.5;
}
main.landing-page .post-content p {
  margin-bottom: 20px;
}
main.landing-page .init-content {
  float: left;
  width: 100%;
  position: relative;
  margin-top: -50px;
  background: white;
  padding: 40px;
  display: flex;
}
@media all and (max-width: 999px) {
  main.landing-page .init-content {
    flex-direction: column;
    padding: 30px;
  }
}
main.landing-page .init-content .text {
  flex: 1;
  margin-left: 50px;
}
@media all and (max-width: 999px) {
  main.landing-page .init-content .text {
    margin-left: 0px;
  }
}
main.landing-page .init-content .text p {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 1.2rem;
}
main.landing-page .init-content .title {
  width: 40%;
  position: relative;
}
@media all and (max-width: 999px) {
  main.landing-page .init-content .title {
    width: 100%;
    margin-bottom: 20px;
  }
}
main.landing-page .init-content .title:before {
  content: "";
  border: 5px solid #c990cc;
  position: absolute;
  bottom: 0px;
  right: 0px;
  top: -200px;
  left: 0px;
}
@media all and (max-width: 999px) {
  main.landing-page .init-content .title:before {
    top: -100px;
  }
}
main.landing-page .init-content .title .box {
  float: right;
  background: #ffffff;
  padding: 30px;
  font-size: 48px;
  line-height: 1;
  font-family: "Outfit";
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.07);
  color: #c990cc;
  max-width: 500px;
  position: relative;
  margin-right: -20px;
}
@media all and (max-width: 999px) {
  main.landing-page .init-content .title .box {
    float: left;
    margin-bottom: 20px;
    font-size: 30px;
  }
}
main.landing-page .our-professionals {
  float: left;
  width: 100%;
  border-top: 1px solid #e5e5e5;
  padding: 40px 0px;
}
main.landing-page .our-professionals.bb {
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 40px;
}
main.landing-page .our-professionals h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 20px;
  font-family: "Outfit";
}
main.landing-page .our-professionals .list {
  float: left;
  width: 100%;
}
main.landing-page .our-professionals .list .slick-dots {
  float: left;
  width: 100%;
  text-align: center;
}
main.landing-page .our-professionals .list .slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #e5e5e5;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  margin: 5px;
}
main.landing-page .our-professionals .list .slick-dots li button {
  display: none;
}
main.landing-page .our-professionals .list .slick-dots li.slick-active {
  background: #555;
}
main.landing-page .our-professionals .list .prev,
main.landing-page .our-professionals .list .next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  left: -50px;
  background: url(../images/arrow-prev.svg) center center no-repeat;
  cursor: pointer;
}
main.landing-page .our-professionals .list .prev:hover,
main.landing-page .our-professionals .list .next:hover {
  opacity: 0.4;
}
@media all and (max-width: 1510px) {
  main.landing-page .our-professionals .list .prev,
  main.landing-page .our-professionals .list .next {
    left: -30px;
  }
}
main.landing-page .our-professionals .list .next {
  left: auto;
  right: -50px;
  background: url(../images/arrow-next.svg) center center no-repeat;
  cursor: pointer;
}
main.landing-page .our-professionals .list .next:hover {
  opacity: 0.4;
}
@media all and (max-width: 1510px) {
  main.landing-page .our-professionals .list .next {
    right: -30px;
  }
}
main.landing-page .our-professionals .list * {
  outline: none;
}
main.landing-page .our-professionals .list .item {
  width: 21%;
  border: 1px solid #e5e5e5;
  margin: 20px;
}
main.landing-page .our-professionals .list .item .image {
  float: left;
  width: 100%;
}
main.landing-page .our-professionals .list .item .image img {
  width: 100%;
  height: auto;
  display: block;
}
main.landing-page .our-professionals .list .item .info {
  float: left;
  width: 100%;
  padding: 30px;
}
@media all and (max-width: 899px) {
  main.landing-page .our-professionals .list .item .info {
    padding: 20px;
  }
}
main.landing-page .our-professionals .list .item .info h3 {
  font-size: 25px;
  font-family: "Outfit";
  color: #c990cc;
}
@media all and (max-width: 899px) {
  main.landing-page .our-professionals .list .item .info h3 {
    font-size: 20px;
  }
}
main.landing-page .our-professionals .list .item .info h4 {
  font-family: "Outfit";
  margin: 15px 0px;
  float: left;
  width: 100%;
}
@media all and (max-width: 899px) {
  main.landing-page .our-professionals .list .item .info p {
    font-size: 15px;
  }
}
main.landing-page .our-professionals .list .item .contacts {
  float: left;
  width: 100%;
  border-top: 1px solid #e5e5e5;
  padding: 30px;
}
main.landing-page .our-professionals .list .item .contacts a {
  float: left;
  width: 100%;
  color: #c990cc;
  font-family: "Outfit";
  text-decoration: none;
}
main.landing-page .our-professionals .list .item .contacts span {
  color: #333;
  font-family: "Outfit";
}
main.landing-page .our-services {
  float: left;
  width: 100%;
  margin-top: 40px;
}
main.landing-page .our-services h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 20px;
}
main.landing-page .our-services .slick-dots {
  float: left;
  width: 100%;
  text-align: center;
}
main.landing-page .our-services .slick-dots li {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #e5e5e5;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  -o-border-radius: 8px;
  border-radius: 8px;
  margin: 5px;
}
main.landing-page .our-services .slick-dots li button {
  display: none;
}
main.landing-page .our-services .slick-dots li.slick-active {
  background: #555;
}
main.landing-page .our-services .block {
  float: left;
  width: 100%;
  background: #f8f8f8;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}
main.landing-page .our-services .block .slider {
  float: left;
  width: 100%;
  position: relative;
}
main.landing-page .our-services .block .slider .prev,
main.landing-page .our-services .block .slider .next {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  margin-top: -25px;
  left: -50px;
  background: url(../images/arrow-prev.svg) center center no-repeat;
  cursor: pointer;
}
main.landing-page .our-services .block .slider .prev:hover,
main.landing-page .our-services .block .slider .next:hover {
  opacity: 0.4;
}
@media all and (max-width: 1510px) {
  main.landing-page .our-services .block .slider .prev,
  main.landing-page .our-services .block .slider .next {
    left: -30px;
  }
}
main.landing-page .our-services .block .slider .next {
  left: auto;
  right: -50px;
  background: url(../images/arrow-next.svg) center center no-repeat;
  cursor: pointer;
}
main.landing-page .our-services .block .slider .next:hover {
  opacity: 0.4;
}
@media all and (max-width: 1510px) {
  main.landing-page .our-services .block .slider .next {
    right: -30px;
  }
}
main.landing-page .our-services .block .slider * {
  outline: none;
}
main.landing-page .our-services .block .slider .item {
  /* Rectangle 13: */
  background: #ffffff;
  box-shadow: 0 11px 24px 0 rgba(0, 0, 0, 0.1);
  margin-right: 25px;
  margin-left: 10px;
  margin-top: 20px;
  margin-bottom: 40px;
  padding: 30px;
}
main.landing-page .our-services .block .slider .item h4 {
  color: #c990cc;
  font-size: 26px;
}
main.landing-page .our-services .block .slider .item h4:after {
  content: "";
  display: block;
  width: 20px;
  margin-top: 4px;
  margin-bottom: 10px;
  height: 2px;
  background: #e5e5e5;
}
main.landing-page .faq {
  float: left;
  width: 100%;
  padding: 60px 0px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 40px;
}
main.landing-page .faq h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 40px;
}
main.landing-page .faq .list {
  float: left;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media all and (max-width: 999px) {
  main.landing-page .faq .list {
    flex-direction: column;
  }
}
main.landing-page .faq .list .item {
  width: 48%;
  margin-bottom: 30px;
  display: flex;
}
@media all and (max-width: 999px) {
  main.landing-page .faq .list .item {
    width: 100%;
  }
}
main.landing-page .faq .list .item i {
  width: 30px;
  height: 30px;
  border: 1px solid #eaeaea;
  background: #f6f6f6;
  text-align: center;
  line-height: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  -ms-border-radius: 30px;
  -o-border-radius: 30px;
  border-radius: 30px;
  color: #9a9a9a;
}
main.landing-page .faq .list .item .info {
  flex: 1;
  margin-left: 20px;
}
main.landing-page .faq .list .item .info h4 {
  font-family: "Outfit";
  font-size: 15px;
  color: #c990cc;
  float: left;
  width: 100%;
  margin-bottom: 10px;
}
main.landing-page .faq .list .item .info p {
  line-height: 1.4;
  font-size: 15px;
}
main.landing-page .last-posts {
  float: left;
  width: 100%;
  margin-bottom: 40px;
}
main.landing-page .last-posts h2 {
  font-size: 30px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 40px;
}
main.landing-page .last-posts .list {
  float: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media all and (max-width: 899px) {
  main.landing-page .last-posts .list {
    flex-direction: column;
  }
}
main.landing-page .last-posts .list .item {
  /* Rectangle 10: */
  background: #ffffff;
  border: 1px solid #f0f0f0;
  box-shadow: 0 13px 22px 0 rgba(0, 0, 0, 0.06);
  width: 31%;
}
@media all and (max-width: 899px) {
  main.landing-page .last-posts .list .item {
    width: 100%;
    margin-bottom: 20px;
  }
}
main.landing-page .last-posts .list .item .title {
  float: left;
  width: 100%;
  border-bottom: 1px solid #e5e5e5;
  padding: 20px;
}
main.landing-page .last-posts .list .item .title h3 {
  color: #c990cc;
  font-size: 20px;
  font-family: "Outfit";
  color: #231822;
}
main.landing-page .last-posts .list .item .title span {
  background: #c990cc;
  float: left;
  padding: 10px;
  color: white;
  margin-top: 10px;
}
main.landing-page .last-posts .list .item .excerpt {
  float: left;
  width: 100%;
  padding: 20px;
}

main.historia {
  width: 100%;
}
main.historia .about-intro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media all and (max-width: 999px) {
  main.historia .about-intro {
    display: flex;
    flex-direction: column;
  }
}
main.historia .about-intro .default-text-content {
  margin-top: 40px;
}
@media all and (max-width: 999px) {
  main.historia .about-intro .default-text-content {
    margin-top: 0;
  }
}
main.historia .about-intro .image {
  position: relative;
  margin-top: -30px;
}
@media all and (max-width: 999px) {
  main.historia .about-intro .image {
    margin-top: 0;
  }
}
main.historia .about-intro .image:after {
  content: "";
  width: 100%;
  height: 5px;
  background: #c990cc;
  display: block;
}
main.historia .about-intro .image img {
  max-width: 100%;
  height: auto;
}
main.historia .list-areas {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: center;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media all and (max-width: 999px) {
  main.historia .list-areas {
    display: flex;
    flex-direction: column;
  }
}
main.historia .list-areas .area {
  position: relative;
  width: 50%;
}
@media all and (max-width: 999px) {
  main.historia .list-areas .area {
    width: 100%;
  }
}
main.historia .list-areas .area:nth-child(odd) {
  margin-top: -220px;
}
@media all and (max-width: 999px) {
  main.historia .list-areas .area:nth-child(odd) {
    margin-top: 4rem;
  }
}
main.historia .list-areas .area:nth-child(even) {
  margin-top: 90px;
}
@media all and (max-width: 999px) {
  main.historia .list-areas .area:nth-child(even) {
    margin-top: 4rem;
  }
}
main.historia .list-areas .area:nth-child(2) {
  margin-top: 310px;
}
@media all and (max-width: 999px) {
  main.historia .list-areas .area:nth-child(2) {
    margin-top: 4rem;
  }
}
main.historia .list-areas .area:nth-child(1) {
  margin-top: 0px;
}
@media all and (max-width: 999px) {
  main.historia .list-areas .area:nth-child(1) {
    margin-top: 4rem;
  }
}
main.historia .list-areas .area .image {
  width: 100%;
  display: block;
}
main.historia .list-areas .area .image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}
main.historia .list-areas .area .box {
  position: absolute;
  bottom: 0;
  right: 0;
  height: 50%;
  max-height: 320px;
  width: 70%;
  margin-bottom: -3rem;
  padding: 2rem;
  background-color: white;
}
@media all and (max-width: 1199px) {
  main.historia .list-areas .area .box {
    position: relative;
    width: 100%;
    margin-top: -2rem;
    max-height: none;
    padding: 0;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }
}
main.historia .list-areas .area .box h4 {
  font-size: 2.4rem;
  color: #79527c;
  font-weight: 600;
  line-height: 1.1;
}
main.historia .list-areas .area .box h4:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #79527c;
  display: block;
  margin: 10px 0;
  opacity: 0.5;
}
main.historia .list-areas .area .box p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: #726872;
}
main.historia .historia-banner {
  background: rgb(22, 15, 22);
  background: linear-gradient(90deg, rgb(22, 15, 22) 15%, rgb(54, 37, 55) 100%);
  padding-top: 200px;
  width: 100%;
}
@media all and (max-width: 999px) {
  main.historia .historia-banner {
    min-height: auto;
    padding-top: 100px;
  }
}
main.historia .historia-banner .content {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media all and (max-width: 999px) {
  main.historia .historia-banner .content {
    flex-direction: column-reverse;
    min-height: auto;
    padding-bottom: 2rem;
  }
}
main.historia .historia-banner .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  min-height: 770px;
  width: 40%;
}
@media all and (max-width: 999px) {
  main.historia .historia-banner .info {
    width: 100%;
    border-right: none;
    min-height: auto;
    padding: 2rem;
  }
}
main.historia .historia-banner .info h2 {
  font-size: 5.5rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.historia .historia-banner .info h2 {
    font-size: 3rem;
  }
}
main.historia .historia-banner .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #dd81e3;
  display: block;
  margin-top: 3rem;
  opacity: 0.5;
}
main.historia .historia-banner .info p {
  font-size: 1.3rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}
@media all and (max-width: 999px) {
  main.historia .historia-banner .info p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
main.historia .historia-banner .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  max-width: 750px;
}
@media all and (max-width: 999px) {
  main.historia .historia-banner .image {
    width: 100%;
  }
}
main.historia .historia-banner .image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 100px;
}
@media all and (max-width: 999px) {
  main.historia .historia-banner .image img {
    margin-top: 0;
    max-width: 500px;
  }
}
main.historia h1 {
  text-align: center;
  width: 100%;
  font-size: 52px;
  color: #c990cc;
  margin-bottom: 40px;
}
@media all and (max-width: 999px) {
  main.historia h1 {
    font-size: 46px;
  }
}
main.historia h3 {
  color: #3d3d3d;
  text-transform: uppercase;
  font-family: "Outfit";
  font-size: 2rem;
  margin-bottom: 1rem;
}
main.historia h3:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #79527c;
}
main.historia .pre-text {
  float: left;
  width: 100%;
  margin-bottom: 40px;
}
main.historia .pre-text p {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #f8f8f8;
  line-height: 1.7;
  text-align: center;
}
main.historia .values {
  float: left;
  width: 100%;
  margin-bottom: 40px;
}
main.historia .values .pre-block {
  float: left;
  width: 100%;
  height: 240px;
  background-color: #79527c;
}
main.historia .values .the-content-block {
  float: left;
  width: 100%;
  /* Rectangle 18: */
  background: #ffffff;
  box-shadow: 0 11px 26px 0 rgba(0, 0, 0, 0.05);
  margin-top: -200px;
  display: flex;
  align-items: center;
}
@media all and (max-width: 999px) {
  main.historia .values .the-content-block {
    flex-direction: column;
  }
}
main.historia .values .the-content-block .image {
  width: 51%;
  height: 682px;
  background-size: cover !important;
}
@media all and (max-width: 999px) {
  main.historia .values .the-content-block .image {
    width: 100%;
    height: 300px;
  }
}
main.historia .values .the-content-block .info {
  flex: 1;
  padding: 2rem;
}
main.historia .values .the-content-block .info h2 {
  font-size: 4rem;
  color: #c990cc;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.historia .values .the-content-block .info h2 {
    font-size: 1.8rem;
  }
}
main.historia .values .the-content-block .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #79527c;
  display: block;
  margin: 3rem 0;
  opacity: 0.5;
}
main.historia .values .the-content-block .info p {
  font-size: 1rem;
  color: #726872;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
  margin-top: 1rem;
}
@media all and (max-width: 999px) {
  main.historia .values .the-content-block .info p {
    font-size: 1.1rem;
    line-height: 1.2;
  }
}
main.historia .values .the-content-block .info strong {
  font-weight: 600;
  color: #231822;
}
main.historia .team {
  width: 100%;
  margin: 4rem 0;
}
@media all and (max-width: 999px) {
  main.historia .team {
    min-height: auto;
  }
}
main.historia .team .content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
@media all and (max-width: 999px) {
  main.historia .team .content {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 2rem;
  }
}
main.historia .team .team-list {
  display: flex;
  justify-content: center;
  width: 50%;
  gap: 5px;
}
@media all and (max-width: 999px) {
  main.historia .team .team-list {
    width: 100%;
    flex-direction: column;
    align-items: center;
  }
}
@media all and (max-width: 999px) {
  main.historia .team .team-list .item .image img {
    max-width: 100%;
    height: auto;
  }
}
main.historia .team .team-list .item .image img {
  width: auto;
  height: auto;
  border-radius: 6px;
}
main.historia .team .team-list .item .about {
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  padding: 1rem;
  background-color: #c990cc;
}
main.historia .team .team-list .item .about h4 {
  font-size: 1.2rem;
  color: #231822;
  margin: 0;
  margin-top: 0.5rem;
  font-weight: 300;
}
@media all and (max-width: 999px) {
  main.historia .team .team-list .item .about h4 {
    font-size: 1rem;
  }
}
main.historia .team .team-list .item .about h4:after {
  content: "";
  width: 40px;
  height: 2px;
  background: white;
  display: block;
  margin: 0.5rem 0;
  opacity: 0.5;
}
main.historia .team .team-list .item .about strong {
  font-weight: 600;
  color: #f8f8f8;
}
main.historia .team .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  width: 60%;
  padding-right: 10%;
  margin: 5rem 0;
}
@media all and (max-width: 999px) {
  main.historia .team .info {
    width: 100%;
    border-right: none;
    min-height: auto;
    padding: 0rem;
  }
}
main.historia .team .info h2 {
  font-size: 4rem;
  color: #c990cc;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.historia .team .info h2 {
    font-size: 3rem;
  }
}
main.historia .team .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #79527c;
  display: block;
  margin-top: 3rem;
  opacity: 0.5;
}
main.historia .team .info p {
  font-size: 1.3rem;
  color: #726872;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}
@media all and (max-width: 999px) {
  main.historia .team .info p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
main.historia .clients .title h2 {
  font-size: 4rem;
  color: #79527c;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.historia .clients .title h2 {
    font-size: 3rem;
  }
}
main.historia .clients .title h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #79527c;
  display: block;
  margin-top: 3rem;
  margin-bottom: 2rem;
  opacity: 0.5;
}
main.historia .clients .title p {
  font-size: 1.3rem;
  color: #726872;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}
@media all and (max-width: 999px) {
  main.historia .clients .title p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
main.historia .clients .list-clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 1rem;
  padding: 5rem 0;
}
@media all and (max-width: 999px) {
  main.historia .clients .list-clients {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
  }
}
main.historia .clients .list-clients .client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media all and (max-width: 349px) {
  main.historia .clients .list-clients .client {
    flex-direction: column;
  }
}
main.historia .clients .list-clients .client img {
  max-width: 90px;
  height: auto;
}
@media all and (max-width: 349px) {
  main.historia .clients .list-clients .client .info {
    margin: 0 auto;
  }
}
main.historia .clients .list-clients .client .info h2 {
  font-size: 1.2rem;
  color: #c990cc;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.historia .clients .list-clients .client .info h2 {
    font-size: 1.6rem;
    text-align: center;
  }
}
main.historia .clients .list-clients .client .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #dd81e3;
  display: block;
  margin: 0.5rem 0;
  opacity: 0.5;
}
@media all and (max-width: 999px) {
  main.historia .clients .list-clients .client .info h2:after {
    margin: 1rem auto;
  }
}
main.historia .clients .list-clients .client .info a {
  text-decoration: none;
  color: #231822;
  font-size: 1rem;
  font-weight: 600;
}
@media all and (max-width: 999px) {
  main.historia .clients .list-clients .client .info a {
    font-size: 1rem;
    line-break: anywhere;
  }
}
main.historia .innovation {
  float: left;
  width: 100%;
  min-height: 335px;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  background-size: cover !important;
}
@media all and (max-width: 999px) {
  main.historia .innovation {
    padding-top: 50px;
  }
}
main.historia .innovation .inset {
  float: left;
  width: 100%;
  display: flex;
  align-items: center;
}
@media all and (max-width: 999px) {
  main.historia .innovation .inset {
    flex-direction: column;
  }
}
main.historia .innovation .inset .tit {
  width: 40%;
}
main.historia .innovation .inset .tit h3 {
  color: white;
  text-transform: uppercase;
  font-family: "Outfit";
  font-size: 40px;
}
main.historia .innovation .inset .tit h3:after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #c990cc;
}
main.historia .innovation .inset .text {
  flex: 1;
  /* Rectangle 20: */
  background: #ffffff;
  box-shadow: 0 2px 47px 0 rgba(0, 0, 0, 0.16);
  padding: 50px;
  margin-bottom: -40px;
  margin-top: 40px;
}
main.historia .innovation .inset .text p {
  margin-bottom: 20px;
}
main.historia .slider-galeria {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
main.historia .slider-galeria .slick-arrow {
  outline: 1px solid red;
}
main.historia .slider-galeria .slick-prev,
main.historia .slider-galeria .slick-next {
  visibility: hidden;
}
main.historia .slider-galeria .item {
  margin: 0;
}
@media all and (max-width: 999px) {
  main.historia .slider-galeria .item {
    width: 270px;
    height: 180px;
    margin-left: 1rem;
  }
}
@media all and (max-width: 499px) {
  main.historia .slider-galeria .item {
    width: 180px;
    height: 120px;
    margin-left: 1rem;
  }
}
main.historia .slider-galeria .item img {
  width: 100%;
  height: auto;
}
main.historia .slider-galeria .item .info {
  text-align: center;
}
main.historia .slider-galeria .item .info h4 {
  margin-top: 10px;
}
main.historia .gallery-wrapper {
  padding-bottom: 6rem;
  position: relative;
}
main.historia .gallery-wrapper .content {
  padding: 0px 50px;
  position: relative;
}
main.historia .gallery-wrapper .title h2 {
  font-size: 3rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.historia .gallery-wrapper .title h2 {
    font-size: 3rem;
  }
}
main.historia .gallery-wrapper .title h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #dd81e3;
  display: block;
  margin: 1rem 0;
  opacity: 0.5;
}
main.historia .gallery-wrapper .title p {
  font-size: 1.2rem;
  color: #f8f8f8;
  font-weight: 400;
  margin-bottom: 1rem;
}
main.historia .gallery-wrapper .button-container {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 50%;
  border: 1px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
}
main.historia .gallery-wrapper .button-container i:before {
  vertical-align: middle;
}
main.historia .gallery-wrapper .button-container.prev {
  left: 0;
}
main.historia .gallery-wrapper .button-container.next {
  right: 0;
}

.gallery-wrapper {
  padding: 5rem 0;
  /* Rectangle 5 */
  background: linear-gradient(53.17deg, #432345 -15.54%, #a657ab 149.9%);
}

main.contato {
  width: 100%;
  min-height: 1000px;
}
main.contato .contact-header {
  background: rgb(22, 15, 22);
  background: linear-gradient(90deg, rgb(22, 15, 22) 15%, rgb(54, 37, 55) 100%);
  height: 200px;
  width: 100%;
}
@media all and (max-width: 999px) {
  main.contato .contact-header {
    height: 100px;
    background: none;
  }
}
main.contato .cta-form {
  display: flex;
  width: 100%;
  min-height: 600px;
  margin: 100px 0;
  gap: 40px;
}
@media all and (max-width: 999px) {
  main.contato .cta-form {
    margin-top: 0;
    flex-direction: column;
  }
}
main.contato .cta-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
main.contato .cta-form .form-group label {
  color: #79527c;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: bold;
}
main.contato .cta-form .info {
  border-right: 2px solid #e5e5e5;
  width: 50%;
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 50px;
}
main.contato .cta-form .info p {
  margin-bottom: 20px;
  line-height: 1.5;
}
@media all and (max-width: 999px) {
  main.contato .cta-form .info {
    border-right: 0;
    width: 100%;
    padding-top: 0;
    border-top: 2px solid #e5e5e5;
    margin-top: 30px;
    padding-top: 30px;
  }
}
main.contato .cta-form .info h2 {
  font-size: 4rem;
  color: #c990cc;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.contato .cta-form .info h2 {
    font-size: 2rem;
  }
}
main.contato .cta-form .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #79527c;
  display: block;
  margin: 2rem 0;
  opacity: 0.5;
}
main.contato .cta-form .info .item-contact {
  display: flex;
  margin-bottom: 30px;
}
main.contato .cta-form .info .item-contact > i {
  width: 50px;
  height: 50px;
  background: #c990cc;
  color: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 6px;
  margin-right: 20px;
  border-radius: 50px;
}
main.contato .cta-form .info .item-contact-inset {
  display: flex;
  flex-direction: column;
}
main.contato .cta-form .info .item-contact-inset span {
  color: #79527c;
  font-weight: bold;
  margin-bottom: 10px;
}
main.contato .cta-form .form {
  flex: 1;
  margin-left: 40px;
  padding-top: 140px;
  padding-bottom: 60px;
}
@media all and (max-width: 999px) {
  main.contato .cta-form .form {
    padding-top: 0;
    padding-left: 0;
    margin-left: 0;
    margin-top: 20px;
  }
}
main.contato .cta-form .form form {
  position: relative;
  display: flex;
  flex-direction: column;
}
main.contato .cta-form .form h3 {
  color: #79527c;
  font-size: 3rem;
  margin: 0;
  margin-bottom: 2rem;
}
main.contato .cta-form .form input,
main.contato .cta-form .form textarea {
  margin-bottom: 10px;
  padding: 15px;
  border: 2px solid #e5e5e5;
  resize: none;
  border-radius: 10px;
  outline: none;
}
main.contato .cta-form .form button {
  position: absolute;
  bottom: 0;
  right: 0;
  background: white;
  border-top: none;
  border-left: none;
  border-right: none;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  margin-bottom: -2rem;
}

main.equipe {
  float: left;
  width: 100%;
}
main.equipe .team-banner {
  background: rgb(22, 15, 22);
  background: linear-gradient(90deg, rgb(22, 15, 22) 15%, rgb(54, 37, 55) 100%);
  padding-top: 200px;
  width: 100%;
}
@media all and (max-width: 999px) {
  main.equipe .team-banner {
    min-height: auto;
    padding-top: 100px;
  }
}
main.equipe .team-banner .content {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media all and (max-width: 999px) {
  main.equipe .team-banner .content {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 2rem;
  }
}
main.equipe .team-banner .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  min-height: 770px;
  width: 50%;
  padding-right: 10%;
}
@media all and (max-width: 999px) {
  main.equipe .team-banner .info {
    width: 100%;
    border-right: none;
    min-height: auto;
    padding: 2rem;
  }
}
main.equipe .team-banner .info h2 {
  font-size: 5.5rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.equipe .team-banner .info h2 {
    font-size: 3rem;
  }
}
main.equipe .team-banner .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #dd81e3;
  display: block;
  margin-top: 3rem;
  opacity: 0.5;
}
main.equipe .team-banner .info p {
  font-size: 1.3rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}
@media all and (max-width: 999px) {
  main.equipe .team-banner .info p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
main.equipe .team-banner .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
@media all and (max-width: 999px) {
  main.equipe .team-banner .image {
    width: 100%;
  }
}
main.equipe .team-banner .image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 100px;
}
@media all and (max-width: 999px) {
  main.equipe .team-banner .image img {
    margin-top: 0;
    max-width: 500px;
  }
}
main.equipe .team-list {
  width: 100%;
  padding: 3rem 0;
  margin-bottom: 2rem;
}
main.equipe .team-list .content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media all and (max-width: 999px) {
  main.equipe .team-list .content {
    display: flex;
    flex-direction: column;
  }
}
main.equipe .team-list .team-item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  flex-direction: column;
}
@media all and (max-width: 999px) {
  main.equipe .team-list .team-item {
    flex-direction: column;
  }
}
main.equipe .team-list .team-item .image {
  display: flex;
  width: 100%;
}
@media all and (max-width: 999px) {
  main.equipe .team-list .team-item .image {
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
main.equipe .team-list .team-item .image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 6px;
}
main.equipe .team-list .team-item .info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media all and (max-width: 999px) {
  main.equipe .team-list .team-item .info {
    width: 100%;
  }
}
main.equipe .team-list .team-item .info .name h2 {
  font-size: 2rem;
  color: #79527c;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.equipe .team-list .team-item .info .name h2 {
    font-size: 2rem;
  }
}
main.equipe .team-list .team-item .info .name h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #dd81e3;
  display: block;
  margin-top: 1rem;
  opacity: 0.5;
}
main.equipe .team-list .team-item .info .description {
  width: 100%;
}
main.equipe .team-list .team-item .info .description p {
  font-size: 1rem;
  color: #726872;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
  text-align: justify;
  width: 100%;
}
@media all and (max-width: 999px) {
  main.equipe .team-list .team-item .info .description p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
main.equipe .team-list .team-item .info .contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
main.equipe .team-list .team-item .info .contact a {
  text-decoration: none;
  color: #a657ab;
  font-size: 1rem;
  font-weight: 600;
}
@media all and (max-width: 999px) {
  main.equipe .team-list .team-item .info .contact a {
    text-align: center;
  }
}
main.equipe .team-list .team-item .info .contact a:visited {
  color: #79527c;
}
main.equipe .team-list .team-item .info .contact a:hover {
  color: #c990cc;
}
main.equipe .team-list .team-item .info .contact a:active {
  color: #a657ab;
}
main.equipe .team-list .team-item .social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin: auto 0;
  padding-top: 1rem;
}
@media all and (max-width: 999px) {
  main.equipe .team-list .team-item .social {
    flex-direction: row;
    border-left: none;
    border-top: 1px solid #c990cc;
    margin-left: 0;
    width: 100%;
  }
}
main.equipe .team-list .team-item .social a {
  text-decoration: none;
}
main.equipe .team-list .team-item .social a i {
  color: #79527c;
  font-size: 32px;
}

main.blog {
  float: left;
  width: 100%;
  padding-top: 100px;
}
main.blog h1 {
  float: left;
  width: 100%;
  font-size: 52px;
  color: #c990cc;
  margin-bottom: 40px;
}
@media all and (max-width: 999px) {
  main.blog h1 {
    font-size: 46px;
  }
}
main.blog .main-view {
  float: left;
  width: 100%;
  display: flex;
  margin-bottom: 40px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 40px;
}
main.blog .main-view:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
}
main.blog .main-view .info {
  width: 40%;
  margin-right: 30px;
}
main.blog .main-view .info h2 {
  font-size: 36px;
  color: #231822;
}
main.blog .main-view .info .date {
  background: #231822;
  float: left;
  clear: both;
  padding: 15px;
  color: white;
  margin-top: 10px;
}
main.blog .main-view .blog-content {
  flex: 1;
}
main.blog .main-view .blog-content p {
  margin-bottom: 20px;
}
main.blog .main-view .blog-content a {
  color: #c990cc;
  text-decoration: none;
  position: relative;
}
main.blog .main-view .blog-content a:after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -3px;
  right: 0px;
  height: 8px;
  background: #c990cc;
  opacity: 0.2;
}
main.blog .main-view .blog-content strong {
  font-family: "Outfit";
}
main.blog .main-view .blog-content em {
  font-style: italic;
}

main.atuacao {
  width: 100%;
}
main.atuacao .areas-banner {
  background: rgb(22, 15, 22);
  background: linear-gradient(90deg, rgb(22, 15, 22) 15%, rgb(54, 37, 55) 100%);
  padding-top: 200px;
  width: 100%;
}
@media all and (max-width: 999px) {
  main.atuacao .areas-banner {
    min-height: auto;
    padding-top: 100px;
  }
}
main.atuacao .areas-banner .content {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
@media all and (max-width: 999px) {
  main.atuacao .areas-banner .content {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 2rem;
  }
}
main.atuacao .areas-banner .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  min-height: 770px;
  width: 40%;
}
@media all and (max-width: 999px) {
  main.atuacao .areas-banner .info {
    width: 100%;
    border-right: none;
    min-height: auto;
    padding: 2rem;
  }
}
main.atuacao .areas-banner .info h2 {
  font-size: 5.5rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.atuacao .areas-banner .info h2 {
    font-size: 3rem;
  }
}
main.atuacao .areas-banner .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #dd81e3;
  display: block;
  margin-top: 3rem;
  opacity: 0.5;
}
main.atuacao .areas-banner .info p {
  font-size: 1.3rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}
@media all and (max-width: 999px) {
  main.atuacao .areas-banner .info p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
main.atuacao .areas-banner .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
}
@media all and (max-width: 999px) {
  main.atuacao .areas-banner .image {
    width: 100%;
  }
}
main.atuacao .areas-banner .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media all and (max-width: 999px) {
  main.atuacao .areas-banner .image img {
    margin-top: 0;
    max-width: 500px;
  }
}
main.atuacao .traits {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  margin-top: -100px;
}
@media all and (max-width: 819px) {
  main.atuacao .traits {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 449px) {
  main.atuacao .traits {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
main.atuacao .traits .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 2rem;
  margin: 10px;
  border-radius: 6px;
  background: rgb(241, 241, 241);
  background: linear-gradient(0deg, rgb(241, 241, 241) 0%, rgb(255, 255, 255) 100%);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  z-index: 20;
}
@media all and (max-width: 449px) {
  main.atuacao .traits .item {
    width: 100%;
  }
}
@media all and (max-width: 969px) {
  main.atuacao .traits .item {
    padding: 1rem;
  }
}
@media all and (max-width: 819px) {
  main.atuacao .traits .item {
    padding: 2rem;
  }
}
main.atuacao .traits .item .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #c990cc;
  border-radius: 60px;
}
@media all and (max-width: 1169px) {
  main.atuacao .traits .item .image {
    width: 80px;
    height: 80px;
  }
}
main.atuacao .traits .item .image i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 65px;
  color: #f8f8f8;
}
@media all and (max-width: 1169px) {
  main.atuacao .traits .item .image i {
    font-size: 40px;
  }
}
main.atuacao .traits .item .image:hover {
  background: linear-gradient(270deg, rgb(38, 38, 38) 0%, rgb(75, 75, 75) 100%);
}
main.atuacao .traits .item h3 {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #79527c;
  text-align: center;
  margin: 1rem 0;
  height: 65px;
}
@media all and (max-width: 1169px) {
  main.atuacao .traits .item h3 {
    font-size: 1rem;
  }
}
@media all and (max-width: 449px) {
  main.atuacao .traits .item h3 {
    height: auto;
  }
}
main.atuacao .traits .item p {
  font-size: 0.85rem;
  color: #726872;
  text-align: center;
}
main.atuacao .areas {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 3rem;
}
main.atuacao .areas h3 {
  font-size: 3.2rem;
  color: #79527c;
  margin-top: 3rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 5rem;
  background: linear-gradient(239.65deg, #c990cc 29.96%, #a657ab 68.47%), #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media all and (max-width: 999px) {
  main.atuacao .areas h3 {
    font-size: 1.6rem;
  }
}
main.atuacao .areas h3:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #79527c;
  display: block;
  margin-top: 3rem;
  margin-right: auto;
  margin-left: auto;
  opacity: 0.5;
}
main.atuacao .areas .item {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  padding: 5rem 0;
  border-bottom: 1px solid #f1f1f1;
  width: 100%;
}
@media all and (max-width: 999px) {
  main.atuacao .areas .item {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
@media all and (max-width: 999px) {
  main.atuacao .areas .item.alt {
    flex-direction: column-reverse;
  }
}
@media all and (max-width: 999px) {
  main.atuacao .areas .item .info {
    width: 100%;
    padding: 0 2rem;
  }
}
main.atuacao .areas .item .info h2 {
  font-size: 3.5rem;
  color: #c990cc;
  margin: 0;
  font-weight: 500;
  line-height: 1;
  background: linear-gradient(90deg, #432345 0%, #a657ab 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media all and (max-width: 999px) {
  main.atuacao .areas .item .info h2 {
    font-size: 2.7rem;
  }
}
main.atuacao .areas .item .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #79527c;
  display: block;
  margin: 2rem 0;
  opacity: 0.5;
}
main.atuacao .areas .item .info p {
  line-height: 1.4;
  color: #726872;
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 15px;
}
@media all and (max-width: 599px) {
  main.atuacao .areas .item .info p {
    font-size: 0.9rem;
    margin: 1rem 0;
  }
}
main.atuacao .areas .item .image {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media all and (max-width: 999px) {
  main.atuacao .areas .item .image {
    padding: 2rem;
    padding-top: 0;
  }
}
main.atuacao .areas .item .image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  border: 2px solid white;
}
@media all and (max-width: 999px) {
  main.atuacao .areas .item .image img {
    width: 100%;
    height: auto;
  }
}
main.atuacao .quadri-block {
  float: left;
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3rem;
  padding-bottom: 5rem;
  border-radius: 20px;
}
@media all and (max-width: 999px) {
  main.atuacao .quadri-block {
    margin-top: 30px;
    flex-direction: column;
    padding: 0;
  }
}
@media all and (max-width: 999px) {
  main.atuacao .quadri-block {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media all and (max-width: 599px) {
  main.atuacao .quadri-block {
    grid-template-columns: repeat(1, 1fr);
  }
}
main.atuacao .quadri-block a.more {
  float: left;
  font-family: "Outfit";
  text-transform: uppercase;
  color: #c990cc;
  width: fit-content;
  font-size: 12px;
  text-decoration: none;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 10px;
  -webkit-transition: all 150ms ease-in;
  -moz-transition: all 150ms ease-in;
  -o-transition: all 150ms ease-in;
  transition: all 150ms ease-in;
}
main.atuacao .quadri-block a.more:hover {
  border-bottom: 2px solid #c990cc;
}
main.atuacao .quadri-block a.more img {
  vertical-align: middle;
  margin-left: 4px;
}
main.atuacao .quadri-block .item {
  position: relative;
  padding-bottom: 20px;
  padding-top: 30px;
}
@media all and (max-width: 999px) {
  main.atuacao .quadri-block .item {
    width: 100%;
  }
}
main.atuacao .quadri-block .item .image {
  float: left;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
main.atuacao .quadri-block .item .image img {
  width: 100%;
  height: auto;
  display: block;
}
main.atuacao .quadri-block .item .info {
  float: left;
  width: 100%;
  position: relative;
  z-index: 2;
}
main.atuacao .quadri-block .item .info h2 {
  font-size: 24px;
  color: #c990cc;
  font-family: "Outfit";
  font-weight: bold;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: normal;
}
main.atuacao .quadri-block .item .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #79527c;
  display: block;
  margin: 1rem 0;
  opacity: 0.5;
}
main.atuacao .quadri-block .item .info p {
  line-height: 1.2;
  color: #726872;
  font-size: 1.1rem;
  font-weight: 300;
}
@media all and (max-width: 599px) {
  main.atuacao .quadri-block .item .info p {
    font-size: 0.9rem;
  }
}

.clientes-banner {
  background: rgb(22, 15, 22);
  background: linear-gradient(90deg, rgb(22, 15, 22) 15%, rgb(54, 37, 55) 100%);
  padding-top: 200px;
  width: 100%;
}
@media all and (max-width: 999px) {
  .clientes-banner {
    min-height: auto;
    padding-top: 100px;
  }
}
.clientes-banner .content {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media all and (max-width: 999px) {
  .clientes-banner .content {
    flex-direction: column;
    min-height: auto;
    padding-bottom: 2rem;
  }
}
.clientes-banner .info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
  min-height: 770px;
  width: 40%;
}
@media all and (max-width: 999px) {
  .clientes-banner .info {
    width: 100%;
    border-right: none;
    min-height: auto;
    padding: 2rem;
  }
}
.clientes-banner .info h2 {
  font-size: 5.5rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  .clientes-banner .info h2 {
    font-size: 3rem;
  }
}
.clientes-banner .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #dd81e3;
  display: block;
  margin-top: 3rem;
  opacity: 0.5;
}
.clientes-banner .info p {
  font-size: 1.3rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
}
@media all and (max-width: 999px) {
  .clientes-banner .info p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
.clientes-banner .image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60%;
  max-width: 750px;
}
@media all and (max-width: 999px) {
  .clientes-banner .image {
    width: 100%;
  }
}
.clientes-banner .image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-top: 100px;
}
@media all and (max-width: 999px) {
  .clientes-banner .image img {
    margin-top: 0;
    max-width: 500px;
  }
}

@media all and (max-width: 999px) {
  main.clientes {
    margin: 0;
  }
}
main.clientes h1 {
  font-size: 5.5rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
@media all and (max-width: 999px) {
  main.clientes h1 {
    font-size: 3rem;
  }
}
main.clientes h1:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #dd81e3;
  display: block;
  margin: 2rem auto;
  opacity: 0.5;
}
main.clientes p {
  font-size: 1.3rem;
  color: #f8f8f8;
  margin: 0;
  font-weight: 300;
  line-height: 1.6;
  text-align: center;
}
@media all and (max-width: 999px) {
  main.clientes p {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}
main.clientes .list-clients {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 5rem 0;
}
@media all and (max-width: 999px) {
  main.clientes .list-clients {
    display: flex;
    flex-direction: column;
    padding: 2rem 0;
  }
}
main.clientes .list-clients .client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media all and (max-width: 349px) {
  main.clientes .list-clients .client {
    flex-direction: column;
  }
}
main.clientes .list-clients .client img {
  max-width: 120px;
  height: auto;
}
@media all and (max-width: 349px) {
  main.clientes .list-clients .client .info {
    margin: 0 auto;
  }
}
main.clientes .list-clients .client .info h2 {
  font-size: 1.4rem;
  color: #c990cc;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.clientes .list-clients .client .info h2 {
    font-size: 1.6rem;
    text-align: center;
  }
}
main.clientes .list-clients .client .info h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #dd81e3;
  display: block;
  margin: 1rem 0;
  opacity: 0.5;
}
@media all and (max-width: 999px) {
  main.clientes .list-clients .client .info h2:after {
    margin: 1rem auto;
  }
}
main.clientes .list-clients .client .info a {
  text-decoration: none;
  color: #231822;
  font-size: 1rem;
  font-weight: 600;
}
@media all and (max-width: 999px) {
  main.clientes .list-clients .client .info a {
    font-size: 1rem;
    line-break: anywhere;
  }
}

main.noticias {
  width: 100%;
  min-height: 1000px;
}
main.noticias .news-header {
  background: rgb(22, 15, 22);
  background: linear-gradient(90deg, rgb(22, 15, 22) 15%, rgb(54, 37, 55) 100%);
  height: 200px;
  width: 100%;
}
@media all and (max-width: 999px) {
  main.noticias .news-header {
    height: 100px;
    background: none;
  }
}
main.noticias .news {
  margin-bottom: 5rem;
}
main.noticias .news .title {
  margin: 4rem 0;
  text-align: center;
}
main.noticias .news .title p {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: justify;
}
@media all and (max-width: 999px) {
  main.noticias .news .title {
    border-right: 0;
    width: 100%;
    padding-top: 0;
    border-top: 2px solid #e5e5e5;
    margin-top: 30px;
    padding-top: 30px;
  }
}
main.noticias .news .title h2 {
  font-size: 4rem;
  color: #c990cc;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.noticias .news .title h2 {
    font-size: 2rem;
  }
}
main.noticias .news .title h2:after {
  content: "";
  width: 80px;
  height: 2px;
  background: #79527c;
  display: block;
  margin: 2rem auto;
  opacity: 0.5;
}
main.noticias .news .news-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media all and (max-width: 799px) {
  main.noticias .news .news-list {
    display: flex;
    flex-direction: column;
  }
}
main.noticias .news .news-list .news-item {
  display: flex;
  gap: 1rem;
}
main.noticias .news .news-list .news-item .image {
  width: 50%;
}
main.noticias .news .news-list .news-item .image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}
main.noticias .news .news-list .news-item .info {
  display: flex;
  flex-direction: column;
  width: 50%;
}
main.noticias .news .news-list .news-item .info h4 {
  font-size: 1.4rem;
  color: #c990cc;
  margin: 0;
  font-weight: 500;
  line-height: 1;
}
@media all and (max-width: 999px) {
  main.noticias .news .news-list .news-item .info h4 {
    font-size: 2rem;
  }
}
main.noticias .news .news-list .news-item .info h4:after {
  content: "";
  width: 40px;
  height: 2px;
  background: #79527c;
  display: block;
  margin: 2rem 0;
  opacity: 0.5;
}
main.noticias .news .news-list .news-item .info a {
  font-size: 1.3rem;
  font-weight: 700;
  color: #79527c;
  text-decoration: none;
  transition: all 300ms;
}
main.noticias .news .news-list .news-item .info a:hover, main.noticias .news .news-list .news-item .info a:focus, main.noticias .news .news-list .news-item .info a:active {
  color: #c990cc;
}

/*# sourceMappingURL=base.css.map */
