/****    HYPERREAL DEVELOPMENT STYLES    ****/


/****    FONT IMPORTS    ****/

@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,300");

/****    UNIVERSAL STYLES    ****/

* {
    /**  BORDER BOX ERR-THANG  **/
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    /**  RESET  **/
    margin: 0px;
    padding: 0px;
    text-decoration: none;
    list-style: none;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    -webkit-transition: ease-in-out .25s;
    transition: ease-in-out .25s;
    line-height: 1.6;
    font-weight: 300;
}

a {
    color: white;
}


/****    OOCSS    ****/

.h_auto {
    height: auto;
}

.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.justified {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.aligned {
    align-items: center;
}

.center_txt {
    text-align: center;
    margin: 0 auto;
}

.bg_black {
    background-color: #262525;
}

.bg_white {
    background-color: white;
}

.txt_black {
    color: #262525;
}

.txt_white {
    color: white;
}

.gradient {
    background: linear-gradient(-45deg, #EE7752, #E73C7E, #23A6D5, #23D5AB);
    background-size: 400% 400%;
    -webkit-animation: Gradient 15s ease infinite;
    animation: Gradient 15s ease infinite;
}

.shadow {
    -webkit-box-shadow: 10px 10px 18px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 18px 0px rgba(0, 0, 0, 0.75);
}

.clipped {
    -webkit-clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
}

.parallax::after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-transform: translateZ(-1px) scale(1.5);
    transform: translateZ(-1px) scale(1.5);
    background-size: 100%;
    z-index: -1;
}

.dallas {
    background: linear-gradient(purple 0%, red 80%), linear-gradient(to right, purple 0%, yellow 100%), url("../images/dallas.jpg"), rgba(255, 255, 255, 0.9);
    background-blend-mode: screen, color-burn, overlay, difference, lighten;
    background-repeat: repeat;
    -webkit-animation: Gradient 115s ease infinite;
    animation: Gradient 115s ease infinite;
    animation-direction: normal;
}

.austin {
    background: linear-gradient(blue 0%, orange 80%), linear-gradient(to right, blue 0%, green 100%), url("../images/austin.jpg"), rgba(255, 255, 255, 0.2);
    background-blend-mode: lighten;
    background-repeat: repeat;
    -webkit-animation: Gradient 115s ease infinite;
    animation: Gradient 115s ease infinite;
    animation-direction: normal;
}

body {
    overflow: scroll;
}

main {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-perspective: 2px;
    perspective: 2px;
}

.logo {
    padding-left: 5px;
}

.logo:hover {
    color: #7f6cf7;
}

nav {
    padding: 1px 15px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
}

nav li {
    -webkit-box-flex: 4;
    -ms-flex: 4;
    flex: 4;
}

nav li a {
    display: block;
    -webkit-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
    text-transform: uppercase;
}

nav li a:hover {
    color: #7f6cf7;
    background-color: transparent;
}

nav li a.bg-inverse {
    background-color: #7f6cf7;
}

nav li a.bg-inverse:hover {
    background-color: #5321a8;
}

header {
    width: 100%;
    height: 73vh;
}

.bg1::after {
    background-image: url('../images/js.jpg');
    background: linear-gradient(purple 0%, green 80%), linear-gradient(to left, purple 0%, blue 100%), url("../images/js.jpg"), rgba(51, 51, 51, 0.9);
    background-blend-mode: screen, darken;
    background-size: cover;
}

.title {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    text-align: center;
}

.social {
    width: 100%;
}

.social ul li {
    height: 50px;
    margin: auto;
    width: 50px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.social ul li:before {
    font: 400 1em/50px "FontAwesome";
}

.social ul li:hover {
    animation: transform .5s forwards;
    -ms-animation: transform .5s forwards;
    -moz-animation: transform .5s forwards;
    -webkit-animation: transform .5s forwards;
    opacity: 1;
}

.social ul .facebook:before {
    content: '\f09a';
    display: block;
    line-height: 50px;
}

.social ul .twitter:before {
    content: '\f099';
    display: block;
    line-height: 50px;
}

.social ul .instagram:before {
    content: '\f16d';
    display: block;
    line-height: 50px;
}

.smallsep {
    height: 2px;
    width: 70px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.heading {
    font-size: 50px;
    font-weight: 300;
    text-transform: uppercase;
    margin-bottom: 28px;
    opacity: 0;
    -webkit-animation: fadein 3s;
    animation: fadein 3s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.sub {
    font-size: 16px;
    letter-spacing: 5px;
    width: 100%;
    margin: 3% auto;
    -webkit-animation: fadein 4s;
    animation: fadein 4s;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.black_block {
    display: grid;
    padding: 1% auto;
    height: auto;
}

.sep {
    height: 5vh;
}

section {
    position: relative;
    height: auto;
    min-height: 70%;
    width: 100%;
    color: rgb(32, 30, 30);
}

.container h1 {
    font-size: 3em;
    font-weight: 300;
    text-align: center;
}

.container h3 {
    padding-top: 5%;
    font-size: 2em;
    font-weight: 300;
    text-align: center;
}

.container p {
    font-weight: 300;
}

.ico {
    padding-bottom: 5%;
    font-size: 400%;
}

.bg2::after {
    background-image: url('../images/hero_hrd_come_in_were_open_1125x750.jpg');
    background: linear-gradient(purple 0%, red 80%), linear-gradient(to right, purple 0%, yellow 100%), url("../images/hero_hrd_come_in_were_open_1125x750.jpg");
    background-blend-mode: color-dodge, lighten;
    background-size: cover;
    background-position-y: 25%;
}

.bg3::after {
    background-image: url('../images/hero_code_macbook_1260x709.jpg');
    background: linear-gradient(purple 0%, red 80%), linear-gradient(to right, purple 0%, blue 100%), url("../images/hero_code_macbook_1260x709.jpg");
    background-blend-mode: screen;
    background-size: cover;
}

.image {
    width: 100%;
    margin: 0 auto;
    -webkit-transition: .5s;
    transition: .5s;
}

.image:hover {
    opacity: 0.6;
    -webkit-transition: .3s;
    transition: .3s;
    background-image: url(../images/hoverbg.png);
    background-repeat: no-repeat;
    background-position: center;
}

footer {
    margin: 0 auto 2px auto;
    padding: 0 5px 2px 5px;
}

footer a:hover {
    color: #7f6cf7;
}


/**********************/


/****    MODALS    ****/


/**********************/

.modal_container {
    position: absolute;
    width: 90vw;
    padding: 25px 20px;
    margin: -25% 2%;
}

#contact {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 500ms;
    transition: opacity 500ms;
    padding: 35% 0 100px 0;
}

#contact h1,
h2,
h3,
h4,
h5,
h6,
label,
p {
    margin: 1% auto;
    padding: 0 10% 6% 5%;
    color: #272729;
}

#contact:target {
    pointer-events: all;
    opacity: 1;
}

#contact a.close {
    content: "";
    position: absolute;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #272729;
    opacity: 0.9;
    -webkit-transition: opacity 200ms;
    transition: opacity 200ms;
}

#contact a.close:hover {
    opacity: 0.95;
}

input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 38px;
    padding: 6px 15px 5px 0;
    width: 80%;
    background-color: whitesmoke;
    color: #262525;
    border: none;
    box-shadow: none;
    border-radius: 0;
    outline: none;
    margin: 0 15px 15px 0;
}

input[type="submit"] {
    display: inline-block;
    height: 38px;
    padding: 0 30px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: .1rem;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    background: #6065Ec;
    border-radius: 0px;
    border: 0;
    cursor: pointer;
    -webkit-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
    border-radius: 3px;
    background-image: -webkit-linear-gradient(top, #6065Ec, #6284ea);
    background-image: linear-gradient(top, #6065Ec, #6284ea);
    -webkit-box-shadow: 10px 10px 18px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 10px 10px 18px 0px rgba(0, 0, 0, 0.75);
}

input[type="submit"]:hover {
    background: #8346FB;
}

input[type="submit"]:active {
    background: #8346FB;
    -webkit-transform: scale(.9);
    transform: scale(.9);
}


/****    TERMS OF SERVICE & PRIVACY POLICY STYLES    ****/

.legal {
    height: 5%;
}

.terms h2,
p {
    margin: 0 auto;
    padding: 3% 10% 5% 10%;
}


/****    NEWSLETTER    ****/

.btn {
    justify-content: center;
    width: 90vw;
    position: relative;
    margin: 5% auto;
    padding: 1em 3em;
    border-radius: 3px;
    text-decoration: none;
    background: #7f6cf7;
}

#modal {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    -webkit-transition: opacity 500ms;
    transition: opacity 500ms;
    padding: 35% 0 100px 0;
}

#modal:target {
    pointer-events: all;
    opacity: 1;
}

#modal a.close {
    content: "";
    position: absolute;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #272729;
    opacity: 0.9;
    -webkit-transition: opacity 200ms;
    transition: opacity 200ms;
}

#modal a.close:hover {
    opacity: 0.95;
}

.polygon_a {
    position: relative;
    margin-top: -25px;
    min-width: 300px;
    margin-left: -20px;
    margin-bottom: -25px;
    margin-right: 700px;
    padding-left: 5%;
}

.polygon_a h1 {
    padding-left: 5%;
    padding-top: 4%;
}

.polygon_d {
    position: relative;
    margin-top: -25px;
    min-width: 300px;
    margin-left: -20px;
    margin-bottom: -25px;
    margin-right: 500px;
    padding: 5%;
}

.box_1 {
    width: 90%;
    height: 70px;
    top: 85%;
    left: 5%;
    border-bottom: 1px solid black;
    border-right: 1px solid black;
    position: absolute;
    border-radius: 5px;
}

.box_1 h1 {
    font-size: 1.2em;
}

.box_1 a:hover {
    color: #7f6cf7;
}