html,body {
    font-family: sans-serif;
    padding: 0;
    margin: 0;
}

* {
    box-sizing: border-box;
}

a {
    display: inline-block;
    text-decoration: none;
}


/*#contact-header::after {
    content: "";
    display: block;
    background-color: #223e73;
    height: 10px;
}*/

.heading-tag {
  background-color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 111;
  box-shadow: 1px 1px 20px rgba(0,0,0,0.2); 
}
/*
.heading-tag {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    right: 0;
    height: 400px;
    background-color: #223e73;
    z-index: -1;
}*/

#site-heading {
    
    background-color: #223e73;
}

#site-heading h2 {
    text-align: center;
    padding: 0 2em 5em;
    font-weight: 100;
    font-size: 1.5em;
    color: #fff;
}

.wrapper {
    width: 100%;
    margin: 0 auto;
    background-color: #fff;
    padding-top: 1em;
}

.wrapper::after {
    content: "";
    clear: both;
    display: block;
}

#wrap {
    width: 60%;
    margin: 0 auto;
}

input[type=text], select, textarea {
    width: 100%;
    padding: 12px; /* Some padding */  
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

input[type=submit] {
    border: 1px solid #3b3f75;
    color: #3b3f75;
    padding: 12px 20px;
    border: none;
    border-radius: 1em;
    cursor: pointer;
}

input[type=submit]:hover {
    background-color: #3b3f75;
    color: #fff;
}

.container {
    border-radius: 5px;
    padding: 20px;
    float: left;
    width: 50%;
}

.container .required {
    font-style: italic;
    color: #77778c;
}

.name {
     font-weight: bold;
     font-size: 1em;
}

.contact-info {
    margin: 0 auto;
    padding: 5em 0 8em;
}

.contact-location {
    padding: 1em;
    line-height: 1.5em;
}

.contact-location h1 {
    padding-bottom: 1em;
}

.contact-location h1::after {
    content: "";
    display: block;
    border: 1px solid grey;
    width: 25%;
    margin-top: 1em;
}

/*-----------------Footer---------------*/
#extra-info {
    padding: 2em 0;
}

#extra-info ul li {
    font-size: 1em;
}

#extra-info a {
    color: black;
}

#demo-request {
    background-color: #223e73;
    text-align: center;
    padding: 10em;  
}

#demo-request h1 {
    color: #fff;
    font-weight: 400;
    margin-bottom: 2em;
}


#demo-request input {
    background-color: #fff;
    color: black;
}

#demo-request input:hover {
    background-color: black;
    color: #fff;
}

#group-pic {
    margin: 0;
    padding: 0;
}

#group-pic img{
    width: 60em;
}

@media screen and (max-width: 600px) {
    #wrap {
        width: 90%;
    }

    #extra-info {
        width: 100%;
    }
}

@media only screen and (max-width: 768px) {

    #group-pic h1 {
        font-size: 1.25em;
    }

    #group-pic img {
        width: 20em;
    }

    #group-pic p {
        font-size: 1em!important;
    }

    .co-founders {
        margin: 0!important;
    }
}


.co-founders {
    /*border:  1px solid #FF0B43;*/
    margin: 2em;
    width: 100%;
    padding-bottom: 30px;
    text-align: center;
}

.co-founders i {
    color: #000;
    font-size: 22px;
}

.co-founders .img {
    border-radius: 5em;
    width: 200px;
    height: 200px;
    background-repeat: no-repeat!important;
    background-position: center!important;
    background-size: cover!important;
    margin-bottom: 30px;
    margin-left: 3em;
    border: 2px solid #e3e3e3;
}

.co-founders-role {
    color: #9c9c9c;
    text-align: center;
}

.co-founders-name {
    text-align: center;
    color: #FF0B43;
}

.h11-before::before {
    content: "";
    color: #FF0B43;
    border: 2px solid #FF0B43;
    margin-right: 10px;
}