@import "font.css";
a{
    cursor: pointer;
}
.position{
    position: relative;
}
/* LEFT SIDE FORM CONTACT */
.contact-info{
    margin-top: auto;
    margin-bottom: auto;
}
.go-back{
    margin: 30px 70px;
    font-size: 1vw;
    font-family: "opensans-bold";
    color: rgb(255,70,68);
    display: inline-flex;
    align-items: center;
}
.go-back span{
    margin: 0px 30px;
}
.margin-contact{
    margin: 10px 190px ;
    position: relative;
}
.title{
    font-size: 2.8vw;
    font-family: "opensans-extrabold";
}
.title p{
    margin: 0px;
}
#name {
    background: transparent;
    border: none;
    border-bottom: 1px solid #bebebe;
    border-radius: 0px;
    outline:none;
    box-shadow:none;
    font-family: "opensans-regular";
}
.info-contact .social{
    padding: 0px 20px;
}
.info-contact .email{
    font-size: 1.2vw;
    font-family: "opensans-bold";
}
.info-contact .email span{
    color: rgb(255,70,68);
}
.info-contact img{
    margin: 0px 10px;
}
.info-contact .button{
    text-align: right;
}
.info-contact .button-contact{
    border-radius: initial !important;
    width: 100px;
    font-size: 1vw !important;
    font-family: "opensans-bold";
    background-color: rgb(255,70,68) !important;
    color: white !important;
}
/* RIGHT SIDE IMAGE */
.bg {
    background-image: url(../images/Jugador-contacto.jpg);
    height: 100vh;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
.bg .centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.bg .top-red{
    position: absolute;
    left: -8vw;
    top: -100px;
    width: 15vw;
}
.bg .bottom-black{
    position: absolute;
    bottom: 3vw;
    left: -3vw;
}
.bottom-left-red{
    position: absolute;
    bottom: 0vw;
    left: -2vw;
    width: 13vw;
}
.middle-black{
    position: absolute;
    bottom: 40px;
    width: 7%;
    right: 33%;
}
/*INPUT PLACEHOLDER*/
.Input {
    /**
     * Relative positioning on the wrapper is important, beecause we'll use the
     * wrapper to position the label in default and floated positions.
     */
    position: relative;
  }
  
  .Input-text {
    /**
     * Input text styles here. The font size and line height of the input are
     * important for determining precise positioning of the label. These will be
     * stored in CSS variables eventually.
     */
    display: block;
    margin: 0;
    width: 100%;
    /**
     * These props will be added in the demo once variables are defined:
     *
     * padding
     * font-size
     * line-height
     */
  }
  
  .Input-text:focus {
    /**
     * Focused input styles here.
     */
  }
  
  .Input-label {
    /**
     * The label gets absolute positioning, and a calculated set of  sizes,
     * positioning, and transforms, based on relativity to the container element
     * and input text styles.
     */
    display: block;
    position: absolute;
    opacity: 0;
    top: -25px;
    /**
     * These props will be added in the demo once variables are defined:
     *
     * bottom
     * left
     * font-size
     * line-height
     * transform
     * transform-origin
     * transition
     *
     * They will give the label default positioning and styling.
     */
  }
  
  .Input-text:placeholder-shown + .Input-label {
    visibility: hidden;
    z-index: -1;
  }
  
  .Input-text:not(:placeholder-shown) + .Input-label,
  .Input-text:focus:not(:placeholder-shown) + .Input-label {
    /**
     * While the placeholder is not shown - i.e. the input has a value - we want
     * to animate the label into the floated position.
     */
    visibility: visible;
    z-index: 1;
    opacity: 1;
    /**
     * These props will be added in the demo once variables are defined:
     *
     * transform
     * transition
     *
     * They will give the label floated positioning and styling.
     */
  }
  @media screen and (max-width: 992px) {
    .info-contact .email {
        font-size: 20px;
    }
    .go-back{
        margin: 30px 20px;
        font-size: 20px;
    }
    .info-contact .button-contact {
        font-size: 13px !important;
    }
    .title{
        font-size: 40px;
    }
    .margin-contact {
        margin: 40px 20px;
    }
    .bottom-left-red {
        width: 16vw;
    }
    .bg .top-red {
        left: -12vw;
        top: -40px;
        width: 20vw;    
    }
    .bg .bottom-black {
        position: absolute;
        bottom: 3vw;
        left: -6vw;
    }
    }   

  @media screen and (max-width: 767px) {
    .cont-1{
        display: none !important;
    }
    .go-back {
        margin: 30px 10px;
        font-size: 14px;
        font-family: "opensans-bold";
        color: rgb(255,70,68);
        display: inline-flex;
        align-items: center;
    }
    .info-contact .email {
        font-size: 15px;
    }
    .margin-contact {
        margin: 0px 30px;
    }
    .info-contact img {
        margin: 0px 3px;
    }
    .info-contact .button{
        text-align: center;
    }
    .bottom-left-red {
        width: 25vw;
        bottom: 20vw;
        left: -7vw;
        display: none;
    }
  }