/*
Theme Name: DigiTimber - Child Theme for Beaver Builder
Theme URI: https://vexingmedia.com
Version: 1.0
Description: Website theme designed by Vexing Media for DigiTimber
Author: Vexing Media
Author URI: https://vexingmedia.com
template: bb-theme
*/

/* Add your custom styles here... */ 

/*** Define Variables ***/
:root {
	--white: #fff;
	--black: #000;
  --orange: #F17527;
  --green: #2CA34A;
  --blue: #2B7EB2;
  --purple: #A42D86;
	--managed: #A42D86;
	--hosting: #F17527;
	--consulting: #2B7EB2;
	--htgh-line-w: 3px;
  --htgh-gap: 28px;
	--btn-hover-bg: #e5e5e5;
}

/*** MISC ***/
.fl-page-content {
	background: transparent;
}

/* Push */
.push-down .fl-col-content {
	display: flex;
	flex-direction: column;
}

.push-down .fl-col-content .fl-module:last-child {
	margin-top: auto;
}

/* Remove Bottom Margin From Last P in BB Text Module */
.fl-rich-text p:last-child {
   margin-bottom: 0;
}

/* Visually Hidden */
body:not(.fl-builder-edit) .visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Pills */
body:not(.fl-builder-edit) .pills ul {
	list-style-type: none;
	padding: 0;
}

body:not(.fl-builder-edit) .pills li {
	display: inline-block;
	border: 1px solid var(--white);
	margin: 6px 3px;
	padding: 3px 12px;
	border-radius: 50px;
}

/* Boxed */
.boxed-green {
	border: 3px solid var(--green);
	border-radius: 10px;
}

.boxed-green.pills {
	padding: 15px 15px 0;
}

/* Span to Break */
@media screen and (max-width: 768px) {
	span.mobile-break {
		display: block;
		visibility: hidden;
		opacity: 0;
		line-height: 1px;
	}
}

/* Hide Link Underline */
.link-no_underline a {
	text-decoration: none;
}

/* Full Width Button Group */
@media screen and (max-width: 768px) {
	.fl-module-button-group.mobile-width-full .fl-button-group-button,
	.fl-module-button-group.mobile-width-full .fl-button-wrap
	{
		width: 100%;
	}
}

/* BB Button Alternate Styles */
#fl-main-content .managed a.fl-button {
	background: var(--managed);
	border-color: var(--managed);
}

#fl-main-content .managed a.fl-button span {
	color: var(--white);
}

#fl-main-content .managed a.fl-button:hover {
	background: var(--btn-hover-bg);
}

#fl-main-content .managed a.fl-button:hover span {
	color: var(--managed);
}

#fl-main-content .hosting a.fl-button {
	background: var(--hosting);
	border-color: var(--hosting);
}

#fl-main-content .hosting a.fl-button span {
	color: var(--white);
}

#fl-main-content .hosting a.fl-button:hover {
	background: var(--btn-hover-bg);
}

#fl-main-content .hosting a.fl-button:hover span {
	color: var(--hosting);
}

#fl-main-content .consulting a.fl-button {
	background: var(--consulting);
	border-color: var(--consulting);
}

#fl-main-content .consulting a.fl-button span {
	color: var(--white);
}

#fl-main-content .consulting a.fl-button:hover {
	background: var(--btn-hover-bg);
}

#fl-main-content .consulting a.fl-button:hover span {
	color: var(--consulting);
}

#fl-main-content .btn-blue a.fl-button {
	background: var(--blue);
	border-color: var(--blue);
}

#fl-main-content .btn-blue a.fl-button span {
	color: var(--white);
}

#fl-main-content .btn-blue a.fl-button:hover {
	background: var(--btn-hover-bg);
}

#fl-main-content .btn-blue a.fl-button:hover span {
	color: var(--blue);
}

#fl-main-content .btn-white a.fl-button {
	background: var(--white);
	border-color: var(--white);
}

#fl-main-content .btn-white a.fl-button span {
	color: var(--black);
}

#fl-main-content .btn-white a.fl-button:hover {
	background: transparent;
}

#fl-main-content .btn-white a.fl-button:hover span {
	color: var(--white);
}

/* Icon Lists */
body:not(.fl-builder-edit) .icon-list ul {
  list-style: none;
  padding-left: 20px;
}

body:not(.fl-builder-edit) .icon-list li {
  padding-left: 40px;
  background-repeat: no-repeat;
  background-position: 0 0.2em;
  background-size: 22px;
	padding: 5px 0 5px 40px;
}

body:not(.fl-builder-edit) .icon-list li:last-child {
	padding-bottom: 0;
}

body:not(.fl-builder-edit) .icon-list li {
  background-image: url("https://digitimber.com/wp-content/uploads/dt-ico-basic.svg");
}

body:not(.fl-builder-edit) .icon-list.hosting li {
  background-image: url("https://digitimber.com/wp-content/uploads/dt-ico-hosting.svg");
}

body:not(.fl-builder-edit) .icon-list.consulting li {
  background-image: url("https://digitimber.com/wp-content/uploads/dt-ico-consulting.svg");
}

body:not(.fl-builder-edit) .icon-list.managed li {
  background-image: url("https://digitimber.com/wp-content/uploads/dt-ico-managed.svg");
}

@media screen and (max-width: 768px) {
	body:not(.fl-builder-edit) .icon-list ul {
		padding-left: 10px;
	}
}

/* Column Color Borders */
.bordered-col > .fl-col-content {
	border-width: 3px;
	border-style: solid;
	border-radius: 10px;
}

.bordered-top_bot > .fl-col-content {
	border-top-width: 3px;
	border-bottom-width: 3px;
	border-left: 0px;
	border-right: 0px;
	border-style: solid;
}

.border-green > * {
	border-color: var(--green);
}

.border-managed > * {
	border-color: var(--managed);
}

.border-hosting > * {
	border-color: var(--hosting);
}

.border-consulting > * {
	border-color: var(--consulting);
}

@media screen and (max-width: 768px) {
	.bordered-top_bot > .fl-col-content {
		border: 0;
	}
	
	.bordered-col.has-header-tab .fl-col-content {
		border-top: 0;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

/*** Header ***/

/* Top Bar */
#top-bar .fl-rich-text {
	display: flex;
	justify-content: space-between;
}

#top-bar .fl-rich-text p {
	margin: 0;
	flex: 0 1 auto;
}

#top-bar .fl-rich-text p:nth-child(2) {
	margin: 0 auto;
	flex: 1 0 auto;
}

/* Header */
header {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 1) 100%);
}

#header-nav .fl-col-content {
	background: var(--black);
}

#header-col-nav li {
	margin: 0 5px;
}

#header-col-nav a {
	border-radius: 5px;
}

/* Nav Coloring */
#header-col-nav li.nav-managed a {
	color: var(--managed);
}

#header-col-nav li.nav-hosting a {
	color: var(--hosting);
}

#header-col-nav li.nav-consulting a {
	color: var(--consulting);
}

/* Highlight Active/Hover Menu Items */
#header-col-nav li.nav-managed a:hover,
#header-col-nav li.nav-managed.current-menu-item > a,
#header-col-nav li.nav-managed.current-menu-item > div > a,
#header-col-nav li.nav-managed.current-page-ancestor > div > a,
#header-col-nav li.nav-managed.current-page-ancestor > a {
	background: var(--managed);
	color: var(--white);
}

#header-col-nav li.nav-hosting a:hover,
#header-col-nav li.nav-hosting.current-menu-item > a,
#header-col-nav li.nav-hosting.current-menu-item > div > a,
#header-col-nav li.nav-hosting.current-page-ancestor > div > a,
#header-col-nav li.nav-hosting.current-page-ancestor > a {
	background: var(--hosting);
	color: var(--white);
}

#header-col-nav li.nav-consulting a:hover,
#header-col-nav li.nav-consulting.current-menu-item > a,
#header-col-nav li.nav-consulting.current-menu-item > div > a,
#header-col-nav li.nav-consulting.current-page-ancestor > div > a,
#header-col-nav li.nav-consulting.current-page-ancestor > a {
	background: var(--consulting);
	color: var(--white);
}

@media screen and (max-width: 992px) {
	#header-col-nav .fl-menu-mobile-flyout {
		background: var(--black);
	}
	
	#header-col-nav li {
		margin: 20px auto;
	}
}

/* Mobile Only */
@media screen and (min-width: 993px) {
	#menu-main-menu .mobile-only {
		display: none !important;
	}
}

/* Subnav */
.page-subnav {
	display: inline;
	background: var(--black);
	padding: 20px 0px;
	border-radius: 0 0 10px 10px;
	border: 0;
	position: relative;
	top: 3px;
	box-shadow: inset 0px 10px 10px -5px rgba(0, 0, 0, 0.5);
	border: 3px solid var(--green)
}
.page-subnav__parent {
	display: inline;
	margin-right: 1rem;
	font-weight: bold;
}
.page-subnav__list {
	display: inline;
	list-style: none;
	margin: 0;
	padding: 0;
}
.page-subnav__item {
	display: inline-block;
}
.page-subnav [aria-current="page"] {
	color: inherit;
	text-decoration: none;
}
.page-subnav__item a,
.page-subnav__item [aria-current="page"] {
	color: var(--white);
	padding: 20px 1rem;
}

.page-subnav__item:first-child a,
.page-subnav__item:first-child [aria-current="page"] {
	border-bottom-left-radius: 7px;
}

.page-subnav__item:last-child a,
.page-subnav__item:last-child [aria-current="page"] {
	border-bottom-right-radius: 7px;
}

.page-subnav--managed-it a:hover,
.page-subnav--managed-it [aria-current="page"] {
	background: var(--managed);
	box-shadow: inset 0px 10px 10px -5px rgba(0, 0, 0, 0.3);
}

.page-subnav--it-consulting a:hover,
.page-subnav--it-consulting [aria-current="page"] {
	background: var(--consulting);
	box-shadow: inset 0px 10px 10px -5px rgba(0, 0, 0, 0.3);
}

/*** Footer ***/
footer {
	position: relative;
	background-color:#221f20;
}

footer::before {
	content: '';
	position: absolute;
	top: 10px;
	height: 70px;
	z-index: 20;
	background: url("https://digitimber.com/wp-content/uploads/footer-bg.svg") no-repeat right center;
	background-size: 100% auto;
	width: 98%;
}

@media screen and (max-width: 768px) {
	footer::before {
		background-size: auto 40px;
	}
}

.dt-forest{
	background-color:#1b191a;
}

/*** Home Page ***/
#masthead > .fl-row-content-wrap > .fl-row-content {
	z-index: 10;
}

#masthead > .fl-row-content-wrap {
  position: relative;
  background-size: 0 0;
  --fade-start: 90%;
}

#masthead > .fl-row-content-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: inherit;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  -webkit-mask-image: linear-gradient(to bottom, #000 var(--fade-start), transparent 100%);
	mask-image: linear-gradient(to bottom, #000 var(--fade-start), transparent 100%);
}

#masthead > .fl-row-content-wrap > .fl-row-content {
  position: relative;
  z-index: 1;
}

#home-body > .fl-row-content-wrap > .fl-row-content {
	z-index: 10;
}

.home-service-card > .fl-col-content {
	background: linear-gradient(180deg,rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 20%, rgba(153, 153, 153, 1) 100%);
}

#carousel-review .carousel-inner {
	width: 75%;
	margin: 0 auto;
	text-align: center;
}

#carousel-review .review_credit {
	margin-top: 10px;
	font-size: 0.9rem;
}

#carousel-review .review_rating {
	font-size: 0.7rem;
	margin-left: 10px;
}

#carousel-review .carousel-inner > .carousel-item {
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

#carousel-review .carousel-inner > .carousel-item.active,
#carousel-review .carousel-inner > .carousel-item-next,
#carousel-review .carousel-inner > .carousel-item-prev {
  display: flex;
}

@media screen and (max-width: 768px) {
	#carousel-review .carousel-inner {
		width: 100%;
	}
	
	.carousel-control-prev,
	.carousel-control-next {
		display: none;
	}
}

/*** Interior Pages ***/

/* Heading Tabs */
.heading-tab {
	border-width: 3px;
	border-style: solid;
	border-radius: 10px 10px 0 0;
	border-bottom-width: 4px;
	border-bottom-color: #000 !important;
	display: inline-block;
	margin: 0 auto;
	padding: 10px 25px 0;
	position: relative;
	bottom: -3px;
	background: rgba(0, 0, 0, 0.6);
}

.heading-tab.hosting {
	border-color: var(--hosting);
}

@media screen and (max-width: 768px) {
	.heading-tab {
		margin: 0;
		border-bottom: 0;
	}
}

/* About - Whiskers */
.whiskers {
	position: relative;
}

.whiskers .fl-col-content::before,
.whiskers .fl-col-content::after {
	content: '';
	background: var(--green);
	height: 3px;
	width: 20px;
	display: block;
	position: absolute;
	top: 50%;
}

.whiskers .fl-col-content::before {
	left: -10px;
}

.whiskers .fl-col-content::after {
	right: -10px;
}

.whiskers-heading {
	position: relative;
}

.whiskers-heading .fl-col-content::before {
	content: '';
	background: var(--green);
	height: 3px;
	width: 200px;
	display: block;
	position: absolute;
	bottom: 40px;
	left: calc(50% - 100px);
}

.whiskers-heading .fl-col-content::after {
	content: '';
	background: var(--green);
	height: 40px;
	width: 3px;
	display: block;
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 20;
}

.whiskers-quote {
	position: relative;
}

.whiskers-quote .fl-col-content::before {
	content: '';
	background: var(--green);
	height: 40px;
	width: 3px;
	display: block;
	position: absolute;
	left: 50%;
	top: 0;
}

@media screen and (max-width: 768px) {
	.whiskers .fl-col-content::before,
	.whiskers .fl-col-content::after {
		width: 3px;
		height: 20px;
		left: 50%;
	}

	.whiskers .fl-col-content::before {
		top: 0px;
	}

	.whiskers .fl-col-content::after {
		top: unset;
		right: unset;
		bottom: 0px;
	}
	
	.whiskers-heading .fl-col-content {
		padding-bottom: 20px;
	}
}


@media screen and (min-width: 769px) {
	.list-cols-2 ul {
		column-count: 2;
	}

	.list-cols-2 li {
		margin-right: 3rem;
	}
}

@media screen and (max-width: 992px) {
	ul.sub-menu {
		padding-right: 15px;
	}
}

/* Reviews */
@media screen and (min-width: 993px) {
	.review-cols {
		column-count: 2;
		column-gap: 4em;
	}
}

.review-item {
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 40px;
}

.review-item::after {
	content: '';
	height: 3px;
	width: 50%;
	background: var(--green);
	position: absolute;
	left: 25%;
	bottom: 0;
}

.review-item .review_credit {
	text-align: right;
}

.featured-review .review-item,
.review-item.last-in-column {
	padding-bottom: 0;
}

.featured-review .review-item::after,
.review-item.last-in-column::after {
	display: none;
}

/* Contact Form */
#contact-form label {
	color: #fff;
}

/* CCPA */
table.has-fixed-layout {
	table-layout: fixed;
  width: 100%;
	border-collapse: collapse;
}

table thead {
  border-bottom: 3px solid;
}

table.has-fixed-layout td,
table.has-fixed-layout th {
    word-break: break-word;
}

table td,
table th {
    border: 1px solid;
    padding: .5em;
}

table th {
    text-align: inherit;
}

/* Search */
.fl-builder-pagination li a.page-numbers:hover, .fl-builder-pagination li span.current {
	background: none;
}


/* Hosting Whiskers */
.hosting-whiskers .fl-col-content {
	border-width: 3px 0;
	border-color: var(--hosting);
	border-style: solid;
	position: relative;
}

.hosting-whiskers .fl-col-content::before {
	content: '';
	background: var(--hosting);
	height: 63px;
	width: 3px;
	display: block;
	position: absolute;
	top: -63px;
	left: calc(50% - 1px);
}

.hosting-whiskers .fl-col-content::after {
	content: '';
	background: var(--hosting);
	height: 60px;
	width: 3px;
	display: block;
	position: absolute;
	bottom: -63px;
	left: calc(50% - 1px);
}

/*
@media screen and (min-width: 993px) {}

@media screen and (min-width: 769px) and (max-width: 992px) {}

@media screen and (max-width: 768px) {}
*/
