/* General */
html,
body {
    height: 100%;
}
body {
    font-family: Lato, sans-serif;
}
#wrap {
    height: 100%;
    transition: -webkit-transform, -moz-transform, transform 0.3s ease;
}
#wrap.menu-open {
    -webkit-transform: translate3d(-250px, 0, 0);
    -moz-transform: translate3d(-250px, 0, 0);
    transform: translate3d(-250px, 0, 0);
}
a {
    color: #333;
}
a:hover {
    text-decoration: none;
    color: #ed4f3e;
}
a:visited,
a:active,
a:focus {
    text-decoration: none;
    color: #333;
}
a.red-link {
    color: #ed4f3e;
    font-weight: 500;
    text-decoration: underline;
}
a.red-link:hover {
    text-decoration: none;
}
.btn {
    border: 2px solid;
    border-radius: 5px;
    padding: 8px 24px;
    text-transform: uppercase;
    font-size: 13px;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .3s ease;
    position: relative;
    background-color: transparent;
    z-index: 20;
}
.btn:hover {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
    transition: all .3s ease;
}
.btn:hover:after {
    width: 100%;
}
.btn:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    z-index: -1;
    transition: all .3s ease;
}
.btn-white {
    border-color: #fff;
    color: #fff;
}
.btn-white:hover {
    color: #363636;
}
.btn-white:after {
    background-color: #fff;
}
.btn-red {
    border: 0;
    background: #f95858;
    color: #fff;
    padding: 15px 40px;
}
.btn-red:hover {
    color: #fff;
}
.btn-red:after {
    background-color: #e44848;
}
.btn-orange {
    border: 0;
    background: #ffa900;
    color: #fff;
    padding: 15px 40px;
}
.btn-orange:hover {
    color: #fff;
}
.btn-orange:after {
    background-color: #f3a100;
}
.btn-dark {
    border-color: #363636;
    color: #363636;
}
.btn-dark:hover {
    color: #fff;
}
.btn-dark:after {
    background-color: #363636;
}
.form-control {
    box-shadow: none;
    -webkit-box-shadow: none;
    border-radius: 0;
}
.form-control:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
}
p {
    color: #333333;
    font-family: Lato, sans-serif;
    font-size: 15px;
    font-weight: 300;
}
p.lg {
    font-size: 24px;
    line-height: 28px;
    font-weight: 300;
    font-family: Lato, sans-serif;
    margin: 0 0 20px;
}
img {
    max-width: 100%;
}
section {
    position: relative;
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: #fff;
    overflow: hidden;
}
section:before,
section:after {
    content: " ";
    display: table;
}
section:after {
    clear: both;
}
section.grey {
    background-color: #f6f6f6;
}
section.grey .title hr:before {
    background-color: #f6f6f6;
}
section#titlebar {
    padding-bottom: 60px;
    background: #ffffff;
}
.title {
    margin-bottom: 35px;
}
.title.center {
    text-align: center;
}
.title.center hr {
    margin: 20px auto;
}
.title.center p {
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.title.center p:after {
    margin: 20px auto;
}
.title.right {
    text-align: right;
}
.title.right p:after {
    margin-right: 0;
    margin-left: auto;
}
.title h2 {
    font-size: 36px;
    font-weight: 300;
    font-family: Lato, sans-serif;
    margin-bottom: 20px;
}
.title h3 {
    font-size: 24px;
    font-weight: 300;
    font-family: Lato, sans-serif;
    margin-bottom: 30px;
}
.title hr {
    width: 100px;
    border-top: 2px solid #bbb;
    position: relative;
    text-align: center;
    margin: 20px 0;
}
.title hr:before {
    position: absolute;
    top: -14px;
    left: 50%;
    width: 16px;
    background-color: #fff;
    margin-left: -8px;
    font-size: 17px;
    color: #bbb;
}
.page-title {}
.page-title i {
    font-size: 2.75rem;
}
.page-title h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 400;
    margin-top: 60px;
}
.page-title h2 {
    margin-top: 10px;
}
.page-title p {
    font-size: 1.75rem;
    line-height: 2rem;
    font-weight: 300;
}
.page-title hr {
    width: 80px;
    margin: 30px auto 0;
    border-bottom: 5px solid #000;

}
.section-content:before,
.section-content:after {
    content: " ";
    display: table;
}
.section-content:after {
    clear: both;
}
.vcenter {
    display: table;
    height: 100%;
    width: 100%;
    text-align: center;
}
.centrize {
    display: table-cell;
    vertical-align: middle;
}
.animated {
    opacity: 0;
}
.visible {
    opacity: 1;
}

/* Menu */
#menu {
    position: fixed;
    right: -250px;
    z-index: 2000;
    width: 250px;
    background-color: #363636;
    color: #fff;
    top: 0;
    bottom: 0;
    transition: all .3s ease;
}
#menu.open {
    right: 0;
}
#menu nav {
    text-align: center;
}
#menu-toggle {
    width: 40px;
    height: 40px;
    position: absolute;
    border: 2px solid #fff;
    padding: 9px 0;
    top: 30px;
    left: -70px;
    cursor: pointer;
    transition: all .5s ease;
}
#menu-toggle span {
    width: 18px;
    height: 2px;
    background-color: #fff;
    display: block;
    margin: 3px auto;
    border-radius: 40px;
    transition: all .5s ease;
}
#menu-toggle.active span {
    position: absolute;
    left: 0;
    right: 0;
    top: 15px;
}
#menu-toggle.active span:first-child {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#menu-toggle.active span:last-child {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#menu-toggle.active span:nth-child(2) {
    display: none;
}
#menu-toggle.dark {
    border-color: #9b9b9b;
}
#menu-toggle.dark span {
    background-color: #9b9b9b;
}
#menu-toggle.dark:hover {
    border-color: #4e4e4e;
}
#menu-toggle.dark:hover span {
    background-color: #4e4e4e;
}
#logo {
    margin: 20px auto;
}
.logo-container {
    width: 200px;
    margin: 0 auto;
}
#main-menu {
    padding: 50px 0;
}
#main-menu > li > a {
    text-transform: uppercase;
    font-size: 13px;
    padding: 7px 15px;
    transition: all .3s ease;
}
#main-menu > li > a:hover {
    background-color: #292929;
}
#socials {
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 0;
    background-color: #292929;
}
#socials > li {
    float: left;
    width: 20%;
}
#socials > li > a {
    text-align: center;
    font-size: 18px;
    color: #9B9B9B;
}
#socials > li > a:hover {
    color: #bf9f88;
    background-color: #222222;
}
/* Top Nav */
#topnav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 1030;
    border-radius: 0;
    transition: all .3s ease;
    padding: 10px 0;
}
#topnav.scrolled {
    position: fixed;
    background: #fff;
    border-bottom: 1px solid #ececec;
}
#topnav.scrolled .navbar-nav > li > a {
    color: #333;
    padding-top: 27px;
    padding-bottom: 20px;
}
#topnav.scrolled .navbar-nav > li > a:hover {
    background-color: transparent;
    color: #ed4f3e;
}
#topnav.scrolled .navbar-brand {
    margin-top: 0;
}
#topnav.scrolled .navbar-brand .logo-light {
    display: none;
}
#topnav.scrolled .navbar-brand .logo-dark {
    display: block;
}
#topnav .navbar-nav > li > a {
    text-transform: uppercase;
    font-size: 13px;
    color: #fff;
    padding-top: 55px;
    padding-bottom: 50px;
    transition: all .3s ease;
}
#topnav .navbar-nav > li > a:hover {
    background: none;
    color: #ed4f3e;
}
#topnav .navbar-nav li.telephone {}
#topnav .navbar-nav li.telephone a {
    font-weight: 700;
}
#topnav .navbar-nav li.telephone a i {
    color: #ed4f3e;
}
#topnav.scrolled .navbar-nav li.telephone a i {
}
#topnav .navbar-nav li.telephone legend {
    position: absolute;
    font-size: 0.875rem;
    border: 0;
    color: #fff;
    top: 42px;
    right: 15px;
    text-align: right;
    font-style: italic;
}
#topnav.scrolled .navbar-nav li.telephone legend {
    top: 18px;
    color: #ed4f3e;
}
.nav > li > a:active,
.nav > li > a:focus {
    background: none;
}
.navbar-brand {
    height: 67px;
    padding: 10px;
    margin-top: 24px;
    transition: all .3s ease;
    z-index: 9999;
}
.navbar-brand img {
    max-height: 100%;
}
.logo-dark {
    display: none;
}
.navbar-toggle {
    border: 0;
    color: #fff;
    font-size: 2rem;
    transition: all .3s ease;
    margin-top: 13px;
    padding: 9px 0;
}
.navbar-toggle:hover {
    background-color: transparent;
}

/* Sidebar */
.practice-nav h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}
.practice-nav {
    margin-bottom: 3rem;
}
.practice-nav ul {
    margin: 0;
    padding: 0;
    border: 1px solid #ddd;
}
.practice-nav li {
    list-style-type: none;
}
.practice-nav li a {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    width: 100%;
    display: block;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .3s ease;
}
.practice-nav li:last-child a {
    border-bottom: 0;
}
.practice-nav li a:hover {
    color: #fff;
    background: #ed4f3e;
    border-radius: 2px;
    -webkit-transform: scale(1.015);
    transform: scale(1.015);
    transition: all .3s ease;
}

/* Headers */
#practice-areas #hero,
#personal-injury #hero,
#dui-criminal-defense #hero,
#business-litigation #hero,
#real-estate-law #hero,
#intellectual-property-law #hero,
#auto-accidents #hero,
#motorcycle-accidents #hero,
#bicycle-accidents #hero,
#pedestrian-accidents #hero,
#dog-bites #hero,
#premises-liability #hero,
#about #hero,
#contact #hero,
#thankyou #hero,
#error #hero
{
    height: 50%;
    background: url(../images/bg/courtroom.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.subpage .hero-overlay {
    height: 100%;
    background: rgba(0,0,0,0.65);
}
.subpage .home-caption {
    display: table;
    height: 100%;
    width: 100%;
}
.subpage .home-content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
}
.subpage .home-content p {
    color: #fff;
}

/* Home Section */

#home #hero {
    background: url('../images/bg/courthouse.png') no-repeat #000;
    background-size: cover;
    background-attachment: fixed;
    height: 80%;
}
#home .hero-overlay {
    height: 100%;
    background: rgba(0,52,113,0.9);
}
#home .home-caption {
    display: table;
    height: 100%;
    width: 100%;
}
#home .home-content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
}
.home-content h1 {
    font-size: 40px;
    font-weight: 300;
    margin: 40px 0 0;
    padding: 15px 0;
}
.home-content h3 {
    color: #ececec;
    margin-top: 0;
}
.home-content h5 {
    font-size: 24px;
    font-family: Lato, sans-serif;
    font-style: italic;
    margin: 15px 0;
}
.home-content hr {
    width: 50px;
    margin: 40px auto;
    border-bottom: 2px solid #fff;
}
.home-content .btn {
    color: #fff;
    background-color: #f04e36;
    border: 0;
    padding: 12px 30px;
    font-size: 1.5rem;
}
.home-content .btn:hover {
    color: #fff;
    background-color: #f04e36;
    font-weight: 700;
}
/* Intro Section */
.intro-title {
    padding: 10px 0;
}
.intro-img {
    background: url('../images/svg/users.svg') no-repeat;
    width: 200px;
    height: 200px;
    margin: 0 auto;
}

/* About Page */
#about #hero {
    background: url(../images/bg/lawbooks.png);
    background-size: cover;
    background-attachment: fixed;
}
.about-title {
    margin: 0;
    border-left: 5px solid #333;
    padding: 140px 0 100px;
}
.about-img {
    background: url('../images/svg/vision.svg') no-repeat;
    width: 240px;
    height: 240px;
    margin: 0 auto;
}
#attorney {
    padding-bottom: 0;
}
.attorney-info {
    padding-bottom: 40px;
}
.attorney-info h3 {
    margin-bottom: 0;
}
.attorney-info p.position {
    font-family: 'PT Serif', serif;
    color: #f04e36;
}
#team-commitment {}
#team-commitment .commitment-img {
    border-radius: 50%;
}
#process {}
.process-content {}
.process-content h2 {
    padding-left: 130px;
    margin-bottom: 40px;
}
.process-list {
    margin: 0;
    padding: 0;
}
.process-list li {
    list-style-type: none;
    margin-bottom: 40px;
}
.process-list li .process-icon {
    float: left;
    width: 80px;
    height: 80px;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .3s ease;
}
.process-list li:hover > .process-icon {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    transition: all .3s ease;
}
.process-list li .process-ideation { background: url("../images/svg/ideation.svg") no-repeat; }
.process-list li .process-validation { background: url("../images/svg/validation.svg") no-repeat; }
.process-list li .process-production { background: url("../images/svg/production.svg") no-repeat; }
.process-list li .process-analytics { background: url("../images/svg/analytics.svg") no-repeat; }
.process-list li .process-list-content {
    padding-left: 130px;
}
#general {}
.general-content h2 {
    margin-bottom: 40px;
}

/* Practice Areas */
#practice-areas #hero {
    height: 50%;
    background: url(../images/bg/courtroom.png) no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
#practice-areas .hero-overlay {
    height: 100%;
    background: rgba(0,0,0,0.65);
}
#practice-areas .home-caption {
    display: table;
    height: 100%;
    width: 100%;
}
#practice-areas .home-content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    color: #fff;
}
#practice-areas .home-content p {
    color: #fff;
}
.main-content h2 {
    margin: 0 0 3rem;
}
.main-content h3 {
    margin: 3rem 0;
}
.main-content p {
    font-size: 1.75rem;
    color: #333;
    margin-bottom: 3rem;
}
.main-content li {
    font-size: 1.75rem;
    font-weight: 300;
}

/* About Section */

.img-side {
    padding: 0px;
    position: absolute;
    top: 0px;
    height: 100%;
    overflow: hidden;
    z-index: 100;
}
.img-side.img-right {
    right: 0;
}
.img-side.img-left {
    left: 0;
}
.img-holder {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
}
.about-box {
    margin-bottom: 25px;
}
.about-box:before,
.about-box:after {
    content: " ";
    display: table;
}
.about-box:after {
    clear: both;
}
.about-box:last-child {
    margin-bottom: 0;
}
.ab-icon {
    width: 15%;
    float: left;
    margin-right: 5%;
    text-align: center;
}
.ab-icon i {
    font-size: 45px;
}
.ab-content {
    float: left;
    width: 80%;
}
.ab-content h4 {
    text-transform: uppercase;
    font-size: 15px;
}
/* Team Section */
.member {
    margin: 50px 0;
    text-align: right;
    transition: all .3s ease;
    cursor: default;
    position: relative;
}
.member:before,
.member:after {
    content: " ";
    display: table;
}
.member:after {
    clear: both;
}
.member:hover .member-overlay {
    opacity: 1;
    top: 0;
}
.member h4 {
    text-transform: uppercase;
    font-size: 15px;
    margin-top: 0;
}
.member h6 {
    text-transform: uppercase;
    font-size: 11px;
    color: #9B9B9B;
}
.member-avatar {
    position: relative;
    width: 25%;
    float: right;
}
.member-avatar img {
    border-radius: 50%;
}
.member-info {
    padding: 0 15px;
    position: relative;
    width: 75%;
    float: left;
}
.member-overlay {
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(54, 54, 54, 0.8);
    opacity: 0;
    transition: all .3s ease;
}
.member-overlay p {
    color: #fff;
}
.member-social {
    margin: 0;
    padding: 0;
    list-style: none;
}
.member-social > li {
    display: block;
    width: 30px;
    margin: auto;
}
.member-social > li > a {
    color: #fff;
    font-size: 18px;
}
.member-social > li > a:hover {
    text-shadow: 0px 0px 10px #FFF;
}
/* Numbers Section */
.counter {
    margin: 25px 0;
}
.counter:before,
.counter:after {
    content: " ";
    display: table;
}
.counter:after {
    clear: both;
}
.counter-icon {
    width: 30%;
    text-align: center;
    margin-right: 5%;
    float: left;
    font-size: 50px;
}
.counter-content {
    float: left;
    width: 65%;
}
.counter-content .value {
    display: block;
    font-size: 30px;
}
.counter-content small {
    text-transform: uppercase;
}
/* Pricing Section */
.plan {
    padding: 15px;
    background-color: #fff;
    text-align: center;
    margin: 50px auto;
    max-width: 350px;
    position: relative;
    overflow: hidden;
}
.plan.highlight {
    box-shadow: 0 0 6px rgba(54, 54, 54, 0.15);
}
.plan h4 {
    text-transform: uppercase;
    font-size: 15px;
}
.plan hr {
    border-top: 2px solid #bf9f88;
    width: 40px;
}
.plan ul > li {
    padding: 10px 15px;
    text-transform: uppercase;
    font-size: 12px;
    color: #9B9B9B;
    border-bottom: 1px solid #ececec;
}
.featured {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    width: 150px;
    top: 25px;
    right: -35px;
    text-align: center;
    padding: 5px 20px;
    background: #BF9F88;
    color: #FFF;
}
.plan-icon {
    font-size: 23px;
    padding: 10px;
    color: #BF9F88;
}
.price {
    padding: 15px;
}
.price span {
    font-size: 40px;
}
.plan-footer {
    padding: 20px;
}
/* Parallax Section */
.parallax-section {
    padding: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
.overlay {
    height: 100%;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: rgba(0, 0, 0, 0.5);
}
.overlay .title {
    color: #fff;
}

/* Services Panel */
#services {
    padding: 0;
}
.services #hero {
    height: 50%;
    background-color: #0ed0c8;
}
.service-con {
    padding: 50px 0;
    background: #f6f6f6;
}
ul.service {
    margin: 0;
    padding: 0;
}
li.service-item {
    list-style-type: none;
}
li.service-item:last-child {
    border: 0;
}
li.service-item:hover {
    color: #fff;
    z-index: 5;
}
li.service-item:hover .service-icon {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    transition: all .3s ease;
}
li.service-item a,
li.service-item i {}
li.service-item:hover a,
li.service-item:hover i {
    color: #333;
    transition: all .3s ease;
}
.service-item-content {
    padding: 50px 0 0;
}
.service-item-content i {
    font-size: 5em;
}
.service-item-content h4 {
    font-family: Lato, sans-serif;
}
.services-content i {
    font-size: 5em;
}
.services-content h4 {}
.services-content p {
    font-weight: 300;
}
.service-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .3s ease;
}
.service-personal-injury { background: url('../images/svg/personalinjury.svg') no-repeat; }
.service-dui { background: url('../images/svg/dui.svg') no-repeat; }
.service-business { background: url('../images/svg/businesslit.svg') no-repeat; }
.service-real-estate { background: url('../images/svg/realestate.svg') no-repeat; }
.service-copyright { background: url('../images/svg/ipcopyright.svg') no-repeat; }

/* Services Page */

.services-title {
    padding: 140px 0 100px;
}
.service-list {
    padding: 100px 0 50px;
}
.service-list h3 {
    margin-top: 0;
}
.services-item {
    margin-bottom: 50px;
}
/*.service-title: {
    content: '';
    width: 200px;
    height: 5px;
    display: block;
    background: #333;
    margin: 50px auto 0;
}*/
#design h3 {
    margin-top: 0;
}
#design .service-icon {
    width: 200px;
    height: 200px;
}

/* Summary Panel */
section#summary {
    padding-top: 70px;
    padding-bottom: 50px;
    position: relative;
}
#summary i {
    font-size: 2.75rem;
}

/* Sign Up */
section#signup {
    padding-top: 50px;
    padding-bottom: 50px;
    background: rgba(0,52,113,1);
}
.signup-content {
    padding: 50px 0;
}
.signup p.lg {
    color: #77c0d5;
}
.signup p.lg i:before {
    margin-left: 0;
}
.signup p {
    color: #fff;
}
.signup p a {
    color: #77c0d5;
    text-decoration: underline;
}
.signup p a:hover {
    text-decoration: none;
}
.signup .btn {
    margin-top: 20px;
    color: #fff;
    background-color: #f04e36;
    border-color: #f04e36;
}
.signup .btn:hover {
    background: #f04e36;
    color: #fff;
    font-weight: 700;
}

/* Portfolio */
#portfolio {
    overflow: hidden;
}
#filters {
    list-style: none;
    padding: 0;
    margin: 50px 0;
    text-align: center;
}
#filters > li {
    display: inline-block;
    position: relative;
    padding: 8px 16px;
    text-transform: uppercase;
    font-size: 13px;
    color: #9B9B9B;
    cursor: pointer;
}
#filters > li:before {
    content: "♦";
    position: absolute;
    left: -5px;
    font-size: 10px;
    line-height: 18px;
    color: #9B9B9B;
}
#filters > li:first-child:before {
    content: none;
}
#filters > li.active {
    color: #bf9f88;
}
.project {
    position: relative;
    width: 33.33333333%;
    float: left;
}
.project:hover .project-overlay {
    opacity: 1;
    border: 10px solid rgba(0, 0, 0, 0.6);
}
.project-overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
    transition: opacity .8s ease, border .4s ease;
    text-align: center;
    color: #fff;
}
.project-overlay p {
    color: #fff;
    font-size: 14px;
}
.project-overlay h4 {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 17px;
    margin: 0;
}
.project-overlay .btn {
    margin: 20px 0;
}
#project-modal {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: none;
    max-height: 100%;
    overflow-y: scroll;
}
#project-modal.in .modal-dialog {
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
#project-modal .modal-dialog {
    width: 50%;
    height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    margin: 0;
    background-color: #fff;
    -webkit-transform: translate3d(-25%, 0, 0);
    -o-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
}
#project-modal .modal-content {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    padding: 25px;
}
#project .title p {
    font-size: 15px;
}
#project p {
    text-align: center;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}
.project-media {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}
.project-media .flexslider {
    margin-bottom: 0;
}
.project-media .flexslider:hover .flex-next {
    right: 0;
}
.project-media .flexslider:hover .flex-prev {
    left: 0;
}
.project-media .flexslider:hover .flex-direction-nav a {
    opacity: 1;
}
#modal-close {
    color: #ccc;
    font-size: 30px;
    padding: 5px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    z-index: 100;
}
#modal-close:hover {
    color: #bf9f88;
}
.modal-open {
    padding-right: 0!important;
}
.flex-control-nav {
    position: relative;
    bottom: 0;
    margin: 30px auto 0;
}
.flex-control-paging li a {
    width: 25px;
    height: 8px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    background-color: #ccc;
}
.flex-control-paging li a:hover {
    background-color: #ececec;
}
.flex-control-paging li a.flex-active {
    background-color: #f04e36;
}
.flex-direction-nav a {
    background-color: #fff;
    opacity: 0;
    line-height: 40px;
    font-size: 22px;
}
.flex-direction-nav a:before {
    font-family: 'fontello';
    font-size: inherit;
}
.flex-direction-nav a.flex-prev {
    left: 0;
    text-align: center;
    border-radius: 0 5px 5px 0;
}
.flex-direction-nav a.flex-prev:before {
    content: '\e846';
}
.flex-direction-nav a.flex-next {
    right: 0;
    text-align: center;
    border-radius: 5px 0 0 5px;
}
.flex-direction-nav a.flex-next:before {
    content: '\e847';
}
.video-container {
    width: 100%;
    position: relative;
    padding: 0;
    padding-bottom: 60%;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
/* Testimonials */
#testimonials {
    overflow: visible;
    padding: 0;
    background-image: url(../images/bg/gavel.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.testimonials-overlay {
    height: 100%;
    width: 100%;
    padding: 70px 0 50px;
    background: rgba(0,0,0,0.7);
}
#testimonials h3 {
    color: #f04e36;
}
#testimonials-slider li p {
    color: #fff;
}
#testimonials-slider {
    margin-bottom: 0;
}
#testimonials-slider li {
    text-align: center;
}
#testimonials-slider li img {
    width: 150px;
    margin: 20px auto;
    border-radius: 50%;
}
#testimonials-slider li blockquote {
    font-family: 'PT Serif', serif;
    font-style: italic;
    color: #fff;
    font-size: 16px;
    padding: 10px 0;
    border: 0;
    margin: 0;
}
/* Clients Section */
#clients {
    padding: 0;
}
.client {
    margin: 50px 0;
    text-align: center;
}
.client img {
    max-width: 100%;
    max-height: 60px;
}
/* Blog Section */
.post-preview {
    max-width: 320px;
    margin: 25px auto;
}
.post-preview .post-date {
    display: block;
    font-size: 11px;
    color: #BBB;
}
.preview-body {
    padding: 15px;
    text-align: center;
    border: 1px solid #ececec;
    background-color: #fff;
}
.preview-body h4 {
    text-transform: uppercase;
    font-size: 15px;
}
.preview-body hr {
    width: 50px;
    border-color: #ddd;
}
.owl-theme .owl-controls .owl-page.active span {
    background-color: #bf9f88;
}
.owl-theme .owl-controls .owl-page span {
    background-color: #bbb;
}
.more-posts {
    text-align: center;
    margin: 20px 0;
}
/* Contact Section */
#contact #hero {
    height: 50%;
    background: url(../images/bg/library.png);
    background-size: cover;
    background-attachment: fixed;
}
#contact-form {
    text-align: right;
}
#contact-form .form-group {
    margin-bottom: 25px;
}
#contact-form .form-group.error .form-control {
    border-color: #d95c5c;
}
#contact-form .form-control {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #363636;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #363636;
}
#contact-form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #363636;
    border-style: dashed;
}
#contact-form textarea {
    resize: none;
}
.consultation-form-sidebar {
    background: #eae4d6;
    padding: 20px;
}
.consultation-form-sidebar h3 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 10px;
}
.consultation-form-sidebar p.subhead {
    font-size: 1.5rem;
}
#sidebar-contact-form .form-group.error .form-control {
    border-color: #d95c5c;
}
#sidebar-contact-form .form-control {
    background-color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 12px;
    text-transform: uppercase;
    color: #363636;
}
#sidebar-contact-form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #363636;
    border-style: dashed;
}
#sidebar-contact-form .btn {
    width: 100%;
    padding: 20px;
    border-color: #f04e36;
    background: #f04e36;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .3s ease;
}
#sidebar-contact-form .btn:hover {
    -webkit-transform: scale(1.025);
    transform: scale(1.025);
    transition: all .3s ease;
}

/* Estimate Form Section */
#main-contact-form {
    text-align: left;
}
#main-contact-form h4 {
    font-weight: 700;
    letter-spacing: -0.05em;
    margin-bottom: 30px;
    text-align: center;
}
#main-contact-form h4.pinfo {
    margin: 50px 0 20px;
}
#main-contact-form .form-group {
    margin-bottom: 25px;
}
#main-contact-form .form-group.error .form-control {
    border-color: #d95c5c;
}
#main-contact-form .form-control {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #ccc;
    border-radius: 0;
    background: #fff;
    font-size: 14px;
    color: #363636;
}
#main-contact-form ::-webkit-input-placeholder { font-family: Lato, sans-serif; font-weight: 300; color: #999; }
#main-contact-form :-moz-placeholder { /* Firefox 18- */ font-family: Lato, sans-serif; font-weight: 300; color: #999; }
#main-contact-form ::-moz-placeholder {  /* Firefox 19+ */ font-family: Lato, sans-serif; font-weight: 300; color: #999; }
#main-contact-form :-ms-input-placeholder { font-family: Lato, sans-serif; font-weight: 300; color: #999; }
#main-contact-form label {
    font-weight: 200;
    font-size: 1em;
    color: #333;
}
#main-contact-form span.example {
    font-size: 10px;
    color: #f00;
}
#main-contact-form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #363636;
    border-style: dashed;
}
#main-contact-form textarea {
    resize: none;
    height: 100px;
}
#main-contact-form .btn {
    width: 60%;
    padding: 20px;
    border-color: #f04e36;
    background: #f04e36;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    -webkit-transform: scale(1);
    transform: scale(1);
    transition: all .3s ease;
}
#main-contact-form .btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    transition: all .3s ease;
}

/* Blog Page */
#posts {
    overflow: visible;
}
#blog-header {
    background-image: url("../images/bg/1.jpg");
    height: 500px;
}
#blog-posts {
    margin: -200px auto 0;
    background-color: #fff;
}
.post {
    padding: 25px;
    border-bottom: 1px solid #ececec;
}
.post:last-child {
    border-bottom: 0;
}
.post-thumbnail {
    text-align: center;
}
.post-title {
    text-align: center;
}
.post-title h2 {
    text-transform: uppercase;
    font-size: 32px;
}
.post-info {
    font-size: 14px;
}
.post-info:after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: #363636;
    margin: 20px auto;
}
.post-info span {
    padding: 0 2px;
}
.post-info .dot:before {
    content: "|";
}
.post-body {
    text-align: center;
    padding: 20px 0;
}
.post-body p {
    padding-bottom: 20px;
}
#single-post .post {
    padding: 0;
    border-bottom: 0;
    margin-bottom: 50px;
}
#single-post .post-body {
    text-align: left;
}
.single-post-title {
    text-align: center;
    color: #fff;
}
.single-post-title h2 {
    text-transform: uppercase;
    font-size: 41px;
    margin-bottom: 20px;
}
.single-post-title p {
    color: #fff;
    font-size: 15px;
}
.single-post-title p:after {
    content: none;
}
#comments {
    margin-bottom: 50px;
}
#comments h5 {
    text-transform: uppercase;
    font-size: 13px;
}
.comments-list {
    padding-left: 0;
    list-style: none;
    margin: 0;
}
.comments-list > li {
    padding: 15px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}
.comments-list > li:before,
.comments-list > li:after {
    content: " ";
    display: table;
}
.comments-list > li:after {
    clear: both;
}
.comments-list .children {
    margin: 15px -15px 0;
    list-style: none;
    border-top: 1px solid #ddd;
}
.comments-list .children > li {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}
.comments-list .children > li:last-child {
    border-bottom: 0;
}
.comment:before,
.comment:after {
    content: " ";
    display: table;
}
.comment:after {
    clear: both;
}
.comment img {
    margin-top: 10px;
}
.comment-date {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    text-transform: uppercase;
    color: #999;
}
.comment-reply {
    text-transform: uppercase;
    font-size: 11px;
}
#respond h5 {
    font-size: 13px;
    text-transform: uppercase;
}
.comment-respond {
    padding: 20px;
    border: 1px solid #ddd;
    margin-bottom: 50px;
}
.comment-respond .form-control {
    font-size: 11px;
    text-transform: uppercase;
}
.comment-respond textarea {
    min-height: 120px;
    max-width: 100%;
    resize: none;
}
.form-double:before,
.form-double:after {
    content: " ";
    display: table;
}
.form-double:after {
    clear: both;
}
.form-double .form-group {
    width: 50%;
    float: left;
    padding-right: 5px;
}
.form-double .form-group.last {
    padding-right: 0;
    padding-left: 5px;
}
.form-submit {
    text-align: right;
}
.widget {
    padding: 0 15px 15px;
    margin-bottom: 15px;
}
.widget h6 {
    text-transform: uppercase;
}
.widget ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
}
.widget ul > li > a {
    display: block;
    color: #9b9b9b;
    padding: 5px 0;
    border-bottom: 1px solid #e6e6e6;
    font-size: 13px;
}
.widget ul > li > a:hover {
    color: #bf9f88;
}
.widget p {
    margin-bottom: 0;
}
/* Footer */
footer {
    background-color: #011f42;
    padding-top: 70px;
    padding-bottom: 30px;
    position: relative;
}
footer h4 {
    color: #fff;
    margin: 0 0 10px;
    text-transform: uppercase;
}
footer address p {
    color: #fff;
    font-size: 1.25rem;
    line-height: 1rem;
    font-weight: 300;
}
.footer-logo {
    width: 200px;
    margin-bottom: 5px;
}
.footer-cta {}
.footer-cta p {
    color: #fff;
    margin: 0;
}
.footer-cta h3 {
    font-family: Montserrat;
    font-size: 2.5rem;
    font-weight: 700;
    font-style: italic;
    color: #f04e36;
    margin: 0;
}
.footer-right {
    text-align: right;
}
.copyright {
    color: #fff;
    margin: 0;
}
ul.footer-links {
    margin: 0;
    padding: 0;
}
ul.footer-links li {
    list-style-type: none;
    display: inline-block;
    padding: 0 5px;
}
ul.footer-links li a {
    color: #77c0d5;
    text-decoration: underline;
}
ul.footer-links li a:hover {
    text-decoration: none;
}
footer hr {
    border-color: rgba(255,255,255,0.1);
}
/* 404 Page */
#error404 {
    background-image: url("../images/bg/8.jpg");
    height: 100%;
}
#error404 .overlay {
    padding: 0;
}
.error-box {
    position: relative;
    width: 450px;
    margin: auto;
    padding: 80px 30px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}
.error-box:before {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.error-box h1 {
    font-size: 100px;
}
.error-box h3 {
    text-transform: uppercase;
    font-size: 17px;
}
.error-box hr {
    width: 50px;
    border-top: 2px solid #fff;
}
.error-box p {
    margin: 25px 0 35px 0;
    color: #fff;
}
/* Coming Soon Page */
#coming-soon {
    background-image: url("../images/bg/4.jpg");
    height: 100%;
}
#coming-soon .overlay {
    padding: 0;
}
.coming-soon-box {
    position: relative;
    width: 850px;
    margin: auto;
    padding: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}
.coming-soon-box:before {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    top: 15px;
    bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}
.coming-soon-box h1 {
    font-size: 50px;
}
.coming-soon-box hr {
    width: 50px;
    border-top: 2px solid #fff;
}
.coming-soon-box p {
    color: #fff;
}
.countdown {
    list-style: none;
    padding: 0;
    margin: 50px 0;
    text-align: center;
}
.countdown > li {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    padding: 10px;
    margin: 0 10px;
}
.countdown > li > span {
    display: block;
    font-size: 50px;
}