/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

/* Default */
* {
    margin: 0;
    padding: 0;   
}

body { /* Delete this */
    background: #010412;
    height: 1500px;
}



html {
    scroll-behavior: smooth;
}




/* Nav rules */
nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background: #f2f2f2;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-line-pack: center;
        align-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 50px;
    width: 100%;
    position: fixed;
    padding: 0 30px 0 50px;
    z-index: 100;
}

.a_logo, .logo {
    width: 150px;

    -webkit-user-select: none;

       -moz-user-select: none;

        -ms-user-select: none;

            user-select: none;
}

/* Font options */
@font-face {
    font-family: urbanist;
    src: url("../fonts/Urbanist-Black.woff2") format("truetype");
}
@font-face { 
    font-family: urbanista;
    src: url("../fonts/urbanist.ttf") format("truetype");
}

.options_div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-line-pack: center;
        align-content: center;
    margin-right: 4rem;
}

.a_optionsf, .a_options {
    text-decoration: none;
    color: #010412;

    -webkit-user-select: none;

       -moz-user-select: none;

        -ms-user-select: none;

            user-select: none;

    font-family: urbanist;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;

    height: 50px;
    width: 130px;
}


@-webkit-keyframes from_to_button_options {
    from {
        background: white;
    }

    to {
        background: #3c36ff;
        color: white;
        
    }
}


@keyframes from_to_button_options {
    from {
        background: white;
    }

    to {
        background: #3c36ff;
        color: white;
        
    }
}


@-webkit-keyframes from_to_button_options_v2 {
    from {
        background: white;
    }

    to {
        background: #ff7c36;

        color: white;
        
    }
}


@keyframes from_to_button_options_v2 {
    from {
        background: white;
    }

    to {
        background: #ff7c36;

        color: white;
        
    }
}





.a_options:hover {
    -webkit-animation-name: from_to_button_options;
            animation-name: from_to_button_options;
    -webkit-animation-duration: .5s;
            animation-duration: .5s;
    background: #3c36ff;
    color: white;
    
}




.language_p {
    text-decoration: underline;
    
}

.lp:hover {
    -webkit-animation-duration: from_to_button_options_v2;
            animation-duration: from_to_button_options_v2;
    -webkit-animation-duration: .5s;
            animation-duration: .5s;

    background: #ff7c36;
    color: white;
}


.menu_icon, .checkboxmenu {
    position: absolute;
    display: none;
    
    width: 25px;
    height: 25px;
}


/* Nav responsive */

@media screen and (max-width: 1161px) {

    nav {
        padding: 0 10px 0 30px;
    }
}



@media screen and (max-width: 980px) {

    .options_div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -ms-flex-line-pack: center;
            align-content: center;
        background: #f2f2f2;
        height: 100%;
        position: fixed;
        top: 50px;
        left: 40rem;
        width: 50%;
        
    }
    
    
    nav {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        z-index: 100;
    }
    
    .a_optionsf, .a_options {
        width: 100%;
        /* text-align: left; */
        display: flex;
        justify-content: flex-start;
    }

    .p_option {

        padding-left: 20%;
    }
    

    .menu_icon, .checkboxmenu {
        z-index: 2;
        position: fixed;
        top: 13px;
        right: 25px;
        cursor: pointer;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .menu_icon {
        z-index: 1;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
    }

    .checkboxmenu {
        z-index: 5;
        opacity: 0;
    }


    @-webkit-keyframes slideOpen {
        from {
            left: -30em;
        }

        to {
            left: 0;
        }


    }


    @keyframes slideOpen {
        from {
            left: -30em;
        }

        to {
            left: 0;
        }


    }

    @-webkit-keyframes slideClose {
        from {
            left: 0;
        }

        to {
            left: -30rem;
        }


    }

    @keyframes slideClose {
        from {
            left: 0;
        }

        to {
            left: -30rem;
        }


    }



    /* Oculto y se oprime */
    .checkboxmenu:checked ~ .options_div {
        -webkit-animation-name: slideOpen;
                animation-name: slideOpen;
        -webkit-animation-duration: 1s;
                animation-duration: 1s;
        left: 0;
    }


    /* Visible y se oprime */
    .checkboxmenu:not(:checked) ~ .options_div {
        -webkit-animation-name: slideClose;
                animation-name: slideClose;
        -webkit-animation-duration: .5s;
                animation-duration: .5s;
        left: -30rem;
    }

}

























/* Header, to text */
.title, .content {
    color: white;
    z-index: 20;
    
}


.welcome_div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;


}







/*  Fonts to titles and descriptions */

/* Font options */
@font-face {
    font-family: urbanist-titles;
    src: url("../fonts/Urbanist-Black.woff2") format("truetype");
}



/* Font options */
@font-face {
    font-family: urbanist-descriptions;
    src: url("../fonts/urbanist.woff") format("truetype");
}

/* End fonts */




.title {
    font-family: urbanist-titles;
    font-size: 35px;
}



.content {
    font-family: urbanist-descriptions;
    font-size: 1.75rem;
}


.title-main {
    margin: 6rem 0 0 0;
}


.content-main {
    width: 550px;
    padding: 0 50px;

}


.img_welcome {
    width: 100%;
    position: absolute;
    top: 7em;

    -webkit-user-select: none;

       -moz-user-select: none;

        -ms-user-select: none;

            user-select: none;
    -webkit-user-drag: none;
    z-index: 1;
}



@media screen and (max-width: 900px) {
    
    
    .img_welcome {
        width: 100%;
        position: static;
    }

}

@media screen and (max-width: 460px) {
    .content-main {
        /* max-width: 300px; */
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 80%;
        margin: 0;
        padding: 0 1.5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
        -ms-flex-line-pack: center;
            align-content: center;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
    }

}


@media screen and (max-width: 220px) {
    
    nav {
        padding: 0 30px 0 20px;
    }
    
    
    .a_logo, .logo {
        width: 100px;
    }


    
    .options_div {
        width: 70%;
    }


    .title-main {
        font-size: 2rem;
    }
}









/* Sections */


section {
    margin-top: 50%;
}


.text_content_div {
    margin: 5rem 3rem;
}


.title_anchor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}


.title_anchor span {
    font-size: 30px;
}


.section_derecha_div {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;

}


.section_izquierda_div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;

}

.right {
    text-align: right;
}


.section_izquierda_div, .section_derecha_div {
    margin: 2rem 0 5rem 0;
}


.title_sect {
    margin-bottom: 30px;
}



.img_sect {
    width: 350px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-user-drag: none;

    margin: 0 1rem 0 1rem;
}

.img_sect_services {
    margin: 1rem 1rem 0 1rem;
}

.img_sect_movil {
    display: none;
    opacity: 0;
    left: -80000rem; /* Aplicamos redundancia para Ios */

    -webkit-user-select: none;

       -moz-user-select: none;

        -ms-user-select: none;

            user-select: none;
    -webkit-user-drag: none
}


@media screen and (max-width: 900px) {
    
    section {
        margin-top: 5%;
    }
    
    .text_content_div  {
        margin: 0 4rem 0 4rem;
    }
    
    
    .img_sect {
        width: 300px;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        -webkit-user-drag: none;

        margin: 0 4rem 0 2rem;
    }
    
}


@media screen and (max-width: 861px) {
    
    .text_content_div  {
        margin: 0 2rem 0 2rem;
    }
    
    .img_sect {
        display: none;
         opacity: 0;
        left: -80000rem; /* Aplicamos redundancia para Ios */
    }
    

    .img_sect_movil {
        width: 100%;
        -webkit-user-select: none;
           -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
        -webkit-user-drag: none;

        display: inline-block;
        
        bottom: 0;
        left: 0;

        opacity: 100;

        margin-top: 1rem;
    }

    .section_derecha_div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .section_izquierda_div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
}




@media screen and (max-width: 450px) {
    
    section {
        margin-top: 40%;
    }


    .text_content_div  {
        margin: 0 1.5rem 0 1.5rem;
    }
}




@media screen and (max-width: 250px) {
    .text_content_div  {
        margin: 0 1rem 0 1rem;
    }
    
}
















/* FORM CONTACT */
.contact_form_div {
    /* border-top: 2px #201672 solid; */

    margin-top: 3rem;
    background: url('../assets/wallpaper_contact.png');
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 20rem;
    width: 100%;
}

.info {
    display: flex;
    height: 8.62rem;
    flex-direction: row;
    align-items: flex-start;

}


.info img {
    margin: 1rem 0 0 5rem;
}

  .tr_contact_info {

    width: 5rem;
    height: 2rem;
    margin: 1rem 0 0 5rem;
    
  }


  
  .logo_contact {
    margin: 5rem 0 0 5rem;
    width: 350px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .logos_contact {
    width: 40px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
  }
  
  .our_info_div {
    margin: 5rem 0 0 5rem;
    
  }
  

  .td_form {
    display: flex;
    
    position: relative;
    bottom: 26rem;
    
  }



  #contact_form {
    margin: 5rem 0 0 15rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;


  }
  
  
  .our_info_div, #contact_form, .image_contact_div {
    height: 100%;
  }
  
  .contact_info_logo_data {
    margin: 1rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    height: 50px;

}
  
.uno {
    position: relative;
    bottom: .5rem;
}


.dos {
  position: relative;
  bottom: 5rem;
}


.tres {
  position: relative;
  bottom: 9rem;
}



  .p_contact_info {
    margin-left: 2rem;
	margin-top: 0.9rem;
    /* font-weight: 1000; */
    letter-spacing: 1px;
    font-family: urbanist;
    color: white;
  
    text-decoration: none;
    font-size: 20px;
  }
  
  
  
  #name, #email, #message {
    width: 320px;
  
    margin: 15px 0;
    padding: 18px 15px;
    outline: none;
    font-size: 1rem;

    border-radius: 0px;
  
    z-index: 2;
  
    /* border: 1px rgb(0, 69, 78) solid; */
  
    border: none;
    font-family: urbanista;
    font-weight: bold;
  
    letter-spacing: 1px;
  }
  
  #name, #email {
    border-radius: 5px;
  }

  #message {
    border-radius: 6px;
  }


  #name::-webkit-input-placeholder, #email::-webkit-input-placeholder, #message::-webkit-input-placeholder {
    font-weight: 1000;
    color:rgb(163, 189, 193);
    -webkit-user-select: none;
            user-select: none;
    
  }


  #name::-moz-placeholder, #email::-moz-placeholder, #message::-moz-placeholder {
    font-weight: 1000;
    color:rgb(163, 189, 193);
    -moz-user-select: none;
         user-select: none;
    
  }


  #name:-ms-input-placeholder, #email:-ms-input-placeholder, #message:-ms-input-placeholder {
    font-weight: 1000;
    color:rgb(163, 189, 193);
    -ms-user-select: none;
        user-select: none;
    
  }


  #name::-ms-input-placeholder, #email::-ms-input-placeholder, #message::-ms-input-placeholder {
    font-weight: 1000;
    color:rgb(163, 189, 193);
    -ms-user-select: none;
        user-select: none;
    
  }


  #name::placeholder, #email::placeholder, #message::placeholder {
    font-weight: 1000;
    color:rgb(163, 189, 193);
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    
  }
  
  
  
  #message {
    padding: 15px 15px;
    resize: none;
    height: 150px;
  }
  
  
  .submit_button {
    padding: 10px 25px;
    font-family: urbanist;
  
    outline: none;
    border: none;
  
    z-index: 2;
    background: #ff7c36;
    color: white;
    border-radius: 3px;
  
  }
  
  
  header { /* Change this in my project (ElHaban3ro) to my nav */
    z-index: 100;
    border-bottom: 1px #010412 solid;
  }
  
  
  .submit_button:hover {
    background: #2d28c4;

    color: rgb(246, 246, 246);
    cursor: pointer;
  }
  



  .m_contact {
    position: absolute;
    height: 35rem;
    right: 0;
    bottom: auto;
    -webkit-user-drag: none;
    
  }
  
  
  .image_contact_div {
    height: 100%;
    z-index: 1;
  }
  
  
  @media screen and (max-width: 1201px) { 
    .m_contact {
        display: none;
        opacity: 0;
    }


    .contact_form_div {
        margin-top: 3rem;
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-content: center;
        justify-content: center;
        align-items: flex-end;
    }
  }



  @media screen and (max-width: 901px) {
      
    .td_form {
        display: flex;
        position: static;
        
        /* bottom: -2rem; */
    }


    .logo_contact {
        margin: 3rem 2rem 1rem 0rem;
        width: 350px;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
            
    .uno, .dos, .tres {
        position: static;
    }

    .info {
        display: flex;
        height: 15.3rem;
        flex-direction: column;
        align-items: flex-start;
        align-content: center;
        flex-wrap: nowrap;
    }

    #contact_form {
        margin: 5rem 0 0 0;
    }


    .contact_form_div {
        /* border-top: 2px #201672 solid; */
    
        margin-top: 3rem;
        background: url('../assets/wallpaper_contact.png');
        background-size: cover;
        background-repeat: no-repeat;
        height: 55rem;
        width: 100%;
    }

    .info img {
        margin: 0;
    }

    .dos {
        position: relative;
        bottom: 10rem;
    }



    .movec {
        position: relative;
        bottom: 20rem;
    }



    #contact_form {
        
        position: relative;
        bottom: 5rem;
    }
  }





@media screen and (max-width: 460px) {
    .our_info_div {
        margin: 5rem 0 0 0rem;
    }


    .info {
        width: 100%;
        display: flex;
        height: 15.3rem;
        flex-direction: column;
        align-items: flex-start;
        align-content: center;
        flex-wrap: nowrap;
    }

    .contact_form_di.contact_form_div tbody {
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        align-content: center;
        flex-wrap: nowrap;
        width: 90%;
    }


    .logo_contact {
        margin: 3rem auto;
        width: 230px;
    }
    
    .logos_contact {
        width: 30px;
        -webkit-user-select: none;
        -moz-user-select: none;
            -ms-user-select: none;
                user-select: none;
    }

    .p_contact_info {
        font-size: 15px;
    }



    .contact_form_div {
        /* border-top: 2px #201672 solid; */
        margin-top: 3rem;
        background: url('../assets/wallpaper_contact.png');
        background-size: cover;
        background-repeat: no-repeat;
        height: 55rem;
        width: 100%;
    }


    

}



@media screen and (max-width: 380px) {
    
  #name, #email, #message {
    width: 230px;
  }
}