@import url('https://fonts.cdnfonts.com/css/garant-pro');
@import url('https://fonts.cdnfonts.com/css/tt-rationalist-trl');
:root{
    --black: #000;
    --grey: #ECECEC;
    --white: #fff;
    --gold1: #FFE680;
    --gold2: #D7AE00;
}
/*Selector Universal*/
*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    font-family: 'Garant pro';
    background-color: #000000;
}
/* CUADRO DE ALERTA */
/* Estilo para el contenedor de la alerta APROBADA*/
#swal2-html-container {
    margin-left: 0 !important; /* Establece el margen izquierdo a 0 */
  }
.mi-alerta {
    background-color: #f5f5f5;
    border: 2px solid #ccc;
}

.mi-titulo {
    color: #333;
    font-size: 20px;
}

.mi-contenido {
    color: #666;
}

.mi-boton {
    background-color: #007bff;
    color: #fff;
}
/* Estilo para el contenedor de la alerta RECHAZADA*/
.mi-alerta-error {
    background-color: #ffcccc;
    border: 2px solid #ff0000;
}

.mi-titulo-error {
    color: #ff0000;
    font-size: 20px;
}

.mi-contenido-error {
    color: #ff3333;
}

.mi-boton-error {
    background-color: #ff0000;
    color: #fff;
}

/* CODIGO PARA EL MAIN */

.navAndMain{
    background-image: url(../Img/fondo_Premium_Cont.png);
    background-size: cover;
    object-fit: none;
    background-position: right center;
}

/*BARRA DE NAVEGACIÓN*/

.nav_Header {
    width: 100%;
    height: 30px;

}
.nav_Container {
    display: grid;
    grid-template-columns: 1fr 6fr;
    width: 100%;
    background: linear-gradient(180deg, #0000007e 0%, var(--black) 100%),;
    text-align: right;
    align-items: center;
    padding-right: 50px;
    position: fixed;
    z-index: 20;
}
.logo {
    cursor: pointer;
    text-align: left;
    display: flex;
    margin-bottom: 15px;
}
.logo_img {
    margin-top: 20px;
    width: 190px;
    margin-left: 100px;
}

.redirection{
    opacity: 100%;
    margin-top: 25px;
}

.link {
    font-family: 'TT rationalist trl';
    text-decoration: none;
    color: var(--grey);
    margin-right: 20px;
    padding: 20px;
    font-weight: 500;
    font-size: 20px;
}

/*FORMULARIO*/
/*Título*/
.content {
    text-align: center;
    margin-top: 120px;
}

.text {
    justify-content: center;
    margin-bottom: 10px;
}

.textInfo {
    color: #FFFFFF;
}

.textContacto {
    color: #D7AE00;
}
/*Contenedor datos*/
.contact-form {
    color: #FFFFFF;
  
}
.border{
    display: flex;
    flex-direction: column;
    margin: 0 25%;
    border: 2px solid transparent; 
    animation: dibujarContorno 3s infinite linear;
    border-radius: 50px;
    text-align: left;
}

.border>p{
    display: flex;
}

.border>p>label{
    padding-left: 20px;
    margin-left: 20px;

}

input{
    border-bottom: 50px rgb(255, 255, 255) solid;
    font-family: 'Garant pro';
}

.border>p{
    width: 100%;
}

textarea{
    resize: none;
}

@keyframes dibujarContorno {
    0% ,20% {
        border-color: transparent transparent transparent transparent;
    }
    25%, 50% {
        border-color: var(--gold1) transparent transparent transparent; 
    }
    55%, 70% {
        border-color: var(--gold1) var(--gold1) transparent transparent;
    }
    75%, 100% {
        border-color: var(--gold1) var(--gold1) var(--gold1) transparent; 
    }
    100%, 0% {
        border-color: var(--gold1) var(--gold1) var(--gold1) var(--gold1);
    }
}


.contact-form form p {
    margin: 0;
    padding: 16px;
}

/*Cajones*/
.contact-form form input {
    width: 70%;
    padding: 11.2px;
    border: none;
    background: none;
    outline: 0;
    color: #FFFFFF;
    border-bottom: 1px solid  #ffffff44;
}

/*Cajón 'mensaje'*/
.contact-form form textarea {
    width: 70%;
    padding: 11.2px;
    border: none;
    background: none;
    outline: 0;
    color: #FFFFFF;
    border-bottom: 1px solid  #ffffff44;
    vertical-align: middle;
}


.contact-form form button {
    border-radius: 30px;
    width: 140px;
    height: 50px;
    font-family: 'Garant pro';
    font-weight: 800;
    font-size: 17px;
    background: linear-gradient(180deg, #D7AE00 0%,  #FFE680 150%);
    color: #000000;
    margin-top: 40px;
    margin-bottom: 50px;
    border: none;
    transition: 1s;
}


.send:hover{
    transform: scale(1.2);
    cursor: pointer;
    background-image: linear-gradient(180deg, var(--gold1) 0%,  var(--gold2) 60%); ;
}

/*FOOTER*/
footer{
    background-color: var(--black);
    width: 100%;
    background-image: linear-gradient(180deg, var(--black) 30%,var(--grey) 150%);
}

.footer_section{
    display: flex;
    flex-direction: column;
    padding-left: 50px;
}

.footer_text{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    color: var(--white); 
    font-family: 'TT Rationalist Trl', sans-serif;
    text-decoration: none;                                       
}

.white_Title_H3_Footer{
    color:var(--white);
    line-height: 35px;
}

.footer_about,
.footer_company,
.footer_contact{
    color: var(--white) ;
    text-decoration: none;
    list-style: none;
}

a{
    color: rgba(255, 255, 255, 0.568);
    
}
a:link{
    text-decoration: none;
    line-height: 35px;
} 

.copyright{
    color: var(--white);
    text-align: right;
    padding: 20px;
}


@media  (min-width: 350px) and (max-width: 500px){

    .footer_section{
        padding-left: 20px;
    }

    .white_Paragraph_Footer{
        font-size: 14px;
    }
    .footer_text{
        text-align: center;
        display: flex;
        flex-direction: column;
    }
    .logo_img {
        width: 80px;
        margin-left: 10px;
        margin-right: -20px;
    }
    .logo_text {
        margin-top: 40px;
        font-size: 25px;
    }
    .link {
        padding: 5px;
        font-size: 15px;
    }

    .border{
        display: flex;
        flex-direction: column;
        margin: 0 10%;
        
    }
   
    .footer_copyright>p{
        text-align: center;
     }
}




