/* ---------------------------------------------------
IMPORTS
--------------------------------------------------- */
/* --------------------------------------------------- 
Buttons
--------------------------------------------------- */
.btn--custom {
  position: relative;
  border-radius: 5px 30px 30px 30px;
  /* Raised */
  -webkit-box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25), -6px -6px 12px #FFFFFF, inset -3px -3px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25), -6px -6px 12px #FFFFFF, inset -3px -3px 0px rgba(0, 0, 0, 0.05);
  font-family: "Raleway";
  font-size: 0.875rem;
  line-height: 1rem;
  text-transform: uppercase;
  padding: 1.188rem 1.5rem;
  font-weight: 900;
  border: 1px solid rgba(255, 255, 255, 0.4);
  -webkit-transition: .3s;
  transition: .3s;
}

.btn--custom:focus, .btn--custom:active {
  color: white;
  -webkit-box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25), -6px -6px 12px #FFFFFF, inset -3px -3px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25), -6px -6px 12px #FFFFFF, inset -3px -3px 0px rgba(0, 0, 0, 0.05);
}

.btn--custom.dark {
  -webkit-box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.4), -6px -6px 12px rgba(255, 255, 255, 0.3), inset -3px -3px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.4), -6px -6px 12px rgba(255, 255, 255, 0.3), inset -3px -3px 0px rgba(0, 0, 0, 0.05);
}

.btn--custom.dark:focus, .btn--custom.dark:active {
  -webkit-box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.4), -6px -6px 12px rgba(255, 255, 255, 0.3), inset -3px -3px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.4), -6px -6px 12px rgba(255, 255, 255, 0.3), inset -3px -3px 0px rgba(0, 0, 0, 0.05);
}

.btn--custom:hover {
  padding: 1.188rem 1.8rem;
}

.btn-primary {
  background-color: #00a3ff;
  color: white !important;
}

.btn-primary:hover {
  background-color: #0085e1;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-whats {
  background-color: #43C75E;
  color: white !important;
  z-index: 10;
  border-radius: 30px;
  padding: 0;
  width: 48px;
  height: 48px;
  font-size: 0.8rem;
  -webkit-box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25) !important;
          box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25) !important;
  border: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn-whats:hover {
  background-color: #25a940;
  border: 0;
  padding: 0;
}

.btn-chery {
  background-color: #ff006b;
  color: white !important;
}

.btn-chery:hover {
  background-color: #e1004d;
}

.btn--loading {
  pointer-events: none;
  color: #ff80b5 !important;
  text-shadow: -1px -1px 0 rgba(0, 0, 0, 0.1);
}

.btn--loading:after {
  content: '';
  vertical-align: middle;
  margin: 0 -1em 0 .5em;
  border-radius: 50%;
  display: inline-block;
  width: 1em;
  height: 1em;
  font-size: 18px;
  -webkit-animation: rotation .5s infinite linear;
          animation: rotation .5s infinite linear;
  border-top: 0.1em solid rgba(255, 255, 255, 0.2);
  border-right: 0.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 0.1em solid rgba(255, 255, 255, 0.2);
  border-left: .1em solid #ffffff;
}

.btn--float {
  position: fixed;
  border-radius: 30px 30px 5px 30px;
  right: .8rem;
  bottom: .8rem;
  -webkit-transform: translateY(120px);
          transform: translateY(120px);
  -webkit-transition: .3s;
  transition: .3s;
}

.btn--float.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes rotation {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* --------------------------------------------------- */
html {
  font-size: 16px;
  scroll-behavior: smooth;
}

*:focus,
*:active {
  outline: 0 !important;
}

/* --------------------------------------------------- */
.font-title {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
}

.font-body {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: normal;
}

hr {
  border: 0;
  height: 4px;
  /* Depressed */
  -webkit-box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15), 1px 1px 0px #FFFFFF;
          box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.15), 1px 1px 0px #FFFFFF;
}

/* --------------------------------------------------- */
.text-default {
  color: #4A4A6F;
}

.text-chery {
  color: #ff006b;
}

.text-gray-light {
  color: #f5f9fc;
}

.text-dark-blue {
  color: #253359;
}

.text-gray {
  color: #e3e9f2;
}

.text-blue, .text-primary {
  color: #00a3ff;
}

.text-purple {
  color: #a75ebd;
}

.text-royalblue {
  color: #3870ff;
}

.text-green {
  color: #05E4D7;
}

.text-yellow {
  color: #FFCF78;
}

.text-orange {
  color: #FF7C60;
}

/* --------------------------------------------------- */
.bg-gradient {
  position: relative;
  /* Gradient / Primary */
  background: linear-gradient(210.73deg, rgba(11, 32, 91, 0.9) -0.24%, rgba(26, 191, 243, 0.9) 100.17%);
}

.bg-gradient > * {
  position: relative;
}

.bg-gradient.stripes:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(-45deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.05) 30px, transparent 30px, transparent 60px);
}

.bg-bg {
  background-color: #f1f2fb;
}

.bg-gray-dark {
  background-color: #333639;
}

/* --------------------------------------------------- */
body {
  background-color: #f1f2fb;
  color: #4A4A6F;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: normal;
  font-size: 1rem;
  overflow-x: hidden;
}

body .modal-open {
  overflow: hidden;
}

body.nav-sticky {
  padding-top: 120px;
}

.navbar {
  background-color: #f1f2fb;
  min-height: 120px;
  z-index: 10;
  -webkit-filter: blur(0);
          filter: blur(0);
}

@media (max-width: 576px) {
  .navbar {
    min-height: 80px;
  }
}

.navbar .nav-link {
  font-size: 1rem;
  color: #4A4A6F;
}

.navbar.scroll {
  background-color: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  -webkit-box-shadow: 0 0 32px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 32px rgba(0, 0, 0, 0.07);
  min-height: 90px;
  -webkit-animation: moveIn .5s ease forwards;
          animation: moveIn .5s ease forwards;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

@media (max-width: 576px) {
  .navbar.scroll {
    min-height: 60px;
  }
}

@-webkit-keyframes moveIn {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes moveIn {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  100% {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

.navbar-brand img {
  width: 280px;
}

@media (max-width: 340px) {
  .navbar-brand img {
    width: 240px;
  }
}

.navbar-nav {
  margin: .5rem 0 1.5rem;
}

.navbar-nav .line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 992px) {
  .navbar-nav .line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}

/* --------------------------------------------------- 
HERO
--------------------------------------------------- */
.hero {
  position: relative;
  min-height: 615px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem;
}

.hero h1 {
  font-size: 4rem;
  line-height: 1.1;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  color: #4A4A6F;
}

@media (min-width: 993px) and (max-width: 1200px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2.4rem;
  }
}

@media (max-width: 400px) {
  .hero h1 {
    font-size: 2rem;
  }
}

.hero h1 span {
  display: inline-block;
  background-color: #A09ED5;
  color: white;
  padding: 0 .25em;
}

.hero p {
  margin: 1.5rem 0;
}

.hero .hero-img {
  width: 100%;
  height: auto;
  margin: 3rem 0 4rem;
}

.hero .veja-mais {
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #4A4A6F;
  text-decoration: none;
}

.hero .veja-mais h6 {
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
}

.hero .veja-mais .arrow {
  background: url('data:image/svg+xml;charset=UTF-8,<svg width="18" height="11" viewBox="0 0 18 11" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M17.4766 1.0625L16.7344 0.28125C16.5391 0.0859375 16.2266 0.0859375 16.0703 0.28125L9 7.35156L1.89062 0.28125C1.73438 0.0859375 1.42188 0.0859375 1.22656 0.28125L0.484375 1.0625C0.289062 1.21875 0.289062 1.53125 0.484375 1.72656L8.64844 9.89062C8.84375 10.0859 9.11719 10.0859 9.3125 9.89062L17.4766 1.72656C17.6719 1.53125 17.6719 1.21875 17.4766 1.0625Z" fill="white"/></svg>') no-repeat center/auto;
  border-radius: 60px;
  width: 60px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #00a3ff;
  margin: .5em auto 0 auto;
  /* Raised */
  -webkit-box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25), -6px -6px 12px #FFFFFF, inset -3px -3px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.25), -6px -6px 12px #FFFFFF, inset -3px -3px 0px rgba(0, 0, 0, 0.05);
}

/* --------------------------------------------------- 
Section Block & block title
--------------------------------------------------- */
section.block {
  padding: 6.25rem 0;
}

section.block .block-title {
  max-width: 640px;
  margin: 2rem auto 1rem;
  padding: 0 1rem;
  position: relative;
}

section.block .block-title:before {
  content: '';
  display: block;
  position: absolute;
  top: -20px;
  height: 12px;
  width: 90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

section.block .block-title.orange span {
  color: #FF7C60;
}

section.block .block-title.orange:before {
  background-color: #FF7C60;
}

section.block .block-title.primary span {
  color: #00a3ff;
}

section.block .block-title.primary:before {
  background-color: #00a3ff;
}

section.block .block-title h2 {
  font-size: 2.875rem;
  color: #253359;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  margin: 0 0 .8rem 0;
  text-align: center;
}

@media (max-width: 768px) {
  section.block .block-title h2 {
    font-size: 2rem;
  }
}

section.block .block-title p {
  text-align: center;
  width: 90%;
  margin: 0 auto;
}

/* --------------------------------------------------- 
LOGOS
--------------------------------------------------- */
.logos-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 2rem 0;
}

.logos-wrapper .client-logo {
  width: 215px;
  height: 75px;
  margin: 1rem;
}

.logos-wrapper .client-logo img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

/* --------------------------------------------------- 
BLOCKQUOTE
--------------------------------------------------- */
.blockquote {
  position: relative;
  padding-left: 36px;
  font-size: 30px;
  line-height: 1;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-weight: 800;
  margin: 2.5rem 0 0;
}

.blockquote .blockquote-footer {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: normal;
  margin: 1rem 0;
  font-size: 1.125rem;
  font-style: italic;
  font-weight: 400;
}

.blockquote .blockquote-footer:before {
  display: none;
}

.blockquote .blockquote-footer cite {
  font-weight: 700;
  display: block;
  margin: .4em 0;
}

.blockquote:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 20px;
  background: url('data:image/svg+xml;charset=UTF-8,<svg width="26" height="19" viewBox="0 0 26 19" fill="none" xmlns="http://www.w3.org/2000/svg"><path opacity="0.3" d="M24.28 0.263977C25.3467 0.263977 25.88 0.605311 25.88 1.28798C25.88 1.58664 25.752 1.79998 25.496 1.92798C25.24 2.05598 24.8987 2.18398 24.472 2.31198C23.32 2.61065 22.3387 3.01598 21.528 3.52798C20.7173 4.03998 20.0773 4.67998 19.608 5.44798C19.1813 6.17331 18.968 7.00531 18.968 7.94398C18.968 8.75465 19.224 9.39465 19.736 9.86398C20.248 10.2906 20.8667 10.5893 21.592 10.76C22.36 10.9733 23 11.4 23.512 12.04C24.0667 12.6373 24.344 13.448 24.344 14.472C24.344 15.5813 23.896 16.52 23 17.288C22.104 18.0133 21.08 18.376 19.928 18.376C18.008 18.376 16.4507 17.7786 15.256 16.584C14.0613 15.3466 13.464 13.7466 13.464 11.784C13.464 10.0346 13.784 8.47731 14.424 7.11198C15.064 5.70398 15.896 4.48798 16.92 3.46398C17.9867 2.39731 19.1387 1.60798 20.376 1.09598C21.656 0.541311 22.9573 0.263977 24.28 0.263977ZM11.48 0.263977C12.5467 0.263977 13.08 0.605311 13.08 1.28798C13.08 1.58664 12.952 1.79998 12.696 1.92798C12.44 2.05598 12.0987 2.18398 11.672 2.31198C10.52 2.61065 9.53867 3.01598 8.728 3.52798C7.91734 4.03998 7.27734 4.67998 6.808 5.44798C6.38134 6.17331 6.168 7.00531 6.168 7.94398C6.168 8.75465 6.424 9.39465 6.936 9.86398C7.448 10.2906 8.06667 10.5893 8.792 10.76C9.56 10.9733 10.2 11.4 10.712 12.04C11.2667 12.6373 11.544 13.448 11.544 14.472C11.544 15.5813 11.096 16.52 10.2 17.288C9.304 18.0133 8.28 18.376 7.128 18.376C5.208 18.376 3.65067 17.7786 2.456 16.584C1.26133 15.3466 0.664001 13.7466 0.664001 11.784C0.664001 10.0346 0.984001 8.47731 1.624 7.11198C2.264 5.70398 3.096 4.48798 4.12 3.46398C5.18667 2.39731 6.33867 1.60798 7.576 1.09598C8.856 0.541311 10.1573 0.263977 11.48 0.263977Z" fill="%23E1DDF3"/></svg>') no-repeat center/auto;
}

p.featured {
  font-weight: 700;
  font-size: 1.375rem;
  margin: 0;
}

/* --------------------------------------------------- 
INFOGRAPHICS BLOCK
--------------------------------------------------- */
.infoGraphics {
  margin-top: 9.5rem;
}

.infoGraphics .text-blk {
  max-width: 450px;
  margin: 2rem 0;
}

.infoGraphics .text-blk.right {
  float: right;
  text-align: right;
}

.infoGraphics .text-blk h3 {
  line-height: 1;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 2.625rem;
}

@media (max-width: 400px) {
  .infoGraphics .text-blk h3 {
    font-size: 2rem;
  }
}

.infoGraphics .text-blk h3 span {
  color: #FF7C60;
}

.infoGraphics .text-blk p {
  margin: 1rem 0 1.3rem;
}

@media (max-width: 768px) {
  .infoGraphics .text-blk {
    float: none !important;
    text-align: center !important;
    margin: 1em auto;
  }
}

.infoGraphics-img {
  width: 100%;
  height: auto;
  max-height: 315px;
  max-width: 420px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* --------------------------------------------------- 
TEXT FRAME
--------------------------------------------------- */
.text-frm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-bottom: 5rem;
  max-width: 380px;
  height: 380px;
}

@media (max-width: 576px) {
  .text-frm {
    font-size: 85%;
  }
}

.text-frm:before {
  content: '';
  display: block;
  width: 380px;
  height: 380px;
  position: absolute;
  z-index: 0;
  border-radius: 3px;
  opacity: .5;
}

@media (max-width: 576px) {
  .text-frm:before {
    width: 300px;
    height: 320px;
  }
}

.text-frm.left {
  padding-right: 1.5rem;
  margin-left: 80px;
}

@media (max-width: 576px) {
  .text-frm.left {
    margin-left: 30px;
  }
}

.text-frm.left:before {
  margin-left: -80px;
}

@media (max-width: 576px) {
  .text-frm.left:before {
    margin-left: -30px;
  }
}

.text-frm.right {
  text-align: right;
  float: right;
  margin-right: 140px;
  height: 334px;
  margin-bottom: 0;
  margin-top: 5rem;
}

@media (max-width: 576px) {
  .text-frm.right {
    margin-right: 35px;
  }
}

.text-frm.right:before {
  right: 0;
  margin-right: -140px;
  height: 334px;
}

@media (max-width: 576px) {
  .text-frm.right:before {
    margin-right: -40px;
  }
}

.text-frm.right h2 {
  font-size: 1.875rem;
}

.text-frm.green:before {
  border: 10px solid #05E4D7;
}

.text-frm.orange:before {
  border: 10px solid #FF7C60;
  opacity: .3;
}

.text-frm > * {
  position: relative;
}

.text-frm h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 2.5em;
  color: #253359;
}

.text-frm h2 span {
  color: #FF7C60;
}

.text-frm p {
  font-size: 1.125em;
  max-width: 360px;
}

/* --------------------------------------------------- 
TOPICS
--------------------------------------------------- */
.topic {
  margin-bottom: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.topic .icon {
  margin-right: 1.625rem;
}

.topic h3 {
  color: #253359;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-variant-numeric: lining-nums;
  -webkit-font-feature-settings: 'lnum';
  font-feature-settings: 'lnum' on;
}

.topic h3 span {
  color: #05E4D7;
}

.topic ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.topic ul li {
  text-transform: uppercase;
  color: #FF7C60;
  font-weight: 800;
  font-size: 0.875rem;
}

/* --------------------------------------------------- 
PRODUCTS
--------------------------------------------------- */
.products {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 3rem;
}

.products h4 {
  font-size: 1rem;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-weight: 800;
  color: #253359;
}

.products h4 span {
  display: block;
  font-size: 2.625rem;
  font-weight: 900;
}

.products-blk {
  background: #f1f2fb;
  -webkit-box-shadow: -16px -16px 32px #FFFFFF, 16px 16px 32px rgba(0, 0, 0, 0.08), inset 2px 2px 0px #FFFFFF;
          box-shadow: -16px -16px 32px #FFFFFF, 16px 16px 32px rgba(0, 0, 0, 0.08), inset 2px 2px 0px #FFFFFF;
  border-radius: 4px;
  padding: 2.4rem 3.625rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 60% 40%;
      grid-template-columns: 60% 40%;
}

@media (max-width: 475px) {
  .products-blk {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

.products-blk > div {
  margin: 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-transform: uppercase;
}

.products-blk > div img {
  width: 54px;
  height: 54px;
  -o-object-fit: contain;
     object-fit: contain;
}

.products-blk > div h6 {
  font-size: 0.8125rem;
  font-weight: 600;
}

.products-blk > div img {
  margin-right: 1rem;
}

/* --------------------------------------------------- 
TECH BLOCK
--------------------------------------------------- */
.tecnologias {
  margin-top: 3.5em;
}

@media (max-width: 576px) {
  .tecnologias {
    padding: 0 2rem;
  }
}

.tecnologias h5 {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  color: #00a3ff;
  font-size: 1.125em;
  margin-top: 2.5em;
}

.tecnologias img {
  margin: 1.3em 0;
  height: 53px;
  width: auto;
}

.tecnologias h4 {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-weight: 700;
  font-size: 1.25em;
}

.tecnologias p {
  font-size: 0.875em;
  max-width: 400px;
}

.tecnologias ul {
  padding-left: 1em;
}

.tecnologias ul li {
  line-height: 2;
  font-size: 0.875em;
}

/* --------------------------------------------------- 
COPYRIGHT
--------------------------------------------------- */
.copyright {
  padding: 2rem 0;
  background-color: #253359;
  text-align: center;
  color: white;
}

.copyright .container {
  opacity: .5;
}

/* --------------------------------------------------- 
MODAL
--------------------------------------------------- */
button.close {
  font-weight: 400;
  font-size: 2em;
  position: absolute;
  right: 2rem;
  top: 2rem;
  background-color: rgba(51, 51, 51, 0.8);
  opacity: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 99;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 6px;
  -webkit-transition: .3s;
  transition: .3s;
}

button.close:hover {
  background-color: white;
}

button.close:hover span {
  color: #333 !important;
}

.modal .modal-640 {
  max-width: 640px;
}

.modal h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  line-height: 1;
  margin-top: 1.8rem;
}

@media (max-width: 576px) {
  .modal h2 {
    font-size: 1.8rem;
  }
}

.modal .form-group {
  margin-bottom: .4rem;
}

.modal .chartFrame {
  max-width: 95vw;
  max-height: 95vh;
  border-radius: 8px;
  margin: auto;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.modal .chartFrame:not(:only-child) {
  margin-top: 2rem;
}

.modal .modal-full {
  width: 100vw;
  height: 100vh;
  max-width: unset;
  max-height: unset;
  margin: 0;
}

.modal .modal-full .modal-content {
  height: 100%;
  border-radius: 0;
  background-color: rgba(51, 51, 51, 0.7);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: relative;
}

.modal .modal-full .modal-content .modal-body {
  padding: 0;
  overflow-y: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.radio-h {
  width: 100%;
  padding: 0;
  margin: 1.5rem 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.radio-h input {
  display: none;
}

.radio-h li {
  text-align: center;
  display: block;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.radio-h label {
  position: relative;
  cursor: pointer;
}

.radio-h label img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
}

@media (max-width: 375px) {
  .radio-h label img {
    max-width: 45px;
  }
}

.radio-h label:after {
  content: '';
  display: block;
  font-size: 24px;
  width: 1em;
  height: 1em;
  margin: 1rem auto;
  -webkit-transition: background-image .3s;
  transition: background-image .3s;
  background-image: url('data:image/svg+xml, <svg width="24px" height="24px" viewBox="0 0 16 16" class="bi bi-circle" fill="%23ccc" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M8 15A7 7 0 1 0 8 1a7 7 0 0 0 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/></svg>');
  background-repeat: no-repeat;
  background-size: 24px auto;
}

.radio-h label:before {
  display: block;
  padding: .1em 0;
  min-width: 24px;
  border-radius: 20px;
  background-color: #00a3ff;
  text-align: center;
  margin: -1rem auto 0;
  font-size: 11px;
  color: white;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 46px;
  font-weight: 600;
}

.radio-h label[for=city]:before {
  content: 'GG';
}

.radio-h label[for=building]:before {
  content: 'G';
}

.radio-h label[for=house]:before {
  content: 'M';
}

.radio-h label[for=tent]:before {
  content: 'P';
}

.radio-h input:checked + label:after {
  background-image: url('data:image/svg+xml, <svg width="24px" height="24px" viewBox="0 0 16 16" class="bi bi-check-circle-fill" fill="%231ABFF3" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M16 8A8 8 0 1 1 0 8a8 8 0 0 1 16 0zm-3.97-3.03a.75.75 0 0 0-1.08.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-.01-1.05z"/></svg>');
}

/* --------------------------------------------------- 
FORMS
--------------------------------------------------- */
.form-control::-webkit-input-placeholder {
  color: #A09ED5;
}

.form-control:-moz-placeholder {
  color: #A09ED5;
}

.form-control::-moz-placeholder {
  color: #A09ED5;
}

.form-control:-ms-input-placeholder {
  color: #A09ED5;
}

.form-control::-ms-input-placeholder {
  color: #A09ED5;
}

.form-group label {
  font-size: 0.875rem;
  margin-bottom: .2rem;
}

/* --------------------------------------------------- 
CTA Dialog
--------------------------------------------------- */
.cta-whats {
  position: absolute;
  right: 1.4rem;
  bottom: -24px;
  z-index: 1031;
}

.cta-dialog {
  text-align: center;
  background-color: rgba(37, 51, 89, 0.5);
  -webkit-backdrop-filter: blur(16px);
          backdrop-filter: blur(16px);
  position: fixed;
  right: 1.5em;
  bottom: 1.5em;
  border-radius: 1em;
  padding: 1.9em;
  max-width: 16.5em;
  color: white;
  -webkit-transform: translateY(1.5rem);
          transform: translateY(1.5rem);
  opacity: 0;
  -webkit-transition: .5s;
  transition: .5s;
}

.cta-dialog h6 {
  font-size: 1.1em;
  font-family: "Raleway", sans-serif;
  font-weight: 900;
  font-weight: 800;
  padding-bottom: 1em;
}

.cta-dialog.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.cta-dialog button {
  margin: 0 auto;
  font-size: .8em;
  white-space: nowrap;
  padding: 1em 1.5em;
}

.cta-dialog button:hover {
  padding: 1em 1.5em;
}

@media (max-width: 420px) {
  .cta-dialog {
    font-size: 85%;
  }
}
/*# sourceMappingURL=main.css.map */