/*** RESET ***/
:root{
	--brandColor400: #e0e9dd;
	--brandColor500: #007b87;
	--brandColor600: #02545c;
	--brandColor800: #004b47;
	--gray100: #f4f4f4;
	--gray300: #ecf5f6;
	--gray400: #f9f7ef;
	--gray500: #5d5e61;
	--gray600: #272727;
	--gray800: #000000;
	--primaryFont: 'Montserrat', sans-serif;
	--secondaryFont: 'Arvo', serif;
}

html,body{
	margin:0;
	padding:0;
	font-size:16px;
	line-height:100%;
}

body{
	line-height: 100%;
	font-family: var(--primaryFont);
	color: var(--gray500);
	background: #FFF;
}
/*** MISC ***/
#page_wrapper{
	float:left;
	width:100%;
	padding-top: 70px;
}
.with_announcement_bar #page_wrapper{
	padding-top:105px;
}

*{
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h5{
	display: inline-block;
	width:100%;
	font-family: var(--secondaryFont);
	margin: 0 0 10px 0;
	line-height: 100%;
}
p{
	display: inline-block;
	width: 100%;
	font-size: 22px;
	margin: 0 0 20px 0;
	line-height: 150%;
	font-weight: 400;
}
ul, ol{
	font-size: 18px;
	line-height: 170%;
}
p:last-child{
	margin-bottom: 0;
}
img{
	max-width: 100%;
	border:none;
	outline:none;
}
a{
	color: currentColor;
}
a, a:hover{
	text-decoration:none
}
.svg_icon{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
}
input,
select,
textarea,
button{
	font-family: var(--primaryFont);
}
table{
	border-collapse: collapse;
}
table img{
	float:left;
}
figure{
	margin:0;
}
span{
	line-height:100%
}
.wp-block-qubely-image{
	margin-bottom:-5px;
}
.button{
	--btnColor: var(--brandColor500);
	--btnTextColor: #FFF;
	display: inline-block;
	position: relative;
	border-radius: 6px;
	background: var(--btnColor);
	color: var(--btnTextColor);
	border: 1px solid var(--btnColor);
	cursor: pointer;
	text-transform: uppercase;
	font-size: 18px;
	padding: 15px 30px;
	line-height: 25px;
	text-align: center;
	font-weight: 600;
	letter-spacing: 2px;
	transition: all 0.5s;
}
.button:hover{
	--btnColor: var(--brandColor500);
}
.button.green_button:hover{
	background: var(--brandColor600);
}
.button.white_button{
	background: #FFF;
	color: var(--btnColor);
}
.button.white_button:hover{
	background: var(--brandColor500);
	color: #FFF;
}
.button.clean_button{
	font-size: 18px;
    padding: 0 25px 0 0;
    background: none;
    color: var(--btnColor);
    border: none;
    text-transform: none;
    letter-spacing: normal;
    font-weight: 700;
}
.clean_button:hover{
	color: var(--brandColor600);
}
.clean_button::after{
	content:'';
	position: absolute;
	top: calc(50% - 10px);
	right:0;
	width:20px;
	height: 20px;
	background-image: url(../images/arrow_circle_icon.svg);
	background-size: contain;
	background-repeat: no-repeat;
	transition: all 0.3s;
}
.clean_button:hover::after{
	background-image: url(../images/arrow_circle_icon_hover.svg);
	transform:translateX(5px)
}
.button.ghost_button{
	border-color: #FFF;
}
.section_title{
	font-size: 48px !important;
	line-height: 120%;
	font-weight: 700;
	color: var(--brandColor800);
	margin: 0;
}

.section_subtitle{
	font-size: 40px;
	font-family: var(--primaryFont);
	color: #000;
	margin-bottom: 20px;
}
.sticky-top{
	z-index:90
}

/*** SCROLL BAR ***/
body::-webkit-scrollbar {
	width: 5px;
}
body::-webkit-scrollbar-track {
	background: rgba(0, 0, 0, 0.2);
}
body::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.3);
}

/*** GRAVITY FORMS ***/
.gform_description:empty{
	display: none;
}
.gform_wrapper .gfield_required{
	display:none !important;
}
.ginput_container.ginput_container_consent {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*** SECTION BACKGROUNDS ***/
.bg_cream {
	background: var(--gray400);
}
.bg_blue{
	background: var(--gray300);
}

/*** SECTION DECORATIONS ***/
.top_decoration_item{
	position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin-bottom: 50px;
    background: var(--prevBG);
}
.top_decoration_item::after{
	content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 110%;
    height: 100%;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
.rect_decoration .top_decoration_item::after {
	content: '';
    position: absolute;
    top: initial;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    border-radius: 0;
    transform: none;
    clip-path: polygon(0 15%, 0% 100%, 100% 100%);
}

.bg_white .top_decoration_item::after{
    background: #FFF;
}
.bg_cream .top_decoration_item::after{
    background: var(--gray400);
}
.bg_blue .top_decoration_item::after{
    background: var(--gray300);
}

/*** ANNOUNCEMENT BAR ***/
#announcement_bar {
	position: absolute;
	top:0;
	left:0;
	height: 35px;
	background: var(--brandColor500);
	color: #FFF;
	font-size: 12px;
	text-transform: uppercase;
}
#announcement_bar p{
	font-size: 12px;
	font-weight: 600;
}
#announcement_bar a{
	text-decoration: underline;
}
.admin-bar #announcement_bar{
	top:32px
}

/*** HEADER ***/
#header{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	background: #FFF;
	color: var(--brandColor800);
	box-shadow: 0 5px 5px -5px rgba(0, 0, 0, 0.1);
	z-index: 99;
}
.float_active #header{
	position: fixed;
	top:0;
}
.with_announcement_bar #header{
	top:35px
}
.with_announcement_bar.float_active #header{
	top:0
}
.with_announcement_bar.admin-bar #header{
	top:67px
}
.with_announcement_bar.admin-bar.float_active #header{
	top:32px
}

/** HEADER MAIN **/
#header_main{
	height: 70px;
}

#header_logo{
	display: inline-block;
	width: 205px;
}
#header_logo img{
	height: auto !important;
}

/*** HEADER MENU ***/
#header_menu{
	list-style: none;
	font-size: 12px;
	line-height: 18px;
	text-transform: uppercase;
	gap: 20px;
	font-weight: 600;
}
#header_menu > li{
	position: relative;
}
#header_menu > li > a{
	display: inline-block;
	position: relative;
	line-height: 40px;
}
.menu-item-has-children > a{
	padding-right: 18px;
}
.menu-item-has-children > a::after{
	content: '';
	position: absolute;
	top:calc(50% - 3px);
	right:0;
	width: 10px;
	height: 6px;
	background-image: url(../images/caret.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#header_menu > .button_link a{
	--btnColor: var(--brandColor500);
	--btnTextColor: #FFF;
	display: inline-block;
	position: relative;
	border-radius: 6px;
	background: var(--btnColor);
	color: var(--btnTextColor);
	border: 1px solid var(--btnColor);
	cursor: pointer;
	text-transform: uppercase;
	font-size: 14px;
	padding: 10px 15px;
	line-height: 20px;
	text-align: center;
	transition: all 0.5s;
}
#header_menu > .button_link.ghost_button a {
	background:none;
	border:1px solid var(--brandColor500);
	color:var(--brandColor500);
}
#header_menu .sub-menu{
	position: absolute;
    background: #FFF;
    bottom: 2px;
    left: calc(50% - 80px);
    width: 200px;
    text-align: left;
    list-style: none;
    padding: 8px 13px;
    margin: 0;
    border: 1px solid rgba(93, 94, 97, 0.5);
    border-radius: 7px;
    transform: translateY(calc(100% + 20px));
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
	z-index: 5;
}
#header_menu li:hover .sub-menu{
	transform: translateY(100%);
	opacity: 1;
	visibility: visible;
}
.sub-menu li {
	font-size: 14px;
    text-transform: none;
    color: #000;
    font-weight: 400;
    line-height: 110%;
    padding: 7px 0;
}
#header_menu .submenu_columns_2 .sub-menu{
	width: 280px;
    left: calc(50% - 135px);
	columns: 2;
}
#header_menu .sub-menu a{
	transition:all 0.3s;
}
#header_menu .sub-menu a:hover{
	color:var(--brandColor500);
}

/*** MOBILE MENU ***/
#menu_trigger{
	position: relative;
	width: 25px;
	height: 15px;
	cursor: pointer;
	background: none;
	border: none;
}
#menu_trigger::after{
	content: '';
	position: absolute;
	top:calc(50% - 1px);
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
	opacity: 1;
	transform: translateX(0);
}
.menu_open #menu_trigger::after{
	transform: translateX(100%);
	opacity: 0;
}
#menu_trigger i{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
}
#menu_trigger i::before{
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::before{
	transform: translate(0px, 5px) rotate(45deg);
}
#menu_trigger i::after{
	content: '';
	position: absolute;
	bottom:0;
	left: 0;
	width: 100%;
	height: 2px;
	background:currentColor;
	transition:all 0.5s;
}
.menu_open #menu_trigger i::after{
	transform: translate(0px, -8px) rotate(-45deg);
}
#mobile_menu_wrapper{
	position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    z-index: 100;
    background: var(--gray100);
	clip-path: inset(0 0 100% 0);
	transition:all 0.3s;
}
.menu_open #mobile_menu_wrapper{
	clip-path: inset(0 0 0 0);
}

#mobile_menu{
	list-style:none;
}
#mobile_menu > li {
	position: relative;
	border-bottom: 1px solid rgba(0,0,0,0.05);
	font-size: 14px;
	color: var(--brandColor800);
	font-weight: 500;
}
#mobile_menu > li:last-child{
	border-bottom:none;
}
#mobile_menu > li > a{
	display:inline-block;
	width:100%;
	position: relative;
	padding: 10px 20px;
}
#mobile_menu .menu-item-has-children > a::after {
	top: 0;
	width: 50px;
	height: 100%;
	background-size: 13px;
	transition:all 0.5s;
}
#mobile_menu .menu-item-has-children.open > a::after{
	transform:rotate(180deg);
}
#mobile_menu .sub-menu{
	float: left;
	display:none;
    width: 100%;
    text-align: left;
    list-style: none;
    padding: 0px 40px 15px;
    margin: 0;
}
#mobile_menu > li.button_link a{
	background: var(--brandColor500);
    margin: 20px 10px;
    width: calc(100% - 20px);
    text-align: center;
    color: #FFF;
    border-radius: 5px;
}
#mobile_menu > li.button_link.ghost_button{
	border-bottom:none;
	border: none;
}
#mobile_menu > li.button_link.ghost_button a {
	background: none !important;
	border: none !important;
	color: var(--brandColor800) !important;
	margin: 0 !important;
	padding: 10px 20px !important;
	text-align: left !important;
	width: 100% !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	text-transform: none !important;
	letter-spacing: normal !important;
	font-weight: 500 !important;
}

/*** FOOTER ***/
/* Footer base styles */
footer {
  background: var(--brandColor500);
  color: #FFF;
  padding: 0;
  margin-top: 0;
}

#footer_main {
  background: var(--brandColor500);
  color: #FFF;
  padding: 60px 0 40px;
}

#footer_widgets_area_wrapper {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  margin-top: 40px;
}

#footer_logo img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

#social_icons {
  color: #FFF;
  font-size: 20px;
}

#social_icons span {
  font-family: var(--primaryFont);
  font-size: 18px;
  font-weight: 600;
}

#social_icons a {
  color: #FFF;
  font-size: 18px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

#social_icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer_cta_buttons_wrapper h3 {
  font-family: var(--primaryFont);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFF;
}

.footer_cta_buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer_cta_buttons .button {
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 20px;
  text-transform: none;
  white-space: nowrap;
}

.footer_cta_buttons .button.white_button {
  background: #FFF;
  color: var(--brandColor500) !important;
  border-color: #FFF;
}

.footer_cta_buttons .button.white_button:hover {
  background: var(--brandColor500);
  color: #FFF !important;
  border-color: #FFF;
}

.footer_cta_buttons .button.ghost_button {
  background: transparent;
  color: #FFF !important;
  border-color: #FFF;
  font-weight: 600;
}

.footer_cta_buttons .button.ghost_button:hover {
  background: #FFF;
  color: var(--brandColor500) !important;
}

#footer_newsletter {
  padding: 0;
  margin: 0;
}

#footer_newsletter .footer_newsletter_title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFF;
  line-height: 130%;
}

#footer_newsletter_input_wrapper {
  margin: 15px 0;
  padding: 0 !important;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-size: 14px;
  height: 40px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-form button {
  padding: 10px 20px;
  background: #FFF;
  color: var(--brandColor500);
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  letter-spacing: 0;
}

.newsletter-form button:hover {
  background: var(--brandColor400);
}

#footer_newsletter p {
  font-size: 12px;
  margin: 5px 0 0 0;
  padding: 0;
  opacity: 0.8;
  line-height: 1.4;
  font-weight: 400;
}

/* MailerLite Form Styling */
.ml-embedded {
  width: 100%;
}

.ml-embedded input[type="email"] {
  flex: 1;
  padding: 10px 15px !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 4px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #FFF !important;
  font-size: 14px !important;
  font-family: var(--primaryFont) !important;
}

.ml-embedded input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7) !important;
}

.ml-embedded button {
  /* Match site's .button class styling */
  --btnColor: var(--brandColor500);
  --btnTextColor: #FFF;
  display: inline-block !important;
  position: relative !important;
  border-radius: 6px !important;
  background: var(--btnColor) !important;
  color: var(--btnTextColor) !important;
  border: 1px solid var(--btnColor) !important;
  cursor: pointer !important;
  text-transform: uppercase !important;
  font-size: 14px !important;
  padding: 10px 15px !important;
  line-height: 20px !important;
  text-align: center !important;
  transition: all 0.5s !important;
  font-weight: 600 !important;
  font-family: var(--primaryFont) !important;
  text-decoration: none !important;
}

.ml-embedded button:hover {
  background: var(--brandColor600) !important;
  color: #FFF !important;
}

/* Override MailerLite default styles */
.ml-embedded .ml-form-embedWrapper {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ml-embedded .ml-form-embedWrapper .ml-form-embedBody {
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
}

.ml-embedded .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent {
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

.ml-embedded .ml-form-embedWrapper .ml-form-formContent {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  width: 100% !important;
  align-items: stretch !important;
  background: transparent !important;
}

/* Make form elements full width and consistent */
.ml-embedded .ml-field-group {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.ml-embedded .ml-field-group input,
.ml-embedded .ml-field-group .ml-button {
  width: 100% !important;
  box-sizing: border-box !important;
}

/* Style the reCAPTCHA container */
.ml-embedded .ml-field-group .g-recaptcha,
.ml-embedded .ml-field-group [class*="recaptcha"] {
  display: flex !important;
  justify-content: center !important;
  margin: 10px 0 !important;
}

/* Ensure button styling is consistent */
.ml-embedded .ml-button-horizontal {
  width: 100% !important;
  margin: 0 !important;
}

/* Center align all form elements */
.ml-embedded .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent {
  text-align: center !important;
}

/* Make sure inputs and buttons are properly aligned */
.ml-embedded input[type="email"],
.ml-embedded .ml-button {
  margin: 0 auto !important;
  display: block !important;
}

/* Remove any conflicting background colors from MailerLite */
.ml-embedded * {
  background-color: transparent !important;
}

.ml-embedded input[type="email"] {
  background: rgba(255, 255, 255, 0.1) !important;
}

.ml-embedded .ml-button {
  background: var(--brandColor500) !important;
}

.ml-embedded .ml-button:hover {
  background: var(--brandColor600) !important;
}

/* Fix any padding/margin inconsistencies */
.ml-embedded .ml-form-embedWrapper,
.ml-embedded .ml-form-embedWrapper *:not(input):not(button) {
  box-sizing: border-box !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove all padding from MailerLite form components */
.ml-embedded,
.ml-embedded *,
.ml-embedded .ml-form-embedWrapper,
.ml-embedded .ml-form-embedBody,
.ml-embedded .ml-form-embedContent,
.ml-embedded .ml-form-formContent,
.ml-embedded .ml-field-group,
.ml-embedded .ml-button-horizontal,
.ml-embedded .ml-form-embedSubmit {
  padding: 0 !important;
}

/* Hide MailerLite generated text/descriptions */
.ml-embedded .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h4,
.ml-embedded .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent h5,
.ml-embedded .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent p,
.ml-embedded .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent .ml-form-embedSubmit p,
.ml-embedded .ml-form-embedWrapper .ml-form-embedBody .ml-form-embedContent .ml-form-formContent p {
  display: none !important;
}

/* Hide any MailerLite text that contains productivity keywords */
.ml-embedded [class*="text"]:has-text("productivity"),
.ml-embedded [class*="description"]:has-text("tips"),
.ml-embedded [class*="subtitle"] {
  display: none !important;
}

.footer_widget .widget_title {
  font-family: var(--primaryFont) !important;
  font-size: 18px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  margin-bottom: 15px;
  color: #FFF;
  white-space: nowrap;
}

.footer_widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;
  font-weight: 300;
}

.footer_widget ul li {
  margin-bottom: 15px;
}

.footer_widget ul li:last-child {
  margin-bottom: 0;
}

.footer_widget ul li a {
  color: #FFF;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer_widget ul li a:hover {
  color: var(--brandColor400);
}

/* This rule no longer applies since blog widget now has a header */


.widgets_area_5 {
  padding-top: 32px;
}

#footer_bar {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 0;
  margin-top: 0;
  font-size: 14px;
  font-weight: 300;
}

#footer_text {
  font-size: 14px;
  color: #FFF;
}

#footer_menu > a {
  position: relative;
}

#footer_menu a {
  color: #FFF;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer_menu a:hover {
  color: var(--brandColor400);
}

#footer_menu a:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  right: -11px;
  width: 1px;
  height: 15px;
  background: #FFF;
}

.footer-widgets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Blog menu two-column layout with same spacing as other columns */
.blog-widget .blog-menu {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 180px;
}

.blog-widget .blog-menu li {
  width: 50%;
}

.tiktok_icon {
  display: inline-block;
  width: 20px;
  height: 18px;
  background-image: url(../images/tik-tok.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive Footer Layout */
@media (max-width: 991px) {
  .footer-widgets-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .blog-widget {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .footer-widgets-grid {
    grid-template-columns: 1fr;
  }
  
  .blog-widget .blog-menu {
    height: auto;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  
  .blog-widget .blog-menu li {
    width: 100%;
  }
  
  .footer_cta_buttons_wrapper {
    text-align: center !important;
  }
  
  #social_icons {
    justify-content: center !important;
  }
  
  .footer_widget {
    text-align: center !important;
  }
  
  .footer_widget ul {
    align-items: center !important;
    text-align: center !important;
    gap: 0 !important;
  }
  
  .footer_widget ul li {
    text-align: center !important;
  }
  
  .footer_widget ul li a {
    text-align: center !important;
    display: block;
  }
  
  /* Footer responsive fixes - logo already responsive */
  
  .footer_cta_buttons {
    flex-direction: column;
    gap: 12px;
  }
}

/*** LANDING SECTION ***/
.landing_section{
	padding: 100px 0 80px;
}
.landing_section .container{
	z-index:2;
}
.landing_section.bg_pos_bottom{
	background-size: 100%;
	background-position: bottom center;
	background-repeat: no-repeat;
}
.landing_section.bg_pos_right{
	background-position: top right;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.landing_section.bg_pos_cover{
	background-size:cover;
	background-position:center;
}
.landing_section h1{
	font-size: 56px;
	line-height: 120%;
	margin: 0;
	color:var(--brandColor800);
	font-family: var(--secondaryFont) !important;
	font-weight: 700 !important;
}
.landing_section .content_wrapper p{
	font-size: 32px;
}
.landing-hero-image-back{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100%;
	z-index: 0;
}

/*** COLUMNS BULLET SECTION ***/
.column_bullets_section{
	padding: 48px 0;
	background: #007b87 !important;
	color: #FFF !important;
}
.column_bullets_section h5{
	font-size: clamp(18px, 1.4vw, 24px);
	line-height: 120%;
	font-weight: 600;
	font-family: var(--primaryFont);
	color: white;
}
.column_bullet_item i{
	display:inline-block;
	width:30px;
	height:30px;
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
	background-image:url(../images/check.svg);
}


/*** TEXT IMAGE SECTION ***/
.text_image_section{
	padding: 112px 0;
	overflow:hidden;
}
.text_image_section.top_decoration{
	padding:0 0 90px;
}
.text_image_section.top_decoration.bg_cream::before{
	background:#f9f7ef;
}
.text_image_section.top_decoration.bg_blue::before,
.text_image_section.bg_blue{
	background:var(--gray300);
}
.side_boxes_section.top_decoration::after {
    content: '';
    position: absolute;
    top: -75px;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--prevBG);
    z-index: -1;
}
.image_section_decoration{
	position: absolute;
	top: -10%;
	left: -10%;
	width: 100%;
	height: auto;
	padding-top: 100%;
	background: var(--ImgDColor);
	border-radius: 50%;
	transform:translateY(var(--translateY));
	z-index: -1;
}
.image_data{
	position: absolute;
    bottom: 30px;
    left: 30px;
    width: 210px;
    background: #FFF;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid var(--brandColor500);
    color: var(--brandColor500);
}
.image_data p{
	font-size: 16px;
}
.flex-row-reverse .image_data{
	left:initial;
	right:30px;
}

.flex-row-reverse .image_section_decoration{
	top: initial;
	left: initial;
	bottom: -10%;
	right: -10%;
}
.text_image_icon {
	height:50px;
}
.text_image_section .image_wrapper img{
	display: inline-block;
	border-radius: 45px;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.text_image_section .section_subtitle {
	font-size: 20px;
    color: var(--brandColor800);
    font-weight: 600;
}
.text_image_icons h4{
	font-family: var(--primaryFont);
	color: #000;
	font-size: 20px;
	margin-bottom: 10px;
}
.text_image_icons p{
	font-size: 14px;
}
.text_image_section .content_wrapper ul{
	padding:0;
	margin:15px 0 0 0;
	list-style:none;
}
.text_image_section .content_wrapper ul li{
	position:relative;
	padding-left:40px;
	margin-bottom:15px;
}
.text_image_section .content_wrapper ul li::before{
	content: '';
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url(../images/checklist_green.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/*** ICON BOXES GRID ***/
.icon_boxes_grid_section{
	padding: 80px 0;
	overflow:hidden;
}
.icon_boxes_grid_section.top_decoration{
	padding-top: 0;
}
.icon_boxes_grid_section .container{
	z-index:2
}
.icon_box_item{
	padding: 90px 30px 60px 30px;
	margin-top: 40px;
	background: #FFF;
	box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
	text-align: center;
}
.icon_box_item_icon{
	position: absolute;
	top:0;
	left: 50%;
	transform: translate(-50%, -50%);
}
.icon_box_item_icon img{
	width:80px;
}
.icon_box_item h4{
	font-size: 24px;
	color: var(--gray800);
	line-height: 120%;
	font-family: var(--primaryFont);
	margin-bottom: 25px;
	font-weight: 600;
}
.icon_box_item p,
.box_item p{
	font-size: 18px;
}
.big_text_boxes .icon_box_item p{
	font-size:24px;
}
.icon_boxes_grid{
	margin-top: 50px;
}
.icon_boxes_grid_section .buttons{
	margin-top: 90px;
}

/*** SIDE BOXES SECTION ***/
.side_boxes_section{
	padding: 112px 0;
}
.side_boxes_section .container{
	z-index:2;
}
.side_boxes_section.top_decoration{
	padding: 0 0 90px;
}
.side_sticky_content{
	top:90px;
}
.admin-bar .side_sticky_content{
	top:125px;
}
.side_sticky_content strong{
	color:var(--brandColor800)
}
.side_boxes_section .icon_box_item {
    padding: 45px 30px 40px 30px;
	margin-top: 20px;
}
.side_boxes_section .icon_box_item_icon{
	position: absolute;
	top:0;
	left: 30px;
	transform: translateY(-50%);
}
.side_boxes_section .icon_box_item_icon img{
	width:55px;
}
.side_boxes_section .icon_box_item h4 {
    margin-bottom: 15px;
}
.side_boxes_section .icon_box_item {
    text-align: left;
}
.side_boxes_section.big_main_text .side_sticky_content p{
	font-size:28px;
}

/*** TESTMINIAL SECTION ***/
.testimonial_section{
	padding:90px 0;
	background: var(--gray300);
}
.bg_white{
	background: #FFF;
}
.testimonial_section.top_decoration{
	padding: 50px 0 90px;
}
.testimonial_section.top_decoration::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--gray300);
    transform: rotate(2deg) translateY(-35%);
}
.testimonial_content p{
	font-size: 24px;
	color: var(--brandColor800);
	font-weight: 600;
}
.testimonial_section .image_wrapper{
	background: var(--gray600);
	border-radius: 45px;
	overflow: hidden;
}
.testimonial_section .image_wrapper img{
	float:left;
	width:100%;
	transition: opacity 0.3s, transform 2s;
}
.testimonial_section .image_wrapper:hover img{
	opacity: 0.7;
	transform: scale(1.1);
}
.testimonial_author_main{
	font-size: 18px;
	color: var(--brandColor800);
	line-height: 140%;
}
.author_name{
	font-weight: 600;
}
.author_signature{
	position:relative;
	width: 150px;
}
.author_signature::before{
	content: '';
    position: absolute;
    top: 50%;
    left: -11px;
    width: 1px;
    height: 65px;
    background: var(--brandColor500);
    transform: translateY(-50%);
}
.play_button{
	position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    background-color: var(--brandColor500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--brandColor500);
}

.play_button::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 15px solid rgba(255, 255, 255, 0.9);
    border-top: 9px solid transparent;
    border-bottom: 9px solid transparent;
    margin-left: 3px;
}

.play_button:hover {
    background-color: var(--brandColor600);
    border-color: var(--brandColor600);
    transform: scale(1.1);
}
.testimonial_content_grid .item_title{
	font-size: 43px;
	font-weight: bold;
	color: var(--brandColor500);
	line-height: 100%;
}
.testimonial_content_grid .item_subtitle{
	font-size: 20px;
	font-weight: 600;
	color: var(--brandColor800);
}

/*** LOGOS SECTION ***/
.logos_section{
	padding: 80px 0;
	background: var(--gray400);
}
.slick-slide{
	display: flex;
	align-items: center;
}
.slick-slide img {
    display: inline-block;
}
.slick-track{
	display: flex;
	align-items: center;
}

/*** SIDE BULLET SECTION ***/
.side_bullets_section{
	padding: 112px 0;
}
.bullet_number{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: var(--brandColor500);
	color: #FFF;
	font-size: 32px;
	font-weight: 700;
	border-radius: 50%;
}
.bg_cream .bullet_number{
	background:var(--brandColor500)
}
.bullet_item_content p{
	font-size: 18px;
	text-align: left;
}

/*** VA SPOTLIGHT ***/
.va_spotlight_section{
	padding-top: 112px;
	overflow-x:hidden;
}
.va_spotlight_section_main{
	padding: 30px 0 90px;
	background: var(--gray400);
	margin-top: 50px;
}
/* Removed angled design - should be straight cream background
.va_spotlight_section_main::before{
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 115%;
    height: 100px;
    background: var(--gray400);
    transform: rotate(-3deg) translateY(-50%);
	z-index: -1;
}
*/
.va_spotlight_section .image_wrapper img{
	display: inline-block;
	border-radius: 45px;
}
.va_spotlight_section .va_quote_wrapper p{
	font-weight: 600;
	font-size: 24px;
	color: var(--brandColor800);
}
.va_data{
	font-size: 14px;
	color: var(--brandColor800);
}
.va_data .va_name{
	font-size: 18px;
	font-weight: 600;
}

/*** COLUMNS SECTION ***/
.columns_section{
	padding: 112px 0;
}
.simple_column_item h3{
	font-size: 28px;
	color: var(--gray800);
	font-family:var(--primaryFont);
}
.simple_column_item_content p{
	color: var(--gray800);
	font-size: 21px;
}

/*** CTA SECTION ***/
.cta_section{
	padding: 112px 0;
    background-color: var(--gray300);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.cta_section.bg_cream{
	background-color:var(--gray400);
}
.cta_section .content_wrapper p{
	font-size:32px;
}

/*** BLOG SECTION ***/
.blog_section{
	padding: 112px 0;
}
.blog_archive_item_image{
	padding-top: 70%;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
}
.tag{
	display: inline-block;
	color: #FFF;
	background: #007b87;
	padding: 4px 6px;
	border-radius: 3px;
	font-size: 12px;
	font-weight: 600;
}
.blog_archive_item_title{
	color: #000;
	font-size: 24px;
	font-family: var(--primaryFont);
	line-height: 120%;
}
.blog_archive_item_excerpt p{
	font-size: 17px;
}
.blog_section .content_wrapper p{
	color: #000;
}

/** PAGINATION **/
.page-numbers{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:35px;
	height:35px;
	font-size:14px;
	font-weight:bold;
	color: var(--brandColor500);
	border:1px solid var(--brandColor500);
}
.page-numbers.current{
	background: var(--brandColor500);
    color: #FFF;
}
.page-numbers.prev,
.page-numbers.next{
	border-color:transparent;
}

/*** CENTERED TEXT ***/
.centered_text_section{
	padding: 80px 0;
}

/*** HOW IT WORKS ***/
.how_it_works_row_section{
	padding: 60px 0;
}

/*** WHATS INCLUDED ***/
.whats_included_section{
	padding:0 0 90px 0;
}
.box_item{
	padding: 30px;
    background: #FFF;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.box_item h4{
	font-family: var(--primaryFont);
	font-size: 24px;
	color: #000;
	margin-bottom: 20px;
	line-height: 120%;
}
.box_item .content_wrapper p{
	font-size: 18px;
}

/*** PRICING SECTION ***/
.pricing_section{
	padding: 112px 0;
}
.price_amount,
.price_amount_label{
	font-size: 24px;
	color: var(--brandColor500);
	font-weight: 600;
	line-height: 110%;
}
.pricing_section .icon_box_item {
    padding: 30px;
}

/*** FAQS SECTION ***/
.faqs_section{
	padding: 0 0 112px 0;
}
.faqs_section .content_wrapper a{
	color: var(--brandColor600);
	font-weight: bold;
}

/*** CHECKLIST SECTION ***/
.checklist_section{
	padding:80px 0;
	background:var(--gray400)
}
.checklist_section.bg_green{
	background:var(--brandColor500);
	color:#FFF;
}
.checklist_section.bg_green .section_title{
	color:#FFF;
}
.checklist_wrapper ul{
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 20px;
	margin:0;
	padding:0;
}
.checklist_wrapper ul li{
	position: relative;
    padding: 15px 15px 15px 60px;
    background: #FFF;
    font-size: 20px;
    line-height: 130%;
    color: #000;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.checklist_wrapper ul li::before{
	content: '';
    position: absolute;
    display: inline-block;
    top: calc(50% - 15px);
    left: 18px;
    width: 30px;
    height: 30px;
    background-image: url(../images/checklist_green.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/*** ABOUT LANDING ***/
.about_landing_section{
	padding: 80px 0;
    background-position: right center;
    background-size: auto 100%;
    background-repeat: no-repeat;
}
.about_landing_section h2 {
    font-size: 24px;
    line-height: 120%;
    margin: 0 0 20px 0;
    color: var(--brandColor800);
	font-family:var(--primaryFont);
	text-transform:uppercase;
}
.about_landing_section h1 {
    font-size: 56px;
    line-height: 120%;
    margin: 0;
    color: var(--brandColor800);
    font-family: var(--secondaryFont) !important;
    font-weight: 700 !important;
}

/*** STATS SECTION ***/
.stats_section {
	padding: 50px 0;
    background: var(--gray400);
    color: var(--brandColor800);
	line-height:110%;
}
.stats_section .sp1{
	font-size:24px;
	font-weight:600;
	line-height:110%;
}
.stats_section .sp2{
    color: var(--brandColor500);
	font-size:40px;
	line-height:110%;
	font-weight:700;
	margin:10px 0
}

/*** TYPEFORM SECTION ***/
.typeform_section{
	min-height:calc(100vh - 70px);
}

/*** COURSE LANDING ***/
.landing_section.course_landing  {
    padding:30px 0 100px 0;
}
.landing_section.course_landing p{
	font-size:22px;
}
.image_wrapper > img{
	border-radius:45px;
	float:left;
	width:100%;
}
.view_stars_wrapper {
	font-size: 14px;
    color: #000;
}
.reviews_stars{
	position:relative;
	display:inline-block;
	width: 90px;
	height:15px;
	font-size: 15px;
	line-height:15px;
	color:var(--brandColor500);
}
.reviews_stars::before{
	content:'\f006 \f006 \f006 \f006 \f006';
	font-family:fontawesome;
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	letter-spacing: 5px;
}
.reviews_stars::after{
	content:'\f005 \f005 \f005 \f005 \f005';
	font-family:fontawesome;
	position:absolute;
	top:0;
	left:0;
	width:calc(var(--rate) * 0.92px);
	height:100%;
	letter-spacing: 5px;
	overflow: hidden;
}

/*** COURSE INFO SECTION ***/
.course_info_section {
	padding:0 0 80px 0;
}
.course_info_section .top_decoration{
	position: relative;
    width: 100%;
    height: 100px;
    overflow: hidden;
    margin-bottom: 80px;
    background: var(--gray400);
}
.course_info_section .top_decoration::before {
	content: '';
    position: absolute;
    top: 50px;
    left: 50%;
    width: 110%;
    height: 100%;
    background: #FFF;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
.course_info_section .content_wrapper h3{
	font-size: 44px;
    line-height: 120%;
    font-weight: 700;
    color: var(--brandColor800);
    margin: 0 0 20px;
}
.course_info_section .content_wrapper p{
	margin-bottom:35px
}
.includes_list{
	padding: 30px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin: 40px 0;
}
.includes_list h3{
	font-size: 18px;
    font-family: var(--primaryFont);
    color: #000;
    margin-bottom: 20px;
}
.includes_list ul{
	padding:0;
	margin:0;
	list-style:none;
	columns:2;
}
.includes_list ul li{
	position:relative;
	padding-left:40px;
	margin-bottom:10px;
}
.includes_list ul li::before{
	content: '';
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    background-image: url(../images/checklist_green.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.course_content > h3{
	font-size: 30px;
    color: #000;
    margin-bottom: 20px;
}
.course_content_accordeon_item{
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.course_content_accordeon_item_header{
	position:relative;
	padding:20px;
	background:var(--gray400);
	font-size:18px;
	color:#000;
	font-weight:bold;
	cursor:pointer;
}
.course_content_accordeon_item_header::after{
	content:'';
	position:absolute;
	top:calc(50% - 6px);
	right:10px;
	width:12px;
	height:12px;
	background-image:url(../images/angle_down.svg);
	background-position:center;
	background-repeat:no-repeat;
	transition:all 0.5s;
}
.open .course_content_accordeon_item_header::after{
	transform: rotate(180deg);
}
.course_content_accordeon_item .content_list{
	padding:0;
	margin:0;
	list-style:none;
	font-size:18px;
	display: flex;
	flex-direction:column;
	gap:15px;
}
.course_content_accordeon_item_body{
	padding:20px 15px;
	display:none;
}
.default_open .course_content_accordeon_item_body{
	display:inline-block;
}
.content_list_icon {
	display:inline-block;
	width:20px;
	height:20px;
	background-size:contain;
	background-position:center;
	background-repeat:no-repeat;
}
.content_list_icon.video{
	background-image:url(../images/video_icon.svg);
}
.content_list_icon.download{
	background-image:url(../images/download_icon.svg);
}
.content_list_icon.quiz{
	background-image:url(../images/quiz_icon.svg);
}
.course_video {
	padding-top: 56.6%;
    background-position: center;
    background-size: cover;
}
.course_side_price{
	position:relative;
	font-size:32px;
	color: var(--brandColor500);
	line-height:100%;
	font-weight:bold;
}
.course_side_price::after{
	content:'';
	position:absolute;
	top:0;
	right:-13px;
	height:100%;
	width:1px;
	background:#222;
}
.course_side_price::after{
	display:none;
}
.after_button_text{
	font-size:12px;
}
/*** CONTACT FORM ***/
.contact_form_section{
	padding:90px 0;
	background:url(../images/contact_bg.svg);
	background-position:0 -30px;
	background-size:auto 100%;
	background-repeat:no-repeat;
}
.contact_link{
	line-height:150%;
}
.contact_link i{
	width: 18px;
    height: 30px;
    display: inline-flex;
    color: var(--brandColor500);
    font-size: 18px;
    transform: translateY(5px);
    margin-right: 10px;
    justify-content: center;
}
.contact_form_wrapper .gform_wrapper.gravity-theme .gfield_label{
	font-weight:normal;
	font-size:14px;
}
.contact_form_wrapper .gform_wrapper.gravity-theme .gfield input,
.contact_form_wrapper .gform_wrapper.gravity-theme .gfield input:focus,
.contact_form_wrapper .gform_wrapper.gravity-theme .gfield select{
	border: 1px solid var(--brandColor500);
    height: 40px;
    border-radius: 5px;
    padding: 0 15px;
	outline:none;
	font-size:14px;
    color: var(--gray500);
}
.contact_form_wrapper .gform_wrapper.gravity-theme .gfield textarea.large{
	border: 1px solid var(--brandColor500);
    height: 100px;
    border-radius: 5px;
	font-size:14px;
    padding: 15px;
}
.contact_form_wrapper .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 20px;
}
.contact_form_wrapper .gform_wrapper.gravity-theme .gfield input[type="checkbox"]{
	width:18px;
	height:18px;
}
.gfield_consent_label{
	font-size:14px;
}
.gfield_consent_label a{
	text-decoration:underline;
}

/*** DISCOVERY CALL ***/
.discovery_call_section{
	padding:90px 0 60px;
	background:url(../images/contact_bg.svg);
	background-position:0 -30px;
	background-size:auto 100%;
	background-repeat:no-repeat;
}

/*** TESTIMONIAL SLIDER ***/
.testimonials_slider_section{
	padding:60px 0;
	margin:80px 0;
	background:var(--gray400);
	overflow:hidden;
}
.testimonials_slider_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--gray400);
    transform: rotate(2deg) translateY(-35%);
    z-index: 0;
}
.testimonials_slider_section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--gray400);
    transform: rotate(2deg) translateY(35%);
    z-index: 0;
}
.testimonial_slide{
	color:#000;
}
.testimonial_slide_content{
	padding:80px 0 30px;
	margin-bottom:30px;
}
.testimonial_slide_content::before{
	content:'';
	position:absolute;
	top:0;
	left:calc(50% - 20px);
	width: 40px;
	height: 40px;
	background-image:url(../images/quotes.svg);
	background-position:center;
	background-size:contain;
	background-repeat:no-repeat;
}
.testimonial_slide_content::after{
	content:'';
	position:absolute;
	bottom:1px;
	left:calc(50% - 100px);
	width:200px;
	height:1px;
	background:#000;
}
.testimonial_slide_content p{
	font-size: 24px;
    font-weight: bold;
}
.testimonial_slide .testimonial_author{
	font-size:18px;
	font-weight:bold;
}
.testimonial_slide .testimonial_subtitle{
	font-size:18px;
	margin-top:10px;
	line-height:130%;
}
.author_image img{
	width:65px;
	height:65px;
	border-radius:50%;
}
.slick-dots{
	display:flex;
	justify-content:center;
	align-items:center;
	list-style:none;
	margin:50px 0 0 0;
	padding:0;
}
.slick-dots li button{
	position:relative;
	width:20px;
	height:20px;
	background:none;
	border:none;
	color:transparent;
	padding:0;
	cursor:pointer;
}
.slick-dots li button::after{
	content:'';
	position:absolute;
	top:calc(50% - 4px);
	left:calc(50% - 4px);
	width:8px;
	height:8px;
	border-radius:50%;
	background:#000;
	opacity:0.3;
	transition:all 0.5s
}
.slick-dots li.slick-active button::after{
	opacity:1;
}

/*** REGULAR PAGES ***/
.page_title{
	color:var(--brandColor800);
	font-size:45px;
}
.page_content_wrapper{
	padding:90px 0;
}
.page_content p{
	font-size:16px;
	line-height:150%;
}
.page_content p:empty{
	display:none;
}
.page_content strong{
	color:#000
}
.page_content ul,
.page_content ol{
	margin-top:0;
}
.page_content hr {
    margin: 1rem 0;
    color: inherit;
    opacity: .25;
}

/*** MODAL ***/
.form_modal{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(255,255,255,0.8);
	z-index:99;
	visibility:hidden;
	opacity:0;
	transition:all 0.5s;
}
.form_modal.open{
	visibility:visible;
	opacity:1;
}
.form_modal_content{
	position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 20px);
    max-width: 770px;
    background: #FFF;
    padding: 40px;
    border: 1px solid var(--brandColor800);
    border-radius: 8px;
    transform: translate(-50%, -50%);
    max-height: calc(100vh - 100px);
    overflow: auto;
}
.close_modal{
	position:absolute;
	top:15px;
	right:15px;
	width:25px;
	height:25px;
	background-image:url(../images/modal_close.svg);
	background-size:14px;
	background-repeat:no-repeat;
	background-position:center;
	cursor:pointer;
}
.form_modal_content .section_title{
	font-size:40px;
	font-family:var(--primaryFont);
}
.form_modal_content .content_wrapper p{
	font-size:17px
}
.gfield_html {
	font-size: 13px;
    line-height: 150%;
}
.gform_footer{
	justify-content:center;
	padding-bottom: 0 !important;
}
.form_modal_content .contact_form_wrapper .gform_wrapper.gravity-theme .gfield input,
.form_modal_content .contact_form_wrapper .gform_wrapper.gravity-theme .gfield input:focus,
.form_modal_content .contact_form_wrapper .gform_wrapper.gravity-theme .gfield select {
    border: 1px solid var(--brandColor800);
}

.qubely-block-text-title{
	line-height:130%;
}
.wp-block-advgb-table img{
	float:none;
}
.testimonial_image img{
	width:80px;
	border-radius:50%;
}

#menu-item-18972{
	margin-right:-15px;
}

/*** WOOCOMMERCE **/
.related.products{
	padding:90px 0;
}
.woocommerce div.product{
	padding-top:60px;
}
.product_cat-client-subs .quantity{
	display:none;
}
.woocommerce-product-details__short-description{
	margin-bottom:20px;
}
.woocommerce-account #regular_page_header{
	display:none;
}
.woocommerce-account .page_content_wrapper {
    padding: 60px 0;
}
.woocommerce form .form-row input.input-text, 
.woocommerce form .form-row textarea {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
	padding:0 10px;
    outline: 0;
    height: 40px;
    line-height: normal;
    border: 1px solid #CCC;
    border-radius: 5px;
}
.woocommerce form .form-row textarea{
	height:80px
}
fieldset{
	margin-bottom:30px
}

/*** PRODUCT PAGE ***/
.woocommerce div.product form.cart .variations label {
    font-weight: normal;
    font-size: 16px;
}
.variations .label{
	text-align:left;
}
.variations td,
.variations th{
	padding:5px 0;
}
.variations select{
	cursor: pointer;
    height: 40px;
    border: 1px solid #CCC;
    border-radius: 5px;
    padding: 0 10px;
}
.woocommerce-variation-add-to-cart{
	display: flex;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
}
.woocommerce-variation-add-to-cart .quantity .qty{
	height: 50px;
    box-sizing: border-box;
    width: 100px;
    border: 1px solid #CCC;
    border-radius: 5px;
    text-align: center;
    padding: 0;
}
.woocommerce-variation-add-to-cart .single_add_to_cart_button {
	height: 50px;
    line-height: 20px;
    width: calc(100% - 110px);
}
.woocommerce div.product form.cart{
	margin-bottom:10px;
}
.woocommerce-variation.single_variation{
	margin-top:10px;
}

/** FORM FIELDS ***/
.form_field_label{
	float:left;
	width:100%;
	font-size:12px;
	margin-bottom:5px;
}
.form_field{
	margin-bottom:15px;
}
.form_field .text-input{
	float:left;
	width:100%;
	padding:0 10px;
	box-sizing:border-box;
	line-height:40px;
	border:1px solid #CCC;
	border-radius:3px;
}
.form_field textarea{
	float:left;
	width:100%;
	padding:10px;
	box-sizing:border-box;
	line-height:150%;
	border:1px solid #CCC;
	border-radius:3px;
	min-height:200px;
}
.repeater_list{
	float: left;
    width: 100%;
    padding: 10px 20px;
    margin: 0 0 20px 0;
    min-height: 80px;
    background: #f7f7f7;
    list-style: none;
}
.repeater_list li{
	position:relative;
	background: #FFF;
    border: 1px solid #e6e6e6;
}
.repeater_template{
	display:none;
}
.delete_repeater_item {
    position: absolute;
    top: 44px;
    right: 17px;
    width: 30px;
    height: 30px;
    background: red;
    color: #FFF !important;
    text-align: center;
    line-height: 30px;
    padding: 0;
    border-radius: 50%;
}
.fileuploader-icon-remove{
	font-family:fontawesome;
	font-style: normal;
}
.fileuploader-icon-remove:before{
	content:'\f00d';
}
#certifications_list .fileuploader-items .fileuploader-items-list {
    padding: 0 5px;
    margin: 10px 0 0 0;
}
.fileuploader-is-uploading{
	position:relative;
	opacity:0.8;
}
.fileuploader-is-uploading:after{
	content:'';
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%, -50%);
	width:40px;
	height:40px;
	border-width:5px;
	border-style:solid;
	border-color:#007b87 #007b87 #007b87 transparent;
	border-radius:50%;
	-webkit-animation: loadingRotate 1s infinite ease;
	-moz-animation: loadingRotate 1s infinite ease;
	-o-animation: loadingRotate 1s infinite ease;
}
#save_profile_button.disabled{
	opacity:0.5;
	pointer-events:none;
}
#saved_success{
	display:none;
}
#saved_success h3{
	color:#FFF;
	padding:10px;
	background:#007B87;
}
#certifications_list  .fileuploader-items .fileuploader-item,
#certifications_list  .fileuploader-items .fileuploader-item:last-child{
	width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid #ebeef1;
}
.woocommerce-MyAccount-content fieldset{
    float: left;
    width: 100%;
	padding: 0;
    border: none;
    margin: 10px 0 0 0;
}
.woocommerce-MyAccount-content fieldset legend{
	font-size: 16px;
    margin-bottom: 20px;
}
.form_footer{
	margin-top:20px;
}
.ajax_form {
    position: relative;
}
.ajax_form:before{
	content:'';
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(255,255,255,0.8);
	z-index:2;
	visibility: hidden;
	opacity: 0;
}
.ajax_form:after{
	content:'';
	position: absolute;
	top:calc(50% - 25px);
	left:calc(50% - 25px);
	width:40px;
	height:40px;
	border-width: 5px;
	border-style: solid;
	border-color: #7157aa #7157aa #7157aa transparent;
	border-radius: 50%;
	z-index:3;
	-webkit-animation: loadingRotate 1s infinite ease;
	-moz-animation: loadingRotate 1s infinite ease;
	-o-animation: loadingRotate 1s infinite ease;
	visibility: hidden;
	opacity: 0;
}
.ajax_form.loading:before,
.ajax_form.loading:after{
	opacity: 1;
	visibility: visible;
}
@-webkit-keyframes loadingRotate {
	from{
		transform: rotate(0deg)
	}
	to{
		transform: rotate(359deg)
	}
}
@-moz-keyframes loadingRotate {
	from{
		transform: rotate(0deg)
	}
	to{
		transform: rotate(359deg)
	}
}
@-o-keyframes loadingRotate {
	from{
		transform: rotate(0deg)
	}
	to{
		transform: rotate(359deg)
	}
}

.woocommerce-MyAccount-content .button{
	padding: 10px 20px;
    font-size: 14px;
}
.woocommerce-privacy-policy-text p{
	font-size:13px
}
.woocommerce-form-register__submit{
	margin-top:20px;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
    float: none;
    margin-right: 0;
}

@media(max-width:1200px) {
	#header_menu {
		font-size: 11px;
		gap: 18px;
	}
	#header_menu > .button_link a{
		padding: 6px 8px;
    	font-size: 11px;
	}
}

@media(max-width:992px) {
	h1 br,
	h2 br,
	h3 br,
	h4 br,
	h5 br{
		display:none;
	}
	#announcement_bar {
    	height: auto;
    	padding: 10px 0;
	}
	.section_subtitle {
    	font-size: 28px;
	}
	.admin-bar #announcement_bar {
		top: 46px;
	}
	.with_announcement_bar.admin-bar #header {
		top: 102px;
	}
	.with_announcement_bar #header {
		top: 55px;
	}
	.admin-bar.with_announcement_bar #page_wrapper {
		padding-top: 105px;
	}
	p {
		font-size: 18px;
	}
	.with_announcement_bar.admin-bar.float_active #header {
		top: 0;
	}
	.landing_section h1 {
		font-size: 36px;
	}
	.landing_section .content_wrapper p {
		font-size: 22px;
	}
	.button {
		font-size: 14px;
		padding: 10px 20px;
	}
	.top_decoration_item {
    	height: 50px;
	}
	.top_decoration.rect_decoration .top_decoration_item::after {
    	height: 50px;
	}
	.section_title {
		font-size: 31px;
	}
	.side_sticky_content,
	.admin-bar .side_sticky_content{
		position: relative;
		top:0;
	}
	.slick-arrow{
		display: none !important;
	}
	.bullet_item_content p {
		font-size: 18px;
	}
	.side_bullets_section,
	.columns_section,
	.text_image_section,
	.blog_section{
		padding:70px 0
	}
	.va_spotlight_section{
		padding-top:90px
	}
	.bullet_number {
		width: 40px;
		height: 40px;
		font-size: 25px;
	}
	.widgets_area_5 {
		padding-top: 0;
		margin-top: 10px;
	}
	.column_bullets_section h5 {
		font-size: 18px;
	}
	.testimonial_content p {
		font-size: 20px;
	}
	.testimonial_author_main {
		font-size: 14px;
	}
	.side_boxes_section.top_decoration::before {
		height: 6%;
	}
	.landing_section.mobile_overlay::after{
		content:'';
		position:absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
		background:rgba(255,255,255,0.6);
	}
	.how_it_works_row_section img{
		max-width:60%
	}
	.course_info_section::before {
		top: -1%;
		height: 3%;
	}
	.course_info_section .content_wrapper h3 {
    	font-size: 26px;
	}
	.includes_list ul {
	    columns: 1;
	}
	.cta_section{
		background-image:none !important;
	}
	#footer_menu a:not(:last-child)::after{
		display:none;
	}
	.form_modal_content .section_title {
    	font-size: 28px;
	}
	
	.about_landing_section h1 {
    	font-size: 32px;
	}
	.about_landing_section h2 {
    	font-size: 19px;
	}
}

/* Comprehensive fix for all hero H1s across the site */
section[class*="landing"] h1,
.landing_section h1,
.about_landing_section h1,
#block_7f2bf6524d4e8ad7db4d3fe2841185ec h1,
#block_464ff4c27ae052e83227d7e742fcf961 h1 {
	font-family: var(--secondaryFont) !important;
	font-weight: 700 !important;
}
	.landing_section{
		background-image:none !important
	}
	.gform_wrapper {
		width:100%;
	}
	.gform_wrapper.gravity-theme #field_submit, .gform_wrapper.gravity-theme .gform_footer{
		justify-content:center;
	}
	#footer_newsletter_input_wrapper .button{
		width:50%;
	}
	.cta_section .content_wrapper p {
	    font-size: 24px;
	}
	.side_boxes_section.big_main_text .side_sticky_content p {
		font-size: 20px;
	}
	.icon_boxes_grid_section {
		padding: 70px 0;
	}
	.author_signature::before{
		display:none;
	}
	.footer_widget {
		text-align:left;
	}
	
	.footer_cta_buttons .button {
		width: 100%;
		max-width: 200px;
		text-align: center;
		font-size: 14px;
		padding: 10px 16px;
	}
}
	.landing_section.course_landing {
    	padding:60px 0 100px 0;
	}
	.testimonials_slider_section {
    	margin: 10px 0;
	}
	.container{
		padding:0 30px;
	}
	#last_step{
		padding-top:0;
	}
	.page_title {
    	font-size: 30px;
	}
	
	/*** WOOCOMMERCE ***/
	.woocommerce ul.products {
		grid-template-columns: repeat(1, minmax(0, 1fr));
	}
	.product_title {
		font-size:25px;
	}
}

@media(max-width:480px) {	
	.checklist_wrapper ul li {
    	width: 100%;
	}
}

/* ===== CONSOLIDATED STYLES FROM LAYOUT.CSS ===== */





.faq_items {
  margin-top: 40px;
}

.faq_item {
  border-bottom: 1px solid #eee;
  padding: 20px 0;
}

.faq_item h3 {
  font-size: 20px;
  color: var(--brandColor800);
  margin-bottom: 10px;
  cursor: pointer;
}

.faq_content {
  color: var(--gray500);
}





/* ===== CONSOLIDATED STYLES FROM BASELAYOUT ===== */

/* column_bullets_section styles already exist above, no need to duplicate */









/* section_title styles already exist above, no need to duplicate */



.icon_box_item_icon {
  margin-bottom: 20px;
}

.icon_box_item_icon img {
  width: 90px;
  height: 90px;
}

.icon_box_item_title {
  font-size: 24px;
  line-height: 130%;
  font-weight: 700;
  color: var(--brandColor800);
  margin-bottom: 15px;
}





.side_sticky_content {
  top: 100px;
}



.image_section_decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--brandColor400);
  opacity: 0.3;
}



.bullet_item {
  margin-bottom: 30px;
  padding: 20px;
  text-align: center;
}

.bullets_grid_section .bullet_item {
  background: #FFF;
  border-radius: 12px;
  padding: 30px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bullets_grid_section .bullet_number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--brandColor500);
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}

.bullets_grid_section .bullet_item_content h4 {
  color: var(--brandColor800);
  font-size: 20px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.bullets_grid_section {
  padding: 80px 0;
  background: var(--gray300);
}

.bullets_grid_section .section_title {
  color: var(--brandColor800);
  line-height: 1.3;
}

.bullets_grid_section .section_header_content p {
  color: var(--gray500);
  line-height: 1.5;
}

.bullets_grid_section .bullet_item_content p {
  color: var(--gray500);
  font-size: 16px;
  line-height: 1.5;
}

.bullet_number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--brandColor500);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 18px;
}



/* ===== CONSOLIDATED STYLES FROM V1_STYLES.CSS ===== */

/***** START A TRIAL *****/
.trial-hero {
	margin: 80px 0 140px 0;
    text-align: left;
    color: #5d5e61;
}
.trial-hero  h2{
	font-size: 2em;
    font-family: 'Arvo', serif;
    font-weight: 600;
    margin: 0 0 60px 0;
}
.trial-hero  h1{
	font-family: 'Arvo', serif;
    font-weight: lighter;
    font-weight: 600;
    font-size: 28px;
    margin: 0 0 20px 0;
}
.trial-hero-image-back {
    text-align: right;
    z-index: 0;
    top: -0;
    position: absolute;
    right: 0;
    width: 800px;
    height: 800px;
    background-repeat: no-repeat;
    background-position: 280px;
	background-size: cover;
}
.trial-hero .trial-hero-title {
    padding: 0;
    margin: 0;
    line-height: 1;
	font-weight: 400;
	color: #5d5e61;
	font-family: 'Montserrat';
}

.trial-hero .heading-title{
	padding: 0;
    margin: 0;
    line-height: 1;
	font-family: 'Arvo', serif;
	font-weight: 600;
	color: #5d5e61;
	margin-bottom: 30px;
}

.trial-hero p a{
	color: #007b87;
	font-weight: 700;
	text-decoration: none;
}

.iframe-section{
	margin: 0 0 80px 0;
}
.filter-group .widget-module {
    width: 100% !important;
}

@media(max-width:992px) {
	.trial-hero  h2{
		font-size: 20px;
	}
	.trial-hero  h1{
		font-size: 19px;
	}
}

/***** HOW IT WORKS / WHAT'S INCLUDED *****/
.what-is-included .subtitle{
	font-weight: 600;
    letter-spacing: 0;
    padding: 0;
    margin: 0;
    line-height: 1;
    text-align: left;
    color: #5d5e61;
    font-size: 27px;
    font-family: 'Arvo', serif;
}
.what-is-included .subtitle-container{
	padding: 0px 0px 40px 0px;
}
.what-is-included ul li{
	display: block;
	margin: 0;
	padding: 0;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.what-is-included-item-inner{
	margin-bottom: 37px;
}
.what-is-included-icon-wrapper{
	margin-right: 16px;
	width: 32px;
	height: 32px;
}
.what-is-included-description{
	color: #282829;
	font-size: 21px;
	font-weight: 500;
	line-height: 25px;
	margin: 0;
}
.what-is-included-content-wrapper p{
	color: #5d5e61;
	font-size: 16px;
	font-weight: 500;
	line-height: 140%;
	margin: 0;
}
.what-is-included-content-wrapper strong{
	float:left;
	width:100%;
	font-weight:600;
	color:#282829;
	font-size:21px;
	margin-bottom:8px;
}

/***** SERVICES *****/
.services-hero {
	padding: 160px 0 200px 0;
    text-align: left;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}
.services-hero-image-back{
	text-align: right;
	z-index: 0;
	top: -0;
	position: absolute;
	right: 0;
	width: 800px;
	height: 800px;
	background-repeat: no-repeat;
	background-position: 0 -310px;
}
.services-hero .heading-title {
	padding: 0;
	margin: 0;
	line-height: 1;
	color: #004B47;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 20px;
}
.services-hero .services-hero-title {
	padding: 0;
	margin: 0;
	color: #004B47;
	font-family: 'Arvo', serif !important;
	font-weight: 700 !important;
	font-size: 56px;
	line-height: 65px;
	margin-bottom: 20px;
}
.services-hero .heading-subtitle {
	padding: 0;
	margin: 0;
	font-size: 28px;
	font-weight: 400;
	line-height: 43px;
	color: #5d5e61;
}
.services-hero p {
	color: #5d5e61;
}
.service-card-wrapper{
	margin-bottom: 80px;
}
.service-card-wrapper:nth-last-child(-n+3) {
    margin-bottom: 0;
}

/*** SERVICES EXCERPT ***/
.services-excerpt{
    padding: 75px 0;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.services-excerpt h2 {
    font-family: 'Montserrat', sans-serif;
    color: #004B47;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin: 0 0 50px;
}
.service-card {
  padding: 0 30px 30px;
  text-align: center;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 36px 0px rgb(0 0 0 / 10%);
  height: 100%;
}
.service-img {
  transform: translateY(-50%);
  width: 80px;
  height: auto;
}
.service-card h3 {
  margin: 0;
  color: #282829;
  letter-spacing: 0px;
  margin-bottom: 20px;
  font-family: "Montserrat", Montserrat Light;
  font-size: 21px;
  font-weight: 600;
}

/*** GUARANTEE ***/
.guarantee {
    background-color: #F3F6F2;
    padding: 60px 0;
}
.guarantee .subtitle {
    color: #004B47;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    padding: 0;
    margin: 0;
    line-height: 1;
    text-align: left;
    margin-bottom: 20px;
}
.guarantee .intro-p {
    line-height: 21px;
    padding: 0;
    margin: 0;
    font-size: 16px;
    letter-spacing: 0px;
    font-weight: 400;
    color: #5d5e61;
}
.guarantee-title-container {
    padding-left: 30px;
}
.heading-title {
    color: #282829;
    font-size: 24px;
    padding: 0;
    margin: 0;
    line-height: 1;
    text-align: left;
}
.guarantee-list-container ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.guarantee-list-container ul li {
    list-style-type: none;
    padding-left: 30px;
}
.our-values-item-inner {
    margin-bottom: 37px;
}
.our-values-icon-wrapper {
    margin-right: 16px;
    width: 32px;
    height: 32px;
}
.guarantee .list-title {
    color: #282829;
    font-size: 21px;
    font-weight: 600;
}
.guarantee .list-txt {
    color: #5d5e61;
    font-size: 16px;
    line-height: 21px;
    letter-spacing: 0px;
}

/**** CTA ***/
.cta {
    padding: 75px 0;
}
.cta h2 {
    margin: 0;
    color: #004B47;
    font-family: "Montserrat", Montserrat Light;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}
.cta p {
    margin: 30px 0;
}

/***** SINGLE ASSISTANT PAGE *****/
.single-assistant{
	padding: 0 0 25px 0;
}

.single-assistant .member-photo img{
	border-radius: 400px;
	height: auto;
}
.single-assistant .meet-title{
	padding: 0;
	margin: 0;
	line-height: 1;
	color: #004B47;
	font-size: 40px;
	margin-bottom: 20px;
}
.single-assistant .meet-name{
	padding: 0;
	margin: 0;
	line-height: 1;
	color: #004B47;
	font-size: 56px;
	margin-bottom: 20px;
}
.single-assistant .meet-position{
	font-family: "Montserrat", Montserrat Light;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 1.3px;
	padding: 0;
	line-height: 1;
	color: #5d5e61;
	font-size: 18px;
	font-family: 'Arvo', serif;
}
.single-assistant .member-info-container{
	display: flex;
	flex-direction: row;
}
.single-assistant .meet-container{
	border-bottom: 1px solid #d3d0d0;
	padding-bottom: 30px;
}
.assistant-location{
	display: flex;
	padding: 6px;
}
.assistant-since{
	display: flex;
	padding: 6px;
}
.assistant-location > div,
.assistant-since > div{
	padding: 6px;
}
.quote-icon svg {
	width: 2em;
	height: 2em;
	position: relative;
	display: block;
}
.taking-clients{
	display: flex;
    margin: 20px 0;
}
.taking-clients .available{
	margin-left: 10px;
	font-weight: 600;
	line-height: 70px;
	color: #007B87;
}
.taking-clients .not-available{
	margin-left: 10px;
	font-weight: 600;
	line-height: 70px;
	color: #ff6b6b;
}
.back-to-va a{
	color: #242424;
	text-decoration: none;
}
.back-to-va a svg{
	margin-right: 15px;
}
.v-assistant-info{
	position: relative;
	width: 100%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-line-pack: start;
	align-content: flex-start;
}
.v-assistant-info .title{
	padding: 0;
	margin: 0;
	font-family: "Montserrat", Montserrat Light;
	font-weight: 600;
	color: #282829;
	font-size: 21px;
	line-height: 25px;
	letter-spacing: 0px;
	border-bottom: 3px solid #ECF1F3;
	padding-bottom: 10px;
}
.v-assistant-info .about-title{
	font-size: 40px;
    position: relative;
    margin-bottom: 20px;
    line-height: 130%;
}
.v-assistant-info .p{
	font-family: "Montserrat", Montserrat Light;
	letter-spacing: 1.3px;
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	color: #5D5E61;
}
.linkedin-button{
	float: right;
}
.v-assistant-cta{
	position: relative;
}
.v-assistant-cta img{
	width: 100%;
	height: auto;
}
.va-name-cta-container{
	position: relative;
	margin: 0 0px 0px 35px;
	width: 100%;
	position: absolute;
	top: 141px;
}
.va-name-cta-container h2{
	font-family: 'Arvo', serif;
    padding: 0;
    margin: 0;
    line-height: 1;
    color: #282829;
}
.single-assistant .subtitle-container .subtitle{
	text-align: center;
	width: 100%;
	padding: 0;
	margin: 0;
	line-height: 1;
	color: #004B47;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
}

.single-assistant .certifications{
	border-bottom: 1px solid #d3d0d0;
}
.certifications-wrapper{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}
.certifications-wrapper img {
	max-width: 100%;
}
.cert-item{
	width: 25%;
}

/*** TESTIMONIALS ***/
.testimonials {
	padding: 75px 0;
	text-align: center;
	position: relative;
	background: #F9F7EF;
	overflow: hidden;
}
.testimonials .slant {
	position: absolute;
	top: 0;
	left: 0;
	width: 120%;
	height: 20vw;
	margin: 0 !important;
}
.testimonials.singlepage .slant{
	display: none;
}
.testimonials .container {
	position: relative;
	z-index: 3;
}
.testimonials h2 {
	color: #004B47;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-family: 'Montserrat', sans-serif;
}
.testimonials svg {
	margin: 35px 0;
}
.testimonials p {
	font-weight: 600;
	font-size: 18px;
	line-height: 35px;
	font-weight: 600;
	color: #282829;
}
.testimonials hr {
	border-top: 3px solid #007b87;
	max-width: 300px;
	margin: 35px auto;
	opacity: 1;
}
.testimonials .slick-dots li button:before {
	font-size: 40px;
}
.testimonials .test-name,
.testimonials .test-title {
	font-size: 16px;
	line-height: 28px;
	margin: 0;
	color: #5d5e61;
}
.testimonials .test-title {
	font-weight: 400;
}
.testimonials .test-img {
	width: 75px;
	height: 75px;
	border-radius: 100%;
	margin: 35px auto;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}

/*** BLOG GRID ***/
.blog-excerpt {
	padding: 75px 0;
	background: #F9F7EF;
}
.blog-excerpt.white{
	background: #ffffff;
}
.blog-excerpt h2 {
	font-family: 'Montserrat', sans-serif;
	color: #004B47;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin: 0 0 50px;
}
.blog-excerpt .blog-thumb {
	height: 225px;
	display: block;
	margin-bottom: 15px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
}
.blog-excerpt .blog-title {
	font-weight: 600;
	font-size: 24px;
	color: #007b87;
	text-decoration: none;
	display: block;
	line-height: 110%;
}

/***** VIRTUAL ASSISTANTS *****/
.team-hero{
	margin: 100px 0;
}
.the-team p.subtitle{
	margin-bottom:20px;
}
.team-hero h2{
	padding: 0;
		margin: 0;
		line-height: 1;
	color: #004B47;
		font-size: 20px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 4px;
	margin-bottom: 20px;
}
.team-hero h1{
	padding: 0;
	margin: 0;
	color: #004B47;
	font-family: 'Arvo', serif;
	font-size: 56px;
	line-height: 78px;
	margin-bottom: 20px;
}
.team-hero p{
	padding: 0;
	margin: 0;
	font-size: 28px;
	font-weight: 400;
	line-height: 43px;
	color: #5d5e61;
}
.team-hero .container{
	position: relative;
}
.hero-background-image{
	position: absolute;
	right: 0;
	top: 0;
	width: 80%;
	height: 100vh;
	background-position: 300px -400px;
	background-repeat: no-repeat;
	z-index: -1;
}
.meet-team-grid-wrapper{
	background-position: top center;
	background-repeat: no-repeat;
	background-size: auto;
}
.meet-our-team .section-title h2{
	color: #004B47;
	font-size: 20px;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-family: "Montserrat", Montserrat Light;
}
.team-intro-text{
	font-size:17px;
	text-align: center;
    line-height: 21px;
    font-weight: 400;
    color: #5d5e61;
    margin-bottom: 70px !important;
}


/*** ASSISTANTS FILTER ***/
.section_filter {
	padding:0 30px;
	margin-bottom: 20px;
}
.filters_header{
	margin-bottom:10px;
}
.filters_trigger,
.sort_trigger{
	color: #007b87;
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 2px;
	text-decoration: none;
	font-weight: 600;
	line-height:32px;
}
.filters_trigger:hover,
.sort_trigger:hover{
	color: #007b87;
}
.filters_trigger{
	display:inline-flex;
}
.filters_trigger span{
	display:inline-block;
}
.filters_trigger .plus_toggle{
	margin-top:2px;
}
.filters_trigger ..plus_toggle:before,
.filters_trigger .plus_toggle:after{
	top: 6px;
	height: 13px;
}
.filters_body {
	display:none;
	border: 2px solid #e1e5e6;
	border-radius: 6px;
	margin-bottom:50px;
}
.filters_accordeon_item{
	margin-bottom:30px;
}
.filters_accordeon_item_header{
	padding: 5px 0;
	border-bottom: 1px solid #ecf5f6;
	line-height:25px;
	cursor:pointer;
}
.filters_accordeon_item_header span{
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
}
.plus_toggle{
	position:relative;
	display:inline-block;
	width:25px;
	height:25px;
}
.plus_toggle:before{
	content: '';
	position: absolute;
	top: 5px;
	left: 12px;
	width: 2px;
	height: 15px;
	background: #007b87;
	transition:all 0.3s;
}
.open .plus_toggle:before{
	transform: rotate(90deg);
}
.plus_toggle:after{
	content: '';
	position: absolute;
	top: 5px;
	left: 12px;
	width: 2px;
	height: 15px;
	background: #007b87;
	transform: rotate(90deg);
}
.filters_accordeon_item_body{
	display:none;
	padding:15px 0;
}
.filters_accordeon_item_body label{
	display: flex;
	font-size: 17px;
	color: #5d5e61;
	margin-bottom: 15px;
	line-height:20px;
	cursor:pointer;
}
.filters_accordeon_item_body label input{
	display:none;
}
.filters_accordeon_item_body label i{
	display:inline-block;
	width:20px;
	height:20px;
	border:1px solid #e1e5e6;
	border-radius:3px;
	color:#007b87;
}
.filters_accordeon_item_body label i:before{
	opacity: 0;
	transform: scale(0);
	font-size: 14px;
	margin: 0 0 0 3px;
}
.filters_accordeon_item_body label input:checked + i:before{
	opacity:1;
	transform:scale(1);
}

.filters_accordeon_item_body label span{
	display:inline-block;
	margin-left:7px;
}
.filters_footer .button{
	padding: 10px 25px;
	background: none;
	border: 2px solid #007b87;
	color: #007b87;
	text-transform: uppercase;
	border-radius: 7px;
	font-size: 18px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	letter-spacing: 1px;
	transition:all 0.5s;
}
.filters_footer .button:hover{
	color:#FFF;
	background: #007b87;
}
.filters_cancel{
	color: #007b87;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
}

/*** END OF FILTERS ***/

.assistants-list-wrapper{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
}

.assistants-list-wrapper article{
	padding-left: 18px;
	padding-right: 18px;
	margin-bottom: 35px;
	width: 50%;
}

.assistants-list-wrapper article > div{
	box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 8%);
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	padding: 32px 20px 37px 24px;
	background-color: #ffffff;
}

.meet-our-team .assistant-container{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: center;
}

.assistant-photo{
	width: 40%;
	text-align: center;
}

.assistant-photo img{
	border-radius: 200px;
	object-fit: cover;
	display: block;
	width: 150px;
	margin: auto;
	margin-bottom: 20px;
	height: 150px;
}

.assistant-photo a{
	padding: 0;
	margin: 0;
	line-height: 1;
	color: #007B87;
	font-weight: 600;
	text-decoration: underline;
	text-align: center;
	text-transform: uppercase;
}

.assistant-container .assistant-info{
	width: 60%;
	text-align: left;
}

.assistant-container p{
	margin: 0;
	line-height: 140%;
    font-size: 16px;
    color: #000;
}

.v-assistant-top-skills{
	line-height: 27px;
}

.assistant-container .v-assistant-name{
	padding: 0;
	margin: 0;
	color: #282829;
	font-size: 21px;
	line-height: 24px;
	font-family: 'Arvo', serif;
	font-weight: bold;
}

.assistant-container .v-assistant-position{
	padding: 0;
	font-family: "Montserrat", Montserrat Light;
	letter-spacing: 1.3px;
	color: #5D5E61;
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}
.assistant-container .v-assistant-title{
	padding: 15px 0px 15px 0px;
	margin: 0;
	line-height: 1;
	font-family: "Montserrat", Montserrat Light;
	color: #282829;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.v-assistant-info  p{
	font-size:16px;
}

/*** ABOUT US FULL WIDTH IMAGE ***/
.fw-image{
	background-position: center 0;
	background-size: 100% auto;
	transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
	margin-top: 0;
	margin-bottom: 0;
	padding: 0;
	position: relative;
}

.image-container{
	max-width: 1162px;
	min-height: 477px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	display: flex;
	position: relative;
}

.fw-image-txt h2{
	color: #FFFFFF;
	font-size: 40px;
	line-height: 60px;
	padding: 0;
	margin: 0;
	font-weight: 600;
}

.background-overlay{
	height: 100%;
	width: 100%;
	top: 0;
	left: 0;
	position: absolute;
	background-color: rgba(40, 40, 41, 0.35);
	opacity: 1;
	transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}

/***** ABOUT US  OUR VALUES *****/

.our-values .subtitle{
	color: #004B47;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	padding: 0;
	margin: 0;
	line-height: 1;
	text-align: center;
}

.our-values .subtitle-container{
	padding: 60px 0px 60px 0px;
}

.our-values ul li{
	display: block;
	margin: 0;
	padding: 0;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.our-values-item-inner{
	margin-bottom: 37px;
}

.our-values-icon-wrapper{
	margin-right: 16px;
	width: 32px;
	height: 32px;
}

.our-values-description{
	color: #282829;
	font-size: 21px;
	font-weight: 500;
	line-height: 25px;
	margin: 0;
}

.our-values-content-wrapper p{
	color: #282829;
	font-size: 21px;
	font-weight: 500;
	line-height: 25px;
	margin: 0;
}

/***** ABOUT US THE TEAM *****/

.the-team .team-wrap{
	position: relative;
	width: 100%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-line-pack: center;
	align-content: center;
	text-align: center;
	flex-direction: column;
}

.the-team .subtitle-container .intro-p{
	line-height: 21px;
	padding: 0;
	padding-bottom: 25px;
	text-align: center;
	font-size: 16px;
	color: #5d5e61;
}

.the-team .subtitle{
	color: #004B47;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	padding: 0;
	margin: 0;
	line-height: 1;
	text-align: center;
}

.team-wrap a img{
	height: auto;
	max-width: 100%;
	border: none;
	-webkit-border-radius: 0;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
	vertical-align: middle;
	display: inline-block;
	border-radius: 500px;
}

.team-name{
	color: #282829;
	font-size: 21px;
	padding: 0;
	margin: 0;
	line-height: 1;
	margin-bottom: 4px;
}

.team-name a{
	color: inherit;
	font-size: inherit;
	line-height: inherit;
	text-decoration: none;
}

.team-position{
	font-weight: 600;
	margin: 0;
}

.team-position a{
	font-family: "Montserrat", Montserrat Light;
	font-size: 14px;
	letter-spacing: 1.3px;
	color: #5D5E61;
	font-size: 14px;
	text-decoration: none;
}

.team-single-img-wrapper{
	padding: 20px;
}

/***** SINGLE MEET TEAM PAGE *****/
.single-meet{
	padding: 0 0 25px 0;
}

.member-photo img{
	border-radius: 400px;
	height: auto !important;
}

.meet-title{
	padding: 0;
	margin: 0;
	line-height: 1;
	color: #004B47;
	font-size: 40px;
	margin-bottom: 20px;
}

.meet-name{
	padding: 0;
	margin: 0;
	line-height: 1;
	color: #004B47;
	font-size: 56px;
	margin-bottom: 20px;
}

.meet-position{
	font-family: "Montserrat", Montserrat Light;
	font-size: 28px;
	font-weight: 600;
	letter-spacing: 1.3px;
	padding: 0;
	margin: 0;
	line-height: 1;
	margin-bottom: 20px;
	color: #5d5e61;
}

.member-info-container{
	display: flex;
	flex-direction: row;
}

.meet-container{
	border-bottom: 1px solid #d3d0d0;
	padding-bottom: 80px;
}

.meet-info a {
	color: #004B47;
}
.meet-info p{
	font-size:16px;
}

/*** BLOG ARCHIVES ***/
.filter-group .widget-module {
	position: absolute;
	top: 100%;
	left: 0;
	margin-top: -2px;
	border: 2px solid #007b87;
	float: none;
	width: auto;
	background-color: #FFF;
	min-width: 175px;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.filter-group:hover .widget-module{
	display: block;
	opacity: 1;
	visibility: visible;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}
.filter-group {
	display: inline-block;
	margin: 15px 11px 0;
	position: relative;
}
.filter-group .widget-module ul {
	margin: 0;
	padding: 0;
}
.filter-group .widget-module li {
	white-space: nowrap;
	border-bottom: 1px solid #007b87;
	display: block;
	width: 100%;
	margin: 0;
	float: left;
	clear: both;
	line-height: 1.3;
	height: 0;
	opacity: 0;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.filter-group:hover .widget-module li{
	height: 43.8px;
	opacity: 1;
	-webkit-transition: all 0.4s ease;
	-moz-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.filter-group .widget-module li a {
	display: block;
	width: 100%;
	padding: 11px 14px;
	color: #007b87;
	-webkit-transition: color .5s ease;
	-o-transition: color .5s ease;
	transition: color .5s ease;
	border: 0;
	text-decoration: none;
	font-weight: 600;
}
.filter-group .widget-module li a:hover{
	color: #ffffff;
	background-color: #007b87;
}
.filter-group h3{
	font-weight: 600;
	font-size: 18px;
	width: auto;
	padding: 5px 35px 5px 0;
	cursor: pointer;
	background-color: #FFF;
	color: #007b87;
	text-transform: uppercase;
	line-height: 1;
	margin: 0;
	font-family: Montserrat,serif;
}
.filter-group h3:after {
	font-family: "Font Awesome 5 Free";
	text-transform: none;
	content: "\f078";
	position: absolute;
	right: 10px;
	top: 6px;
	display: none;
	display: block;
}
.filter-row{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.search-field__input{
	border-width: 2px;
	border-style: solid;
	outline: 0;
	min-height: 51px;
	width: 100%;
	padding: 5px 10px;
	box-shadow: none;
	-webkit-box-shadow: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	line-height: normal;
	border-color: #c3cbcc;
	display: block;
	width: 393px;
	max-width: 100%;
	font-family: Montserrat,sans-serif;
	float: right;
	border-radius: 5px;
	font-size: 16px;
}
.blog-item img {
    width: 100%;
    height: auto;
}
.blog-item h2 {
    font-size: 30px;
    -webkit-transition: color .5s ease;
    -o-transition: color .5s ease;
    transition: color .5s ease;
    border: 0;
    font-weight: normal;
    line-height: 1.4;
    font-family: Montserrat, serif;
    font-weight: 600;
	color:var(--brandColor500)
}
.blog-item p:empty{
	display:none;
}
.blog-item p {
	font-size: 16px;
}
.blog-read-more {
    display: block;
    margin-top: 1em;
    text-decoration: none;
    color: #51a0a8;
}
.blog-read-more:hover {
    color: #51a0a8;
}

.how-it-works-hero .btn {
	margin: 10px 0px;
	margin-right: 40px;
}
/***** HOW IT WORKS ******/

.how-it-works-hero {
	padding: 80px 0 150px 0;
    text-align: left;
    background-color: #ffffff;
    overflow: hidden;
    position: relative;
}

.how-it-works-hero-image-back{
	text-align: right;
	z-index: 0;
	top: -0;
	position: absolute;
	right: 0;
	width: 800px;
	height: 800px;
	background-repeat: no-repeat;
	background-position: 0 -10px;
	background-size: contain;
}

.how-it-works-hero .heading-title {
	padding: 0;
	margin: 0;
	line-height: 1;
	color: #004B47;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	margin-bottom: 20px;
}

.how-it-works-hero .how-it-works-title {
	padding: 0;
	margin: 0;
	color: #004B47;
	font-family: 'Arvo', serif;
	font-size: 56px;
	line-height: 65px;
	margin-bottom: 20px;
}

.how-it-works-hero .heading-subtitle {
	padding: 0;
	margin: 0;
	font-size: 28px;
	font-weight: 400;
	line-height: 43px;
	color: #5d5e61;
}

/*** SINGLE PAGE ***/
.blog-header h2,
.blog-header h1{
	font-size: 2em;
    color: #000;
}
.article-header h1{
	font-weight: normal;
	color: #007b88;
	line-height: 1.4;
	font-family: Montserrat,serif;
	margin-top: 0;
	font-size: 34px;
	margin-bottom: 5px;
	font-weight: 600;
}

.byline{
	font-weight: 600;
	font-style: italic;
	font-size: 18px;
	color: #5a3b34;
}

.entry-content h2{
	color: #007b88;
	line-height: 1.4;
	font-family: Montserrat,serif;
	margin: 0 0 10px;
	font-size: 34px;
	font-weight: 400;
}

.entry-content h2 strong{
	font-weight: 600
}

.entry-content h3,
.entry-content h4{
	color: #007b88;
	line-height: 1.4;
	font-family: Montserrat,serif;
	margin: 0 0 10px;
	font-size: 30px;
	font-weight: 400;
}

.entry-content a{
	color: #007b88;
	border-bottom: 2px solid #fff;
	-webkit-transition: border .3s ease;
	-o-transition: border .3s ease;
	transition: border .3s ease;
	text-decoration: none;
}

.entry-content a:hover{
	color: #007b88;
	border-bottom: 2px solid #007b88;
	-webkit-transition: border .3s ease;
	-o-transition: border .3s ease;
	transition: border .3s ease;
	text-decoration: none;
}

p.footer-tags .tags-title{
	font-family: Arvo,serif;
	display: inline;
	padding-right: 5px;
	font-weight: 700;
	color: #5a3b34;
}

p.footer-tags a{
	color: #88ac81;
	-webkit-transition: color .5s ease;
	-o-transition: color .5s ease;
	transition: color .5s ease;
	border: 0 !important;
	font-style: italic;
	text-decoration: none;
	font-weight: 700;
}

.article-footer{
	padding: 25px 0;
}

.blog-aside-content h2{
	font-weight: normal;
	color: #007b88;
	line-height: 1.4;
	font-family: Montserrat,serif;
	margin: 0 0 10px;
	font-size: 30px;
	font-weight: 600;
}

.blog-aside-content{
	border: 2px solid #dedad4;
	position: relative;
	z-index: 10;
	padding: 30px;
}

.article-content{
	padding-right: 60px;
}

.author_image{
	border-radius:50%;
	width:150px;
	margin: 0 auto;
}
.author_bio_section{
	margin-top: 40px;
	width: 100%;
	display: block;
	position: relative;
	background-color: #fff;
	padding-bottom: 40px;
	padding-top: 0;
	overflow: visible;
	font-family: Montserrat,sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.author_bio_section .inner {
	padding: 15px;
	width: 100%;
	margin: 0 auto;
	background-color: #f8f8f8;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 10px rgb(0 0 0 / 30%);
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.3);
	-webkit-box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

.author_bio_section .border {
	padding: 30px;
	border: 2px solid #dedad4;
	position: relative;
}

.author_bio_section .content {
	text-align: center;
}

.author_bio_section .content .author_name{
	color: #007b88;
	-webkit-transition: border .3s ease;
	-o-transition: border .3s ease;
	transition: border .3s ease;
	text-decoration: none;
	font-size: 30px;
	margin-bottom: 10px;
	font-weight: 600;
}

.author_bio_section .content .author_details{
	font-weight: 600;
	font-family: Montserrat,sans-serif;
	font-size: 16px;
	line-height: 1.5;
}

.author-website-link{
	width: 100%;
	display: block;
	overflow: hidden;
	clear: both;
	position: relative;
	margin: 30px 0;
}

.author-website-link a{
	line-height: 1.5;
	padding: 5px 15px;
	text-transform: uppercase;
	font-weight: 600;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	color: #88ac81;
	background-color: transparent;
	border: 2px solid #88ac81;
	display: inline-block;
	font-family: Montserrat,sans-serif;
	text-align: center;
}

.author-website-link a:hover {
	color: #fff;
	background-color: #88ac81;
	border-color: #88ac81;
}

.blog-aside-content input[type=text]{
	border-width: 2px;
	border-style: solid;
	outline: 0;
	min-height: 51px;
	width: 100%;
	padding: 5px 10px;
	box-shadow: none;
	-webkit-box-shadow: none;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	line-height: normal;
	border-color: #c3cbcc;
	display: block;
	border-radius: 6px;
}

.blog-aside-content .gform_button.button{
	cursor: pointer;
	-webkit-appearance: none;
	text-decoration: none !important;
	font-size: 1em;
	width: auto;
	margin: 0 16px 0 0;
	display: inline-block;
	border: 0;
	color: #fff;
	background-color: #88ac81;
	text-transform: uppercase;
	font-weight: 500;
	min-height: 40px;
	line-height: 40px;
	text-align: center;
	padding: 5px 10px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	border: 0;
	font-family: Montserrat,sans-serif;
	font-size: 16px;
	margin: 10px 0;
	border-radius: 0 !important;
}

.blog-aside-content .gform_button.button:hover{
	background-color: #618759;
}

#mail_left {
	width: 66px;
	height: 109px;
	display: block;
	position: absolute;
	left: -15px;
	bottom: -15px;
	background-image: url(https://trustyoakdev.wpengine.com/wp-content/uploads/2022/01/mail-left.webp);
}

#mail_right {
	width: 87px;
	height: 93px;
	display: block;
	position: absolute;
	right: -15px;
	top: -15px;
	background-image: url(https://trustyoakdev.wpengine.com/wp-content/uploads/2022/01/mail-right.webp);
}

#mail_right {
	right: 0;
	top: 0;
}

#mail_left {
	left: 0;
	bottom: 0;
}


.page-navigation {
		font-family: Montserrat,sans-serif;
		display: inline-flex;
	justify-content: center;
}

.page-navigation li a{
		color: #5a3b34;
	text-decoration: none;
	font-weight: 600;
	display: block;
}

.page-navigation ol{
	padding-left: 0;
}

.page-navigation li:empty{
	display: none;
}

.page-navigation li{
	display: block;
		float: left;
		width: 40px;
		height: 40px;
		text-align: center;
		line-height: 40px;
		border: 1px solid #000;
		border-right-width: 0;
		color: #5a3b34;
		background-color: #fff;
}

.page-navigation li:last-child{
	border-right: 1px solid #000;
}

.page-navigation li.bpn-current{
	background-color: #5a3b34;
		cursor: not-allowed;
		color: #fff;
}

table ul li{
	margin-bottom:25px;
}

/*** WOOCOMMERCE ***/
.page_content p.wcmtx_icon_src{
	font-size:30px;
}

#leadinModal-195563{
	display:none !important;
}

.qubely-block-text p:last-child{
	margin-bottom:25px;
}
.qubely-image-container img{
	width:100%;
}

@media(max-width:992px) {
	.services-hero-title,
	.services-hero .services-hero-title{
		line-height: 140%;
		font-size: 30px;
		font-family: 'Arvo', serif !important;
		font-weight: 700 !important;
	}
	.services-hero-image-back{
		display:none;
	}
	.services-hero{
		padding:100px 0 30px
	}
	
	.our-values .subtitle-container{
		padding:50px 0 0 0;
	}
	.how-it-works-hero-image-back{
		background-image:none !important;
	}
	.page-id-11967 p,
	.page-id-11967 h2{
		padding:0 20px;
	}
	.v-assistant-info .about-title{
		font-size: 25px;
	}
	.va-name-cta-container {
		top: 37%;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.team-hero h1 {
    	font-size: 36px;
    	line-height: 1.4em;
	}
	.team-hero p {
    	font-size: 19px;
    	line-height: 32px;
	}
	.team-hero {
    	margin: 70px 0;
	}
	.assistants-list-wrapper article {
		width: 100%;
	}
}
@media only screen and (max-width : 576px) {
	
	.meet-our-team .assistant-container {
		flex-direction: column;
	}
	
	.assistant-photo {
		width: 100%;
		text-align: center;
	}
	
	.assistant-container .assistant-info {
		width: 100%;
		text-align: center;
	}
	
	.assistant-location {
		justify-content: center;
	}
	
	.single-assistant .member-info-container {
		flex-direction: column;
	}
	
	.service-card-wrapper{
		margin-bottom: 0;
	}

	.service-card-wrapper:nth-last-child(-n+3) {
    	margin-bottom: 0;
	}
	
	.filter-row {
    	flex-direction: column;
	}
	
	.filter-row form{
		margin-top: 10px;
	}
	
	.filter-row form input{
		width: 100%;
	}
	
	.filter-row > div:last-child{
		width: 100%;
	}
	
	.news-category h2 {
    	font-size: 29px;
    	line-height: 38px;
	}
	
	.woocommerce #content div.product div.summary, .woocommerce div.product div.summary, .woocommerce-page #content div.product div.summary, .woocommerce-page div.product div.summary {
    	float: none;
    	width: 100%;
    	clear: none;
	}
	
	.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images {
    	float: none;
    	width: 100%;
	}
	.fw-image{
		background-size: cover;
	}
	.how-it-works-hero .how-it-works-title{
		font-size: 32px;
		line-height: 1.4em;
	}
	
	.how-it-works-hero .heading-subtitle {
		font-size: 20px;
		line-height: 1.4em;
	}
	
	.how-it-works-hero .btn {
		margin: 10px 20px;
	}
}


  
  .landing_section .content_wrapper p {
    font-size: 24px;
  }
  
  .section_title {
    font-size: 28px;
  }
  
  .side_sticky_content {
    position: static !important;
  }
}