    /*Z Index*/
    .select-items{
        z-index: 1;
    }
    /*=====*/
    
    .e-content{
    color: #fff;
    font-size: 1.25rem;
    padding-top: 20vh;
    padding-bottom: 10vh;
    padding-left: 4em;
    padding-right: 4em;
    margin: auto;

    min-height: 100vh;
    max-width: 90%;
}
    .e-content h1 {
        padding-right: 20px;
        width: -moz-fit-content;
        width: fit-content;
        border-bottom: 1px solid #3A99FC;
    }
    .contact-wrapp{
        background-color: #14182E;
        margin-top: 10px;
        display: grid;
        grid-template-columns: 2fr 1fr;
    }
    .contact-wrapp > *{
        padding: 1.5em;
    }



    .contact-form form{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .cardtittle{
        font-size: 1.15em;
        font-weight: bolder;
        margin-bottom: .5em;
        padding-left: 1em;
    }
    .contact-form form .block{
        grid-column: 1 / 3;
    }
    .contact-form .inputarea{
        margin: 0;
        padding: .5em;
    }
    
    .selector{
        font-weight: bold;
        max-width: 15em;
        min-height: 4em;
        
        grid-column: 1 / 3;

        text-transform: uppercase;
        text-align: center;
        border-radius: 5px;
        border: 0;
        outline: 0;

        background-color: rgba(10, 13, 33, .3);
        position: relative;
    }
    .selector select{
        display: none;
    }
    .select-selected{
        max-width: 15em;
        min-height: 4em;


    }
    
    /*style the arrow inside the select element:*/
    .select-selected:after {
        position: absolute;
        content: "";
        top: 14px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #3A99FC transparent transparent transparent;
    }
    
    /*point the arrow upwards when the select box is open (active):*/
    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #3A99FC transparent;
        top: 7px;
    }
    
    /*style the items (options), including the selected item:*/
    .select-items div,.select-selected {
        max-width: 15em;
        min-height: 4em;

        color: #ffffff;
        padding: 8px 16px;
        border: 1px solid transparent;
        border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
        cursor: pointer;
        -webkit-user-select: none;
        user-select: none;
    }
    
    /*style items (options):*/
    .select-items {
        position: absolute;
        background-color: rgba(10, 13, 33, .9);
        top: 100%;
        left: 0;
        right: 0;
    }
    
    /*hide the items when the select box is closed:*/
    .select-hide {
        display: none;
    }
    
    .select-items div:hover, .same-as-selected {
        background-color: rgba(0, 0, 0, 0.1);
    }



    .contact-form form button,
    .contact-form form input,
    .contact-form form textarea{
        width: 100%;
        padding: .7em;
        border: none;
        background: none;
        outline: 0;
        color: #fff;
        border-bottom: 1px solid #3A99FC;
    }
    .contact-form form textarea{
        resize: none;
    }
    .contact-form form button{
        background-color: #007bff;
        border: 0;
        text-transform: uppercase;
        padding: 1em;

        transition-delay: .25s;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
    }
    .contact-form form button:hover{
        background-color: #3A99FC;

        transition-delay: .25s;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
    }


    
    .contact-inf{
        background-color: #202337;

        -webkit-box-shadow: -10px 0px 5px -2px rgb(10, 13, 33,0.75);
        -moz-box-shadow: -10px 0px 5px -2px rgb(10, 13, 33,0.75);
        box-shadow: -10px 0px 5px -2px rgb(10, 13, 33,0.75);
    }
    .contact-inf h4,
    .contact-inf ul{
        text-align: left;
    }
    .contact-inf ul {
        list-style: none;
        padding: 1em;
    }
    .contact-inf ul li i{
        vertical-align: middle;
        margin-right: 1em;
    }
    .contact-inf .text{
        margin-top: 1em;
    }

    
    .e-mail{
        font-size: 1.1em;
        font-weight: bolder;
        padding-bottom: 1em;
        padding-top: 1em;
        text-decoration: none;
        color: inherit;
    
    }
    .copybutton{
        font-size: .9em;
        font-weight: bold;
        color: #fff;

        width: 55px;
        height: 20px;
        padding: .25em;
        border: none;
        background-color: #007bff;
        cursor: pointer;

        transition-delay: .25s;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
    }
    .copybutton:hover{
        background-color: #3A99FC;
        
        transition-delay: .25s;
        -webkit-transition: all .5s ease-out;
        -moz-transition: all .5s ease-out;
        -o-transition: all .5s ease-out;
        transition: all .5s ease-out;
    }
    .icoinf{
        color: #3A99FC;
    }
    .icoalert{
        color: #d6a53c;
    }



    .e-notif{
        font-size: 1.2em;
        grid-column: 1/3;
        margin: auto;
        text-align: center;
    }



/*Movile size*/
    @media (max-width:700px){
        .e-content{
            color: #fff;
            margin-bottom: 25vh;
            max-width: 95%;
            padding-left: 1.5em;
            padding-right: 1.5em;
        }
        .cardtittle{
            text-align: center;
        }
        .contact-inf{
            -webkit-box-shadow: 0px -10px 5px -2px rgb(10, 13, 33,0.75);
            -moz-box-shadow: 0px -10px 5px -2px rgb(10, 13, 33,0.75);
            box-shadow: 0px -10px 5px -2px rgb(10, 13, 33,0.75);
        }
        .contact-wrapp{
            display: block;
        }
        .contact-wrapp > *{
            padding: .5em;
        }
        .contact-form{
            padding-bottom: 3em;
        }
      }
/*xtrasmall size*/
    @media (max-width:350px){
        .e-content{
            margin-bottom: 25vh;
            max-width: 95%;
            padding-left: .5em;
            padding-right: .5em;
        }
        .cardtittle{
            text-align: center;
        }
        .contact-wrapp{
            display: block;
        }
        .contact-wrapp > *{
            padding: .25em;
        }
        .contact-form{
            padding-bottom: 3em;
        }
    }

