/*font*/
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
  --red: #e65d4a;
  --green: #389274;
  --white: #fff;
  --black: #000;
  --grey: #e9e8e4;
  --blue: #2a245e;
}

html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 1.1;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: never;
}

a:hover {
  color: #000000;
}
/* section animations */
section, section .row{
  opacity: 0;
  transform: translateY(40px);
  transition:
  opacity 0.8s ease,
  transform 0.8s ease;
}
section.in-view, section .row.in-view{
  opacity: 1;
  transform: translateY(0);
}
section.nav, section.nav .row, section.header, section.header .row, section#section-ads, section#section-ads .row {
  opacity: 1 !important;
  transform: unset !important;
}
/* general */
.title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 50px 0;
}
.title span {
  background: url('/img/under.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.cta {
  min-width: 140px;
  padding: 0 25px;
  height: 50px;
  border: none;
  background: var(--red);
  color: var(--white);
  border-radius: 50px;
  font-size: 18px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  margin: 0 auto;
  transition: all 0.6s ease;
}
.cta:hover {
  box-shadow: inset 8em 0 0 0 var(--white), inset -8em 0 0 0 var(--white);
  transform: scale(1.05);
  color: var(--red);
}
/* nvabar */
.nav {
  width: 100%;
  position: fixed;
  z-index: 44;
  margin-top: 20px;
}
.nav .container {
  border-radius: 50px;
  padding: 10px 20px;
  transition: all 0.6s ease;
}
.nav .container.scrolling {
  transform: scale(0.9);
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}
.nav-menu ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 50px;
  color: var(--white);
  padding-left: 10px;
}
.nav-menu ul li {
  cursor: pointer;
  position: relative;
  transition: color 0.6s ease;
  font-size: 18px;
}
.nav-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: var(--white);
  transition: width 0.6s ease;
}
.nav-menu ul li:hover::after {
  width: 100%;
}
.nav-menu ul li:hover {
  color: var(--gold);
}
.logo {
  text-align: right;
}
.logo img {
  height: 40px;
}
/* header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  color: var(--white);
}
.header .left, .header .right {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header .left {
  width: 100%;
  padding: 130px 40px;
  background: var(--blue);
  transition: all 0.6s ease;
}
.header .left.active {
  width: 50%;
}
.header .left img {
  width: 70%;
  max-width: 600px;
  border-radius: 20px;
}
.header .left h1 {
  font-size: clamp(24px, 3vw, 45px);
  text-wrap: balance;
  line-height: 1.2;
  margin: 40px auto 30px auto;
  width: 600px;
  max-width: 90%;
}
.header .left h1 span {
  background: url('/img/under.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.header .right {
  background: var(--red);
  opacity: 0;
  width: 0;
  transition: all 0.6s ease;
}
.header .right.active {
  width: 50%;
  opacity: 1;
  padding: 100px 40px;
}
.header .right h4 {
  font-size: clamp(16px, 2.5vw, 28px);
  font-weight: 700;
  width: 600px;
  max-width: 90%;
  text-wrap: balance;
  margin: 0 auto 40px auto;
}
/* form */
.contactform{
  width: 500px;
  max-width: 100%;
  margin: 0 auto;
  background: var(--white);
  border-radius: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 30px 40px 40px 40px;
}
.form-step h3 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
  text-wrap: balance;
  margin-bottom: 15px;
}
.form-step {
  display: none;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.form-step.active {
  display: flex;
}
.radio-opt {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.radio-button {
  width: 100%;
  margin: 8px 0;
}
.radio-button input[type="radio"] {
  position: absolute; 
  opacity: 0; 
  width: 0;
  height: 0;
}
.radio-button label {
  background: var(--white);
  border: 1px solid var(--blue);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 330px;
  max-width: 100%;
  height: 50px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 10px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 700;
  padding: 0 20px;
}
.radio-button label img {
  height: 25px;
  filter: brightness(0) saturate(100%) invert(8%) sepia(70%) saturate(3926%) hue-rotate(244deg) brightness(79%) contrast(86%);
}
.radio-opt-normal .radio-button label {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 0 10px;
}
.radio-button label:hover, .radio-button input[type="radio"]:checked + label {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: var(--white);
}
.radio-button label:hover img, .radio-button input[type="radio"]:checked + label img {
  filter: brightness(0) invert(1);
}
.radio-button label:hover {
  transform: scale(1.05);
}
.partners label img, .partners label:hover img, .partners input[type="radio"]:checked + label img {
  filter: none;
}
.form-input {
  margin: 5px 0;
}
.form-input label {
  text-align: left;
  margin: 0 0 5px 0;
  padding-left: 17px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  width: 280px;
  max-width: 100%;
}
.form-input input {
  width: 330px;
  max-width: 100%;
  height: 45px;
  border-radius: 50px;
  border: 1px solid var(--blue);
  font-size: 16px;
  color: var(--blue) !important;
  font-weight: 400 !important;
  padding: 0 15px;
  -webkit-appearance: none;
  text-align: left !important;
  line-height: 1;
  margin: 0 auto;
}
.form-input input:focus-visible {
  outline: none !important;
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.4);
}
::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.form-input input.error {
  border: 1px solid var(--red);
  background-image: url('/img/icons/fail.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.form-input input.valid {
  border: 1px solid var(--green);
  background-image: url('/img/icons/check.svg');
  background-position: 96% center;
  background-size: 20px;
  background-repeat: no-repeat;
}
.form-check {
  text-align: center;
  padding: 0;
  margin-top: 5px;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 18px;
  cursor: pointer;
  line-height: 1;
  color: var(--blue);
  font-size: 11px;
  font-weight: 400;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--blue);
  border-radius: 3px;
  padding-right: 5px;
  color: var(--blue);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: -1px;
  font-size: 14px;
}
#header_politica_link, #footer_politica_link {
  color: var(--blue);
  text-decoration: none;
}
#header_politica_link:hover, #footer_politica_link:hover {
  color: var(--red);
  text-decoration: underline;
}
label.error, #terms-error {
  width: 100%;
  text-align: center;
  font-size: 10px;
  color: var(--red);
  font-weight: 400;
  padding: 0;
  margin: 0;
  line-height: 1;
}
.contactform .cta {
  min-width: 180px;
  font-size: 18px;
  margin-top: 10px;
}
.contactform .cta:hover {
  box-shadow: inset 8em 0 0 0 var(--blue), inset -8em 0 0 0 var(--blue);
  color: var(--white);
}
/* section 1 */
.section1 {
  padding: 60px 0 100px 0;
  text-align: center;
  background: var(--grey);
}
.cards-box {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
}
.vant-card {
  width: 40%;
  min-height: 465px;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.6s ease;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-direction: column;
  background-size: cover !important;
  background-position: center bottom !important;
  background-repeat: no-repeat !important;
}
.card1 {
  background: url('/img/card1.png');
}
.card2 {
  background: url('/img/card2.png');
}
.card3 {
  background: url('/img/card3.png');
}
.card-info {
  background: var(--blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 20px;
  padding: 30px;
  color: var(--white);
  position: relative;
  transition: all 0.6s ease-in-out;
}
.card-txt {
  width: 70%;
  text-align: left;
}
.card-txt h6 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px 0;
  transition: all 0.6s ease-in-out;
}
.card-txt p {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(8px);
  transition: all 0.6s ease;
}
.vant-card:hover .card-txt p {
  opacity: 1;
  max-height: 160px;
  transform: translateY(0);
}
.arrow-cta {
  position: absolute;
  right: 20px;
  bottom: 20px;
  padding: 0;
  width: 60px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--red);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease;
}
.arrow-cta img {
  width: 20px;
}
.arrow-cta:hover {
  background: var(--red);
  transform: scale(1.1);
}
/* section 2 */
.section2 .container-fluid {
  padding: 0;
}
.section2 .left {
  min-height: 600px;
  background: var(--red);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 70px 0;
}
.section2 .left img {
  width: 600px;
  max-width: 85%;
  border-radius: 20px;
}
.new-txt {
  width: 380px;
  min-height: 180px;
  border-radius: 20px;
  background: var(--white);
  padding: 30px;
  position: absolute;
  z-index: 11;
  right: 10%;
  bottom: 5%;
  color: var(--blue);
}
.new-txt h6 {
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 700;
  margin-bottom: 20px;
}
.new-txt p {
  margin: 0;
  line-height: 1.2;
  font-size: 16px;
}
.section2 .right {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 70px 100px;
  background: var(--blue);
}
.news {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  gap: 0 40px;
  margin: 20px auto;
}
.news-txt {
  width: 55%;
  text-wrap: balance;
}
.news-txt h6 {
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 700;
  margin-bottom: 20px;
}
.news-txt p, .news-txt ul li {
  font-size: clamp(14px, 2vw, 20px);
}
.news img {
  border-radius: 20px;
  width: 35%;
}
/* section 3 */
.section3 {
  padding: 60px 0 100px 0;
  text-align: center;
  background: var(--grey);
}
.robo-box  {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
}
.robo {
  width: 23%;
}
.robo img {
  width: 180px;
  max-width: 100%;
}
.robo video {
  height: 250px;
}
.robo-txt {
  padding: 20px;
  background: var(--blue);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.robo-txt p {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  text-wrap: balance;
}
.section3 h6 {
  margin: 30px auto;
  text-wrap: balance;
}
.section3 .cta:hover {
  box-shadow: inset 8em 0 0 0 var(--blue), inset -8em 0 0 0 var(--blue);
  color: var(--white);
}
/* section 4 */
.section4 {
  background: var(--blue);
  padding: 80px 0;
}
.section4 .title {
  color: var(--white);
  text-wrap: balance;
}
.accordion, .accordion-button, .accordion-item {
  background: transparent;
  color: var(--white);
}
.accordion-button {
  font-size: clamp(14px, 2.5vw, 26px);
  font-weight: 700;
  padding: 20px;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button::after {
  filter: brightness(0) invert(1);
}
.accordion-button:not(.collapsed) {
  background: var(--red);
  color: var(--white);
}
.accordion-body p {
  font-size: 17px;
  line-height: 1.4;
  margin: 0;
}
/* footer */
.footer {
  background: var(--red);
  text-align: center;
  padding: 40px 0 80px 0;
}
.footer .title {
  margin: 10px auto;
  color: var(--white);
}
.footer .title span {
  background: url('/img/under_blue.svg');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.footer form {
  margin-top: 50px;
}
/* messages */
.message-box {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  color: var(--blue);
  width: 100%;
  max-width: 650px;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.message-box h3 {
  font-size: 32px;
}
.message-box p {
  font-size: 20px;
}
.message-box img {
  height: 100px;
  margin: 40px auto;
}
/* Adstrategy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
#section-ads img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(34%) saturate(3449%) hue-rotate(230deg) brightness(93%) contrast(94%);
}
/* Media Queries */
@media only screen and (max-width: 1360px) {
  .card-txt h6 {
    font-size: 20px;
  }
  .section2 .right {
    padding: 50px;
  }
}
@media only screen and (max-width: 991px) {
  .cards-box {
    gap: 20px 0;
    flex-direction: column;
  }
  .vant-card {
    width: 90%;
    min-height: 250px;
    margin: 0 auto;
  }
  .robo video {
    width: 90%;
    height: auto;
  }
  .robo {
    width: 21%;
  }
  .robo-txt p {
    font-size: 17px;
  }
  .radio-button label, .form-input input {
    max-width: auto;
    width: 100%;
    font-size: 16px;
  }
  .header .contactform {
    padding: 30px 30px 40px 30px;
  }
  .new-txt {
    width: 290px;
    height: 160px;
  }
  .new-txt h6 {
    margin-bottom: 15px;
  }
  .new-txt p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  .nav .container {
    max-width: 95%;
  }
  .logo img {
    height: auto;
    width: 100%;
  }
  .header .left.active {
    width: 0%;
    opacity: 0;
    padding: 0;
  }
  .header .right.active {
    width: 100%;
    opacity: 1;
    padding: 100px 40px;
  }
  .header .contactform {
    padding: 30px 40px 40px 40px;
  }
  .robo {
    width: 40%;
  }
  .robo-box {
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 20px;
  }
  .title {
    font-size: 30px;
  }
  .section4 .title {
    text-align: center;
  }
  .news-txt {
    width: 40%;
  }
  .section2 .left img {
    width: 450px;
    max-width: 85%;
  }
  .contactform {
    max-width: 90%;
  }
  .accordion-button {
    font-size: 18px;
  }
  .nav-menu ul {
    gap: 0 25px;
  }
  .nav-menu ul li {
    font-size: 16px;
  }
  .card-txt p {
    font-size: 12px;
  }
  .form-step h3 {
    font-size: 18px;
  }
  .radio-button label img {
    height: 18px;
  }
  .header .right h4 {
    font-size: 20px;
    max-width: 100%;
  }
  .footer form {
    margin-top: 30px;
  }
  .header .left, .header .right.active {
    padding: 120px 40px 70px 40px;
  }
  .header .left img {
    width: 90%;
  }
  .news {
    gap: 0 20px;
  }
  .news-txt {
    width: 60%;
  }
  .message-box {
    width: 100%;
    margin: 50px 0;
    text-wrap: balance;
  }
}
@media only screen and (max-width: 475px) {
  .nav-menu ul {
    gap: 0 15px;
  }
  .nav-menu ul li {
    font-size: 15px;
  }
  .contactform {
    max-width: 100%;
  }
  .header .left, .header .right.active {
    padding: 80px 20px;
  }
  .section2 .left {
    padding: 00px 0 60px 0;
  }
  .robo {
    width: 47%;
  }
  .robo-txt {
    padding: 15px;
  }
  .section2 {
    text-align: center;
  }
  .news2 img {
    display: none;
  }
  .news {
    flex-direction: column;
  }
  .news img {
    width: 80%;
    margin-top: 30px;
  }
  .news-txt {
    width: 100%;
  }
  .news-txt ul {
    max-width: 70%;
    margin: 0 auto;
    text-align: left;
  }
  .news-txt p, .news-txt ul li{
    font-size: 17px;
  }
  .news-txt h6 {
    font-size: 22px;
  }
  .title {
    font-size: 24px;
  }
  .contactform, .header .contactform {
    padding: 30px 20px;
  }
  .radio-button label img {
    height: 15px;
  }
  .radio-button label {
    font-size: 15px;
    padding: 0 15px;
    height: 45px;
  }
  .section2 .left {
    min-height: 500px;
  }
  .message-box img {
    height: 90px;
  }
  .message-box h3 {
    font-size: 26px
  }
}
@media only screen and (max-width: 375px) {
  .radio-button label {
    font-size: 14px;
  }
  .nav-menu {
    display: none;
  }
  .nav .logo {
    width: 60%;
  }
  .header .right {
    height: 0;
  }
  .header .right.active {
    height: auto;
  }
  .section2 .left {
    min-height: 450px;
  }
  .robo {
    width: 80%;
  }
  .title {
    text-wrap: balance;
    font-size: 28px;
  }
  .form-step h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 345px) {
  .accordion-button {
    font-size: 16px;
    padding: 20px 10px;
  }
  .title {
    text-wrap: balance;
    font-size: 26px;
  }
  .card-info {
    padding: 20px;
  }
  .card-txt h6 {
    font-size: 18px;
  }
  .new-txt {
    width: 80%;
    height: 150px;
  }
  .news-txt ul {
    max-width: 85%;
  }
  .news-txt ul li {
    font-size: 16px;
    margin: 6px 0;
  }
  .cta {
    font-size: 16px;
  }
  .arrow-cta {
    width: 50px;
    height: 35px;
  }
  .arrow-cta img {
    width: 15px;
  }
  .message-box img {
    height: 80px;
  }
  .message-box h3 {
    font-size: 24px
  }
  .message-box p {
    font-size: 16px
  }
}