@charset "utf-8";
/* CSS Document */

* html {
    margin: 0;
    padding: 0;
}
:root {
	--wj-brown:#4e4c3f;
	--wj-red:#a71d22;
	--white:#fff;
	--wj-red-hl:#ff9905; /*hightlighted */
	--wj-red-drk:#b52201; /*darkened */
	--wj-background: linear-gradient(180deg, rgba(193,194,186,.5) 0%, rgba(255,255,255,1) 60%) no-repeat;

	--max-width:calc(1500px - 8rem);
}


body {
    background: var(--wj-background) #fff;
    color: var(--wj-brown); /*WM black7*/
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    margin: 0;
    padding: 0;
}
a {
    /*transition:all ease .3s;*/
    text-decoration: none;
    color: var(--wj-red);
}
a:hover {
    text-decoration: underline;
    color: var(--wj-red);
}
p {
    margin: 0 0 1rem;
    line-height: 1.5;
    font-size: 1rem;
}
p.bold{
	font-weight: bold;
    margin: 0 0;
}
ul {
   margin: 0 auto 1rem;
   font-size: 1rem;
}
h1 {
    color: var(--wj-brown);
    font-weight: 900;
    font-size: 1.5rem;
	letter-spacing: .125rem;
    margin: 0 0 .35em;
    text-transform: uppercase;
}
h2 {
    color: var(--wj-brown);
    font-weight: 500;
    font-size: 1.5em;
	line-height: 1.5;
    margin: 0 0 .5em;
    text-transform: capitalize;
}
h3 {
    color: var(--wj-red);/*wm orange color*/
    font-size: 1.2em;
    margin: 0 0 .5rem;
    line-height: 1.5;

    font-weight: 500;/*	text-transform:uppercase;
*/
}
h4 {
    font-size: 1.35em;
    margin: 0 0 .5em;
    font-weight: 400;
}
h5 {
    font-size: 1.15em;
    margin: 0 0 .5em;
    font-weight: 400;
}

a.button{
    display: inline-block;
    margin: 0 0 1vw;
    background: #f7f7f7;
    padding: 1em 1.25rem;

    font-weight: bold;
    transition: .25s ease all;
}
a.button:hover{
    text-decoration: none;
    background: var(--wj-red);
    color: var(--white);;
}


/*WRAPPERS--------------------*/
.wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}
.wrapper-width {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 0 4rem; /*now this is fixed padding. used to be 4%*/
	max-width:  var(--max-width);
}
/*HEADER--------------------*/
header {
    position: relative;
    height: 110px;
    margin-top: 0;
	margin-bottom: 1rem;
    padding:0;
    z-index: 100;

    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	align-content: center;
}
header .logo-area {
	width: 40%;
	display: flex;
	flex-flow: column;
	height: 110px;
}
header .logo-area a.wenjie-logo {/* logo wrapper a tag*/

    height: 80%;
    padding: 0;
    margin: 0 ;
	

}
header .logo-area a.wenjie-logo img{
    height:90%;
}

header .logo-area span.description{
	font-weight: 400;
	font-size: .75rem;
	letter-spacing: .05rem;
	
}
/*--------------------------------------------------------------
MENU
--------------------------------------------------------------*/
header .main-navigation {/*General Menu Area */
    position: relative;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
}

header .main-navigation {
}
header .main-navigation ul.top_menu { /*Main Cat Menu Area */
    position: relative;

	font-size: .95rem;
    list-style: none;
    margin: 0;
    padding: 0;

    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    z-index: 1001;


}
header .main-navigation li { /*Main Cat Menu List/Buttons */

    display: block;
    text-transform: uppercase;
    margin: 0 0 0 .5rem;
    width: auto;
	


}
header .main-navigation li:hover > a{
/*
    background: var(--wj-red);
*/
    color: var(--wj-red);

}

header .main-navigation a {
    display: block;
    text-decoration: none;
    padding: .5em .75em;
    line-height: 1.3em;
    color: #3c3835;
	font-weight:400;
	letter-spacing: .125rem;
	transition: all .25s ease;

}

/*--------------------------------------------------------------
SUB MENU
--------------------------------------------------------------*/

.main-navigation ul ul {/*first level submenu area */
    position: absolute;
    padding: 1em .75em;
    background: rgba(255,255,255,.97);
    display: none;
    left: 0;
    margin-top: 0;
    list-style: none;
    font-size: 1em;
    float: left;
    box-shadow: 0 1px 2px rgba(0,0,0,.3);
    border-top: 1px solid var(--wj-red);
    width: 100%;
    /*column division for submenu items. Dude i figured it out!!!*/

    -moz-column-count: 3;
    -moz-column-width: 33.33%;
    -moz-column-gap: 1em;
    -moz-column-rule: 1px solid #F3F3EC;
    -webkit-column-count: 3;
    -webkit-column-width: 33.33%;
    -webkit-column-gap: 1em;
    -webkit-column-rule: 1px solid #F3F3EC;
    column-count: 3;
    column-width: 33.33%;
    column-gap: 1em;
    column-rule: 1px solid #F3F3EC;
}


.main-navigation ul ul li {
    /*submenu list items */
    text-transform: capitalize;
    text-align: left;
    float: none;
    padding: 0;
    margin: 0;
}
.main-navigation ul ul li:last-child {
    border-bottom: none;
}
.main-navigation ul ul a {
    /*submenu hyperlinks */

    text-decoration: none;
    transition: all .5s ease;
    padding: .75em 1em;
    margin: 0;
}

.main-navigation ul ul a:hover {/*sub menu li hovering backgrounds*/
/*
    background: var(--wj-red);
*/
	font-weight: 500;
/*    color: var(--white);*/
}
.main-navigation ul li:hover > ul {
    display: block;
}
.main-navigation .current_page_item > a, .main-navigation .current-menu-item > a {
    color: var(--wj-red);
	font-weight: 900;
/*    background: var(--wj-red);*/
}
.main-navigation .current_page_item > a:hover, .main-navigation .current-menu-item > a:hover {
    color: var(--wj-brown);
 /*   background: var(--white);*/
}
.main-navigation .current_page_ancestor > a { /*highlight style of the parent button when it's on the child's page
	border-radius:6px;
/*	border:1px solid var(--wj-red);
*/
    background: url(../img/bg-button-arrow.png) top center no-repeat;
    color: var(--wj-red);
}
.main-navigation .current-menu-ancestor > a { /*this is to use with the "Current Menu Item" plugin*/
    background: url(../img/bg-button-arrow.png) top center no-repeat;
    color: var(--wj-red);
}
.main-navigation ul ul .current_page_parent, .main-navigation .current_page_parent .current_page_item > a {
    background: var(--wj-red);
    color: var(--white);
}
.current-menu-item a {
    /*this is to shutoff something causing current item's submenu LIs to have dark background from mmenu's css.*/
    background: none;
}
/*------------------------------------------------------
For lack of IE's odd column support,
i have to add this empty bottom margin to certain last-childs.
------------------------------------------------------*/


.main-navigation ul li:nth-child(2) ul li:last-child {
  	margin-bottom:6em;
  }
.main-navigation ul li:nth-child(3) ul li:last-child {
/*     margin-bottom: 6em;*/
}
.main-navigation ul li:nth-child(5) ul li:last-child {
}
.main-navigation ul li:nth-child(6) ul li:last-child { /*Contact menu*/
/*    margin-bottom: 3em;*/
}

/*--------------------------------------------------------------
Slick SLIDER
--------------------------------------------------------------*/
.slick-slides{
    position: relative;
	max-width:var(--max-width);
	margin: 0 auto;
	
}

.slick-slides div{
    width: 100%;
}


.slick-slides .static-image img {
    width: 100%;

}
.slick-slides .static-image a {
    width: 100%;
}

.slick-slides i{
    display: block;
    text-align: center;
    width: 100%;
    font-size: 7em;
    transition: all ease .25s;
    text-decoration: none;
    color: rgba(0,0,0,.05); /*this transitions from opaque white to 0 opacity*/
    cursor: pointer;
}

.slick-slides i:hover {
    color: rgba(255,255,255,1);
}

.slick-slides i.fa-angle-left{
    left: 0;
    top: 40%;
    position: absolute;
    bottom: 0;
    width: 10vw;
    height: 8vh;
        z-index: 900;

}
.slick-slides i.fa-angle-right{
    right: 0;
    top: 40%;
    position: absolute;
    bottom: 0;
    width: 10vw;
    height: 8vh;


}


.slick-dotted
{
    margin-bottom: 20px;
}

.slick-dots
{
    position: absolute;
    bottom: -20px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;
    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 2vh;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}



/*--------------------------------------------------------------
 Home Page Video Slider
--------------------------------------------------------------*/

h1.homepage{
	margin-left: -1000px;
	font-size: 1px;
}

.video-clip-area {
    position: relative;

}

.video-clip-area .video-text {
    position: absolute;
    color: var(--white);
    padding: 2rem;
    text-align: center;
    top: 30%;
    width: 100%;
    z-index: 100;
}
 .video-clip-area .video-text a{
    color: var(--white);
}


.video-clip-area .video-text p.video-title {
    color: var(--white);
    font-size: 5vw;
    font-weight: 500;
    line-height: 1;
    margin-bottom: .75rem;
    padding: 0;



}
.video-clip-area .video-text p {
    color: var(--white);
    font-size:  2vw;
    margin-bottom: .5rem;
    line-height: 1.5;

}


.video-clip-area video.the-video{
    margin:0;
    padding: 0;
    width: 100%;


}



/*--------------------------------------------------------------
PAGE MAIN IMAGE
--------------------------------------------------------------*/

.page-image {
    background: none;
		max-width: var(--max-width);
	margin: 0 auto;
}
.page-image img {
    width: 100%;

    height: auto;
}
/*--------------------------------------------------------------
PAGE CONTENT
--------------------------------------------------------------*/

.page-content {
    margin: 1rem auto 0;

}
.sideshadow::before {
    content: "";
    background: url(../img/bg-page-content-shadow-left.png) no-repeat;
    background-size: 10px 80%;
    position: absolute;
    top: 0;
    left: -10px;
    width: 10px;
    height: 80%;
}
.sideshadow::after {
    content: "";
    background: url(../img/bg-page-content-shadow-right.png) no-repeat;
    background-size: 10px 80%;
    position: absolute;
    top: 0;
    right: -10px;
    width: 10px;
    height: 80%;
}
.page-content ul {
	margin-left: 1.5em;
	padding: 0;	
	
}
.page-content ul.column-2 {
	margin-left: 1.5em;
	padding: 0;	
	column-count: 2;
	column-gap: 2em;


}
.page-content ul li {
    margin: 0 0 .5em;
    line-height: 1.5;
}
.extra-content {
    border-top: 1px dashed #F3F3EC;
    padding-top: 2em;
    margin-top: 2em;
}
.extra-content h3 {
    color: #3c3835;
}
.extra-content p, .extra-content ul {
}
.extra-content ul li {
    margin-bottom: .5em;
}

ul#menu-services {
	list-style:none;
	margin:0 0 1em;
	padding:0;
	width: 100%;
    justify-content:flex-start;
	display:flex;
    flex-wrap: wrap;

}

ul#menu-services li {
    background: #f7f7f7;
    color: #3c3835;
    box-sizing: border-box;

    width: 32.66%; /*amount of taking out the last right 1% margin out*/
    margin: 0 1%  1% 0;
	padding:0;
    transition: ease .5s all;
}

ul#menu-services li:nth-child(3n) {
    margin-right: 0;
}

ul#menu-services li a {
    display: block;
	margin:0;
    padding: 1em 1.25rem;
	text-decoration:none;
    color: #3c3835;
    font-weight: bold;
}

ul#menu-services li:hover{
    background: var(--wj-red);
    color: var(--white);
}
ul#menu-services li:hover a {
    color: var(--white);

}



/*--------------------------------------------------------------
For Port Folio Page
--------------------------------------------------------------*/
.pf-wrapper{
    margin-top: 1em;
}

.grid{
	display: flex;
	justify-content: space-between;
}
.grid .grid-col{
	flex: 1;
	padding: 0 .5rem;
}
.grid .grid-col:first-child{
	padding-left: 0;
}
.grid .grid-col:last-child{
	padding-right: 0;
}

.grid-item{
	margin-bottom: 3rem;
}
.grid-item h3{
	position: absolute;
	color: var(--white);
	padding: .5rem 1rem;
	opacity: 0;
	transition: .5s all ease;
	text-shadow: 0 0 10px rgba(0,0,0,.8);
}

.grid-item:hover h3{
	opacity: 1;
	
}
.grid-item a img{
	width:100%;
}





.grid-col--2, .grid-col--3{
	display: none;
}

@media (min-width: 750px){
	
	.grid-col--2, .grid-col--3{
		display: block;
	}
	
}


.projects-list-area {
/*
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
    margin: 0;
*/

}
.projects-list-area .each-projects {
/*
    height: 300px;
    padding: 2%;

    margin-bottom: 1vw;
    text-align: center;
    justify-content: center;
    flex-wrap: wrap;
    background-position: center;
    position: relative;
    top: 0%;
    left: 0%;
   overflow: hidden;*/
	
		float: left;
	width: 28.66%;
	    border: 1px solid red;

	
	
}


.projects-list-area .each-projects .background-img {
    position: absolute;
    background-size: cover;
    background-position: center;

    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    box-shadow: inset 0 0 522px 40px rgba(0,0,0,.8);
    transition: all .5s ease;

    opacity: .9;
    z-index: 7;
}
.projects-list-area .each-projects:hover .background-img {
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    box-shadow: inset 0 0 12px rgba(0,0,0,0);
}

.projects-list-area .each-projects a {
    display: block;
    position: absolute;

    top: 2%;
    left: 2%;
    width: 96%;
    padding: 0;
    height: 96%;

    color: var(--white);

    text-shadow: 0 2px 2px rgba(0,0,0,.5);
    text-decoration: none;
    transition: all ease .5s;
    text-align: center;

    z-index: 10;

}
.projects-list-area .each-projects a .prj-txt-wrapper{
    display: flex;
    width:100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.projects-list-area .each-projects a .prj-txt-wrapper h3 {
    margin-top: 1rem;
    font-size: 1.75em;
    font-weight: 500;
   transition: all ease .5s;

}
.projects-list-area .each-projects a .prj-txt-wrapper span.location {
    font-size: 1rem;
    margin-bottom: .5em;
    font-weight: 400;

    color: rgba(255,255,255,1);
    transition: all ease .5s;

}
.projects-list-area .each-projects a .prj-txt-wrapper ul.pf-category {
    list-style: none;
    text-transform: uppercase;
    font-size: .85rem;
    color: var(--wj-red);
    transition: all ease .5s;

    display: flex;
    margin: 0;
    padding: 0;


}
.projects-list-area .each-projects:hover a .prj-txt-wrapper,
.projects-list-area .each-projects:hover a .prj-txt-wrapper span.location,
.projects-list-area .each-projects:hover a .prj-txt-wrapper ul.pf-category{
    color: rgba(0,0,0,0);
    text-shadow: none;
}

.projects-list-area .each-projects a ul.pf-category li{
    margin-right:.5em;

}
.projects-list-area .each-projects a ul.pf-category li:after {
    content: ", ";

}
.projects-list-area .each-projects a ul.pf-category li:last-child{
    margin-right:0;
    content: "";
}
.projects-list-area .each-projects a ul.pf-category li:last-child:after{

    content: "";
}




/*-------------------------------------------------------------------------
Portfolio Individual Page - slider with Multiple images
--------------------------------------------------------------------------*/


.pf-slider-area-wrapper{
    margin: 0 auto 2rem;
    width: 100%;
    position: relative;

}
.pf-slider-area-wrapper ul {
    list-style: none;
    margin: 0 0;
    padding: 0;
}
.pf-slider-area-wrapper ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.pf-slider-area-wrapper img {
    width: 100%;
}



/*-------------------------------------------------------------------------
Portfolio Individual Page - when single project image
--------------------------------------------------------------------------*/

.pf-single-image-wrapper{
    width: 100%;
	max-width: var(--max-width);
	margin:0 auto;
}
.pf-single-image-wrapper img.project-image{
/*
    max-height: 800px;
*/
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: block;
}

.pf-single-image-wrapper img.portrait{

	height: 80vh; /*calc(80vh - 110px);*/
	width: auto;
	margin: 0 auto;
	display: block;
}





/*-------------------------------------------------------------------------
Portfolio Individual Page - Youtube Video
--------------------------------------------------------------------------*/


/*-------------------------------------------------------------------------
Portfolio Individual Page - Info area
--------------------------------------------------------------------------*/
h1.project-title{
    margin-bottom: .25em;
	font-size: 1rem;
	font-weight: 700;
}

span.location{
    font-size: 1.5rem;
    font-weight: 400;
    color: #3c3835;

}
span.location a{
    font-size: 1.5rem;
    font-weight: 400;
    color: #3c3835;

}
span.location a:hover{
    text-decoration: none;

}
.portfolio-info-area{
    margin-top: 1em;
    display: flex;
/*    flex-wrap: wrap;
*/    justify-content: space-between;

}
.portfolio-info-area h3{
    font-size: 1.4em;
    margin-bottom: .5em;
}
.portfolio-info-area ul{
    margin: 0 0 1em;
    padding: 0;

    list-style: none;

}


.page-content .tax_name{
	text-transform: uppercase;
	font-weight: bold;
	letter-spacing: .25rem;
}
.page-content .description{
    padding: 0 ;
    margin-bottom: 2em;
    text-align: justify;

}




.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    overflow: hidden;
    max-width: var(--max-width);
	margin:0 auto;
	
	}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	}

/*-------------------------------------------------------------------------
YOUTUBE VIDEO
--------------------------------------------------------------------------*/


.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 25px;
    height: 0;
}
.videoWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*-------------------------------------------------------------------------
Pagnation on Archive & Taxonomy list page
--------------------------------------------------------------------------*/
.paging-navigation{
	margin-top: 2em;
	margin-bottom: 2em;
	width: 100%;
}
.paging-navigation ul.page-numbers {

	display: flex;
	justify-content: center;

    margin: 0;
    padding: 0;

	width: 100%;
    font-size: 1.25em;
    font-weight: 400;
}

.paging-navigation li {
    display: inline-block;
}
a.page-numbers, span.page-numbers {
    padding: .5em .75em ;
    color:var(--wj-brown);
}
a:hover.page-numbers {
    color: var(--white);
    text-decoration: none;
	background:var(--wj-brown);
}
.paging-navigation .current {
    font-weight: bold;
    color: var(--white);
	background:var(--wj-brown);
	animation: none;
}


ul.sm-icons{
	list-style:none;
	font-size:1em;
	padding:0;
    margin: 0;
	}
ul.sm-icons li{
	float:left;
	margin:0 .5em;
}

ul.sm-icons li a{
	color:#3c3835;
}
ul.sm-icons li a:hover{
	color:var(--wj-red);
}




@keyframes yah-arrow {
 0% {
 color:var(--wj-red);
 left:0;
}
 100% {
 color:#FF7600;
 left:-4px;
}
}
.site-map ul li.current_page_item > a, .site-map ul li ul li.current_page_item a, .site-map ul li ul li.current-menu-item a {
    color: var(--white);
    animation: yah-text ease-out .75s infinite alternate;
}
.site-map ul li.current-menu-parent > a {
    color: #df8464;
    animation: yah-text ease-out .75s infinite alternate;
}
 @keyframes yah-text {
 0% {
 color:var(--white);
}
 100% {
 color:var(--wj-red);
}
}


/*------------------------------------------------------------------------------------
CONTACT PAGE
-----------------------------------------------------------------------------------*/

.contact-info-area{
    display: flex;
    margin:0 0 1em;
    justify-content: flex-start;
    align-items: center;
    width: 100%;

}
.contact-individual-content{ /*for individual office pages*/
	position:relative;
	background: var(--white) ;
	margin-top:-37px;
	max-width:1024px;
	padding-top:5em;
	}



.info-area{
	display:flex;
    width:45%;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    margin-left: 2vw;

	font-size:1.5em;

	}
.sm-area{
	 margin: 2rem 0 0;
}

.sm-area a {
	font-size: 2rem;
	margin-right: 1rem;
	color: var(--wj-brown);
}
.sm-area a:hover {
	text-decoration: none;
	color:var(--wj-red);
}

/*--------------------------------------------------------------
FOOTER
--------------------------------------------------------------*/

footer {
	display: flex;
	justify-content: space-between;
	align-items: center;

	margin-top: 2em;

    color: var(--wj-brown);
	font-weight: 400;
	letter-spacing: .125rem;
	font-size: .95rem;


}
footer .copyright-sitemap-area{
	display: flex;
	justify-content: flex-start;

}
footer .copyright {
    display: block;
    float: left;
    margin-top: 1em;
    margin-right: 1em;
    padding-right: 1em;
}
footer .sitemap-button {
    display: block;
    margin-top: 1em;
}
footer .sitemap-button a {
    text-decoration: none;
	color: var(--wj-brown);
}
footer .sitemap-button a:hover {
    text-decoration: none;
	color: var(--wj-red);
}
footer .social-media-icons {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	align-content: center;
}

footer .social-media-icons p.connect-with-us {
    display: block;
	margin: 0;
	padding-right:1em;
}
footer .social-media-icons ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;

    list-style: none;
    margin:  0;
    padding: 0;
}
footer .social-media-icons ul li {
	margin-right: 1em;
}
footer .social-media-icons ul li:last-of-type{
	margin-right: 0;
}
footer .social-media-icons ul li a {
    color: var(--wj-brown);
}
footer .social-media-icons ul li a:hover {
    color: var(--wj-red);
	text-decoration: none;
}
footer .social-media-icons ul li a.canvas-link {

	height: auto;
	font-size: 1em;
	font-weight: 700;
	border-radius: 4px;
	color:var(--white);
	padding: .25em .3em;
/*	box-shadow: 0 0 0px 2px inset var(--wj-brown);*/
	background-color:var(--wj-brown);
}
/*
footer .social-media-icons ul li a.canvas-link {
	font-weight: bold;
	font-size: 1.5em;
	mix-blend-mode:multiply;
	height: auto;
	border-radius: 4px;
	color:var(--white);
	padding: 0 .125em;
	background:var(--wj-brown);
}
*/
footer .social-media-icons ul li a.canvas-link:hover {
	color:var(--white);
	background:var(--wj-red);

}

/*
footer .social-media-icons ul li a img.wm-canvas {
    width: 100px;
	height: auto;
}
*/


@media only screen and (min-width: 1200px){

    .column3 {
    -webkit-column-fill: balance;
    -webkit-column-count: 2;
    -webkit-column-width: 50%;
    -webkit-column-gap: 6rem;
    -webkit-column-rule: 1px solid #F3F3EC;
    -moz-column-fill: balance;
    -moz-column-count: 2;
    -moz-column-width: 50%;
    -moz-column-gap: 6rem;
    -moz-column-rule: 1px solid #F3F3EC;
    column-fill:balance;
    column-count: 2;
    column-width: 50%;
    column-gap: 6rem;
    column-rule: 1px solid #F3F3EC;
}
}
