/*
Theme Name: coryholtzman.com
Theme URI: http://www.coryholtzman.com
Description: AIOS mobile semi-custom theme.
Author: AgentImage
Author URI: http://www.agentimage.com
Version: 1.4.4
Tags: one-column, two-columns, right-sidebar, custom-menu, full-width-template, sticky-post
License: Proprietary
License URI: http://www.agentimage.com
Template: aios-starter-theme
*/

/*

TABLE OF CONTENTS

1. Custom CSS
2.	IP styles
3. MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css

*/


/*******************************************************
 *
 * 1. Navigation
 *
 *******************************************************/


/* Sub Menu */

#nav li {
    position: relative;
}

#nav .sub-menu {
    list-style: none outside none;
    margin: 0;
    display: none;
    padding: 0;
    position: absolute;
    left: -35px;
    right: -35px;
    top: 100%;
}

#nav .sub-menu > li {
    background: rgba(62, 34, 13, .8);
    border-bottom: 1px solid #6f5e4f;
}

#nav .sub-menu > li:last-child {
    border-bottom: none;
}

#nav .sub-menu a {
    color: #FFFFFF;
    display: block;
    padding: 10px;
}

#nav .sub-menu a:hover {
    background: none repeat scroll 0 0 #b2b2b2;
    color: #fff;
    text-decoration: none;
}

#nav .sub-menu .sub-menu {
    margin-left: 100%;
    top: 0;
}

#nav li:hover > .sub-menu {
    display: block;
}

#nav .sub-menu li {
    position: relative;
}


/*** header Style ***/

header.header {
    position: fixed;
    width: 100%;
    z-index: 1000
}

header .header-center {
    display: block;
    width: 20%;
    margin: 0 auto;
    transform: scale(0);
    height: 0;
    transition: 400ms ease;
}

header.fixed .header-center {
    height: 50px;
    transform: scale(1);
}

.fixed .header-left {
    display: none;
}

.fixed .header-right {
    margin: 0 auto;
    display: block;
    width: 20%;
}

header.header.fixed {
    position: fixed;
    top: -200px;
}

header.fixed .header-upper {
    padding: 6px 0;
}

.header-upper {
    background: #3e220d;
    width: 100%;
    display: block;
    font-size: 0;
    padding: 12px 0;
}

.header-right {
    display: inline-block;
    vertical-align: middle;
    width: 40%;
}

.header-left {
    width: 60%;
    vertical-align: middle;
    display: inline-block;
}

.header-right img {
    display: block;
    margin-right: auto;
}

header ul.social-media {
    margin: 0 45px;
}

header ul.social-media {
    text-align: right;
}

header ul.contact-info li {
    display: inline-block;
    margin-right: 15px;
}

header ul.contact-info {
    text-align: right;
    font-size: 22px;
}

.header-lower {
    width: 100%;
    background: rgba(0, 0, 0, .7);
    display: block;
}

nav ul#nav {
    font-family: 'Verdana', sans-serif;
    /* font-size: 14px; */
    font-size: 0;
    color: #fff;
    letter-spacing: 0;
    line-height: 15px;
    text-align: center;
    font-weight: 300;
    text-transform: lowercase;
}
nav ul#nav a{
	font-size: 14px;
}
nav ul#nav > li {
    display: inline-block;
    padding: 8px 6px;
}

nav ul#nav > li > a {
    color: inherit;
    padding: 5px 12px;
    display: block;
    transition: 400ms ease;
    -webkit-transition: 400ms ease;
    -moz-transition: 400ms ease;
    -o-transition: 400ms ease;
}

nav ul#nav > li > a:hover {
    background: #3e220d;
}

nav ul#nav > li:after {
    position: absolute;
    right: 0;
    height: 18px;
    width: 1px;
    background-color: #5a5b5a;
    display: block;
    content: '';
    top: 13px;
}

nav ul#nav > li:last-child:after {
    display: none;
}

/*** Mobile navigation ***/

.amh-navigation .amh-menu li:hover > a,
.amh-navigation .amh-menu li.open > a {
    background: #563217;
}

.amh-navigation .amh-menu li ul {
    background: #3e220d;
}

.amh-header-buttons .amh-navigation-trigger,
.amh-header-buttons .amh-header-right-btn {
    color: #3e220d;
}

.amh-header-buttons.amh-1a .amh-center .amh-phone-text,
.amh-header-buttons.amh-1a .amh-center .amh-phone-text a {
    color: #3e220d;
}

/*******************************************************
 *
 * 2. Custom CSS
 *
 *******************************************************/


/* Global */

body {
    font-family: 'Verdana', sans-serif;
    font-size: 12px;
    background: #FFF;
    color: #000000;
    margin: 0;
    /* Remove the comment from line 85 to 86 if the font issue in safari occurs */
    /* -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; */
}


/** Adding Animation effects **/

.easing {
    transition: 400ms ease;
    -webkit-transition: 400ms ease;
    -moz-transition: 400ms ease;
    -o-transition: 400ms ease;
}


/** Removing outline ***/

a,
a:hover,
a:link,
a:active,
a:focus {
    outline: none;
    text-decoration: none
}


/*** Social Media icons ***/

.social-media a.you-icon {
    color: #bb0000;
}

.social-media span.ai-font-linkedin {
    color: #007bb6;
}

.social-media a.insta-icon {
    color: #bc2a8d;
}

.social-media a.fb-icon {
    color: #3b5998;
}

ul.social-media {
    font-size: 18px;
}

.social-media-wrap {
    display: block;
    width: 100%;
}

ul.social-media > li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}

[placeholder]:focus::-webkit-input-placeholder {
    transition: all 0.2s linear;
    transform: translate(10px, 0);
    opacity: 0;
    color: inherit;
}

input[type=text]:focus::-webkit-input-placeholder {
    color: inherit;
}

textarea {
    overflow-x: hidden;
}

a:hover,
a:visited,
select,
a:link,
a:visited {
    border: none;
    outline: none;
}


/*** Contact Informations ***/

.client-contact-wrap {
    display: block;
    width: 100%;
}

ul.contact-info {
    color: #fff;
    font-family: 'Verdana', sans-serif;
    letter-spacing: .05em;
    font-weight: 700;
}

ul.contact-info li:last-child {
    margin-right: 0;
}

ul.contact-info li a {
    color: inherit;
    transition: 400ms ease;
    -webkit-transition: 400ms ease;
    -moz-transition: 400ms ease;
    -o-transition: 400ms ease;
}

ul.contact-info li a:hover {
    opacity: .6;
}

ul.contact-info span.info-label {
    margin-right: 10px;
    font-weight: 300;
    text-transform: lowercase;
    font-size: 16px;
    letter-spacing: 0;
}


/*** HP Slideshow ***/

.slideshow-wrap {
    position: relative;
    box-shadow: 0 -8px 50px 0px #000;
}

.section-1 {
    margin-bottom: 45px;
}


/*** CTA Style ***/

section.section-2 {
    margin-bottom: 55px;
}

.cta-wrap a.btn-wrap {
    display: block;
    max-width: 275px;
    margin: 0 auto;
    background: #3e220d;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 250px;
}

.cta-wrap a.btn-wrap .icon-wrap {
    max-width: 160px;
    display: block;
    margin: 0 auto;
    padding-bottom: 25px;
    position: relative;
    min-height: 105px;
}

.cta-wrap a.btn-wrap .icon-wrap img.cta-normal {
    display: block;
    margin: 0 auto;
    opacity: 1;
}

.cta-wrap a.btn-wrap .icon-wrap img.cta-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    opacity: 0;
    transform: scale(1.1);
}

.cta-wrap a.btn-wrap .cta-holder img {
    /* max-width:77px; */
    width: 77px;
}


/* .cta-wrap a.btn-wrap:hover .icon-wrap img.cta-hover {
        opacity:  1;
        transform: scale(1.15);
    }

    .cta-wrap a.btn-wrap:hover .icon-wrap img.cta-normal {
        opacity:  0;
    }*/

.cta-wrap a.btn-wrap:hover .cta-holder {
    transform: scale(1.15);
}

.cta-wrap a.btn-wrap:hover img.cta-normal {
    opacity: 0;
}

.cta-wrap a.btn-wrap:hover img.cta-hover {
    opacity: 1;
}

.cta-warp.hp-cta.title-wrap {
    text-align: center;
    display: block;
    width: 100%;
}

.cta-wrap .title-wrap {
    display: block;
    width: 100%;
    letter-spacing: 0;
    line-height: 30px;
    color: #fff;
    font-family: 'Verdana', sans-serif;
    text-align: center;
}

.cta-wrap a.btn-wrap:hover .icon-wrap img.cta-hover.cta-last {
    /* top: -15px; */
}

a.btn-wrap:hover .title-wrap {
    text-shadow: 0px 0px 10px white;
    -webkit-text-shadow: 0px 0px 10px white;
    -moz-text-shadow: 0px 0px 10px white;
    -o-text-shadow: 0px 0px 10px white;
}

.cta-wrap .title-wrap span.sub-title {
    font-size: 20px;
    display: block;
    width: 100%;
    font-weight: 200;
}

.cta-wrap .title-wrap span.main-title {
    font-size: 30px;
    font-weight: 600;
}

.divider {
    display: block;
    max-width: 1055px;
    height: 1px;
    background: #ccc;
    margin-top: 45px;
    margin-left: auto;
    margin-right: auto;
}

#content .designation-wrapper {}

#content .designation-cell {
    border-top: 1px dotted #3e220d;
    padding: 30px 0 20px;
}

#content .designation-cell:first-child {
    border-top: 0px dotted #3e220d;
}


/*** Contact Form ***/

section.section-3 {
    margin-bottom: 100px;
}

.section-title h2 {
    font-family: 'Verdana', sans-serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    color: #3e220d;
    text-transform: lowercase;
}

.hp-contact-us .section-title h2 {
    text-align: center;
    margin-bottom: 25px;
}

    .hp-contact-us div.wpcf7-response-output {
        text-align: center;
    }

    .c-form-group {
        width: 100%;
        display: block;
        margin-bottom: 5px;
    }

    .c-form-group:nth-last-child(2) {
        text-align: center;
    }

        .c-form-group span {
            display: block;
        }


.c-form-control {
    width: 100%;
    border: 5px solid #d9d9d9;
    padding: 12px;
    text-transform: lowercase;
    font-family: 'Verdana', sans-serif;
    font-size: 14px;
    color: #6b6b6b;
}

.c-form-control::placeholder {
    color: #6b6b6b;
}

input.btn-control:hover {
    background: #666;
}

input.btn-control {
    max-width: 150px;
    width: 100%;
    background: #3e220d;
    color: #fff;
    font-size: 20px;
    display: block;
    margin: 0 auto;
    border: 0;
    padding: 12px 0;
    font-weight: 600;
    transition: 400ms ease;
}

textarea.c-form-control {
    max-height: 135px;
}


/*** Welcome Style ***/

.hp-welcome .section-title {
    margin-bottom: 40px;
}

.agent-photo-wrap img {
    display: block;
    margin: 0 auto;
}

.agent-photo-wrap img {
    display: block;
    margin: 0 auto;
}

.hp-welcome .content p {
    color: #545454;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 24px;
    margin-bottom: 30px;
}

.w-signature img {
    display: block;
    margin-right: auto;
}


/*** Testimonials ***/

section.section-5 {
    background-image: url(images/testimonial-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.testimonial-wrap {
    padding-top: 110px;
    padding-bottom: 110px;
    position: relative;
    z-index: 10;
    font-size: 0;
}

.testimonial-wrap:before {
    content: '';
    display: inline-block;
    width: 0;
    height: 100%;
    vertical-align: middle;
}

.testi-inner-wrap {
    display: inline-block;
    width: 100%;
    vertical-align: middle;
}

.testimonial-wrap .section-title {
    text-align: center;
    margin-bottom: 60px;
}

section.section-5:before {
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .82);
    position: absolute;
    z-index: 1;
}

section.section-5:after {
    background-image: url(images/testimonial-bg-overlay.png);
    width: 100%;
    height: 300px;
    position: absolute;
    content: '';
    top: -90px;
    background-repeat: no-repeat;
}

.testimonial-wrap .testi-item {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    text-align: center;
    line-height: 24px;
    color: #545454;
}

.testimonial-wrap .testi-item .auth-name {
    font-weight: bold;
    margin-top: 15px;
    text-transform: capitalize;
}

.testi-wrap {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
}

.testi-wrap button.slick-arrow {
    color: #9b6f4e;
    position: absolute;
    top: 0;
    background: none;
    border: none;
    font-size: 40px;
    transition: 400ms ease;
    -webkit-transition: 400ms ease;
    -moz-transition: 400ms ease;
    -o-transition: 400ms ease;
}

.testi-wrap button.slick-arrow:hover {
    color: #555;
}

.testi-wrap button.slick-next {
    right: -15%;
}

.testi-wrap button.slick-prev {
    left: -15%;
}


/**** Footer Styles ****/

footer.footer {
    background: #3e220d;
    font-size: 0;
}

.footer-col-sm {
    width: 28%;
    display: inline-block;
    vertical-align: top;
    padding-left: 40px;
}

.footer-col-md {
    width: 28%;
    display: inline-block;
    vertical-align: top;
    padding: 20px 0;
}

.footer-col-lg {
    width: 44%;
    display: inline-block;
    vertical-align: top;
    padding: 20px 0;
}

footer .footernav {
    font-size: 0;
    color: #fff;
    font-weight: 200;
    text-align: left;
    text-transform: lowercase;
}

footer .footernav li {
    display: inline-block;
    width: 50%;
}

footer .footernav li.menu-item-home {
    display: none;
}

footer .footernav > li > a {
    color: inherit;
    font-size: 16px;
    transition: 400ms ease;
    -webkit-transition: 400ms ease;
    -moz-transition: 400ms ease;
    -o-transition: 400ms ease;
}

footer .footernav > li > a:hover {
    color: #666;
}

footer h3.nav-title {
    font-size: 20px;
    text-transform: lowercase;
    color: #fff;
    text-align: left;
    font-weight: 600;
    font-family: 'Verdana', sans-serif;
    margin-bottom: 15px;
    margin-left: 18%;
}

.footer-content {
    padding: 35px 0;
    box-shadow: 0px 0px 15px #000000;
    -moz-box-shadow: 0px 0px 15px #000000;
    -webkit-box-shadow: 0px 0px 15px #000000;
    -o-box-shadow: 0px 0px 15px #000000;
}

footer .logo-wrap img {
    display: block;
    margin: 0 auto;
}

footer ul.contact-info {
    text-align: left;
    font-size: 16px;
}

footer ul.contact-info li {
    display: block;
}

footer ul.social-media {
    text-align: left;
}

footer ul.social-media > li:first-child {
    margin-left: 0;
}

ul.social-media > li > a:hover {
    opacity: .6;
    transition: 400ms ease;
}

footer .copyright {
    padding: 10px 0;
}

footer .copyright-wrap {
    font-size: 12px;
    color: #777777;
    text-align: center;
    font-family: 'Verdana', sans-serif;
    margin-bottom: 5px;
}

footer .copyright-wrap a {
    color: inherit;
}

footer .copyright-wrap a:hover {
    color: #fff;
}

footer .secondary-logo {
    text-align: center;
    font-size: 19px;
    color: #777777;
}

.footer-dre span {
    font-size: 16px;
    color: #fff;
    margin-top: 20px;
    display: block;
}

/*******************************************************
 *
 * 3. IP Styles
 *
 *******************************************************/


/* Adjust minimum height of page area */

#content-sidebar,
#content-full {
    min-height: 500px;
    margin-top: 150px;
}


/** Adjust width of content columns **/

#content-sidebar #content {
    width: 75%;
    padding-right: 30px;
}

#content-full #content {
    width: 100%;
}

#content-sidebar #content,
#content-full #content {
    font-size: 12px;
}

#content h3 {
    font-family: 'Verdana', sans-serif;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    color: #3e220d;
    margin: 0;
}


/* Adjust width of sidebar */

.sidebar {
    width: 25%;
}


/* Adjust line height of page elements */

#content h4,
aside h4,
#content p,
aside p,
#content blockquote,
aside blockquote,
#content ul,
aside ul,
#content fieldset,
aside fieldset,
#content form,
aside form,
#content ol,
aside ol,
#content dl,
aside dl,
#content dir,
aside dir,
#content menu,
aside menu {
    line-height: 1.7
}


/* Style post/page main headings (h1) */

#content .entry-title {
    font-family: 'Verdana', sans-serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    color: #3e220d;
    text-transform: lowercase;
}

/*** Style post/page content ***/
#content .entry p{
    color: #000
}


/* Style category/archive/etc main headings (h1) */

#content .archive-title {
    font-family: 'Verdana', sans-serif;
    font-size: 40px;
    line-height: 1;
    font-weight: 600;
    color: #3e220d;
    text-transform: lowercase;
}


/* Styles for category/archive/search/etc subheadings (h2) */

#content .archive-subtitle {}



#inner-page-wrapper{
    z-index: initial;
}


/*** Post page Listings ***/

.entry #content-listings .list-wrapper {
    margin-bottom: 20px;
}

/**** Sidebar ****/

aside .section-title {
    text-align: center;
}

aside .cta-wrap a.btn-wrap {
    margin-bottom: 10px;
}

aside .cta-wrap a.btn-wrap {
    margin-bottom: 10px;
    font-size: 0;
    padding: 15px;
    max-width: none;
    min-height: initial;
}

aside .cta-wrap a.btn-wrap .icon-wrap {
    display: inline-block;
    width: 30%;
    padding: 0;
    vertical-align: middle;
    min-height: initial;
}

aside .cta-wrap .title-wrap {
    width: 51%;
    vertical-align: middle;
    display: inline-block;
    text-align: left;
    padding-left: 10px;
}

aside .cta-holder {
    text-align: center;
}

aside .cta-wrap .title-wrap span.main-title {
    font-size: 16px;
}

aside .cta-wrap a.btn-wrap .icon-wrap img.cta-hover {
    top: 0;
}

aside input.btn-control {
    max-width: 100%;
}

.page-id-22 #content img[class*="align"] {
    max-width: 100%;
}

#content .comm {
    padding: 5px;
}


/**** Agent Page ***/

.entry-content .agent-holder .agent-contact-name a {
    color: #3e220d;
    transition: 400ms ease;
    -moz-transition: 400ms ease;
    -webkit-transition: 400ms ease;
    -o-transition: 400ms ease;
    text-transform: lowercase;
}

.entry-content .agent-holder .agent-contact-name a:hover {
    opacity: .6;
}

.entry-content .agent-holder .render-all-description a {
    display: block;
    font-size: 15px;
    color: #3e220d;
    transition: 400ms ease;
    -webkit-transition: 400ms ease;
    -moz-transition: 400ms ease;
    -o-transition: 400ms ease;
}

#content .contact-address {
    margin-bottom: 20px;
}

#content .contact-address span {
    font-size: 18px;
    display: inline-block;
    vertical-align: middle
}

#content .contact-address span:first-child {
    font-size: 22px;
    margin: 0 5px 0 0;
}

.header-left .footer-address {
    display: none;
}
.header-left .footer-dre{
  display: none;
}

.footer-address {
    font-size: 0;
    margin: 15px 0 0;
}

.footer-address span {
    font-size: 16px;
    display: inline-block;
    vertical-align: top;
    color: #fff;
    line-height: 20px;
    font-weight: 300;
    width: 90%;
}

.footer-address span:first-child {
    width: 10%;
    text-align: center;
    margin: 10px 0 0;
    font-weight: 400;
}

.entry-content .agent-holder .render-all-description a:hover {
    opacity: .6;
}

.page-id-89 .agent-holder .agent-contact-name {
    border-bottom: 2px solid #3e220d;
	text-align: right;
}

.page-id-89 .agent-contact-position {
    font-family: "Verdana";
    font-size: 18px;
    text-transform: lowercase;
    text-align: right;
    color: #3e220d;
    letter-spacing: 3px;
}

.aios-mortgage-calculator-standalone-reset,
.aios-mortgage-calculator-standalone-reset:hover,
.aios-mortgage-calculator-standalone-calculate,
.aios-mortgage-calculator-standalone-calculate:hover {
    background: #3e220d !important;
}

#content ul.magazine-features {
    margin: 0;
    list-style: none;
    font-size: 0;
    text-align: left;
}

#content ul.magazine-features li {
    display: inline-block;
    margin: 0 .5% 10px;
    border: 1px solid #3e220d;
    width: 23%;
    min-width: 185px;
}

#content ul.magazine-features li a {
    outline: 0;
}

#content ul.magazine-features li a img {
    opacity: 1;
    width: 100%;
    max-width: 100%;
    transition: all ease .8s;
    -moz-transition: all ease .8s;
    -webkit-transition: all ease .8s;
}

#content ul.magazine-features li:hover a img {
    opacity: .4s;
    transition: all ease .8s;
    -moz-transition: all ease .8s;
    -webkit-transition: all ease .8s;
}


/* MEDIA QUERIES ARE AUTOMATICALLY REMOVED FROM THIS FILE, they must be placed in style-media-queries.css */

p#breadcrumbs {
    text-transform: lowercase;
}

.page-id-8 #content .entry h3,
.page-id-14 #content .entry h3,
.page-id-15 #content .entry h3 {
    text-transform: lowercase;
}

/*** Mortage Calculator page ***/
.entry span[class^="aios-mortgage-calculator"],
.entry div[class^="aios-mortgage-calculator"] input,
.entry div[class^="aios-mortgage-calculator"] label {
    color: #000;
}

.entry div[class^="aios-mortgage-calculator"] input{
    border-color: #969696;
    padding-left:5px;
    padding-right: 5px;
}


/*** 404 Page listings ***/

#content .error-page-cf-wrap .wpcf7-response-output {
    text-align: center;
}


.comm-gallery{
    margin:-20px 0 0 0;
}

.sidebar div.wpcf7-response-output {
    margin: 2em 0 1em;
    text-align: center;
}

body .agent-holder .attachment-agent-image {
    width: 35%;
    float: left;
}

body .agent-holder .agent-contacts {
    width: 65%;
}

body .agent-holder .agent-contacts-heading {
    border-bottom: 0 none;
}

body .agent-multi-list {
    border-top: 0 none;
}

.agent-multi-list h2.entry-title {
    display: none;
}

ul#ihf-search-location-tabs {
    margin-left: 0;
}

ul.chosen-results {
    margin-left: 0px !important;
}

ul#ihf-detail-extrainfotabs {
    margin-left: 0;
}

ul#ihf-detail-extrainfotabs {
    margin-left: 0;
}

.footer-content ul.contact-info li:first-child {
    font-weight: normal;
}



.opt {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    margin-bottom: 20px;
}

.opt .iagree {
    width: 20px;
    height: 20px;
}

.opt .iagree .wpcf7-list-item-label {
    font-size: 0;
}

.opt .iagree input {
    width: 20px;
    height: 20px;
    margin: 0;
}

.opt .wpcf7-list-item {
    margin: 0;
}

.opt-label {
    width: calc(100% - 30px);
    margin-left: 10px;
    font-size: 12px;
    line-height: 1.4;
}


.opt span.wpcf7-list-item-label {
    font-size: 0 !important;
}






.opt-label.ihf {
    display: block !important;
    padding: 0 15px;
    font-size: 14px;
    width: 100%;
    margin: 0;
    clear: both;
    position: relative;
    padding-top: 12px;
}
