/*Main Styles*/
body {
    font-family: 'Hind', sans-serif;
    font-size: 25px;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-style: normal;
    overflow-x: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
html, body {
    width: 100%;
    height: 100%;
}
/*Menu Styles*/
* {
    margin: 0;
    padding: 0;
}
/*hiding label and checkbox*/
input[type=checkbox], .show-menu {
    display: none;
}
/*giving background image*/
/*styling our wrapper*/
.wrapper {
    max-width: 960px;
    margin: 0 auto;
    color: #fff;
    font-family: 'Hind', sans-serif;
}
/*styling h1 in wrapper*/
.wrapper h1 {
    padding: 20px;
    text-align: center;
}
/*styling navigation*/
.navigation {
    display: flex;
    list-style-type: none;
}
/*styling list items->li in navigation*/
.navigation li {
    background: #7E0000;
    flex: 1;
    text-align: center;
    transition: all .2s ease;
}
.navigation li:not(:first-child) {
    border-left: 2px solid #ecf0f1;
}
/*styling hover*/
.navigation li:hover {
    background: #333333;
    flex: 1.1;
}
/*styling our anchor tag*/
.navigation li a {
    display: block;
    padding: 20px 0;
    color: inherit;
    text-decoration: none;
}

/*giving style for mobile*/

@media screen and (max-width:600px) {
/*styling our show menu button*/
.show-menu {
    background: #342a2a;
    display: flex;
    cursor: pointer;
    padding: 20px 0;
    justify-content: center;
}
/*hiding our navigation*/
.navigation {
    display: none;
}
input[type=checkbox]:checked ~ .navigation {
    display: block;
}
.navigation li:not(:first-child) {
    border: 0;
}
.navigation li:not(:last-child) {
    margin: 2px 0;
}
}
/*Menu Styles Ends*/
/*Form Style Starts*/
.jumbotron {
    background-color: #7E0000;
    color: #FFF;
    border-radius: 0px;
}
.jumbotron-sm {
    padding-top: 24px;
    padding-bottom: 24px;
}
.jumbotron small {
    color: #FFF;
}
.header {
    height: 150px;
}
.card {
    position: relative;
    top: -185px;
    margin-bottom: 50px;
}
.cardStyle {
    position: relative;
    background-color: #fff;
    border: 1px solid rgb(221, 221, 221);
    margin-top: 20px;
    padding: 20px;
}
.cardStyle:before {
    position: absolute;
    height: 100%;
    width: 30px;
    top: 0;
    left: -30px;
    content: " ";
    display: block;
    /* z-index: 200; */
  
    background: #DFD9AB;
}
.cardStyle:after {
    position: absolute;
    height: 100%;
    width: 30px;
    top: 0;
    right: -30px;
    content: " ";
    display: block;
    /* z-index: 200; */
  
    background: #DFD9AB;
    color: #666;
    font-weight: 400;
}
.h1 .fa-envelope {
    font-size: 35px;
    color: #fff;
}
.btn-success {
    padding: 10px 25px;
}
/*Form Style Ends*/
* {
    box-sizing: border-box;
}
/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    padding: 15px;
}
/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
.column {
    width: 100%;
}
}
h2 {
    color: #fff;
    text-align: center;
}
/*Social Media Icons*/
.fa {
    padding: 10px;
    font-size: 40px;
    width: 55px;
    text-align: center;
    text-decoration: none;
    margin: 15px 2px;
}
.fa:hover {
    opacity: 0.7;
}
.fa-facebook {
    background: #491000;
    color: white;
}
.fa-twitter {
    background: #491000;
    color: white;
}
.fa-google {
    background: #491000;
    color: white;
}
.fa-youtube {
    background: #491000;
    color: white;
}
.fa-instagram {
    background: #491000;
    color: white;
}
.fa-pinterest {
    background: #491000;
    color: white;
}
.fa-snapchat-ghost {
    background: #491000;
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}
.fa-skype {
    background: #491000;
    color: white;
}
.fa-vimeo {
    background: #491000;
    color: white;
}
.fa-foursquare {
    background: #491000;
    color: white;
}
.fa-flickr {
    background: #491000;
    color: white;
}
.fa-yahoo {
    background: #491000;
    color: white;
}
