:root {
    --dark-bg: rgba(15, 15, 15, 0.95);
    --spacing: 150px;
    --mainColor: #ffffff;
    --secondColor: #1d1e1e;
    --secondColorTransparent: #1d1e1e83;
    --thirdColor: #cccccc;
    --fourthColor: #05f0b1;
    --fifthColor: #86f022;
    --sixthColor: #ff0505;
    --seventColor: #ff0576;
    --eightColor: #ff05c1;
    --nineColor: #c105ff;
    --tenColor: #05e5ff;
    --elevenColor: #f0d822;
    --twelveColor: #f07f22;
    --thirdteenColor: #e8463d;
    --fourthteenColor: #f4f3ea;
    font-family: "inter-variable", sans-serif;
    font-weight: 400;
    font-style: normal;
    --r:28px;
    --r2:-50px;
    --lateral-bar:0px;
     box-sizing: border-box;
}
.set-font-1{
    font-family: "inter-variable", sans-serif;
    /*font-variation-settings: "slnt" 0, "wght" 300;*/
}
.set-font-2{
    font-family: "galix-mono", sans-serif;
}

:root input[type=text], :root textarea, :root input[type=email],:root input[type=tel], :root input[type=submit] {
    border: 0px;
    font-size: 1rem;
    height: 40px;
    background-color: var(--mainColor);
    padding: 1px 10px;
    transition: 0.3s;
    color: var(--secondColor);
    border-radius: 8px;
    font-family: "galix-mono", sans-serif;
}
:root input[type=submit]{
    background-color: var(--fifthColor) !important;
    padding: 10px !important;
}

:root textarea:focus, :root input:focus{
    outline: none;
    background-color: var(--fourthColor);
    color: var(--secondColor);
}
:root input[type=submit]:hover{
    cursor: pointer;
    background-color: var(--seventColor) !important;
    color: var(--mainColor);
}
:root form button{
    font-weight: 400;
    font-style: normal;
    background-color: var(--fifthColor);
    color: var(--seventColor);
    border-radius: 8px;
    height: 40px;
    padding: 1px 10px;
    border: none;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
:root input::placeholder {
  color: var(--mainColor);
  font-style: italic; /* Makes the text italic */
  opacity: 1;
}
:root input:placeholder-shown{
    background-color: var(--thirdColor);
}
:root form button:hover,
:root form button:focus-visible{
    background-color: var(--fourthColor);
    filter: url(#chromatic-aberration);
    will-change: filter;
    transform: translateX(5px);

}
:root a{
    color: currentColor;
    text-decoration: none;
    position: relative;
}
:root a:before{
    content: "";
    display: block;
    position: absolute;
    bottom: -2px;
    height: 2px;
    width: 0%;
    transition: width 0.3s ease-in-out;
    background-color: currentColor;
}
:root a:hover:before{
    width: 100%;
}
.no-mouse{
    pointer-events: none;
}
#main-content{
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}
#main-content.hide {
  //opacity: 0;
  display: none;
}
.invisible {
    opacity: 0 !important;
    visibility: hidden !important;
}
.invisible-low {
    opacity: 0;
    visibility: hidden;
}
.set-color-1{
    color: var(--mainColor) !important;
}
.set-color-2{
    color: var(--secondColor) !important;
}
.set-color-3{
    color: var(--thirdColor) !important;
}
.set-color-4{
    color: var(--fourthColor) !important;
}
.set-color-5{
    color: var(--fifthColor) !important;
}
.set-color-6{
    color: var(--sixthColor) !important;
}
.set-color-7{
    color: var(--seventColor) !important;
}
.set-color-8{
    color: var(--eightColor) !important;
}
.set-color-9{
    color: var(--nineColor) !important;
}
.set-color-10{
    color: var(--tenColor) !important;
}
.set-color-11{
    color: var(--elevenColor) !important;
}
.set-color-12{
    color: var(--twelveColor) !important;
}
.set-color-13{
    color: var(--thirdteenColor) !important;
}
.set-color-14{
    color: var(--fourthteenColor) !important;
}
.set-backcolor-1{
    background-color: var(--mainColor) !important;
}
.set-backcolor-2{
    background-color: var(--secondColor) !important;
}
.set-backcolor-3{
    background-color: var(--thirdColor) !important;
}
.set-backcolor-4{
    background-color: var(--fourthColor) !important;
}
.set-backcolor-5{
    background-color: var(--fifthColor) !important;
}
.set-backcolor-6{
    background-color: var(--sixthColor) !important;
}
.set-backcolor-7{
    background-color: var(--seventColor) !important;
}
.set-backcolor-8{
    background-color: var(--eightColor) !important;
}
.set-backcolor-9{
    background-color: var(--nineColor) !important;
}
.set-backcolor-10{
    background-color: var(--tenColor) !important;
}
.set-backcolor-11{
    background-color: var(--elevenColor) !important;
}
.set-backcolor-12{
    background-color: var(--twelveColor) !important;
}
.set-backcolor-13{
    background-color: var(--thirdteenColor) !important;
}
.zero-height{
    height: 0px !important;
}
.error-field{
    background-color: #d6f93d !important;
    color: var(--secondColor) !important;
}
form {
    position: relative;
}
form over{
    position: absolute;
    top: 0;
    /*width: 80vw;*/
    width: 100%;
    height: 100%;
    background-color: var(--seventColor);
    transition: 0.3s;
    overflow: hidden;
}
form over p{
    position: absolute;
    bottom: 0;
    left: 10px;
    width: 100%;
    font-size: min(15vw, 15vh);
    line-height: min(15vw, 15vh);
    margin: 0;
    padding: 0;
    color: var(--fourthteenColor);
}

.as-button{
    transition: 0.3s !important;
}
.as-button:hover{
    cursor: pointer;
    background-color: var(--fourthColor) !important;
    color: var(--secondColor) !important;
}
.as-button h1{
    transition: 0.3s;
}
.as-button:hover h1{
    color: var(--secondColor) !important;
    background-color: var(--fourthColor) !important;
}
html{
    /*overflow-x: hidden;*/
    background-color: var(--secondColor);
    /*overscroll-behavior-y: none;
    overscroll-behavior-x: none;*/


    font-size: 13px;
}
body{

    position: relative;
    background-color: var(--secondColor);
    color: var(--mainColor);
    margin: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    text-wrap:balance;
    transition: color 0.3s, background-color 0.3s;

}
/* CSS global */
.hide-scroll {
  /* Firefox */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.hide-scroll::-webkit-scrollbar {
  /* Chrome, Safari y Opera */
  display: none;
}
.force-bold{
    font-weight: bold !important;
}
.footer{
    background-color: var(--tenColor);

    display: flex;
    padding: 50px 100px;
    padding-top:200px;
    padding-bottom: 100px;
    color: var(--fourthteenColor);
    justify-content: space-evenly;
}
.footer .footer-container{
    /*max-width: 1200px;*/
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 20px;
}
.footer h1{
    margin: 0;
    padding: 0;
    font-size: 5em;
    line-height: 1em;
    font-weight: 200;
    grid-column: 1/3;
    grid-row: 1/3;
}
.footer .logo-footer{
    font-size: 2em;
    grid-column: 1/3;
    grid-row: 3/4;
}
.footer .footer-cotiza{
    height: 100%;
    align-self: end;
    grid-column: 3/6;
    grid-row: 1/3;
    background-color: var(--seventColor);
    border-radius: var(--r);
    color: var(--secondColor);
    box-sizing: border-box;
    padding: 20px;
    padding-bottom: 10px;
    font-size: 2em;
    font-weight: 400;
    line-height: 1em;
    transition: all .3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
}
.footer .footer-cotiza span{
    height: 30px;
}
.footer .footer-cotiza:hover,
.footer .footer-cotiza:focus-visible{
    filter: url(#chromatic-aberration);
    will-change: filter;
    background-color: var(--secondColor);
    color: var(--seventColor);
    transform: translateX(20px);
}
.footer .footer-agenda{
    height: 100%;
    align-self: end;
    grid-column: 3/6;
    grid-row: 3/4;
    background-color: var(--thirdColor);
    border-radius: var(--r);
    color: var(--secondColor);
    box-sizing: border-box;
    padding: 20px;
    padding-bottom: 10px;
    font-size: 1.5em;
    font-weight: 400;
    line-height: 1.1em;
    transition: all .3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    gap: 2px;
}
.footer .footer-agenda:hover,
.footer .footer-agenda:focus-visible{
    filter: url(#chromatic-aberration);
    will-change: filter;
    background-color: var(--secondColor);
    color: var(--seventColor);
    transform: translateX(20px);
}
.footer .footer-links{
    display: flex;
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 5px;
    padding-top: 40px;
}
.footer .footer-links .box-pastilla{
    padding: 5px 10px;
    border-radius: 8px;
}
.footer .footer-newsletter{
    grid-column: 1 / 3;
    grid-row: 5 / 6;
}
.footer .footer-newsletter h3{
    margin: 0;
    padding: 0;
}
.footer .footer-newsletter form{
    display: flex;
    gap: 5px;
}
.footer .footer-newsletter form input{
    min-width: 400px;
}
.footer .footer-data{
    display: flex;
    grid-column: 3 / 6;
    grid-row: 4 / 6;
    align-items: flex-end;
    justify-content: flex-end;
    flex-direction: column;
    padding-right: 10px;
}
.footer .footer-social{
    display: flex;
    gap: 5px;
    font-size: 3em;
    /*color: var(--fourthteenColor);*/

}
.footer .footer-social span{
    transition: all .3s ease-in-out;
}
.footer .footer-social span:hover,
.footer .footer-social span:focus-visible{
    filter: url(#chromatic-aberration);
    will-change: filter;
    transform: scale(1.2);
    color: var(--thirdColor);
}
.footer .footer-address{
    text-align: right;
    /*color: var(--fourthteenColor);*/
    font-size: 1em;
    font-weight: 600;
}
.footer .footer-email{
    font-weight: 900;
}
.footer .footer-loca{
    font-size: 1rem;
}
#main-content{
    overflow: hidden !important;
}