:root {
  --main-bg: #ffffff;
  --main: #761D20;
  --sec: #fff38d;
  --lt: #f9d3d3;
  --lt-g: #ededed;
  --mid: #fbb2b5;
  --dk: #2e0002;
  --bk: #252525;
  --bx: 1px 2px 12px -1px rgba(50,50,50,0.1);
}

body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background-color: var(--main-bg);
}

a {
  color: var(--sec);
}

a:hover {
  color: #3291e6;
  text-decoration: none;
}

.main_text {
  color: var(--main);
}

.btn_style {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-decoration: none !important;
  padding: .6rem .8rem;
  min-height: 42px;
  border-radius: 2rem;
  border: none;
  -webkit-box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.15); 
  box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: all .2s ease-in-out;
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.btn_style:disabled {
  background-color: #8c8c8c !important;
  border-color: #8c8c8c !important;
  opacity: .8;
}

.main_btn {
  background-color: var(--main);
  color: #fff !important;
}

.sec_btn {
  background-color: var(--lt);
  color: var(--main);
}

.form-control {
  border-color: #dacece !important;
  font-size: .89rem;
}

.form-control:focus {
  box-shadow: 0 0 0 .2rem rgba(255, 0, 0, 0.21);
}

.form-control:placeholder {
  font-size: .89rem;
}

.noselect {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.recaptcha {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.form_hint {
  position: absolute;
  bottom: -21px;
  left: 5px;
  font-size: .8rem;
  color: #d72525;
}

.text_error {
  color: #ffb5b5 !important;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid var(--main);
  border-top-color: var(--lt);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

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

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

.datepicker-dropdown {
  padding: 20px !important;
}

/* Inputs */

.pos_relative {
  position: relative;
}


/* Main */

#main {
  margin-top: 96px;
}

@media (max-width: 991px) {
  #main {
    margin-top: 78px;
  }
}

/* Boleto */

.boleto_content label { 
  font-size: .89rem !important;
  color: var(--bk);
}

.boleto_redirect {
  outline: none !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--sec) !important;
  border: solid 2px #E8DC77;
  color: var(--dk) !important;
  font-size: .75rem !important;
  margin: .5rem auto 0 auto;
  padding: .4rem 1rem !important;
  min-height: unset;
}

.boleto_redirect:hover {
  border-color: #E87777;
}

.boleto_error {
  display: flex;
  visibility: hidden;
  justify-content: center;
  font-size: .89rem !important;
  color: var(--main);
  margin-top: .25rem;
}

/* Boleto Desktop */
#boleto_desk {
  position: fixed;
  right: .5rem;
  top: 108px;
  border-radius: .25rem;
  background-color: #fff;
  box-shadow: 2px 2px 12px -1px rgba(50, 50, 50, .3);
  z-index: 100;  
}

#boleto_desk .btn_collapse {
  display: block;
  font-size: .89rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--bk) !important;
  padding: .6rem 1rem;
  border-radius: .25rem;
  min-width: 190px;
}

#boleto_desk .boleto_content {
  padding: 0 1rem 1rem 1rem;
}

#boleto_desk .boleto_content .form-control {
  max-width: 158px;
  font-size: .89rem;
}

@media (max-width: 991px) {
  #boleto_desk {
    display: none;
  }
}

/* Boleto Mobile */
#boletoModal .modal-dialog {
  max-width: 320px;
  margin: auto !important;
  padding: 0 !important;
}

#boletoModal .close {
  outline: none;
}

#boletoModal .modal-header {
  padding: .75rem 1rem;
}

#boletoModal .modal-header h5 {
  font-size: 1rem !important;
  text-transform: uppercase;
}

#boletoModal .modal-body {
  padding: 1.25rem 1rem 1rem 1rem;
}

#boletoModal .form-control {
  font-size: 1rem !important;
}

#boletoModal .form-control:placeholder {
  font-size: 1rem !important;
}

#boletoModal .modal-footer {
  display: flex;
  justify-content: center;
  border-top: none;
  padding: 0 1rem 1rem 1rem;
}

#boletoModal .boleto_redirect {
  margin: unset !important;
}

/* Header */
#header {
  display: flex;
  align-content: center;
  background-color: var(--main-bg);
  transition: all .2s linear;
  z-index: 49;
  padding: 8px 0;
  box-shadow: 0px 2px 15px rgba(25, 119, 204, 0.1);
  border-top: 10px solid var(--sec);
}

#header > .container {
  align-items: center;
}

#header .logo {
  display: flex;
  align-items: center;
}

#header .logo a {
  color: var(--main);
}

#header .logo img {
  padding: .75rem;
  transition: all .2s linear;
}

nav .login_btn {
  padding: 0 1.5rem !important;
  margin-left: 20px;
  background: var(--main);
  box-shadow: 2px 3px 4px -0px rgba(0,0,0,.35) !important;
  height: 34px !important;
  min-height: unset !important;
  align-self: center;
}

nav .login_btn span {
  display: flex;
  justify-content: center;
  line-height: 2.6;
  font-size: .8rem !important;
  letter-spacing: 2px;
  color: var(--sec) !important;
}

@media (min-width: 992px) {
  #header .logo img {
    height: 75px;
  }
}

@media (max-width: 1600px) {
  #header .logo img {
    padding: .6rem;
  }
}

@media (max-width: 991px) {
  #header {
    top: 0;
    padding: .25rem 0;
  }

  #header > .container {
    align-items: space-between;
    max-width: unset !important;
  }

  #header .logo img {
    padding: .35rem;
    height: 60px;
  }

  nav .login_btn {
    max-width: 450px;
    margin: .5rem 18px 0 18px;
    height: 40px !important;
  }

  #header.header-scrolled .logo img {
    max-height: 65px !important;
  }
}

@media (max-width: 576px) {
  nav .login_btn {
    max-width: unset;
  }

  nav .login_btn span {
    line-height: 3.1;
  }
}

/* Navbar */
/* Desktop */

.nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 8px 0 8px 20px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: var(--bk);
  transition: 0.3s;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  padding: 5px 2px;
  border: none;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: var(--main);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 20px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #082744;
  border: none;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #01519a;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 30px;
  z-index: 50;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: var(--main);
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a, .mobile-nav button {
  display: block;
  position: relative;
  color: var(--main);
  padding: 16px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav button {
  text-align: left;
  border: none;
  background-color: transparent;
  width: 100%;
}

.mobile-nav a:hover, .mobile-nav button:hover, .mobile-nav .active > a, .mobile-nav .active > .mobile-nav .active > a, .mobile-nav li:hover > a, .mobile-nav li:hover > button {
  color: var(--dk);
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(28, 47, 65, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/* Hero Carousel */

#hero {
  padding: 0 !important;
}

#hero .carousel-item.active, #hero .carousel-item-next, #hero .carousel-item-prev {
  display: block;
}

#hero .carousel-inner .carousel-item {
  position: relative;
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

#hero .carousel-inner .carousel_text {
  position: absolute;
  text-shadow: 0px 2px 5px rgba(50, 50, 50, 0.4);
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--main);
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

#hero .carousel-inner .carousel-item:before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: ' ';
  background-color: #fff;
  opacity: .3;
}

#hero .carousel-inner .carousel_text.slide_1 {
  text-align: center;
  text-transform: capitalize;
  color: var(--sec) !important;
  font-size: 6vw;
  width: 100%;
  top: 30%;
  transform: translateY(-30%);
}

#hero .carousel-inner .carousel_text.slide_2 {
  text-align: right;
  font-size: 5vw;
  width: 100%;
  top: 30%;
  right: 3%;
  transform: translateY(-30%);
  color: var(--main);
}

#hero .carousel-inner .carousel_text.slide_3 {
  text-align: left;
  width: 100%;
  font-size: 4vw;
  top: 25%;
  left: 5%;
  transform: translateY(-25%);
}

#hero .carousel-inner .carousel_text.slide_4 {
  text-align: left;
  font-size: 4.5vw;
  width: 60vw;
  top: 30%;
  left: 3%;
  transform: translateY(-30%);
  line-height: 1.4;
}

#hero .carousel-inner .carousel_text.slide_4 span {
  font-size: 7vw;
  margin-left: 24vw;
}

#hero .carousel-inner .carousel_text.slide_5 {
  text-align: center;
  font-size: 3.8vw;
  width: 47vw;
  top: 25%;
  right: 3%;
  transform: translateY(-25%);
}

#hero .carousel-inner .carousel-item:first-child:before {
  background-color: #fff;
  opacity: .2;
}

#hero .carousel-inner .carousel-item:nth-of-type(3):before {
  background-color: #fff;
  opacity: .4;
}

#hero .carousel-inner .carousel-item:nth-of-type(4):before {  
  opacity: .45;
}

#hero .carousel-inner .carousel-item:nth-of-type(5):before {  
  opacity: .2;
}

@media (max-width: 991px) {

  #hero .carousel-inner .carousel_text.slide_2 {
    text-align: center;
    font-size: 7vw;
    width: 100%;
    top: 20%;
    right: unset;
    bottom: unset;
    transform: translateY(-20%);
    color: var(--main);
  }

  #hero .carousel-inner .carousel_text.slide_3 {
    text-align: left;
    top: 1rem;
    right: unset;
    bottom: unset;
    transform: unset;
    font-size: 5.5vw;
  }

  #hero .carousel-inner .carousel_text.slide_4 {
    font-size: 4.5vw;
  }

}

@media (max-width: 576px) {
  #hero .carousel-inner .carousel_text.slide_5 {
    width: 48vw;
  }
}

/* Hero Animation */

.s_1 {
  -webkit-animation: tracking-in-expand-fwd-top 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) .6s both;
          animation: tracking-in-expand-fwd-top 1.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) .6s both;
}

.s_2 {
  -webkit-animation: focus-in-expand-fwd 1.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) .6s both;
          animation: focus-in-expand-fwd 1.25s cubic-bezier(0.250, 0.460, 0.450, 0.940) .6s both;
}

.s_3 {
  -webkit-animation: tracking-in-expand 1.25s cubic-bezier(0.215, 0.610, 0.355, 1.000) .6s both;
          animation: tracking-in-expand 1.25s cubic-bezier(0.215, 0.610, 0.355, 1.000) .6s both;
}

.s_4 {
  -webkit-animation: text-focus-in .75s cubic-bezier(0.550, 0.085, 0.680, 0.530) .6s both;
          animation: text-focus-in .75s cubic-bezier(0.550, 0.085, 0.680, 0.530) .6s both;
}

@-webkit-keyframes tracking-in-expand-fwd-top {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px) translateY(-500px);
            transform: translateZ(-700px) translateY(-500px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
            transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}
@keyframes tracking-in-expand-fwd-top {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-700px) translateY(-500px);
            transform: translateZ(-700px) translateY(-500px);
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateZ(0) translateY(0);
            transform: translateZ(0) translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
            transform: translateZ(-800px);
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes focus-in-expand-fwd {
  0% {
    letter-spacing: -0.5em;
    -webkit-transform: translateZ(-800px);
            transform: translateZ(-800px);
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    -webkit-filter: blur(0);
            filter: blur(0);
    opacity: 1;
  }
}
@keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes text-focus-in {
  0% {
    -webkit-filter: blur(12px);
            filter: blur(12px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

/* Sections */

section {
  padding: 32px 0;
  overflow: hidden;
}

.section_title {
  text-align: center;
  pointer-events: none;
  text-transform: uppercase;
  font-weight: 300;
  letter-spacing: 2px;
}

/* About */

#about {
  background-color: var(--main);
  padding: 5rem 0;
}

#about .container .section_title {
  color: #fff;
  margin-bottom: 0rem;
}

#about .container .about_row {
  display: flex;
  flex-direction: row;
}

#about .about_img img {
  max-height: 300px;
  -webkit-box-shadow: 8px 11px 22px 0px rgba(0,0,0,.4);
  box-shadow: 8px 11px 22px 0px rgba(0,0,0,.4);
}

#about .about_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-shadow: 30px 15px 22px rgba(0, 0, 0,.4);
}

#about .about_text h5 {
  color: #fff;
  letter-spacing: 1px;
  text-align: justify;
  font-size: 1.15rem !important;
}

#about .about_center {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  text-align: center;
  color: var(--sec);
  margin: 2.5rem 0 0 0;
}

@media (max-width: 1600px) {
  #about .about_banner {
    background-position: top -323px left 60%;
  }

  #about .about_banner .container {
    max-width: unset;
  }
}

@media (max-width: 1200px) {
  #about .container .section_title {
    margin-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  #about .about_img {
    padding-left: 1.75rem;
  }
}

@media (max-width: 991px) {
  #about .container .section_title {
    margin-bottom: 1.25rem;
  }

  #about .about_row {
    flex-direction: column !important;
  }

  #about .about_text h5 {
    font-size: 1rem !important;
  }

  #about .about_img {
    padding: 0 !important;
    margin: 2.5rem 0;
  }  

  #about .about_img img {
    max-height: unset !important;
    width: 100%;
  }

  #about .about_center {
    padding: 1.25rem;
    font-size: 1.25rem !important;
    border-radius: 2rem;
  }
}

@media (max-width: 576px) {

  #about .container .section_title {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }

  #about {
    padding: 3rem 0;
  }

  #about .about_text h5 {
    font-size: .9rem !important;
  }
}

#about_vis {
  padding: 2rem 0;
  background-color: #f2f2f2;
  border-top: solid .5rem var(--sec);
  border-bottom: solid .5rem var(--sec);
}

#about_vis .about_vis_row {
  display: flex;
  flex-flow: row wrap;
}

#about_vis .about_vis_row > div {
  padding: 0 15px;
}

#about_vis .about_vis_row .about_vis_wrapper {
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

#about_vis .about_vis_row .about_vis_wrapper img {
  display: flex;
  max-height: 64px;
  margin: 0 auto 1rem auto;
}

#about_vis .about_vis_row .about_vis_wrapper h4 {
  color: var(--main);
  margin-bottom: 0 !important;
  text-align: center;
  font-size: 1.25rem !important;
}

#about_vis .about_vis_row .list-group .list-group-item {
  display: flex;
  align-items: center;
  background-color: transparent;
  color: var(--main);
  border: none;
  padding: 1rem 1.25rem;
  border-radius: 2rem;
  font-size: 1.23rem;
  transition: all .2s linear;
}

#about_vis .about_vis_row .list-group .list-group-item.active {
  background-color: var(--mid);
}

#about_vis .about_vis_row .list-group .list-group-item img {
  max-height: 32px;
  margin-right: 1rem;
}

#about_vis .about_vis_row .tab-content {
  height: 100%;
  border-left: solid 1px var(--main);
  padding-left: 1rem;
}

#about_vis .about_vis_row .tab-content .tab-pane {
  color: var(--main);
  letter-spacing: 1px;
  font-size: 1.5rem;
  height: 100%;
  font-weight: 300;
}

#about_vis .about_vis_row .tab-content .tab-pane.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#about_vis .about_vis_row .tab-content .tab-pane a {
  text-transform: none;
}

#about_vis .about_vis_row .tab-content .tab-pane a:hover {
  color: var(--main);
}

@media (min-width: 992px) and (max-width: 1200px) {
  #about_vis > .container {
    padding: 0;
  }

  #about_vis .about_vis_row .list-group .list-group-item {
    font-size: 1.02rem;
  }
}

@media (max-width: 768px) {
  #about_vis .about_vis_row > div:not(:last-child) {
    border: none;
  }
}

@media (max-width: 991px) {

  #about_vis {
    padding: 6rem 0;
  }

  #about_vis .about_vis_line {
    display: flex;
    margin: 3.25rem auto;
    content: ' ';
    height: 2px;
    width: 100px;
    background-color: var(--main);
  }

  #about_vis .about_vis_row .about_vis_wrapper h4 {
    margin-bottom: 1.25rem !important;
    font-size: 1.5rem !important;
  }

  #about_vis .about_vis_row .about_vis_wrapper h6 {
    display: block;
    color: var(--dk);
    margin: 0;
    text-align: justify;
    max-width: 500px;
    margin: 0 auto;
    font-size: 1rem !important;
  }

  #about_vis .about_vis_row .about_vis_wrapper h6 a {
    color: var(--dk) !important;
  }
}

/*@media (max-width: 576px) {
  #about_vis .about_vis_row .about_vis_wrapper h6 {
    max-width: 320px;
  }
}*/

/* How to */

#howto {
  background-color: var(--main);
  padding: 5rem 0;
}

#howto .container .section_title {
  color: #fff;
  margin-bottom: 4rem;
}

#howto .howto_row {
  margin: 0;
}

#howto .howto_row > div .howto_wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  border: solid 2px var(--lt);
  padding: 4rem 1.5rem 4rem 1.5rem;
  min-height: 310px;
  height: 100%;
}

#howto .howto_row > div:first-child .howto_wrapper {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

#howto .howto_row > div:last-child .howto_wrapper {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background: #f5d575;
}

#howto .howto_row > div:nth-child(2) .howto_wrapper {
  border-left: none;
  border-right: none;
}

#howto .howto_icon {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}

#howto .howto_icon img {
  max-height: 80px;
}

#howto .howto_text {
  display: flex;
  height: 100%;
  justify-content: center;
}

#howto .howto_text h6 {
  font-size: 1.2rem !important;
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 0 !important;
}

#howto .howto_row > div:first-of-type h6 {
  font-size: .9rem !important;
}

#howto .howto_row > div:last-child h6 {
  font-size: 1.5rem !important;
  font-weight: 600;
  color: var(--main);
}

#howto .howto_wrapper span {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  position: absolute;
  bottom: -.1rem;
  left: 50%;
  transform: translateY(-50%);
}

#howto .howto_row > div:last-child span {
  color: var(--main);
}

#howto .howto_wrapper .chev_icon {
  font-size: 1.5rem;
  color: var(--sec);
  background: var(--main);
  border: solid 2px var(--lt);
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  border-radius: 50%;
  padding: .2rem;
  z-index: 5;
}

#howto .howto_wrapper .chev_icon:last-child {
  right: -20px;
  left: unset;
}

@media (max-width: 991px) {
  #howto {
    padding: 6rem 0;
  }

  #howto .howto_row > div .howto_wrapper {
    min-height: unset !important;
    padding: 3rem 1.5rem 3rem 1.5rem;
  }

  #howto .howto_row > div:first-of-type .howto_wrapper {
    border-bottom: none;
    border-bottom-left-radius: 0;
    border-top-right-radius: 1rem;
  }

  #howto .howto_row > div:nth-child(2) .howto_wrapper {
    border: solid 2px var(--lt);
  }

  #howto .howto_row > div:last-child .howto_wrapper {
    border-top: none;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 1rem;
  }

  #howto .howto_icon {
    margin-bottom: 2rem !important;
  }

  #howto .howto_icon img {
    max-height: 64px;
  }

  #howto .howto_text h6 {
    font-size: 1rem !important;
  }

  #howto .howto_row > div:last-child h6 {
    font-size: 1.25rem !important;
  }

  #howto .howto_row .howto_wrapper > span {
    display: none;
  }

  #howto .howto_row .howto_wrapper .chev_icon:first-of-type {
    top: -19px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
  }

  #howto .howto_row .howto_wrapper .chev_icon:last-child {
    top: unset;
    right: unset;
    bottom: -19px;
    left: calc(50% + 0px);
    transform: translateX(-50%) rotate(90deg);
  }
}

@media (max-width: 576px) {

  #howto .howto_icon img {
    max-height: 52px;
  }

  #howto .howto_text h6 {
    font-size: .9rem !important;
  }
}

/* Why us */

#whyus {
  padding-bottom: unset;
  padding-top: 4rem;
}

#whyus .section_title {
  font-weight: 700;
  color: var(--main);
  text-transform: unset;
}

#whyus .whyus_pic img {
  max-height: 480px;
}

#whyus .whyus_con {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #f5d575;
  margin: 1rem 0 2rem 2rem;
  padding: 2.5rem;
  width: 100%;
  border-radius: 1rem;
  box-shadow: 14px 15px 19px -5px rgba(50,50,50,.26);
  -webkit-box-shadow: 14px 15px 19px -5px rgba(50,50,50,.26);
  -moz-box-shadow: 14px 15px 19px -5px rgba(50,50,50,.26);
}

#whyus .whyus_con h5 {
  display: flex;
  align-items: center;
  margin-bottom: 0 !important;
  color: var(--main);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

#whyus .whyus_con h5 i {
  font-size: 1.75rem;
  margin-right: .75rem;
}

@media(max-width: 1200px) {
  #whyus .whyus_con h5 {
    font-size: 1rem;
  }
}

@media(max-width: 991px) {
  
  #whyus {
    padding-bottom: 4rem;
  }
  
  #whyus .section_title {
    margin-bottom: 1.25rem;
    text-align: left !important;
  }

  #whyus .whyus_con {
    margin: 0;
    min-height: 450px;
  }

  #whyus .whyus_con h5 {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {

  #whyus .whyus_con {
    padding: 1.75rem 1.25rem;
    min-height: 500px;
  }
}

/* Tecnologia */

#tech {
  background-color: #f5d575;
  padding: 5rem 0;
}

#tech .section_title {
  color: var(--main);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

#tech .tech_center {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  color: var(--main);
  margin: 2.5rem 0 0 0;
}

#tech .tech_text h5 {
  color: var(--dk);
}

@media (max-width: 1200px) {
  #tech .tech_text h5 {
    font-size: 1rem !important;
  }

  #tech .tech_center {
    font-size: 1.25rem;
  }
}

@media (max-width: 991px) {

  #tech .section_title {
    text-align: center !important;
  }

  #tech .tech_center {
    padding: 1.25rem;
    font-size: 1.25rem !important;
    border-radius: 2rem;
  }
}

/* Contato */

#contact {
  background-color: var(--main-bg);
  padding: 5rem 0;
}

#contact .container {
  max-width: 800px;
}

#contact .container .section_title {
  color: var(--main);
  margin-bottom: 2rem;
}

#contact .container .form_wrapper {
  display: flex;
  flex-direction: row;
  border: solid 3px var(--main);
  border-radius: 2rem;
  border-top-left-radius: 2.5rem;
  border-bottom-left-radius: 2.5rem;
}

#contact .container .form_wrapper .form_info {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  border-top-left-radius: 2rem;
  border-bottom-left-radius: 2rem;
  color: #fff;
  font-size: .9rem !important;
  background-color: var(--main); 
  height: 100%;
  padding: 2rem 1.75rem 2rem 1.75rem;
  text-align: justify;
}

#contact .container .form_wrapper .form_info > i {
  align-self: center;
  font-size: 8rem;
  color: #fff;
}

#contact .container .form_wrapper .form_info .form_tel_wrapper {
  margin: 2rem auto 0 auto;
}

#contact .container .form_wrapper .form_info .form_tel_wrapper span {
  display: block;
  min-width: 130px;
  margin: 0 auto;
}

#contact .container .form_wrapper .form_info .form_tel_wrapper span:first-child {
  margin-bottom: 1rem;
}

#contact .container .form_wrapper .form_content {
  display: flex;
  flex-direction: column;
  padding: 3rem 3rem 1.5rem 2rem;
}

#contact .input_style {
  display: block;
  width: 100%;
  height: 36px;
  padding: .25rem .5rem;
  border: none;
  border-bottom: solid 1px var(--main);
  border-top-left-radius: .25rem;
  border-top-right-radius: .25rem;
  font-size: 1rem;
  color: var(--main);
  background-color: var(--main-bg);
  transition: background-color .2s ease-in-out, box-shadow .2s ease-in-out;
  outline: none;
}

#contact .label_style {
  position: absolute;
  top: .4rem;
  left: 5px;
  font-size: 1rem;
  font-weight: normal;
  color: var(--main);
  pointer-events: none;
  transition: 0.2s ease all;
  -moz-transition: 0.2s ease all;
  -webkit-transition: 0.2s ease all;
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  pointer-events: none;
}

#contact .input_style:focus ~ .label_style,
#contact .input_style:not(:placeholder-shown) ~ .label_style,
#contact textarea:focus ~ .label_style,
#contact textarea:not(:placeholder-shown) ~ .label_style {
  top: -1.5rem;
  left: 0;
  font-size: .95rem;
  font-weight: 600 !important;
  margin-bottom: 0 !important;
  color: var(--dk);
}

#contact .input_style:focus,
#contact textarea:focus {
  background-color: #eadcdc;
  border-color: var(--main);
}

#contact textarea {
  display: block;
  width: 100%;
  height: 2rem;
  padding: .25rem .5rem;
  border: solid 1px var(--main);
  border-radius: .3rem;
  font-size: 1rem;
  color: var(--dk);
  background-color: var(--main-bg);
  transition: background-color .2s ease-in-out, box-shadow .2s ease-in-out;
  outline: none;
  resize: none;
  height: 100px;
}

#contact .send_btn {
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: var(--dk);
  color: var(--sec);
  max-width: 150px;
  width: 100%;
  margin: 1.5rem auto 0 auto;
}

@media (max-width: 991px) {

  #contact {
    padding: 6rem 0;
  }

  #contact .container .form_wrapper {
    flex-flow: column wrap;
    border-top-right-radius: 2.5rem;
    border-top-left-radius: 2.5rem;
  }

  #contact .container .form_wrapper .form_info {
    width: 100.5%;
    border-top-right-radius: 2rem;
    border-bottom-right-radius: 0; 
    border-bottom-left-radius: 0;
    padding: 1rem 1.75rem !important;
  }

  #contact .container .form_wrapper .form_info > i {
    font-size: 7rem;
  }

  #contact .container .form_wrapper .form_info h6,
  #contact .container .form_wrapper .form_info div {
    max-width: 500px;
    margin: 0 auto;
  }
  #contact .container .form_wrapper .form_info .form_tel_wrapper {
    margin-top: 2rem !important;
  }

  #contact .container .form_wrapper .form_content {
    max-width: 500px;
    margin: 0 auto;
    padding: 3rem 0 2rem 0;
  }
}

@media (max-width: 768px) {

  #contact .container {
    padding: 0 4px !important;
  }

  #contact .form_content {
    padding: 2rem !important;
  }

}

@media (max-width: 576px) {

  #contact .container .form_wrapper .form_info .form_tel_wrapper {
    margin-top: .5rem;
  }

}

/* Login */

#app_frame {
  position: absolute;
  height: 100%;
  top: 96px;
  left: 0;
  right: 0;
  bottom: 0;
}

#app_frame iframe {
  width: 100%;
  height: 100%;
  /*min-height: 100vh;*/
  border: none !important;
}

/* Footer */

.absolute_footer {
  display: none;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
}

#footer {
  font-size: 17px;
  z-index: 50;
}

#footer .footer-top {
  padding: 60px 0 60px 0;
  background: #fff;
  background-color: var(--main-bg);
  border-top: solid 1px var(--mid);
}

#footer .footer-logo {
  max-width: 320px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
}

#footer .footer-top .footer-contact p {
  font-family: "Open Sans", sans-serif;
  font-size: 17.3px;
  text-align: center;
  line-height: 28px;
  max-width: 320px;
  color: var(--main) !important;
  margin: 1rem 0 .5rem 0;
}

#footer .footer-top .footer-contact .contact-div  {
  color: var(--main);
}

#footer .footer-top .footer-contact .footer-cnpj  {
  display: block;
  letter-spacing: 1px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #444444;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .links-col, #footer .footer-top .social-col {
  padding-top: .5rem !important;
}

#footer .social-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#footer .footer-top .menu_title {
  display: block;
  font-weight: 700;
  color: var(--main);
  padding-left: 6rem;
  padding-bottom: 1rem;
  margin-bottom: 0 !important;
  -webkit-touch-callout: none;
    -webkit-user-select: none;
     -khtml-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

#footer .footer-top .footer-links ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: calc(100% - 35.2px);
  list-style: none;
  padding: 0 0 0 6.6rem;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: var(--main);
  font-size: 18px;
  line-height: 1;
  margin-top: .1rem;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--main);
}

#footer .social-col a i {
  font-size: 6rem !important;
  color: var(--main);
}

#footer .footer-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 306px !important;
  margin-left: auto;
}

#footer .footer-right .footer-items-right .menu_title {
  padding-left: 0;
  padding-bottom: .25rem !important;
}

#footer .footer-right .footer-items-right a {
  display: inline-block;
  color: #777777;
  padding-left: 1.25rem;
}

#footer .footer-right .footer-items-right a:hover:not(.mt-1) {
  color: var(--main);
}

#footer .section_title {
  color: var(--main);
  margin-bottom: 1rem;
}

#footer .credits {
  font-size: 14px;
  color: #fff;
}

#footer .credits a {
  color: #fff;
}

#footer .container-fluid {
  background-color: var(--main);
}

@media (min-width: 991px) {
  #footer .social-col {
    padding-left: 5rem !important;
  }
}

@media (min-width: 991px) and (max-width: 1200px) {
  #footer {
    font-size: 15.4px;
  }
  #footer .footer-top .footer-contact p {
    font-size: 15.7px;
  }
}

@media (max-width: 991px) {
  #footer .footer-top {
    padding-bottom: 2rem;
  }

  #footer .section_title {
    color: var(--main);
    margin-bottom: .5rem;
  }

  #footer .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #footer .footer-contact img {
    width: 280px;
  }

  #footer .links-col ul {
    max-width: 328px;
    margin: auto !important;
  }

  #footer .links-col ul li {
    display: block;
    width: 100%;
  }
  #footer .footer-right {
    margin: 0 auto;
    padding: 0 !important;
    min-height: 300px;
  }

  #footer .footer-top .menu_title {
    padding-right: 0;
    padding-left: 0;
    text-align: center;
  }

  #footer .social-col {
    width: 100%;
  }
}

@media (max-width: 767px) {
  #footer .footer-top .footer-links ul {
    padding-left: 0;
  }

  #footer .footer-top .links-col {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  #footer .footer-top .footer-contact p {
    margin: 1.5rem 0 1rem 0;
  }

  #footer .section_title {
    margin-bottom: 1rem;
  }

  #footer .social-col {
    justify-content: center;
  }
}

/* Sweet Alert */

.swal2-popup {
  border-radius: 2rem !important;
}

.swal2-html-container {
  font-size: 1rem !important;
}

.swal2-icon.swal2-success {
  border-color: var(--main) !important;
  color: var(--main) !important;
}

.swal2-icon.swal2-success [class^="swal2-success-line"] {
  background-color: var(--main) !important;
}

.swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(129, 34, 34, 0.4) !important;
}

.swal2-styled.swal2-confirm {
  border-radius: 50px !important;
  background-color: var(--main) !important;
  min-width: 80px;
}

.swal2-styled.swal2-confirm:focus {
  box-shadow: 0 0 0 3px rgba(195, 32, 32, 0.5) !important;
}

/* Whatsapp */

.wc_whatsapp_app {
  position: fixed;
  bottom: 30px;
  z-index: 9999999999;
  display: flex;
  align-items: center;
  outline: none;
}

.wc_whatsapp_app.right {
  right: 15px;
}

.wc_whatsapp {
  width: 50px;
  height: 50px;
  display: block;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2);
}

.wc_whatsapp::before {
  content: "";
  display: block;
  background: url("data:image/svg+xml;charset=UTF-8,%3csvg aria-hidden='true' focusable='false' data-prefix='icon' data-icon='whatsapp' class='svg-inline' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3e%3cpath fill='%23fff' d='M380.9 97.1C339 55.1 283.2 32 223.9 32c-122.4 0-222 99.6-222 222 0 39.1 10.2 77.3 29.6 111L0 480l117.7-30.9c32.4 17.7 68.9 27 106.1 27h.1c122.3 0 224.1-99.6 224.1-222 0-59.3-25.2-115-67.1-157zm-157 341.6c-33.2 0-65.7-8.9-94-25.7l-6.7-4-69.8 18.3L72 359.2l-4.4-7c-18.5-29.4-28.2-63.3-28.2-98.2 0-101.7 82.8-184.5 184.6-184.5 49.3 0 95.6 19.2 130.4 54.1 34.8 34.9 56.2 81.2 56.1 130.5 0 101.8-84.9 184.6-186.6 184.6zm101.2-138.2c-5.5-2.8-32.8-16.2-37.9-18-5.1-1.9-8.8-2.8-12.5 2.8-3.7 5.6-14.3 18-17.6 21.8-3.2 3.7-6.5 4.2-12 1.4-32.6-16.3-54-29.1-75.5-66-5.7-9.8 5.7-9.1 16.3-30.3 1.8-3.7.9-6.9-.5-9.7-1.4-2.8-12.5-30.1-17.1-41.2-4.5-10.8-9.1-9.3-12.5-9.5-3.2-.2-6.9-.2-10.6-.2-3.7 0-9.7 1.4-14.8 6.9-5.1 5.6-19.4 19-19.4 46.3 0 27.3 19.9 53.7 22.6 57.4 2.8 3.7 39.1 59.7 94.8 83.8 35.2 15.2 49 16.5 66.6 13.9 10.7-1.6 32.8-13.4 37.4-26.4 4.6-13 4.6-24.1 3.2-26.4-1.3-2.5-5-3.9-10.5-6.6z'%3e%3c/path%3e%3c/svg%3e") top center no-repeat;
  height: 35px;
  margin-top: 7px;
  margin-left: 2px;
}
