* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

html {
  font-smoothing: antialiased;
}

body {
    font-family: "Labrador", sans-serif;
 -webkit-font-smoothing: antialiased;
 -moz-osx-font-smoothing: grayscale;
}

@font-face {
  font-family: "Labrador";
  src:url(../css/fonts/Labrador2/LabradorA-Black.eot),
      url(../css/fonts/Labrador2/LabradorA-Black.ttf) format('truetype'),
      url(../css/fonts/Labrador2/LabradorA-Black.woff) format('woff'),
      url(../css/fonts/Labrador2/LabradorA-Black.woff2) format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Labrador";
  src:
      url(../css/fonts/Labrador2/LabradorA-Bold.eot),
      url(../css/fonts/Labrador2/LabradorA-Bold.ttf) format('truetype'),
      url(../css/fonts/Labrador2/LabradorA-Bold.woff) format('woff'),
      url(../css/fonts/Labrador2/LabradorA-Bold.woff2) format('woff2');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Labrador";
  src: url(../css/fonts/Labrador2/LabradorA-Medium.ttf) format('truetype'),
      url(../css/fonts/Labrador2/LabradorA-Medium.eot),
       url(../css/fonts/Labrador2/LabradorA-Medium.woff) format('woff'),
   url(../css/fonts/Labrador2/LabradorA-Medium.woff2) format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Labrador";
  src: url(../css/fonts/Labrador2/LabradorA-Regular.ttf) format('truetype'),
      url(../css/fonts/Labrador2/LabradorA-Regular.eot) format('eot'),
      url(../css/fonts/Labrador2/LabradorA-Regular.woff) format('woff'),
      url(../css/fonts/Labrador2/LabradorA-Regular.woff2) format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
 font-family: "Labrador";
  src: url(../css/fonts/Labrador2/LabradorA-Light.ttf) format('truetype'),
      url(../css/fonts/Labrador2/LabradorA-Light.woff) format('woff'),
      url(../css/fonts/Labrador2/LabradorA-Light.woff2) format('woff2');
  font-weight: 200;
  font-display: swap;
}
@font-face {
  font-family: "Labrador";
  src: url(../css/fonts/Labrador2/LabradorA-Thin.ttf) format('truetype'),
      url(../css/fonts/Labrador2/LabradorA-Thin.eot),
      url(../css/fonts/Labrador2/LabradorA-Thin.woff) format('woff'),
      url(../css/fonts/Labrador2/LabradorA-Thin.woff2) format('woff2');
  font-weight: 100;
  font-display: swap;
}
.container {
  max-width: 1730px;
  margin-inline: auto;
  padding-inline: 40px;
}
@media screen and (max-width: 993px) {
  .container {
    padding-inline: 20px;
  }
}

.header-main {
  padding-top: 2.81rem;
  padding-bottom: 2rem;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  transition: 200ms;
}
.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .container .logo {
  margin-right: 6.25rem;
  transition: 200ms;
}
.header-main .container .logo img {
  display: block;
  width: 100%;
  transition: 200ms;
}
.header-main .container .menu {
  display: flex;
  align-items: center;
  gap: 6.25rem;
}
.header-main .container .menu a {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.03rem;
  position: relative;
  transition: 200ms;
}
.header-main .container .menu a::before {
  content: "";
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  width: 0;
  transform: translateX(-50%);
  height: 3px;
  background-color: #FFF;
  transition: 200ms;
}
.header-main .container .menu a:hover::before, .header-main .container .menu a.active::before {
  width: 60%;
}
.header-main .container .btn-menu {
  display: none;
}

.header-main .container .btnAreaCliente {
    padding: 0.5rem 2.0rem;
    color: #0D158D;
    font-family: "Labrador", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 142.523%;
    letter-spacing: -0.03rem;
    border-radius: 0.5rem;
    border: none;
    background: #FFF;
    text-transform: uppercase;
}

.header-main .container .btnAreaCliente:hover {
    transition: 200ms;
    cursor: pointer;
}

.header-main.scroll {
  position: fixed;
  padding-block: 1.2rem;
  background:linear-gradient(257deg, #0E36E3 100%, #0D158D 100%);
}
@media screen and (min-width: 1100px) {
  .header-main.scroll .container .logo {
    width: 80px;
  }
}
.header-main.secondary {
    background:linear-gradient(257deg, #0E36E3 100%, #0D158D 100%);
}
@media screen and (max-width: 1100px) {
  .header-main .container {
    justify-content: space-between;
  }
  .header-main .container .logo {
    width: 48px;
    margin-right: initial;
  }
  .header-main .container .menu {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #2CA1DC;
    gap: 40px;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 180px;
    padding-left: 20px;
    transform: translateX(100%);
    transition: 200ms;
  }
  .header-main .container .menu.active {
    transform: translateX(0);
  }
  
  .header-main .container .btn-menu {
    display: flex;
    width: 24px;
    height: 21px;
    position: relative;
    background-color: transparent;
    border: 0;
  }
  .header-main .container .btn-menu span {
    width: 100%;
    height: 2.62px;
    border-radius: 62px;
    background-color: #FFFFFF;
    position: absolute;
    transition: 200ms;
  }
  .header-main .container .btn-menu span:nth-child(1) {
    top: 0;
  }
  .header-main .container .btn-menu span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .header-main .container .btn-menu span:nth-child(3) {
    top: calc(100% - 2.62px);
  }
  .header-main .container .btn-menu.open span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }
  .header-main .container .btn-menu.open span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
  }
  .header-main .container .btn-menu.open span:nth-child(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
}
@media screen and (max-width: 769px) {
  .header-main .container .menu a.active {
    font-weight: 800;
  }
  .header-main .container .menu a.active::before {
    display: none;
  }
}

.footer-main {
  background: linear-gradient(257deg, #0E36E3 100%, #0D158D 100%);
}
.footer-main .container {
  display: flex;
  justify-content: space-between;
}
.footer-main .container .address {
  width: 175px;
}
.footer-main .container .address img {
  top: -20px;
  position: relative;
  display: block;
  width: 155px;
  aspect-ratio: 1/1;
}
.footer-main .container .address span {
  display: block;
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 117%;
}
.footer-main .container .address .info {
  margin-top: -50px;
}
.footer-main .container .address .btn-ghost-mini {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 142.523%;
  letter-spacing: -0.02rem;
  padding: 0.69rem 2.37rem;
  border-radius: 0.5rem;
  border: 2px solid #FFF;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-top: 1.25rem;
  text-transform: uppercase;
  transition: 200ms;
}
.footer-main .container .address .btn-ghost-mini:hover {
  transform: scale(1.1);
}
.footer-main .container .wrapper {
  display: flex;
  justify-content: space-between;
  flex: 1;
  max-width: 1180px;
  padding-top: 6.25rem;
  padding-bottom: 9.62rem;
  max-width: 1086px;
}
.footer-main .container .wrapper .item h2 {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.04rem;
  margin-bottom: 1.88rem;
}
.footer-main .container .wrapper .item nav {
  display: flex;
  flex-direction: column;
  gap: 1.87rem;
}
.footer-main .container .wrapper .item nav a {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 130%;
  align-items: center;
  gap: 1.31rem;
  display: flex;
  transition: 200ms;
}
.footer-main .container .wrapper .item nav a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1500px) {
  .footer-main .container .wrapper {
    max-width: 900px;
  }
}
@media screen and (max-width: 1500px) {
  .footer-main .container {
    flex-wrap: wrap;
  }
  .footer-main .container .address {
    margin-right: calc(100% - 160px);
  }
  .footer-main .container .wrapper {
    width: 100%;
    max-width: initial;
    flex-wrap: wrap;
    gap: 50px;
  }
}
@media screen and (max-width: 769px) {
  .footer-main .container .address span {
    font-size: 1rem;
  }
  .footer-main .container .address img {
    top: -55px;
    width: 109px;
  }
  .footer-main .container .address .btn-ghost-mini {
    padding: 0.75rem 2.06rem;
  }
  .footer-main .container .wrapper {
    flex-direction: column;
    gap: 5rem;
    padding-top: 3.94rem;
    padding-bottom: 6.25rem;
  }
  .footer-main .container .wrapper .item h2 {
    font-size: 1.25rem;
    margin-bottom: 0.94rem;
  }
  .footer-main .container .wrapper .item nav {
    gap: 0.94rem;
  }
  .footer-main .container .wrapper .item nav a {
    font-size: 1.25rem;
    gap: 1.38rem;
  }
  .footer-main .container .wrapper .item nav a svg {
    width: 24px;
    height: 24px;
  }
}
.footer-main .bottom {
  background-color: #0D158D;
  padding-block: 20px;
}
.footer-main .bottom img {
  display: block;
  margin-inline: auto;
}

.contact {
  margin-bottom: 20rem;
}
.contact .container {
  display: grid;
  grid-template-columns: 740px 1fr;
  min-height: 930px;
  border-radius: 30px;
  overflow: hidden;
  background-color: #FFF;
  padding-inline: 0;
  max-width: 1650px;
  box-shadow: 0px 0px 88px -12px rgba(0, 0, 0, 0.08);
  width: calc(100% - 80px);
}
.contact .container .info {
  background-image: url(../images/bg-contact.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 5.62rem;
  padding-left: 5.62rem;
  padding-right: 8.06rem;
  padding-bottom: 12.75rem;
}
.contact .container .info h2 {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.06rem;
  margin-bottom: 0.62rem;
}
.contact .container .info p {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 115%;
}
.contact .container .info p.alert {
  font-weight: 800;
  margin-top: 25px;
}
.contact .container .info .wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.88rem;
  margin-top: 3.13rem;
}
.contact .container .info .wrapper .item {
  display: flex;
  align-items: center;
  gap: 1.69rem;
}
.contact .container .info .wrapper .item .icon {
  width: 4.75rem;
  height: 4.75rem;
  border-radius: 0.375rem;
  background: #0D158D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact .container .info .wrapper .item .icon svg.active {
  display: none;
}
.contact .container .info .wrapper .item .details .title {
  display: block;
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 115%;
}
.contact .container .info .wrapper .item .details .text {
  display: block;
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 115%;
}
.contact .container form {
  padding: 5rem 6.25rem 4.31rem 6.31rem;
  width: 100%;
}
.contact .container form .input-group + .input-group {
  margin-top: 2.5rem;
}
.contact .container form .input-group > label {
  display: block;
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.045rem;
  margin-bottom: 0.13rem;
}
.contact .container form .input-group input[type=text],
.contact .container form .input-group input[type=email] {
  display: block;
  border: 0;
  width: 100%;
  padding-inline: 1.56rem;
  border-radius: 0.3125rem;
  background: #F8FAFC;
  color: #545454;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 150%;
  height: 58px;
  outline-color: #0D158D;
}
.contact .container form .input-group textarea {
  display: block;
  width: 100%;
  resize: none;
  border-radius: 0.3125rem;
  background: #F8FAFC;
  padding-block: 0.88rem;
  padding-inline: 1.56rem;
  color: #0D158D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 150%;
  height: 200px;
  border: 0;
  outline-color: #0D158D;
}
.contact .container form .column-2 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
}
.contact .container form .column-2 .input-group + .input-group {
  margin-top: 0;
}
@media screen and (max-width: 1600px) {
  .contact .container form .column-2 {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.contact .container form .input-group-prefer > label {
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.015rem;
  display: block;
  margin-bottom: 1.12rem;
}
.contact .container form .input-group-prefer .wrapper-radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.contact .container form .input-group-prefer .wrapper-radio label {
  display: flex;
  align-items: center;
  gap: 0.63rem;
  cursor: pointer;
}
.contact .container form .input-group-prefer .wrapper-radio label input[type=radio] {
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  border: 1px solid #545454;
  transition: 200ms;
  cursor: pointer;
}
.contact .container form .input-group-prefer .wrapper-radio label input[type=radio]:checked {
  background-color: #0D158D;
  border: 4px solid #FFF;
  outline: 1px solid #0D158D;
}
.contact .container form .input-group-prefer .wrapper-radio label span {
  color: #545454;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25rem;
}
.contact .container form button[type=submit] {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 142.523%;
  letter-spacing: -0.03rem;
  border-radius: 0.9375rem;
  background: #0D158D;
  background-size: 200% 100%;
  transition: background-position 0.2s;
  padding: 1.38rem 7.44rem;
  border: 0;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-top: 3.75rem;
  margin-inline: auto;
  cursor: pointer;
}
.contact .container form button[type=submit]:hover {
  background-position: -100% 0;
}
@media screen and (max-width: 1500px) {
  .contact .container {
    grid-template-columns: 600px 1fr;
  }
}
@media screen and (max-width: 1280px) {
  .contact .container {
    grid-template-columns: 1fr;
  }
  .contact .container .info {
    padding-bottom: 5.62rem;
  }
}
@media screen and (max-width: 1100px) {
  .contact .container {
    box-shadow: none;
    background-color: transparent;
    gap: 40px;
    border-radius: 0;
  }
  .contact .container .info {
    padding: 0;
    background: transparent;
  }
  .contact .container .info h2 {
    color: #0D158D;
  }
  .contact .container .info p {
    color: #545454;
  }
  .contact .container .info .wrapper .item .icon {
    background-color: #F6F6F6;
  }
  .contact .container .info .wrapper .item .icon svg {
    display: none;
  }
  .contact .container .info .wrapper .item .icon svg.active {
    display: block;
  }
  .contact .container .info .wrapper .item .details .title {
    color: #545454;
  }
  .contact .container .info .wrapper .item .details .text {
    color: #848484;
  }
  .contact .container form {
    padding: 60px;
    border-radius: 1.1875rem;
    background: #FFF;
    box-shadow: 0px 0px 88px -12px rgba(0, 0, 0, 0.08);
    margin-top: 20px;
  }
}
@media screen and (max-width: 993px) {
  .contact {
    margin-bottom: 9.38rem;
  }
  .contact .container {
    width: calc(100% - 40px);
    margin-inline: auto;
  }
  .contact .container .info h2 {
    font-size: 2rem;
    margin-bottom: 0.31rem;
  }
  .contact .container .info p {
    font-size: 1.125rem;
  }
  .contact .container .info p + p {
    margin-top: 20px;
  }
  .contact .container .info .wrapper {
    margin-top: 1.88rem;
  }
  .contact .container .info .wrapper .item {
    gap: 1.12rem;
  }
  .contact .container .info .wrapper .item .icon {
    width: 54px;
    height: 54px;
  }
  .contact .container .info .wrapper .item .icon svg {
    width: 24px;
    height: 24px;
  }
  .contact .container .info .wrapper .item .details .title {
    font-size: 1.25rem;
  }
  .contact .container .info .wrapper .item .details .text {
    font-size: 1.25rem;
  }
  .contact .container form button[type=submit] {
    padding-inline: 3.5rem;
    padding-block: 0.94rem;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 769px) {
  .contact .container {
    width: 100%;
    padding-inline: 20px;
  }
  .contact .container form {
    padding: 1.88rem;
    padding-bottom: 6.25rem;
    border-radius: 1.1875rem;
    background: #FFF;
    box-shadow: 0px 0px 88px -12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }
  .contact .container form .input-group > label {
    font-size: 1.25rem;
    margin-bottom: 0.06rem;
  }
  .contact .container form .input-group input[type=text], .contact .container form .input-group input[type=email] {
    height: 58px;
    font-size: 1.125rem;
  }
  .contact .container form .input-group textarea {
    font-size: 1.125rem;
  }
  .contact .container form .input-group-prefer > label {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
  .contact .container form .input-group-prefer .wrapper-radio {
    justify-content: flex-start;
  }
  .contact .container form .input-group-prefer .wrapper-radio label {
    gap: 0.63rem;
  }
  .contact .container form .input-group-prefer .wrapper-radio label input[type=radio] {
    width: 18px;
    height: 18px;
  }
  .contact .container form .input-group-prefer .wrapper-radio label span {
    font-size: 1.125rem;
    line-height: 150%;
    white-space: nowrap;
  }
}

.no-scroll {
  overflow: hidden;
}

.card-blog {
  border-radius: 19px;
  overflow: hidden;
  transition: 200ms;
  cursor: pointer;
  border-radius: 1rem;
  background: #FFF;
  box-shadow: 0px 0px 33.92405px 1.6962px rgba(0, 0, 0, 0.06);
}
.card-blog .cover {
  height: 233px;
  position: relative;
}
.card-blog .cover img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-blog .cover .category {
  position: absolute;
  top: 24px;
  left: 24px;
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.70469rem;
  text-transform: uppercase;
  border-radius: 6.6925rem;
  background: #0D158D;
  padding-inline: 1.56rem;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-blog .info {
  padding-inline: 1.25rem;
  padding-bottom: 4.38rem;
}
.card-blog .info h3 {
  margin-top: 1.67rem;
  margin-bottom: 0.44rem;
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.60619rem;
  letter-spacing: -0.03rem;
}
.card-blog .info p {
  color: #848484;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.48231rem;
  letter-spacing: -0.025rem;
  padding-right: 3.5rem;
}
.card-blog .info .btn-more {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #0D158D;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.03rem;
  width: -moz-max-content;
  width: max-content;
  margin-top: 2.56rem;
  text-transform: uppercase;
}
.card-blog:hover {
  background: #0D158D;
}
.card-blog:hover .info h3 {
  color: #FFF;
}
.card-blog:hover .info p {
  color: #FFF;
}
.card-blog:hover .info a {
  color: #FFF;
}
.card-blog:hover .info a svg {
  display: none;
}
.card-blog:hover .info a svg.active {
  display: block;
}
@media screen and (max-width: 769px) {
  .card-blog .cover {
    height: 195px;
  }
  .card-blog .cover .category {
    font-size: 0.84813rem;
    padding-inline: 1.88rem;
    height: 30px;
    top: 20px;
    left: 17px;
  }
  .card-blog .info h3 {
    margin-top: 1.56rem;
    font-size: 1.25;
    margin-bottom: 0.63rem;
  }
  .card-blog .info p {
    font-size: 1rem;
    line-height: 1.38856rem;
  }
  .card-blog .info .btn-more {
    font-size: 1.25rem;
    margin-top: 1.94rem;
  }
}

.btn-primary {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 142.523%;
  letter-spacing: -0.03rem;
  padding: 1.38rem 4.38rem;
  border-radius: 0.9375rem;
  background: #0D158D;
  display: block;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  background-size: 200% 100%;
  transition: background-position 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary:hover {
  background-position: -100% 0;
}
@media screen and (max-width: 1100px) {
  .btn-primary {
    font-size: 1.125rem;
    padding: 0.94rem 4.25rem;
  }
}

.swiper-custom-navigation .swiper-horizontal > .swiper-pagination-bullets,
.swiper-custom-navigation .swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-custom-navigation .swiper-pagination-custom, .swiper-custom-navigation .swiper-pagination-fraction {
  width: -moz-max-content;
  width: max-content;
  top: initial;
  bottom: 0.69rem;
}
.swiper-custom-navigation .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  transition: 200ms;
}
.swiper-custom-navigation .swiper-pagination-bullet-active {
  width: 94px;
  border-radius: 34px;
  background: #0D158D;
}
.swiper-custom-navigation .swiper-button-next, .swiper-custom-navigation .swiper-button-prev {
  display: block;
  top: initial;
  bottom: 0;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
}
.swiper-custom-navigation .swiper-button-next::after, .swiper-custom-navigation .swiper-button-prev::after {
  font-size: 0;
}
.swiper-custom-navigation .swiper-button-prev {
  left: initial;
  right: 50px;
}
.swiper-custom-navigation .swiper-button-prev {
  background-image: url(../images/swiper-arrow-left.svg);
}
.swiper-custom-navigation .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  background-image: url(../images/swiper-arrow-left-disabled.svg);
}
.swiper-custom-navigation .swiper-button-next {
  background-image: url(../images/swiper-arrow-right.svg);
}
.swiper-custom-navigation .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background-image: url(../images/swiper-arrow-right-disabled.svg);
}

.floating-card-up {
  animation: floatAnimationUp 2s ease-in-out infinite;
}

.floating-card-down {
  animation: floatAnimationDown 2s ease-in-out infinite;
}

@keyframes floatAnimationUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}
@keyframes floatAnimationDown {
  0%, 100% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0);
  }
}
.p-home main {
  overflow-x: hidden;
  max-width: 100%;
}
.p-home .presentation {
  padding-top: 5.87rem;
  padding-bottom: 4rem;
  background: linear-gradient(257deg, #0E36E3 100%, #0D158D 100%);
}
.p-home .presentation .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.p-home .presentation .container .info {
  max-width: 640px;
}
.p-home .presentation .container .info h1 {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 5.125rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.1025rem;
  margin-bottom: 1.31rem;
}
.p-home .presentation .container .info p {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 100.5%;
  margin-bottom: 3.13rem;
}
.p-home .presentation .container .info .only-mobile {
  display: none;
}
.p-home .presentation .container .info .buttons {
  display: flex;
  align-items: center;
  gap: 0.94rem;
}
.p-home .presentation .container .info .buttons .btn-white {
  padding: 1.38rem 4.38rem;
  color: #0D158D;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 142.523%;
  letter-spacing: -0.03rem;
  border-radius: 0.9375rem;
  background: #FFF;
  transition: 200ms;
  text-transform: uppercase;
}
.p-home .presentation .container .info .buttons .btn-white:hover {
  transform: scale(1.1);
}
.p-home .presentation .container .info .buttons .btn-ghost {
  padding: 1.38rem 4.38rem;
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 142.523%;
  letter-spacing: -0.03rem;
  border-radius: 0.9375rem;
  border: 1px solid #FFF;
  transition: 200ms;
  text-transform: uppercase;
}
.p-home .presentation .container .info .buttons .btn-ghost:hover {
  transform: scale(1.1);
}
.p-home .presentation .container .right {
  max-width: 922px;
}
.p-home .presentation .container .right img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1550px) {
  .p-home .presentation {
    height: 800px;
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
  }
  .p-home .presentation .container .info {
    max-width: 500px;
  }
  .p-home .presentation .container .info h1 {
    font-size: 4rem;
    line-height: 90%;
  }
  .p-home .presentation .container .info p {
    font-size: 1.5rem;
  }
  .p-home .presentation .container .info .buttons .btn-white {
    padding: 1rem 2rem;
  }
  .p-home .presentation .container .info .buttons .btn-ghost {
    padding: 1rem 2rem;
  }
}
@media screen and (max-width: 1300px) {
  .p-home .presentation {
    height: 700px;
  }
  .p-home .presentation .container .info {
    max-width: 460px;
  }
  .p-home .presentation .container .info h1 {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 1100px) {
  .p-home .presentation {
    height: auto;
    padding-top: 10rem;
  }
  .p-home .presentation .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-home .presentation .container .info {
    max-width: 500px;
  }
  .p-home .presentation .container .info h1 {
    max-width: 400px;
    margin-inline: auto;
    text-align: center;
  }
  .p-home .presentation .container .info h1 br {
    display: none;
  }
  .p-home .presentation .container .info p {
    text-align: center;
  }
  .p-home .presentation .container .info .only-mobile {
    display: block;
    width: 500px;
    margin-inline: auto;
    margin-top: -50px;
  }
  .p-home .presentation .container .info .buttons {
    bottom: 0;
    justify-content: center;
    flex-direction: column;
  }
  .p-home .presentation .container .info .buttons a {
    width: 100%;
    text-align: center;
  }
  .p-home .presentation .container .right {
    display: none;
  }
}
@media screen and (max-width: 769px) {
  .p-home .presentation .container {
    width: 100%;
  }
  .p-home .presentation .container .info {
    margin-inline: auto;
    width: 100%;
  }
  .p-home .presentation .container .info h1 {
    font-size: 2.25rem;
    margin-bottom: 0.19rem;
    max-width: 320px;
  }
  .p-home .presentation .container .info .only-mobile {
    display: block;
    width: 100%;
    max-width: 400px;
  }
  .p-home .presentation .container .info .buttons {
    max-width: 400px;
    margin-inline: auto;
    margin-top: 1.06rem;
    gap: 0.38rem;
  }
  .p-home .presentation .container .info .buttons .btn-white, .p-home .presentation .container .info .buttons .btn-ghost {
    font-size: 1.125rem;
    padding-block: 0.94rem;
  }
}
.p-home .topics {
  background: #0D158D;
  overflow: hidden;
}
.p-home .topics .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 4.06rem;
}
.p-home .topics .container .item {
  display: flex;
  align-items: center;
  gap: 1.87rem;
}
.p-home .topics .container .item span {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 94%;
}
@media screen and (max-width: 1480px) {
  .p-home .topics .container {
    padding-top: 2.25rem;
    padding-bottom: 2.13rem;
  }
  .p-home .topics .container .item {
    gap: 14px;
  }
  .p-home .topics .container .item .icon svg {
    width: 36px;
    height: 36px;
  }
  .p-home .topics .container .item span {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 1100px) {
  .p-home .topics .wrapper {
    overflow-x: auto;
    width: 100%;
  }
  .p-home .topics .wrapper .container {
    min-width: 1000px;
  }
}
.p-home .about-moc {
  margin-top: 13.94rem;
  margin-bottom: 16.25rem;
}
.p-home .about-moc .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 130px;
}
.p-home .about-moc .container .left {
  flex: 1;
  max-width: 510px;
}
.p-home .about-moc .container .left h2 {
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.05rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}
.p-home .about-moc .container .left p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 400;
  line-height: 115%;
}
.p-home .about-moc .container .left p + p {
  margin-top: 25px;
}
.p-home .about-moc .container .left .btn-primary {
  margin-top: 3.13rem;
}
.p-home .about-moc .container .right {
  flex: 1;
  max-width: 1130px;
  width: 500px;
  position: relative;
}
.p-home .about-moc .container .right .big {
  display: block;
  width: 100%;
}
.p-home .about-moc .container .right .box {
  position: absolute;
  border-radius: 1.625rem;
  background: #FFF;
  box-shadow: 0px 0px 40px -6px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.p-home .about-moc .container .right .box svg {
  display: block;
  margin-inline: auto;
}
.p-home .about-moc .container .right .box .number {
  margin-top: 0.7rem;
  display: block;
  color: #0D158D;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.2rem;
}
.p-home .about-moc .container .right .box .description {
  color: #505050;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 74%;
  letter-spacing: -0.06rem;
  display: block;
}
.p-home .about-moc .container .right .box-1 {
  width: 311px;
  height: 276px;
  left: -5.25rem;
  bottom: -0.88rem;
}
.p-home .about-moc .container .right .box-2 {
  width: 211px;
  height: 187px;
  right: -1.25rem;
  top: 6.5rem;
}
.p-home .about-moc .container .right .box-2 .number {
  margin-top: 0.25rem;
  font-size: 2.5rem;
}
.p-home .about-moc .container .right .box-2 .description {
  font-size: 1.25rem;
}
@media screen and (max-width: 1800px) {
  .p-home .about-moc .container .right {
    max-width: 900px;
  }
  .p-home .about-moc .container .right img {
    display: block;
    width: 100%;
  }
  .p-home .about-moc .container .right .box-1, .p-home .about-moc .container .right .box-2 {
    width: 200px;
    height: 180px;
  }
  .p-home .about-moc .container .right .box-1 .number, .p-home .about-moc .container .right .box-2 .number {
    font-size: 2.5rem;
    margin-top: 0.25rem;
  }
  .p-home .about-moc .container .right .box-1 .description, .p-home .about-moc .container .right .box-2 .description {
    font-size: 1.25rem;
  }
  .p-home .about-moc .container .right .box-1 .description br, .p-home .about-moc .container .right .box-2 .description br {
    display: none;
  }
}
.p-home .about-moc > .btn-primary {
  display: none;
}
@media screen and (max-width: 1440px) {
  .p-home .about-moc .container .left {
    max-width: 450px;
  }
  .p-home .about-moc .container .right {
    max-width: 600px;
  }
  .p-home .about-moc .container .right .box-1, .p-home .about-moc .container .right .box-2 {
    border-radius: 0.58225rem;
    width: 140px;
    height: 110px;
  }
  .p-home .about-moc .container .right .box-1 svg, .p-home .about-moc .container .right .box-2 svg {
    width: 18px;
    height: 18px;
  }
  .p-home .about-moc .container .right .box-1 .number, .p-home .about-moc .container .right .box-2 .number {
    font-size: 1.4rem;
    letter-spacing: -0.0855rem;
  }
  .p-home .about-moc .container .right .box-1 .description, .p-home .about-moc .container .right .box-2 .description {
    font-size: 1rem;
    letter-spacing: -0.0225rem;
  }
  .p-home .about-moc .container .right .box-1 {
    bottom: 0;
    left: 0;
  }
  .p-home .about-moc .container .right .box-2 {
    top: 0;
    right: 0;
  }
}
@media screen and (max-width: 1100px) {
  .p-home .about-moc {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
  .p-home .about-moc .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .p-home .about-moc .container .left {
    max-width: initial;
  }
  .p-home .about-moc .container .left h2 {
    font-size: 2rem;
    margin-bottom: 0.63rem;
  }
  .p-home .about-moc .container .left p {
    font-size: 1.125rem;
  }
  .p-home .about-moc .container .left .btn-primary {
    display: none;
  }
  .p-home .about-moc .container .right {
    margin-inline: auto;
  }
  .p-home .about-moc .btn-primary {
    display: block;
    margin-inline: auto;
    margin-top: 3.61rem;
  }
}
@media screen and (max-width: 769px) {
  .p-home .about-moc .container {
    gap: 2.63rem;
  }
  .p-home .about-moc .container .right {
    width: 100%;
    max-width: 375px;
  }
  .p-home .about-moc .container .right .big {
    display: block;
    width: 100%;
  }
  .p-home .about-moc .container .right .box-1 {
    width: 133px;
    height: 118px;
    left: -11px;
    bottom: -40px;
  }
  .p-home .about-moc .container .right .box-1 svg {
    width: 18px;
    height: 18px;
  }
  .p-home .about-moc .container .right .box-1 .number {
    font-size: 1.71013rem;
    line-height: 93%;
    letter-spacing: -0.0855rem;
  }
  .p-home .about-moc .container .right .box-1 .description {
    font-size: 0.75rem;
    line-height: 74%;
    letter-spacing: -0.0225rem;
  }
  .p-home .about-moc .container .right .box-2 {
    width: 76px;
    height: 85px;
    top: -8px;
    right: -1px;
  }
  .p-home .about-moc .container .right .box-2 .number {
    font-size: 0.89575rem;
    line-height: 93%;
    letter-spacing: -0.04481rem;
  }
  .p-home .about-moc .container .right .box-2 .description {
    font-size: 0.75rem;
    line-height: 74%;
    letter-spacing: -0.0225rem;
    max-width: 40px;
  }
}
.p-home .how-it-works .container .top {
  display: flex;
  align-items: center;
  gap: 6.26rem;
  margin-bottom: 17.5rem;
}
.p-home .how-it-works .container .top .left img {
  margin-left: -4.87rem;
}
.p-home .how-it-works .container .top .right {
  flex: 1;
  max-width: 653px;
}
.p-home .how-it-works .container .top .right h2, .p-home .how-it-works .container .bottom .left h2 {
  font-family: "Labrador", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.08rem;
  margin-bottom: 1.25rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-home .how-it-works .container .top .right p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
  margin-bottom: 3.13rem;
}
.p-home .how-it-works .container .top .right .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 4.69rem;
       column-gap: 4.69rem;
  row-gap: 3.31rem;
}
.p-home .how-it-works .container .top .right .wrapper .item h3 {
  color: #0D158D;
  font-family: "Labrador", sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.04rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.p-home .how-it-works .container .top .right .wrapper .item p {
  padding-left: 3.25rem;
  color: #4D4D4D;
  font-family: "Labrador", sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 115%;
}
@media screen and (max-width: 1800px) {
  .p-home .how-it-works .container .top .left {
    flex: 1;
  }
  .p-home .how-it-works .container .top .left img {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 1440px) {
  .p-home .how-it-works .container .top {
    gap: 0;
  }
  .p-home .how-it-works .container .top .left {
    max-width: 500px;
  }
  .p-home .how-it-works .container .top .right {
    max-width: initial;
  }
}
@media screen and (max-width: 1100px) {
  .p-home .how-it-works .container .top {
    flex-direction: column-reverse;
    gap: 3.87rem;
    margin-bottom: 6.25rem;
  }
  .p-home .how-it-works .container .top .right h2, .p-home .how-it-works .container .bottom .left h2 {
    font-size: 2rem;
    margin-bottom: 0.63rem;
  }
  .p-home .how-it-works .container .top .right > p {
    font-size: 1.125rem;
    margin-bottom: 1.88rem;
  }
  .p-home .how-it-works .container .top .right .wrapper {
    gap: 2.5rem;
  }
  .p-home .how-it-works .container .top .right .wrapper .item h3 {
    font-size: 1.5rem;
    line-height: 93%;
    letter-spacing: -0.03rem;
    margin-bottom: 0.19rem;
    gap: 0.94rem;
  }
  .p-home .how-it-works .container .top .right .wrapper .item h3 svg {
    width: 24px;
    height: 24px;
  }
  .p-home .how-it-works .container .top .right .wrapper .item p {
    font-size: 1rem;
    line-height: 115%;
    padding-left: 2.5rem;
  }
}
@media screen and (max-width: 769px) {
  .p-home .how-it-works .container .top .left img {
    margin-left: 0;
  }
  .p-home .how-it-works .container .top .right .wrapper {
    grid-template-columns: 1fr;
  }
}
.p-home .how-it-works .container .bottom {
  display: flex;
  align-items: center;
  margin-bottom: 12.5rem;
}
.p-home .how-it-works .container .bottom .left {
  flex: 1;
  width: 530px;
  max-width: 530px;
  position: relative;
  z-index: 1;
}
.p-home .how-it-works .container .bottom .left p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
}
.p-home .how-it-works .container .bottom .left p + p {
  margin-top: 25px;
}
.p-home .how-it-works .container .bottom .left .only-mobile {
  display: none;
}
.p-home .how-it-works .container .bottom .left .btn-primary {
  margin-top: 3.13rem;
}
.p-home .how-it-works .container .bottom .right {
  flex: 1;
  width: 1318px;
}
.p-home .how-it-works .container .bottom .right img {
  margin-right: -11.62rem;
}
@media screen and (max-width: 1800px) {
  .p-home .how-it-works .container .bottom .right img {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .p-home .how-it-works .container .bottom {
    margin-bottom: 6.25rem;
  }
  .p-home .how-it-works .container .bottom .left {
    max-width: initial;
  }
  .p-home .how-it-works .container .bottom .left .only-mobile {
    display: block;
    width: 100%;
    margin-top: 2.5rem;
    max-width: 375px;
    margin-inline: auto;
  }
  .p-home .how-it-works .container .bottom .left .btn-primary {
    margin-inline: auto;
  }
  .p-home .how-it-works .container .bottom .left p {
    font-size: 1.125rem;
  }
  .p-home .how-it-works .container .bottom .right {
    display: none;
  }
}
@media screen and (max-width: 425px) {
  .p-home .how-it-works .container .bottom .left .only-mobile {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
.p-home .our-products {
  background: #F5F4F9;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.p-home .our-products .container .group-title h2 {
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.08rem;
  margin-bottom: 0.63rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-home .our-products .container .group-title p {
  color: #0D158D;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
  margin-bottom: 3.13rem;
  max-width: 484px;
  margin-inline: auto;
}
.p-home .our-products .container .wrapper.only-mobile {
  display: none;
}
.p-home .our-products .container .wrapper .swiper-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.88rem;
}
.p-home .our-products .container .wrapper .swiper-button-next, .p-home .our-products .container .wrapper .swiper-button-prev {
  display: none;
}
.p-home .our-products .container .wrapper .item {
  border-radius: 0.9375rem;
  background: #FFF;
  padding: 3.75rem;
  position: relative;
  overflow: hidden;
  transition: 200ms;
  cursor: pointer;
}
.p-home .our-products .container .wrapper .item h3 {
  font-family: "Labrador", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.04rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-home .our-products .container .wrapper .item h3 .icon {
  display: block;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background-color: #0D158D;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-home .our-products .container .wrapper .item p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
}
.p-home .our-products .container .wrapper .item ul {
  margin-top: 1.88rem;
  padding-left: 50px;
  list-style-position: inside;
  list-style-type: none;
}
.p-home .our-products .container .wrapper .item ul li {
  color: #0D158D;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.03rem;
  background-image: url(../images/li-check-1.svg);
  background-repeat: no-repeat;
  background-position: center left;
  padding-left: 27px;
  filter: brightness(0) saturate(100%) invert(13%) sepia(59%) saturate(3504%) hue-rotate(219deg) brightness(98%) contrast(102%);
}
.p-home .our-products .container .wrapper .item ul li + li {
  margin-top: 1.25rem;
}
.p-home .our-products .container .wrapper .item a.btn-move-up {
  position: absolute;
  display: block;
  right: -50px;
  bottom: -40px;
  width: 178px;
  height: 178px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 200ms;
}
.p-home .our-products .container .wrapper .item a.btn-move-up svg.active {
  display: none;
}
.p-home .our-products .container .wrapper .item:hover, .p-home .our-products .container .wrapper .item.active {
  background: linear-gradient(257deg, #0E36E3 100%, #0D158D 100%);
  box-shadow: 0px 17px 40px -6px rgba(0, 0, 0, 0.07);
}
.p-home .our-products .container .wrapper .item:hover h3, .p-home .our-products .container .wrapper .item.active h3 {
  color: #FFF;
  background: none;
  background-clip: initial;
  -webkit-text-fill-color: initial;
}
.p-home .our-products .container .wrapper .item:hover h3 .icon, .p-home .our-products .container .wrapper .item.active h3 .icon {
  background-color: #0D158D;
}
.p-home .our-products .container .wrapper .item:hover p, .p-home .our-products .container .wrapper .item.active p {
  color: #FFF;
  position: relative;
  z-index: 1;
}
.p-home .our-products .container .wrapper .item:hover ul li, .p-home .our-products .container .wrapper .item.active ul li {
  color: #FFF;
  filter: unset;
  background-image: url(../images/li-check-1-white.svg);
}
.p-home .our-products .container .wrapper .item:hover a.btn-move-up, .p-home .our-products .container .wrapper .item.active a.btn-move-up {
  background-image: url(../images/bg-link.svg);
  transform: translateY(calc(-1 * (100% + 80px)));
}
.p-home .our-products .container .wrapper .item:hover a.btn-move-up svg, .p-home .our-products .container .wrapper .item.active a.btn-move-up svg {
  display: none;
}
.p-home .our-products .container .wrapper .item:hover a.btn-move-up svg.active, .p-home .our-products .container .wrapper .item.active a.btn-move-up svg.active {
  display: block;
}
.p-home .our-products .container .wrapper .item a.btn-more {
  display: none;
}
@media screen and (max-width: 1250px) {
  .p-home .our-products .container .wrapper .swiper-wrapper {
    grid-template-columns: 1fr;
  }
  .p-home .our-products .container .wrapper .item {
    padding: 2.5rem;
    position: relative;
  }
  .p-home .our-products .container .wrapper .item h3 {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.19rem;
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 93%;
    letter-spacing: -0.025rem;
    margin-bottom: 0.25rem;
  }
  .p-home .our-products .container .wrapper .item p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 130%;
  }
  .p-home .our-products .container .wrapper .item ul {
    padding-bottom: 4rem;
    padding-left: 22px;
    margin-top: 0.94rem;
  }
  .p-home .our-products .container .wrapper .item ul li {
    font-size: 1rem;
    padding-left: 18px;
    background-size: 8px;
  }
  .p-home .our-products .container .wrapper .item a.btn-move-up {
    display: none;
  }
  .p-home .our-products .container .wrapper .item a.btn-more {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #0D158D;
    font-family: "Labrador", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 130%;
    position: absolute;
    bottom: 2rem;
    left: 2.5rem;
  }
  .p-home .our-products .container .wrapper .item a.btn-more svg.active {
    display: none;
  }
  .p-home .our-products .container .wrapper .item:hover a.btn-more, .p-home .our-products .container .wrapper .item.active a.btn-more {
    color: #FFF;
  }
  .p-home .our-products .container .wrapper .item:hover a.btn-more svg, .p-home .our-products .container .wrapper .item.active a.btn-more svg {
    display: none;
  }
  .p-home .our-products .container .wrapper .item:hover a.btn-more svg.active, .p-home .our-products .container .wrapper .item.active a.btn-more svg.active {
    display: block;
  }
}
@media screen and (max-width: 993px) {
  .p-home .our-products {
    padding-block: 3.75rem;
  }
  .p-home .our-products .container .group-title h2 {
    font-size: 2rem;
    line-height: 93%;
    letter-spacing: -0.04rem;
    margin-bottom: 0.31rem;
  }
  .p-home .our-products .container .group-title p {
    font-size: 0.875rem;
    line-height: 115%;
    margin-bottom: 1.88rem;
  }
  .p-home .our-products .container .wrapper {
    padding-bottom: 65px;
  }
  .p-home .our-products .container .wrapper.only-mobile {
    display: block;
  }
  .p-home .our-products .container .wrapper:not(.only-mobile) {
    display: none;
  }
  .p-home .our-products .container .wrapper .swiper-wrapper {
    display: flex;
    gap: initial;
    min-height: 384px;
  }
  .p-home .our-products .container .wrapper .swiper-wrapper .swiper-slide {
    height: 100%;
  }
  .p-home .our-products .container .wrapper .swiper-button-next, .p-home .our-products .container .wrapper .swiper-button-prev {
    display: block;
  }
}
.p-home .blog {
  padding-top: 12.5rem;
  padding-bottom: 15.62rem;
}
@media screen and (max-width: 993px) {
  .p-home .blog {
    padding-top: 6.25rem;
    padding-bottom: 6.25rem;
  }
}
.p-home .blog .container .group-title {
  position: relative;
  z-index: 2;
  margin-bottom: -45px;
}
.p-home .blog .container .group-title h2 {
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.05rem;
  background: var(--Degrad, #0D158D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.62rem;
}
.p-home .blog .container .group-title > p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
  margin-bottom: 1.88rem;
}
@media screen and (max-width: 1100px) {
  .p-home .blog .container .group-title {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 993px) {
  .p-home .blog .container .group-title h2 {
    font-size: 2rem;
    margin-bottom: 0.69rem;
  }
  .p-home .blog .container .group-title > p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}
.p-home .blog .container .wrapper {
  padding-top: 82px;
  padding-bottom: 5rem;
}
.p-home .blog .container .wrapper .swiper-button-next, .p-home .blog .container .wrapper .swiper-button-prev {
  top: 0;
  width: 36px;
  height: 36px;
  margin-top: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-home .blog .container .wrapper .swiper-button-next::after, .p-home .blog .container .wrapper .swiper-button-prev::after {
  font-size: 0;
}
.p-home .blog .container .wrapper .swiper-button-prev, .p-home .blog .container .wrapper .swiper-rtl .swiper-button-next {
  left: initial;
  right: 56px;
}
.p-home .blog .container .wrapper .swiper-button-prev {
  background-image: url(../images/swiper-arrow-left.svg);
  filter: brightness(0) saturate(100%) invert(13%) sepia(59%) saturate(3504%) hue-rotate(219deg) brightness(98%) contrast(102%);
}
.p-home .blog .container .wrapper .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  background-image: url(../images/swiper-arrow-left-disabled.svg);
}
.p-home .blog .container .wrapper .swiper-button-next {
  background-image: url(../images/swiper-arrow-right.svg);
  filter: brightness(0) saturate(100%) invert(13%) sepia(59%) saturate(3504%) hue-rotate(219deg) brightness(98%) contrast(102%);
}
.p-home .blog .container .wrapper .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background-image: url(../images/swiper-arrow-right-disabled.svg);
}
.p-home .blog .container .wrapper .swiper-horizontal > .swiper-pagination-bullets, .p-home .blog .container .wrapper .swiper-pagination-bullets.swiper-pagination-horizontal, .p-home .blog .container .wrapper .swiper-pagination-custom, .p-home .blog .container .wrapper .swiper-pagination-fraction {
  bottom: initial;
  top: 5px;
  left: initial;
  right: 112px;
  width: -moz-max-content;
  width: max-content;
}
.p-home .blog .container .wrapper .swiper-pagination-fraction {
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 115%;
}
.p-home .blog .container .wrapper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  transition: 200ms;
}
.p-home .blog .container .wrapper .swiper-pagination-bullet-active {
  width: 94px;
  border-radius: 34px;
  background: #0D158D;
}
@media screen and (max-width: 1100px) {
  .p-home .blog .container .wrapper {
    width: calc(100% + 40px);
    padding-top: 0;
    padding-bottom: 82px;
    margin-bottom: 5rem;
  }
  .p-home .blog .container .wrapper .swiper-button-next, .p-home .blog .container .wrapper .swiper-button-prev {
    top: initial;
    bottom: 0;
  }
  .p-home .blog .container .wrapper .swiper-button-next {
    right: 40px;
  }
  .p-home .blog .container .wrapper .swiper-button-prev {
    right: 96px;
  }
  .p-home .blog .container .wrapper .swiper-horizontal > .swiper-pagination-bullets, .p-home .blog .container .wrapper .swiper-pagination-bullets.swiper-pagination-horizontal, .p-home .blog .container .wrapper .swiper-pagination-custom, .p-home .blog .container .wrapper .swiper-pagination-fraction {
    bottom: 8px;
    top: initial;
    right: 152px;
    width: -moz-max-content;
    width: max-content;
  }
  .p-home .blog .container .wrapper .swiper-slide-active {
    background: #219AD8;
  }
  .p-home .blog .container .wrapper .swiper-slide-active .info h3 {
    color: #FFF;
  }
  .p-home .blog .container .wrapper .swiper-slide-active .info p {
    color: #FFF;
  }
  .p-home .blog .container .wrapper .swiper-slide-active .info a {
    color: #FFF;
  }
  .p-home .blog .container .wrapper .swiper-slide-active .info a svg {
    display: none;
  }
  .p-home .blog .container .wrapper .swiper-slide-active .info a svg.active {
    display: block;
  }
}
@media screen and (max-width: 769px) {
  .p-home .blog .container .wrapper {
    width: calc(100% + 20px);
  }
  .p-home .blog .container .wrapper .swiper-button-next {
    right: 20px;
  }
  .p-home .blog .container .wrapper .swiper-button-prev {
    right: 76px;
  }
  .p-home .blog .container .wrapper .swiper-horizontal > .swiper-pagination-bullets, .p-home .blog .container .wrapper .swiper-pagination-bullets.swiper-pagination-horizontal, .p-home .blog .container .wrapper .swiper-pagination-custom, .p-home .blog .container .wrapper .swiper-pagination-fraction {
    right: auto;
    left: 0px;
  }
}
.p-home .blog .container .btn-primary {
  margin-inline: auto;
}
@media screen and (max-width: 993px) {
  .p-home .blog .container .btn-primary {
    padding-inline: 2.8rem;
  }
}

.p-about main {
  overflow-x: hidden;
}
.p-about .presentation {
  padding-top: 381px;
  padding-bottom: 200px;
  background-image: url(../images/about-presentation.png);
  background-size: cover;
  background-position: bottom center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-about .presentation .container {
  max-width: 950px;
}
.p-about .presentation .container h1 {
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 93%;
  letter-spacing: -0.08rem;
  margin-bottom: 0.62rem;
  background: var(--Degrad, #0D158D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-about .presentation .container p {
  color: #000;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -0.04rem;
  margin-bottom: 3.13rem;
  max-width: 792px;
  margin-inline: auto;
}
.p-about .presentation .container .btn-primary {
  margin-inline: auto;
}
@media screen and (max-width: 993px) {
  .p-about .presentation {
    padding-top: 200px;
    padding-bottom: 150px;
  }
  .p-about .presentation .container h1 {
    font-size: 3rem;
    margin-bottom: 0.31rem;
    max-width: 600px;
    margin-inline: auto;
  }
  .p-about .presentation .container p {
    max-width: 600px;
    margin-inline: auto;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
}
@media screen and (max-width: 769px) {
  .p-about .presentation {
    background-image: url(../images/about-presentation-mobile.png);
    background-position: center;
  }
  .p-about .presentation .container h1 {
    font-size: 2rem;
    max-width: 400px;
  }
  .p-about .presentation .container p {
    max-width: 400px;
    font-size: 1rem;
  }
  .p-about .presentation .container .btn-primary {
    padding-inline: 2.5rem;
    border-radius: 8px;
  }
}
@media screen and (max-width: 376px) {
  .p-about .presentation {
    background-size: contain;
  }
}
.p-about .lock {
  margin-top: 18.75rem;
  margin-bottom: 27.75rem;
}
.p-about .lock .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1170px;
}
.p-about .lock .container .box {
  width: 420px;
  border-radius: 1.875rem;
  background: #F5F4F9;
  padding: 6.81rem 5.94rem 10.63rem 4.5rem;
}
.p-about .lock .container .box svg {
  margin-bottom: 1.62rem;
}
.p-about .lock .container .box h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 93%;
  letter-spacing: -0.06rem;
}
.p-about .lock .container .info {
  flex: 1;
  max-width: 505px;
}
.p-about .lock .container .info p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 115%;
}
.p-about .lock .container .info p + p {
  margin-top: 25px;
}
@media screen and (max-width: 1100px) {
  .p-about .lock {
    margin-top: 6.25rem;
    margin-bottom: 12.5rem;
  }
  .p-about .lock .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.88rem;
  }
  .p-about .lock .container .box {
    width: -moz-max-content;
    width: max-content;
    max-width: initial;
    padding: 2.19rem 3.38rem 3.13rem 2.5rem;
    gap: 0;
  }
  .p-about .lock .container .box svg {
    width: 20px;
    height: 27px;
    margin-bottom: 0.7rem;
  }
  .p-about .lock .container .box h2 {
    font-size: 2rem;
  }
  .p-about .lock .container .box h2 br {
    display: none;
  }
  .p-about .lock .container .info {
    max-width: initial;
  }
  .p-about .lock .container .info p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 993px) {
  .p-about .lock {
    margin-top: 0.62rem;
  }
  .p-about .lock .container .box {
    width: 100%;
    max-width: 400px;
  }
  .p-about .lock .container .box h2 {
    max-width: 300px;
  }
}
.p-about .resume-status {
  margin-bottom: 26rem;
}
.p-about .resume-status .container {
  display: flex;
  align-items: center;
  max-width: 1170px;
  gap: 50px;
}
.p-about .resume-status .container .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.p-about .resume-status .container .left .item {
  width: 583px;
  position: relative;
}
.p-about .resume-status .container .left .item .number,
.p-about .resume-status .container .left .item .pre {
  color: #E0E2E4;
  font-family: "Labrador", sans-serif;
  font-size: 12.25rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.49rem;
}
.p-about .resume-status .container .left .item .number::before {
  display: inline-block;
  color: #E0E2E4;
  font-family: "Labrador", sans-serif;
  font-size: 12.25rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.49rem;
}
.p-about .resume-status .container .left .item .title {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 93%;
  letter-spacing: -0.06rem;
  position: absolute;
  top: calc(50% + 6px);
  left: calc(100% - 260px);
  transform: translateY(-50%);
}
.p-about .resume-status .container .right {
  max-width: 632px;
}
.p-about .resume-status .container .right img {
  width: 632px;
  display: block;
  margin-right: -170px;
}
@media screen and (max-width: 1100px) {
  .p-about .resume-status {
    margin-bottom: 17rem;
  }
  .p-about .resume-status .container .left .item {
    width: 325px;
  }
  .p-about .resume-status .container .left .item .number {
    font-size: 8rem;
  }
  .p-about .resume-status .container .left .item .number::before {
    font-size: 8rem;
  }
  .p-about .resume-status .container .left .item .title {
    font-size: 2.25rem;
    left: calc(100% - 143px);
  }
  .p-about .resume-status .container .left .item:nth-child(2) .title {
    left: calc(100% - 100px);
  }
  .p-about .resume-status .container .right img {
    width: 500px;
    margin-right: 0;
  }
}
@media screen and (max-width: 993px) {
  .p-about .resume-status .container {
    flex-direction: column;
  }
}
@media screen and (max-width: 769px) {
  .p-about .resume-status .container .right img {
    width: 100%;
  }
}
.p-about .what-it-does {
  margin-bottom: 18.25rem;
}
.p-about .what-it-does .container {
  max-width: 1170px;
}
.p-about .what-it-does .container h2 {
  color: #0E0F0C;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 93%;
  letter-spacing: -0.06rem;
  margin-bottom: 0.56rem;
}
.p-about .what-it-does .container p {
  color: #8D8D8D;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 115%;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 3.13rem;
}
.p-about .what-it-does .container .embed {
  aspect-ratio: 16/9;
  width: 100%;
  background-color: #0E0F0C;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.p-about .what-it-does .container .embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 993px) {
  .p-about .what-it-does {
    margin-bottom: 12.5rem;
  }
  .p-about .what-it-does .container h2 {
    font-size: 2rem;
    margin-bottom: 0.25rem;
    max-width: 200px;
    margin-inline: auto;
  }
  .p-about .what-it-does .container p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    max-width: 400px;
  }
  .p-about .what-it-does .container .embed {
    max-width: 800px;
    margin-inline: auto;
  }
}
.p-about .our-products {
  margin-bottom: 18.75rem;
}
.p-about .our-products .container {
  padding-top: 281px;
  background-image: url(../images/gallery-cover-products.png);
  background-repeat: no-repeat;
  background-position: right top;
  max-width: 1170px;
}
.p-about .our-products .container h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 6rem;
  font-weight: 800;
  line-height: 77%;
  letter-spacing: -0.12rem;
  margin-bottom: 1.25rem;
}
.p-about .our-products .container h2 span {
  display: block;
  background: var(--Degrad, #0D158D);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Labrador", sans-serif;
  font-size: 6rem;
  font-style: normal;
  font-weight: 800;
  line-height: 77%;
  letter-spacing: -0.12rem;
}
.p-about .our-products .container p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 400;
  line-height: 115%;
  margin-bottom: 3.13rem;
  max-width: 475px;
}
@media screen and (max-width: 1100px) {
  .p-about .our-products {
    margin-bottom: 0;
  }
  .p-about .our-products .container {
    background-size: calc(100% - 40px);
    padding-bottom: 18.75rem;
  }
  .p-about .our-products .container h2 {
    font-size: 2.5rem;
    margin-bottom: 0.87rem;
  }
  .p-about .our-products .container h2 span {
    font-size: 2.5rem;
  }
  .p-about .our-products .container p {
    font-size: 1rem;
    margin-bottom: 1.87rem;
    max-width: 400px;
  }
  .p-about .our-products .container .btn-primary {
    padding-inline: 2.5rem;
  }
}
@media screen and (max-width: 993px) {
  .p-about .our-products .container {
    background-size: 800px;
    padding-top: 150px;
    padding-bottom: 200px;
    background-image: url(../images/gallery-cover-products.png);
  }
}
@media screen and (max-width: 900px) {
  .p-about .our-products .container {
    background-size: 600px;
    padding-top: 150px;
    padding-bottom: 200px;
  }
  .p-about .our-products .container p {
    max-width: 232px;
  }
}
@media screen and (max-width: 600px) {
  .p-about .our-products .container {
    background-image: url(../images/gallery-cover-products-mobile.png);
    background-size: auto;
  }
}
.p-about .instagram {
  margin-bottom: 20.5rem;
}
.p-about .instagram .container {
  max-width: 1170px;
}
.p-about .instagram .container h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 90%;
  letter-spacing: -0.06rem;
  margin-bottom: 0.81rem;
}
.p-about .instagram .container > a:not(.btn-primary) {
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 77%;
  letter-spacing: -0.03rem;
  margin-bottom: 2.06rem;
  display: flex;
  align-items: center;
  gap: 0.63rem;
  color: #0D158D;
}
.p-about .instagram .container > a:not(.btn-primary):hover {
  text-decoration: underline;
}
.p-about .instagram .container .wrapper {
  margin-bottom: 4.37rem;
}
.p-about .instagram .container .wrapper .item {
  aspect-ratio: 1/1;
  border-radius: 12px;
  overflow: hidden;
}
.p-about .instagram .container .wrapper .item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-about .instagram .container .btn-primary {
  margin-inline: auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 993px) {
  .p-about .instagram {
    margin-bottom: 19rem;
  }
  .p-about .instagram .container h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
  }
  .p-about .instagram .container > a:not(.btn-primary) {
    gap: 0.56rem;
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
  }
  .p-about .instagram .container > a:not(.btn-primary) svg {
    width: 18px;
    height: 18px;
  }
  .p-about .instagram .container .wrapper {
    margin-bottom: 3.12rem;
    width: calc(100% + 20px);
    padding-bottom: 50px;
  }
  .p-about .instagram .container .wrapper .swiper-horizontal > .swiper-pagination-bullets, .p-about .instagram .container .wrapper .swiper-pagination-bullets.swiper-pagination-horizontal, .p-about .instagram .container .wrapper .swiper-pagination-custom, .p-about .instagram .container .wrapper .swiper-pagination-fraction {
    bottom: 0;
    top: initial;
    left: 0;
  }
  .p-about .instagram .container .wrapper .swiper-pagination-bullet-active {
    background-image: #0D158D;
  }
}

.p-how-works main {
  overflow-x: hidden;
}
.p-how-works .presentation {
  margin-bottom: 18rem;
}
.p-how-works .presentation .bg {
  background: #0D158D;
}
.p-how-works .presentation .container {
  padding-top: 14.38rem;
  padding-bottom: 22.44em;
}
.p-how-works .presentation .container h1 {
  color: #FFF;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 93%;
  letter-spacing: -0.08rem;
  margin-bottom: 0.5rem;
  max-width: 1067px;
  margin-inline: auto;
}
.p-how-works .presentation .container p {
  color: #FFF;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -0.04rem;
  margin-bottom: 50px;
  max-width: 792px;
  margin-inline: auto;
}
.p-how-works .presentation .container .btn-ghost {
  margin-inline: auto;
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 142.523%;
  letter-spacing: -0.03rem;
  padding: 1.38rem 5.31rem;
  border-radius: 0.9375rem;
  border: 1px solid #FFF;
  display: block;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  transition: 200ms;
}
.p-how-works .presentation .container .btn-ghost:hover {
  transform: scale(1.1);
}
.p-how-works .presentation .video-container {
  height: 640px;
}
.p-how-works .presentation .video-container .embed {
  width: 100%;
  max-width: 1090px;
  aspect-ratio: 16/9;
  background-color: #0E0F0C;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  margin-inline: auto;
  margin-top: -255px;
}
.p-how-works .presentation .video-container .embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1300px) {
  .p-how-works .presentation .video-container .embed {
    max-width: 1000px;
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 1300px) {
  .p-how-works .presentation .container {
    max-width: 1000px;
  }
  .p-how-works .presentation .container h1 {
    font-size: 3rem;
    max-width: 790px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1024px) {
  .p-how-works .presentation {
    margin-bottom: 9.38rem;
  }
  .p-how-works .presentation .video-container {
    height: auto;
  }
}
@media screen and (max-width: 769px) {
  .p-how-works .presentation .container {
    padding-top: 10rem;
    padding-bottom: 19rem;
  }
  .p-how-works .presentation .container h1 {
    font-size: 2rem;
    margin-bottom: 0.63rem;
    max-width: 550px;
  }
  .p-how-works .presentation .container p {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    max-width: 400px;
  }
  .p-how-works .presentation .container .btn-ghost {
    font-size: 1.125rem;
    padding: 0.94rem 2.5rem;
  }
  .p-how-works .presentation .video-container .embed {
    max-width: 600px;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 500px) {
  .p-how-works .presentation {
    margin-bottom: 8rem;
  }
  .p-how-works .presentation .container {
    padding-top: 7.69rem;
    padding-bottom: 10rem;
  }
  .p-how-works .presentation .video-container .embed {
    margin-top: -100px;
  }
}
.p-how-works .steps {
  background-color: #F5F4F9;
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
.p-how-works .steps .container {
  max-width: 1170px;
}
.p-how-works .steps .container h2 {
  color: #0E0F0C;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.06rem;
  margin-bottom: 3.12rem;
}

.p-how-works .steps .container p {     
    text-align: center;
    font-family: "Labrador", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 93%;
    letter-spacing: -0.04rem;
    margin-bottom: 50px;
    margin-inline: auto;
}

.p-how-works .steps .container .wrapper {
  margin-bottom: 3.12rem;
  padding-bottom: 3.13rem;
}
.p-how-works .steps .container .wrapper .item {
  padding: 3.12rem 3.5rem 3.88rem 2.31rem;
  border-radius: 1.25rem;
  background: #FFF;
}
.p-how-works .steps .container .wrapper .item .title {
  display: block;
  font-family: "Labrador", sans-serif;
  font-size: 5.25rem;
  font-weight: 800;
  line-height: 88%;
  letter-spacing: -0.105rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.69rem;
}
.p-how-works .steps .container .wrapper .item p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
}
.p-how-works .steps .container .wrapper .swiper-horizontal > .swiper-pagination-bullets,
.p-how-works .steps .container .wrapper .swiper-pagination-bullets.swiper-pagination-horizontal,
.p-how-works .steps .container .wrapper .swiper-pagination-custom, .p-how-works .steps .container .wrapper .swiper-pagination-fraction {
  bottom: 0;
  top: initial;
}
.p-how-works .steps .container .wrapper .swiper-pagination-bullet-active {
  background: #0D158D;
}
.p-how-works .steps .container .btn-primary {
  margin-inline: auto;
}
@media screen and (max-width: 1300px) {
  .p-how-works .steps .container {
    max-width: 1080px;
  }
}
@media screen and (max-width: 1024px) {
  .p-how-works .steps .container .wrapper {
    width: calc(100% + 40px);
  }
}
@media screen and (max-width: 993px) {
  .p-how-works .steps .container .wrapper {
    width: calc(100% + 20px);
  }
}
@media screen and (max-width: 769px) {
  .p-how-works .steps {
    padding-top: 4.37rem;
    padding-bottom: 4.37rem;
  }
  .p-how-works .steps .container h2 {
    font-size: 2rem;
    max-width: 320px;
    margin-inline: auto;
  }
  .p-how-works .steps .container .wrapper .item {
    padding: 3.12rem 4.06rem 3.12rem 2.5rem;
  }
  .p-how-works .steps .container .wrapper .item .title {
    font-size: 4rem;
    margin-bottom: 0.31rem;
  }
  .p-how-works .steps .container .btn-primary {
    padding: 0.94rem 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-how-works .steps .container .wrapper {
    width: 100%;
  }
}
.p-how-works .functions {
  margin-top: 26.87rem;
  margin-bottom: 21.25rem;
}
.p-how-works .functions .container {
  display: flex;
  max-width: 1170px;
  gap: 5rem;
  align-items: center;
}
.p-how-works .functions .container .info {
  flex: 1;
}
.p-how-works .functions .container .info h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.06rem;
  margin-bottom: 3.12rem;
}
.p-how-works .functions .container .info h2 + p {
  display: none;
}
.p-how-works .functions .container .info .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 6.56rem;
       column-gap: 6.56rem;
  row-gap: 4.69rem;
  margin-bottom: 5rem;
}
.p-how-works .functions .container .info .wrapper .item h3 {
  color: #0D158D;
  font-family: "Labrador", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.04rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}
.p-how-works .functions .container .info .wrapper .item p {
  color: #4D4D4D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
  padding-left: 3.25rem;
}
.p-how-works .functions .container .cover {
  width: 350px;
  position: relative;
}
.p-how-works .functions .container .cover .embed {
  display: block;
  width: calc(100% - 59px);
  height: calc(100% - 60px);
  border-radius: 31px;
  margin-top: 19px;
  position: absolute;
  background-color: #0E0F0C;
  inset: 0;
  margin-left: 44px;
  overflow: hidden;
}
.p-how-works .functions .container .cover .embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #0E0F0C;
}
.p-how-works .functions .container .cover::after {
  content: "";
  display: block;
  width: 166px;
  height: 24px;
  background-color: #1e1e1e;
  position: absolute;
  top: 18px;
  right: 77px;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}
.p-how-works .functions .container .cover .btn-primary {
  display: none;
}
.p-how-works .functions .container .cover img {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1300px) {
  .p-how-works .functions .container {
    max-width: 1080px;
  }
  .p-how-works .functions .container .info .wrapper {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }
}
@media screen and (max-width: 769px) {
  .p-how-works .functions {
    margin-top: 9.37rem;
    margin-bottom: 9.37rem;
  }
  .p-how-works .functions .container {
    display: block;
    max-width: 650px;
    margin-inline: auto;
  }
  .p-how-works .functions .container .info h2 {
    font-size: 2rem;
    margin-bottom: 0.63rem;
  }
  .p-how-works .functions .container .info h2 + p {
    display: block;
    color: #8D8D8D;
    font-family: "Labrador", sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 115%;
    margin-bottom: 1.87rem;
  }
  .p-how-works .functions .container .info .wrapper {
    margin-bottom: 4rem;
  }
  .p-how-works .functions .container .info .wrapper .item h3 {
    font-size: 1.5rem;
    gap: 0.94rem;
    margin-bottom: 0.19rem;
  }
  .p-how-works .functions .container .info .wrapper .item h3 svg {
    width: 24px;
    height: 24px;
  }
  .p-how-works .functions .container .info .wrapper .item p {
    font-size: 1rem;
    padding-left: 2.5rem;
  }
  .p-how-works .functions .container .info .btn-primary {
    display: none;
  }
  .p-how-works .functions .container .cover {
    width: 100%;
  }
  .p-how-works .functions .container .cover .embed {
    display: block;
    margin-bottom: 5rem;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 1.4375rem;
    background: #0D158D;
    max-width: 500px;
    margin-inline: auto;
    position: relative;
    overflow: hidden;
  }
  .p-how-works .functions .container .cover .embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .p-how-works .functions .container .cover::after {
    display: none;
  }
  .p-how-works .functions .container .cover .btn-primary {
    display: block;
    padding: 0.94rem 2.5rem;
    margin-inline: auto;
  }
  .p-how-works .functions .container .cover img {
    margin-inline: auto;
    display: none;
  }
}
.p-how-works .more-infos .container {
  max-width: 1170px;
  display: flex;
}
.p-how-works .more-infos .container .cover {
  width: 617px;
  flex: 1;
  position: relative;
}
.p-how-works .more-infos .container .cover img {
  display: block;
  margin-left: -96px;
}
.p-how-works .more-infos .container .cover .embed {
  content: "";
  display: block;
  background-color: #0E0F0C;
  border-radius: 2px;
  width: calc(100% - 232px);
  height: calc(100% - 303px);
  margin-top: 35px;
  margin-left: 24px;
  position: absolute;
  overflow: hidden;
}
.p-how-works .more-infos .container .cover .embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #0E0F0C;
}
.p-how-works .more-infos .container .cover .btn-primary {
  display: none;
}
.p-how-works .more-infos .container .info {
  margin-left: -65px;
  width: 344px;
}
.p-how-works .more-infos .container .info h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.06rem;
  margin-bottom: 1.25rem;
}
.p-how-works .more-infos .container .info p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 115%;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 1300px) {
  .p-how-works .more-infos .container {
    flex-direction: column-reverse;
    max-width: 1080px;
    margin-inline: auto;
    gap: 50px;
  }
  .p-how-works .more-infos .container .info {
    margin-left: 0;
    width: initial;
  }
  .p-how-works .more-infos .container .info .btn-primary {
    display: none;
  }
  .p-how-works .more-infos .container .cover {
    width: 100%;
  }
  .p-how-works .more-infos .container .cover img {
    width: 100%;
    margin-inline: auto;
  }
  .p-how-works .more-infos .container .cover .embed {
    margin-left: 131px;
    margin-top: 38px;
    width: 636px;
    height: 398px;
  }
  .p-how-works .more-infos .container .cover .btn-primary {
    display: block;
    margin-inline: auto;
  }
}
@media screen and (max-width: 1120px) {
  .p-how-works .more-infos .container .cover img {
    max-width: 800px;
  }
  .p-how-works .more-infos .container .cover .embed {
    margin-left: 205px;
    margin-top: 31px;
    width: 508px;
    height: 318px;
  }
}
@media screen and (max-width: 1080px) {
  .p-how-works .more-infos .container .cover {
    width: 800px;
    margin-inline: auto;
  }
  .p-how-works .more-infos .container .cover img {
    margin-left: 47px;
  }
  .p-how-works .more-infos .container .cover .embed {
    margin-left: 151px;
    margin-top: 31px;
    width: 508px;
    height: 318px;
  }
}
@media screen and (max-width: 769px) {
  .p-how-works .more-infos .container {
    max-width: 650px;
  }
  .p-how-works .more-infos .container .info h2 {
    font-size: 2rem;
    margin-bottom: 0.62rem;
  }
  .p-how-works .more-infos .container .info p {
    font-size: 1.125rem;
    margin-bottom: 0;
  }
  .p-how-works .more-infos .container .cover {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
  .p-how-works .more-infos .container .cover .embed {
    width: 413px;
    height: 260px;
    margin-left: 132px;
    margin-top: 25px;
  }
  .p-how-works .more-infos .container .cover .btn-primary {
    margin-top: 4.94rem;
    padding: 0.94rem 2.5rem;
  }
}
@media screen and (max-width: 630px) {
  .p-how-works .more-infos .container .cover {
    width: 375px;
    margin-inline: auto;
    overflow: hidden;
  }
  .p-how-works .more-infos .container .cover img {
    width: 375px;
    margin-left: 20px;
  }
  .p-how-works .more-infos .container .cover .embed {
    width: 238px;
    height: 154px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-top: 10px;
  }
}
@media screen and (max-width: 400px) {
  .p-how-works .more-infos .container {
    align-items: center;
    padding-inline: 0;
  }
  .p-how-works .more-infos .container .info {
    padding-inline: 20px;
  }
  .p-how-works .more-infos .container .cover {
    width: 375px;
    margin-inline: auto;
    overflow: visible;
  }
  .p-how-works .more-infos .container .cover img {
    width: 375px;
    margin-left: 0px;
  }
  .p-how-works .more-infos .container .cover .embed {
    width: 313px;
    height: 197px;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0;
    margin-top: 15px;
  }
}
@media screen and (max-width: 360px) {
  .p-how-works .more-infos .container .cover {
    margin-left: -10px;
  }
}
.p-how-works .contact {
  margin-top: 19rem;
}
.p-how-works .contact .container {
  max-width: 1362px;
  display: flex;
  justify-content: space-between;
  background-color: transparent;
  box-shadow: none;
}
.p-how-works .contact .container .info {
  flex: 1;
  background: none;
}
.p-how-works .contact .container .info h2 {
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-how-works .contact .container .info p {
  color: #505050;
}
.p-how-works .contact .container .info .wrapper .item {
  display: flex;
  gap: 0.63rem;
}
.p-how-works .contact .container .info .wrapper .item .icon {
  width: auto;
  height: auto;
  background-color: transparent;
}
.p-how-works .contact .container .info .wrapper .item .details .title {
  color: #505050;
}
.p-how-works .contact .container .info .wrapper .item .details .text {
  color: #505050;
}
.p-how-works .contact .container form {
  padding-inline: 0;
  max-width: 712px;
}
.p-how-works .contact .container form .input-group-prefer .wrapper-radio {
  justify-content: flex-start;
}
@media screen and (max-width: 1300px) {
  .p-how-works .contact .container {
    display: block;
    max-width: 1000px;
    margin-inline: auto;
  }
  .p-how-works .contact .container .info {
    padding: 0;
  }
  .p-how-works .contact .container .info h2 br {
    display: none;
  }
  .p-how-works .contact .container .info p br {
    display: none;
  }
  .p-how-works .contact .container .info .wrapper {
    margin-top: 1.4rem;
  }
  .p-how-works .contact .container form {
    max-width: initial;
  }
}
@media screen and (max-width: 769px) {
  .p-how-works .contact {
    margin-top: 12.5rem;
  }
  .p-how-works .contact .container {
    margin-bottom: 19.06rem;
    max-width: 610px;
  }
  .p-how-works .contact .container .info p.alert {
    margin-top: 0;
  }
  .p-how-works .contact .container .info .wrapper {
    margin-top: 1.25rem;
  }
  .p-how-works .contact .container .info .wrapper .item .icon svg {
    display: block;
  }
  .p-how-works .contact .container .info .wrapper .item .text {
    font-size: 1.25rem;
  }
  .p-how-works .contact .container form {
    margin-top: 3.12rem;
    padding: 0;
    box-shadow: none;
  }
}

.p-product-list .header-main {
  background: linear-gradient(257deg, #0E36E3 100%, #0D158D 100%);
}
.p-product-list .header-main.scroll + .submenu-product {
  padding-top: 150px;
}
.p-product-list .submenu-product {
  background: #0D158D;
  padding-top: 135px;
  transition: 200ms;
}
.p-product-list .submenu-product .wrapper-scroll {
  overflow-x: auto;
}
.p-product-list .submenu-product .container {
  padding-block: 1.31rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  min-width: 600px;
}
.p-product-list .submenu-product .container a {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.025rem;
  position: relative;
}
.p-product-list .submenu-product .container a::before {
  content: "";
  width: 0;
  position: absolute;
  top: calc(100% + 19.2px);
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background-color: #FFFFFF;
  transition: 200ms;
}
.p-product-list .submenu-product .container a:hover::before, .p-product-list .submenu-product .container a.active::before {
  width: calc(100% + 16px);
}
@media screen and (max-width: 1100px) {
  .p-product-list .submenu-product {
    padding-top: 124px;
  }
}
@media screen and (max-width: 769px) {
  .p-product-list .submenu-product .container {
    gap: 3.75rem;
  }
  .p-product-list .submenu-product .container a {
    font-size: 1rem;
  }
}
.p-product-list .presentation {
  padding-top: 6.25rem;
  padding-bottom: 9.56rem;
  border-bottom: 1px solid #D9D9D9;
  max-width: 819px;
  margin-inline: auto;
}
.p-product-list .presentation .container {
  max-width: 819px;
  padding-inline: 0;
}
.p-product-list .presentation .container h1 {
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.06rem;
  margin-bottom: 6.25rem;
  margin-inline: auto;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: calc(100% + 80px);
  margin-left: -40px;
}
.p-product-list .presentation .container .box {
  display: flex;
  gap: 2.87rem;
}
.p-product-list .presentation .container .box .cover {
  width: 316px;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.p-product-list .presentation .container .box .cover img {
  display: block;
  width: 100%;
  max-height: 316px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product-list .presentation .container .box .info {
  flex: 1;
}
.p-product-list .presentation .container .box .info h2 {
  display: flex;
  align-items: center;
  gap: 0.81rem;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.05rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}
.p-product-list .presentation .container .box .info p {
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 110.023%;
  letter-spacing: -0.0125rem;
  margin-bottom: 0.63rem;
}
.p-product-list .presentation .container .box .info p.light {
  color: #8D8D8D;
  font-weight: 400;
}
.p-product-list .presentation .container .box .info .btn-primary {
  margin-top: 1.87rem;
  padding: 1.06rem 3.75rem;
}
@media screen and (max-width: 993px) {
  .p-product-list .presentation .container {
    max-width: 820px;
    width: calc(100% - 40px);
  }
  .p-product-list .presentation .container h1 {
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (max-width: 769px) {
  .p-product-list .presentation {
    padding-top: 2.12rem;
    padding-bottom: 3.13rem;
  }
  .p-product-list .presentation .container h1 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1.25rem;
  }
  .p-product-list .presentation .container .box {
    flex-direction: column;
  }
  .p-product-list .presentation .container .box .cover {
    width: 100%;
    height: 360px;
  }
  .p-product-list .presentation .container .box .cover img {
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-product-list .presentation .container .box .info h2 {
    font-size: 2rem;
    margin-bottom: 0.63rem;
  }
  .p-product-list .presentation .container .box .info h2 svg {
    width: 32px;
    height: 32px;
  }
  .p-product-list .presentation .container .box .info p {
    font-size: 1rem;
    margin-bottom: 0.31rem;
  }
  .p-product-list .presentation .container .box .info .btn-primary {
    padding: 0.94rem 2.5rem;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 500px) {
  .p-product-list .presentation .container .box {
    gap: 1.87rem;
  }
  .p-product-list .presentation .container .box .info .btn-primary {
    margin-inline: auto;
  }
  .p-product-list .presentation .container .box .cover {
    height: 157px;
  }
}
.p-product-list .item-post {
  max-width: 819px;
  margin-inline: auto;
  display: flex;
  gap: 2.87rem;
}
.p-product-list .item-post + .item-post {
  border-top: 1px solid #D9D9D9;
}
.p-product-list .item-post.reverse {
  flex-direction: row-reverse;
}
.p-product-list .item-post .cover {
  width: 316px;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.p-product-list .item-post .cover img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product-list .item-post .info {
  flex: 1;
}
.p-product-list .item-post .info h2 {
  display: flex;
  align-items: center;
  gap: 0.81rem;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.05rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}
.p-product-list .item-post .info p {
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 110.023%;
  letter-spacing: -0.0125rem;
  margin-bottom: 0.63rem;
}
.p-product-list .item-post .info p.light {
  color: #8D8D8D;
  font-weight: 400;
}
.p-product-list .item-post .info .btn-primary {
  margin-top: 1.87rem;
  padding: 1.06rem 3.75rem;
}
@media screen and (max-width: 769px) {
  .p-product-list .item-post {
    flex-direction: column-reverse;
  }
  .p-product-list .item-post .info h2 {
    font-size: 2rem;
    margin-bottom: 0.62rem;
    gap: 0.87rem;
  }
  .p-product-list .item-post .info h2 svg {
    width: 32px;
    height: 32px;
  }
  .p-product-list .item-post .info p {
    font-size: 1rem;
    margin-bottom: 0.31rem;
  }
  .p-product-list .item-post .info .btn-primary {
    margin-top: 2.5rem;
    padding: 0.94rem 2.5rem;
  }
  .p-product-list .item-post .cover {
    width: 100%;
    height: 360px;
    -o-object-position: center;
       object-position: center;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-product-list .item-post.reverse {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 500px) {
  .p-product-list .item-post .info .btn-primary {
    margin-inline: auto;
  }
  .p-product-list .item-post .cover {
    height: 157px;
  }
}
.p-product-list .list {
  margin-bottom: 14.2rem;
}
.p-product-list .list .item-post {
  padding-top: 8.5rem;
  padding-bottom: 9.38rem;
}
@media screen and (max-width: 769px) {
  .p-product-list .list {
    margin-bottom: 19rem;
  }
  .p-product-list .list .item-post {
    padding-top: 3.12rem;
    padding-bottom: 3.13rem;
  }
}

.p-product-internal main {
  overflow-x: hidden;
}
.p-product-internal .header-main {
  background: linear-gradient(257deg, #0E36E3 100%, #0D158D 100%);
}
.p-product-internal .header-main.scroll + .submenu-product {
  padding-top: 150px;
  padding-top: 120px;
}
.p-product-internal .submenu-product {
  background: #0D158D;
  padding-top: 135px;
  transition: 200ms;
}
.p-product-internal .submenu-product .wrapper-scroll {
  overflow-y: hidden;
  overflow-x: auto;
}
.p-product-internal .submenu-product .container {
  padding-block: 1.31rem;
  display: flex;
  align-items: center;
  gap: 5rem;
  min-width: 600px;
}
.p-product-internal .submenu-product .container a {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.025rem;
  position: relative;
}
.p-product-internal .submenu-product .container a::before {
  content: "";
  width: 0;
  position: absolute;
  top: calc(100% + 19.2px);
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  background-color: #FFFFFF;
  transition: 200ms;
}
.p-product-internal .submenu-product .container a:hover::before, .p-product-internal .submenu-product .container a.active::before {
  width: calc(100% + 16px);
}
@media screen and (max-width: 1100px) {
  .p-product-internal .submenu-product {
    padding-top: 124px;
  }
}
@media screen and (max-width: 769px) {
  .p-product-internal .submenu-product .container {
    gap: 3.75rem;
  }
  .p-product-internal .submenu-product .container a {
    font-size: 1rem;
  }
}
.p-product-internal .presentation {
  background: linear-gradient(257deg, #0E36E3 100%, #0D158D 100%);
}
.p-product-internal .presentation .container {
  display: flex;
  height: 675px;
  align-items: center;
  justify-content: space-between;
}
.p-product-internal .presentation .container .info h1 {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 92.023%;
  letter-spacing: -0.04rem;
  margin-bottom: 0.94rem;
  max-width: 600px;
}
.p-product-internal .presentation .container .info p {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 110.023%;
  letter-spacing: -0.015rem;
  margin-bottom: 1.88rem;
  max-width: 557px;
}
.p-product-internal .presentation .container .info .only-mobile {
  display: none;
}
.p-product-internal .presentation .container .info .buttons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.p-product-internal .presentation .container .info .buttons .btn-white {
  padding: 1.06rem 3.75rem;
  border-radius: 0.6875rem;
  background: #FFF;
}
.p-product-internal .presentation .container .info .buttons .btn-white span {
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 142.523%;
  letter-spacing: -0.025rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
}
.p-product-internal .presentation .container .info .buttons .btn-ghost {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 142.523%;
  letter-spacing: -0.025rem;
  padding: 1.06rem 3.13rem;
  border-radius: 0.6875rem;
  border: 1px solid #FFF;
  text-transform: uppercase;
}
.p-product-internal .presentation .container .info .buttons a {
  transition: 200ms;
}
.p-product-internal .presentation .container .info .buttons a:hover {
  transform: scale(1.1);
}
.p-product-internal .presentation .container .cover img {
  top: -10px;
  position: relative;
}
@media screen and (max-width: 1550px) {
  .p-product-internal .presentation .container .info {
    flex: 1;
  }
  .p-product-internal .presentation .container .cover {
    width: 710px;
  }
  .p-product-internal .presentation .container .cover img {
    width: 760px;
    margin-bottom: -90px;
    bottom: 0;
  }
}
@media screen and (max-width: 1360px) {
  .p-product-internal .presentation .container {
    height: auto;
    flex-direction: column;
    padding-top: 5rem;
    padding-bottom: 6rem;
  }
  .p-product-internal .presentation .container .info {
    max-width: 900px;
  }
  .p-product-internal .presentation .container .info h1 {
    text-align: center;
  }
  .p-product-internal .presentation .container .info h1 br {
    display: none;
  }
  .p-product-internal .presentation .container .info p {
    text-align: center;
    max-width: initial;
  }
  .p-product-internal .presentation .container .info .only-mobile {
    display: block;
    width: 600px;
    margin-inline: auto;
  }
  .p-product-internal .presentation .container .info .buttons {
    margin-inline: auto;
    width: -moz-max-content;
    width: max-content;
  }
  .p-product-internal .presentation .container .cover {
    display: none;
  }
}
@media screen and (max-width: 993px) {
  .p-product-internal .presentation .container .info h1 {
    font-size: 3rem;
    max-width: 700px;
    margin-inline: auto;
  }
  .p-product-internal .presentation .container .info p {
    max-width: 600px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 769px) {
  .p-product-internal .presentation .container {
    padding-top: 1.25rem;
    padding-bottom: 3.5rem;
  }
  .p-product-internal .presentation .container .info {
    max-width: 400px;
  }
  .p-product-internal .presentation .container .info h1 {
    font-size: 2rem;
  }
  .p-product-internal .presentation .container .info p {
    font-size: 1rem;
    font-weight: 500;
  }
  .p-product-internal .presentation .container .info .only-mobile {
    width: 100%;
    max-width: 400px;
  }
  .p-product-internal .presentation .container .info .buttons {
    flex-direction: column;
  }
  .p-product-internal .presentation .container .info .buttons a {
    width: 100%;
    max-width: 400px;
    text-align: center;
  }
  .p-product-internal .presentation .container .info .buttons a.btn-white {
    padding-block: 0.94rem;
  }
  .p-product-internal .presentation .container .info .buttons a.btn-white span {
    font-size: 1.125rem;
  }
  .p-product-internal .presentation .container .info .buttons a.btn-ghost {
    padding-block: 0.94rem;
    font-size: 1.125rem;
  }
}
.p-product-internal > main .columns {
  max-width: 1450px;
  padding-inline: 40px;
  margin-inline: auto;
  display: grid;
  gap: 100px;
  grid-template-columns: 735px 530px;
}
.p-product-internal > main .columns > div:first-of-type {
  padding-top: 7.87rem;
}
.p-product-internal > main .columns > div:first-of-type .budget {
  margin-bottom: 12.5rem;
}
.p-product-internal > main .columns > div:first-of-type .budget .info h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.05rem;
  margin-bottom: 1.25rem;
}
.p-product-internal > main .columns > div:first-of-type .budget .info > p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
  margin-bottom: 2.5rem;
}
.p-product-internal > main .columns > div:first-of-type .budget .info .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 3.75rem;
       column-gap: 3.75rem;
  row-gap: 3.12rem;
  margin-bottom: 3.75rem;
}
.p-product-internal > main .columns > div:first-of-type .budget .info .wrapper .item h3 {
  display: flex;
  align-items: center;
  gap: 1.31rem;
  font-family: "Labrador", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.04rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.44rem;
}
.p-product-internal > main .columns > div:first-of-type .budget .info .wrapper .item p {
  color: #4D4D4D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
  padding-left: 70px;
}
.p-product-internal > main .columns > div:first-of-type .embed {
  margin-bottom: 12.5rem;
  aspect-ratio: 16/9;
  width: 100%;
  background-color: #0E0F0C;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.p-product-internal > main .columns > div:first-of-type .embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-product-internal > main .columns > div:first-of-type .differences {
  margin-bottom: 16.13rem;
}
.p-product-internal > main .columns > div:first-of-type .differences > h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.05rem;
  margin-bottom: 2.75rem;
}
.p-product-internal > main .columns > div:first-of-type .differences .wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}
.p-product-internal > main .columns > div:first-of-type .differences .wrapper .info {
  width: 335px;
}
.p-product-internal > main .columns > div:first-of-type .differences .wrapper .info .item + .item {
  margin-top: 3.12rem;
}
.p-product-internal > main .columns > div:first-of-type .differences .wrapper .info .item h3 {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: #0D158D;
  font-family: "Labrador", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.04rem;
  margin-bottom: 8px;
}
.p-product-internal > main .columns > div:first-of-type .differences .wrapper .info .item p {
  color: #4D4D4D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
  padding-left: 55px;
}
.p-product-internal > main .columns > div:first-of-type .differences .wrapper .cover {
  flex: 1;
  position: relative;
}
.p-product-internal > main .columns > div:first-of-type .differences .wrapper .cover img {
  display: block;
  width: 100%;
}
.p-product-internal > main .columns > div:first-of-type .differences .wrapper .cover .embed {
  display: block;
  width: calc(100% - 59px);
  height: calc(100% - 60px);
  border-radius: 31px;
  margin-top: 19px;
  position: absolute;
  background-color: #0E0F0C;
  inset: 0;
  margin-left: 44px;
  overflow: hidden;
}
.p-product-internal > main .columns > div:first-of-type .differences .wrapper .cover .embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #0E0F0C;
}
.p-product-internal > main .columns > div:first-of-type .differences .wrapper .cover::after {
  content: "";
  display: block;
  width: 166px;
  height: 24px;
  background-color: #1e1e1e;
  position: absolute;
  top: 18px;
  right: 77px;
  border-bottom-left-radius: 26px;
  border-bottom-right-radius: 26px;
}
@media screen and (max-width: 1440px) {
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper .info {
    width: 60%;
  }
}
@media screen and (max-width: 1024px) {
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper .cover {
    flex: initial;
    width: 414px;
  }
}
@media screen and (max-width: 769px) {
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper .cover .embed {
    width: 100%;
    height: 100%;
    margin-top: 0;
    margin-left: 0;
  }
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper .cover::after {
    display: none;
  }
}
.p-product-internal > main .columns > div:first-of-type .review {
  margin-bottom: 15.63rem;
}
.p-product-internal > main .columns > div:first-of-type .review h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.05rem;
  margin-bottom: 3rem;
}
.p-product-internal > main .columns > div:first-of-type .review article {
  padding-top: 3.625rem;
  padding-left: 2.6875rem;
  background-image: url(../images/quote.svg);
  background-repeat: no-repeat;
  background-position: left top;
}
.p-product-internal > main .columns > div:first-of-type .review article .content {
  margin-bottom: 2.13rem;
}
.p-product-internal > main .columns > div:first-of-type .review article .content p {
  color: #1D201F;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 131.523%;
  letter-spacing: -0.015rem;
}
.p-product-internal > main .columns > div:first-of-type .review article .wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-product-internal > main .columns > div:first-of-type .review article .wrapper .author {
  display: flex;
  align-items: center;
  gap: 1.37rem;
}
.p-product-internal > main .columns > div:first-of-type .review article .wrapper .author .cover {
  width: 90px;
  height: 90px;
  border-radius: 999px;
  overflow: hidden;
}
.p-product-internal > main .columns > div:first-of-type .review article .wrapper .author .cover img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product-internal > main .columns > div:first-of-type .review article .wrapper .author .description h4 {
  color: #0D158D;
  font-family: "Labrador", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.0225rem;
}
.p-product-internal > main .columns > div:first-of-type .review article .wrapper .author .description p {
  color: #1D201F;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 93%;
}
.p-product-internal > main .columns > div:first-of-type .review article .wrapper .btn-video {
  border-radius: 0.9375rem;
  background: #0D158D;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.94rem;
  padding: 1.38rem 3.13rem;
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 142.523%;
  letter-spacing: -0.03rem;
  text-transform: uppercase;
  outline: none;
  background-size: 200% 100%;
  transition: 200ms;
}
.p-product-internal > main .columns > div:first-of-type .review article .wrapper .btn-video:hover {
  background-position: -100% 0;
}
.p-product-internal > main .columns > div:first-of-type .review .swiper {
  padding-bottom: 62px;
}
.p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-horizontal > .swiper-pagination-bullets, .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-pagination-custom, .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-pagination-fraction {
  bottom: 5px;
  top: initial;
  left: 2.6875rem;
  width: -moz-max-content;
  width: max-content;
}
.p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-pagination-bullet {
  width: 17px;
  height: 5px;
  border-radius: 5.5rem;
  background: #B8BCCA;
  transition: 200ms;
}
.p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-pagination-bullet-active {
  width: 48px;
  border-radius: 5.5rem;
  background: #0D158D;
}
.p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-button-next, .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-button-prev {
  top: initial;
  width: 24px;
  height: 24px;
  margin-top: initial;
  bottom: 0;
}
.p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-button-next::after, .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-button-prev::after {
  font-size: 0;
}
.p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-button-prev, .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-rtl .swiper-button-next {
  left: initial;
  right: 74px;
}
.p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-button-next, .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-rtl .swiper-button-prev {
  right: 0;
}
.p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-button-next {
  background-size: contain;
  background-image: url(../images/swiper-arrow-right-2.svg);
  filter: brightness(0) saturate(100%) invert(13%) sepia(59%) saturate(3504%) hue-rotate(219deg) brightness(98%) contrast(102%);
}
.p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-button-next.swiper-button-disabled {
  background-image: url(../images/swiper-arrow-right-2-disabled.svg);
}
.p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-button-prev {
  background-size: contain;
  background-image: url(../images/swiper-arrow-left-2.svg);
  filter: brightness(0) saturate(100%) invert(13%) sepia(59%) saturate(3504%) hue-rotate(219deg) brightness(98%) contrast(102%);
}
.p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-button-prev.swiper-button-disabled {
  background-image: url(../images/swiper-arrow-left-2-disabled.svg);
}
@media screen and (max-width: 1440px) {
  .p-product-internal > main .columns > div:first-of-type .review .swiper {
    max-width: 800px;
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 769px) {
  .p-product-internal > main .columns > div:first-of-type .review {
    margin-bottom: 12rem;
  }
}
.p-product-internal > main .columns > div:first-of-type .s-about {
  margin-bottom: 15.62rem;
}
.p-product-internal > main .columns > div:first-of-type .s-about .info {
  display: grid;
  grid-template-columns: 1fr 272px;
  gap: 3.75rem;
}
.p-product-internal > main .columns > div:first-of-type .s-about .info .left h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.05rem;
  margin-bottom: 1.25rem;
}
.p-product-internal > main .columns > div:first-of-type .s-about .info .left > p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
}
.p-product-internal > main .columns > div:first-of-type .s-about .info .left > p + p {
  margin-top: 25px;
}
.p-product-internal > main .columns > div:first-of-type .s-about .info .left .box-numbers {
  margin-top: 2.5rem;
  display: flex;
  gap: 2.5rem;
}
.p-product-internal > main .columns > div:first-of-type .s-about .info .left .box-numbers .item .number {
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.05rem;
  display: block;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-product-internal > main .columns > div:first-of-type .s-about .info .left .box-numbers .item .number::after {
  content: "+";
  display: inline-block;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.05rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-product-internal > main .columns > div:first-of-type .s-about .info .left .box-numbers .item .name {
  color: #545454;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 115%;
}
.p-product-internal > main .columns > div:first-of-type .s-about .info .right {
  border-radius: 17px;
  overflow: hidden;
}
.p-product-internal > main .columns > div:first-of-type .s-about .info .right img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-product-internal > main .columns > div:first-of-type .faq {
  margin-bottom: 15.62rem;
}
.p-product-internal > main .columns > div:first-of-type .faq .info > h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.05rem;
  margin-bottom: 0.63rem;
}
.p-product-internal > main .columns > div:first-of-type .faq .info > p {
  color: #1D201F;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.03rem;
  margin-bottom: 2rem;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown {
  margin-bottom: 5rem;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item + .faq-item {
  border-top: 1px solid #D8D8D8;
  border-bottom: 1px solid #D8D8D8;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item h3 {
  color: #1D201F;
  font-family: "Labrador", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.02rem;
  padding-block: 3.12rem;
  cursor: pointer;
  position: relative;
  transition: 200ms;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item h3::before {
  content: "";
  width: 20px;
  height: 8px;
  position: absolute;
  top: 62px;
  right: 0;
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item h3:hover {
  color: #0D158D;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item .question {
  display: none;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item .question p {
  color: #8D8D8D;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 115%;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item .question p:last-of-type {
  padding-bottom: 3.12rem;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item.active h3 {
  font-weight: 800;
  padding-bottom: 0.94rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item.active h3::before {
  background-image: url(../images/arrow-up-active.svg);
}
.p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item.active .question {
  display: block;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .btn-ghost-black {
  color: #1D201F;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 142.523%;
  letter-spacing: -0.03rem;
  padding: 1.37rem 3.75rem;
  border-radius: 0.9375rem;
  border: 1px solid #000;
  display: block;
  width: -moz-max-content;
  width: max-content;
  text-transform: uppercase;
  transition: 200ms;
}
.p-product-internal > main .columns > div:first-of-type .faq .info .btn-ghost-black:hover {
  transform: scale(1.1);
}
.p-product-internal > main .columns > div:last-of-type {
  position: relative;
}
.p-product-internal > main .columns > div:last-of-type form {
  margin-top: -60px;
  margin-left: auto;
  border-radius: 1.25rem;
  background: #FFF;
  box-shadow: 0px 45.43977px 73.26004px 33.38432px rgba(202, 209, 220, 0.2);
  padding: 5.13rem 3.12rem 6.25rem;
}
.p-product-internal > main .columns > div:last-of-type form h2 {
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.045rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.62rem;
}
.p-product-internal > main .columns > div:last-of-type form .wrapper-scroll > p {
  color: #505050;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 110.023%;
  letter-spacing: -0.0125rem;
}
.p-product-internal > main .columns > div:last-of-type form .input-group + .input-group {
  margin-top: 1.25rem;
}
.p-product-internal > main .columns > div:last-of-type form .input-group > label {
  display: block;
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.045rem;
  margin-bottom: 0.13rem;
}
.p-product-internal > main .columns > div:last-of-type form .input-group input[type=text],
.p-product-internal > main .columns > div:last-of-type form .input-group input[type=email] {
  display: block;
  border: 0;
  width: 100%;
  padding-inline: 1.56rem;
  border-radius: 0.3125rem;
  background: #F8FAFC;
  color: #545454;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 150%;
  height: 58px;
  outline-color: #4AB5EA;
}
.p-product-internal > main .columns > div:last-of-type form .input-group-prefer {
  margin-top: 3.13rem;
}
.p-product-internal > main .columns > div:last-of-type form .input-group-prefer > label {
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.015rem;
  display: block;
  margin-bottom: 1rem;
}
.p-product-internal > main .columns > div:last-of-type form .input-group-prefer .wrapper-radio {
  display: flex;
  align-items: center;
  gap: 1.88rem;
}
.p-product-internal > main .columns > div:last-of-type form .input-group-prefer .wrapper-radio label {
  display: flex;
  align-items: center;
  gap: 0.63rem;
  cursor: pointer;
}
.p-product-internal > main .columns > div:last-of-type form .input-group-prefer .wrapper-radio label input[type=radio] {
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  display: block;
  width: 25px;
  height: 25px;
  border-radius: 999px;
  border: 1px solid #545454;
  cursor: pointer;
}
.p-product-internal > main .columns > div:last-of-type form .input-group-prefer .wrapper-radio label input[type=radio]:checked {
  background-color: #0D158D;
  border: 3px solid #FFFFFF;
  outline: 1px solid #545454;
}
.p-product-internal > main .columns > div:last-of-type form .input-group-prefer .wrapper-radio label span {
  color: #545454;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25rem;
}
.p-product-internal > main .columns > div:last-of-type form button[type=submit] {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03rem;
  border-radius: 0.9375rem;
  background: #0D158D #4FB8EC;
  background-size: 200% 200%;
  transition: background-position 0.5s;
  padding: 1.06rem 3.75rem;
  border: 0;
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-top: 4.37rem;
  margin-inline: auto;
  cursor: pointer;
  transition: 200ms;
}
.p-product-internal > main .columns > div:last-of-type form button[type=submit]:hover {
  background-position: -100% 0;
}
@media screen and (max-width: 1650px) {
  .p-product-internal > main .columns > div:last-of-type form {
    padding-block: 2rem;
    overflow-y: scroll;
    max-height: 100vh;
    height: auto;
  }
  .p-product-internal > main .columns > div:last-of-type form::-webkit-scrollbar {
    width: 8px;
  }
  .p-product-internal > main .columns > div:last-of-type form::-webkit-scrollbar-thumb {
    background-color: #DEDEDE;
    border-radius: 20px;
  }
  .p-product-internal > main .columns > div:last-of-type form .wrapper-scroll {
    height: -moz-max-content;
    height: max-content;
  }
  .p-product-internal > main .columns > div:last-of-type form h2 {
    font-size: 2rem;
    margin-bottom: 0.31rem;
  }
  .p-product-internal > main .columns > div:last-of-type form .wrapper-scroll > p {
    font-size: 1.125rem;
  }
  .p-product-internal > main .columns > div:last-of-type form .input-group + .input-group {
    margin-top: 2.5rem;
  }
  .p-product-internal > main .columns > div:last-of-type form .input-group > label {
    font-size: 1.125rem;
  }
  .p-product-internal > main .columns > div:last-of-type form .input-group input[type=text], .p-product-internal > main .columns > div:last-of-type form .input-group input[type=email] {
    height: 58px;
    font-size: 1.125rem;
  }
  .p-product-internal > main .columns > div:last-of-type form .input-group-prefer > label {
    font-size: 1.125rem;
  }
  .p-product-internal > main .columns > div:last-of-type form .input-group-prefer .wrapper-radio label span {
    font-size: 1rem;
  }
  .p-product-internal > main .columns > div:last-of-type form .input-group-prefer .wrapper-radio label input[type=radio] {
    width: 18px;
    height: 18px;
  }
  .p-product-internal > main .columns > div:last-of-type form button[type=submit] {
    font-size: 1.25rem;
    padding: 1.06rem 3.75rem;
  }
}
@media screen and (max-width: 1440px) {
  .p-product-internal > main .columns {
    display: block;
    max-width: 1170px;
  }
  .p-product-internal > main .columns > div:last-of-type form {
    display: none;
  }
}
@media screen and (max-width: 993px) {
  .p-product-internal > main .columns > div:first-of-type .budget {
    margin-bottom: 9.38rem;
  }
  .p-product-internal > main .columns > div:first-of-type .budget .info .wrapper {
    grid-template-columns: 1fr;
  }
  .p-product-internal > main .columns > div:first-of-type .budget .info .wrapper .item {
    max-width: 400px;
  }
  .p-product-internal > main .columns > div:first-of-type .budget .info .wrapper .item h3 {
    font-size: 1.5rem;
  }
  .p-product-internal > main .columns > div:first-of-type .budget .info .wrapper .item h3 img {
    width: 36px;
    height: 36px;
  }
  .p-product-internal > main .columns > div:first-of-type .budget .info .wrapper .item p {
    font-size: 1rem;
    padding-left: 60px;
  }
  .p-product-internal > main .columns > div:first-of-type .budget .info .btn-primary {
    padding: 0.94rem 2.5rem;
  }
  .p-product-internal > main .columns > div:first-of-type .embed {
    margin-bottom: 9.38rem;
  }
  .p-product-internal > main .columns > div:first-of-type .differences {
    margin-bottom: 9.38rem;
  }
  .p-product-internal > main .columns > div:first-of-type .differences > h2 {
    margin-bottom: 1.87rem;
  }
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper .info .item h3 {
    gap: 0.94rem;
    font-size: 1.5rem;
    margin-bottom: 0.19rem;
  }
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper .info .item h3 svg {
    width: 24px;
    height: 24px;
  }
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper .info .item p {
    font-size: 1rem;
    padding-left: 40px;
  }
  .p-product-internal > main .columns > div:first-of-type .review h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
  }
  .p-product-internal > main .columns > div:first-of-type .review article {
    padding-top: 3.31rem;
    padding-left: 2.3rem;
    background-size: 100px 86px;
  }
  .p-product-internal > main .columns > div:first-of-type .review article .content {
    margin-bottom: 2.69rem;
  }
  .p-product-internal > main .columns > div:first-of-type .review article .wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 3.12rem;
  }
  .p-product-internal > main .columns > div:first-of-type .review article .wrapper .author {
    gap: 1.31rem;
  }
  .p-product-internal > main .columns > div:first-of-type .review article .wrapper .author .cover {
    width: 64px;
    height: 64px;
  }
  .p-product-internal > main .columns > div:first-of-type .review article .wrapper .author .description h4 {
    font-size: 1.5rem;
  }
  .p-product-internal > main .columns > div:first-of-type .review article .wrapper .author .description p {
    font-size: 1rem;
  }
  .p-product-internal > main .columns > div:first-of-type .review article .wrapper .btn-video {
    margin-inline: auto;
    padding: 1rem 3.75rem;
  }
  .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
  .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-pagination-custom,
  .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-pagination-fraction {
    width: 100%;
    left: initial;
  }
  .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-pagination-bullet-active {
    width: 7px;
  }
  .p-product-internal > main .columns > div:first-of-type .review .swiper .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }
  .p-product-internal > main .columns > div:first-of-type .review .swiper-button-next, .p-product-internal > main .columns > div:first-of-type .review .swiper-button-prev {
    display: none !important;
  }
  .p-product-internal > main .columns > div:first-of-type .s-about .info {
    grid-template-columns: 1fr;
  }
  .p-product-internal > main .columns > div:first-of-type .s-about .info .left h2 {
    font-size: 2rem;
    margin-bottom: 0.62rem;
  }
  .p-product-internal > main .columns > div:first-of-type .s-about .info .left > p {
    font-size: 1.125rem;
  }
  .p-product-internal > main .columns > div:first-of-type .s-about .info .left .box-numbers .item .number {
    font-size: 2rem;
  }
  .p-product-internal > main .columns > div:first-of-type .s-about .info .left .box-numbers .item .name {
    font-size: 1rem;
  }
  .p-product-internal > main .columns > div:first-of-type .s-about .info .right {
    max-width: 335px;
  }
  .p-product-internal > main .columns > div:first-of-type .faq {
    margin-bottom: 9.37rem;
  }
  .p-product-internal > main .columns > div:first-of-type .faq .info > h2 {
    font-size: 2rem;
    margin-bottom: 0.38rem;
  }
  .p-product-internal > main .columns > div:first-of-type .faq .info > p {
    font-size: 1.25rem;
    margin-bottom: 3.12rem;
  }
  .p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown {
    margin-bottom: 3.75rem;
  }
  .p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item h3 {
    font-size: 1.5rem;
  }
  .p-product-internal > main .columns > div:first-of-type .faq .info .faq-dropdown .faq-item h3::before {
    width: 13px;
  }
  .p-product-internal > main .columns > div:first-of-type .faq .info .btn-ghost-black {
    font-size: 1.125rem;
    padding: 0.94rem 4.75rem;
  }
}
@media screen and (max-width: 769px) {
  .p-product-internal > main .columns {
    padding-inline: 20px;
  }
  .p-product-internal > main .columns > div:first-of-type .budget .info h2 {
    font-size: 2rem;
  }
  .p-product-internal > main .columns > div:first-of-type .budget .info h2 br {
    display: none;
  }
  .p-product-internal > main .columns > div:first-of-type .budget .info .btn-primary {
    margin-inline: auto;
  }
  .p-product-internal > main .columns > div:first-of-type .differences > h2 {
    font-size: 2rem;
  }
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper {
    flex-direction: column;
  }
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper .info {
    width: 100%;
  }
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper .cover {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 1.4375rem;
    background: #0D158D;
    position: relative;
    overflow: hidden;
  }
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper .cover img {
    display: none;
  }
  .p-product-internal > main .columns > div:first-of-type .differences .wrapper .cover iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }
  .p-product-internal > main .columns > div:first-of-type .faq .info .btn-ghost-black {
    margin-inline: auto;
  }
}
.p-product-internal .banner-default {
  padding-top: 9.37rem;
  padding-bottom: 9.37rem;
  border-radius: 1.25rem;
  background-image: url(../images/bg-default.svg);
  background-size: cover;
  max-width: 1370px;
  margin-bottom: 20.5rem;
  margin-inline: auto;
}
.p-product-internal .banner-default h2 {
  color: #FFF;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 92.023%;
  letter-spacing: -0.04rem;
  margin-bottom: 1.25rem;
  margin-inline: auto;
  max-width: 676px;
}
.p-product-internal .banner-default p {
  color: #FFF;
  text-align: center;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 110.023%;
  letter-spacing: -0.015rem;
  margin-inline: auto;
  max-width: 557px;
}
@media screen and (max-width: 1440px) {
  .p-product-internal .banner-default {
    max-width: 1090px;
  }
}
@media screen and (max-width: 1150px) {
  .p-product-internal .banner-default {
    width: calc(100% - 80px);
  }
}
@media screen and (max-width: 993px) {
  .p-product-internal .banner-default {
    background-size: cover;
    background-position: right bottom;
  }
  .p-product-internal .banner-default h2 {
    font-size: 2rem;
    max-width: 500px;
    margin-bottom: 1.13rem;
  }
  .p-product-internal .banner-default p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 769px) {
  .p-product-internal .banner-default {
    width: calc(100% - 40px);
    padding-inline: 2rem;
    padding-block: 7.5rem;
    background-image: url(../images/bg-default-mobile.svg);
    background-color: #219AD8;
    margin-bottom: 9rem;
  }
  .p-product-internal .banner-default h2 {
    max-width: 260px;
  }
}
.p-product-internal .form-mobile {
  max-width: 1090px;
  margin-inline: auto;
  margin-bottom: 19rem;
  display: none;
}
.p-product-internal .form-mobile .wrapper-scroll {
  max-width: 700px;
}
.p-product-internal .form-mobile .wrapper-scroll h2 {
  color: #0D158D;
  font-family: "Labrador", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.04rem;
  margin-bottom: 0.31rem;
}
.p-product-internal .form-mobile .wrapper-scroll > p {
  color: #545454;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 115%;
  margin-bottom: 1.87rem;
}
.p-product-internal .form-mobile .wrapper-scroll .input-group + .input-group {
  margin-top: 2.5rem;
}
.p-product-internal .form-mobile .wrapper-scroll .input-group > label {
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.0375rem;
  display: block;
}
.p-product-internal .form-mobile .wrapper-scroll .input-group input[type=text], .p-product-internal .form-mobile .wrapper-scroll .input-group input[type=email] {
  color: #545454;
  font-family: "Labrador", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
  padding: 1rem 1.56rem;
  border-radius: 0.3125rem;
  background: #F8FAFC;
  border: 0;
  width: 100%;
  outline-color: #4AB5EA;
}
.p-product-internal .form-mobile .wrapper-scroll .input-group-prefer {
  margin-top: 2.5rem;
}
.p-product-internal .form-mobile .wrapper-scroll .input-group-prefer > label {
  display: block;
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: -0.0375rem;
  margin-bottom: 1.25rem;
}
.p-product-internal .form-mobile .wrapper-scroll .input-group-prefer .wrapper-radio {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.p-product-internal .form-mobile .wrapper-scroll .input-group-prefer .wrapper-radio label {
  display: flex;
  align-items: center;
  gap: 0.63rem;
  cursor: pointer;
}
.p-product-internal .form-mobile .wrapper-scroll .input-group-prefer .wrapper-radio label input[type=radio] {
  -webkit-appearance: unset;
     -moz-appearance: unset;
          appearance: unset;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid #545454;
  transition: 200ms;
  cursor: pointer;
}
.p-product-internal .form-mobile .wrapper-scroll .input-group-prefer .wrapper-radio label input[type=radio]:checked {
  background-color: #0D158D;
  border: 3px solid #FFFFFF;
  outline: 1px solid #0D158D;
}
.p-product-internal .form-mobile .wrapper-scroll .input-group-prefer .wrapper-radio label span {
  color: #545454;
  font-family: "Labrador", sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 150%;
}
.p-product-internal .form-mobile .wrapper-scroll button[type=submit] {
  margin-top: 3.13rem;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 993px) {
  .p-product-internal .form-mobile {
    display: block;
  }
  .p-product-internal .form-mobile .wrapper-scroll h2 {
    font-size: 2rem;
  }
  .p-product-internal .form-mobile .wrapper-scroll p {
    font-size: 1.125rem;
  }
  .p-product-internal .form-mobile .wrapper-scroll button[type=submit] {
    margin-inline: auto;
    padding: 0.94rem 3.6rem;
  }
}

.p-blog-list .header-main.scroll {
  background: #0D158D;
}
.p-blog-list .presentation {
  background: #0D158D;
  padding-top: 15.5rem;
  padding-bottom: 9.5rem;
}
.p-blog-list .presentation .container h1 {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.08rem;
  margin-bottom: 0.87rem;
}
.p-blog-list .presentation .container p {
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 93%;
  letter-spacing: -0.03rem;
}
@media screen and (max-width: 993px) {
  .p-blog-list .presentation {
    padding-top: 12rem;
  }
  .p-blog-list .presentation .container h1 {
    font-size: 3rem;
    margin-bottom: 0.31rem;
  }
  .p-blog-list .presentation .container p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 769px) {
  .p-blog-list .presentation {
    padding-top: 10.19rem;
    padding-bottom: 7.31rem;
  }
  .p-blog-list .presentation .container h1 {
    font-size: 2.5rem;
  }
  .p-blog-list .presentation .container p {
    max-width: 220px;
  }
}
.p-blog-list .blog-main {
  padding-top: 7.5rem;
}
.p-blog-list .blog-main .container {
  padding-bottom: 8rem;
  margin-bottom: 8.8rem;
  border-bottom: 1px solid #DADADA;
  display: grid;
  grid-template-columns: 730px 1fr;
  gap: 15.56rem;
  padding-inline: 40px;
  max-width: 1730px;
}
.p-blog-list .blog-main .container > article h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 93%;
  letter-spacing: -0.05rem;
  margin-bottom: 2.37rem;
}
.p-blog-list .blog-main .container > article .cover {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.87rem;
  position: relative;
}
.p-blog-list .blog-main .container > article .cover img {
  display: block;
  width: 100%;
}
.p-blog-list .blog-main .container > article .cover span {
  position: absolute;
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.70469rem;
  padding: 0.69rem 3.12rem;
  border-radius: 6.6925rem;
  background: #0D158D;
  top: 3.12rem;
  left: 3.13rem;
  text-transform: uppercase;
}
.p-blog-list .blog-main .container > article h3 {
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 2.5625rem;
  letter-spacing: -0.05rem;
  margin-bottom: 0.81rem;
  transition: 200ms;
}
.p-blog-list .blog-main .container > article p {
  color: #848484;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.875rem;
  letter-spacing: -0.03rem;
  transition: 200ms;
}
.p-blog-list .blog-main .container > article .btn-more {
  display: flex;
  align-items: center;
  margin-top: 3.1rem;
  gap: 10px;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.03rem;
  text-decoration-line: underline;
  text-transform: uppercase;
  color: #0D158D;
  transition: 200ms;
}
.p-blog-list .blog-main .container > article .btn-more:hover {
  color: #0396df;
  gap: 15px;
}
.p-blog-list .blog-main .container > article:hover {
  cursor: pointer;
}
.p-blog-list .blog-main .container > article:hover h3 {
  color: #0D158D;
}
.p-blog-list .blog-main .container > article:hover p {
  color: #0D158D;
}
.p-blog-list .blog-main .container .list {
  padding-top: 5rem;
}
.p-blog-list .blog-main .container .list h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 93%;
  letter-spacing: -0.05rem;
  margin-bottom: 2.38rem;
}
.p-blog-list .blog-main .container .list .item {
  display: flex;
  align-items: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #DADADA;
}
.p-blog-list .blog-main .container .list .item + .item {
  padding-top: 2.5rem;
}
.p-blog-list .blog-main .container .list .item .info {
  flex: 1;
  gap: 100px;
}
.p-blog-list .blog-main .container .list .item .info h3 {
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.70469rem;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.81rem;
}
.p-blog-list .blog-main .container .list .item .info p {
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.90625rem;
  letter-spacing: -0.035rem;
  transition: 200ms;
}
.p-blog-list .blog-main .container .list .item .info a {
  display: none;
}
.p-blog-list .blog-main .container .list .item .cover {
  width: 160px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 20px;
}
.p-blog-list .blog-main .container .list .item .cover img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-blog-list .blog-main .container .list .item:hover {
  cursor: pointer;
}
.p-blog-list .blog-main .container .list .item:hover .info p {
  color: #0D158D;
}
@media screen and (max-width: 1650px) {
  .p-blog-list .blog-main .container {
    gap: 7rem;
  }
}
@media screen and (max-width: 1400px) {
  .p-blog-list .blog-main .container {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }
  .p-blog-list .blog-main .container .list {
    border-top: 1px solid #DADADA;
    padding-top: 6.25rem;
  }
}
@media screen and (max-width: 993px) {
  .p-blog-list .blog-main {
    padding-top: 5rem;
  }
  .p-blog-list .blog-main .container {
    margin-bottom: 0;
    padding-bottom: 6.25rem;
    padding-inline: 20px;
    gap: 6.25rem;
  }
  .p-blog-list .blog-main .container > article h2 {
    font-size: 2rem;
    margin-bottom: 0.94rem;
  }
  .p-blog-list .blog-main .container > article h3 {
    font-size: 2rem;
    margin-bottom: 0.31rem;
  }
  .p-blog-list .blog-main .container > article p {
    font-size: 1.25rem;
  }
  .p-blog-list .blog-main .container > article .cover span {
    top: 17px;
    left: 21px;
    font-size: 1rem;
    padding-inline: 1.31rem;
    padding-block: 0;
    height: 27px;
  }
  .p-blog-list .blog-main .container > article .btn-more {
    margin-top: 2rem;
    font-size: 1.25rem;
  }
  .p-blog-list .blog-main .container .list h2 {
    font-size: 2rem;
    margin-bottom: 1.87rem;
  }
  .p-blog-list .blog-main .container .list .item .info h3 {
    font-size: 0.875rem;
    margin-bottom: 0.19rem;
  }
  .p-blog-list .blog-main .container .list .item .info p {
    font-size: 1.25rem;
  }
}
@media screen and (max-width: 769px) {
  .p-blog-list .blog-main .container > article h2 {
    font-size: 1.5rem;
  }
  .p-blog-list .blog-main .container > article .cover span {
    font-size: 0.75rem;
  }
  .p-blog-list .blog-main .container > article h3 {
    line-height: 1.875rem;
    margin-bottom: 0.63rem;
  }
  .p-blog-list .blog-main .container > article p {
    line-height: 1.5625rem;
  }
  .p-blog-list .blog-main .container .list h2 {
    font-size: 1.5rem;
  }
  .p-blog-list .blog-main .container .list .item .info p {
    max-width: 197px;
    line-height: 1.25rem;
  }
  .p-blog-list .blog-main .container .list .item .cover {
    width: 96px;
    height: 96px;
  }
}
.p-blog-list .more-articles h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 93%;
  letter-spacing: -0.06rem;
  margin-bottom: 3.12rem;
}
.p-blog-list .more-articles .wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  row-gap: 6.25rem;
  padding-bottom: 9.37rem;
  margin-bottom: 6.25rem;
  border-bottom: 1px solid #DADADA;
}
.p-blog-list .more-articles .navigation {
  margin-bottom: 20.5rem;
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  margin-inline: auto;
}
.p-blog-list .more-articles .navigation > a svg {
  width: 20px;
  filter: brightness(0) saturate(100%) invert(5%) sepia(81%) saturate(7500%) hue-rotate(247deg) brightness(101%) contrast(100%);
}
.p-blog-list .more-articles .navigation .pages {
  display: flex;
  gap: 4.63rem;
  align-items: center;
  margin-inline: 6.25rem;
}
.p-blog-list .more-articles .navigation .pages a {
  color: #A1A1A1;
  font-family: "Labrador", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.70469rem;
  transition: 200ms;
}
.p-blog-list .more-articles .navigation .pages a.active {
  color: #000;
  font-weight: 700;
}
.p-blog-list .more-articles .navigation .pages a:hover {
  color: #4FB8EC;
}
@media screen and (max-width: 1300px) {
  .p-blog-list .more-articles .wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 1100px) {
  .p-blog-list .more-articles .wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 993px) {
  .p-blog-list .more-articles h2 {
    font-size: 1.5rem;
    margin-bottom: 1.87rem;
  }
}
@media screen and (max-width: 769px) {
  .p-blog-list .more-articles .wrapper {
    grid-template-columns: 1fr;
    row-gap: 3.12rem;
  }
  .p-blog-list .more-articles .navigation {
    width: 100%;
    justify-content: space-between;
  }
  .p-blog-list .more-articles .navigation .pages {
    gap: 2.5rem;
  }
  .p-blog-list .more-articles .navigation .pages a {
    font-size: 1.5rem;
  }
}

.p-blog-internal .navigation-article {
  margin-top: 15.44rem;
  margin-bottom: 4.38rem;
}
.p-blog-internal .navigation-article .container {
  display: flex;
  gap: 1.88rem;
}
.p-blog-internal .navigation-article .container .btn-goback {
  display: flex;
  align-items: center;
  gap: 0.63rem;
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: 0.2rem;
  text-decoration-line: underline;
  text-transform: uppercase;
  transition: 200ms;
}
.p-blog-internal .navigation-article .container .btn-goback:hover {
  color: #219AD8;
}
.p-blog-internal .navigation-article .container .breadcrumb {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  align-items: flex-start;
  gap: 0;
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 93%;
  letter-spacing: -0.03rem;
}
.p-blog-internal .navigation-article .container .breadcrumb a {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 93%;
  letter-spacing: -0.03rem;
  text-decoration-line: underline;
  transition: 200ms;
}
.p-blog-internal .navigation-article .container .breadcrumb a:hover {
  color: #219AD8;
}
.p-blog-internal .navigation-article .container .breadcrumb span {
  color: #444744;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 93%;
  letter-spacing: -0.03rem;
}
@media screen and (max-width: 993px) {
  .p-blog-internal .navigation-article .container .btn-goback {
    display: none;
  }
  .p-blog-internal .navigation-article .container .breadcrumb {
    display: none;
  }
}
@media screen and (max-width: 993px) {
  .p-blog-internal .navigation-article {
    margin-top: 7.75rem;
  }
}
.p-blog-internal .columns {
  margin-bottom: 15.62rem;
  display: grid;
  grid-template-columns: 24px 1fr;
  justify-content: space-between;
}
.p-blog-internal .columns .wrapper-sticky {
  margin-top: 520px;
  position: relative;
}
.p-blog-internal .columns .wrapper-sticky .social {
  position: sticky;
  top: 150px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.p-blog-internal .columns .post-main {
  max-width: 810px;
  margin-inline: auto;
}
.p-blog-internal .columns .post-main .cover-main {
  margin-bottom: 3.13rem;
}
.p-blog-internal .columns .post-main .cover-main > img {
  display: block;
  width: 100%;
}
.p-blog-internal .columns .post-main .box-audio {
  padding: 2.19rem 1.37rem 2.25rem;
  border-radius: 0.625rem;
  background: #FFF;
  box-shadow: 0px 49px 79px 36px rgba(202, 209, 220, 0.2);
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 1.56rem;
  margin-bottom: 3.13rem;
}
.p-blog-internal .columns .post-main .box-audio > .icon {
  background-color: #4AB5EA;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-blog-internal .columns .post-main .box-audio > .info h4 {
  color: #4AB5EA;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 100%;
  background: #0D158D;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.25rem;
}
.p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type {
  display: flex;
  align-items: center;
  gap: 0.56rem;
  margin-bottom: 0.69rem;
}
.p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type button.icon {
  line-height: 0;
  height: 48px;
  background-color: transparent;
  border: 0;
  width: 48px;
  cursor: pointer;
}
.p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type button.icon svg {
  width: 48px;
}
.p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type button.icon svg.active {
  display: none;
}
.p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type button.icon:not(.pause) svg {
  display: none;
}
.p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type button.icon:not(.pause) svg.active {
  display: block;
}
.p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type button.icon.pause svg.active {
  display: none;
}
.p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type div:last-of-type .title {
  display: block;
  color: #505050;
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "liga" off;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.0625rem;
}
.p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type div:last-of-type .time {
  color: #505050;
  font-variant-numeric: lining-nums proportional-nums;
  font-feature-settings: "liga" off;
  font-family: "Labrador", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.0625rem;
}
.p-blog-internal .columns .post-main .box-audio > .info .trilha {
  border-radius: 5.75rem;
  background: #EBE8E8;
  padding: 0.44rem 1.81rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
}
.p-blog-internal .columns .post-main .box-audio > .info .trilha #progress-percentage {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: #4AB5EA;
  z-index: 1;
}
.p-blog-internal .columns .post-main .box-audio > .info .trilha img {
  width: 100%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 769px) {
  .p-blog-internal .columns .post-main .box-audio {
    grid-template-columns: 83px 1fr;
    gap: 0.64rem;
    max-width: 335px;
    padding: 0.94rem 1.2rem 1.25rem;
  }
  .p-blog-internal .columns .post-main .box-audio > .icon {
    height: 100%;
  }
  .p-blog-internal .columns .post-main .box-audio > .icon svg {
    width: 32px;
  }
  .p-blog-internal .columns .post-main .box-audio > .info h4 {
    color: #68CF8E;
    font-family: "Labrador", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: initial;
    margin-bottom: 0.56rem;
  }
  .p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type {
    align-items: flex-start;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
  }
  .p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type button.icon {
    width: 24px;
    height: 24px;
  }
  .p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type button.icon svg {
    width: 100%;
    height: 100%;
  }
  .p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type > div:last-of-type {
    flex: 1;
  }
  .p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type > div:last-of-type .title {
    font-size: 0.75rem;
    line-height: initial;
    margin-bottom: 0.13rem;
  }
  .p-blog-internal .columns .post-main .box-audio > .info > div:first-of-type > div:last-of-type .time {
    display: block;
    font-size: 0.75rem;
    line-height: initial;
  }
  .p-blog-internal .columns .post-main .box-audio > .info .trilha {
    height: 22px;
    padding: 0.35rem 1.25rem;
    position: relative;
  }
  .p-blog-internal .columns .post-main .box-audio > .info .trilha img {
    display: block;
  }
}
.p-blog-internal .columns .post-main .category {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 1.25rem;
  border-radius: 6.6925rem;
  background: #0D158D;
  padding: 0.69rem 3.12rem;
  color: #FFF;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.70469rem;
  text-transform: uppercase;
}
.p-blog-internal .columns .post-main h1 {
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 2.5625rem;
  letter-spacing: -0.05rem;
  margin-bottom: 0.62rem;
}
.p-blog-internal .columns .post-main h1 + p {
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.875rem;
  letter-spacing: -0.025rem;
  margin-bottom: 3.12rem;
}
.p-blog-internal .columns .post-main h2 {
  margin-bottom: 0.63rem;
  color: #848484;
  font-family: "Labrador", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.28125rem;
  letter-spacing: -0.02rem;
}
.p-blog-internal .columns .post-main p, .p-blog-internal .columns .post-main ul li, .p-blog-internal .columns .post-main a {
  color: #848484;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.28125rem;
  letter-spacing: -0.015rem;
}
.p-blog-internal .columns .post-main ul {
  margin-bottom: 2.38rem;
}
.p-blog-internal .columns .post-main a {
  text-decoration: underline;
}
.p-blog-internal .columns .post-main p + h2 {
  margin-top: 4.37rem;
}
.p-blog-internal .columns .post-main p + h3 {
  margin-top: 3.12rem;
}
.p-blog-internal .columns .post-main h3 {
  color: #848484;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.28125rem;
  letter-spacing: -0.015rem;
  margin-bottom: 0.62rem;
}
.p-blog-internal .columns .post-main > img {
  display: block;
  width: 100%;
  margin-top: 5rem;
  margin-bottom: 6.25rem;
}
.p-blog-internal .columns .post-main ul {
  list-style: inside;
}
@media screen and (max-width: 993px) {
  .p-blog-internal .columns {
    grid-template-columns: 1fr;
  }
  .p-blog-internal .columns .wrapper-sticky {
    display: none;
  }
  .p-blog-internal .columns .post-main .category {
    font-size: 0.75rem;
    height: 27px;
    display: flex;
    align-items: center;
    padding-inline: 1.5rem;
  }
  .p-blog-internal .columns .post-main h1 {
    font-size: 2rem;
    line-height: 1.875rem;
  }
  .p-blog-internal .columns .post-main h1 + p {
    font-size: 1.25rem;
    line-height: 1.5625rem;
    margin-bottom: 3.13rem;
  }
  .p-blog-internal .columns .post-main h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
  .p-blog-internal .columns .post-main p, .p-blog-internal .columns .post-main ul li, .p-blog-internal .columns .post-main a {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.p-blog-internal .relations {
  margin-bottom: 20.5rem;
}
.p-blog-internal .relations h2 {
  color: #0E0F0C;
  font-family: "Labrador", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 93%;
  letter-spacing: -0.04rem;
  margin-bottom: 1.88rem;
}
.p-blog-internal .relations .wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.44rem;
  padding-bottom: 65px;
}
.p-blog-internal .relations .wrapper .swiper-button-next, .p-blog-internal .relations .wrapper .swiper-button-prev {
  top: initial;
  bottom: 0;
  width: 36px;
  height: 36px;
  margin-top: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-blog-internal .relations .wrapper .swiper-button-next::after, .p-blog-internal .relations .wrapper .swiper-button-prev::after {
  font-size: 0;
}
.p-blog-internal .relations .wrapper .swiper-button-prev, .p-blog-internal .relations .wrapper .swiper-rtl .swiper-button-next {
  left: initial;
  right: 56px;
}
.p-blog-internal .relations .wrapper .swiper-button-prev {
  background-image: url(../images/swiper-arrow-left.svg);
}
.p-blog-internal .relations .wrapper .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  background-image: url(../images/swiper-arrow-left-disabled.svg);
}
.p-blog-internal .relations .wrapper .swiper-button-next {
  background-image: url(../images/swiper-arrow-right.svg);
}
.p-blog-internal .relations .wrapper .swiper-button-next.swiper-button-disabled {
  opacity: 1;
  background-image: url(../images/swiper-arrow-right-disabled.svg);
}
.p-blog-internal .relations .wrapper .swiper-horizontal > .swiper-pagination-bullets, .p-blog-internal .relations .wrapper .swiper-pagination-bullets.swiper-pagination-horizontal, .p-blog-internal .relations .wrapper .swiper-pagination-custom, .p-blog-internal .relations .wrapper .swiper-pagination-fraction {
  bottom: 14px;
  top: initial;
  left: 0;
  right: initial;
  width: -moz-max-content;
  width: max-content;
}
.p-blog-internal .relations .wrapper .swiper-pagination-fraction {
  color: #505050;
  font-family: "Labrador", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 115%;
}
.p-blog-internal .relations .wrapper .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  transition: 200ms;
}
.p-blog-internal .relations .wrapper .swiper-pagination-bullet-active {
  width: 94px;
  border-radius: 34px;
  background: #0D158D;
}
@media screen and (max-width: 1300px) {
  .p-blog-internal .relations .wrapper .swiper-slide-active {
    background: #219AD8;
  }
  .p-blog-internal .relations .wrapper .swiper-slide-active .info h3 {
    color: #FFF;
  }
  .p-blog-internal .relations .wrapper .swiper-slide-active .info p {
    color: #FFF;
  }
  .p-blog-internal .relations .wrapper .swiper-slide-active .info a {
    color: #FFF;
  }
  .p-blog-internal .relations .wrapper .swiper-slide-active .info a svg {
    display: none;
  }
  .p-blog-internal .relations .wrapper .swiper-slide-active .info a svg.active {
    display: block;
  }
}
@media screen and (max-width: 993px) {
  .p-blog-internal .relations .wrapper {
    width: calc(100% + 20px);
  }
}
@media screen and (max-width: 769px) {
  .p-blog-internal .relations h2 {
    font-size: 1.5rem;
    margin-bottom: 1.88rem;
  }
}

.p-contact main {
  margin-top: 21.37rem;
}
@media screen and (max-width: 993px) {
  .p-contact main {
    margin-top: 10.8rem;
  }
}

/* Cookies */
#aviso-cookies {
	display: flex;
	gap: 1rem;
	justify-content: left;
	position: fixed;
	bottom: 16px;
	padding: 13px 15px;
	background-color: #fff;
	z-index: 800;
	width: 30%;
	text-align: center;
	box-shadow: 0px 0px 2px 1px rgba(50, 50, 50, 0.58);
	transition: all 300ms ease-in-out;
        font-family: "Swis721 CN BT Roman", sans-serif;

}
#aviso-cookies p {
	max-width: 61.25rem;
	font-size: 1rem;
        text-align: left;
}
#aviso-cookies p a {
	color: #303030;
	transition: color 200ms ease-in-out;
	text-decoration: none;
	font-weight: 700;
}
#aviso-cookies p a:hover {
	color: #232323;
}
#aviso-cookies button {
	padding: 10px 15px;
	margin: auto 0;
	background-color: #43A3D2;
	border-radius: 9px;
	border: none;
	font-size: 16px;
        font-family: inherit;
	font-weight: bold;
	color: #FFFFFF;
	cursor: pointer;
	transition: 300ms ease-in-out;
}
#aviso-cookies button:hover {
	background-color: #021D13;
        opacity: 0.7;
}
#aviso-cookies.hideCookie {
	transform: translateY(100%);
}

@media (max-width: 1250px) {
    #aviso-cookies {
        padding: 30px 15px;
        width: 100%;
        justify-content: center;
        bottom: 0;
    }
}

@media (max-width: 500px) {
	#aviso-cookies {
            flex-direction: column;
	}
}

/* WhatsApp Form */
.btn-whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-radius: 9px;
  padding: 1.5rem 3.13rem;
  color: #FFFFFF;
  font-family: 'Labrador', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 120.1%;
  letter-spacing: -0.04rem;
  background: linear-gradient(158deg, #30C96B 0%, #3CA765 100%) #30C96B;
  transition: background 0.3s ease;
  z-index: 4;
  border: none;
  cursor: pointer;
}
.btn-whatsapp-float:hover {
  background: #30C96B;
}
@media screen and (max-width: 1000px) {
  .internal-rent .btn-whatsapp-float {
    bottom: 130px;
  }
  .btn-whatsapp-float {
    padding: 1rem 1.5rem;
  }
}
.form-wpp {
  position: fixed;
  bottom: -125px;
  right: -40px;
  opacity: 0;
  border-radius: 8px;
  width: max(350px, 30%);
  overflow: hidden;
  z-index: 10;
  visibility: hidden;
  background-image: url("../images/wpp-wallpaper.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-blend-mode: lighten;
  background-color: #d9d9d9;
  box-shadow: 0 0 25px -5px #8c8c8c;
  transition: all 250ms ease;
  transform: scale(0.1);
}
.form-wpp.active {
  transform: scale(1);
  bottom: 125px;
  right: 20px;
  opacity: 1;
  visibility: visible;
}
.form-wpp .fw-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(158deg, #30C96B 0%, #3CA765 100%) #30C96B;
  padding: 15px 24px 13px;
  color: white;
  font-size: 18px;
  box-shadow: 5px 0px 40px 15px white;
}

.form-wpp .fw-header img {
  width: 75px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.form-wpp .fw-content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
}

.form-wpp :is(input, textarea, button) {
  width: 100%;
  border-radius: 8px;
  padding: 1rem 1.5rem;
  border: 1px solid #0dc152;
  outline: none;
  font-size: 14px;
}
.form-wpp h5 {
  color: #404041;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}
.form-wpp h5 a {
  text-decoration: underline;
  font-weight: 700;
}

.form-wpp button {
  background: linear-gradient(158deg, #30C96B 0%, #3CA765 100%) #30C96B;
  color: white;
  cursor: pointer;
  transition: all 200ms ease;
}
.form-wpp button:is(:hover, :focus-visible) {
  background-color: #30C96B;
}

.form-wpp a {
  color: inherit;
}

@media (max-width: 450px) {
  .form-wpp.active {
    right: 50%;
    transform: translateX(50%);
  }
}

.grecaptcha-badge {
    display: none;
}

.swal2-title,.swal2-content {
    font-family: "Labrador", sans-serif;
}

button.swal2-confirm.swal2-styled {
    font-family: "Labrador", sans-serif;
    background-color: #43A3D2!important;
    border: 0!important;
    border-radius: 0!important;
    padding: 15px 60px!important;
}

/* AQUI VAI O TOGGLE DO WHATSAPP */

.form-wpp::after {
    z-index: -1;
    display: inline-block;
    content: '';
    position: absolute;
    bottom: -20px;
    right: 15px;
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    border-top: 25px solid #f3f3f3;
}

.list-inline {
    padding-left: 0;
    list-style: none;
}

.m-0 {
   margin: 0!important; 
}

.cont-wpp {
    background: #FFF;
    color: #000;
    position: absolute;
    left:0;
    top: 0;
    padding: 10px;
    z-index: 9999;
    width: 100%;
    height: 100%;
    display: none;
    overflow-y: auto;
}

.cont-wpp ul li:hover {
    background: #e0e0e0;
    cursor: pointer;
}

.cont-wpp .foto {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    float: left;
    margin-right: 10px;
}

.cont-wpp .foto img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.info-wpp, .whatsapp i, .whatsapp span {
    z-index: 9999999999;
    position: relative;
    vertical-align: middle;
    display: inline-block;
    font-size: 1.1rem;
    color: #000;
    margin-left: 10px;
}