/* Intro Block */
.intro-block {
	display: flex;
	position: relative;
	flex-direction: column;
	/* margin-bottom: 40px; */
	margin-top: -120px;
	z-index: 3;
}

.intro-block h1 {
	font-size: 36px;
	margin-bottom: 30px;
}

.intro-block img {
	margin-top: 30px;
}

@media(min-width: 768px) {

	.intro-block {
		flex-direction: row;
		padding: 0;
	}

	.intro-block h1 {
		font-size: 28px;
	}

	.intro-block p {
		font-size: 16px;
	}

	.intro-block img {
		margin-top: 0;
	}
}

@media(min-width: 1200px) {

	.intro-block h1 {
		font-size: 43px;
	}

	.intro-block p {
		font-size: 20px;
	}
}

/* Page Navigation List */
.page-navigation {
	position: relative;
	margin-bottom: 40px;
}

.page-navigation img {
	margin-bottom: 20px;
}

.page-navigation .page-title {
	display: block;
	position: relative;
	width: 100%;
	color: #000;
	font-weight: 400;
}

.page-navigation .page-title:hover {
	text-decoration: underline;
}

.page-navigation ul {
	padding: 0;
	display: flex;
	flex-direction: column;
	margin-bottom: 0;
}

.page-navigation li {
	display: inline-block;
	position: relative;
	background-color: #f3f3f5;
	padding: 20px;
	width: 100%;
	margin-bottom: 20px;
	background-image: url('assets/img/pagelink-arrow.png');
	background-repeat: no-repeat;
	background-size: 10px;
	background-position: bottom 25px right 20px;
}

.page-navigation li:last-of-type {
	margin-bottom: 0;
}

.page-navigation li img {
	height: 40px;
	width:auto;
}

@media(min-width: 768px) {

	.page-navigation .page-title {
		font-size: 16px;
	}

	.page-navigation ul {
		flex-direction: row;
		flex-wrap: wrap;
	}

	.page-navigation li {
		width: 32%;
		margin-right: 2%;
	}

	.page-navigation li:nth-of-type(3n) {
		margin-right: 0;
	}

	.page-navigation li:last-of-type {
		margin-bottom: 20px;
	}
}

@media(min-width: 1200px) {

	.page-navigation .page-title {
		font-size: 20px;
	}
}

/* Legal Advice Block */
.legal-advice {
	display: flex;
	flex-direction: column;
	width: 100%;
}

@media(min-width: 992px) {
	.legal-advice {
		flex-direction: row;
	}
}

.legal-advice--left {
	background-color: #f3f3f5;
	padding: 30px;
}

@media(min-width: 992px) {

	.legal-advice--left {
		padding: 60px 30px;
	}
}

@media(min-width: 1200px) {

	.legal-advice--left {
		padding: 100px 60px 100px 200px;
	}
}

.legal-advice--left h3 {
	font-size: 43px;
	margin-top: 0;
	margin-bottom: 30px;
}

.legal-advice--right {
	background-color: #5b1f69;
	color: #fff;
	padding: 60px 30px;
}

.legal-advice--right img {
	max-width: 70px;
	margin-bottom: 30px;
}

@media(min-width: 1200px) {

	.legal-advice--right {
		padding: 100px;
	}
}

.legal-advice--right h3 {
	font-size: 36px;
	color: #fff;
	margin-bottom: 30px;
	margin-top: 0;
}

@media(min-width: 1200px) {

	.legal-advice--right h3 {
		font-size: 43px;
	}
}

.legal-advice--right p {
	margin-bottom: 30px;
}

@media(min-width: 1200px) {
	.legal-advice--right p {
		font-size: 24px;
	}
}

.legal-advice--right p a {
	display: inline-block;
	position: relative;
	margin-left: 5px;
	color: #fff;
}

.legal-advice--right p a:after {
	content: "";
	display: block;
	position: relative;
	width: 100%;
	height: 1px;
	background-color: #fff;
	margin-top: 3px;
}

.request-btn {
	display: inline-block;
    position: relative;
    border: 1px solid #F07818;
    background-color: #F07818;
    text-align: center;
    color: #fff!important;
    padding: 15px 15px;
    border-radius: 4px;
    font-size: 16px;
    width: auto;
    max-width: 80%;
    margin-top: 10px;
}

.request-btn:hover {
	background-color: #DE7856;
}

.request-btn:visited {
	color: #fff;
}

.is-white-bg {
	background-color: #fff;
}

/* Dropin Clinic section */
.clinic-dropin {
	display: flex;
	position: relative;
	flex-direction: column;
	width: 100%;
}

@media(min-width: 768px) {
	.clinic-dropin {
		padding: 60px 0;
	}
}

@media(min-width: 1200px) {
	.clinic-dropin {
		flex-direction: row;
	}
}

.dropin-left {
	display: block;
	position: relative;
	width: 100%;
	order: 2;
}

.dropin-left img {
	width: 100%;
	height: auto;
}

@media(min-width: 1200px) {
	.dropin-left {
		order: 1;
		width: 50%;
	}
}

.dropin-right {
	display: block;
	position: relative;
	width: 100%;
	order: 1;
	padding: 60px 30px;
}

@media(min-width: 1200px) {

	.dropin-right {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		order: 2;
		width: 50%;
		padding: 100px;
	}
}

.dropin-right h4 {
	font-size: 36px;
	margin-top: 0;
	margin-bottom: 30px;
}

@media(min-width: 1200px) {

	.dropin-right h4 {
		font-size: 43px;
	}
}

.dropin-right .button {
	display: inline-block;
    position: relative;
    border: 1px solid #5b1f69;
    text-align: center;
    color: #5b1f69!important;
    padding: 15px 15px;
    border-radius: 4px;
    font-size: 16px;
    width: auto;
    max-width: 80%;
    margin-top: 10px;
}

.dropin-right .button:visited {
	color: #5b1f69!important;
}

/* Our Team section */
.our-team {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #f3f3f5;
	padding: 60px 15px;
}

.our-team h5 {
	font-size: 36px;
	color: #5b1f69;
	margin-top: 0;
	margin-bottom: 30px;
}

@media(min-width: 1200px) {

	.our-team h5 {
		font-size: 43px;
	}
}

.our-team iframe {
	margin-top: 60px;
}

/* Testimonials slider section */
.testimonial-slider {
	display: block;
	position: relative;
	width: 100%;
	background-color: #5b1f69;
}

.testimonial-slider ul {
	padding: 80px 30px;
}

.testimonial-slider li {
	list-style-type: none;
}

.testimonial-slider blockquote {
	color: #fff;
	font-size: 16px;
	line-height: 24px;
	font-family: Lato,Helvetica,Arial,sans-serif;
	font-weight: 400;
	margin-bottom: 20px;
	padding: 0 30px;
	text-align: center;
}

@media(min-width: 1200px) {
	.testimonial-slider blockquote {
		font-size: 22px;
		line-height: 30px;
		padding: 0 100px;
	}
}

.testimonial-slider blockquote:before,
.testimonial-slider blockquote:after {
	display: none;
	visibility: hidden;
}

.testimonial-slider cite {
	color: #fff;
	display: block;
	position: relative;
	width: 100%;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	padding: 0 30px;
	text-align: center;
}

@media(min-width: 1200px) {

	.testimonial-slider cite {
		font-size: 20px;
	}
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next {
    position: absolute;
    display: block;
    height: 40px;
    width: 40px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
}

.testimonial-slider .slick-prev:hover, 
.testimonial-slider .slick-prev:focus {
	outline: none;
	color: transparent;
}

.testimonial-slider .slick-prev {
    left: 0;
    background-image: url('assets/img/Left-Arrow.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
}

.testimonial-slider .slick-prev:hover {
	background-image: url('assets/img/Left-Arrow.png');
}

.testimonial-slider .slick-next {
    right: 0;
    background-image: url('assets/img/Right-Arrow.png');
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: center;
}

.testimonial-slider .slick-next:hover {
	background-image: url('assets/img/Right-Arrow.png');
}

/* Our Awards section */
.our-awards {
	display: block;
	position: relative;
	height: auto;
	padding: 60px 0 30px 0;
}

@media(min-width: 992px) {
	.our-awards {
		padding: 60px 0;
	}
}

.our-awards h5 {
	font-size: 36px;
	color: #5b1f69;
	text-align: center;
	margin-bottom: 60px;
}

@media(min-width: 1200px) {

	.our-awards h5 {
		font-size: 43px;
	}
}

.our-awards ul {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
}

.our-awards li {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 49%;
	margin-right: 1%;
	margin-bottom: 50px;
}

.our-awards li:nth-of-type(2n) {
	margin-right: 0;
}

@media(min-width: 992px) {

	.our-awards li {
		width: 24.2%;
		margin-bottom: 0;
	}

	.our-awards li:nth-of-type(2n) {
		margin-right: 1%;
	}

	.our-awards li:nth-of-type(4n) {
		margin-right: 0;
	}
}

.our-awards li img {
	max-width: 150px;
}

.meet-the-team {
	display: block;
	position: relative;
	width: 100%;
	padding: 60px 30px;
	background-color: #f3f3f5;
}

.meet-the-team h5 {
	font-size: 36px;
	color: #5b1f69;
	text-align: center;
	margin-bottom: 60px;
}

.member-details {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 200px;
}

@media(min-width: 768px) {
	.member-details {
		align-items: flex-start;
	}
}

@media(min-width: 1200px) {

	.meet-the-team h5 {
		font-size: 43px;
	}
}

.meet-the-team ul {
	display: flex;
	position: relative;
	flex-wrap: wrap;
	padding: 0;
	width: 100%;
	flex-direction: column;
}

.meet-the-team li {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	list-style-type: none;
	margin-bottom: 40px;
	font-size: 14px;
}

.meet-the-team li:last-of-type {
	margin-bottom: 0;
}

.meet-the-team li img {
	border-radius: 100%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: top;
    margin-bottom: 15px;
}

.meet-the-team li a {
	color: #000;
	font-weight: 400;
	font-size: 22px;
}

@media(min-width: 768px) {

	.meet-the-team ul {
		flex-direction: row;
		justify-content: center;
	}

	.meet-the-team li {
		width: 25%;
		margin-right: 0;
	}

	.meet-the-team li:nth-of-type(3n) {
		margin-right: 0;
	}

	.meet-the-team li:last-of-type {
		margin-bottom: 40px;
	}

	.meet-the-team li img {
		width: 200px;
		height: 200px;
	}
}

@media(min-width: 1200px) {

	.meet-the-team li {
		width: 250px;
	}
}

/* Related Articles */
.related-articles {
	display: block;
	position: relative;
	padding: 60px 30px;
	z-index: 5;
}

.related-articles h2 {
	margin-bottom: 40px;
	z-index: 5;
    position: relative;
}

.related-articles .post-icon {
	margin-bottom: 20px;
}

.related-articles .post-icon img {
	max-width: 40px;
}

.related-articles h4 a {
	color: #a966b9;
}

.related-articles h4 a:visited {
	color: #a966b9;
}

.related-articles .post__read-more {
	color: #5b1f69;
}

.related-articles .post__read-more:visited {
	color: #5b1f69;
}

.related-articles .box--post__image:before {
    bottom: -40px;
    height: 70px;
}