/* latin-ext */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    /* src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9Z1JlFc-K.woff2) format('woff2'); */
    src: url(../assets/fonts/poppins/poppins-latin-ext-500.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    /* src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLGT9Z1xlFQ.woff2) format('woff2'); */
    src: url(../assets/fonts/poppins/poppins-latin-500.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
  /* latin-ext */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    /* src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6Z1JlFc-K.woff2) format('woff2'); */
    src: url(../assets/fonts/poppins/poppins-latin-ext-600.woff2) format('woff2');
    unicode-range: U+0100-02AF, U+0304, U+0308, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
  /* latin */
  @font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    /* src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLEj6Z1xlFQ.woff2) format('woff2'); */
    src: url(../assets/fonts/poppins/poppins-latin-600.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html,body{
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-size:16px;
    color:rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    cursor: default;
}

.contact-inputs {
    display: block;
    border: none;
    width: 100%;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.85) !important;
}

input,
label,
textarea {
    font-family: 'Poppins', sans-serif;
    color: rgba(255, 255, 255, 0.85);
    display: block;
    margin: 10px;
    padding: 10px;
    border: none;
    font-size: 24px;
    border-radius: 4px;
    resize: none;
}
textarea:focus,
input:focus {
    outline: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */ /* Dark Shadow */
    box-shadow: rgba(255, 255, 255, 0.15) 0px 5px 20px, rgba(255, 255, 255, 0.25) 0px 0px 3px;
    transition: 0.3s;
}
textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}
textarea:focus::placeholder {
    color: rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}
input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.35);
}
input:focus::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}
/* Firefox < 19 */
input:-moz-placeholder {
    color: rgba(255, 255, 255, 0.35);
}
input:focus:-moz-placeholder {
    color: rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}
/* Firefox > 19 */
input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.35);
}
input:focus::-moz-placeholder {
    color: rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}
/* Internet Explorer 10 */
input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.35);
}
input:focus:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.15);
    transition: 0.3s;
}

input[type="submit"] {
    display: block;
    margin: 0 auto;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    width: 150px;
    transition: 0.3s;
}
input[type="submit"]:hover {
    background: transparent;
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */ /* Dark Shadow */
    box-shadow: rgba(255, 255, 255, 0.15) 0px 5px 20px, rgba(255, 255, 255, 0.25) 0px 0px 3px;
}

input[type="reset"] {
    display: block;
    margin: 0 auto;
    background: transparent;
    color: rgba(255, 255, 255, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    width: 150px;
    transition: 0.3s;
}
input[type="reset"]:hover {
    background: transparent;
    /* box-shadow: rgba(0, 0, 0, 0.19) 0px 10px 20px, rgba(0, 0, 0, 0.23) 0px 6px 6px; */ /* Dark Shadow */
    box-shadow: rgba(255, 255, 255, 0.15) 0px 5px 20px, rgba(255, 255, 255, 0.25) 0px 0px 3px;
}

img {
    padding-left: 25px;
}
.table-center {
    margin-left: auto;
    margin-right: auto;
}