/*********************************
 *  HOME NAVIGATION
*********************************/
.home header .wp-block-social-links {
	z-index: 99;
}
.home header .wp-block-button {
	background: #13015e !important;
	border: 2px solid #13015e !important;
    color: #fff !important;
}
/* Large and up */ 
@media screen and (min-width: 1024px) {
	.home header .wp-block-social-links li {
		color: #fff!important;
	}
}

/*********************************
 *  HOME HERO
*********************************/
.home .entry-content {
	margin-block-start: 0!important;
}
#home-hero-image img {
	border-radius: 800px 800px 40px 40px;
}
/* Large and up */ 
@media screen and (min-width: 1024px) {
	body.home:before {
		position: absolute;
		top: 0;
		right: 10%;
		width: 514px;
		height: 681px;
		z-index: -2;
		margin: 0 auto;
		display: block;
		content: "";
		max-width: 100%;
		background: url(/wp-content/uploads/2025/01/645124383afa335703baac08_home-v1-hero-bg-right-doctr-x-webflow-template-1.png) top no-repeat;
		background-size: contain;
		opacity: 1;
		border-radius: 40px;
	}
	body.home:after {
		background: rgb(142,111,101);
		background: linear-gradient(0deg, rgba(142,111,101,0) 0%, rgba(255,255,255,1) 100%);
		position: absolute;
		top: 0;
		right: 0;
		left: 0;
		width: 100vw;
		height: 290px;
		z-index: -1;
		margin: 0 auto;
		display: block;
		content: "";
		max-width: 100%;
	}
}
#home-hero .wp-block-cover {
    object-fit: contain!important;
}

/*********************************
 *  HOME ABOUT
*********************************/
#home-about {
	overflow: visible;	
}
#home-about:after {
	position: absolute;
    z-index: 1;
    margin: 0 auto;
    display: block;
    content: "";
    max-width: 100%;
    width: 100%;
    height: 60vh;
    bottom: -10%;
    right: -20%;
    background: url(/wp-content/uploads/2025/01/65413da39653045c66119a7e_circle-gradient.webp) top no-repeat;
    background-size: contain;
    opacity: .35;
}

/*********************************
 *  MOBILE 
*********************************/
@media screen and (max-width: 39.9375em) {
	#home-hero {	
		padding-top: 50px!important;
	}
}
/*********************************
 *  MAIN 
*********************************/
/* main {
	margin-bottom: 100px;
}
 */
/* .home main,
.page-id-16 main {
	margin-bottom: 0;
} */

/*********************************
 *  GUTENBERG EDITOR 
*********************************/
.editor-styles-wrapper .block-editor-block-list__layout.is-root-container > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: 1620px!important;
}

/*********************************
 *  UTILITIES 
*********************************/
:where(.wp-site-blocks) > *,
.mb0 {
    margin-block-start: 0!important;
}
@media screen and (max-width: 39.9375em) {
	.mobile-hide {
		display: none!important;
	}
	
	.order2,
	.order-2{
		order: 2;
	}
}
@media screen and (min-width: 767px) {
	.tablet-hide {
		display: none!important;
	}
}

.lined-heading {
	display: table;
	margin-bottom: 30px;
	width: 100%;
	white-space: nowrap;
	letter-spacing: 0.2em;
	font-size: 14px;
	font-weight: 500;
	text-transform: uppercase;
}

.lined-heading:after {
	border-top: 1px solid #009FB7;
	content: "";
	display: inline-flex;
	position: relative;
	width: 30%;
	left: 20px;
	align-content: center;
	align-items: center;
	line-height: 100%;
	vertical-align: middle;
}

.object-contain .wp-block-cover__image-background {
	object-fit: contain!important;
}

.lined-heading-white:after {
	border-top: 1px solid #FFF;
}
	
.is-style-dotted {
    background-image: url(../images/pattern.png);
    background-repeat: repeat;
    mix-blend-mode: multiply;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.pill {
	border: 1px solid var(--wp--preset--color--accent-2);
    background-color: rgba(var(--wp--preset--color--accent-2), 0.5); 
    border-radius: 30px;
    padding: 6px 30px;
    color: var(--wp--preset--color--accent-2);
    text-transform: capitalize;
    font-size: 16px;
	width: max-content;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 auto;
}

.animated-text {
    background: linear-gradient(-45deg, #003260, #009FB7);
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: animated_text 5s ease-in-out infinite;
    -moz-animation: animated_text 5s ease-in-out infinite;
    -webkit-animation: animated_text 5s ease-in-out infinite;
}

.animated-bg-gradient {
    background: linear-gradient(270deg, #02084B, #80d0c7);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

.animated-bg-gradient-medium-dark {
    background: linear-gradient(270deg, #000, #02084B);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 10s ease infinite;
    -moz-animation: AnimationName 10s ease infinite;
    animation: AnimationName 10s ease infinite;
}

.animated-bg-gradient-dark {
    background: linear-gradient(270deg, #000, #2D3436);
    background-size: 400% 400%;

    -webkit-animation: AnimationName 10s ease infinite;
    -moz-animation: AnimationName 10s ease infinite;
    animation: AnimationName 10s ease infinite;
}

@-webkit-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@-moz-keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}
@keyframes AnimationName {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.mockup-gradient {
    background-image: linear-gradient(0deg, #e4eaf7, #e4eaf700);
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 100%;
    height: 128px;
    position: absolute;
    inset: auto 0% 0%;
}

/*********************************
 *  MOBILE 
*********************************/
@media screen and (max-width: 39.9375em) {
	.is-layout-grid {
		grid-template-columns: repeat(1, minmax(0, 1fr))!important;
		gap: var(--wp--preset--spacing--30)!important;
	}
}
