/*
	Theme Name: DC Theme
	Theme URI: https://chrisreeves.com.au/
	Description: DC Theme
	Version: 1.0.1
	Author: Digital Creative Perth 
	Author URI: https://chrisreeves.com.au/
	Tags: HTML5, CSS3

	License: MIT
	License URI: http://opensource.org/licenses/mit-license.php
*/

.dc-testimonials .item.with_img {
	display: flex;
	justify-content: space-between;
}
.dc-testimonials .item.with_img .description{
	width: 65%;
}
.dc-testimonials .item.with_img .description .text{
	text-align: left;
}
.dc-testimonials .item.with_img .image{
	width: 30%;
}

/*------------------------------------*\

    AUTHOR BOX

\*------------------------------------*/
.dc-authorbox .authorbox-inner {
  display: -ms-flexbox;
  display: flex;
}
.dc-authorbox {
  padding: 30px;
}
.dc-authorbox .authorbox-inner {
  max-width: 900px;
  background-color: #F4F4F6;
  padding: 30px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
   background-color: #fff;
   border-top: 1px solid #F4F4F6;
   padding: 30px;
   margin: 0 auto 50px;
}
.dc-authorbox .authorbox-inner .image-wrapper.avatar {
  -ms-flex: 1 0 150px;
      flex: 1 0 150px;
  margin-right: 20px;
  overflow: hidden;
}
.dc-authorbox .authorbox-inner .image-wrapper.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.dc-authorbox .authorbox-inner .image-wrapper.avatar ul{
	margin-top:20px;
	list-style:none;
	text-align: center;
	margin-bottom: 0;
	padding-top: 0;
	display: block;
}

.dc-authorbox .authorbox-inner .image-wrapper.avatar ul li{
	display: inline;
	margin-left: 5px;
}
.dc-authorbox .authorbox-inner .image-wrapper.avatar ul li a{
	color: #F69532;
	font-size: 20px;
}


.dc-authorbox .authorbox-inner .image-wrapper.avatar ul li:before{
	content: "";
}

.dc-authorbox .authorbox-inner .image-wrapper.avatar ul li:first-child{
	margin-left: 0;
}

.dc-authorbox .authorbox-inner .author-info {
  -ms-flex: 1 0 calc(100% - 170px);
      flex: 1 0 calc(100% - 170px);
}
.dc-authorbox .authorbox-inner .author-info .author-name {
  margin: 0;
}
.dc-authorbox .authorbox-inner .author-info .author-bio p {
  margin: 0;
  font-size: 16px;
}

.dc-authorbox .authorbox-inner .author-info .button-wrapper {
	margin-top: 20px;
}

.dc-authorbox .authorbox-inner .author-info .button-wrapper .dc-btn.outline
{
	padding: 8px 24px;
    display: inline;
}

@media only screen and (max-width: 767px) {
  .dc-authorbox .authorbox-inner {
    -ms-flex-direction: column;
        flex-direction: column;
  }
  .dc-authorbox .authorbox-inner .image-wrapper.avatar {
    margin-right: 0;
    margin-bottom: 20px;
	max-width:200px;
	flex: auto;
  }
  .dc-authorbox .authorbox-inner .author-info {
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
	  text-align: center;
  }
}

span.article-author {
	display: block;
	font-size: 18px;
	margin-top: 20px;
}

span.author-position {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    display: block;
}

/* Speakers */
.dc-speakers .inner{
	max-width: 1760px;
	margin: 0 auto;
	padding: 0 60px 0 60px;
}
.dc-speakers .inner .speakers-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 20px;
}

.dc-speakers .inner .speakers-wrapper .dc-authorbox .authorbox-inner .author-info .author-name{
	font-size: 22px;
}

.dc-speakers .inner .speakers-wrapper .dc-authorbox .authorbox-inner .author-info .author-bio{
	font-size: 14px;
}

.dc-speakers .inner .speakers-wrapper .dc-authorbox .authorbox-inner .image-wrapper.avatar{
	flex: 1 0 100px;
}

@media only screen and (max-width: 1100px) {
	.dc-speakers .inner .speakers-wrapper{
		grid-template-columns: 1fr;
	}
}