header{  
    background-color: var(--brand-white);
    box-shadow: 0 0px 20px rgba(0,0,0,0.2);  
    height: 60px;
    z-index: +999;    
    position: fixed;   
    top: 0;  
    left:0;
    right:0;
    width: 100%;
    margin:0;
}  

/*__Navigation___________________________________*/ 
header > nav{  
    display: flex;  
    font-size: 20px; 
    margin: 0;
}  

.nav-logo > a > img{
    width: 140px;
    margin-top: 5px;
    margin-left: 10px;
} 


.nav-content{  
    display: none;
    width: 100%;
    padding-right: 20px;
} 

.nav-content > ul > li{
    margin: 0 5px;
    padding: 0 10px;
    padding-bottom: 5px;
    border-radius: 15px; 
    font-weight: bold;
    text-align: center;
} 

.nav-content > ul > li:hover{
    background-color: #C5CED4;
}

.active-navLink-js{
    background-color: #C5CED4;
}

.nav-content > ul{
    display: flex;
}  

.tc-property-dsk{
    font-weight: bold;
    margin-left: 10px;
    background-color: #C5CED4;
    padding: 5px 10px;  
    border-radius: 15px; 
}

.tc-property-dsk-box1{  
    display: flex;
}

.tc-arrow-dsk{
    margin-left: 20px;  
} 

.tc-arrow-dsk > img{
    width: 20px;
    height: 20px; 
}

#tc-property-dsk-box2{
    display: none;  
    padding: 10px;
    padding-top: 0;
}

#tc-property-dsk-box2 > li{  
    margin: 10px;
    font-size: 16px;
}

.nav-content-mobile{
    display: none;
    min-height: 100vh;
    width: 100%;
    position: absolute;
    background-color: rgb(255, 255, 255); 
    margin: 0;
    text-align: left;
    padding: 0;
    font-size: 18px;
    font-weight: bold;
    top:55px;
}

.nav-contact-prop{
    display: none; 
}

.nav-contact-prop > a > img{
    width: 130px;
    margin-top: 5px;
    margin-left: 10px;
}

.nav-contact-prop > div{ 
    width: 100%;
    display: flex;
    align-items: center; 
    justify-content: flex-end;
    padding-right: 20px;
}

.nav-content-mobile > div > ul > li{
    margin: 7px 10px;
    padding: 5px 20px;
    border-radius: 15px; 
}

.nav-content-mobile > div > ul > li:hover{
    background-color: #C5CED4;
} 

.tc-property{ 
    padding: 0 20px;
    padding-left: 30px;
}

.tc-property-box1{
    display: flex; 
}

#tc-property-box2{
    display: flex; 
    display: none;
    font-size: 22px;
    padding-left: 20px;
}

#tc-property-box2 > li{
    margin: 10px 0;
}

.tc-arrow{
    width:50%;
    display: flex;
    align-items: center; 
    justify-content: flex-end; 
} 

.tc-arrow > img{
    width: 25px;
    height: 25px; 
}

.hamburger-wrap{
    margin-right: 20px; 
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#hamburger{
    width: 25px;
}
 

/*____________FOOTER AREA________________________*/

footer{
    background-color: black;
    color: #C2C2C2;
    margin: 0;
    margin-top: 0.3px;
    padding-top: 30px; 
}

.copyRight{   
    height: auto;
    padding: 10px 20px;
    margin-bottom: 20px;
    text-align: left;   
} 

.footer-links{
    display: flex;
}

.footer-links > ul{
    width: 50%;
}

.footer-links > ul > h6{
    margin: 0;
    margin-bottom: 10px; 
} 

.footer-links > ul > a > li{ 
    padding: 7px 0;
} 

.footer-brand-wrapper{  
    padding: 0 20px;
    padding-left: 0;
    display: flex; 
    margin: 15px 0;
}

.footer-brand{
    text-align: left;
    width: auto;
}

.footer-brand > img{ 
    width: 140px;
}

.footer-brand-social-box{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    text-align: right;
} 

.mailWrap{
    padding: 0 20px;
}

.mailWrap > p{
    margin-bottom: 10px;
    font-size: 17px;
} 

/*____________FOOTER CLOSED_______________________*/

 

/*____________Tablet Response____________*/
@media(min-width: 770px){ 
    footer{ 
        margin: 0; 
        margin-top: 1px;
        font-size: 20px;
    }

    .footer-links > ul > h6{ 
        font-size: 26px;
    }

    .footer-content-section{
        display: flex;
        margin-bottom: 30px;
    }

    .footer-links, .footer-con-box2{
        width: 50%;
    }

    .copyRight{    
        text-align: center;  
    }  

    .mailWrap > p{ 
        font-size: 20px;
    }


    /*__Navigation_______*/   
    .nav-content{ 
        display: flex; 
        align-items: center;
        justify-content: flex-end;
    } 
    
    .nav-content-mobile{
        display: none;
    }
    
    .hamburger-wrap{
        display: none;
    }
} 
  
/*DeskTop Response*/    
@media(min-width: 1030px){   
    
}   