@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700&family=Lexend+Deca&display=swap");
.blink {
  animation-name: parpadeo;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  -webkit-animation-name: parpadeo;
  -webkit-animation-duration: 1s;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
}

@-moz-keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes parpadeo {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  from {
    height: 100%;
  }
  to {
    height: 0;
  }
}
@keyframes fade-in {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}
#fader {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 999999;
  pointer-events: none;
  background: #000000;
  animation-duration: 1000ms;
  animation-timing-function: ease-in-out;
}

.fade-out {
  top: 0;
  height: 0;
  animation-name: fade-out;
}

.fade-in {
  bottom: 0 !important;
  height: 100%;
  animation-name: fade-in;
}

.icon-arrow {
  margin-left: 10px;
  margin-bottom: 6px;
  width: 5px;
  height: 5px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(45deg);
  transition: 0.5s;
}

.content-icon {
  margin-right: 15px;
}
.content-icon img {
  width: 100%;
}

@font-face {
  font-family: "Pacifico";
  font-style: normal;
  font-weight: 400;
  src: local("Pacifico Regular"), local("Pacifico-Regular"), url(https://fonts.gstatic.com/s/pacifico/v12/FwZY7-Qmy14u9lezJ-6H6MmBp0u-.woff2) format("woff2");
  font-display: swap;
}
@font-face {
  font-family: "Sabu";
  font-style: normal;
  font-weight: 400;
  src: url("../../../assets/fonts/sabu/Sabu-Regular.ttf");
  font-display: swap;
}
.btn {
  display: inline-flex;
  padding: 14px 36px;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 0;
  text-decoration: none;
  text-transform: initial;
  letter-spacing: 0;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
  font-weight: 400;
  font-size: 14px;
  height: 40px;
  border-radius: 8px;
}

.btn {
  background-color: #F1F1F1;
  color: #909090;
  border: #F1F1F1;
}

.btn-primary {
  background-color: #FF7800;
  color: #ffffff;
  border: solid 1px #FF7800;
}
.btn-primary:hover {
  background-color: #EC6F00;
  border: solid 1px #EC6F00;
}

.btn-primary-disabled {
  background-color: #FF780040;
  color: #FF7800;
  border: #FF780040;
  cursor: default;
}

.btn-green {
  background-color: #00A19B;
  color: #ffffff;
  border: solid 1px #00A19B;
}
.btn-green:hover {
  background-color: rgb(0, 212, 204.099378882);
  border: solid 1px rgb(0, 212, 204.099378882);
}

.btn-green-disabled {
  background-color: #00A19B40;
  color: #00A19B;
  border: #00A19B40;
  cursor: default;
}

.btn-orange {
  background-color: #EB6F25;
  color: #ffffff;
  border: solid 1px #EB6F25;
}
.btn-orange:hover {
  background-color: rgb(250, 219, 200.5);
  border: solid 1px rgb(250, 219, 200.5);
}

.btn-orange-disabled {
  color: #EB6F25;
  cursor: default;
}

.btn-yellow {
  background-color: #F5A800;
  color: #000000;
  border: solid 1px #F5A800;
}
.btn-yellow:hover {
  background-color: rgb(255, 227.8142857143, 168.5);
  border: solid 1px rgb(255, 227.8142857143, 168.5);
}

.btn-yellow-disabled {
  color: #F5A800;
  cursor: default;
}

.btn-outline {
  background-color: transparent;
  color: #3CB4E5;
  border: solid 1px #3CB4E5;
}
.btn-outline:hover {
  background-color: rgb(217.5, 240.5769230769, 250);
  border: solid 1px rgb(217.5, 240.5769230769, 250);
}

.btn-outline-disabled {
  color: transparent;
  cursor: default;
}

.btn-black {
  background-color: #050505;
  color: #cacaca;
  border: solid 1px #050505;
}
.btn-black:hover {
  background-color: rgb(94.25, 94.25, 94.25);
  border: solid 1px rgb(94.25, 94.25, 94.25);
}

.btn-black-disabled {
  color: #050505;
  cursor: default;
}

.btn-white {
  background-color: #ffffff;
  color: #050505;
  border: solid 1px #D4D8DD;
}
.btn-white:hover {
  background-color: #eeeeee;
}

.btn-white-disabled {
  color: #ffffff;
  cursor: default;
}

.btn-red {
  background-color: #cb213b;
  color: #ffffff;
  border: solid 1px #cb213b;
}
.btn-red:hover {
  background-color: rgb(220.2521186441, 41.2478813559, 68.625);
  border: solid 1px rgb(220.2521186441, 41.2478813559, 68.625);
}

.btn-red-disabled {
  color: #cb213b;
  cursor: default;
}

.btn-blue {
  background-color: #3CB4E5;
  color: #ffffff;
  border: solid 1px #3CB4E5;
}
.btn-blue:hover {
  background-color: rgb(82.5, 188.6538461538, 232);
  border: solid 1px rgb(82.5, 188.6538461538, 232);
}

.btn-blue-disabled {
  color: #3CB4E5;
  cursor: default;
}

.btn-pink {
  background-color: #E81F76;
  color: #ffffff;
  border: solid 1px #E81F76;
}
.btn-pink:hover {
  background-color: rgb(234.3744939271, 54.1255060729, 132.1437246964);
  border: solid 1px rgb(234.3744939271, 54.1255060729, 132.1437246964);
}

.btn-pink-disabled {
  color: #E81F76;
  cursor: default;
}

.btn-gray {
  background-color: #F1F1F1;
  color: #000000;
  border: solid 1px #F1F1F1;
}
.btn-gray:hover {
  background-color: rgb(228.25, 228.25, 228.25);
  border: solid 1px rgb(228.25, 228.25, 228.25);
}

.btn-gray-disabled {
  color: #F1F1F1;
  cursor: default;
}

.btn-facebook {
  background-color: #334d90;
  color: #ffffff;
  border: solid 2px #334d90;
}
.btn-facebook:hover {
  background-color: rgb(57.6692307692, 87.0692307692, 162.8307692308);
  border: solid 2px rgb(57.6692307692, 87.0692307692, 162.8307692308);
}

.btn-facebook-disabled {
  color: #334d90;
  cursor: default;
}

.btn-gray-lineal {
  background-color: transparent;
  color: #3E4B61;
  border: solid 1px #e8e8e8;
}
.btn-gray-lineal:hover {
  background: transparent;
  color: #000000;
  border: solid 1px rgb(219.25, 219.25, 219.25);
}

.btn-gray-lineal-disabled {
  color: transparent;
  cursor: default;
}

.btn-gray-light {
  background-color: #f8f8f8;
  color: #000000;
  border: solid 1px #f8f8f8;
}
.btn-gray-light:hover {
  background: rgb(242.9, 242.9, 242.9);
  color: #000000;
  border: solid 1px rgb(242.9, 242.9, 242.9);
}

.btn-gray-light-disabled {
  color: #f8f8f8;
  cursor: default;
}

.btn-white-line {
  background-color: transparent;
  color: #ffffff;
  border: solid 1px #ffffff;
}
.btn-white-line:hover {
  background-color: #ffffff;
  color: #000000;
  border: solid 1px #ffffff;
}

.btn-white-line-disabled {
  color: transparent;
  cursor: default;
}

.btn-black-line {
  background-color: transparent;
  color: #050505;
  border: solid 1px #050505;
}
.btn-black-line:hover {
  background-color: #050505;
  color: #ffffff;
  border: solid 1px #050505;
}

.btn-black-line-disabled {
  color: transparent;
  cursor: default;
}

.btn-blue-line {
  background-color: transparent;
  color: #3CB4E5;
  border: solid 1px #3CB4E5;
}
.btn-blue-line:hover {
  background-color: #3CB4E5;
  color: #000000;
  border: solid 1px #3CB4E5;
}

.btn-blue-line-disabled {
  color: transparent;
  cursor: default;
}

.btn-orange-line {
  background-color: #ffffff;
  color: #FF7800;
  border: solid 1px #EB6F25;
}
.btn-orange-line:hover {
  background-color: #FFE9D6;
  color: #FF7800;
  border: solid 1px #EB6F25;
}

.btn-orange-line-disabled {
  color: #ffffff;
  cursor: default;
}

.btn-gray-line {
  background-color: transparent;
  color: #FF7800;
  border: solid 1px #E7E9EC;
}
.btn-gray-line:hover {
  background-color: #FFE9D6;
  color: #FF7800;
  border: solid 1px #EB6F25;
}

.btn-gray-line-disabled {
  color: transparent;
  cursor: default;
}

.btn-without-line {
  color: #FF7800;
}
.btn-without-line:hover {
  background-color: #FFE9D6;
  color: #FF7800;
  border-radius: 8px;
}

.btn-without-line-disabled {
  cursor: default;
}

.btn-purple-line {
  background-color: transparent;
  color: #891DAC;
  border: solid 1px #891DAC;
}
.btn-purple-line:hover {
  background-color: hsl(28.2352941176, 100%, 111%);
  border: solid 1px #891DAC;
}

.btn-purple-line-disabled {
  color: transparent;
  cursor: default;
}

.btn-red-wine {
  background-color: #691C16;
  color: #ffffff;
  border: solid 1px #691C16;
}
.btn-red-wine:hover {
  background-color: rgba(105, 28, 22, 0.7);
  color: #ffffff;
  border: none;
}

.btn-red-wine-disabled {
  color: #691C16;
  cursor: default;
}

.btn-dark-yellow {
  background-color: #bbb6a7;
  color: #000000;
  border: solid 1px #bbb6a7;
}
.btn-dark-yellow:hover {
  background-color: rgba(187, 182, 167, 0.7);
  color: #000000;
  border: solid 1px #bbb6a7;
}

.btn-dark-yellow-disabled {
  color: #bbb6a7;
  cursor: default;
}

.btn-dashed {
  background-color: transparent;
  color: rgb(145.25, 145.25, 145.25);
  border: dashed 1px rgb(145.25, 145.25, 145.25);
}
.btn-dashed:hover {
  color: #000000;
  border: dashed 1px #000000;
}

.btn-dashed-disabled {
  color: transparent;
  cursor: default;
}

.btn-beige {
  background-color: #b2ad9d;
  color: #000000;
  border: 0;
}
.btn-beige:hover {
  background: rgb(189.22, 184.9485714286, 171.28);
  border: 0;
}

.btn-beige-disabled {
  color: #b2ad9d;
  cursor: default;
}

.btn-beige-lineal {
  background-color: transparent;
  color: #b2ad9d;
  border: solid 1px #b2ad9d;
}
.btn-beige-lineal:hover {
  border: solid 1px #b2ad9d;
}

.btn-beige-lineal-disabled {
  color: transparent;
  cursor: default;
}

.btn-gray-orange {
  background-color: #F1F1F1;
  color: #FF7800;
  border: none;
}
.btn-gray-orange:hover {
  background-color: rgb(228.25, 228.25, 228.25);
}

.btn-gray-orange-disabled {
  color: #F1F1F1;
  cursor: default;
}

.btn-fluid {
  width: 100%;
}

.checkbox {
  display: flex;
  align-items: center;
  position: relative;
}
.checkbox__name {
  font-family: "Lexend Deca";
  margin-left: 10px;
  font-size: 10px;
}
.checkbox__content {
  display: flex;
  align-items: flex-start;
  color: rgb(38.25, 38.25, 38.25);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.checkbox__content:hover .checkbox__box {
  transition: all 0.15s ease-in-out;
  border: solid 1px none;
}
.checkbox__box {
  display: none;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 1px;
  border-radius: 3px;
  border: solid 1px #E7E9EC;
}
.checkbox input[type=checkbox] {
  z-index: 2;
  cursor: pointer;
}
.checkbox input[type=checkbox]:checked ~ .checkbox__box {
  border: solid 1px #000000;
  background-color: #000000;
}
.checkbox input[type=checkbox]:checked ~ .checkbox__box:before {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "icomoon" !important;
  content: "\e909";
  font-size: 10px;
  color: #ffffff;
}
.checkbox.white input[type=checkbox]:checked ~ .checkbox__box {
  border: solid 1px #000000;
  background-color: transparent;
}
.checkbox.white input[type=checkbox]:checked ~ .checkbox__box:before {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "icomoon" !important;
  content: "\e909";
  font-size: 13px;
  color: #000000;
}
.checkbox.white .checkbox__box {
  display: inline-block;
  position: absolute;
  width: 15px;
  height: 15px;
  left: 0;
  top: 1px;
  border-radius: 0px;
  border: solid 1px #E7E9EC;
}
.checkbox.white .checkbox__name {
  font-size: 13px;
  color: #000000;
  text-transform: uppercase;
}

.radiobutton {
  display: flex;
  align-items: center;
  position: relative;
}
.radiobutton__content {
  display: flex;
  align-items: center;
  color: rgb(38.25, 38.25, 38.25);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.radiobutton__content:hover .radiobutton__box {
  transition: all 0.15s ease-in-out;
  border: solid 1px none;
}
.radiobutton__content:hover .radiobutton__name {
  transition: all 0.15s ease-in-out;
  color: none;
}
.radiobutton__box {
  display: inline-flex;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  border: solid 1px #E7E9EC;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.radiobutton input[type=radio] {
  opacity: 0;
}
.radiobutton input[type=radio]:checked ~ .radiobutton__box {
  border: solid 1px none;
}
.radiobutton input[type=radio]:checked ~ .radiobutton__box:before {
  width: 8px;
  height: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "icomoon" !important;
  content: "";
  font-size: 16px;
  color: none;
  background: #000;
  border-radius: 50%;
}
.radiobutton input[type=radio]:checked ~ .radiobutton__name {
  color: none;
}
.radiobutton__name {
  width: 190px;
  font-size: 13px;
  letter-spacing: 1.1px;
  margin-left: 14px;
}

.form__row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
  flex-direction: column;
}
@media screen and (min-width: 640px) {
  .form__row {
    flex-direction: row;
  }
}
.form__row__col {
  padding-right: 10px;
  padding-left: 10px;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
}
.form__row.wrap {
  flex-wrap: wrap;
  flex-direction: row;
}
.form__row.wrap .form__row__col {
  width: 100%;
  flex-basis: initial;
  box-sizing: border-box;
}
@media screen and (min-width: 721px) {
  .form__row.wrap .form__row__col {
    width: 50%;
    max-width: 50%;
  }
}
@media screen and (min-width: 1100px) {
  .form__row.wrap .form__row__col {
    width: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}
.form input[type=search]::-webkit-search-decoration,
.form input[type=search]::-webkit-search-cancel-button,
.form input[type=search]::-webkit-search-results-button,
.form input[type=search]::-webkit-search-results-decoration {
  display: none;
  appearance: none;
}
.form input[type=text],
.form input[type=email],
.form input[type=number],
.form input[type=password],
.form input[type=search],
.form input[type=url],
.form input[type=tel],
.form textarea {
  color: #000000;
  width: 100%;
  border: 1px solid #E7E9EC;
  height: 40px;
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  transition: border-color 0.15s ease-in-out;
  box-sizing: border-box;
  line-height: 1.5;
  border-radius: 4px !important;
  font-family: "Lexend Deca";
  background-color: transparent;
}
.form input[type=text]:focus,
.form input[type=email]:focus,
.form input[type=number]:focus,
.form input[type=password]:focus,
.form input[type=search]:focus,
.form input[type=url]:focus,
.form input[type=tel]:focus,
.form textarea:focus {
  outline: none;
  transition: all 0.15s ease-in-out;
  border-color: #3cb4e5;
  box-shadow: none;
}
.form input[type=text]::placeholder,
.form input[type=email]::placeholder,
.form input[type=number]::placeholder,
.form input[type=password]::placeholder,
.form input[type=search]::placeholder,
.form input[type=url]::placeholder,
.form input[type=tel]::placeholder,
.form textarea::placeholder {
  color: rgb(38.25, 38.25, 38.25);
  font-size: 14px;
}
.form input[type=text]:disabled,
.form input[type=email]:disabled,
.form input[type=number]:disabled,
.form input[type=password]:disabled,
.form input[type=search]:disabled,
.form input[type=url]:disabled,
.form input[type=tel]:disabled,
.form textarea:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.form textarea {
  height: 100%;
  height: 95px;
  resize: none;
}
.form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
}
.form__group label {
  font-family: "Lexend Deca";
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 10px;
  color: #27292C;
  font-size: 12px;
  letter-spacing: normal;
}
.form__group__select {
  position: relative;
}
.form__group__select select {
  color: #000000;
  width: 100%;
  border: 1px solid #E7E9EC;
  height: 40px;
  display: block;
  padding: 0.375rem 0.75rem;
  font-size: 14px;
  transition: border-color 0.15s ease-in-out;
  box-sizing: border-box;
  line-height: 1.5;
  border-radius: 4px !important;
  font-family: "Lexend Deca";
  background-color: transparent;
  cursor: pointer;
  min-width: 100px;
  appearance: none;
  -webkit-appearance: none;
  padding: 0.375rem 1.5rem 0.375rem 0.75rem;
}
.form__group__select select:focus {
  outline: none;
  transition: all 0.15s ease-in-out;
  border-color: #3cb4e5;
  box-shadow: none;
}
.form__group__select::before {
  content: url("../images/icons/vector-bold.svg");
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  bottom: 0;
  right: 15px;
  pointer-events: none;
  transition: 0.5s all;
}
.form__group__select:active::before {
  transform: rotate(-180deg) translateY(50%);
}
.form__group__select-input {
  display: flex;
  flex-direction: row;
}
.form__group__select-input .form__group__select {
  width: 260px;
  margin-right: 0;
}
.form__group__select-input .form__group__select select {
  height: 100%;
  border: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right-width: 0;
}
.form__group__select-input .form__group__select select:focus {
  border-color: #E7E9EC;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.form__group__select-input .input {
  width: 100%;
}
.form__group__select-input input {
  width: 100%;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form__group__radio-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .form__group__radio-wrapper {
    flex-direction: row;
    align-items: center;
  }
}

.form-error-all {
  margin-top: 20px;
  text-align: center;
}

body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  font-family: "Lexend Deca";
}
body.active {
  overflow: hidden;
}
body::-webkit-scrollbar {
  width: 0.6vw;
}
body::-webkit-scrollbar-track {
  background: #000000;
}
body::-webkit-scrollbar-thumb {
  width: 0.7vw;
  border-radius: 10%;
  background-color: rgba(101, 95, 95, 0.6);
}

#LeadboosterContainer {
  bottom: 50px !important;
}

.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  height: 100%;
}

.container-banner {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.container-fluid {
  max-width: 100%;
}

.container-title {
  font-family: "Archivo";
  font-style: normal;
  font-weight: bold;
  font-size: 12px;
  line-height: 16px;
  padding: 10px 0;
  color: #000000;
  display: flex;
}
@media screen and (min-width: 768px) {
  .container-title {
    font-size: 15px;
    line-height: 20px;
  }
}
@media screen and (min-width: 1201px) {
  .container-title {
    font-size: 25px;
    line-height: 30px;
  }
}
.container-title a {
  display: flex;
  align-items: center;
  color: inherit;
  justify-content: flex-end;
}
.container-title a .arrow {
  margin-left: 6px;
  width: 8px;
}
@media screen and (min-width: 1024px) {
  .container-title.mobile {
    display: none !important;
  }
}
.container-title.right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 1201px) {
  .container-title.right {
    font-size: 15px !important;
    line-height: 20px !important;
  }
}

@media screen and (min-width: 768px) {
  .ml-5 {
    margin-left: 5%;
  }
}

@media screen and (min-width: 768px) {
  .mr-5 {
    margin-right: 5%;
  }
}

.open-modal {
  cursor: pointer;
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.container-banner {
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.container-header {
  width: 100%;
  max-width: 100%;
  background-color: #000000;
  position: sticky;
  top: 0;
  z-index: 100;
}

.archivo {
  font-family: "Archivo";
}

.pathActived {
  color: #15BEF0 !important;
}
.pathActived path {
  fill: #15BEF0 !important;
}

.color-red {
  color: #E81F76;
}

.border-color-red {
  border-color: #E81F76 !important;
}

.placeholder-red input::placeholder,
.placeholder-red input[type=text] {
  color: #E81F76;
}

.color-blue {
  color: #3CB4E5;
}

.border-color-blue {
  border-color: #3CB4E5 !important;
}

.placeholder-blue input::placeholder,
.placeholder-blue input[type=text] {
  color: #3CB4E5;
}

.color-green {
  color: #00A19B;
}

.border-color-green {
  border-color: #00A19B !important;
}

.placeholder-green input::placeholder,
.placeholder-green input[type=text] {
  color: #00A19B;
}

.color-orange {
  color: #FF7800;
}

.border-color-orange {
  border-color: #FF7800 !important;
}

.placeholder-orange input::placeholder,
.placeholder-orange input[type=text] {
  color: #FF7800;
}

.color-yellow {
  color: #F5A800;
}

.border-color-yellow {
  border-color: #F5A800 !important;
}

.placeholder-yellow input::placeholder,
.placeholder-yellow input[type=text] {
  color: #F5A800;
}

.color-pink {
  color: #DA236F;
}

.border-color-pink {
  border-color: #DA236F !important;
}

.placeholder-pink input::placeholder,
.placeholder-pink input[type=text] {
  color: #DA236F;
}

.color-purple {
  color: #961FBD;
}

.border-color-purple {
  border-color: #961FBD !important;
}

.placeholder-purple input::placeholder,
.placeholder-purple input[type=text] {
  color: #961FBD;
}

.color-dark {
  color: #000000;
}

.border-color-dark {
  border-color: #000000 !important;
}

.placeholder-dark input::placeholder,
.placeholder-dark input[type=text] {
  color: #000000;
}

.color-white {
  color: #ffffff;
}

.border-color-white {
  border-color: #ffffff !important;
}

.placeholder-white input::placeholder,
.placeholder-white input[type=text] {
  color: #ffffff;
}

.logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 23px;
}
@media screen and (min-width: 768px) {
  .logo-container {
    height: 52px;
  }
}
.logo-container img {
  height: 85%;
}
.logo-container img.logo {
  margin-right: 4px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .logo-container img.logo {
    margin-right: 7px;
  }
}
@media screen and (min-width: 768px) {
  .logo-container.setWidth {
    width: 100px;
  }
}
.logo-container.custom {
  height: 40px;
}
@media screen and (min-width: 1024px) {
  .logo-container.custom {
    height: 80px;
  }
}
@media screen and (min-width: 1400) {
  .logo-container.custom {
    height: 100px;
  }
}
.logo-container.custom img {
  width: 60%;
}
@media screen and (max-width: 700px) {
  .logo-container.custom img:first-child {
    width: 40%;
  }
}
@media screen and (min-width: 950px) {
  .logo-container.custom img:first-child {
    width: 30%;
  }
}
@media screen and (min-width: 1300px) {
  .logo-container.custom img:first-child {
    width: 50%;
  }
}

.detail-banner {
  background-color: #121314;
  display: flex;
  align-items: center;
  position: relative;
  text-align: center;
  overflow: hidden;
  min-height: 120px;
}
@media screen and (min-width: 768px) {
  .detail-banner {
    margin-bottom: 64px;
    min-height: 100px;
  }
}
@media screen and (min-width: 1024px) {
  .detail-banner {
    min-height: 127px;
  }
}
.detail-banner .container {
  display: flex;
  justify-content: center;
  margin: 1rem;
}
@media screen and (max-width: 768px) {
  .detail-banner__logo {
    width: 120px;
  }
}
.detail-banner__logo .logo-container {
  min-height: 30px;
}
@media screen and (min-width: 1024px) {
  .detail-banner__logo .logo-container {
    min-height: 64px;
  }
}
.detail-banner__title {
  font-family: "Lexend Deca";
  font-style: normal;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  max-width: 60%;
}
@media screen and (min-width: 768px) {
  .detail-banner__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1201px) {
  .detail-banner__title {
    font-size: 34px;
  }
}
.detail-banner__icons .circle,
.detail-banner__icons .circle-small,
.detail-banner__icons .square,
.detail-banner__icons .diamond,
.detail-banner__icons .line {
  position: absolute;
  transition: 1s all ease-in;
}
.detail-banner__icons .circle {
  width: 35px;
  top: -70%;
  right: 15%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .circle {
    width: auto;
    top: -40%;
    right: 13%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .circle {
    right: 10%;
  }
}
.detail-banner__icons .circle-small {
  width: 10px;
  right: 17%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .circle-small {
    width: auto;
    top: 50%;
    transform: translateY(-50%);
    right: 14%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .circle-small {
    right: 10%;
  }
}
.detail-banner__icons .square {
  width: 10px;
  bottom: 5%;
  right: 17%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .square {
    width: auto;
    bottom: 10%;
    right: 16%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .square {
    right: 13%;
  }
}
.detail-banner__icons .diamond {
  width: 12px;
  right: 23%;
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .diamond {
    width: auto;
    top: 30%;
    right: 19%;
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .diamond {
    right: 16%;
  }
}
.detail-banner__icons .line {
  width: 40px;
  bottom: -36%;
  right: 20%;
  transform: rotate(20deg);
}
@media screen and (min-width: 768px) {
  .detail-banner__icons .line {
    width: auto;
    bottom: -12%;
    right: 17%;
    transform: rotate(12deg);
  }
}
@media screen and (min-width: 1480px) {
  .detail-banner__icons .line {
    right: 15%;
  }
}
.detail-banner__heart {
  position: absolute;
  transform: rotate(-15deg);
  max-width: 104px;
  right: -4%;
  top: 6%;
}
@media screen and (min-width: 768px) {
  .detail-banner__heart {
    max-width: 240px;
    right: -5%;
    top: -11%;
  }
}
@media screen and (min-width: 1024px) {
  .detail-banner__heart {
    right: -1%;
  }
}

.price-page .header-pricing {
  display: flex;
  background-color: #141414;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Sabu";
}
.price-page .header-pricing .text-header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 12px 10px;
  font-size: 40px;
  color: #F9F9FA;
  font-weight: 600;
}
.price-page .header-pricing .text-header .header-pricing-logo {
  height: 1em;
  object-fit: contain;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .price-page .header-pricing .text-header {
    font-size: 16px;
    justify-content: left;
  }
  .price-page .header-pricing .text-header .header-pricing-logo {
    height: 1.1em;
  }
}
.price-page .header-pricing .btn-pidelo {
  width: 146px;
  font-size: 18px;
  padding: 16px 24px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .price-page .header-pricing .btn-pidelo {
    font-size: 12px;
    width: 90px;
    padding: 8px 12px;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .price-page .header-pricing {
    padding: 0px 12px;
    text-align: left;
  }
}
@media (min-width: 768px) {
  .price-page .section-brands-pricing {
    margin-top: -150px;
  }
}
.price-page .banner-end {
  background: #f9f9fa;
}
.price-page .banner-end .wrapper {
  padding: 35px 15px;
  background: #F9F9FA;
}
.price-page .banner-end .wrapper .left {
  padding: 0px;
}
.price-page .banner-end .wrapper .left .title-prices {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
}
@media screen and (max-width: 1024px) {
  .price-page .banner-end .wrapper .left .title-prices {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
  }
}
.price-page .banner-end .wrapper .left .title-prices .green {
  color: #00a19b;
  margin-right: 5px;
}
.price-page .banner-end .wrapper .left .title-prices .orange {
  color: #eb6f25;
  margin-right: 5px;
}
.price-page .banner-end .wrapper .left .title-prices .yellow {
  color: #f5a800;
  margin-left: 5px;
}
.price-page .banner-end .wrapper .right {
  display: flex;
  justify-content: space-evenly;
}
.price-page .banner-end .wrapper .right .item-mobile {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px;
}
.price-page .banner-end .wrapper .right .item-mobile:first-child .icon {
  margin-bottom: 5px;
}
.price-page .banner-end .wrapper .right .item-mobile small {
  font-size: 10px;
}
.price-page .banner-end .wrapper .right .line {
  border-right: 1px solid #c2c2c2;
}
.price-page .banner-end .wrapper .right .item {
  display: none;
}
.price-page .banner-end .wrapper .right .price {
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  color: #121314;
}
.price-page .banner-end .wrapper .right .desc {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 128%;
  color: #121314;
  text-align: center;
}
.price-page .banner-end .wrapper .tarifario-mobile {
  display: none;
}
.price-page .banner-end .wrapper .tarifario-button {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
@media screen and (min-width: 800px) {
  .price-page .banner-end .wrapper {
    display: grid;
    grid-template-columns: 2fr 3fr;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
  }
  .price-page .banner-end .wrapper .right {
    justify-content: end;
    gap: 60px;
  }
  .price-page .banner-end .wrapper .right .price {
    font-size: 24px;
  }
  .price-page .banner-end .wrapper .right .line {
    border-right: 1px solid #c2c2c2;
  }
  .price-page .banner-end .wrapper .right .item {
    width: 100%;
    display: inline-block;
  }
  .price-page .banner-end .wrapper .right .item:first-child .icon {
    margin-bottom: 5px;
  }
  .price-page .banner-end .wrapper .right .item small {
    font-size: 10px;
  }
  .price-page .banner-end .wrapper .right .desc {
    text-align: left;
  }
  .price-page .banner-end .wrapper .right .item-mobile {
    display: none;
  }
  .price-page .banner-end .wrapper .tarifario-mobile {
    display: contents;
  }
  .price-page .banner-end .wrapper .tarifario-button {
    display: none;
  }
}
.price-page .price-video-section {
  background-color: #FFFFFF;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 32px;
}
.price-page .price-video-section .container {
  max-width: 1120px;
  margin: 0 auto;
}
.price-page .price-video-section .price-video-title {
  font-size: 24px;
  font-weight: 600;
  color: #121314;
  margin-bottom: 32px;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .price-page .price-video-section .price-video-title {
    font-size: 48px;
    margin-bottom: 40px;
  }
  .price-page .price-video-section .price-video-title br.mobile-only {
    display: none;
  }
}
.price-page .price-video-section .price-video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  margin-bottom: 32px;
}
.price-page .price-video-section .price-video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
  top: 0;
  left: 0;
}
@media (min-width: 768px) {
  .price-page .price-video-section .price-video-wrapper {
    margin-bottom: 40px;
  }
}
.price-page .price-video-section .price-video-btn {
  display: inline-block;
  background-color: #ff7800;
  color: white;
  padding: 14px 0px;
  border-radius: 8px;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none;
  line-height: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .price-page .price-video-section .price-video-btn {
    padding: 14px 20px;
    width: auto;
  }
}
.price-page .price-cards-mobile {
  width: 100%;
  position: relative;
}
.price-page .price-cards-mobile .swiper-wrapper {
  display: flex;
  align-items: stretch;
  max-width: 340px !important;
}
.price-page .price-cards-mobile .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
}
.price-page .price-cards-mobile .swiper-pagination {
  position: relative;
  margin-top: 12px;
  text-align: center;
  gap: 10px;
  display: flex;
  justify-content: center;
}
.price-page .price-cards-mobile .swiper-pagination-bullet {
  width: 11px;
  height: 11px;
  opacity: 1;
  background: #FFE9D6;
}
.price-page .price-cards-mobile .swiper-pagination-bullet-active {
  background: #FF7800;
}
.price-page .price-cards-mobile .swiper-pagination-bullet-active {
  background: #ff6c00;
}
.price-page .price-cards-mobile .swiper-button-prev,
.price-page .price-cards-mobile .swiper-button-next {
  font-size: 16px;
  color: #FF7800;
  opacity: 1;
}
.price-page .price-cards-mobile .swiper-button-prev svg,
.price-page .price-cards-mobile .swiper-button-next svg {
  width: 18px;
  height: 18px;
  fill: #FF7800;
}
.price-page .price-cards-mobile .swiper-button-next {
  right: var(--swiper-navigation-sides-offset, -16px) !important;
}
.price-page .price-cards-mobile .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, -16px) !important;
}
@media (max-width: 768px) {
  .price-page .price-cards {
    display: none;
  }
  .price-page .price-cards-mobile {
    display: block;
  }
}
@media (min-width: 768px) {
  .price-page .price-cards {
    display: flex;
  }
  .price-page .price-cards-mobile {
    display: none;
  }
}

/*# sourceMappingURL=sass */