/*DISCOVER*/

.home .contentarea {
	position: relative;
    background: #F9FAFB;
}
.main-wrap {
    background-size: cover;
}
.loaded.no-webp .main-wrap {
	background-image: url("../images/main-bg.png")
}
.loaded.webp .main-wrap {
	background-image: url("../images/main-bg.webp")
}

.discover-pic img {
	display: block;
}

/*DOCTOR SECTION*/

.loaded.no-webp .doctor-section {
	background-image: url("../images/dr-bg.png")
}
.loaded.webp .doctor-section {
	background-image: url("../images/dr-bg.webp")
}

.split-content p {
    margin: 1em 0;
}

.doc-aff {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.doc-aff a {
    display: block;
    margin: 1em auto;
}

.doc-aff a svg.external-link {
    display: none;
}

.doctor-section h4 {
    margin: 2em auto 0;
}

.doctor-section h4 svg {
    vertical-align: sub;
    margin-right: 5px;
}

/*SHOWCASE*/

.showcase {
	position: relative;
    background-color: var(--primary-color);
}

.invis-pic img {
    display: block;
}

.show-col {
    position: relative;
    z-index: 2;
}

.show-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
	margin: 1em 0;
}

.show-box h3 {
    text-transform: uppercase;
}

span.link-left {
    display: flex;
    align-items: baseline;
}

.showcase a p {
    margin: 0;
    border-bottom: 1px solid #D7CB96;
}

.showcase a:hover p {
    color:#D7CB96;
    border-bottom: 1px solid #fff;
}

.show-box img:first-child {
    margin-right: 1em;
}

/*REVIEWS*/

.loaded.no-webp .review-section {
	background-image: url("../images/rev-bg.png")
}
.loaded.webp .review-section {
	background-image: url("../images/rev-bg.webp")
}

.rev-box {
    position: relative;
    min-height: 410px;
    transition: all .2s ease-in-out;
}

.rev-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
	width: 45px;
	height: 45px;
    background-image: url(../images/quote-left.png);  
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.rev-box:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
	width: 45px;
	height: 45px;
    background-image: url(../images/quote-right.png);  
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.rev-box-inner {
	position: relative;
    min-height: 410px;
	padding: 4em 1.5em;
}

.rev-box-inner:before {
    content: '';
    position: absolute;
    border: solid #CEAE8D;
    border-width: 5px 5px 0 0;
    display: inline-block;
    padding: 25%;
    transform: rotate(180deg);
    top: 60px;
    right: 60px;
    left: 0;
    bottom: 0;
}
.rev-box-inner:after {
    content: '';
    position: absolute;
    border: solid #CEAE8D;
    border-width: 5px 5px 0 0;
    display: inline-block;
    padding: 25%;
    transform: rotate(0);
    top: 0;
    right: 0;
    left: 60px;
    bottom: 60px;
}

.rev-box:not(.slick-current) {
    opacity: .3;
    transform: scale(.65);
	transition: all .2s ease-in-out;
}

p.review,
p.patient-name {
	font-size: 17px;
    line-height: 1.6;
    color: var(--dark);
}

ul.slick-dots {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    max-width: 300px;
    margin: 3em auto 1em;
}

.slick-dots li {
    list-style: none;
}

.slick-dots li button {
    font-size: 0;
    height: 22px;
    width: 22px;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid #D8DADB;
}

.slick-dots li.slick-active button {
	background-color: #000;
	border: none;
	height: 18px;
	width: 18px;
}

.btn-wrap {
	margin: 2em auto 0;
}

.btn-wrap .main-btn {
    padding: 0.8em 1.5em;
    flex: 1;
    max-width: 310px;
}

/*BOTOX*/

.botox {
	position: relative;
	background-size: cover;
}
.loaded.no-webp .botox {
	background-image: url("../images/botox-bg.png")
}
.loaded.webp .botox {
	background-image: url("../images/botox-bg.webp")
}

.botox .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-flow: column;
}

.botox-left,
.botox-right {
	position: relative;
	text-align: center;
	z-index: 2;
}

.botox-left {
    display: block;
    width: 100%;
    margin: 0 0 auto 0;
}

.botox h2.h1-match {
    margin: 0;
    line-height: 1.5;
}

.botox a.main-btn {
    margin-top: 4.3em;
}

.botox-right {
    display: block;
    width: 100%;
    margin: 15vh 0 0 auto;
}

a.botox-btn {
    background: linear-gradient(90deg, #FFFAD6 0%, #CEA654 26%, #FDF8CD 52%, #CEA654 77%, #FEF5AF 100%);
	font-family: 'Avenir', sans-serif;
    font-size: 33px;
	font-weight: 500;
    color: #000;
    line-height: 1.8; 
}

.arw-wrap {
    display: inline;
}

a.botox-btn:hover .arw-wrap {
	border-bottom: 2px solid #000;
}

a.botox-btn span {
    font-weight: 800;
	margin-right: 1em;
}

a.botox-btn svg {
    vertical-align: middle;
    margin-left: 0.2em;
}

.botox-pic img {
    display: block;
}

.cta {
    background-color: var(--primary-color);
}

/*OFFICE SPLIT*/

.loaded.no-webp .office-split {
	background-image: url("../images/smile-bg.png")
}
.loaded.webp .office-split {
	background-image: url("../images/smile-bg.webp")
}

.office-split h2 {
    margin-bottom: 1em;
}

.office-split h2.h1-match {
    margin: 0;
}

.office-split .main-btn {
    margin: 1em auto;
    padding: 1em 2.5em;
}

.office-split ul.slick-dots {
    margin: 1em auto;
    max-width: 260px;
}

/* RESPONSIVE 
-----------------------------------------------*/
@media (min-width: 1026px) {
	.home article#post-2 {
		position: relative;
		max-width: 890px;
		z-index: 2;
	}
	.home article#post-2 p {
		max-width: 660px;
		margin: 3.5em 0;
	}
	.discover-pic {
		position: absolute;
		right: 0;
		bottom: 0;
		z-index: 1;
	}
	.split-wrap {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	
	.doctor-section .split-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
    }
	
	.doctor-section .split-pic {
		min-width: 270px;
	}
	
	.split-pic {
		min-width: 470px;
	}
	
	.split-content {
		max-width: 660px;
		margin: 0 2em;
	}
	.split-content p {
		margin: 3.5em 0;
	}
	.doc-aff a {
		margin: 1.5em 3em 0 0;
	}
	.invis-pic,
	.botox-pic {
		position: absolute;
		bottom: 0;
		right: 0;
		z-index: 1;
		max-width: 47vw;
	}
	.botox-left {
		text-align: left;
	}
	.botox-right {
		text-align: right;
	}
	.cta .container {
		display: flex;
		align-items: center;
		justify-content: space-between;
	}
	.split-img .office-slider {
		max-width: 580px;
	}
	.office-split .split-img {
		margin: 0 1em;
	}
}

@media (min-width: 1026px) and (max-width: 1440px) {
	.home article#post-2 {
		margin-right: 44vw;
	}
	.discover-pic {
		max-width: 55vw;
	}
}

@media all and (min-width: 960px) {
	.show-wrap {
		display: flex;
		align-items: flex-start;
		justify-content: flex-start;
		margin: 2em 0;
		grid-gap: 20px;
	}
	.show-box img:last-child {
		margin-left: 1em;
	}
}

@media all and (min-width: 601px) {
	.btn-wrap {
		display: flex;
		align-items: center;
		justify-content: center;
		grid-gap: 25px;
	}
}

@media (max-width: 1720px) {
	.home .contentarea .container {
		margin: 0 auto 0 0;
	}
}

@media (max-width: 1280px) {
	.show-box h3 {
		letter-spacing: 2px;
		font-size: 20px;
	}
	.showcase a p {
		font-size: 16px;
	}
	p.review,
	p.patient-name {
		font-size: 15px;
		line-height: 1.3;
	}
}

@media (max-width: 1025px) {
	.discover-pic {
		display: block;
		margin: 1em auto 0;
	}
	.split-pic img {
		display: block;
		margin: 2em auto;
		width: 40%;
	}
	.invis-pic {
		display: block;
		margin-bottom: -1em;
	}
	.showcase a p {
		margin: 0 1em;
		padding: 1em 0;
	}
	.rev-box-inner:before,
	.rev-box-inner:after {
		padding: 20%;
	}
	.botox-right {
		margin: 2em auto;
	}
	a.botox-btn {
		font-size: 26px;
		padding: 0.6em 0.8em;
	}
	.botox-pic img {
		margin-bottom: -2em;
	}
}

@media only screen and (max-width: 979px) {
}

@media only screen and (max-width: 767px) {
} 

@media all and (max-width: 600px) {
	.doc-aff a {
		margin: 1em 10px;
	}
	.show-box {
		flex-flow: column;
		text-align: center;
	}
	span.link-left {
		justify-content: center;
	}
	a.botox-btn {
		font-size: 18px;
		padding: 0.6em;
	}
	a.botox-btn span {
		font-weight: 800;
		margin-right: 5px;
	}
	a.botox-btn svg {
		margin-left: 5px;
		max-width: 25px;
	}
}

@media only screen and (max-width: 480px) {
}
