@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit&display=swap');

html,
body {
    font-family: 'Figtree', sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    display: flex;
    align-items: center;
    flex-direction: column;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 1140px;
    height: auto;
    margin: 0 auto;
    z-index: 666;
}

nav::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    z-index: -1;
    transform: translateX(-50%);
    background: #fff;
}

nav+header,
nav+main {
    margin-top: 120px;
}

.bar {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    gap: 40px;
}

.logo {
    font-family: 'Kanit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    gap: 8px;
    color: inherit;
    font-size: 26px;
    line-height: 1;
    text-decoration: none;
}

.logo:hover {
    color: inherit;
}

.logo::before {
    /* content: "R"; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    /* background: #2ebec8c7; */
}



.mobile {
    display: none;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    z-index: 333;
}

.menu li {
    list-style: none;
}

.menu li.actions {
    display: flex;
    align-items: center;
    white-space: nowrap;
    gap: 20px;
    margin-left: auto;
}

.menu li.actions a:last-child {
    height: 40px;
    color: #fff;
    font-weight: 700;
    outline: 0;
    padding: 0 20px;
    border-radius: 20px;
    background: #2ebec8c7;
}

.menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    outline: 0;
    text-decoration: none;
    transition: all .3s ease;
}

.menu a:hover {
    color: #2ebec8c7;
}

.menu a::after {
    font-family: "Font Awesome 6 Pro";
    font-weight: bold;
    font-size: 10px;
}

.menu a.dropdown::after {
    content: "\f078";
}

.menu ul {
    display: none;
}

.menu li:hover>ul {
    display: flex;
}

.menu ul {
    position: absolute;
    align-items: stretch;
    flex-direction: column;
    background: #fff;
    border: 1px solid #cdcfd8;
}

.menu ul li {
    display: flex;
    border-bottom: 1px solid #cdcfd8;
}

.menu ul li:last-child {
    border: 0;
}

.menu ul li a {
    gap: 20px;
    height: 40px;
    padding: 0 20px;
}

.menu ul li a::after {
    content: "\f054";
}

.utility {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 60px;
    gap: 15px;
    z-index: 1;
}

.utility::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    z-index: -1;
    transform: translateX(-50%);
    background: #E5EEFF;
    border-bottom: 4px solid #2ebec8c7;
}

.rates {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    text-transform: uppercase;
}

.rates:hover {
    
    
    transform: scale(1.2); /* Zoom al pasar el ratón */
    transition-duration: 0.3s; /* Duración de la transición */
    /* outline: 1px solid #4357176b; */
}

.rates+.rates {
    border-left: 1px solid #cdcfd8;
    padding-left: 15px;
}

.title {
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0;
}

.value {
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    gap: 5px;
}

.value span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    padding: 3px 6px;
    border-radius: 4px;
}

.value span::before {
    font-family: "Font Awesome 6 Pro";
    font-weight: bold;
}

.up {
    background: #2ebec8c7;
}

.up::before {
    content: "\f062";
}

.down {
    background: #ff073a;
}

.down::before {
    content: "\f063";
}

.widget {
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    bottom: 20px;
    right: 20px;
    gap: 20px;
    z-index: 999;
}

.widget iframe {
    position: fixed;
    bottom: 84px;
    right: 20px;
    transform: scale(0);
    transform-origin: right bottom;
    height: min(704px, 100% - 104px);
    min-height: 80px;
    width: 400px;
    max-height: 704px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 5px 40px;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    background: #E5EEFF;
    transition: width 200ms ease 0s, height 200ms ease 0s,
        max-height 200ms ease 0s, transform 300ms cubic-bezier(0, 1.2, 1, 1) 0s,
        opacity 83ms ease-out 0s;
    pointer-events: all;
}

.widget.open iframe {
    opacity: 1;
    transform: scale(1);
}

.widget.open .message {
    opacity: 0;
}

.widget button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    max-height: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2ebec8c7;
    cursor: pointer;
    border: 0;
    box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.06),
        0 2px 32px 0 rgba(0, 0, 0, 0.16);
    transition: transform 167ms cubic-bezier(0.33, 0, 0, 1);
}

.widget button:hover {
    transition: transform 250ms cubic-bezier(0.33, 0, 0, 1);
    transform: scale(1.1);
}

.widget button::after,
.widget button::before {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: "Font Awesome 6 Pro";
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: #fff;
    transition: transform 0.16s linear 0s, opacity 0.08s linear 0s;
}

.widget button::after {
    content: "\e473";
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.widget.open button::after {
    opacity: 0;
    transform: rotate(30deg) scale(0);
}

.widget.open button::before {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.widget button::before {
    content: "\f078";
    opacity: 0;
    transform: rotate(-60deg) scale(0);
}

.widget .message {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    border-radius: 10px 10px 10px 0px;
    padding: 15px 20px;
    background: #fff;
    cursor: pointer;
    box-shadow: rgba(35, 47, 53, 0.09) 0px 2px 8px 0px;
    transition: opacity 83ms ease-out 0s;
}

.widget .message::before {
    font-family: "Font Awesome 6 Pro";
    content: "\f118";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    bottom: 0px;
    left: -40px;
    width: 32px;
    height: 32px;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
    background: #2ebec8c7;
    border-radius: 16.7%;
}

.widget .message::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: -5px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 0px 0px 13px 5px;
    border-color: transparent transparent white;
}

.widget .message span:nth-child(1) {
    color: #808080;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.widget .message span:nth-child(2) {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.widget .close {
    display: none;
}

.author {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.author span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
}

.author span+span {
    border-left: 1px solid #000;
    padding-left: 15px;
}

.author .avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2ebec8c7;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E5EEFF;
    border: 2px solid #2ebec8c7;
}

.author .avatar::after {
    font-family: "Font Awesome 6 Pro";
    /* content: "\f6e2"; */
    content: "\f0a9";
    font-size: 24px;
    font-weight: bold;
}

header {
    position: relative;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    color: #fff;
    width: 1140px;
    height: auto;
    padding-top: 60px;
    z-index: 1;
    text-align: center;
}

header::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 100vw;
    height: calc(100% - 60px);
    transform: translateX(-50%);
    background: #1c868e;
    z-index: -1;
}

header h1 {
    font-size: 43px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

header p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
    margin-bottom: 60px;
}

.services {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
}

.services .row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.services a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 15px;
    width: 25%;
    min-height: 120px;
    color: #000;
    padding: 0 30px;
    outline: 0;
    background: #fff;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    transition: color .2s ease;
    box-shadow: 0 0 3px #1515151a, 0 8px 16px -3px #15151533;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.services a:hover {
    color: #2ebec8c7;
}


.services a:hover {
    border: 1px solid #2ebec8c7; /* Un color verde acorde con tu paleta */
    background: #f8f8f8; /* Un color ligeramente gris para contraste */
    transform: scale(1.1); /* Zoom al pasar el ratón */
    transition-duration: 0.3s; /* Duración de la transición */
    outline: 1px solid #4357176b;
}

.services span {
    overflow: hidden;
    display: -webkit-box;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    line-clamp: 1;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.services a i {
    color: #2ebec8c7;
    font-size: 30px;
    line-height: 1;
}

main {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 1140px;
    height: auto;
}

section {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 1140px;
    height: auto;
    padding: 60px 0;
}

section .col {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

section img {
    width: 100%;
    border-radius: 24px;
    vertical-align: middle;
}

section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

section span {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
    text-transform: uppercase;
}

.more {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    margin-top: 40px;
}

.more a {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    width: calc(50% - 10px);
    padding: 24px;
    color: inherit;
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    overflow: hidden;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid #eee;
    transition: all .2s ease;
}

.more a:hover {
    color: #223f77c7;
    box-shadow: 0 0 4px #15151524, 0 16px 20px -5px #1515152e;
    background: #93e2ffb5 !important;
}

.more a:hover::after {
    transform: translateX(0);
}

.more a::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #2ebec8c7;
    transform: translateX(-100%);
    transition: transform .2s ease;
}

.more i {
    display: flex;
    justify-content: center;
    font-size: 30px;
    min-width: 30px;
}

.calculator {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 60px 0 0 0;
}

.calculator .headline {
    font-family: 'DM Serif Display', serif;
    width: 100%;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
}

.calculator .description {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
}

table {
    width: 100%;
}

article {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 800px;
    height: auto;
    padding: 60px 0;
    margin: 0 auto;
}

article h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
}

article h2 {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
}

article h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.7;
}

article h4 {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.7;
}

article p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
}

article a {
    color: #2ebec8c7;
    outline: 0;
    font-weight: inherit;
    text-decoration: underline;
}

article ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-left: 20px;
}

article li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    list-style: disc;
}

article li::marker {
    color: #2ebec8c7;
    font-size: 20px;
}

article button {
    font-family: 'Figtree', sans-serif;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 20px;
    width: 100%;
    min-height: 50px;
    color: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    outline: 0;
    cursor: pointer;
    padding: 10px 15px;
    background: #fafafa;
    border-width: 1px;
    border-style: solid;
    border-color: #ddd;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    transition: all .3s ease;
}

article button:hover {
    background: #eee;
}

article button::after {
    font-family: "Font Awesome 6 Pro";
    content: "\2b";
    font-weight: normal;
}

article button.active::after {
    content: "\f068";
}

article .content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height .2s ease-out;
}

footer {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 40px;
    column-gap: 60px;
    width: 1140px;
    height: auto;
    padding: 40px 0;
    z-index: 1;
}

footer::after {
    position: absolute;
    content: "";
    top: 0;
    left: 50%;
    width: 100vw;
    height: 100%;
    z-index: -1;
    transform: translateX(-50%);
    border-top: 1px solid #cdcfd8;
}

footer .brand {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    min-width: 100%;
}

footer .container {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: auto;
    gap: 20px;
}

footer h2 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    padding-bottom: 16px;
    border-bottom: 1px solid #cdcfd8;
}

footer p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
}

footer p a {
    color: #2ebec8c7;
    text-decoration: underline;
}

footer ul {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

footer ul li {
    list-style: none;
    line-height: 1.5;
}

footer a:not(.logo) {
    color: inherit;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    outline: 0;
    white-space: nowrap;
    text-decoration: none;
    transition: all .3s ease;
}

footer a:not(.logo):hover {
    color: #2ebec8c7;
}

footer a:not(.logo)::after {
    font-family: "Font Awesome 6 Pro";
    content: "\f054";
    font-weight: normal;
    font-size: 12px;
    margin-left: 5px;
}

form {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.field {
    position: relative;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

.field label {
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

.field label::after {
    content: "*";
    color: #ef233c;
}

.field input[type="text"],
.field textarea {
    font-family: 'Figtree', sans-serif;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 60px;
    color: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    outline: 0;
    padding: 0 15px;
    border-width: 1px;
    border-style: solid;
    border-color: #ccc;
    border-radius: 4px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: #fff;
}

.field textarea {
    display: block;
    width: 100%;
    height: auto;
    padding: 15px;
    resize: none;
}

.field input[type="submit"] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    outline: 0;
    padding: 0 20px;
    border: 0;
    border-radius: 20px;
    background: #2ebec8c7;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}







.step {
    display: flex;
    align-items: center;
    justify-content: center;
    float: left;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 0 8% 0;
}

.step:nth-child(1) .content:before {
    content: "1";
}

.step:nth-child(2) .content:before {
    content: "2";
}

.step:nth-child(3) .content:before {
    content: "3";
}

.step:nth-child(4) .content:before {
    content: "4";
}

.step:nth-child(2) .content,
.step:nth-child(4) .content {
    border-right: 3px solid #272b5c;
    border-left: 0;
    padding: 0 30px 0 0;
}

.step:nth-child(2) .content:before,
.step:nth-child(4) .content:before {
    right: 0;
    left: initial;
    padding: 0 0 0 30px;
    transform: translate(100%, 0);
}


.step:nth-child(2) .step-img,
.step:nth-child(4) .step-img {
    justify-content: flex-end;
}

.step-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    float: left;
    width: 50%;
    height: auto;
    padding: 0;
    margin: 0;
}

.step-shadow {
    filter: drop-shadow(5px 15px 15px rgba(125, 125, 125, 1.2));
}

.step-img img {
    width: auto;
    height: 380px;
    vertical-align: middle;
}

.content {
    position: relative;
    display: block;
    float: left;
    width: 50%;
    height: auto;
    padding: 0 0 0 30px;
    margin: 0;
    border-left: 3px solid #272b5c;
}

.content:before {
    font-family: 'DM Serif Display', serif;
    content: "";
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    width: auto;
    height: 100%;
    padding: 0 30px 0 0;
    margin: 0;
    color: #eee;
    font-size: 160px;
    font-weight: 600;
    transform: translate(-100%, 0);
}

.content span,
.paragraph label {
    font-family: 'DM Serif Display', serif;
    display: block;
    float: left;
    width: 100%;
    height: auto;
    line-height: 1;
    padding: 0;
    color: #272b5c;
    margin: 0 0 20px 0;
    text-align: left;
}

.content span {
    font-size: 30px;
}

.paragraph label {
    font-size: 40px;
    text-align: center;
}

.content p,
.paragraph p {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0;
    color: #999;
    font-size: 20px;
    font-weight: 400;
    text-align: left;
}

.paragraph p {
    text-align: center;
}

.paragraph {
    position: relative;
    display: block;
    float: left;
    width: 100%;
    height: auto;
    padding: 0;
    margin: 0 0 5% 0;
}


.value>span.red::before {
    content: "\f063" !important;
    font-family: FontAwesome;
    margin-right: 1.5px;
}

.value>span.red {
    color: white;
    background: #ff073a;

}

.value>span.blue::before {
    content: "\f062" !important;
    font-family: FontAwesome;
    margin-right: 1.5px;
}

.value>span.blue {
    color: white;
    background: #2ebec8c7;

}


/* details */

.details {
    border: 1px solid #ddd;
    background-color: #f7f7f77d;
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 2px !important;
    margin: 25px 0;
}


.details h1,
h2 {
    font-family: 'DM Serif Display', serif;
    color: #2ebec8c7;
    cursor: pointer;
    padding: 10px 0;
    width: 100%;
}

.details h2 {
    font-size: 1.5em;
    padding: 15px 0;
}



.details div.description {
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 40px;
}

.details p {
    padding-bottom: 10px;
}

CSS .details {
    /* Estilos para el contenedor "details" */
    border: 1px solid #ddd;
    background-color: #f7f7f7;
    padding: 10px;
}

.details .list-container {
    /* Estilos para la lista dentro de "details" */
    list-style: none;
    padding: 0 0 0 30px;
    margin: 0;
}

.details .list-item {
    /* Estilos para los elementos de la lista dentro de "details" */
    display: flex;
    align-items: center;
    padding: 10px 0;

}

.details .list-item .icon {
    /* Estilos para el icono dentro de "details" */
    margin-right: 10px;
    font-size: 18px;
    color: #333;
}

.details .list-item .text {
    /* Estilos para el texto dentro de "details" */
    font-size: 16px;
    color: #666;
}

.details .list-item:hover {
    /* Estilo de "hover" para los elementos de la lista dentro de "details" */
    background-color: #f7f7f7;
}

.details .check-icon {
    /* Estilo del icono "check" dentro de "details" */
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
}

.details .fa-solid {
    padding-right: 15px;
}

.details .color-ratetext {
    color: #00aeef;
}


/* --Contact options checkbox */

.contact-options {
    display: flex;              /* Usamos flexbox para alinearlos horizontalmente */
    gap: 20px;                  /* Espacio entre los checkboxes */
    align-items: center;        /* Alineación vertical centrada */
}

.contact-options label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

.contact-options input[type="checkbox"] {
    margin-right: 8px;          /* Espaciado entre el checkbox y el texto */
}

.contact-options label::after {
    content: "";  /* Elimina el asterisco en los labels de los checkboxes */
}

.field .lbl-preference::after {
    content: "";  
}

.contact-info-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 10px; /* Espaciado entre los checkboxes y el texto */
    color: #666;
}

.contact-info-text a {
    color: #2ebec8c7; /* Estilo para el enlace */
    text-decoration: underline;
}

.contact-info-text a:hover {
    color: #0066cc; /* Color del enlace al hacer hover */
}


.btn-submit:hover {
    color: #fff;
    background: #29cbd6c7 !important;
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 8px 12px 0px; */
    box-shadow: 2.75px 2.75px #0000004a;
    transition: all 0.3s ease-in-out;
    cursor:pointer;
}


/* Eliminar el asterisco global para todos los campos */
.frm-contact .field label::after {
    content: none;  /* Eliminar el asterisco por defecto */
}


/* Aplicar el asterisco solo a los labels que tienen un campo requerido asociado */
.frm-contact .field:has(input[required]) label::after,
.frm-contact .field:has(textarea[required]) label::after {
    content: "*";
    color: #ef233c;
}


.parallax-img {
    position: relative;
    width: 100%;
    height: auto;
    transform: translateY(0);
    transition: transform 0.2s ease-out;
  }
  
  .parallax-active {
    transform: translateY(-20px); /* Ajusta según el efecto que desees */
  }
  





@media only screen and (max-width: 425px) {

    header h1 {
        font-size: 24px;
    }

    .widget iframe {
        width: calc(100% - 40px);
    }

    .widget .message {
        display: none;
    }

    .menu {
        flex-direction: column;
        padding: 10px;
    }
    footer {
        padding: 10px;
        font-size: 12px;
    }

    .parallax-img {
        transform: none !important; /* Desactiva cualquier transformación */
        margin-top: 10px;
    }


}

@media only screen and (max-width: 840px) {

    .parallax-img {
        transform: none !important; /* Desactiva cualquier transformación */
        margin-top: 10px;
    }
    section {
        flex-direction: column;
        gap: 40px;
    }

    section .col:has(img) {
        order: -1;
    }

    section h2 {
        font-size: 30px;
    }

    section span {
        font-size: 14px;
    }

    .more a {
        font-size: 16px;
    }

    .more i {
        font-size: 28px;
    }

    .services .row {
        flex-wrap: wrap;
    }

    .services a {
        width: calc(50% - 10px);
        min-height: 100px;
        padding: 0 20px;
    }

    
    

    .services span {
        font-size: 16px;
    }

    .bar {
        width: 100%;
        height: 60px;
        padding: 0 20px;
        justify-content: space-between;
    }

    .logo {
        gap: 6px;
        font-size: 20px;
    }

    .mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border: 0;
        outline: 0;
        cursor: pointer;
        background: transparent;
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
    }

    .open .mobile span {
        background-color: transparent;
    }

    .open .mobile span::before,
    .open .mobile span::after {
        width: 1.125rem;
        top: 0;
        transition: top .1s, transform .1s .1s;
    }

    .open .mobile span::after {
        transform: rotate(-45deg);
    }

    .open .mobile span::before {
        transform: rotate(45deg);
    }

    .mobile span {
        position: relative;
        display: flex;
        height: 2px;
        cursor: pointer;
        width: 1.375rem;
        transform: scaleX(-1);
        background: #000;
        transition: all .2s ease;
    }

    .mobile span::before,
    .mobile span::after {
        position: absolute;
        content: "";
        height: 2px;
        background: #000;
        transition: top .1s, transform .1s;
    }

    .mobile span::before {
        top: -0.375rem;
        width: 1.125rem;
    }

    .mobile span::after {
        top: 0.375rem;
        width: 0.75rem;
    }

    .open .menu {
        transform: translateX(0);
        height: calc(100% - 60px);
        overflow-x: auto;
    }

    .menu {
        position: fixed;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        top: 60px;
        left: 0;
        width: 100%;
        height: auto;
        z-index: 666;
        padding: 0;
        background: #E5EEFF;
        transform: translateX(100%);
        transition: all .2s ease;
    }

    .menu a {
        padding: 0 20px;
        font-size: 16px;
        font-weight: 600;
        line-height: 50px;
    }

    .menu i {
        display: flex;
    }

    .menu li {
        border-bottom: 1px solid #ddd;
    }

    .menu li.actions {
        flex-direction: column;
        gap: 0;
        margin-left: 0;
    }

    .menu li.actions a:last-child {
        height: auto;
        color: inherit;
        font-weight: 600;
        padding: 0 20px;
        border-radius: 0;
        background: transparent;
        border-top: 1px solid #ddd;
    }

    .menu ul {
        position: relative;
        display: flex;
        border: 0;
    }

    .menu ul li a {
        font-size: 14px;
    }

    .author {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-left: 15px;
        margin-left: 48px;
        height: 48px;
        gap: 8px;
    }

    .author .avatar {
        position: absolute;
        top: 0;
        left: 0;
        transform: translateX(-100%);
    }

    .author span {
        font-size: 12px;
    }

    .author span+span {
        border-left: 0;
        padding-left: 0;
    }

    article {
        width: 100%;
        padding: 40px 0;
    }

    article h1 {
        font-size: 30px;
    }

    .calculator {
        padding-top: 40px;
    }

    .calculator .headline {
        font-size: 30px;
    }

}

@media only screen and (max-width: 1000px) {


    .boxed {
        max-width: 100%;
    }



    section {
        position: relative;
        display: block;
        float: initial;
    }



    .paragraph {
        margin: 0 0 10% 0;
    }

    .paragraph label {
        font-size: 20px;
        text-align: center;
    }

    .paragraph p {
        font-size: 14px;
    }



    .step {
        display: block;
        margin: 0 0 12% 0;
    }

    .step .content {
        width: 100%;
        padding: 0 !important;
        border-right: 0 !important;
        border-left: 0 !important;
    }

    .step:nth-child(2),
    .step:nth-child(4) {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column-reverse;
    }

    .step .content:before {
        display: none;
    }

    .step .content span {
        font-size: 20px;
    }

    .step .content p {
        font-size: 14px;
    }

    .step-img {
        width: 100%;
        justify-content: center;
        margin: 0 0 5% 0;
    }

    .step-img img {
        width: auto;
        height: 250px;
    }

    .look {
        flex-direction: column;
    }

    .image {
        width: 100%;
        margin: 0 0 5% 0;
    }

    .image img {
        width: auto;
        height: 200px;
    }

    .look .paragraph {
        width: 100%;
    }

    .look .paragraph label,
    .look .paragraph p {
        width: 100%;
        text-align: center;
    }


}

@media only screen and (max-width: 1180px) {

    nav {
        width: 100%;
    }

    .bar {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .utility {
        width: 100%;
        white-space: nowrap;
        overflow-x: auto;
        padding-left: 20px;
        padding-right: 20px;
        background: #E5EEFF;
        border-bottom: 4px solid #2ebec8c7;
    }

    .utility::after {
        display: none;
    }

    footer {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    main {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    header,
    section {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .more {
        flex-direction: column;
    }

    .more a {
        width: 100%;
        border: 0;
        box-shadow: 0 0 1px #1515151a, 0 2px 8px -1px #15151533;
    }

}