* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    line-height: 1.2;
}
.clearfix::after {
    content: '';
    display: block;
    clear: both;
}
.floatleft {
    float: left;
}
.floatright {
    float: right;
}
.container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}
header {
    position: sticky;
    top: 0;
}
.my-nav {
    background-color: #000;
    overflow: hidden;
}
.brand-name {
    color: white;
    font-size: 30px;
    line-height: 30px;
    width: 200px;
    text-align: center;
    padding-top: 12px;
    letter-spacing: 2px;
    cursor: pointer;
}
}
ul.men-item {
    list-style: none;
}

ul.men-item li {
    display: inline-block;
    position: relative;
}

ul.men-item li a {
    display: block;
    color: #FFF;
    padding: 15px 18px;
    text-decoration: none;
    letter-spacing: 1px;
}
ul.men-item li a:hover {
    color: #000;
    background-color: white;
}
/*Dropdown Menu*/

.form-group {
    background: white;
    padding: 8px;
    margin-top: 7px;
    border-radius: 3px;
    margin-right: 40px;
}
form {
    color: #666;
}
input[type="text"] {
    border: transparent;
}
input[type="text"]:focus {
    outline: none;
}
form:hover i.fa {    
    transform: rotate(90deg);
}

section.hero-area {
    position: relative;
    display: table;
    width: 100%;
    min-height: 780px;
    background: #efefef url("img/hero-bg.jpg") no-repeat center center fixed;
    background-size: cover;
    text-align: center;
    
}
.hero-area:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
    content: '';
    top: 0;
    left: 0;
}

.hero-inner {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    color: #ccc;
    line-height: 1.5;
    font-size: 1.5rem;
}
.hero-inner a {
    text-decoration: none;
    background: rgba(0, 0, 0, .5);
    color: #FFF;
    border-radius: 3px;
    margin-top: 40px;
    width: 180px;
    height: 50px;
    display: inline-block;
    line-height: 50px;
    text-align: center;
    transition: all ease 0.3s;
}
.hero-inner a:hover {
    background: rgba(255, 255, 255, .5);
    color: #000;
}