@font-face {
  font-family: "Cabin-Regular";
  src: url("../../fonts/Cabin-Regular.ttf");
}
@font-face {
  font-family: "OS-Regular";
  src: url("../../fonts/OpenSans-Regular.ttf");
}
@font-face {
  font-family: "OS-Bold";
  src: url("../../fonts/OpenSans-Bold.ttf");
}
@font-face {
  font-family: "OS-ExtraBold";
  src: url("../../fonts/OpenSans-ExtraBold.ttf");
}
@font-face {
  font-family: "OS-Light";
  src: url("../../fonts/OpenSans-Light.ttf");
}
@font-face {
  font-family: "OS-SemiBold";
  src: url("../../fonts/OpenSans-SemiBold.ttf");
}
@font-face {
  font-family: "Dalmatins";
  src: url("../../fonts/Dalmatins.otf");
}
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #0babc5;
  border-radius: 10px;
  transition: 0.5s;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0b92a7;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

html,
body {
  font-family: Cabin-Regular;
  margin: 0;
  padding: 0;
  height: auto;
  font-size: 11px;
  overflow: hidden;
  color: #707070;
}
html input,
body input {
  font-family: Cabin-Regular;
}
html.open,
body.open {
  overflow-y: hidden;
}
html.loaded,
body.loaded {
  overflow: auto;
  overflow-x: hidden;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  html,
body {
    font-size: 9.4px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  html,
body {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  html,
body {
    font-size: 10px;
  }
}
html a,
body a {
  text-decoration: none;
  color: #0babc5;
}

.btn {
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
}
.btn.blue {
  border: 0.125rem solid #0babc5;
  background-color: #0babc5;
  transition: 0.5s;
  cursor: pointer;
}
.btn.blue .txt {
  color: #fff;
}
.btn.blue:hover {
  border: 0.125rem solid #0babc5;
  background-color: #fff;
}
.btn.blue:hover .txt {
  color: #0babc5;
}
.btn.white {
  border: 0.125rem solid #cbcbcb;
  background-color: #fff;
  transition: 0.5s;
  cursor: pointer;
}
.btn.white .txt {
  color: #cbcbcb;
}
.btn.white:hover {
  border: 0.125rem solid #cbcbcb;
  background-color: #cbcbcb;
}
.btn.white:hover .txt {
  color: #fff;
}
.btn.white-blue {
  border: 0.125rem solid #cbcbcb;
  background-color: #fff;
  transition: 0.5s;
  cursor: pointer;
}
.btn.white-blue .txt {
  color: #0babc5;
}
.btn.white-blue:hover {
  border: 0.125rem solid #0babc5;
  background-color: #0babc5;
}
.btn.white-blue:hover .txt {
  color: #fff;
}

.title.main {
  font-size: 2.625rem;
}

.movement {
  position: relative;
  top: 70px;
  opacity: 0;
  transition: top 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0s, opacity 0.4s linear 0.1s;
}
.movement.placed {
  top: 0;
  opacity: 1;
}
.movement:nth-child(2) {
  transition: top 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0.2s, opacity 0.5s linear 0.2s;
}
.movement:nth-child(3) {
  transition: top 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0.3s, opacity 0.6s linear 0.3s;
}
.movement:nth-child(4) {
  transition: top 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0.4s, opacity 0.7s linear 0.4s;
}

.movement-delayed {
  position: relative;
  top: 70px;
  opacity: 0;
  transition: top 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0s, opacity 0.4s linear 0.1s;
}
.movement-delayed.placed {
  top: 0;
  opacity: 1;
}

.lateral {
  position: relative;
  left: -100px;
  opacity: 0;
  transition: left 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0s, opacity 0.4s linear 0.1s;
}
.lateral.placed {
  left: 0;
  opacity: 1;
}

.lateralR {
  position: relative;
  right: -100px;
  opacity: 0;
  transition: right 1s cubic-bezier(0.15, 0.37, 0.7, 1) 0s, opacity 0.4s linear 0.1s;
}
.lateralR.placed {
  right: 0;
  opacity: 1;
}

#app {
  background-color: #fff;
  height: auto;
  display: flex;
  flex-direction: column;
  width: 100%;
}
#app #main-section {
  overflow: hidden;
}
#app #loading {
  background-color: #fff;
  font-size: 32px;
  height: 100vh;
  width: 100vw;
  z-index: 100000000000000020000;
  position: fixed;
  opacity: 1;
  visibility: visible;
  transition: 1.5s;
}
#app #loading.fadeout {
  opacity: 0;
  visibility: hidden;
}
#app #loading .svg-container {
  width: 20%;
  top: 50%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}
#app #loading .svg-container .nodules-loader {
  fill: rgba(11, 171, 197, 0.6);
  stroke: none;
  opacity: 0;
}
#app #loading .svg-container .nodules-loader.start-loader {
  animation: fill 0.5s ease 1.5s forwards;
}
#app #loading .svg-container .main-path-loader {
  fill: none;
  stroke: rgba(11, 171, 197, 0.6);
  stroke-miterlimit: 10;
  stroke-width: 0.25px;
  stroke-dasharray: 5000;
  stroke-dashoffset: 5000;
}
#app #loading .svg-container .main-path-loader.start-loader {
  animation: dash 3s linear forwards;
}
#app #loading .svg-container .main-path-loader-fill {
  fill: rgba(11, 171, 197, 0.6);
  stroke: none;
  opacity: 0;
}
#app #loading .svg-container .main-path-loader-fill.start-loader {
  animation: fill 0.5s ease 1.5s forwards;
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fill {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fadeout {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
#app #menu {
  background-color: #f6f6f6;
  width: 100%;
  position: fixed;
  z-index: 999;
  box-shadow: 2px -2px 17px rgba(0, 0, 0, 0.4);
  padding: 0;
  top: 0;
}
#app #menu .menu-wrapper {
  height: 11.6875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 8.125rem;
}
@media only screen and (min-width: 1200px) {
  #app #menu .menu-wrapper {
    margin: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app #menu .menu-wrapper {
    margin: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app #menu .menu-wrapper {
    margin: 0 2.5rem;
    height: 9.8125rem;
  }
}
@media only screen and (max-width: 767px) {
  #app #menu .menu-wrapper {
    display: none;
  }
}
@media only screen and (max-height: 415px) {
  #app #menu .menu-wrapper {
    height: 6.6875rem;
  }
}
#app #menu .menu-wrapper > a {
  width: auto;
  height: 100%;
  display: flex;
}
#app #menu .menu-wrapper > a img {
  width: 85%;
  height: 85%;
  align-self: center;
  justify-self: center;
  will-change: auto;
}
#app #menu .menu-wrapper > a .logo {
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  width: 11.6875rem;
  height: 100%;
}
@media only screen and (max-height: 415px) {
  #app #menu .menu-wrapper > a .logo {
    width: 7.9375rem;
    height: 100%;
  }
}
#app #menu .menu-wrapper .menu-items {
  max-width: 53.125rem;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}
#app #menu .menu-wrapper .menu-items .menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  cursor: pointer;
}
#app #menu .menu-wrapper .menu-items .menu-item a {
  color: #707070;
}
#app #menu .menu-wrapper .menu-items .menu-item a:hover {
  color: #0babc5;
}
#app #menu .menu-wrapper .menu-items .menu-item:last-child {
  width: auto;
}
#app #menu .menu-wrapper .menu-items .menu-item .txt {
  display: flex;
  align-items: center;
  color: #707070;
  font-size: 1.5rem;
  transition: 0.5s;
}
#app #menu .menu-wrapper .menu-items .menu-item .txt:hover {
  color: #0babc5;
}
#app #menu .menu-wrapper .menu-items .menu-item .txt .arrow {
  width: 0.29375rem;
  height: 0.451875rem;
  transform: rotate(90deg);
  margin-left: 0.625rem;
}
#app #menu .menu-wrapper .menu-items .menu-item .submenu {
  width: 10.625rem;
  height: 7.5rem;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  padding: 2.1875rem;
  top: 6.875rem;
  left: 0.1875rem;
  z-index: 9999;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
}
#app #menu .menu-wrapper .menu-items .menu-item .submenu.active {
  display: flex;
}
#app #menu .menu-wrapper .menu-items .menu-item .submenu .submenu-item {
  border-bottom: 0.0625rem solid #def5f9;
  height: 2.5rem;
  display: flex;
  align-items: center;
  color: #707070;
}
#app #menu .menu-wrapper .menu-items .menu-item .submenu .submenu-item:last-child {
  border: none;
}
#app #menu .menu-wrapper .menu-items .menu-item .submenu .submenu-item a {
  color: #707070;
  transition: 0.5s;
}
#app #menu .menu-wrapper .menu-items .menu-item .submenu .submenu-item a:hover {
  color: #0babc5;
}
#app #menu .menu-wrapper .menu-items .menu-item .btn {
  width: 13.375rem;
  height: 2.5rem;
  border: 0.125rem solid #0babc5;
  display: flex;
  transition: 0.5s;
}
#app #menu .menu-wrapper .menu-items .menu-item .btn:hover {
  background-color: #0babc5;
}
#app #menu .menu-wrapper .menu-items .menu-item .btn:hover .txt {
  color: #fff;
}
#app #menu .menu-wrapper .menu-items .menu-item .btn .txt {
  font-family: "OS-Regular";
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.875rem;
}
#app #menu .menu-wrapper-mobile {
  height: 6.25rem;
  display: none;
  justify-content: space-between;
  align-items: center;
  margin: 0 1.25rem;
  pointer-events: inherit;
}
@media only screen and (max-width: 767px) {
  #app #menu .menu-wrapper-mobile {
    display: flex;
  }
}
#app #menu .menu-wrapper-mobile > a {
  width: auto;
  height: 100%;
  display: flex;
}
#app #menu .menu-wrapper-mobile > a img {
  height: 80%;
  align-self: center;
  justify-self: center;
  will-change: auto;
}
#app #menu .menu-wrapper-mobile > a .logo {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 5.625rem;
  height: 95%;
}
#app #menu .menu-wrapper-mobile .btn-menu {
  width: 3.125rem;
  height: 2.8125rem;
  padding: 1.25rem;
  margin-right: 0.625rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-end;
  position: absolute;
  right: 0;
  opacity: 1;
  pointer-events: inherit;
}
#app #menu .menu-wrapper-mobile .btn-menu.open {
  opacity: 0;
  pointer-events: none;
}
#app #menu .menu-wrapper-mobile .btn-menu .line {
  width: 100%;
  height: 0.1875rem;
  background-color: #0babc5;
}
#app #menu .menu-wrapper-mobile .btn-menu .line:nth-child(2) {
  width: 80%;
}
#app #menu .menu-wrapper-mobile .btn-menu .line:nth-child(3) {
  width: 60%;
}
#app #menu .menu-wrapper-mobile .close-menu {
  width: 3.125rem;
  height: 3.125rem;
  margin-right: 1.25rem;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  right: 0;
  display: block;
  pointer-events: inherit;
}
#app #menu .menu-wrapper-mobile .close-menu.open {
  opacity: 1;
  pointer-events: all;
}
#app #menu .menu-wrapper-mobile .close-menu .line {
  width: 100%;
  height: 0.1875rem;
  background-color: #0babc5;
  position: absolute;
  top: 50%;
}
#app #menu .menu-wrapper-mobile .close-menu .line:nth-child(1) {
  transform: rotate(45deg);
}
#app #menu .menu-wrapper-mobile .close-menu .line:nth-child(2) {
  transform: rotate(-45deg);
}
#app #menu .menu-wrapper-mobile .menu-items {
  justify-content: flex-start;
  align-items: center;
  height: 85vh;
  position: absolute;
  top: 6.25rem;
  right: 0;
  width: 100vw;
  flex-direction: column;
  max-width: 100%;
  background-color: #f6f6f6;
  padding: 3.125rem 0;
  opacity: 0;
  pointer-events: none;
  display: flex;
  z-index: 9999999;
}
#app #menu .menu-wrapper-mobile .menu-items.open {
  opacity: 1;
  pointer-events: all;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  cursor: pointer;
  flex-direction: column;
  margin-top: 1.875rem;
  pointer-events: none;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item.open {
  pointer-events: all;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item a {
  color: #707070;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item:first-child {
  margin: 0;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item:last-child {
  width: auto;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .txt {
  color: #707070;
  font-size: 1.75rem;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .txt .arrow {
  width: 0.78125rem;
  height: 0.78125rem;
  transform: rotate(90deg);
  margin-left: 0.625rem;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .submenu {
  width: 100%;
  height: auto;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 1.25rem;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .submenu.active {
  display: flex;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .submenu .submenu-item {
  border-bottom: 0.0625rem solid #0babc5;
  height: 5rem;
  display: flex;
  align-items: center;
  align-items: center;
  margin: 0 30%;
  justify-content: center;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .submenu .submenu-item:last-child {
  border: none;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .submenu .submenu-item a,
#app #menu .menu-wrapper-mobile .menu-items .menu-item .submenu .submenu-item .text {
  color: #707070;
  font-size: 1.25rem;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .btn {
  width: 16.875rem;
  height: 3.75rem;
  border: 0.125rem solid #0babc5;
  display: flex;
  transition: 0.5s;
  pointer-events: none;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .btn.open {
  pointer-events: all;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .btn:hover {
  background-color: #0babc5;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .btn:hover .txt {
  color: #fff;
}
#app #menu .menu-wrapper-mobile .menu-items .menu-item .btn .txt {
  font-family: "OS-Regular";
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.125rem;
}
#app .slideshow-wrapper {
  background-color: #fff;
  height: 87vh;
  width: 100vw;
  position: absolute;
  z-index: 99;
  overflow: hidden;
}
#app .slideshow-wrapper #slideshow-home {
  height: 100%;
  position: relative;
  opacity: 0;
  transition: 0.5s;
  display: flex;
}
#app .slideshow-wrapper #slideshow-home.not-hidden {
  opacity: 1;
}
#app .slideshow-wrapper #slideshow-home a {
  width: 100vw;
  height: 100%;
  display: block;
}
#app .slideshow-wrapper #slideshow-home a .slide {
  width: 100%;
  height: 100%;
  display: flex;
  background-position: top;
  background-color: #fff;
  align-items: center;
  background-repeat: no-repeat;
  transition: 1s;
  pointer-events: all;
  overflow: hidden;
  justify-content: space-around;
  background-size: contain;
  flex-direction: row-reverse;
}
#app .slideshow-wrapper #slideshow-home a .slide.blue {
  background-color: #f3f3f3;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .slideshow-wrapper #slideshow-home a .slide {
    background-position: center;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .slideshow-wrapper #slideshow-home a .slide {
    background-position: center;
    background-size: contain;
    flex-direction: column;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .slideshow-wrapper #slideshow-home a .slide {
    background-position: center;
    background-size: contain;
    flex-direction: column;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper #slideshow-home a .slide {
    background-position: center;
    background-size: contain;
    flex-direction: column;
  }
}
@media only screen and (max-height: 560px){
  #app .slideshow-wrapper #slideshow-home a .slide {
    flex-direction: row;
  }
}
#app .slideshow-wrapper #slideshow-home a .slide .svg-container {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-height: 560px) {
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container {
    height: 50%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 991px) {
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container {
    height: 50%;
    align-items: flex-start;
    margin-top: 5%;
  }
}
@media only screen and (min-width: 600px) and (max-width: 768px) {
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container {
    height: 50%;
    align-items: flex-start;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container {
    height: 50%;
    align-items: flex-start;
    margin-top: -15%;
  }
}
@media only screen and (max-height: 560px){
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container {
    margin: 0;
    height: 100%;
    width: 50%;
  }
}
#app .slideshow-wrapper #slideshow-home a .slide .svg-container svg {
  width: 43.75rem;
  height: 43.75rem;
  overflow: visible;
}
@media only screen and (min-width: 1200px) and (max-width: 1920px) {
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container svg {
    transform: scale(1);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container svg {
    transform: scale(1);
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container svg {
    transform: scale(1);
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container svg {
    transform: scale(0.7);
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container svg {
    transform: scale(0.65);
    top: -6.25rem;
    position: absolute;
  }
}
@media only screen and (max-height: 560px){
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container svg {
    height: 100%;
    width: 70%;
    margin-top: 0rem;
  }
}
@media only screen and (max-height: 320px){
  #app .slideshow-wrapper #slideshow-home a .slide .svg-container svg {
    height: 100%;
    width: 70%;
    margin-top: 6rem;
  }
}
#app .slideshow-wrapper #slideshow-home a .slide .svg-container svg .nodules {
  fill: #1e1e1e;
  stroke: none;
  opacity: 0;
}
#app .slideshow-wrapper #slideshow-home a .slide .svg-container svg .nodules.start {
  animation: fill 0.5s ease 1.5s forwards;
}
#app .slideshow-wrapper #slideshow-home a .slide .svg-container svg .main-path {
  fill: none;
  stroke: #1e1e1e;
  stroke-miterlimit: 10;
  stroke-width: 0.25px;
  stroke-dasharray: 5000;
  stroke-dashoffset: 5000;
}
#app .slideshow-wrapper #slideshow-home a .slide .svg-container svg .main-path.start {
  animation: dash 3s linear forwards;
}
#app .slideshow-wrapper #slideshow-home a .slide .svg-container svg .main-path-fill {
  fill: #1e1e1e;
  stroke: none;
  opacity: 0;
}
#app .slideshow-wrapper #slideshow-home a .slide .svg-container svg .main-path-fill.start {
  animation: fill 0.5s ease 1.5s forwards;
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes fill {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#app .slideshow-wrapper #slideshow-home a .slide .copy {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 56.25rem;
  height: 31.25rem;
  padding: 2.5rem;
  justify-content: space-between;
}
@media only screen and (max-width: 1200px) {
  #app .slideshow-wrapper #slideshow-home a .slide .copy {
    align-items: center;
    text-align: center;
  }
}
@media only screen and (min-width: 600px) and (max-width: 768px) {
  #app .slideshow-wrapper #slideshow-home a .slide .copy {
    height: 25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper #slideshow-home a .slide .copy {
    margin-top: -35%;
    height: 21.875rem;
  }
}
@media only screen and (max-height: 560px) {
  #app .slideshow-wrapper #slideshow-home a .slide .copy {
    height: 60%;
    margin: 0;
    padding: 0;
    top: -2.5rem;
  }
}
#app .slideshow-wrapper #slideshow-home a .slide .copy .title {
  color: rgba(11, 171, 197, 0.6);
  font-size: 3rem;
  font-family: "Dalmatins";
  font-weight: bold;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper #slideshow-home a .slide .copy .title {
    font-size: 2.375rem;
  }
}
@media only screen and (max-height: 560px) {
  #app .slideshow-wrapper #slideshow-home a .slide .copy .title {
    font-size: 1.5rem;
  }
}
#app .slideshow-wrapper #slideshow-home a .slide .copy .line {
  width: 30%;
  height: 0.0625rem;
  background-color: rgba(11, 171, 197, 0.6);
  margin-top: -3.125rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper #slideshow-home a .slide .copy .line {
    margin-top: -3.125rem;
  }
}
#app .slideshow-wrapper #slideshow-home a .slide .copy .text {
  margin-top: 0.625rem;
  color: #707070;
  font-size: 1.75rem;
  font-family: "OS-Regular";
  line-height: 2.1875rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper #slideshow-home a .slide .copy .text {
    padding: 0 0.625rem;
    font-size: 1.375rem;
  }
}
@media only screen and (max-height: 560px) {
  #app .slideshow-wrapper #slideshow-home a .slide .copy .text {
    font-size: 1.375rem;
    width: 34.375rem;
  }
}
#app .slideshow-wrapper #slideshow-home a .slide .copy .btn {
  width: 12.5rem;
  height: 3.75rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper #slideshow-home a .slide .copy .btn {
    margin-top: 2%;
  }
}
#app .slideshow-wrapper #slideshow-home a .slide .copy .btn .txt {
  font-family: "OS-Bold";
  font-size: 1.25rem;
}
#app .slideshow-wrapper .indicators {
  display: flex;
  width: 14.375rem;
  justify-content: space-between;
  position: absolute;
  bottom: 6.25rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  #app .slideshow-wrapper .indicators {
    bottom: 0rem;
    height: 6.25rem;
    align-items: center;
    width: 14.375rem;
    padding: 0 3.125rem;
  }
}
@media screen and (max-width: 992px) {
  #app .slideshow-wrapper .indicators {
    display: none;
  }
}
#app .slideshow-wrapper .indicators .ind {
  border-radius: 50%;
  width: 1.375rem;
  height: 1.375rem;
  background-color: #fff;
  border: 0.0625rem solid #707070;
  cursor: pointer;
}
#app .slideshow-wrapper .indicators .ind.active {
  background-color: #707070;
}
#app .clinica-wrapper {
  background-color: #fff;
  height: 25rem;
  padding: 0 4.0625rem;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  #app .clinica-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .clinica-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .clinica-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .clinica-wrapper {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .clinica-wrapper {
    height: auto;
    padding: 0 1.25rem;
  }
}
#app .clinica-wrapper #clinica {
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  max-width: 62.5rem;
}
#app .clinica-wrapper #clinica .copy-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
}
#app .clinica-wrapper #clinica .copy-wrapper .title {
  margin: 0;
  margin-top: 3.125rem;
  color: #707070;
  font-weight: normal;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .clinica-wrapper #clinica .copy-wrapper .title {
    margin-top: 2.5rem;
  }
}
#app .clinica-wrapper #clinica .copy-wrapper .line {
  width: 4.9375rem;
  height: 0.0625rem;
  background-color: rgba(11, 171, 197, 0.6);
  margin-top: 0.9375rem;
}
#app .clinica-wrapper #clinica .copy-wrapper .copy {
  font-size: 1.25rem;
  max-width: 75rem;
  text-align: center;
  width: 100%;
  color: #707070;
  font-family: "OS-Regular";
  margin-top: 1.25rem;
}
#app .clinica-wrapper #clinica .ctas {
  margin: 1.875rem 0 3.125rem 0;
  max-width: 22.1875rem;
  justify-content: space-between;
  display: flex;
  width: 100%;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .clinica-wrapper #clinica .ctas {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
  }
}
#app .clinica-wrapper #clinica .ctas .btn {
  width: 10.0625rem;
  height: 2.75rem;
  border-radius: 0.625rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .clinica-wrapper #clinica .ctas .btn {
    margin-bottom: 1.25rem;
  }
}
#app .clinica-wrapper #clinica .ctas .btn .txt {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.0625rem;
  font-weight: bold;
}
#app .especialidades-wrapper {
  height: 40.625rem;
  height: auto;
  background-color: #f6f6f6;
  padding: 0 14.375rem;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  #app .especialidades-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .especialidades-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .especialidades-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .especialidades-wrapper {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .especialidades-wrapper {
    height: auto;
    padding: 0 1.25rem;
  }
}
#app .especialidades-wrapper #especialidades {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 2.5rem;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .especialidades-wrapper #especialidades {
    margin: 0 2.5rem;
  }
}
#app .especialidades-wrapper #especialidades .title-wrapper {
  align-items: center;
  margin-top: 4.375rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .especialidades-wrapper #especialidades .title-wrapper {
    margin-top: 2.5rem;
  }
}
#app .especialidades-wrapper #especialidades .title-wrapper .title {
  color: #707070;
  margin: 0;
  font-weight: normal;
}
#app .especialidades-wrapper #especialidades .title-wrapper .line {
  width: 4.9375rem;
  height: 0.0625rem;
  background-color: rgba(11, 171, 197, 0.6);
  margin-top: 0.9375rem;
}
#app .especialidades-wrapper #especialidades .especialidades {
  margin-bottom: 4.375rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  #app .especialidades-wrapper #especialidades .especialidades {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .especialidades-wrapper #especialidades .especialidades {
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
    flex-direction: column;
  }
}
#app .especialidades-wrapper #especialidades .especialidades .especialidade {
  height: 25rem;
  height: auto;
  margin: 0 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4.375rem;
  max-width: 18%;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  #app .especialidades-wrapper #especialidades .especialidades .especialidade {
    margin-bottom: 3.125rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .especialidades-wrapper #especialidades .especialidades .especialidade {
    width: 100%;
    margin: 1.875rem 0 1.5625rem 0;
    height: 100%;
    max-width: 100%;
  }
}
@media only screen and (max-height: 415px) {
  #app .especialidades-wrapper #especialidades .especialidades .especialidade {
    max-width: 40%;
  }
}
#app .especialidades-wrapper #especialidades .especialidades .especialidade .icon {
  width: 8.625rem;
  height: 8.625rem;
  background-color: #cbcbcb;
  border-radius: 50%;
  margin-bottom: 1.875rem;
  background-size: cover;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .especialidades-wrapper #especialidades .especialidades .especialidade .icon {
    width: 6.75rem;
    height: 6.75rem;
    margin-bottom: 0.625rem;
  }
}
#app .especialidades-wrapper #especialidades .especialidades .especialidade .txt-big {
  margin: 0;
  font-size: 1.75rem;
  color: #707070;
  text-align: center;
  margin-bottom: 1.25rem;
  font-weight: normal;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .especialidades-wrapper #especialidades .especialidades .especialidade .txt-big {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }
}
#app .especialidades-wrapper #especialidades .especialidades .especialidade .copy {
  color: #707070;
  max-width: 23.5rem;
  width: 100%;
  font-size: 1rem;
  text-align: center;
  font-family: "OS-Regular";
  min-height: 10.625rem;
  margin-bottom: 1.25rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .especialidades-wrapper #especialidades .especialidades .especialidade .copy {
    min-height: 6.875rem;
  }
}
#app .especialidades-wrapper #especialidades .especialidades .especialidade .cta {
  color: rgba(11, 171, 197, 0.6);
  font-size: 0.875rem;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.1875rem;
  height: 2.75rem;
  border: 0.0625rem solid rgba(11, 171, 197, 0.6);
  border-radius: 0.625rem;
}
#app .especialidades-wrapper #especialidades .especialidades .especialidade .cta:hover .arrow-cont {
  transform: translateX(0.4375rem);
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .especialidades-wrapper #especialidades .especialidades .especialidade .cta {
    margin-top: 1.25rem;
  }
}
#app .especialidades-wrapper #especialidades .especialidades .especialidade .cta .text {
  margin-top: 0.15625rem;
  margin-left: -0.375rem;
}
#app .especialidades-wrapper #especialidades .especialidades .especialidade .cta > div {
  position: relative;
  transition: 0.5s;
}
#app .especialidades-wrapper #especialidades .especialidades .especialidade .cta > div .arrow {
  border: solid rgba(11, 171, 197, 0.6);
  border-width: 0 0.0625rem 0.0625rem 0;
  display: inline-block;
  padding: 0.125rem;
  position: absolute;
  top: -0.125rem;
  left: 0.25rem;
}
#app .especialidades-wrapper #especialidades .especialidades .especialidade .cta > div .arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#app .formacoes-wrapper {
  background-color: #fff;
  height: auto;
  padding: 0 4.0625rem;
  overflow: hidden;
}
@media only screen and (min-width: 1200px) {
  #app .formacoes-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .formacoes-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .formacoes-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .formacoes-wrapper {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper {
    height: auto;
    padding: 0 1.25rem;
  }
}
#app .formacoes-wrapper #formacoes {
  height: 100%;
  margin: 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper #formacoes {
    margin: 0 1.25rem;
  }
}
#app .formacoes-wrapper #formacoes .copy-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  padding-bottom: 2.5rem;
}
#app .formacoes-wrapper #formacoes .copy-content .title {
  margin: 0;
  font-weight: normal;
  margin-top: 3.75rem;
  color: #707070;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper #formacoes .copy-content .title {
    margin-top: 2.5rem;
  }
}
#app .formacoes-wrapper #formacoes .copy-content .line {
  width: 4.9375rem;
  height: 0.0625rem;
  background-color: rgba(11, 171, 197, 0.6);
  margin-top: 0.9375rem;
}
#app .formacoes-wrapper #formacoes .copy-content .copy {
  font-size: 1.25rem;
  font-family: "OS-Regular";
  max-width: 62.5rem;
  text-align: center;
  width: 100%;
  margin-top: 1.25rem;
  color: #707070;
}
#app .formacoes-wrapper #formacoes .cards-wrapper {
  display: flex;
  max-width: 112.5rem;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 5rem;
  height: 55%;
  flex-wrap: wrap;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper #formacoes .cards-wrapper {
    flex-direction: column;
    height: 100%;
    align-items: center;
    margin-bottom: 2.5rem;
  }
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card {
  width: 18.8125rem;
  height: 26.9375rem;
  background-color: #f6f6f6;
  border-radius: 1.4375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3.125rem;
  cursor: pointer;
  transition: 0.5s;
  margin: 3.125rem 0.625rem 0 0.625rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper #formacoes .cards-wrapper .card {
    margin: 0.625rem 0;
    width: 18.8125rem;
    height: 26.9375rem;
    padding: 1.875rem 2.5rem;
  }
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card:hover {
  transform: scale(1.1);
  background-color: rgba(11, 171, 197, 0.6);
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card:hover .card-title {
  color: #fff;
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card:hover .card-copy {
  color: #fff;
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card:hover .cta {
  align-self: flex-end;
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card:hover .cta .txt {
  color: #fff;
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card:hover .cta .arrow-cont {
  transform: translateX(0.625rem);
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card:hover .cta .arrow-cont .arrow {
  border: solid #fff;
  border-width: 0 0.0625rem 0.0625rem 0;
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card .icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
  background-color: #cbcbcb;
  background-position: center;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper #formacoes .cards-wrapper .card .icon {
    width: 4.375rem;
    height: 4.375rem;
  }
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card .card-title {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.375rem;
  color: #0babc5;
  font-weight: bold;
  text-align: center;
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card .card-copy {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.25rem;
  color: #a4a4a4;
  text-align: center;
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card .cta {
  width: 5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: flex-end;
  align-items: center;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper #formacoes .cards-wrapper .card .cta {
    width: 6.25rem;
    align-self: center;
  }
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card .cta .txt {
  font-family: "OS-Regular";
  color: #0babc5;
  text-transform: uppercase;
  font-size: 0.875rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper #formacoes .cards-wrapper .card .cta .txt {
    color: #0babc5;
  }
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card .cta .arrow-cont {
  position: relative;
  transition: 0.5s;
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card .cta .arrow-cont .arrow {
  border: solid rgba(11, 171, 197, 0.6);
  border-width: 0 0.0625rem 0.0625rem 0;
  display: inline-block;
  padding: 0.125rem;
  position: absolute;
  top: -0.125rem;
  left: 0.25rem;
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card .cta .arrow-cont .arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card .cta svg {
  width: 0.6875rem;
  height: 0.6875rem;
  overflow: visible;
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card .cta svg .arrow {
  fill: #0babc5;
  transition: 0.5s;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper #formacoes .cards-wrapper .card .cta svg .arrow {
    fill: #0babc5;
  }
}
#app .formacoes-wrapper #formacoes .cards-wrapper .card a {
  align-self: flex-end;
}
#app .destaques-wrapper {
  background-color: #52c3d5;
  height: 37.5rem;
  padding: 0 4.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #app .destaques-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .destaques-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper {
    height: 50rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .destaques-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .destaques-wrapper {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .destaques-wrapper {
    height: 43.75rem;
    padding: 0 1.25rem;
  }
}
#app .destaques-wrapper #destaques {
  width: 100%;
  height: 100%;
  display: flex;
  margin: 0 2.5rem;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .destaques-wrapper #destaques {
    justify-content: center;
    margin: 0 1.25rem;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .destaques-wrapper #destaques .slider-wrapper {
    justify-content: space-between;
    align-items: center;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider {
  width: 100%;
  height: 70%;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider {
    margin: 0;
    justify-content: center;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider {
    margin-top: 2.5rem;
    height: 75%;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card {
  width: 87.5rem;
  height: 31.25rem;
  margin: auto;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.5s;
  opacity: 0;
  position: absolute;
  max-width: 87.5rem;
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card {
    width: 31.25rem;
    height: 33.125rem;
    background-color: #fff;
    border-radius: 2.6875rem;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: 0.5s;
    margin: 3.125rem 0.625rem 3.125rem 0.625rem;
    box-shadow: 0.1875rem 0.1875rem 0.9375rem rgba(0, 0, 0, 0.2);
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card {
    width: 90%;
    margin: 0;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card.active-dest {
  opacity: 1;
  pointer-events: all;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card.is-visible {
  display: flex;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-img {
  background-color: #fff;
  border-radius: 2.0625rem;
  width: 33.125rem;
  height: 22.5rem;
  background-size: cover;
  background-position: center;
  position: absolute;
  left: 0;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-img img {
  height: 100%;
  transform: scale(1.3);
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-img.right {
  right: 0;
  left: unset;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-img.right {
    left: 0;
    right: unset;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-img {
    height: calc(280px - 10%);
    width: 41%;
  }
}
@media only screen and (min-width: 821px) and (max-width: 991px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-img {
    height: calc(280px - 16%);
    width: 41%;
  }
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-img {
    background-color: #fff;
    border-radius: 2.6875rem;
    width: 100%;
    height: 70%;
    background-size: cover;
    background-position: center;
    position: relative;
    left: unset;
    z-index: unset;
    top: unset;
    transform: unset;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content {
  position: absolute;
  width: 56.25rem;
  height: 23.125rem;
  background-color: #fff;
  border-radius: 2.6875rem;
  box-shadow: 0.1875rem 0.1875rem 0.9375rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.875rem;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content.left {
  left: 0;
  right: unset;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content.left .card-header {
  margin-left: 2.5rem !important;
  margin-right: 7.5rem !important;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content.left .card-body {
  margin-left: 2.5rem !important;
  margin-right: 7.5rem !important;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content.left {
    right: 0;
    left: unset;
  }
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content.left .card-header {
    font-size: 1.25rem !important;
    margin: 0 !important;
  }
}
@media only screen and (max-width: 820px) and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content.left .card-header .card-type {
    font-size: 1.25rem !important;
  }
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content.left .card-body {
    margin: 0 !important;
    margin-top: 0.9375rem !important;
    height: unset !important;
    flex-direction: row !important;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content {
    height: calc(280px - 10%);
    width: 61%;
  }
}
@media only screen and (min-width: 821px) and (max-width: 991px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content {
    height: calc(280px - 16%);
    width: 61%;
  }
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content {
    display: flex;
    flex-direction: column;
    padding: 1.875rem 1.875rem;
    height: 30%;
    position: relative;
    width: 88%;
    left: unset;
    z-index: unset;
    top: unset;
    transform: unset;
    box-shadow: none;
    border-radius: none;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content {
    width: 86%;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header {
  display: flex;
  justify-content: space-between;
  margin-left: 7.5rem;
  margin-top: 3.125rem;
  margin-right: 2.5rem;
  height: 20%;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header {
    margin: 0;
    height: unset;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header .card-type {
  text-transform: uppercase;
  color: #0babc5;
  font-family: "Arial";
  font-size: 2.5rem;
  font-weight: 400;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header .card-type {
    font-size: 1.25rem;
    font-weight: 600;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header .card-status {
  width: 18.75rem;
  border: 0.0625rem solid #0babc5;
  border-radius: 1.25rem;
  text-transform: uppercase;
  font-family: "Arial";
  align-items: center;
  justify-content: center;
  display: none;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header .card-status {
    width: 12.5rem;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header .card-status span {
  font-size: 1.375rem;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header .card-status.is-full {
  background-color: #fff;
  color: #0babc5;
  display: flex;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header .card-status.is-full span {
  display: none;
  font-size: 1.5rem;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header .card-status.is-full span.is-full {
  display: block;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header .card-status.has-vagas {
  background-color: #0babc5;
  color: #fff;
  display: flex;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header .card-status.has-vagas span {
  display: none;
  font-size: 1.5rem;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-header .card-status.has-vagas span.has-vagas {
  display: block;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body {
  display: flex;
  justify-content: space-between;
  margin-top: 0.9375rem;
  margin-left: 7.5rem;
  margin-bottom: 3.125rem;
  margin-right: 2.5rem;
  flex-direction: column;
  height: 80%;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body {
    margin: 0;
    margin-top: 0.9375rem;
    height: unset;
    flex-direction: row;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-title {
  margin: 0;
  font-family: "Arial";
  color: #707070;
  font-weight: bold;
  font-size: 2.25rem;
  max-width: 70%;
  width: 100%;
  height: 4.75rem;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-title {
    font-size: 1.375rem;
    max-width: 65%;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-date {
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: right;
  align-items: center;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-date {
    align-items: unset;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-date a {
  width: 20rem;
  height: 3.4375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-date a {
    position: absolute;
    width: 13.75rem;
    height: 3.4375rem;
    bottom: -1.71875rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-date a .card-cta {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0babc5;
  border: 0.0625rem solid #0babc5;
  border-radius: 1.25rem;
  transition: 0.5s;
  cursor: pointer;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-date a .card-cta .cta-txt {
  color: #fff;
  font-size: 1.375rem;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-date a .card-cta:hover {
  background-color: #fff;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-date a .card-cta:hover .cta-txt {
  color: #0babc5;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-date .txt {
  width: 100%;
  margin-right: 0.625rem;
  font-size: 1.25rem;
}
#app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-date .icon {
  width: 4rem;
  height: 2.9125rem;
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .slider .card .card-content .card-body .card-date .icon {
    width: 3.5rem;
    height: 2.75rem;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .indicators-dest {
  display: flex;
  width: 8.125rem;
  justify-content: center;
}
@media only screen and (max-width: 820px) {
  #app .destaques-wrapper #destaques .slider-wrapper .indicators-dest {
    margin: 1.25rem;
    justify-content: center;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .destaques-wrapper #destaques .slider-wrapper .indicators-dest {
    margin-bottom: 2.5rem;
  }
}
#app .destaques-wrapper #destaques .slider-wrapper .indicators-dest .ind-dest {
  border-radius: 50%;
  width: 1.375rem;
  height: 1.375rem;
  background-color: #707070;
  cursor: pointer;
  margin: 0 0.3125rem;
}
#app .destaques-wrapper #destaques .slider-wrapper .indicators-dest .ind-dest.active-dest {
  background-color: #fff;
}
#app .equipa-wrapper {
  background-color: #fff;
  height: 61.875rem;
  padding: 0 4.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #app .equipa-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .equipa-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .equipa-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .equipa-wrapper {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .equipa-wrapper {
    height: auto;
    padding: 0 1.25rem;
  }
}
#app .equipa-wrapper .equipa {
  padding: 6.875rem 7.5rem;
  max-width: 63.125rem;
  max-height: 21.875rem;
  width: 100%;
  height: 100%;
  box-shadow: 0.625rem 0.625rem 3.125rem rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .equipa-wrapper .equipa {
    padding: 4.6875rem 4.6875rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .equipa-wrapper .equipa {
    padding: 2.1875rem 2.5rem;
    box-shadow: 0.3125rem 0.3125rem 1.875rem rgba(0, 0, 0, 0.3);
    margin: 2.5rem 0;
    max-height: 50rem;
    height: auto;
    flex-direction: column;
  }
}
#app .equipa-wrapper .equipa .left {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  align-items: center;
  margin-right: 1.25rem;
}
#app .equipa-wrapper .equipa .left > .title {
  color: #7d7d7d;
  display: none;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .equipa-wrapper .equipa .left > .title {
    margin-bottom: 0.625rem;
    display: block;
  }
}
#app .equipa-wrapper .equipa .left .pic {
  border-radius: 50%;
  width: 16.875rem;
  height: 16.875rem;
  background-color: #cbcbcb;
  background-size: cover;
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .equipa-wrapper .equipa .left .pic {
    width: 12.5rem;
    height: 12.5rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .equipa-wrapper .equipa .left .pic {
    width: 12.5rem;
    height: 12.5rem;
  }
}
#app .equipa-wrapper .equipa .left .name {
  color: #0babc5;
  font-size: 1.5rem;
  font-weight: bold;
  margin-top: 1.25rem;
  text-align: center;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .equipa-wrapper .equipa .left .name {
    margin-top: 0.625rem;
  }
}
#app .equipa-wrapper .equipa .left .cargo {
  text-transform: uppercase;
  font-size: 1rem;
  color: #7d7d7d;
  margin-top: 0.625rem;
}
#app .equipa-wrapper .equipa .right {
  width: 44.375rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .equipa-wrapper .equipa .right {
    max-width: 28.75rem;
    width: 100%;
    text-align: center;
  }
}
#app .equipa-wrapper .equipa .right .title {
  margin: 0;
  font-weight: normal;
  color: #7d7d7d;
  display: block;
  margin-bottom: 0.9375rem;
  font-size: 2.375rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .equipa-wrapper .equipa .right .title {
    margin-top: 0.625rem;
    display: none;
  }
}
#app .equipa-wrapper .equipa .right .quote {
  display: flex;
  justify-content: space-between;
  font-family: "OS-Regular";
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .equipa-wrapper .equipa .right .quote {
    margin-top: 1.25rem;
  }
}
#app .equipa-wrapper .equipa .right .quote .icon {
  width: 1rem;
  height: 0.9375rem;
  background-size: cover;
}
#app .equipa-wrapper .equipa .right .quote .txt {
  max-width: 44.375rem;
  width: 100%;
  color: #7b7b7b;
  font-size: 1.125rem;
}
#app .equipa-wrapper .equipa .right a {
  display: flex;
  width: 17%;
  justify-content: space-between;
  align-self: flex-end;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .equipa-wrapper .equipa .right a {
    width: 30%;
    margin-top: 1.25rem;
  }
}
#app .equipa-wrapper .equipa .right a .subquote {
  font-weight: bold;
  font-size: 1.25rem;
  color: #0babc5;
  text-transform: uppercase;
}
#app .equipa-wrapper .equipa .right a .arrow-cont {
  position: absolute;
  transition: 0.5s;
}
#app .equipa-wrapper .equipa .right a .arrow-cont .arrow {
  border: solid #0babc5;
  border-width: 0 0.0625rem 0.0625rem 0;
  display: inline-block;
  padding: 0.125rem;
  position: absolute;
  top: -0.125rem;
  left: 0.25rem;
}
#app .equipa-wrapper .equipa .right a .arrow-cont .arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#app .contacto-wrapper {
  background-color: #f6f6f6;
  height: 33.75rem;
  padding: 0 4.0625rem;
}
@media only screen and (min-width: 1200px) {
  #app .contacto-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .contacto-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .contacto-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .contacto-wrapper {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper {
    height: auto;
    padding: 0 1.25rem;
  }
}
#app .contacto-wrapper #contacto {
  height: 100%;
  display: flex;
  margin: 0 auto;
  justify-content: space-around;
  align-items: center;
  max-width: 87.5rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper #contacto {
    flex-direction: column;
    margin: 0 1.25rem;
  }
}
#app .contacto-wrapper #contacto > div {
  flex: 1 1 auto;
  width: 40%;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper #contacto > div {
    width: 100%;
  }
}
#app .contacto-wrapper #contacto .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 0.625rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper #contacto .left {
    height: 100%;
    align-items: center;
  }
}
#app .contacto-wrapper #contacto .left .title {
  margin: 0;
  font-weight: normal;
  color: #95989a;
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper #contacto .left .title {
    margin-top: 1.25rem;
  }
}
#app .contacto-wrapper #contacto .left .line {
  width: 4.9375rem;
  height: 0.0625rem;
  background-color: #0babc5;
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper #contacto .left .line {
    margin-bottom: 1.875rem;
  }
}
#app .contacto-wrapper #contacto .left .copy {
  font-size: 1.25rem;
  color: #95989a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "OS-Regular";
  margin-bottom: 1.875rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper #contacto .left .copy {
    height: 100%;
  }
}
#app .contacto-wrapper #contacto .left .copy .topic {
  display: flex;
  position: relative;
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper #contacto .left .copy .topic {
    margin-bottom: 1.25rem;
  }
}
#app .contacto-wrapper #contacto .left .copy .topic .icon {
  width: 1.9375rem;
  height: 1.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
#app .contacto-wrapper #contacto .left .copy .topic .txt {
  margin-left: 0.3125rem;
}
#app .contacto-wrapper #contacto .left .copy .topic .txt p {
  margin: 0;
}
#app .contacto-wrapper #contacto .left .copy .topic .txt .link {
  color: #95989a;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper #contacto .left .cta {
    margin-bottom: 1.25rem;
  }
}
#app .contacto-wrapper #contacto .left .cta .btn {
  width: 12.625rem;
  height: 4.1875rem;
  border-radius: 0.625rem;
}
#app .contacto-wrapper #contacto .left .cta .btn .txt {
  font-family: "OS-Regular";
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}
#app .contacto-wrapper #contacto .right {
  margin-left: 0.625rem;
  height: 60%;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper #contacto .right {
    margin: 0;
    margin: 2.5rem 0;
  }
}
#app footer {
  height: 37.5rem;
  background-color: #95989a;
  padding: 0 4.0625rem;
  color: #fff;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  #app footer {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app footer {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app footer {
    padding: 0 2.5rem;
  }
}
@media only screen and (max-width: 767px) {
  #app footer {
    height: auto;
    padding: 0 1.25rem;
  }
}
#app footer .container {
  height: 75%;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 93.75rem;
}
@media only screen and (max-width: 767px) {
  #app footer .container {
    margin: 0 1.25rem;
    margin-bottom: 1.25rem;
  }
}
#app footer .container .line {
  width: 100%;
  height: 0.0625rem;
  background-color: #fff;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 767px) {
  #app footer .container .line {
    margin: 2.5rem 0 1.25rem 0;
  }
}
@media only screen and (max-width: 599px) {
  #app footer .container .line {
    display: none;
  }
}
#app footer .container .wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 599px) {
  #app footer .container .wrapper {
    flex-direction: column-reverse;
    margin-top: 2.5rem;
  }
}
#app footer .container .wrapper .sections {
  display: flex;
  max-width: 62.5rem;
  width: 100%;
  justify-content: space-between;
  margin-left: 6.25rem;
}
@media only screen and (max-width: 767px) {
  #app footer .container .wrapper .sections {
    margin-left: 0;
  }
}
@media only screen and (max-width: 599px) {
  #app footer .container .wrapper .sections {
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 599px) {
  #app footer .container .wrapper .sections .section {
    padding: 1.25rem 0;
    border-bottom: 1px solid #fff;
    width: 100%;
  }
  #app footer .container .wrapper .sections .section:last-child {
    border: none;
    padding-bottom: 0;
  }
}
#app footer .container .wrapper .sections .section .title {
  font-family: "OS-Regular";
  font-size: 1.3125rem;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  font-weight: bold;
}
#app footer .container .wrapper .sections .section .text {
  font-size: 1.25rem;
  font-family: "OS-Regular";
  line-height: 1.9em;
}
#app footer .container .wrapper .sections .section .text .link {
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.9em;
  font-family: "OS-Regular";
  cursor: pointer;
  transition: 0.5s;
}
#app footer .container .wrapper .sections .section .text .link:hover {
  color: #cbcbcb;
  transition: 0.5s;
}
#app footer .container .wrapper .sections .section .links {
  display: flex;
  flex-direction: column;
}
#app footer .container .wrapper .sections .section .links .link {
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.9em;
  font-family: "OS-Regular";
  cursor: pointer;
  transition: 0.5s;
}
#app footer .container .wrapper .sections .section .links .link:hover {
  color: #cbcbcb;
  transition: 0.5s;
}
#app footer .container .wrapper .sections .section .links > div {
  display: flex;
  flex-direction: column;
}
#app footer .container .wrapper .sections .section .links > div .link {
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  line-height: 1.9em;
  font-family: "OS-Regular";
  cursor: pointer;
  transition: 0.5s;
}
#app footer .container .wrapper .sections .section .links > div .link:hover {
  color: #cbcbcb;
  transition: 0.5s;
}
#app footer .container .wrapper .social-icons {
  display: flex;
  width: 6.875rem;
  justify-content: space-between;
}
@media only screen and (max-width: 599px) {
  #app footer .container .wrapper .social-icons {
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #fff;
    width: 100%;
    justify-content: flex-start;
  }
}
@media only screen and (max-width: 599px) {
  #app footer .container .wrapper .social-icons .icon {
    margin-right: 1.25rem;
  }
}
#app .balloon {
  width: 12.5rem;
  height: 3.4375rem;
  color: #fff;
  background-size: contain;
  background-repeat: no-repeat;
  width: 11.875rem;
  height: 3.125rem;
  display: none;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 380px) {
  #app .balloon {
    top: 0px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-image: none !important;
    background-color: #0babc5 !important;
    border-radius: 10px !important;
    width: 100% !important;
    right: 0 !important;
    height: 30px !important;
    position: relative;
    margin-top: 1.25rem;
  }
}
#app .balloon div {
  color: #fff;
  font-size: 1rem;
  width: 85%;
}
@media screen and (max-width: 380px) {
  #app .balloon div {
    font-size: 1.375rem !important;
    width: 100%;
  }
}
#app .input-container {
  display: flex;
  position: relative;
}
@media screen and (max-width: 380px) {
  #app .input-container {
    margin-top: 1.875rem;
    width: 100%;
    flex-direction: column;
  }
  #app .input-container label {
    position: absolute;
    margin-left: 20px;
  }
  #app .input-container input {
    margin-bottom: 0 !important;
  }
}
@media screen and (max-width: 1300px) {
  #app [tabindex] .input-container {
    flex-direction: column;
    width: 100%;
  }
  #app [tabindex] .input-container input {
    margin-top: 3.75rem;
    margin-bottom: 0 !important;
  }
  #app [tabindex] .input-container label {
    position: absolute;
    margin-left: 20px;
  }
  #app [tabindex] .input-container .balloon {
    top: 0px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background-image: none !important;
    background-color: #0babc5 !important;
    border-radius: 10px !important;
    width: 100% !important;
    right: 0 !important;
    height: 30px !important;
    position: relative;
    margin-top: 1.25rem;
  }
  #app [tabindex] .input-container .balloon div {
    color: #fff;
    font-size: 1.375rem !important;
    width: auto !important;
    margin: 0 !important;
  }
}
#app #contact-form {
  pointer-events: none;
  width: 98%;
  height: 98%;
  background-color: rgba(255, 255, 255, 0.95);
  transition: 0.5s;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-160%, -50%);
}
#app #contact-form .content-wrapper {
  width: 100%;
  height: 100%;
}
#app #contact-form .content-wrapper .close-btn {
  border-radius: 50%;
  width: 3.375rem;
  height: 3.375rem;
  background-color: #0babc5;
  position: absolute;
  right: 1.875rem;
  top: 1.875rem;
  cursor: pointer;
}
#app #contact-form .content-wrapper .close-btn .icon {
  height: 100%;
  width: 100%;
}
#app #contact-form .content-wrapper .close-btn .icon > .line {
  height: 0.125rem;
  width: 1.25rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#app #contact-form .content-wrapper .close-btn .icon > .line:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
#app #contact-form .content-wrapper .close-btn .icon > .line:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
#app #contact-form .content-wrapper .pages {
  display: flex;
  justify-content: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
#app #contact-form .content-wrapper .pages .page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: auto;
  margin-top: 15%;
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
  width: 100%;
  padding-bottom: 30%;
}
@media only screen and (max-width: 767px) {
  #app #contact-form .content-wrapper .pages .page {
    top: 50%;
    transform: translateY(-50%);
  }
}
#app #contact-form .content-wrapper .pages .page:focus {
  outline: none;
}
#app #contact-form .content-wrapper .pages .page.active-pg {
  opacity: 1;
  pointer-events: all;
}
#app #contact-form .content-wrapper .pages .page .indicators {
  width: 45rem;
  height: 6.5625rem;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #app #contact-form .content-wrapper .pages .page .indicators {
    width: 75%;
  }
}
#app #contact-form .content-wrapper .pages .page .indicators > .line {
  width: 85%;
  height: 0.3125rem;
  background-color: #f6f6f6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}
#app #contact-form .content-wrapper .pages .page .indicators .indicator {
  height: 6.5625rem;
  width: 6.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#app #contact-form .content-wrapper .pages .page .indicators .indicator.active-pg {
  background-color: #f6f6f6;
}
#app #contact-form .content-wrapper .pages .page .indicators .indicator .point {
  width: 0.875rem;
  height: 0.875rem;
  background-color: #0babc5;
  border-radius: 50%;
}
#app #contact-form .content-wrapper .pages .page .text {
  margin-top: 6.25rem;
  display: flex;
  flex-direction: column;
  left: -100px;
  position: relative;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  #app #contact-form .content-wrapper .pages .page .text {
    width: 90%;
    text-align: center;
  }
}
#app #contact-form .content-wrapper .pages .page .text .title-success {
  font-size: 2.5rem;
  color: #707070;
}
#app #contact-form .content-wrapper .pages .page .text .copy {
  font-size: 1.25rem;
  color: #707070;
  width: 100%;
  text-align: center;
  margin-top: 1.875rem;
}
#app #contact-form .content-wrapper .pages .page .text .btn-inicio {
  width: 11.5625rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  background-color: #0babc5;
  margin-top: 1.875rem;
  align-self: flex-end;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #app #contact-form .content-wrapper .pages .page .text .btn-inicio {
    align-self: center;
  }
}
#app #contact-form .content-wrapper .pages .page .text .btn-inicio:focus {
  outline: none;
}
#app #contact-form .content-wrapper .pages .page .text .btn-inicio .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#app #contact-form .content-wrapper .pages .page .text .btn-inicio .btn .txt {
  color: #fff;
  text-transform: uppercase;
}
#app #contact-form .content-wrapper .pages .page .text .question {
  font-size: 1.5625rem;
}
#app #contact-form .content-wrapper .pages .page .text .radio {
  display: flex;
  margin-top: 1.5625rem;
}
#app #contact-form .content-wrapper .pages .page .text .radio .option {
  margin-right: 1.25rem;
  position: relative;
  height: 2.1875rem;
}
#app #contact-form .content-wrapper .pages .page .text .radio .option .opt {
  color: #0babc5;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 5rem;
  height: 100%;
  position: relative;
  padding-right: 2.1875rem;
  font-size: 1.375rem x;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#app #contact-form .content-wrapper .pages .page .text .radio .option .opt > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  display: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#app #contact-form .content-wrapper .pages .page .text .radio .option .opt > input:checked ~ .radio-btn {
  background-color: #fff;
}
#app #contact-form .content-wrapper .pages .page .text .radio .option .opt > input:checked ~ .radio-btn:after {
  display: block;
}
#app #contact-form .content-wrapper .pages .page .text .radio .option .opt .radio-btn {
  position: absolute;
  top: 0;
  right: -0.625rem;
  height: 1.875rem;
  width: 1.875rem;
  background-color: #fff;
  border-radius: 50%;
  border: 0.1875rem solid #8ed8e4;
  cursor: pointer;
  transform: scale(0.8);
}
#app #contact-form .content-wrapper .pages .page .text .radio .option .opt .radio-btn:hover {
  background-color: #8ed8e4;
}
#app #contact-form .content-wrapper .pages .page .text .radio .option .opt .radio-btn:after {
  content: "";
  position: absolute;
  display: none;
  top: 0.375rem;
  left: 0.375rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: #0babc5;
}
#app #contact-form .content-wrapper .pages .page .text .inputs {
  width: 61.875rem;
  height: auto;
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #app #contact-form .content-wrapper .pages .page .text .inputs {
    width: 100%;
  }
}
#app #contact-form .content-wrapper .pages .page .text .inputs input {
  width: 100%;
  height: 4.375rem;
  border: none;
  border-bottom: 0.125rem solid #0babc5;
  font-size: 1.4375rem;
  background-color: transparent;
  margin-bottom: 3.75rem;
}
#app #contact-form .content-wrapper .pages .page .text .inputs input::placeholder {
  color: #0babc5;
  opacity: 1;
  text-transform: uppercase;
}
#app #contact-form .content-wrapper .pages .page .text .inputs input:focus {
  outline: none;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .balloon-email {
  display: flex;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .balloon-email > div {
  width: 100%;
  margin-left: 0.9375rem;
  margin-top: 0rem;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select {
  width: 100%;
  position: relative;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select select {
  display: none;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-selected {
  background-color: DodgerBlue;
  width: 100%;
  height: 3.125rem;
  border-radius: 0.625rem;
  border: 0.125rem solid #0babc5;
  font-size: 1.4375rem;
  color: #0babc5;
  background: url(../../img/arrow-select.svg) no-repeat right #fff;
  -webkit-appearance: none;
  background-position-x: 98.5%;
  cursor: pointer;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-selected > div {
  margin-left: 0.625rem;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-selected:after {
  position: absolute;
  content: "";
  top: 0.875rem;
  right: 0.625rem;
  width: 0;
  height: 0;
  border: 0.375rem solid transparent;
  border-color: #fff transparent transparent transparent;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 0.4375rem;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  border: 0.125rem solid #0babc5;
  background-color: #fff;
  font-size: 1.4375rem;
  color: #707070;
  font-weight: bold;
  -webkit-appearance: none;
  background-position-x: 98.5%;
  cursor: pointer;
  margin-top: 0.9375rem;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-items div {
  height: 1.625rem;
  padding: 0.625rem;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-items div:first-child {
  border-radius: 0.625rem 0.625rem 0 0;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-items div:nth-child(odd) {
  background-color: #fff;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-items div:nth-child(even) {
  background-color: rgba(147, 217, 229, 0.12);
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-items div:last-child {
  border-radius: 0 0 0.625rem 0.625rem;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
#app #contact-form .content-wrapper .pages .page .text .inputs .custom-select .select-hide {
  display: none;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .accept-tc {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 1.875rem;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .accept-tc label a {
  color: #0babc5;
}
#app #contact-form .content-wrapper .pages .page .text .inputs .accept-tc input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-right: 0.625rem;
}
#app #contact-form .content-wrapper .pages .page .text .inputs button {
  width: 11.5625rem;
  height: 3.125rem;
  background-color: #0babc5;
  border-radius: 0.625rem;
  border: none;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  align-self: flex-end;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#app #contact-form .content-wrapper .pages .page .text .inputs button:focus {
  outline: none;
}
#app #contact-form-2 {
  pointer-events: none;
  width: 98%;
  height: 98%;
  background-color: rgba(255, 255, 255, 0.95);
  transition: 0.5s;
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-160%, -50%);
}
#app #contact-form-2 .content-wrapper {
  width: 100%;
  height: 100%;
}
#app #contact-form-2 .content-wrapper .close-btn {
  border-radius: 50%;
  width: 3.375rem;
  height: 3.375rem;
  background-color: #0babc5;
  position: absolute;
  right: 1.875rem;
  top: 1.875rem;
  cursor: pointer;
}
#app #contact-form-2 .content-wrapper .close-btn .icon {
  height: 100%;
  width: 100%;
}
#app #contact-form-2 .content-wrapper .close-btn .icon > .line {
  height: 0.125rem;
  width: 1.25rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#app #contact-form-2 .content-wrapper .close-btn .icon > .line:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
#app #contact-form-2 .content-wrapper .close-btn .icon > .line:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
#app #contact-form-2 .content-wrapper .pages {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
#app #contact-form-2 .content-wrapper .pages .page {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: auto;
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
  width: 100%;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #app #contact-form-2 .content-wrapper .pages .page {
    top: 50%;
    transform: translateY(-50%);
  }
}
#app #contact-form-2 .content-wrapper .pages .page:focus {
  outline: none;
}
#app #contact-form-2 .content-wrapper .pages .page.active-pg {
  opacity: 1;
  pointer-events: all;
}
#app #contact-form-2 .content-wrapper .pages .page .indicators {
  width: 45rem;
  height: 6.5625rem;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #app #contact-form-2 .content-wrapper .pages .page .indicators {
    width: 75%;
  }
}
#app #contact-form-2 .content-wrapper .pages .page .indicators > .line {
  width: 85%;
  height: 0.3125rem;
  background-color: #f6f6f6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}
#app #contact-form-2 .content-wrapper .pages .page .indicators .indicator {
  height: 6.5625rem;
  width: 6.5625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#app #contact-form-2 .content-wrapper .pages .page .indicators .indicator.active-pg {
  background-color: #f6f6f6;
}
#app #contact-form-2 .content-wrapper .pages .page .indicators .indicator .point {
  width: 0.875rem;
  height: 0.875rem;
  background-color: #0babc5;
  border-radius: 50%;
}
#app #contact-form-2 .content-wrapper .pages .page .text {
  margin-top: 6.25rem;
  display: flex;
  flex-direction: column;
  left: -100px;
  position: relative;
  opacity: 0;
}
@media only screen and (max-width: 767px) {
  #app #contact-form-2 .content-wrapper .pages .page .text {
    width: 90%;
    text-align: center;
  }
}
#app #contact-form-2 .content-wrapper .pages .page .text .title-success {
  font-size: 2.5rem;
  color: #707070;
}
#app #contact-form-2 .content-wrapper .pages .page .text .copy {
  font-size: 1.25rem;
  color: #707070;
  max-width: 43.75rem;
  width: 100%;
  text-align: center;
  margin-top: 1.875rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .btn-inicio {
  width: 11.5625rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  background-color: #0babc5;
  margin-top: 1.875rem;
  align-self: flex-end;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #app #contact-form-2 .content-wrapper .pages .page .text .btn-inicio {
    align-self: center;
  }
}
#app #contact-form-2 .content-wrapper .pages .page .text .btn-inicio:focus {
  outline: none;
}
#app #contact-form-2 .content-wrapper .pages .page .text .btn-inicio .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
#app #contact-form-2 .content-wrapper .pages .page .text .btn-inicio .btn .txt {
  color: #fff;
  text-transform: uppercase;
}
#app #contact-form-2 .content-wrapper .pages .page .text .question {
  font-size: 1.5625rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .radio {
  display: flex;
  margin-top: 1.5625rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .radio .option {
  margin-right: 1.25rem;
  position: relative;
  height: 2.1875rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .radio .option .opt {
  color: #0babc5;
  font-size: 1.375rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 5rem;
  height: 100%;
  position: relative;
  padding-right: 2.1875rem;
  font-size: 1.375rem x;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#app #contact-form-2 .content-wrapper .pages .page .text .radio .option .opt > input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  display: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#app #contact-form-2 .content-wrapper .pages .page .text .radio .option .opt > input:checked ~ .radio-btn {
  background-color: #fff;
}
#app #contact-form-2 .content-wrapper .pages .page .text .radio .option .opt > input:checked ~ .radio-btn:after {
  display: block;
}
#app #contact-form-2 .content-wrapper .pages .page .text .radio .option .opt .radio-btn {
  position: absolute;
  top: 0;
  right: -0.625rem;
  height: 1.875rem;
  width: 1.875rem;
  background-color: #fff;
  border-radius: 50%;
  border: 0.1875rem solid #8ed8e4;
  cursor: pointer;
  transform: scale(0.8);
}
#app #contact-form-2 .content-wrapper .pages .page .text .radio .option .opt .radio-btn:hover {
  background-color: #8ed8e4;
}
#app #contact-form-2 .content-wrapper .pages .page .text .radio .option .opt .radio-btn:after {
  content: "";
  position: absolute;
  display: none;
  top: 0.375rem;
  left: 0.375rem;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: #0babc5;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs {
  width: 61.875rem;
  height: auto;
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 767px) {
  #app #contact-form-2 .content-wrapper .pages .page .text .inputs {
    width: 100%;
  }
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs input {
  width: 100%;
  height: 4.375rem;
  border: none;
  border-bottom: 0.125rem solid #0babc5;
  font-size: 1.4375rem;
  background-color: transparent;
  margin-bottom: 3.75rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs input::placeholder {
  color: #0babc5;
  opacity: 1;
  text-transform: uppercase;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs input:focus {
  outline: none;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .balloon-email {
  display: flex;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .balloon-email > div {
  width: 100%;
  margin-left: 0.9375rem;
  margin-top: 0rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 {
  width: 100%;
  position: relative;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 select {
  display: none;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-selected {
  background-color: DodgerBlue;
  width: 100%;
  height: 3.125rem;
  border-radius: 0.625rem;
  border: 0.125rem solid #0babc5;
  font-size: 1.4375rem;
  color: #0babc5;
  background: url(../../img/arrow-select.svg) no-repeat right #fff;
  -webkit-appearance: none;
  background-position-x: 98.5%;
  cursor: pointer;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-selected > div {
  margin-left: 0.625rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-selected:after {
  position: absolute;
  content: "";
  top: 0.875rem;
  right: 0.625rem;
  width: 0;
  height: 0;
  border: 0.375rem solid transparent;
  border-color: #fff transparent transparent transparent;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 0.4375rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  border: 0.125rem solid #0babc5;
  background-color: #fff;
  font-size: 1.4375rem;
  color: #707070;
  font-weight: bold;
  -webkit-appearance: none;
  background-position-x: 98.5%;
  cursor: pointer;
  margin-top: 0.9375rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-items div {
  height: 1.625rem;
  padding: 0.625rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-items div:first-child {
  border-radius: 0.625rem 0.625rem 0 0;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-items div:nth-child(odd) {
  background-color: #fff;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-items div:nth-child(even) {
  background-color: rgba(147, 217, 229, 0.12);
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-items div:last-child {
  border-radius: 0 0 0.625rem 0.625rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .custom-select-2 .select-hide {
  display: none;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs textarea {
  width: 99.5%;
  max-height: 18.75rem;
  height: 100%;
  border-radius: 0.625rem;
  border: 0.125rem solid #0babc5;
  font-size: 1.4375rem;
  color: #0babc5;
  -webkit-appearance: none;
  display: flex;
  align-items: center;
  margin-top: 1.875rem;
  font-family: "OS-Regular";
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .accept-tc {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 1.875rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .accept-tc label a {
  color: #0babc5;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs .accept-tc input {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  margin-right: 0.625rem;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs button {
  width: 11.5625rem;
  height: 3.125rem;
  background-color: #0babc5;
  border-radius: 0.625rem;
  border: none;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  align-self: flex-end;
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#app #contact-form-2 .content-wrapper .pages .page .text .inputs button:focus {
  outline: none;
}
#app #gdpr-box {
  display: flex;
  width: 100%;
  background: #0babc5;
  color: #fff;
  position: fixed;
  bottom: 0;
  z-index: 999;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 1.875rem 0;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app #gdpr-box {
    flex-direction: column;
  }
}
#app #gdpr-box p {
  padding: 0.625rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.125rem;
  margin: 0.3125rem 0;
  text-align: center;
}
#app #gdpr-box a {
  color: #000;
  cursor: pointer;
}
#app #gdpr-box button.gdpr-button-accept {
  background: none;
  color: #fff;
  font-size: 0.875rem;
}
#app #gdpr-box button.gdpr-button-accept:hover {
  cursor: pointer;
}
#app #gdpr-box button.gdpr-button-accept {
  border: 0.0625rem solid #fff;
  border-radius: 0.625rem;
  padding: 0.9375rem 1.25rem;
  text-decoration: none;
  margin: 0 1.25rem;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.5s;
}
#app #gdpr-box button.gdpr-button-accept:hover {
  background: #fff;
  color: #0babc5;
}
#app .to-top {
  opacity: 0;
  position: fixed;
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  color: #fff;
  bottom: 3.125rem;
  right: 3.125rem;
  z-index: 99999999;
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  #app .to-top {
    bottom: 1.25rem;
    right: 1.25rem;
  }
}
#app .to-top #btt-btn {
  width: 3.75rem;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  cursor: pointer;
  transition: 0.5s;
  background-color: #fff;
  border-radius: 50%;
  border: 0.0625rem solid #0babc5;
}
#app .to-top #btt-btn:hover {
  color: #fff;
  background-color: #0babc5;
}
#app .to-top #btt-btn:hover #arrow {
  margin-top: 0.625rem;
}
#app .to-top #btt-btn:hover #arrow .arrow {
  border: solid #fff;
  border-width: 0 0.1875rem 0.1875rem 0;
  transition: 0.5s;
}
#app .to-top #btt-btn #arrow {
  text-align: center;
  margin-top: 0.625rem;
}
#app .to-top #btt-btn #arrow .arrow {
  border: solid #0babc5;
  border-width: 0 0.1875rem 0.1875rem 0;
  display: inline-block;
  padding: 0.3125rem;
  transition: 0.5s;
}
#app .to-top #btt-btn #arrow .arrow.up {
  transform: rotate(-135deg);
  -webkit-transform: rotate(-135deg);
}
#app #popup {
  width: auto;
  height: auto;
  position: fixed;
  z-index: 9999;
  bottom: 2.5rem;
  left: -150%;
  transition: 1s;
}
@media only screen and (max-width: 600px) {
  #app #popup {
    transform: scale(0.8);
    transform-origin: 0% 100%;
  }
}
@media only screen and (max-height: 415px) {
  #app #popup {
    transform: scale(0.8);
    transform-origin: 0% 100%;
  }
}
#app #popup.active {
  left: 1.25rem;
}
#app #popup .close-btn {
  border-radius: 50%;
  width: 2.125rem;
  height: 2.125rem;
  background-color: #0babc5;
  position: absolute;
  right: 0.9375rem;
  top: 0.9375rem;
  cursor: pointer;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #app #popup .close-btn {
    right: -3.125rem;
  }
}
#app #popup .close-btn .icon {
  height: 100%;
  width: 100%;
}
#app #popup .close-btn .icon > .line {
  height: 0.125rem;
  width: 0.9375rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#app #popup .close-btn .icon > .line:first-child {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
#app #popup .close-btn .icon > .line:last-child {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
#app #popup .card {
  width: 31.25rem;
  height: 33.125rem;
  background-color: #fff;
  border-radius: 2.6875rem;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.5s;
  box-shadow: 0.1875rem 0.1875rem 0.9375rem rgba(0, 0, 0, 0.2);
}
/* @media only screen and (max-width: 600px) {
  #app #popup .card {
    width: 29.25rem;
    height: 31.125rem;
  }
} */
#app #popup .card.is-visible {
  display: flex;
}
#app #popup .card .card-img {
  background-color: #fff;
  border-radius: 2.6875rem;
  width: 100%;
  height: 70%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#app #popup .card .card-img img {
  height: 100%;
  transform: scale(1.3);
}
#app #popup .card .card-content {
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.875rem;
  height: 30%;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app #popup .card .card-content {
    width: 90%;
  }
}
#app #popup .card .card-content .card-header {
  display: flex;
  justify-content: space-between;
}
#app #popup .card .card-content .card-header .card-type {
  text-transform: uppercase;
  color: #0babc5;
  font-family: "Arial";
  font-size: 1.25rem;
  font-weight: 600;
}
#app #popup .card .card-content .card-header .card-status {
  width: 12.5rem;
  border: 0.0625rem solid #0babc5;
  border-radius: 1.25rem;
  text-transform: uppercase;
  font-family: "Arial";
  align-items: center;
  justify-content: center;
  display: none;
}
#app #popup .card .card-content .card-header .card-status.is-full {
  background-color: #fff;
  color: #0babc5;
  display: flex;
}
#app #popup .card .card-content .card-header .card-status.is-full span {
  display: none;
}
#app #popup .card .card-content .card-header .card-status.is-full span.is-full {
  display: block;
}
#app #popup .card .card-content .card-header .card-status.has-vagas {
  background-color: #0babc5;
  color: #fff;
  display: flex;
}
#app #popup .card .card-content .card-header .card-status.has-vagas span {
  display: none;
}
#app #popup .card .card-content .card-header .card-status.has-vagas span.has-vagas {
  display: block;
}
#app #popup .card .card-content .card-body {
  display: flex;
  justify-content: space-between;
  margin-top: 0.9375rem;
}
#app #popup .card .card-content .card-body .card-title {
  margin: 0;
  font-family: "Arial";
  color: #707070;
  font-weight: bold;
  font-size: 1.375rem;
  max-width: 65%;
  width: 100%;
  height: 4.75rem;
}
#app #popup .card .card-content .card-body .card-date {
  display: flex;
  justify-content: space-between;
  width: 40%;
  text-align: right;
}
#app #popup .card .card-content .card-body .card-date .txt {
  width: 100%;
  margin-right: 0.625rem;
}
#app #popup .card .card-content .card-body .card-date .icon {
  width: 3.6rem;
  height: 2.8rem;
  background-size: cover;
  background-repeat: no-repeat;
}
#app #popup .card a {
  position: absolute;
  width: 13.75rem;
  height: 3.4375rem;
  bottom: -1.71875rem;
}
#app #popup .card a .card-cta {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0babc5;
  border: 0.0625rem solid #0babc5;
  border-radius: 1.25rem;
  transition: 0.5s;
  cursor: pointer;
}
#app #popup .card a .card-cta .txt {
  color: #fff;
  font-size: 1.375rem;
}
#app #popup .card a .card-cta:hover {
  background-color: #fff;
}
#app #popup .card a .card-cta:hover .txt {
  color: #0babc5;
}
#app .slideshow-wrapper-sobre-nos {
  background-color: #fff;
  height: 23.96875rem;
  padding: 0 4.0625rem;
  background-position: 90% 40%;
  background-repeat: no-repeat;
  background-size: 35%;
}
@media only screen and (min-width: 1200px) {
  #app .slideshow-wrapper-sobre-nos {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .slideshow-wrapper-sobre-nos {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .slideshow-wrapper-sobre-nos {
    padding: 0 2.5rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .slideshow-wrapper-sobre-nos {
    padding: 0 1.25rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper-sobre-nos {
    padding: 0 1.25rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
#app .slideshow-wrapper-sobre-nos #slideshow {
  height: 100%;
  max-width: 93.75rem;
  margin: auto;
}
#app .slideshow-wrapper-sobre-nos #slideshow .slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-start;
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-sobre-nos #slideshow .slide {
    justify-content: center;
    align-items: center;
  }
}
#app .slideshow-wrapper-sobre-nos #slideshow .slide .copy {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-sobre-nos #slideshow .slide .copy {
    align-items: center;
    text-align: center;
    top: 1.25rem;
    padding: 0;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    flex-direction: column;
  }
}
#app .slideshow-wrapper-sobre-nos #slideshow .slide .copy .line {
  width: 65%;
  height: 0.0625rem;
  background-color: rgba(11, 171, 197, 0.6);
}
#app .slideshow-wrapper-sobre-nos #slideshow .slide .copy .title {
  margin: 0;
  font-weight: normal;
  color: #0babc5;
  font-size: 2.5rem;
  text-align: right;
  font-family: "Dalmatins";
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-sobre-nos #slideshow .slide .copy .title {
    font-size: 1.75rem;
  }
}
#app .historia-wrapper {
  background-color: #fff;
  height: 31.875rem;
  padding: 0 18.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #app .historia-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .historia-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .historia-wrapper {
    height: auto;
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .historia-wrapper {
    height: auto;
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .historia-wrapper {
    height: auto;
    padding: 0 1.25rem;
  }
}
#app .historia-wrapper .historia {
  margin: auto;
  max-width: 93.75rem;
  width: 100%;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .historia-wrapper .historia {
    margin: 2.5rem 0;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .historia-wrapper .historia {
    margin: 1.25rem 0;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .historia-wrapper .historia {
    margin: 1.25rem 0;
  }
}
#app .historia-wrapper .historia .copy {
  display: flex;
  flex-wrap: wrap;
  height: 15.8125rem;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  #app .historia-wrapper .historia .copy {
    flex-wrap: nowrap;
    height: auto;
    align-items: center;
    text-align: center;
  }
}
#app .historia-wrapper .historia .copy .title {
  margin: 0;
  font-weight: normal;
  font-size: 2.5rem;
  color: #0babc5;
  margin-bottom: 1.875rem;
}
#app .historia-wrapper .historia .copy .container {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  #app .historia-wrapper .historia .copy .container {
    flex-direction: column;
  }
}
#app .historia-wrapper .historia .copy .container .p {
  display: flex;
  flex-direction: column;
  width: 49%;
}
@media only screen and (max-width: 767px) {
  #app .historia-wrapper .historia .copy .container .p {
    width: 100%;
  }
}
#app .historia-wrapper .historia .copy .container .p .paragraph {
  width: 100% !important;
  text-align: justify;
}
#app .historia-wrapper .historia .copy .container .paragraph {
  font-family: "OS-Regular";
  font-size: 1.375rem;
  color: #828282;
  max-width: 45.625rem;
  width: 100%;
  height: 100%;
  text-align: justify;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  #app .historia-wrapper .historia .copy .container .paragraph {
    width: 49%;
    max-width: unset;
  }
}
@media only screen and (max-width: 767px) {
  #app .historia-wrapper .historia .copy .container .paragraph {
    margin-bottom: 1.25rem;
    text-align: left;
    width: 100%;
    max-width: unset;
  }
}
#app .historia-wrapper .historia .copy .container .line {
  height: 0.125rem;
  width: 43.125rem;
  background-color: #0babc5;
  margin-top: 0.9375rem;
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {
  #app .historia-wrapper .historia .copy .container .line {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  #app .historia-wrapper .historia .copy .container .line {
    margin-bottom: 1.25rem;
    width: 100%;
  }
}
#app .historia-wrapper .historia .copy .container .quote {
  font-size: 1.25rem;
  font-family: Georgia, "Times New Roman", Times, serif;
  color: #828282;
  max-width: 37.5rem;
  width: 100%;
  margin-top: 0.9375rem;
}
@media only screen and (max-width: 991px) {
  #app .historia-wrapper .historia .copy .container .quote {
    margin-bottom: 1.25rem;
  }
}
#app .servicos-wrapper {
  height: auto;
  background-color: #fff;
  max-width: 93.75rem;
  margin: auto;
}
@media only screen {
  #app .servicos-wrapper {
    height: auto;
  }
}
#app .servicos-wrapper .cards-wrapper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 5rem;
  height: 55%;
  flex-wrap: wrap;
}
@media only screen and (min-width: 600px) and (max-width: 991px) {
  #app .servicos-wrapper .cards-wrapper {
    justify-content: center;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .servicos-wrapper .cards-wrapper {
    flex-direction: column;
    height: 100%;
    align-items: center;
    margin-bottom: 2.5rem;
    justify-content: center;
  }
}
#app .servicos-wrapper .cards-wrapper .card {
  width: 37.5rem;
  height: 13.75rem;
  background-color: #f6f6f6;
  border-radius: 1.4375rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.125rem 3.125rem;
  cursor: pointer;
  transition: 0.5s;
  margin-bottom: 3.125rem;
}
@media only screen and (min-width: 600px) and (max-width: 1199px) {
  #app .servicos-wrapper .cards-wrapper .card {
    margin-bottom: 1.875rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .servicos-wrapper .cards-wrapper .card {
    margin: 0.625rem 0;
    width: 80%;
    height: auto;
    padding: 1.875rem 2.5rem;
  }
}
#app .servicos-wrapper .cards-wrapper .card .icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .servicos-wrapper .cards-wrapper .card .icon {
    width: 4.375rem;
    height: 4.375rem;
  }
}
#app .servicos-wrapper .cards-wrapper .card .card-title {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.75rem;
  color: #0babc5;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.9375rem;
}
#app .servicos-wrapper .cards-wrapper .card .card-copy {
  font-size: 1.375rem;
  color: #a4a4a4;
  text-align: justify;
  text-align-last: center;
}
#app .servicos-wrapper .cards-wrapper .card .card-copy i {
  display: inline-block;
  margin-bottom: 0.9375rem;
  font-family: Georgia, "Times New Roman", Times, serif;
}
#app .servicos-wrapper .cards-wrapper .card a {
  align-self: flex-end;
}
#app .servicos-wrapper .cards-wrapper .card a .cta {
  width: 5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-self: flex-end;
  align-items: center;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .servicos-wrapper .cards-wrapper .card a .cta {
    width: 6.25rem;
    align-self: center;
  }
}
#app .servicos-wrapper .cards-wrapper .card a .cta .txt {
  font-family: "OS-Regular";
  color: #a4a4a4;
  text-transform: uppercase;
  font-size: 0.875rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .servicos-wrapper .cards-wrapper .card a .cta .txt {
    color: #0babc5;
  }
}
#app .servicos-wrapper .cards-wrapper .card a .cta .arrow-cont {
  position: relative;
  transition: 0.5s;
}
#app .servicos-wrapper .cards-wrapper .card a .cta .arrow-cont .arrow {
  border: solid #a4a4a4;
  border-width: 0 0.0625rem 0.0625rem 0;
  display: inline-block;
  padding: 0.125rem;
  position: absolute;
  top: -0.125rem;
  left: 0.25rem;
}
#app .servicos-wrapper .cards-wrapper .card a .cta .arrow-cont .arrow.right {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
#app .servicos-wrapper .cards-wrapper .card a .cta svg {
  width: 0.6875rem;
  height: 0.6875rem;
  overflow: visible;
}
#app .servicos-wrapper .cards-wrapper .card a .cta svg .arrow {
  fill: #a4a4a4;
  transition: 0.5s;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .servicos-wrapper .cards-wrapper .card a .cta svg .arrow {
    fill: #0babc5;
  }
}
#app .servicos-wrapper .servicos {
  display: flex;
  height: 100%;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  #app .servicos-wrapper .servicos {
    flex-direction: column;
  }
}
#app .servicos-wrapper .servicos .servico {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
#app .servicos-wrapper .servicos .servico:first-child {
  padding: 3.75rem 5rem 3.75rem 39.375rem;
}
#app .servicos-wrapper .servicos .servico:last-child {
  padding: 3.75rem 39.375rem 3.75rem 5rem;
}
@media only screen and (min-width: 1200px) {
  #app .servicos-wrapper .servicos .servico {
    padding: 2.5rem 3.75rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .servicos-wrapper .servicos .servico {
    padding: 2.5rem 3.75rem;
  }
}
@media only screen and (max-width: 991px) {
  #app .servicos-wrapper .servicos .servico {
    width: auto;
    padding: 2.5rem;
    align-items: center;
  }
}
@media only screen and (max-width: 599px) {
  #app .servicos-wrapper .servicos .servico {
    text-align: center;
    align-items: center;
  }
}
#app .servicos-wrapper .servicos .servico:nth-child(2) {
  background-color: #0babc5;
}
#app .servicos-wrapper .servicos .servico:nth-child(2) .txt-big {
  color: #fff;
  font-family: "OS-Bold";
}
#app .servicos-wrapper .servicos .servico:nth-child(2) .line {
  background-color: #fff;
}
#app .servicos-wrapper .servicos .servico:nth-child(2) .copy {
  color: #fff;
  font-family: "OS-Regular";
}
#app .servicos-wrapper .servicos .servico:nth-child(2) .topics {
  color: #fff;
}
#app .servicos-wrapper .servicos .servico:nth-child(2) .topics .topic {
  color: #fff;
}
#app .servicos-wrapper .servicos .servico .txt-big {
  font-size: 1.75rem;
  color: #707070;
  font-family: "OS-Bold";
  margin-bottom: 0.9375rem;
}
@media only screen {
  #app .servicos-wrapper .servicos .servico .txt-big {
    margin-bottom: 1.25rem;
  }
}
#app .servicos-wrapper .servicos .servico .line {
  height: 0.0625rem;
  width: 5rem;
  background-color: #0babc5;
  margin-bottom: 1.25rem;
}
@media only screen {
  #app .servicos-wrapper .servicos .servico .line {
    margin-bottom: 1.25rem;
  }
}
#app .servicos-wrapper .servicos .servico .copy {
  color: #707070;
  width: 100%;
  font-size: 1.375rem;
  font-family: "OS-Regular";
  margin-bottom: 1.25rem;
}
@media only screen {
  #app .servicos-wrapper .servicos .servico .copy {
    margin-bottom: 1.25rem;
  }
}
@media only screen and (max-width: 991px) {
  #app .servicos-wrapper .servicos .servico .copy {
    text-align: center;
  }
}
#app .servicos-wrapper .servicos .servico .topics {
  display: flex;
  flex-direction: column;
  font-family: "OS-Regular";
  font-size: 1.25rem;
}
@media only screen and (max-width: 991px) {
  #app .servicos-wrapper .servicos .servico .topics {
    text-align: center;
  }
}
#app .equipa-wrapper-sobre-nos {
  background-color: #fafafa;
  height: 47.1875rem;
  padding: 0 4.0625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #app .equipa-wrapper-sobre-nos {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .equipa-wrapper-sobre-nos {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .equipa-wrapper-sobre-nos {
    padding: 0 2.5rem;
    height: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .equipa-wrapper-sobre-nos {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .equipa-wrapper-sobre-nos {
    padding: 0 1.25rem;
    height: auto;
  }
}
#app .equipa-wrapper-sobre-nos .equipa {
  margin: auto;
  max-width: 87.5rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  #app .equipa-wrapper-sobre-nos .equipa {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 599px) {
  #app .equipa-wrapper-sobre-nos .equipa {
    padding-bottom: 3.125rem;
  }
}
#app .equipa-wrapper-sobre-nos .equipa .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  #app .equipa-wrapper-sobre-nos .equipa .left {
    margin-bottom: 1.25rem;
    width: 100%;
  }
}
#app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper {
  width: 15rem;
  height: 21.5625rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3.75rem;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 991px) {
  #app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper {
    width: 100%;
    padding: 3.75em 0;
    margin-top: 3.125rem;
    height: 100%;
  }
}
#app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper .team {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 100%;
}
#app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper .team .person {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: 0.5s;
}
#app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper .team .person.active-equipa {
  opacity: 1;
}
#app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper .team .person .pic {
  border-radius: 50%;
  width: 11.875rem;
  height: 11.875rem;
  background-color: #cbcbcb;
  background-size: cover;
}
#app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper .team .person .name {
  font-size: 1.375rem;
  color: #0babc5;
  margin-top: 1.875rem;
}
#app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper .team .person .description {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.125rem;
  color: #828282;
  text-align: center;
  margin-top: 1.875rem;
}
#app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper .indicators {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 25%;
  margin-top: 20rem;
}
@media screen and (max-width: 991px) {
  #app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper .indicators {
    width: 10%;
  }
}
#app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper .indicators .idc {
  width: 0.625rem;
  height: 0.625rem;
  background-color: #bce0fd;
  border-radius: 50%;
  cursor: pointer;
}
#app .equipa-wrapper-sobre-nos .equipa .left .person-wrapper .indicators .idc.active-equipa {
  background-color: #0babc5;
}
#app .equipa-wrapper-sobre-nos .equipa .right {
  max-width: 56.25rem;
  width: 100%;
  height: 27.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media only screen and (max-width: 991px) {
  #app .equipa-wrapper-sobre-nos .equipa .right {
    align-items: center;
    text-align: center;
    height: 50%;
    width: 100%;
    max-width: 100%;
  }
}
#app .equipa-wrapper-sobre-nos .equipa .right .subtext {
  font-size: 1.25rem;
  text-transform: uppercase;
  color: #828282;
}
#app .equipa-wrapper-sobre-nos .equipa .right .title {
  margin: 0;
  font-weight: normal;
  color: #828282;
}
#app .equipa-wrapper-sobre-nos .equipa .right .line {
  width: 5rem;
  height: 0.0625rem;
  background-color: #0babc5;
  margin-top: 0.625rem;
}
#app .equipa-wrapper-sobre-nos .equipa .right > .txt {
  font-family: "OS-Regular";
  font-size: 1.125rem;
  color: #828282;
  margin: 1.25rem 0;
  min-height: 13.75rem;
  position: relative;
}
@media only screen and (max-width: 991px) {
  #app .equipa-wrapper-sobre-nos .equipa .right > .txt {
    width: 100%;
    /* max-width: 100%; */
    margin-top: 0.625rem;
    height: auto;
    display: flex;
  }
}
#app .equipa-wrapper-sobre-nos .equipa .right > .txt .p {
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  text-align: justify;
}
@media only screen and (max-width: 991px) {
  #app .equipa-wrapper-sobre-nos .equipa .right > .txt .p {
    height: auto;
    margin: 0;
    width: 100%;
    position: absolute;
  }
}
#app .equipa-wrapper-sobre-nos .equipa .right > .txt .p.active-equipa {
  opacity: 1;
}
#app .equipa-wrapper-sobre-nos .equipa .right .quote {
  margin-top: 1.25rem;
}
@media only screen and (max-width: 991px) {
  #app .equipa-wrapper-sobre-nos .equipa .right .quote {
    width: 100%;
    max-width: 100%;
    min-height: 6.25rem;
    margin-bottom: 1.25rem;
  }
}
#app .equipa-wrapper-sobre-nos .equipa .right .quote .icon {
  width: 1rem;
  height: 0.9375rem;
  background-size: cover;
}
#app .equipa-wrapper-sobre-nos .equipa .right .quote > .txt {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.25rem;
  color: #828282;
  margin-top: 0.9375rem;
  opacity: 0;
  transition: 0.5s;
  position: absolute;
}
#app .equipa-wrapper-sobre-nos .equipa .right .quote > .txt.active-equipa {
  opacity: 1;
}
#app .confianca-wrapper {
  background-color: #fff;
  height: auto;
  padding: 0 4.0625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #app .confianca-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .confianca-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .confianca-wrapper {
    padding: 0 2.5rem;
    height: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .confianca-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .confianca-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
#app .confianca-wrapper .confianca {
  margin: auto;
  max-width: 87.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
#app .confianca-wrapper .confianca .top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 991px) {
  #app .confianca-wrapper .confianca .top {
    margin-top: 2.5rem;
  }
}
#app .confianca-wrapper .confianca .top .subtext {
  text-transform: uppercase;
  color: #828282;
  font-size: 1.25rem;
}
#app .confianca-wrapper .confianca .top .title {
  margin: 0;
  font-weight: normal;
  color: #828282;
  font-size: 2.625rem;
  margin-top: 1.875rem;
}
@media only screen and (max-width: 991px) {
  #app .confianca-wrapper .confianca .top .title {
    text-align: center;
  }
}
#app .confianca-wrapper .confianca .top .line {
  width: 5rem;
  height: 0.0625rem;
  background-color: #0babc5;
  margin-top: 1.25rem;
}
#app .confianca-wrapper .confianca .top .copy {
  color: #8e8e8e;
  font-size: 1.375rem;
  margin-top: 1.875rem;
  max-width: 59.375rem;
  width: 100%;
  text-align: justify;
  text-align-last: center;
}
#app .confianca-wrapper .confianca .topics {
  margin-top: 3.75rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 991px) {
  #app .confianca-wrapper .confianca .topics {
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
  }
}
#app .confianca-wrapper .confianca .topics .topic {
  width: 33%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.125rem;
}
@media only screen and (max-width: 991px) {
  #app .confianca-wrapper .confianca .topics .topic {
    margin-bottom: 2.5rem;
  }
  #app .confianca-wrapper .confianca .topics .topic:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 599px) {
  #app .confianca-wrapper .confianca .topics .topic {
    width: 100%;
  }
}
#app .confianca-wrapper .confianca .topics .topic .icon {
  width: 6.875rem;
  height: 6.875rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
#app .confianca-wrapper .confianca .topics .topic > .title {
  margin: 0;
  font-weight: normal;
  color: #707070;
  font-size: 2rem;
  margin-top: 1.25rem;
}
#app .confianca-wrapper .confianca .topics .topic .txt {
  font-family: "OS-Regular";
  color: #7b7b7b;
  font-size: 1.25rem;
  text-align: center;
  margin-top: 0.625rem;
}
#app .marcar-consulta-wrapper {
  background-color: #0babc5;
  height: 11.5625rem;
  padding: 0 4.0625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #app .marcar-consulta-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .marcar-consulta-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .marcar-consulta-wrapper {
    padding: 0 2.5rem;
    height: auto;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .marcar-consulta-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .marcar-consulta-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
#app .marcar-consulta-wrapper .marcar-consulta {
  max-width: 87.5rem;
  margin: auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  #app .marcar-consulta-wrapper .marcar-consulta {
    flex-direction: column;
    align-items: center;
  }
}
#app .marcar-consulta-wrapper .marcar-consulta .left {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  #app .marcar-consulta-wrapper .marcar-consulta .left {
    margin: 2.5rem 0;
  }
}
#app .marcar-consulta-wrapper .marcar-consulta .left .copy {
  font-size: 1.375rem;
  width: 59.375rem;
  color: #fff;
}
@media only screen and (max-width: 991px) {
  #app .marcar-consulta-wrapper .marcar-consulta .left .copy {
    text-align: center;
  }
}
@media only screen and (max-width: 599px) {
  #app .marcar-consulta-wrapper .marcar-consulta .left .copy {
    width: auto;
  }
}
@media only screen and (max-width: 991px) {
  #app .marcar-consulta-wrapper .marcar-consulta .right {
    margin-bottom: 2.5rem;
  }
}
#app .marcar-consulta-wrapper .marcar-consulta .right .btn {
  width: 20.9375rem;
  height: 4.0625rem;
  border: 0.0625rem solid #fff;
  border-radius: pxtoEm(4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  cursor: pointer;
}
#app .marcar-consulta-wrapper .marcar-consulta .right .btn:hover {
  background-color: #fff;
}
#app .marcar-consulta-wrapper .marcar-consulta .right .btn:hover .txt {
  color: #0babc5;
}
#app .marcar-consulta-wrapper .marcar-consulta .right .btn .txt {
  color: #fff;
  font-size: 1.125rem;
  text-transform: uppercase;
}
#app .slideshow-wrapper-servicos {
  background-color: #fff;
  height: 23.96875rem;
  padding: 0 4.0625rem;
  background-position: 90% 40%;
  background-repeat: no-repeat;
  background-size: 35%;
}
@media only screen and (min-width: 1200px) {
  #app .slideshow-wrapper-servicos {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .slideshow-wrapper-servicos {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .slideshow-wrapper-servicos {
    padding: 0 2.5rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .slideshow-wrapper-servicos {
    padding: 0 1.25rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper-servicos {
    padding: 0 1.25rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
#app .slideshow-wrapper-servicos #slideshow {
  height: 100%;
  max-width: 93.75rem;
  margin: auto;
}
#app .slideshow-wrapper-servicos #slideshow .slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-servicos #slideshow .slide {
    justify-content: center;
    align-items: center;
  }
}
#app .slideshow-wrapper-servicos #slideshow .slide .copy {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-servicos #slideshow .slide .copy {
    align-items: center;
    text-align: center;
    top: 1.25rem;
    padding: 0;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    flex-direction: column-reverse;
  }
}
#app .slideshow-wrapper-servicos #slideshow .slide .copy .line {
  width: 70%;
  height: 0.0625rem;
  background-color: rgba(11, 171, 197, 0.6);
}
#app .slideshow-wrapper-servicos #slideshow .slide .copy .title {
  margin: 0;
  font-weight: normal;
  color: #0babc5;
  font-size: 2.5rem;
  text-align: right;
  font-family: "Dalmatins";
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-servicos #slideshow .slide .copy .title {
    font-size: 1.75rem;
  }
}
#app .apresentacao-wrapper-servicos {
  background-color: #fff;
  height: 15.625rem;
  padding: 0 4.0625rem;
}
@media only screen and (min-width: 1200px) {
  #app .apresentacao-wrapper-servicos {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .apresentacao-wrapper-servicos {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .apresentacao-wrapper-servicos {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .apresentacao-wrapper-servicos {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .apresentacao-wrapper-servicos {
    padding: 0 1.25rem;
  }
}
#app .apresentacao-wrapper-servicos > div {
  max-width: 93.75rem;
  margin: auto;
  width: 100%;
  position: relative;
  height: 100%;
}
#app .apresentacao-wrapper-servicos > div .imgs {
  height: 100%;
  position: absolute;
}
@media only screen and (max-width: 991px) {
  #app .apresentacao-wrapper-servicos > div .imgs {
    opacity: 0.2;
  }
}
@media only screen and (max-width: 767px) {
  #app .apresentacao-wrapper-servicos > div .imgs {
    display: none;
  }
}
#app .apresentacao-wrapper-servicos > div .imgs img {
  height: 100%;
  transform: scaleX(-1);
}
#app .apresentacao-wrapper-servicos > div .imgs img.cadeira {
  height: 70%;
  margin-left: -20px;
}
#app .apresentacao-wrapper-servicos > div #apresentacao {
  height: 100%;
  margin: 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#app .apresentacao-wrapper-servicos > div #apresentacao .copy {
  color: #8e8e8e;
  font-size: 1.5rem;
  max-width: 58.4375rem;
  width: 100%;
  text-align: justify;
  text-align-last: center;
}
#app .apresentacao-wrapper-servicos > div #apresentacao .line {
  width: 5rem;
  height: 0.0625rem;
  background-color: #0babc5;
  margin-top: 1.875rem;
}
#app .servicos-wrapper-servicos {
  display: flex;
}
#app .servicos-wrapper-servicos .servicos {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  #app .servicos-wrapper-servicos .servicos {
    display: none;
  }
}
#app .servicos-wrapper-servicos .servicos .row {
  height: 33.125rem;
  padding: 0 8.125rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) {
  background-color: #fafafa;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper {
  max-width: 93.125rem;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper .left {
  position: absolute;
  width: 48.125rem;
  min-height: 12.5rem;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0.625rem 0.6875rem 1.0625rem rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  padding: 2.5rem 3.75rem;
  transition: 0.5s;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper .left .copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 12.5rem;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper .left .copy .title {
  font-size: 1.625rem;
  color: #0babc5;
  font-family: "OS-Regular";
  font-weight: bold;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper .left .copy .line {
  width: 5rem;
  height: 0.0625rem;
  background-color: #0babc5;
  margin-top: 0.625rem;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper .left .copy .text {
  font-size: 1.5rem;
  color: #707070;
  line-height: 1.5em;
  margin-top: 0.625rem;
  font-family: "OS-Regular";
  margin-top: 1.25rem;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper .left .copy .btn {
  width: 8.1875rem;
  height: 2.75rem;
  align-self: flex-end;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper .left .copy .btn {
    margin-bottom: 1.25rem;
  }
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper .left .copy .btn .txt {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper .right {
  width: 36.875rem;
  height: 18.125rem;
  background-color: #0babc5;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  padding: 0;
  box-shadow: none;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper .right .txt {
  margin: 0;
  font-weight: normal;
  color: #fff;
  font-size: 1.75rem;
  font-family: "OS-Bold";
  text-align: center;
  max-width: 90%;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(odd) .wrapper .right .line {
  width: 5rem;
  height: 0.0625rem;
  background-color: #fff;
  margin-top: 0.625rem;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) {
  background-color: #fff;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper {
  max-width: 93.125rem;
  width: 100%;
  height: 100%;
  margin: auto;
  position: absolute;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .left {
  width: 36.875rem;
  height: 18.125rem;
  background-color: #0babc5;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .left .txt {
  margin: 0;
  color: #fff;
  font-size: 1.75rem;
  font-family: "OS-Bold";
  text-align: center;
  max-width: 90%;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .left .line {
  width: 5rem;
  height: 0.0625rem;
  background-color: #fff;
  margin-top: 0.625rem;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .right {
  position: absolute;
  width: 48.125rem;
  min-height: 12.5rem;
  background-color: #fff;
  border-radius: 0.625rem;
  box-shadow: 0.625rem 0.6875rem 1.0625rem rgba(0, 0, 0, 0.1);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  padding: 2.5rem 3.75rem;
  transition: 0.5s;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .right .copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 12.5rem;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .right .copy .title {
  font-size: 1.625rem;
  color: #0babc5;
  font-family: "OS-Regular";
  font-weight: bold;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .right .copy .line {
  width: 5rem;
  height: 0.0625rem;
  background-color: #0babc5;
  margin-top: 0.625rem;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .right .copy .text {
  font-size: 1.5rem;
  color: #707070;
  line-height: 1.5em;
  margin-top: 0.625rem;
  font-family: "OS-Regular";
  margin-top: 1.25rem;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .right .copy a {
  align-self: flex-end;
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .right .copy .btn {
  width: 8.1875rem;
  height: 2.75rem;
  align-self: flex-end;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .right .copy .btn {
    margin-bottom: 1.25rem;
  }
}
#app .servicos-wrapper-servicos .servicos .row:nth-child(even) .wrapper .right .copy .btn .txt {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  font-weight: bold;
}
#app .servicos-wrapper-servicos .servicos-mobile {
  height: 100%;
  display: none;
  flex-direction: column;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  #app .servicos-wrapper-servicos .servicos-mobile {
    display: flex;
  }
}
#app .servicos-wrapper-servicos .servicos-mobile .row {
  height: auto;
  padding: 0 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .servicos-wrapper-servicos .servicos-mobile .row {
    padding: 2.5rem 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .servicos-wrapper-servicos .servicos-mobile .row {
    padding: 2.5rem 1.25rem;
  }
}
#app .servicos-wrapper-servicos .servicos-mobile .row:nth-child(even) {
  background-color: #f3f3f3;
}
#app .servicos-wrapper-servicos .servicos-mobile .row:nth-child(odd) {
  background-color: #fff;
}
#app .servicos-wrapper-servicos .servicos-mobile .row .wrapper {
  max-width: 93.125rem;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
}
#app .servicos-wrapper-servicos .servicos-mobile .row .wrapper .top {
  width: 100%;
  height: auto;
  transition: 0.5s;
  padding: 2.5rem 0;
  display: flex;
  flex-direction: column;
}
#app .servicos-wrapper-servicos .servicos-mobile .row .wrapper .top .copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#app .servicos-wrapper-servicos .servicos-mobile .row .wrapper .top .copy .title {
  font-size: 1.625rem;
  color: #0babc5;
  font-family: "OS-Regular";
  font-weight: bold;
  text-align: center;
}
#app .servicos-wrapper-servicos .servicos-mobile .row .wrapper .top .copy .line {
  width: 5rem;
  height: 0.0625rem;
  background-color: #0babc5;
  margin-top: 0.625rem;
}
#app .servicos-wrapper-servicos .servicos-mobile .row .wrapper .top .copy .text {
  font-size: 1.25rem;
  color: #707070;
  line-height: 1.5em;
  margin-top: 0.625rem;
  font-family: "OS-Regular";
  margin-top: 1.25rem;
  text-align: center;
}
#app .servicos-wrapper-servicos .servicos-mobile .row .wrapper .top .copy .btn {
  width: 8.1875rem;
  height: 2.75rem;
  margin-top: 3.125rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .servicos-wrapper-servicos .servicos-mobile .row .wrapper .top .copy .btn {
    margin-bottom: 1.25rem;
  }
}
#app .servicos-wrapper-servicos .servicos-mobile .row .wrapper .top .copy .btn .txt {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.875rem;
  font-weight: bold;
}
#app .servicos-wrapper-servicos .servicos-mobile .row .wrapper .bottom {
  width: 100%;
  height: auto;
  background-color: #0babc5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 0;
}
#app .servicos-wrapper-servicos .servicos-mobile .row .wrapper .bottom .txt {
  color: #fff;
  font-size: 1.25rem;
  font-family: "OS-Bold";
  text-align: center;
}
#app .slideshow-wrapper-servico {
  background-color: #fff;
  height: 23.96875rem;
  padding: 0 4.0625rem;
  background-position: bottom left;
  background-repeat: no-repeat;
  background-size: 30%;
}
@media only screen and (min-width: 1200px) {
  #app .slideshow-wrapper-servico {
    padding: 0 5rem;
    background-size: contain;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .slideshow-wrapper-servico {
    padding: 0 3.75rem;
    background-size: contain;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .slideshow-wrapper-servico {
    padding: 0 2.5rem;
    background-size: contain;
    background-position: top center;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .slideshow-wrapper-servico {
    padding: 0 1.25rem;
    background-size: contain;
    background-position: top center;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper-servico {
    padding: 0 1.25rem;
    background-size: cover;
    background-position: bottom center;
  }
}
#app .slideshow-wrapper-servico #slideshow {
  height: 100%;
  margin: auto;
  max-width: 87.5rem;
}
#app .slideshow-wrapper-servico #slideshow .slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
#app .slideshow-wrapper-servico #slideshow .slide .copy {
  position: relative;
  display: flex;
  flex-direction: column;
  width: auto;
  justify-content: space-between;
  align-items: flex-end;
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-servico #slideshow .slide .copy {
    align-items: center;
    text-align: center;
    top: 1.25rem;
    padding: 0;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
  }
}
#app .slideshow-wrapper-servico #slideshow .slide .copy .title {
  color: #0babc5;
  font-size: 2rem;
  text-align: right;
  font-family: "Dalmatins";
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-servico #slideshow .slide .copy .title {
    font-size: 1.75rem;
  }
}
@media only screen and (max-width: 599px) {
  #app .slideshow-wrapper-servico #slideshow .slide .copy .title {
    text-align: center;
  }
}
#app .info-wrapper-servico {
  display: flex;
  height: auto;
  padding: 0 8.125rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (min-width: 1200px) {
  #app .info-wrapper-servico {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .info-wrapper-servico {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .info-wrapper-servico {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .info-wrapper-servico {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .info-wrapper-servico {
    padding: 0 1.25rem;
    margin-top: 0;
  }
}
#app .info-wrapper-servico h1 {
  text-align: center;
  color: #0babc5;
  margin-bottom: 3.125rem;
}
#app .info-wrapper-servico .info {
  max-width: 87.5rem;
  width: 100%;
  margin: auto;
  height: auto;
  overflow: hidden;
}
#app .info-wrapper-servico .info .tabs {
  display: flex;
  width: 62.5rem;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 599px) {
  #app .info-wrapper-servico .info .tabs {
    width: 100%;
  }
}
@media screen and (max-width: 435px) {
  #app .info-wrapper-servico .info .tabs {
    flex-direction: column;
    width: 100%;
  }
}
#app .info-wrapper-servico .info .tabs .tab {
  width: 18.75rem;
  height: 6.25rem;
  border-radius: 1.25rem;
  background-color: #fff;
  border: 0.125rem solid #0babc5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  #app .info-wrapper-servico .info .tabs .tab {
    max-width: 15.625rem;
    width: 100%;
    margin: 0 0.625rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 435px) {
  #app .info-wrapper-servico .info .tabs .tab {
    margin-left: 0;
    margin-right: 0;
    width: 99%;
    max-width: unset;
  }
}
#app .info-wrapper-servico .info .tabs .tab:hover {
  background-color: #0babc5;
  border: 0.125rem solid #0babc5;
  transition: 0.5s;
}
#app .info-wrapper-servico .info .tabs .tab:hover .txt {
  color: #fff;
  transition: 0.5s;
}
#app .info-wrapper-servico .info .tabs .tab .txt {
  color: #0babc5;
  text-align: center;
  font-weight: bold;
  transition: 0.5;
  font-size: 1.5625rem;
  will-change: transform;
}
#app .info-wrapper-servico .info .topics {
  position: relative;
  min-height: 31.25rem;
  height: 31.25rem;
  margin: 3.125rem 0 4.375rem 0;
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  #app .info-wrapper-servico .info .topics {
    height: 31.25rem;
  }
}
@media screen and (max-width: 599px) {
  #app .info-wrapper-servico .info .topics {
    min-height: 31.25rem;
    height: unset;
  }
}
#app .info-wrapper-servico .info .topics .topic {
  position: absolute;
  opacity: 0;
  font-size: 1.375rem;
  line-height: 1.5em;
  text-align: justify;
  color: #707070;
}
#app .info-wrapper-servico .info .topics .topic.t0 {
  opacity: 1;
}
#app .slideshow-wrapper-academia {
  background-color: #fff;
  height: 23.96875rem;
  padding: 0 4.0625rem;
  background-position: 90% 40%;
  background-repeat: no-repeat;
  background-size: 35%;
}
@media only screen and (min-width: 1200px) {
  #app .slideshow-wrapper-academia {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .slideshow-wrapper-academia {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .slideshow-wrapper-academia {
    padding: 0 2.5rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .slideshow-wrapper-academia {
    padding: 0 1.25rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper-academia {
    padding: 0 1.25rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
#app .slideshow-wrapper-academia #slideshow {
  height: 100%;
  max-width: 75rem;
  margin: auto;
}
#app .slideshow-wrapper-academia #slideshow .slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-academia #slideshow .slide {
    justify-content: center;
    align-items: center;
  }
}
#app .slideshow-wrapper-academia #slideshow .slide .copy {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-academia #slideshow .slide .copy {
    align-items: center;
    text-align: center;
    top: 1.25rem;
    padding: 0;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    flex-direction: column-reverse;
  }
}
#app .slideshow-wrapper-academia #slideshow .slide .copy .line {
  width: 65%;
  height: 0.0625rem;
  background-color: rgba(11, 171, 197, 0.6);
}
#app .slideshow-wrapper-academia #slideshow .slide .copy .title {
  margin: 0;
  font-weight: normal;
  color: #0babc5;
  font-size: 2.5rem;
  text-align: right;
  font-family: "Dalmatins";
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-academia #slideshow .slide .copy .title {
    font-size: 1.75rem;
  }
}
#app .apresentacao-wrapper-academia {
  background-color: #fafafa;
  height: 33.4375rem;
  padding: 0 4.0625rem;
}
@media only screen and (min-width: 1200px) {
  #app .apresentacao-wrapper-academia {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .apresentacao-wrapper-academia {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .apresentacao-wrapper-academia {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .apresentacao-wrapper-academia {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .apresentacao-wrapper-academia {
    padding: 0 1.25rem;
  }
}
#app .apresentacao-wrapper-academia > div {
  max-width: 93.75rem;
  margin: auto;
  width: 100%;
  position: relative;
  height: 100%;
}
#app .apresentacao-wrapper-academia > div .img {
  width: 20%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 599px) {
  #app .apresentacao-wrapper-academia > div .img {
    display: none;
  }
}
#app .apresentacao-wrapper-academia > div .img > div {
  width: 100%;
  height: 80%;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
}
#app .apresentacao-wrapper-academia > div #apresentacao {
  height: 100%;
  margin: 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#app .apresentacao-wrapper-academia > div #apresentacao .title {
  margin: 0;
  font-weight: normal;
  color: #0babc5;
  font-size: 2.125rem;
  margin-bottom: 0.625rem;
}
#app .apresentacao-wrapper-academia > div #apresentacao .line {
  width: 4.375rem;
  height: 0.0625rem;
  background-color: #0babc5;
  margin-bottom: 1.875rem;
}
#app .apresentacao-wrapper-academia > div #apresentacao .copy {
  color: #8e8e8e;
  font-size: 1.375rem;
  max-width: 47.1875rem;
  width: 100%;
  text-align: justify;
  text-align-last: center;
}
#app .formacoes-wrapper-formacoes {
  display: flex;
  height: auto;
  padding: 0 4.0625rem;
}
@media only screen and (min-width: 1200px) {
  #app .formacoes-wrapper-formacoes {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .formacoes-wrapper-formacoes {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .formacoes-wrapper-formacoes {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .formacoes-wrapper-formacoes {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper-formacoes {
    height: auto;
    padding: 0 1.25rem;
  }
}
#app .formacoes-wrapper-formacoes .formacoes {
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 93.75rem;
  margin: auto;
  position: relative;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper {
  display: flex;
  max-width: 75rem;
  width: 100%;
  justify-content: space-between;
  height: 55%;
  flex-wrap: wrap;
  margin: auto;
  margin-bottom: 5rem;
}
@media only screen and (min-width: 300px) and (max-width: 991px) {
  #app .formacoes-wrapper-formacoes .formacoes .cards-wrapper {
    flex-direction: column;
    height: 100%;
    align-items: center;
    margin-bottom: 2.5rem;
  }
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card {
  width: 31.25rem;
  height: 33.125rem;
  background-color: #fff;
  border-radius: 2.6875rem;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: 0.5s;
  margin: 3.125rem 0.625rem 3.125rem 0.625rem;
  box-shadow: 0.1875rem 0.1875rem 0.9375rem rgba(0, 0, 0, 0.2);
  position: relative;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card {
    width: 90%;
  }
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card.is-visible {
  display: flex;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-img {
  background-color: #fff;
  border-radius: 2.6875rem;
  width: 100%;
  height: 70%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-img img {
  height: 100%;
  transform: scale(1.3);
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content {
  display: flex;
  flex-direction: column;
  padding: 1.875rem 1.875rem;
  height: 30%;
  width: 88%;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content {
    width: 90%;
  }
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-header {
  display: flex;
  justify-content: space-between;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-header .card-type {
  text-transform: uppercase;
  color: #0babc5;
  font-family: "Arial";
  font-size: 1.25rem;
  font-weight: 600;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-header .card-status {
  width: 12.5rem;
  border: 0.0625rem solid #0babc5;
  border-radius: 1.25rem;
  text-transform: uppercase;
  font-family: "Arial";
  align-items: center;
  justify-content: center;
  display: none;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-header .card-status.is-full {
  background-color: #fff;
  color: #0babc5;
  display: flex;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-header .card-status.is-full span {
  display: none;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-header .card-status.is-full span.is-full {
  display: block;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-header .card-status.has-vagas {
  background-color: #0babc5;
  color: #fff;
  display: flex;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-header .card-status.has-vagas span {
  display: none;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-header .card-status.has-vagas span.has-vagas {
  display: block;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-body {
  display: flex;
  justify-content: space-between;
  margin-top: 0.9375rem;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-body .card-title {
  margin: 0;
  font-family: "Arial";
  color: #707070;
  font-weight: bold;
  font-size: 1.375rem;
  max-width: 65%;
  width: 100%;
  height: 4.75rem;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-body .card-date {
  display: flex;
  justify-content: space-between;
  width: 40%;
  text-align: right;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-body .card-date .txt {
  width: 100%;
  margin-right: 0.625rem;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card .card-content .card-body .card-date .icon {
  width: 3.25rem;
  height: 2.5625rem;
  background-size: contain;
  background-repeat: no-repeat;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card a {
  position: absolute;
  width: 13.75rem;
  height: 3.4375rem;
  bottom: -1.71875rem;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card a .card-cta {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0babc5;
  border: 0.0625rem solid #0babc5;
  border-radius: 1.25rem;
  transition: 0.5s;
  cursor: pointer;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card a .card-cta .txt {
  color: #fff;
  font-size: 1.375rem;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card a .card-cta:hover {
  background-color: #fff;
}
#app .formacoes-wrapper-formacoes .formacoes .cards-wrapper .card a .card-cta:hover .txt {
  color: #0babc5;
}
#app .info-wrapper-curso {
  display: flex;
  height: auto;
  padding: 0 8.125rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-top: 6.25rem;
}
@media only screen and (min-width: 1200px) {
  #app .info-wrapper-curso {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .info-wrapper-curso {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .info-wrapper-curso {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .info-wrapper-curso {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .info-wrapper-curso {
    padding: 0 1.25rem;
  }
}
#app .info-wrapper-curso h1 {
  text-align: center;
  color: #0babc5;
  margin-bottom: 3.125rem;
}
#app .info-wrapper-curso .info {
  max-width: 87.5rem;
  width: 100%;
  margin: auto;
}
#app .info-wrapper-curso .info .tabs {
  display: flex;
  width: 62.5rem;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 599px) {
  #app .info-wrapper-curso .info .tabs {
    width: 100%;
  }
}
@media screen and (max-width: 435px) {
  #app .info-wrapper-curso .info .tabs {
    flex-direction: column;
    width: 100%;
  }
}
#app .info-wrapper-curso .info .tabs .tab {
  margin: 0;
  font-weight: bold;
  width: 18.75rem;
  height: 6.25rem;
  border-radius: 1.25rem;
  background-color: #fff;
  border: 0.125rem solid #0babc5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  #app .info-wrapper-curso .info .tabs .tab {
    max-width: 15.625rem;
    width: 100%;
    margin: 0 0.625rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 435px) {
  #app .info-wrapper-curso .info .tabs .tab {
    margin-left: 0;
    margin-right: 0;
    width: 99%;
    max-width: unset;
  }
}
#app .info-wrapper-curso .info .tabs .tab:hover {
  background-color: #0babc5;
  border: 0.125rem solid #0babc5;
  transition: 0.5s;
}
#app .info-wrapper-curso .info .tabs .tab:hover .txt {
  color: #fff;
  transition: 0.5s;
}
#app .info-wrapper-curso .info .tabs .tab .txt {
  color: #0babc5;
  text-align: center;
  font-weight: bold;
  transition: 0.5;
  font-size: 1.5625rem;
  will-change: transform;
}
#app .info-wrapper-curso .info .topics {
  position: relative;
  min-height: 6.125rem;
  height: 31.25rem;
  margin: 3.125rem 0;
  overflow: hidden;
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  #app .info-wrapper-curso .info .topics {
    height: 31.25rem;
  }
}
@media screen and (max-width: 599px) {
  #app .info-wrapper-curso .info .topics {
    min-height: 31.25rem;
    height: unset;
  }
}
#app .info-wrapper-curso .info .topics .topic {
  position: absolute;
  opacity: 0;
  font-size: 1.25rem;
  line-height: 1.5em;
  text-align: justify;
  color: #707070;
  font-family: "OS-Regular" !important;
}
#app .info-wrapper-curso .info .topics .topic.t0 {
  opacity: 1;
}
#app .info-wrapper-curso .info .topics .topic.t2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  flex-direction: column;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.875rem;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .intro-text {
  margin-bottom: 0.9375rem;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .title {
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0babc5;
  margin-bottom: 0.625rem;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .subtitle {
  width: 100%;
  font-size: 1.375rem;
  font-weight: bold;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .error {
  color: red;
  margin-bottom: 0.9375rem;
  height: 1.25rem;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .check {
  display: flex;
  margin-top: 1.875rem;
  flex-direction: column;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .check label a {
  color: #0babc5;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .check input {
  height: 1.875rem;
  margin: 0;
  margin-right: 0.625rem;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input {
  align-self: flex-start;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input.col25 {
  width: 24%;
}
@media only screen and (max-width: 599px) {
  #app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input.col25 {
    width: 99%;
  }
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input.col33 {
  width: 32%;
}
@media only screen and (max-width: 599px) {
  #app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input.col33 {
    width: 99%;
  }
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input.col50 {
  width: 49%;
}
@media only screen and (max-width: 599px) {
  #app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input.col50 {
    width: 99%;
  }
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input.col66 {
  width: 65%;
}
@media only screen and (max-width: 599px) {
  #app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input.col66 {
    width: 99%;
  }
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input.col75 {
  width: 74%;
}
@media only screen and (max-width: 599px) {
  #app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input.col75 {
    width: 99%;
  }
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input.col100 {
  width: 100%;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 599px) {
  #app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller label {
    text-align: left;
    line-height: 1em;
    margin-bottom: 0.3125rem;
  }
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller textarea {
  height: 18.75rem;
  border-radius: 0.625rem;
  border: 0.0625rem solid #cbcbcb;
  overflow: unset;
  font-family: "OS-Regular";
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller textarea:focus {
  outline: none;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller input {
  height: 1.875rem;
  border-radius: 0.625rem;
  border: 0.0625rem solid #cbcbcb;
  overflow: unset;
  font-family: "OS-Regular";
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller input:focus {
  outline: none;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller input[type=file] {
  height: 3.125rem;
  border-radius: 0;
  border: none;
  overflow: unset;
  font-family: "OS-Regular";
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller input[type=file]:focus {
  outline: none;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral {
  width: 99.5%;
  position: relative;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral select {
  display: none;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-selected {
  background-color: DodgerBlue;
  width: 100%;
  height: 3.125rem;
  border-radius: 0.625rem;
  border: 0.125rem solid #0babc5;
  font-size: 1.4375rem;
  color: #0babc5;
  background: url(../../img/arrow-select.svg) no-repeat right #fff;
  -webkit-appearance: none;
  background-position-x: 98.5%;
  cursor: pointer;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-selected > div {
  margin-left: 0.625rem;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-selected:after {
  position: absolute;
  content: "";
  top: 0.875rem;
  right: 0.625rem;
  width: 0;
  height: 0;
  border: 0.375rem solid transparent;
  border-color: #fff transparent transparent transparent;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 0.4375rem;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: auto;
  border-radius: 0.625rem;
  border: 0.125rem solid #0babc5;
  background-color: #fff;
  font-size: 1.4375rem;
  color: #707070;
  font-weight: bold;
  -webkit-appearance: none;
  background-position-x: 98.5%;
  cursor: pointer;
  margin-top: 0.9375rem;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-items div {
  height: 1.625rem;
  padding: 0.625rem;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-items div:first-child {
  border-radius: 0.625rem 0.625rem 0 0;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-items div:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0);
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-items div:nth-child(even) {
  background-color: rgba(147, 217, 229, 0.12);
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-items div:last-child {
  border-radius: 0 0 0.625rem 0.625rem;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-items.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .select-referral .select-items.select-hide {
  display: none;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .cta {
  width: 15.625rem;
  height: 3.125rem;
  border-radius: 0.625rem;
  background-color: #0babc5;
  border: 0.125rem solid #0babc5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
}
@media screen and (max-width: 599px) {
  #app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .cta {
    width: 12.5rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 435px) {
  #app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .cta {
    width: 99%;
  }
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .cta:hover {
  background-color: #fff;
  border: 0.125rem solid #0babc5;
  transition: 0.5s;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .cta:hover .txt {
  color: #0babc5;
  transition: 0.5s;
}
#app .info-wrapper-curso .info .topics .topic.t2 .form-wrapper .input .form-controller .cta .txt {
  color: #fff;
  text-align: center;
  font-weight: bold;
  transition: 0.5;
}
#app .slideshow-wrap-blog {
  background-color: #fff;
  height: 23.96875rem;
  padding: 0 4.0625rem;
  background-position: 90% 40%;
  background-repeat: no-repeat;
  background-size: 35%;
}
@media only screen and (min-width: 1200px) {
  #app .slideshow-wrap-blog {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .slideshow-wrap-blog {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .slideshow-wrap-blog {
    padding: 0 2.5rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .slideshow-wrap-blog {
    padding: 0 1.25rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrap-blog {
    padding: 0 1.25rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
#app .slideshow-wrap-blog #slideshow {
  height: 100%;
  max-width: 75rem;
  margin: auto;
}
#app .slideshow-wrap-blog #slideshow .slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrap-blog #slideshow .slide {
    justify-content: center;
    align-items: center;
  }
}
#app .slideshow-wrap-blog #slideshow .slide .copy {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrap-blog #slideshow .slide .copy {
    align-items: center;
    text-align: center;
    top: 1.25rem;
    padding: 0;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    flex-direction: column-reverse;
  }
}
#app .slideshow-wrap-blog #slideshow .slide .copy .line {
  width: 65%;
  height: 0.0625rem;
  background-color: rgba(11, 171, 197, 0.6);
}
#app .slideshow-wrap-blog #slideshow .slide .copy .title {
  margin: 0;
  font-weight: normal;
  color: rgba(11, 171, 197, 0.6);
  font-size: 2.5rem;
  text-align: right;
  font-family: "Dalmatins";
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrap-blog #slideshow .slide .copy .title {
    font-size: 1.75rem;
  }
}
#app .apresentacao-wrapper-blog {
  background-color: #fff;
  height: 15.625rem;
  padding: 0 4.0625rem;
}
@media only screen and (min-width: 1200px) {
  #app .apresentacao-wrapper-blog {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .apresentacao-wrapper-blog {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .apresentacao-wrapper-blog {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .apresentacao-wrapper-blog {
    padding: 0 1.25rem;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .apresentacao-wrapper-blog {
    padding: 0 1.25rem;
  }
}
#app .apresentacao-wrapper-blog > div {
  max-width: 93.75rem;
  margin: auto;
  width: 100%;
  position: relative;
  height: 100%;
}
#app .apresentacao-wrapper-blog > div .imgs {
  height: 100%;
  position: absolute;
  left: -15%;
}
@media only screen and (max-width: 991px) {
  #app .apresentacao-wrapper-blog > div .imgs {
    opacity: 0.2;
  }
}
@media only screen and (max-width: 767px) {
  #app .apresentacao-wrapper-blog > div .imgs {
    display: none;
  }
}
#app .apresentacao-wrapper-blog > div .imgs img {
  height: 100%;
}
#app .apresentacao-wrapper-blog > div #apresentacao {
  height: 100%;
  margin: 0 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#app .apresentacao-wrapper-blog > div #apresentacao .copy {
  color: #8e8e8e;
  font-size: 1.5rem;
  max-width: 58.4375rem;
  width: 100%;
  text-align: justify;
  text-align-last: center;
}
#app .apresentacao-wrapper-blog > div #apresentacao .line {
  width: 5rem;
  height: 0.0625rem;
  background-color: #0babc5;
  margin-top: 1.875rem;
}
#app .blog-wrapper {
  background-color: #fff;
  height: auto;
  padding: 0 4.0625rem;
  display: flex;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  #app .blog-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .blog-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (max-width: 1024px) {
  #app .blog-wrapper {
    flex-direction: column-reverse;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .blog-wrapper {
    padding: 0 2.5rem;
    margin-top: 3.125rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .blog-wrapper {
    padding: 0 1.25rem;
    margin-top: 3.125rem;
  }
}
@media only screen and (max-width: 599px) {
  #app .blog-wrapper {
    padding: 0 1.25rem;
    margin-top: 3.125rem;
  }
}
#app .blog-wrapper .artigos-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  #app .blog-wrapper .artigos-wrapper {
    width: 100%;
  }
}
#app .blog-wrapper .artigos-wrapper.filtered-inclusive .artigos {
  display: none;
}
#app .blog-wrapper .artigos-wrapper .artigos {
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 9.375rem auto;
  max-width: 87.5rem;
  width: 100%;
  max-height: 18.75rem;
}
@media only screen and (max-width: 767px) {
  #app .blog-wrapper .artigos-wrapper .artigos {
    flex-direction: column-reverse;
    align-items: center;
    max-height: unset;
  }
}
#app .blog-wrapper .artigos-wrapper .artigos.selected {
  display: flex;
}
#app .blog-wrapper .artigos-wrapper .artigos.hidden {
  display: none;
}
#app .blog-wrapper .artigos-wrapper .artigos .container {
  max-width: 50rem;
  width: 100%;
}
@media only screen and (max-width: 599px) {
  #app .blog-wrapper .artigos-wrapper .artigos .container {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  #app .blog-wrapper .artigos-wrapper .artigos .container > div {
    text-align: center;
  }
}
#app .blog-wrapper .artigos-wrapper .artigos .container .title-topic {
  font-size: 2.125rem;
}
@media only screen and (max-width: 767px) {
  #app .blog-wrapper .artigos-wrapper .artigos .container .title-topic {
    text-align: center;
  }
}
#app .blog-wrapper .artigos-wrapper .artigos .container .date-topic {
  font-size: 1.125rem;
  margin-top: 0.625rem;
}
@media only screen and (max-width: 767px) {
  #app .blog-wrapper .artigos-wrapper .artigos .container .date-topic {
    text-align: center;
  }
}
#app .blog-wrapper .artigos-wrapper .artigos .container .copy-topic {
  font-size: 1.5rem;
  margin-top: 1.25rem;
  text-align: left;
  text-align-last: left;
}
#app .blog-wrapper .artigos-wrapper .artigos a {
  max-width: 50%;
}
@media only screen and (max-width: 767px) {
  #app .blog-wrapper .artigos-wrapper .artigos a {
    margin-bottom: 3.125rem;
    max-height: 300px;
    max-width: 100%;
    width: 100%;
  }
}
#app .blog-wrapper .artigos-wrapper .artigos a .img {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 767px) {
  #app .blog-wrapper .artigos-wrapper .artigos a .img {
    width: 100%;
    height: unset;
  }
}
#app .blog-wrapper .artigos-wrapper .artigos a .img img {
  height: 100%;
}
@media only screen and (max-width: 767px) {
  #app .blog-wrapper .artigos-wrapper .artigos a .img img {
    width: 100%;
    height: 100%;
  }
}
#app .blog-wrapper .artigos-wrapper .filter-no-item {
  display: none;
}
#app .blog-wrapper .artigos-wrapper .filter-no-item.filter-no-item-active {
  display: block;
  width: 100%;
  background: rgba(11, 171, 197, 0.6);
  color: #000;
  padding: 1em 1.5em;
  margin: 0.75%;
  margin-top: 12.5rem;
}
#app .blog-wrapper .artigos-wrapper .filter-mask-active {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  animation: filterMask 1s ease-in-out both;
  height: 100%;
}
@-webkit-keyframes filterMask {
  0% {
    background: transparent;
  }
  50% {
    background: #fff;
  }
  100% {
    background: transparent;
  }
}
@keyframes filterMask {
  0% {
    background: transparent;
  }
  50% {
    background: #fff;
  }
  100% {
    background: transparent;
  }
}
#app .blog-wrapper .artigos-wrapper #loadMore {
  width: 13.375rem;
  height: 2.5rem;
  border: 0.125rem solid #0babc5;
  display: flex;
  transition: 0.5s;
  justify-content: center;
  border-radius: 0.625rem;
  cursor: pointer;
  align-self: center;
  margin-bottom: 5rem;
}
#app .blog-wrapper .artigos-wrapper #loadMore.hidden {
  display: none;
}
#app .blog-wrapper .artigos-wrapper #loadMore:hover {
  background-color: #0babc5;
}
#app .blog-wrapper .artigos-wrapper #loadMore:hover .txt {
  color: #fff;
}
#app .blog-wrapper .artigos-wrapper #loadMore .txt {
  font-family: "OS-Regular";
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}
#app .blog-wrapper #categories {
  width: 20%;
  display: flex;
  flex-direction: column;
  padding-left: 5rem;
  height: 400px;
  margin: 9.375rem auto;
}
@media only screen and (max-width: 1024px) {
  #app .blog-wrapper #categories {
    height: auto;
    margin: 10px auto;
    width: 100%;
    padding: 0;
    align-items: center;
  }
}
#app .blog-wrapper #categories > div {
  font-size: 2.5rem;
  margin-bottom: 1.875rem;
}
#app .blog-wrapper #categories label {
  display: flex;
  align-items: center;
  height: 3.125rem;
}
@media only screen and (max-width: 1024px) {
  #app .blog-wrapper #categories label {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
#app .blog-wrapper #categories label input {
  margin: 0;
  margin-right: 1.25rem;
}
#app .post-wrapper {
  background-color: #fff;
  height: auto;
  padding: 0 4.0625rem;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  #app .post-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .post-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .post-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .post-wrapper {
    padding: 0 1.25rem;
  }
}
@media only screen and (max-width: 599px) {
  #app .post-wrapper {
    padding: 0 1.25rem;
  }
}
#app .post-wrapper .artigo {
  margin: auto;
  display: flex;
  height: 100%;
  align-items: center;
  margin-top: 3.125rem;
  max-width: 87.5rem;
  width: 100%;
  flex-direction: column;
}
#app .post-wrapper .artigo .container {
  max-width: 56.25rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 599px) {
  #app .post-wrapper .artigo .container {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  #app .post-wrapper .artigo .container > div {
    text-align: center;
  }
}
#app .post-wrapper .artigo .container .title-topic {
  font-size: 2.125rem;
  color: #0babc5;
  margin-top: 6.25rem;
}
#app .post-wrapper .artigo .container .date-topic {
  font-size: 1.25rem;
  margin-top: 0.625rem;
  color: #707070;
}
#app .post-wrapper .artigo .container .img {
  align-self: center;
  margin: 4.375rem 0;
  width: 100%;
}
#app .post-wrapper .artigo .container .img img {
  width: 100%;
}
#app .post-wrapper .artigo .container .copy-topic {
  font-size: 1.5rem;
  margin-top: 1.25rem;
  color: #707070;
  text-align: justify;
  text-align-last: left;
  margin-bottom: 2.5rem;
}
#app .post-wrapper .artigo .container .tags-topic {
  font-size: 1.5rem;
  margin: 2.5rem 0;
  color: #707070;
  text-align: justify;
  text-align-last: left;
}
#app .post-wrapper .artigo .container .fb-share-button {
  width: 100px;
  height: 35px;
  background-color: #1877f2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8.75rem;
}
#app .post-wrapper .artigo .container .fb-share-button img {
  width: 16px !important;
  height: 16px;
  margin: 0 !important;
  margin-right: 10px !important;
}
#app .post-wrapper .artigo .container .fb-share-button a {
  color: #fff;
  font-size: 16px;
}
#app .slideshow-wrapper-contactos {
  background-color: #fff;
  height: 23.96875rem;
  padding: 0 4.0625rem;
  background-position: 90% 40%;
  background-repeat: no-repeat;
  background-size: 35%;
}
@media only screen and (min-width: 1200px) {
  #app .slideshow-wrapper-contactos {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .slideshow-wrapper-contactos {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .slideshow-wrapper-contactos {
    padding: 0 2.5rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .slideshow-wrapper-contactos {
    padding: 0 1.25rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .slideshow-wrapper-contactos {
    padding: 0 1.25rem;
    background-size: cover;
    background-position: 50% 100px;
  }
}
#app .slideshow-wrapper-contactos #slideshow {
  height: 100%;
  max-width: 93.75rem;
  margin: auto;
}
#app .slideshow-wrapper-contactos #slideshow .slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-end;
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-contactos #slideshow .slide {
    justify-content: center;
    align-items: center;
  }
}
#app .slideshow-wrapper-contactos #slideshow .slide .copy {
  position: relative;
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-contactos #slideshow .slide .copy {
    align-items: center;
    text-align: center;
    top: 1.25rem;
    padding: 0;
    max-width: 100%;
    background-color: rgba(255, 255, 255, 0.6);
    flex-direction: column-reverse;
  }
}
#app .slideshow-wrapper-contactos #slideshow .slide .copy .line {
  width: 70%;
  height: 0.0625rem;
  background-color: rgba(11, 171, 197, 0.6);
}
#app .slideshow-wrapper-contactos #slideshow .slide .copy .title {
  margin: 0;
  font-weight: normal;
  color: rgba(11, 171, 197, 0.6);
  font-size: 2.5rem;
  text-align: right;
  font-family: "Dalmatins";
}
@media only screen and (max-width: 991px) {
  #app .slideshow-wrapper-contactos #slideshow .slide .copy .title {
    font-size: 1.75rem;
  }
}
#app .formulario-contactos {
  padding: 0 8.125rem;
  height: 53.125rem;
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
@media only screen and (min-width: 1200px) and (max-width: 1919px) {
  #app .formulario-contactos {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .formulario-contactos {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .formulario-contactos {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .formulario-contactos {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  #app .formulario-contactos {
    padding: 0 1.25rem;
    height: auto;
  }
}
#app .formulario-contactos .error {
  color: red;
  height: 1.25rem;
}
#app .formulario-contactos .title {
  margin: 0;
  margin-top: 3.125rem;
  font-weight: normal;
  color: #707070;
  font-size: 2.125rem;
  margin-bottom: 0.625rem;
  text-align: center;
}
#app .formulario-contactos .line {
  width: 15.625rem;
  height: 0.0625rem;
  background-color: #0babc5;
  margin-bottom: 1.875rem;
}
@media only screen and (max-width: 599px) {
  #app .formulario-contactos .line {
    width: 6.25rem;
  }
}
#app .formulario-contactos .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 87.5rem;
  margin-top: 1.25rem;
}
@media only screen and (max-width: 767px) {
  #app .formulario-contactos .content {
    flex-direction: column;
    align-items: center;
  }
}
#app .formulario-contactos .content > div {
  width: 50%;
  height: 100%;
  display: flex;
}
@media only screen and (max-width: 767px) {
  #app .formulario-contactos .content > div {
    justify-content: center;
    width: 100%;
  }
}
#app .formulario-contactos .content .left {
  width: 45%;
  width: 45%;
  justify-content: flex-start;
}
@media only screen and (max-width: 767px) {
  #app .formulario-contactos .content .left {
    margin-top: 3.125rem;
  }
}
@media only screen and (max-width: 599px) {
  #app .formulario-contactos .content .left {
    display: none;
  }
}
#app .formulario-contactos .content .left .caderno {
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 70%;
}
@media only screen and (max-width: 767px) {
  #app .formulario-contactos .content .left .caderno {
    width: 100%;
    height: 100%;
  }
}
#app .formulario-contactos .content .right {
  justify-content: flex-end;
}
#app .formulario-contactos .content .right .form-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
#app .formulario-contactos .content .right .form-wrapper .form-title {
  font-size: 2rem;
  color: #707070;
  margin-bottom: 1.25rem;
  font-weight: 400;
}
#app .formulario-contactos .content .right .form-wrapper .form {
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 599px) {
  #app .formulario-contactos .content .right .form-wrapper .form {
    flex-wrap: unset;
    flex-direction: column;
  }
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group {
  width: 100%;
  height: 4.6875rem;
  margin-bottom: 0.9375rem;
  display: flex;
  flex-direction: column;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group .check {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group .check label {
  font-size: 1.125rem;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group .check label a {
  color: #0babc5;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group .check input {
  width: 1.875rem;
  height: 1.875rem;
  margin: 0;
  margin-right: 0.625rem;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref {
  width: 99.5%;
  position: relative;
  flex-direction: column-reverse;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref select {
  display: none;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-selected {
  background-color: DodgerBlue;
  width: 99.5%;
  height: 99%;
  border-radius: 1.25rem;
  border: 0.125rem solid #0babc5;
  font-size: 1.25rem;
  color: #707070;
  background: url(../../img/arrow-select.svg) no-repeat right #fff;
  -webkit-appearance: none;
  background-position-x: 98.5%;
  cursor: pointer;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 599px) {
  #app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-selected {
    width: 99%;
  }
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-selected > div {
  margin-left: 0.625rem;
  max-width: 85%;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-selected:after {
  position: absolute;
  content: "";
  top: 0.875rem;
  right: 0.625rem;
  width: 0;
  height: 0;
  border: 0.375rem solid transparent;
  border-color: #fff transparent transparent transparent;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 0.4375rem;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-items {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  border: 0.125rem solid #0babc5;
  background-color: #fff;
  font-size: 1.25rem;
  color: #707070;
  font-weight: bold;
  -webkit-appearance: none;
  background-position-x: 98.5%;
  cursor: pointer;
  margin-top: -0.625rem;
}
@media screen and (max-width: 599px) {
  #app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-items {
    margin-top: -0.625rem;
  }
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-items div {
  height: 1.625rem;
  padding: 0.625rem;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-items div:first-child {
  border-radius: 1.25rem 1.25rem 0 0;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-items div:nth-child(odd) {
  background-color: rgba(255, 255, 255, 0);
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-items div:nth-child(even) {
  background-color: rgba(147, 217, 229, 0.12);
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-items div:last-child {
  border-radius: 0 0 1.25rem 1.25rem;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-items div:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-items.same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.select-ref .select-items.select-hide {
  display: none;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group:last-child {
  margin: 0;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.col50 {
  width: 49.5%;
}
@media only screen and (max-width: 599px) {
  #app .formulario-contactos .content .right .form-wrapper .form .form-group.col50 {
    width: 100%;
  }
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group.textarea, #app .formulario-contactos .content .right .form-wrapper .form .form-group.cta {
  height: auto;
}
@media only screen and (max-width: 599px) {
  #app .formulario-contactos .content .right .form-wrapper .form .form-group.textarea, #app .formulario-contactos .content .right .form-wrapper .form .form-group.cta {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group input {
  width: 95.7%;
  height: 95%;
  border: 1px solid #0babc5;
  border-radius: 1.25rem;
  padding-left: 3%;
  font-size: 1.25rem;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group input:focus {
  outline: none;
}
@media only screen and (max-width: 599px) {
  #app .formulario-contactos .content .right .form-wrapper .form .form-group input {
    width: 96%;
  }
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group textarea {
  width: 96%;
  height: 12.5rem;
  border: 1px solid #0babc5;
  border-radius: 1.25rem;
  padding: 2%;
  font-size: 1.25rem;
  font-family: "OS-Regular";
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group textarea:focus {
  outline: none;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group .submit-msg {
  width: 16.25rem;
  height: 3.75rem;
  border-radius: 1.25rem;
  border: none;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  background-color: #0babc5;
  font-size: 1.25rem;
  transition: 0.5s;
  border: 1px solid #0babc5;
  cursor: pointer;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group .submit-msg:hover {
  background-color: #fff;
  border: 1px solid #0babc5;
  transition: 0.5s;
  color: #0babc5;
}
#app .formulario-contactos .content .right .form-wrapper .form .form-group .submit-msg:focus {
  outline: none;
}
#app .contacto-wrapper-contactos {
  background-color: #fff;
  height: 46.25rem;
  padding: 0 4.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (min-width: 1200px) {
  #app .contacto-wrapper-contactos {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .contacto-wrapper-contactos {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .contacto-wrapper-contactos {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .contacto-wrapper-contactos {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper-contactos {
    height: auto;
    padding: 0 1.25rem;
  }
}
#app .contacto-wrapper-contactos #contacto {
  height: 80%;
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  align-items: center;
  max-width: 93.75rem;
  width: 100%;
  border-radius: 1.25rem;
  box-shadow: 0.4375rem 0.4375rem 1.25rem rgba(0, 0, 0, 0.2);
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .contacto-wrapper-contactos #contacto {
    max-width: 100%;
    margin: 3.125rem 0;
    box-shadow: none;
    border-radius: 0;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper-contactos #contacto {
    flex-direction: column;
    margin: 0 1.25rem;
    max-width: 100%;
    box-shadow: none;
    border-radius: 0;
  }
}
#app .contacto-wrapper-contactos #contacto > div {
  flex: 1 1 auto;
  width: 40%;
}
@media only screen and (min-width: 300px) and (max-width: 767px) {
  #app .contacto-wrapper-contactos #contacto > div {
    width: 100%;
  }
}
#app .contacto-wrapper-contactos #contacto .left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 4.375rem;
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .contacto-wrapper-contactos #contacto .left {
    margin: 0;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper-contactos #contacto .left {
    height: 100%;
    align-items: center;
    margin: 0;
  }
}
#app .contacto-wrapper-contactos #contacto .left .title {
  color: #0babc5;
  margin-bottom: 0.625rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper-contactos #contacto .left .title {
    margin-top: 1.25rem;
  }
}
#app .contacto-wrapper-contactos #contacto .left .line {
  width: 4.9375rem;
  height: 0.0625rem;
  background-color: #0babc5;
  margin-bottom: 0.4375rem;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper-contactos #contacto .left .line {
    margin-bottom: 1.875rem;
  }
}
#app .contacto-wrapper-contactos #contacto .left .copy {
  font-size: 1.25rem;
  color: #95989a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "OS-Regular";
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper-contactos #contacto .left .copy {
    height: 100%;
    width: 100%;
  }
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic {
  display: flex;
  position: relative;
  margin: 0.9375rem 0;
  flex-direction: column;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper-contactos #contacto .left .copy .topic {
    margin-bottom: 1.25rem;
  }
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic .icon {
  width: 1.6875rem;
  height: 1.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.625rem 0.625rem 0.625rem 0;
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic .icon img {
  width: 100%;
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic.conts > div {
  display: flex;
  align-items: center;
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic.conts .txt {
  color: #95989a;
  font-size: 1.375rem;
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic.conts .txt.bold {
  font-size: 1.75rem;
  color: #707070;
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic.conts .txt p {
  margin: 0;
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic.conts .txt .link {
  color: #95989a;
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic .txt {
  color: #95989a;
  font-size: 1.375rem;
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic .txt.bold {
  font-size: 1.75rem;
  color: #707070;
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic .txt p {
  margin: 0;
}
#app .contacto-wrapper-contactos #contacto .left .copy .topic .txt .link {
  color: #95989a;
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper-contactos #contacto .left .cta {
    margin-bottom: 1.25rem;
  }
}
#app .contacto-wrapper-contactos #contacto .left .cta .btn {
  width: 12.625rem;
  height: 4.1875rem;
  border-radius: 1.25rem;
}
#app .contacto-wrapper-contactos #contacto .left .cta .btn .txt {
  font-family: "OS-Regular";
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
}
#app .contacto-wrapper-contactos #contacto .right {
  height: 60%;
  margin-right: 4.375rem;
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .contacto-wrapper-contactos #contacto .right {
    margin: 0;
  }
}
@media only screen and (min-width: 300px) and (max-width: 599px) {
  #app .contacto-wrapper-contactos #contacto .right {
    margin: 0;
    margin: 2.5rem 0;
  }
}
#app .perguntas-wrapper {
  background-color: #fff;
  height: auto;
  padding: 0 4.0625rem;
}
@media only screen and (min-width: 1200px) {
  #app .perguntas-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .perguntas-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .perguntas-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .perguntas-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  #app .perguntas-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
#app .perguntas-wrapper h1 {
  margin-top: 6.25rem;
  text-align: center;
  color: #0babc5;
  font-size: 2.625rem;
}
#app .perguntas-wrapper .perguntas {
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 3.125rem auto;
  max-width: 87.5rem;
  width: 100%;
  flex-direction: column;
}
@media only screen and (max-width: 991px) {
  #app .perguntas-wrapper .perguntas {
    flex-direction: column;
  }
}
@media only screen and (max-width: 991px) {
  #app .perguntas-wrapper .perguntas > div {
    width: 100%;
  }
}
#app .perguntas-wrapper .perguntas .left {
  display: flex;
  flex-direction: column;
}
#app .perguntas-wrapper .perguntas .left .tabs {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 599px) {
  #app .perguntas-wrapper .perguntas .left .tabs {
    width: 100%;
  }
}
@media screen and (max-width: 435px) {
  #app .perguntas-wrapper .perguntas .left .tabs {
    flex-direction: column;
    width: 100%;
  }
}
#app .perguntas-wrapper .perguntas .left .tabs .tab {
  width: 25rem;
  height: 6.25rem;
  border-radius: 1.25rem;
  background-color: #fff;
  border: 0.125rem solid #0babc5;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.5s;
  margin-right: 1.875rem;
}
@media screen and (max-width: 599px) {
  #app .perguntas-wrapper .perguntas .left .tabs .tab {
    max-width: 15.625rem;
    width: 100%;
    margin: 0 0.625rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 435px) {
  #app .perguntas-wrapper .perguntas .left .tabs .tab {
    margin-left: 0;
    margin-right: 0;
    width: 99%;
    max-width: unset;
  }
}
#app .perguntas-wrapper .perguntas .left .tabs .tab:hover {
  background-color: #0babc5;
  border: 0.125rem solid #0babc5;
  transition: 0.5s;
}
#app .perguntas-wrapper .perguntas .left .tabs .tab:hover .txt {
  color: #fff;
  transition: 0.5s;
}
#app .perguntas-wrapper .perguntas .left .tabs .tab .txt {
  color: #0babc5;
  text-align: center;
  font-weight: bold;
  transition: 0.5;
  font-size: 1.5625rem;
  will-change: transform;
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper {
  width: 100%;
  display: none;
}
@media only screen and (max-width: 991px) {
  #app .perguntas-wrapper .perguntas .right .topic-wrapper {
    width: 100%;
  }
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper.opened {
  display: block;
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .header {
  height: 3.125rem;
  background-color: #0babc5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0.625rem;
}
@media only screen and (max-width: 991px) {
  #app .perguntas-wrapper .perguntas .right .topic-wrapper .header {
    display: none;
  }
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .header .text {
  color: #fff;
  font-size: 1.5rem;
  margin-left: 1.25rem;
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .content {
  padding: 0 1.25rem;
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .content .question {
  padding: 1.25rem 0;
  overflow: hidden;
  border-bottom: 0.0625rem solid #707070;
  transition: max-height 2s;
  user-select: none;
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .content .question:last-child {
  border: none;
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .content .question.open {
  max-height: 37.5rem;
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .content .question .quest {
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .content .question .quest .text {
  font-size: 1.75rem;
  max-width: 85%;
  width: 100%;
  color: #707070;
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .content .question .quest .icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  border: 0.0625rem solid #707070;
  display: flex;
  align-items: center;
  justify-content: center;
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .content .question .quest .icon .arrow {
  width: 0.29375rem;
  height: 0.451875rem;
  transform: rotate(90deg);
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .content .question .quest .icon .arrow.rotate {
  transform: rotate(-90deg);
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .content .question .answer {
  margin: 1.25rem 0;
  font-size: 1.5rem;
  line-height: 1.875rem;
  display: none;
}
#app .perguntas-wrapper .perguntas .right .topic-wrapper .content .question .answer .text {
  font-size: 1.5rem;
  color: #707070;
  text-align: justify;
  text-align-last: left;
}
#app .politica-privacidade-wrapper {
  background-color: #fff;
  height: auto;
  padding: 0 4.0625rem;
}
@media only screen and (min-width: 1200px) {
  #app .politica-privacidade-wrapper {
    padding: 0 5rem;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  #app .politica-privacidade-wrapper {
    padding: 0 3.75rem;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  #app .politica-privacidade-wrapper {
    padding: 0 2.5rem;
  }
}
@media only screen and (min-width: 600px) and (max-width: 767px) {
  #app .politica-privacidade-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
@media only screen and (max-width: 599px) {
  #app .politica-privacidade-wrapper {
    padding: 0 1.25rem;
    height: auto;
  }
}
#app .politica-privacidade-wrapper h1 {
  margin-top: 6.25rem;
  text-align: center;
  color: #0babc5;
  font-size: 2.625rem;
}
#app .politica-privacidade-wrapper .topics {
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-bottom: 3.125rem;
  max-width: 87.5rem;
  width: 100%;
}
#app .politica-privacidade-wrapper .topics .topic {
  margin: 1.5625rem 0;
}
#app .politica-privacidade-wrapper .topics .topic .title {
  font-size: 2rem;
  color: #0babc5;
  margin-bottom: 0.625rem;
}
#app .politica-privacidade-wrapper .topics .topic .content {
  font-size: 1.5rem;
  text-align: justify;
  text-align-last: left;
  color: #707070;
}

.video-post {
  max-width: 560px;
  max-height: 349px;
  width: 100%;
  height: 100%;
  margin-top: 0.9375rem;
}
.video-post .video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.video-post .video-container::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.video-post .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
.video .video-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}
.video .video-container::after {
  padding-top: 56.25%;
  display: block;
  content: "";
}
.video .video-container iframe {
  top: 0;
  left: 0;
  width: 90%;
  height: 100%;
}