/*** RESET ***/
:root{
	/* Brand colors */
	--brandColor400: #cfe2dd;
	--brandColor500: #015155;
	--brandColor600: #013b3e;
	--brandColor800: #013b3e;
	--accentColor: #f27742;
	--accentColorHover: #e56a37;

	/* Gray scale */
	--gray100: #f4f4f4;
	--gray300: #f3ecdc;
	--gray400: #fcf8f0;
	--gray500: #5d5e61;
	--gray600: #272727;

	/* Fonts */
	--primaryFont: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	--secondaryFont: 'Bricolage Grotesque', 'Arial Black', sans-serif;

	/* Standardized values */
	--border-radius: 8px;
	--section-padding: 96px;

	/* Typography scale */
	--text-base: 16px;
	--text-lg: 20px;

	/* Spacing scale */
	--space-md: 24px;
}

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

body{
	line-height: 100%;
	font-family: var(--primaryFont);
	color: var(--gray500);
	background: #015155;
}
/*** MISC ***/
#page_wrapper{
	width:100%;
}

*{
	box-sizing: border-box;
}
h1,
h2,
h3,
h4,
h5,
h6{
	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: var(--text-lg);
	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;
	text-decoration: none;
}
a:hover:not(.button):not(.btn){
	text-decoration: underline;
}
input,
select,
textarea,
button{
	font-family: var(--primaryFont);
}
table{
	border-collapse: collapse;
}
table img{
	float:left;
}
figure{
	margin:0;
}
span{
	line-height:100%
}
.button{
	--btnColor: var(--brandColor500);
	--btnTextColor: #FFF;
	display: inline-block;
	position: relative;
	border-radius: var(--border-radius);
	background: var(--btnColor);
	color: var(--btnTextColor);
	border: 1px solid var(--btnColor);
	cursor: pointer;
	text-transform: uppercase;
	font-size: var(--text-base);
	padding: 14px 28px;
	line-height: 25px;
	text-align: center;
	font-weight: 600;
	letter-spacing: 1px;
	transition: all 0.5s;
}
.button:hover{
	--btnColor: var(--brandColor500);
}
.button.green_button:hover{
	background: var(--brandColor600);
}
.button.orange_button{
	background: var(--accentColor);
	border-color: var(--accentColor);
	color: #FFF;
}
.button.orange_button:hover{
	background: var(--accentColorHover);
	border-color: var(--accentColorHover);
}
.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;
	line-height: 120%;
	font-weight: 700;
	color: var(--brandColor800);
	margin: 0 0 var(--space-md) 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 ***/

/*** 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;
}

.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 ***/

/*** HEADER ***/
#header{
	position: sticky;
	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;
}

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

#header_logo{
	display: inline-block;
}
#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(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iNiIgdmlld0JveD0iMCAwIDEwIDYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDFMNSA1TDkgMSIgc3Ryb2tlPSIjMDA0YjQ3IiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}
#header_menu .sub-menu{
	position: absolute;
    background: #FFF;
    bottom: 2px;
    left: calc(50% - 100px);
    width: 220px;
    text-align: left;
    list-style: none;
    padding: 12px 0;
    margin: 0;
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(100%);
	opacity: 0;
	visibility: hidden;
	z-index: 5;
}
#header_menu li:hover .sub-menu{
	opacity: 1;
	visibility: visible;
}
.sub-menu li {
	font-size: 14px;
    text-transform: none;
    color: #000;
    font-weight: 400;
    line-height: 120%;
    padding: 0;
}
.sub-menu li a {
    display: block;
    padding: 10px 20px;
    transition: all 0.2s;
}
.sub-menu li a:hover {
    background: var(--gray300);
}
#header_menu .sub-menu a:hover{
	color:var(--brandColor500);
	background: var(--gray300);
}

/* Get Started navigation link - orange with hover brightening */
#header_menu .get-started-nav > a,
#mobile_menu .get-started-nav > a {
	font-weight: 700;
	color: #f27742;
	transition: color 0.3s ease;
}

#header_menu .get-started-nav > a:hover,
#mobile_menu .get-started-nav > a:hover {
	color: #f8a455;
}

/*** MOBILE MENU ***/
#menu_trigger {
	width: 30px;
	height: 30px;
	position: relative;
	cursor: pointer;
	background: none;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

#menu_trigger i {
	font-size: 22px;
	color: var(--brandColor800);
}

#menu_trigger .menu-icon-close {
	display: none;
}

.menu_open #menu_trigger .menu-icon-open {
	display: none;
}

.menu_open #menu_trigger .menu-icon-close {
	display: block;
}
#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;
}

/*** 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 {
  max-width: 350px;
  height: auto;
  width: 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: #f27742;
  transition: all 0.3s ease;
  text-decoration: none;
}

#social_icons a:hover {
  background: #e56a37;
  transform: translateY(-2px);
  text-decoration: none;
}

/* 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 {
  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: 'Bricolage Grotesque', sans-serif !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  text-transform: none !important;
  margin-bottom: 15px;
  color: #FFF;
  white-space: nowrap;
}

.footer_widget .widget_title a {
  color: #FFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.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: 13px;
  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 */

#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;
}

.footer-widgets-grid--five-col {
  grid-template-columns: 1.1fr 1.1fr 1.3fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}



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

  .footer-widgets-grid--five-col {
    grid-template-columns: repeat(2, 1fr);
  }

  #footer_bar {
    text-align: center;
    padding: 30px 0;
  }

  #footer_bar > .container > div {
    gap: 20px;
  }

  #footer_bar > .container > div > div {
    margin-bottom: 5px;
  }

  #footer_menu {
    justify-content: center;
  }

}

@media (max-width: 576px) {
  .footer-widgets-grid,
  .footer-widgets-grid--five-col {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .footer_widget--industries-col2 .widget_title {
    display: none;
  }

  #footer_widgets_area_wrapper {
    display: none;
  }

  .blog-widget .blog-menu {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .blog-widget {
    grid-column: span 1 !important;
  }

  .blog-widget .blog-menu li {
    width: 100%;
  }
  
  #social_icons {
    justify-content: center !important;
  }
  
  .footer_widget {
    text-align: center !important;
    width: 100% !important;
    max-width: 280px !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_widget .widget_title,
  .footer_widget .menu {
    text-align: center;
    padding-left: 0;
    list-style: none;
    width: 100%;
  }

  .footer_widget .menu li {
    text-align: center;
  }

  #footer_bar {
    text-align: center;
    padding: 30px 0;
  }

  #footer_bar > .container > div {
    gap: 20px;
  }

  #footer_bar > .container > div > div {
    margin-bottom: 5px;
  }

  #footer_menu {
    justify-content: center;
  }

  /* Footer responsive fixes - logo already responsive */
}

/*** LANDING SECTION ***/
.landing_section{
	padding: var(--section-padding) 0;
}
.landing_section .container{
	z-index:2;
}
.landing_section.bg_pos_right{
	background-position: top right;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
.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: 24px;
}
.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: var(--brandColor500) !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: var(--section-padding) 0;
	overflow:hidden;
}
.text_image_section.top_decoration{
	padding:0 0 90px;
}
.text_image_section.top_decoration.bg_cream::before{
	background:#fcf8f0;
}
.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_section--reversed .image_section_decoration{
	top: initial;
	left: initial;
	bottom: -10%;
	right: -10%;
}
.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_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: var(--section-padding) 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 4px 12px rgba(0, 0, 0, 0.08);
	text-align: center;
	border-radius: var(--border-radius);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.icon_box_item:not(:has(.bullet_number)):hover {
	transform: scale(1.03);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}
.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(--gray500);
	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: var(--section-padding) 0;
}
.side_boxes_section .container{
	z-index:2;
}
.side_boxes_section.top_decoration{
	padding: 0 0 90px;
}
.side_sticky_content{
	top:90px;
}
.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;
}

/*** TESTMINIAL SECTION ***/
.testimonial_section{
	padding: var(--section-padding) 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(--accentColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--accentColor);
}

.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(--accentColorHover);
    border-color: var(--accentColorHover);
    transform: scale(1.1);
}

/*** LOGOS SECTION ***/

/*** SIDE BULLET SECTION ***/
.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)
}

/*** VA SPOTLIGHT ***/
.va_spotlight_section{
	padding-top: 112px;
	overflow-x:hidden;
}
/* 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;
}

/*** COLUMNS SECTION ***/

/*** CTA SECTION ***/
.cta_section{
	padding: var(--section-padding) 0;
    background-color: var(--gray300);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    position: relative;
    overflow: hidden;
}
.cta_section[style*="tree_background"]::before{
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(/images/tree_background.svg);
    background-position: right center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    opacity: 0.4;
    pointer-events: none;
}
.cta_section[style*="tree_background"]{
    background-image: none !important;
}
.cta_section > .container{
    position: relative;
    z-index: 1;
}
.cta_section.bg_cream{
	background-color:var(--gray400);
}
.cta_section .content_wrapper p{
	font-size:24px;
}

/*** BLOG SECTION ***/
.blog_archive_item_image{
	padding-top: 70%;
	background-size: cover;
	background-position: center;
	border-radius: 8px;
}
.tag{
	display: inline-block;
	color: #FFF;
	background: var(--brandColor500);
	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;
}

/** PAGINATION **/

/*** CENTERED TEXT ***/

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

/*** WHATS INCLUDED ***/
.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 ***/

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

/*** CHECKLIST SECTION ***/

/*** ABOUT LANDING ***/

/*** STATS SECTION ***/

/*** TYPEFORM SECTION ***/

/*** COURSE LANDING ***/
.image_wrapper > img{
	border-radius:45px;
	float:left;
	width:100%;
}

/*** COURSE INFO SECTION ***/
/*** CONTACT FORM ***/
.contact_form_section{
	padding: var(--section-padding) 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;
}

/*** DISCOVERY CALL ***/

/*** TESTIMONIAL SLIDER ***/

/*** REGULAR PAGES ***/
.page_title{
	color:var(--brandColor800);
	font-size:45px;
	font-weight:700;
}
.page_content p{
	font-size:16px;
	line-height:150%;
}
.page_content a:not(.button):not(.btn){
	text-decoration: underline;
}
.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;
}

/* Legal/long-form content pages */
.legal-content {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.legal-content h2 {
	color: var(--gray600);
	font-size: 1.6rem;
	margin-top: 2rem;
	margin-bottom: 1rem;
}
.legal-content h3 {
	color: var(--gray600);
	font-size: 1.35rem;
	margin-top: 1.5rem;
	margin-bottom: 0.75rem;
}
.legal-content ol,
.legal-content ul {
	margin-bottom: 1rem;
	padding-left: 2rem;
}
.legal-content ul {
	list-style: none;
}
.legal-content ol li,
.legal-content ul li {
	margin-bottom: 0.5rem;
	font-size: 16px;
	line-height: 150%;
}
.legal-content ul ul {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
}

/*** 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
}
.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);
}
.testimonial_image img{
	width:80px;
	border-radius:50%;
}

/*** WOOCOMMERCE **/
.related.products{
	padding:90px 0;
}

/*** PRODUCT PAGE ***/
.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;
}

/** FORM FIELDS ***/

@media(max-width:1200px) {
	#header_menu {
		font-size: 11px;
		gap: 18px;
	}
}

@media(max-width:992px) {
	h1 br,
	h2 br,
	h3 br,
	h4 br,
	h5 br {
		display: none;
	}
	.section_subtitle {
    	font-size: 28px;
	}
	p {
		font-size: 20px;
	}
	.landing_section h1 {
		font-size: 32px;
	}
	.landing_section .content_wrapper p {
		font-size: 20px;
	}
	.button {
		font-size: 14px;
		padding: 10px 20px;
	}
	.top_decoration_item {
    	height: 50px;
	}
	.section_title {
		font-size: 32px;
	}
	.side_sticky_content{
		position: relative;
		top:0;
	}
	.landing_section {
		padding: 50px 0;
	}
	.landing_section .buttons_wrapper .button {
		width: 100%;
		text-align: center;
	}
	.text_image_section > .container > * + * {
		margin-top: 1rem !important;
	}
	
	.text_image_section{
		padding:70px 0
	}
	.va_spotlight_section{
		padding-top:90px
	}
	.bullet_number {
		width: 40px;
		height: 40px;
		font-size: 25px;
	}
	.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%;
	}
	.how_it_works_row_section img{
		max-width:60%
	}
	.cta_section{
		background-image:none !important;
	}
	#footer_menu a:not(:last-child)::after{
		display:none;
	}
	.form_modal_content .section_title {
    	font-size: 28px;
	}
}

/* Comprehensive fix for all hero H1s across the site */
section[class*="landing"] h1,
.landing_section h1,
#block_7f2bf6524d4e8ad7db4d3fe2841185ec h1 {
	font-family: var(--secondaryFont) !important;
	font-weight: 700 !important;
}

@media(max-width:768px) {
	.landing_section{
		background-image:none !important
	}
	.cta_section .content_wrapper p {
	    font-size: 18px;
	}
	.icon_box_item p,
	.box_item p {
		font-size: 20px;
	}
	.icon_boxes_grid_section {
		padding: 70px 0;
	}
	.author_signature::before{
		display:none;
	}
	.footer_widget {
		text-align:left;
	}
	.container{
		padding:0 30px;
	}
	.page_title {
    	font-size: 30px;
	}
	
	/*** WOOCOMMERCE ***/
}

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





/* ===== 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;
}

.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 {
  padding: var(--section-padding) 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;
}

.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 *****/

/***** HOW IT WORKS / WHAT'S INCLUDED *****/

/***** 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: #013b3e;
	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: #013b3e;
	font-family: 'Bricolage Grotesque', 'Arial Black', sans-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;
}

/*** SERVICES EXCERPT ***/
.services-excerpt{
    padding: 75px 0;
	background-position: top center;
	background-repeat: no-repeat;
	background-size: cover;
}
.services-excerpt h2 {
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: #013b3e;
    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: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  font-size: 21px;
  font-weight: 600;
}

/*** GUARANTEE ***/
.guarantee {
    background-color: #f3ecdc;
    padding: 60px 0;
}
.guarantee .subtitle {
    color: #013b3e;
    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;
}
.heading-title {
    color: #282829;
    font-size: 24px;
    padding: 0;
    margin: 0;
    line-height: 1;
    text-align: left;
}

/**** CTA ***/
.cta {
    padding: 75px 0;
}
.cta h2 {
    margin: 0;
    color: #013b3e;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}
.cta p {
    margin: 30px 0;
}

/***** SINGLE ASSISTANT PAGE *****/
.assistant-location{
	display: flex;
	padding: 6px;
}
.assistant-location > div{
	padding: 6px;
}

/*** TESTIMONIALS ***/
.testimonials {
	padding: 75px 0;
	text-align: center;
	position: relative;
	background: #fcf8f0;
	overflow: hidden;
}
.testimonials .container {
	position: relative;
	z-index: 3;
}
.testimonials h2 {
	color: #013b3e;
	font-size: 20px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 4px;
	font-family: 'Roboto', 'Helvetica Neue', Arial, 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 var(--brandColor500);
	max-width: 300px;
	margin: 35px auto;
	opacity: 1;
}

/*** BLOG GRID ***/

/***** VIRTUAL ASSISTANTS *****/
.team-hero{
	margin: 100px 0;
}
.team-hero h2{
	padding: 0;
		margin: 0;
		line-height: 1;
	color: #013b3e;
		font-size: 20px;
		font-weight: 700;
		text-transform: uppercase;
		letter-spacing: 4px;
	margin-bottom: 20px;
}
.team-hero h1{
	padding: 0;
	margin: 0;
	color: #013b3e;
	font-family: 'Bricolage Grotesque', 'Arial Black', sans-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;
}


/*** ASSISTANTS FILTER ***/

/*** 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{
	display: block;
	width: 150px;
	margin: auto;
	margin-bottom: 20px;
	height: 150px;
}

.assistant-photo a{
	padding: 0;
	margin: 0;
	line-height: 1;
	color: #015155;
	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: 'Bricolage Grotesque', 'Arial Black', sans-serif;
	font-weight: bold;
}
.assistant-container .v-assistant-title{
	padding: 15px 0px 15px 0px;
	margin: 0;
	line-height: 1;
	font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
	color: #282829;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

/*** ABOUT US FULL WIDTH IMAGE ***/

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

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

.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;
}

/***** SINGLE MEET TEAM PAGE *****/

/*** BLOG ARCHIVES ***/
.filter-row{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
/***** HOW IT WORKS ******/

/*** SINGLE PAGE ***/

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

/*** WOOCOMMERCE ***/

@media(max-width:992px) {
	.services-hero-title,
	.services-hero .services-hero-title{
		line-height: 140%;
		font-size: 30px;
		font-family: 'Bricolage Grotesque', 'Arial Black', sans-serif !important;
		font-weight: 700 !important;
	}
	.services-hero-image-back{
		display:none;
	}
	.services-hero{
		padding:100px 0 30px
	}
}

/* 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;
	}
	
	.filter-row {
    	flex-direction: column;
	}
	
	.filter-row form{
		margin-top: 10px;
	}
	
	.filter-row form input{
		width: 100%;
	}
	
	.filter-row > div:last-child{
		width: 100%;
	}
}