/* Contact Section */
.contactSec {
    display: flex;
    align-items: stretch;
    min-height: 92vh;
    background-color: #f9f9f7;
}
.contactSec> div {
    width: 50%;
}
.search-icon{
    display: none;
}
/* Content Side */
.contactSec .aboutContent {
    padding: 100px 60px 10px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.aboutContent h2 {
        font-size: 19px;
    font-weight: 400;
    margin-bottom: 15px;
    letter-spacing: 3px;
    position: relative;
    padding-top: 20px;
    color: #7f7f7f;
}
.search-icon{
    color: #000;
}

.ctBox {
    margin-bottom: 25px;
/*    padding-left: 20px;
    border-left: 2px solid #e6e6e6;
    transition: border-color 0.3s ease;*/
}

.ctBox:hover {
    border-left-color: #c0a56a;
}

.ctBox p:first-child {
    font-size: 13px;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 0;
    color: #7f7f7f;
    text-transform: uppercase;
}
.ctBox i.fa-phone {
transform: rotate(90deg);
}
.ctBox p {
    font-size: 13px;
    font-weight: 400;
    color: #7f7f7f;
    line-height: 20px;
}

.ctBox a {
    display: inline-block;
    color: #777;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-top: 5px;
}

.ctBox a:hover {
    color: #c0a56a;
}

.ctBox i {
    margin-right: 10px;
    color: #c0a56a;
    width: 16px;
    display: none;
}

/* Image Side */
.contactSec .aboutImg {
    position: relative;
}

.contactSec .aboutImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    display: block;
}

.aboutImg:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(249, 249, 247, 0.0), rgba(249, 249, 247, 0.4));
    z-index: 1;
}

.sticky .menu-toggle{
    color: #000;
}
.logo img.logoWhite,
.sticky .logo img.logoWhite {
display: none;
}
.logo img.grayLogo,
.sticky .logo img.grayLogo{
display: block;
}

.menu-toggle {
    display: inline-block;
    color: #fff;
    font-size: 21px;
    line-height: 9px;
    cursor: pointer;
}
.search-icon{
    display: none;
}
.header nav {
    display: none;
}
.header nav ul {
    justify-content: flex-end;
}

/* Responsive Design */
@media only screen and (max-width: 1024px) {
    .contactSec .aboutContent {
        padding: 80px 40px;
    }
}

@media only screen and (max-width: 767px) {
    .contactSec {
        flex-direction: column-reverse;
    }
    
    .contactSec> div {
        width: 100%;
    }
    
    .contactSec .aboutContent {
        padding: 60px 25px;
    }
    
    .contactSec .aboutImg img {
        height: auto;
    }
    
    .aboutImg:before {
        background: linear-gradient(to bottom, rgba(249, 249, 247, 0.2), rgba(249, 249, 247, 0.9));
    }
    .header nav ul li a {
        color: #fff !important;
        text-shadow: unset;
    }
}