:root {
  --color-red: #6f2a7a;
  --color-red-dark: #7a297a;
  --color-red-dark-after: #42150e;
  --color-lead: #59595b;
  --color-lead-dark: #44444a;
  --color-lead-dark-after: #333;
  --color-blue: #0A1A5C;
  --color-blue-dark: #12122D;
  --color-blue-dark-after: #071c75;
  --color-blue-volare: #124482;
  --color-blue-volare-dark: #0D3056;
  --color-orange: #E75110;
}

html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: sans-serif;
  font-size: 15px;
  outline: none;
  -webkit-appearance: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

section {
  position: relative;
}

p {
  word-wrap: break-word;
}

textarea:hover,
input:hover,
textarea:active,
input:active,
textarea:focus,
input:focus,
button:focus,
button:active,
button:hover,
label:focus,
.adt-btn:active {
  outline: 0px;
  -webkit-appearance: none;
  box-shadow: none;
}

input[type=file] {
  cursor: pointer;
  width: 100%;
}
input[type=file] label {
  cursor: pointer;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

footer {
  bottom: 0;
  display: block;
  width: 100%;
}

@media screen and (min-width: 1400px) {
  html,
body {
    max-width: 1500px;
    margin: 0 auto;
  }
}
.adt-animate {
  width: 100px;
  height: 100px;
  background: #7e7b7b;
  animation: changer 4s;
  animation-iteration-count: 7;
}
@-webkit-keyframes changer {
  from {
    background-color: var(--color-red);
  }
  to {
    background-color: var(--color-blue);
  }
}
@keyframes changer {
  from {
    background-color: var(--color-red);
  }
  to {
    background-color: var(--color-blue);
  }
}
.adt-animate--left_to_right {
  width: 100px;
  height: 100px;
  background: #2f0a96;
  animation: 3s linear 1s infinite running toRight;
}
@-webkit-keyframes toRight {
  from {
    margin-left: -20%;
  }
  to {
    margin-left: 100%;
  }
}
@keyframes toRight {
  from {
    margin-left: -20%;
  }
  to {
    margin-left: 100%;
  }
}
.adt-animate--right_to_left {
  width: 100px;
  height: 100px;
  background: #942f2f;
  animation: 3s linear 1s infinite running toLeft;
}
@-webkit-keyframes toLeft {
  from {
    margin-right: -20%;
  }
  to {
    margin-right: 100%;
  }
}
@keyframes toLeft {
  from {
    margin-right: -20%;
  }
  to {
    margin-right: 100%;
  }
}
.adt-animate--top_to_bottom {
  width: 100px;
  height: 100px;
  background: #7e7b7b;
  animation: 5s ease-in both infinite toBottom;
  position: relative;
}
@-webkit-keyframes toBottom {
  0% {
    bottom: 0px;
    top: 0px;
  }
  50% {
    bottom: 200px;
    top: 0px;
  }
  100% {
    bottom: 0px;
    top: 200px;
  }
}
@keyframes toBottom {
  0% {
    bottom: 0px;
    top: 0px;
  }
  50% {
    bottom: 200px;
    top: 0px;
  }
  100% {
    bottom: 0px;
    top: 200px;
  }
}
.adt-animate--bottom_to_top {
  width: 100px;
  height: 100px;
  background: #942f2f;
  animation: 3s linear infinite toTop;
  position: relative;
}
@-webkit-keyframes toTop {
  0% {
    bottom: 0px;
    top: 150%;
  }
  100% {
    bottom: 100%;
    top: 0;
  }
}
@keyframes toTop {
  0% {
    bottom: 0px;
    top: 150%;
  }
  100% {
    bottom: 100%;
    top: 0;
  }
}
.adt-animate--scale {
  width: 100px;
  height: 100px;
  background: #f5bc41;
  animation: scaler 4s;
  animation-iteration-count: infinite;
}
@-webkit-keyframes scaler {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
@keyframes scaler {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.adt-animate--grayscale {
  width: 100px;
  height: 100px;
  background: #f5bc41;
  animation: 5s infinite grayscaler;
}
@-webkit-keyframes grayscaler {
  from {
    filter: grayscale(0);
  }
  to {
    filter: grayscale(1);
  }
}
@keyframes grayscaler {
  from {
    filter: grayscale(0);
  }
  to {
    filter: grayscale(1);
  }
}
.adt-animate--style_gradient {
  width: 100px;
  height: 100px;
  background: linear-gradient(-45deg, var(--color-orange), var(--color-red), var(--color-blue-volare), var(--color-lead));
  background-size: 200% 200%;
  animation: gradienter 15s ease infinite;
}
@-webkit-keyframes gradienter {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes gradienter {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.adt-animate--style_radius {
  width: 100px;
  height: 100px;
  background: var(--color-lead);
  animation: radius 5s linear infinite;
}
@-webkit-keyframes radius {
  from {
    border-radius: 0;
  }
  to {
    border-radius: 100%;
  }
}
@keyframes radius {
  from {
    border-radius: 0;
  }
  to {
    border-radius: 100%;
  }
}

.adt-btn {
  display: inline-block;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1.2px solid transparent;
  padding: 8px 16px;
  font-size: 14px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  border-radius: 30px;
  cursor: pointer;
  min-width: 80px;
  margin: 5px;
}
.adt-btn--lead {
  color: #fff;
  background-color: var(--color-lead);
}
.adt-btn--lead:hover {
  background-color: var(--color-lead-dark);
}
.adt-btn--lead:active {
  background-color: var(--color-lead-dark-after);
}
.adt-btn--lead_reversed {
  color: var(--color-lead);
  border-color: var(--color-lead);
}
.adt-btn--lead_reversed:hover {
  color: #fff;
  background-color: var(--color-lead-dark);
}
.adt-btn--lead_reversed:active {
  background-color: var(--color-lead-dark-after);
}
.adt-btn--green {
  color: #fff;
  background-color: green;
}
.adt-btn--yellow {
  background-color: yellow;
}
.adt-btn--blue {
  color: #fff;
  background-color: var(--color-blue);
}
.adt-btn--blue:hover {
  background-color: var(--color-blue-dark);
}
.adt-btn--blue:active {
  background-color: var(--color-blue-dark-after);
}
.adt-btn--blue_reversed {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
.adt-btn--blue_reversed:hover {
  color: #fff;
  background-color: var(--color-blue);
}
.adt-btn--blue_reversed:active {
  background-color: var(--color-blue-dark);
}
.adt-btn--red {
  color: #fff;
  background-color: var(--color-red);
}
.adt-btn--red:hover {
  background-color: var(--color-red-dark);
}
.adt-btn--red:active {
  background-color: var(--color-red-dark-after);
}
.adt-btn--red_reversed {
  color: var(--color-red);
  border-color: var(--color-red);
}
.adt-btn--red_reversed:hover {
  color: #fff;
  background-color: var(--color-red);
}
.adt-btn--red_reversed:active {
  background-color: var(--color-red-dark-after);
}
.adt-btn--transparent {
  color: #fff;
  background-color: transparent;
}
.adt-btn--group {
  width: 100%;
}
.adt-btn--group_left {
  float: left;
  width: 50%;
  border-radius: 30px 0 0 30px;
}
.adt-btn--group_right {
  float: right;
  width: 50%;
  border-radius: 0 30px 30px 0;
}
.adt-btn--group .adt-btn {
  margin: 5px 0;
}
.adt-btn-100 {
  width: 100%;
}
.adt-btn-30 {
  width: 30%;
}
.adt-btn-50 {
  width: 50%;
}

.adt-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.adt-col-1 {
  padding: 0 10px;
  width: 8.3333333333%;
}
.adt-col-2 {
  padding: 0 10px;
  width: 16.6666666667%;
}
.adt-col-3 {
  padding: 0 10px;
  width: 25%;
}
.adt-col-4 {
  padding: 0 10px;
  width: 33.3333333333%;
}
.adt-col-5 {
  padding: 0 10px;
  width: 41.6666666667%;
}
.adt-col-6 {
  padding: 0 10px;
  width: 50%;
}
.adt-col-7 {
  padding: 0 10px;
  width: 58.3333333333%;
}
.adt-col-8 {
  padding: 0 10px;
  width: 66.6666666667%;
}
.adt-col-9 {
  padding: 0 10px;
  width: 75%;
}
.adt-col-10 {
  padding: 0 10px;
  width: 83.3333333333%;
}
.adt-col-11 {
  padding: 0 10px;
  width: 91.6666666667%;
}
.adt-col-12 {
  padding: 0 10px;
  width: 100%;
}

@media (min-width: 994px) {
  .adt-col-1, .adt-col-2, .adt-col-3, .adt-col-4, .adt-col-5, .adt-col-6, .adt-col-7, .adt-col-8, .adt-col-9, .adt-col-10, .adt-col-11, .adt-col-12 {
    float: left;
    padding: 0 8px;
  }
}
.adt-flex {
  display: flex;
}
.adt-flex--container {
  min-height: 100vh;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.adt-flex--start {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.adt-flex--end {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.adt-flex--row {
  -ms-flex-direction: row;
  flex-direction: row;
}
.adt-flex--column {
  -ms-flex-direction: column;
  flex-direction: column;
}
.adt-flex--row_reverse {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.adt-flex--column_reverse {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.adt-flex--wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.adt-flex--nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.adt-flex--wrap_reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.adt-justify--content_start {
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.adt-justify--content_end {
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.adt-justify--content_center {
  -ms-flex-pack: center;
  justify-content: center;
}
.adt-justify--content_between {
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.adt-justify--content_around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.adt-justify--content_evenly {
  -ms-flex-pack: distribute;
  justify-content: space-evenly;
}

.adt-align--items_start {
  -ms-flex-align: start;
  align-items: flex-start;
}
.adt-align--items_end {
  -ms-flex-align: end;
  align-items: flex-end;
}
.adt-align--items_center {
  -ms-flex-align: center;
  align-items: center;
}
.adt-align--items_baseline {
  -ms-flex-align: baseline;
  align-items: baseline;
}
.adt-align--items_stretch {
  -ms-flex-align: stretch;
  align-items: stretch;
}

.adt-form {
  border: 1px solid transparent;
  border-radius: 10px;
  margin: 0;
  padding: 8px;
}
.adt-form--label {
  display: inline-block;
  font-size: 11px;
  position: relative;
  top: 2px;
  left: 18px;
}
.adt-form--input {
  padding: 8px 16px;
  background: #f9f9f9;
  border-radius: 30px;
  border: 1px solid transparent;
  color: #222;
  margin: 5px 0;
  width: 100%;
}
.adt-form--input::placeholder {
  color: #999;
  font-size: 13px;
}
.adt-form--input_file {
  cursor: pointer;
  position: relative;
  min-width: 41.6666666667%;
}
.adt-form--input_file .msg-file {
  color: #999;
  font-size: 13px;
}
.adt-form--input_file i {
  position: absolute !important;
  font-size: 13px !important;
  right: 0;
  padding: 7px 13px;
}
.adt-form--input_file .input-file {
  width: 0px;
  height: 0px;
  overflow: hidden;
}
.adt-form--select {
  padding: 8px 16px;
  background: #f9f9f9;
  border-radius: 30px;
  border: 1px solid transparent;
  color: #222;
  margin: 5px 0;
  width: 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: right 0.75rem center;
  cursor: pointer;
}
.adt-form--check {
  border: 1px solid var(--color-red-dark);
  padding: 0 9px;
  margin-right: 4px;
  border-radius: 5px;
  cursor: pointer;
  float: left;
  margin-top: 2px;
  height: 20px;
  position: relative;
}
.adt-form--check i {
  color: #fff !important;
  left: 3px;
  position: absolute !important;
  font-size: 13px !important;
}
.adt-form .adt-btn {
  margin-left: auto;
}
.adt-form--info {
  padding: 15px 0 0 20px;
  font-size: 11px;
}
.adt-form i {
  font-size: 6px;
  color: var(--color-red);
  position: relative;
  bottom: 3px;
}

.adt-padding--site {
  padding: 0 8%;
}
.adt-padding--top_bottom {
  padding: 4% 0;
}
.adt-padding--top-8 {
  padding-top: 8%;
}
.adt-padding--top-4 {
  padding-top: 4%;
}
.adt-padding--bottom-2 {
  padding-bottom: 2%;
}
.adt-padding--bottom-4 {
  padding-bottom: 4%;
}
.adt-padding--bottom-8 {
  padding-bottom: 8%;
}
.adt-padding--bottom-10 {
  padding-bottom: 10px;
}
.adt-padding-4-8 {
  padding: 4% 8%;
}
.adt-padding-2-8 {
  padding: 2% 8%;
}
.adt-padding-2-8-4 {
  padding: 2% 8% 4%;
}
.adt-padding-0 {
  padding: 0;
}
.adt-padding--right-0 {
  padding-right: 0;
}
.adt-padding--right-8 {
  padding-right: 8%;
}
.adt-padding--right-20 {
  padding-right: 20px;
}
.adt-padding--left-15 {
  padding-left: 15%;
}
.adt-padding--left-10 {
  padding-left: 10px;
}
.adt-padding--left-0 {
  padding-left: 0;
}

@media screen and (max-width: 994px) {
  .adt-mobile-show {
    display: block;
  }

  .adt-mobile-hide {
    display: none;
  }

  .adt-col--sm-none {
    -ms-flex: 0;
    flex: 0;
    max-width: 0;
  }
  .adt-col--sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .adt-col--sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .adt-col--sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .adt-col--sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .adt-col--sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .adt-col--sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .adt-col--sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .adt-col--sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .adt-col--sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .adt-col--sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .adt-col--sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .adt-col--sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .adt-spacing-sm--top_bottom {
    padding: 4% 0;
  }
  .adt-spacing-sm--top-80 {
    padding-top: 80%;
  }
  .adt-spacing-sm--top-4 {
    padding-top: 4%;
  }
  .adt-spacing-sm--bottom-2 {
    padding-bottom: 2%;
  }
  .adt-spacing-sm--bottom-4 {
    padding-bottom: 4%;
  }
  .adt-spacing-sm--bottom-8 {
    padding-bottom: 8%;
  }
  .adt-spacing-sm--bottom-10 {
    padding-bottom: 10px;
  }
  .adt-spacing-sm-0 {
    padding: 0;
  }
  .adt-spacing-sm--right-0 {
    padding-right: 0;
  }
  .adt-spacing-sm--left-10 {
    padding-left: 10px;
  }
  .adt-spacing-sm--left-0 {
    padding-left: 0;
  }
}
/*Carousel*/
.box {
  width: 100%;
  transition: right 1s;
  right: 0;
  position: relative;
}

.item {
  width: 100%;
  margin: 0 10px;
  padding: 10px;
  min-height: 120px;
  float: left;
}
.item-left {
  position: absolute;
  top: 45%;
  left: 1%;
  z-index: 2;
  cursor: pointer;
}
.item-right {
  position: absolute;
  top: 45%;
  right: 1%;
  cursor: pointer;
  z-index: 2;
}

.itens {
  width: 100%;
  overflow: hidden;
  padding-left: 20px;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 994px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1140px;
  }
}

.adt-absolute {
  position: absolute;
}

.adt-fixed {
  position: fixed;
}

.adt-relative {
  position: relative;
}

.adt-desktop--show {
  display: block;
}

.adt-desktop--hide {
  display: none;
}

.adt-hidden {
  overflow: hidden;
}

.disabled {
  opacity: 0.3;
}

.adt-text--left {
  text-align: left;
}
.adt-text--center {
  text-align: center;
}
.adt-text--right {
  text-align: right;
}
.adt-text--justify {
  text-align: justify;
}
.adt-text--nowrap {
  white-space: nowrap;
}
.adt-text--wrap {
  white-space: normal;
}
.adt-text--bolder {
  font-weight: bold;
}

.adt-content--init {
  vertical-align: top;
}
.adt-content--end {
  vertical-align: bottom;
}
.adt-content--middle {
  vertical-align: middle;
}
.adt-content--center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}
.adt-content--between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}
.adt-content--around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}
.adt-content--stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.adt-title {
  font-weight: normal;
  line-height: 1;
}

h1,
.adt-title-h1 {
  font-size: 2.5rem;
}

h2,
.adt-title-h2 {
  font-size: 2rem;
}

h3,
.adt-title-h3 {
  font-size: 1.75rem;
}

h4,
.adt-title-h4 {
  font-size: 1.5rem;
}

h5,
.adt-title-h5 {
  font-size: 1.25rem;
}

h6,
.adt-title-h6 {
  font-size: 1rem;
}

.adt-image {
  max-width: 100%;
  height: auto;
}

.adt-money {
  margin: 0;
  position: relative;
  font-weight: 700;
}
.adt-money small {
  font-weight: 400;
  position: relative;
}

/*# sourceMappingURL=theme.css */
