border{
    margin: 0px;
    padding: 0px;
    
}
.bgcontainer{
   
   background-image: url('../img/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    position: relative;
    height: 100vh;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.bgcontainer::after {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.6);
  z-index:-1;
}
.container{
    max-width: 1140px;
    
}
.aling-center{
    align-items: center !important;
}

.text-justify{
    justify-content: center !important;
}
.section-logo h1 {
    font-family: 'Oswald', sans-serif;
    font-weight: 200;
    letter-spacing: 2px;
    color:#ffffff;
    font-size: 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 40vw;
}

.section_right_container{
    padding-top: 40px;
    padding-bottom: 15px;
    padding-left: 70px;
    margin-left: 40px;
    border-left:3px solid #c1c1c1;
}

.section_right_container h2{
    color:#fff;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: 20px;
    padding: 10px 0px;
    
}

.form-group{
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;    
}
.form-group .form-control{
    min-height: 50px;
    box-shadow: none;
    border:2px solid #c1c1c1;
    padding: 10px 15px;
    background-color: transparent;
    color: #fff;
}
.form-group .form-control::placeholder{
    color: #c1c1c1;
     font-family: 'Roboto', sans-serif;
    font-weight: 100;
}


.field-icon{
    font-family: 'FontAwesone';
    position: absolute;
    z-index: 1;
    right: 19px;
    bottom: 16px;
    font-size: 14px;
    color: #c1c1c1;
}

/*.btn{
    color:#fff;
    font-size: 17px;
    font-family: 'Roboto', sans-serif;
    font-weight: 200px;
}*/

.animate-content-delay1{
    transform-style: preserve-3d;
    animation-name: animateA;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-duration: 1s;
}

@keyframes animateA{
    0%{
        opacity: 0;
        transform: translateY(30px);
    }
      100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.animate-content-delay2{
    transform-style: preserve-3d;
    animation-name: animateB;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-duration: 1s;
}

@keyframes animateB{
    0%{
        opacity: 0;
        transform: translateY(15px);
    }
      100%{
        opacity: 1;
        transform: translateY(0px);
    }
}

.animate-content-delay3{
    transform-style: preserve-3d;
    animation-name: animateC;
    animation-timing-function: ease-in-out;
    animation-iteration-count: 1;
    animation-duration: 1s;
}

@keyframes animateC{
    0%{
        opacity: 0;
        transform: translateY(10px);
    }
      100%{
        opacity: 1;
        transform: translateY(0px);
    }
}
 /*CARGA DE ENVIO DE CORREO*/
 .loadingEnvio {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: 1s all;
    display: none;
}

.loadingEnvio .spin {
    border: 8px solid hsla(185, 100%, 62%, 0.3);
    border-top-color: #3cefff;
    border-radius: 50%;
    width: 4em;
    height: 4em;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/*EFECTO ENVIANDO CORREO*/
#textEnvioCorreoLoading {
    margin-top: 5px;
    font-size: 18px;
}

.one {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.0s;
    animation: dot 1.3s infinite;
    animation-delay: 0.0s;
}

.two {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.2s;
    animation: dot 1.3s infinite;
    animation-delay: 0.2s;
}

.three {
    opacity: 0;
    -webkit-animation: dot 1.3s infinite;
    -webkit-animation-delay: 0.3s;
    animation: dot 1.3s infinite;
    animation-delay: 0.3s;
}

@-webkit-keyframes dot {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes dot {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
/*FIN EFECTO ENVIANDO CORREO*/
/*PARPADEA*/
    .parpadea {
      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.0;
      }

      50% {
        opacity: 0.0;
      }

      100% {
        opacity: 1.0;
      }
    }

    @-webkit-keyframes parpadeo {
      0% {
        opacity: 1.0;
      }

      50% {
        opacity: 0.0;
      }

      100% {
        opacity: 1.0;
      }
    }

    @keyframes parpadeo {
      0% {
        opacity: 1.0;
      }

      50% {
        opacity: 0.0;
      }

      100% {
        opacity: 1.0;
      }
    }
/*FIN PARPADEA*/
/*CARD PARA BOOST*/
.card-custom {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.card-img-container {
    position: relative;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.card-img-container:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    text-align: center;
    font-size: 14px;
    max-height: 100px;
    overflow: hidden;
}

.card-body-custom {
    padding: 15px;
}

.card-title-custom {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.table-custom td {
    padding: 4px 8px;
    font-size: 14px;
}
/*FIN CARD*/











