/*!
Theme Name: Mountain Tactical Institute 2023
Theme URI: http://Gliffen.com/
Author: Gliffen Designs
Author URI: http://gliffen.com/
Description: Under Gliffen is the base wordpress theme created by Gliffen Designs that is setup for customization. The theme is preconfigured with bootstrap css and Carbon Fields
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: under_gliffen
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/
:root {
  --header-height: 122px;
  --grey: #191919;
  --ltgrey:#CBCBCB;
  --red: #ed1c24;
  --green: #475927;
  --blue: #274759;
  --x-margin:45px;
}
@media (max-width: 1100px) { 
	:root {
	  --x-margin:30px;
	  --header-height: 120px;
	}
}

@media (max-width: 767.98px) { 
	:root {
	  --header-height: 84px;
	}
}
@media (max-width: 575.98px) {
	:root {
	  --x-margin:15px;
	}
}


/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/

body,
select,
optgroup,
textarea {
	color: #000;
	font-size: 14px;
	line-height: 1.5;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 700;
	font-style: normal;	
	margin-top: 10px;
	margin-bottom:10px;
}
h1 {
	font-size: 3em;
}
h2 {
	font-size: 1.8em;
}
h3 {
	font-size: 1.6em;
}
h4{
	font-size: 1.4em;
}
h5{
	font-size: 1.3em;
}
h6{
	font-size: 1.1em;
}
@media (max-width: 575.98px) {
	h1 {
		font-size: 35px;
	}
}


p {
	margin:0 auto 1.5em auto;
}

dfn, cite, em, i {
	font-style: italic;
}
b, strong {
	font-weight: 700;
}

pre {
  background: #f5f5f5;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	overflow-x: hidden!important;
}

hr {
	background-color: var(--red);
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}
figcaption {
	text-align: center;
}


/*--------------------------------------------------------------
Color Palettes
---------------------------------------------------------------*/
.bg-white,
:root .has-white-background-color{
	background-color:#FFF;
}

.text-white,
.text-white a,
:root .has-white-color a,
:root .has-white-color{
	color:#FFF;
}
.bg-black,
:root .has-black-background-color{
	background-color:#000;
}
.text-black,
.text-black a,
:root .has-black-color{
	color:#000;
}
.bg-grey,
:root .has-grey-background-color{
	background-color:var(--grey);
}
.text-grey,
.text-grey a,
:root .has-grey-color{
	color:var(--grey) ;
}
.bg-ltgrey,
:root .has-ltgrey-background-color{
	background-color:var(--ltgrey);
}
.text-ltgrey,
.text-ltgrey a,
:root .has-ltgrey-color{
	color:var(--ltgrey) ;
}
.bg-red,
:root .has-red-background-color{
	background-color:var(--red);
}
.text-red,
.text-red a,
:root .has-red-color{
	color:var(--red) ;
}
.bg-green,
:root .has-green-background-color{
	background-color:var(--green);
}
.text-green,
.text-green a,
:root .has-green-color{
	color:var(--green);
}
.bg-blue,
:root .has-blue-background-color{
	background-color:var(--blue);
}
.text-blue,
.text-blue a,
:root .has-blue-color{
	color:var(--blue);
}
/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
#primary-menu .button a:link,
a.button,
a.button:visited,
.button a,
.button a:visited,
.wp-block-button__link,
.woocommerce #respond input#submit.alt, 
.woocommerce a.button.alt, 
.woocommerce a.button, 
.woocommerce button.button.alt, 
.woocommerce input.button.alt{
	border-radius: 5px;
	background: var(--blue);
	color: #FFF;
	padding: 10px 25px;
	font-size: inherit;
	text-decoration: none;
	display: inline-block;
    text-align: center;
}

a.button:hover,
#primary-menu .button a:hover,
.button a:hover,
.wp-block-button__link:hover{
/*	color: #000; */
	background-color:#FFF;
	color: var(--blue);
	text-decoration: none;
}



/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: var(--green);
	text-decoration: none;
}
a:focus {

}

a:hover, a:active {
	text-decoration: underline;
}
:where(p.has-text-color:not(.has-link-color)) a{
	color: inherit !important;
}
/*--------------------------------------------------------------
## Primary Header
--------------------------------------------------------------*/
.site-header{
	position: sticky;
	top:0;
	left:0;
	width:100%;
	z-index:110;
}
.site-broadcast-message{
    background-color: #000;
    color: #FFF;
    padding: 8px;
    font-size: 12px;
}
.site-broadcast-message p{
    margin: 0;
    padding: 0;
}    

.super-header{
	background-color:var(--grey);
	color: #FFF;
	padding: 3px var(--x-margin) 7px var(--x-margin);
}
.super-header a{
	font-size: 16px;
	color:#FFF;
	padding: 4px;
	margin-left: 30px;
	font-weight: bold;
}
.super-header a:hover{
	color:var(--blue);
	text-decoration: none;
}
.super-header a span{
	font-size: 25px;
	position: relative;
	top: 4px;	
}

.main-header{
	background-color: var(--green);
	padding: 12px var(--x-margin);
	color:#FFF;
	transition: all .5s;
}
.main-header .logo{
	height: 60px;
	width: auto;
	margin-right: 45px;
	padding-right: 60px;
	border-right: 1px solid #FFF;
}

.header-button{
	font-weight: bold;
	letter-spacing: 1px;
	font-size: 18px;
}
.page-template-fullheight-template .main-header.scroll-top{
	background-color: transparent;
}
.admin-bar .site-header {
	top: 32px;
}
.mobile-toggle {
	padding: 15px 15px 15px 30px;
	cursor:pointer; 
	color:#FFF;
	font-size: 36px;
	border-left: 1px solid #FFF;
}
.mobile-menu{
	width: 100%; 
	position: absolute; 
	left: 0; 
	top: var(--header-height);
	background: var(--grey);
	padding: 15px;
	height: calc( 100vh - var(--header-height));
	overflow-x: auto;
}
.material-icons {
	font-size: 48px;
}
.search-menu{
	width: 300px; 
	position: absolute; 
	right: 0; 
	top: 30px;
	z-index: 120;
	background: var(--grey);
	padding: 10px 15px 30px 15px;
}
@media (max-width:1100px){
	.main-header .logo{
		margin-right: 15px;
		padding-right: 30px;
	}
}
@media (max-width:767.7px){
	.main-header .logo{
		border-right: none;
		margin-right: 0;
		padding-right: 0;
	}
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.menu-primary-container {
	padding:0;
}
#primary-menu{
	list-style:none;	
	margin:0;
	padding: 0;
}
#primary-menu a:link, #primary-menu a:visited, #primary-menu a:active{
	padding:18px 15px;
	text-decoration:none;
	display:block;
	color:#FFF;
    font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
	text-transform: uppercase;
}

#primary-menu a:hover{
	text-decoration: underline;
}

#primary-menu > li{
	display: inline-block;
    position: relative;
}
#primary-menu > li.menu-item-has-children > a::after{
	content: '';
	width: 20px;
	height: 16px;
	margin-left: 5px;
	display: inline-block;
	background-image: url(img/down-arrow.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

#primary-menu > li .sub-menu {
    display: none; 
    position: absolute;
    top: 100%;
    left: 0;
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: var(--grey);
    min-width: 250px;
    z-index: 1000;
    text-align: left;
}
#primary-menu > li:hover .sub-menu {
    display: block; 
}
#primary-menu > li .sub-menu > li a {
    font-size: 15px; 
	letter-spacing: 0;
	text-transform: none;
	color: #FFF;
	padding: 8px 15px ;
}
#primary-menu > li:hover .sub-menu li a:hover {
    background-color:#000; 
}
@media (max-width:1100px){
	#primary-menu a:link, #primary-menu a:visited, #primary-menu a:active{
		font-size: 14px;
		padding:18px 8px;
	}
	#primary-menu > li.menu-item-has-children > a::after{
		display: none;
	}
}


#mobile-menu{
	list-style:none;	
	padding:15px;
	margin:0;
	width:100%;
	display:block;
	font-size:18px;
	z-index: 1000;
}
.search-menu ul,
#mobile-menu ul {
	padding-left: 15px;
	margin: 0;
	list-style: none;
}
.search-menu .children,
#mobile-menu .children{
	list-style:none;
	margin: 0;
	padding-left: 15px;

}
.search-menu a:link, .search-menu a:visited, .search-menu a:active,
#mobile-menu a:link, #mobile-menu a:visited, #mobile-menu a:active{
	padding:5px 10px;
	color:#FFF;	 
	text-decoration:none;
	display:block;
}

.site-main .comment-navigation, .site-main
.posts-navigation, .site-main
.post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.alignwide {
	margin-left: calc( -75vw / 2 + 100% / 2 );
	margin-right: calc( -75vw / 2 + 100% / 2 );
	width: 75vw;
	max-width: 100vw;
}
.alignfull {
	margin-left  : calc( -100vw / 2 + 100% / 2 );
	margin-right : calc( -100vw / 2 + 100% / 2 );
	max-width    : 100vw;
	width 		 : 100vw;
}


/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,header
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
#content {
/*	padding-top: var(--header-height);*/
	min-height: 75vh;
}
.page-template-fullheight-template #content{
	padding-top: 0;
}

/* AI search styling*/
.ai_agent_message,
.ai_user_message{
    display:block;
    margin:10px 20% 0 10px;
    padding: 15px;
    background-color: var(--ltgrey);
    color: #000;
    border-radius: 10px;
    border: 1px solid #666;
}
.ai_user_message{
    margin: 10px 10px 0 20%;
    background-color:#FFF0E2;
}
.ai_agent_message::before
.ai_user_message:before{
    
}

.ai_loading{
    display: block;
    width: 100%;
    padding: 10px;
    text-align: center;
}
.ai_loading span {
    display: inline-block;
    width: 80px;
    height: 80px;
}
.ai_loading span:after {
    content: " ";
    display: block;
    width: 40px;
    height: 40px;
    margin: 8px;
    border-radius: 50%;
    border: 4px solid var(--green);
    border-color: var(--green) transparent var(--green) transparent;
    animation: spin 1.2s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}
.updated:not(.published) {
	display: none;
}

.page-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.single-post .entry-title, .archive .entry-title {
	display: block;
}
.page-header{
	text-align: left;
	padding:15px 15px;
	margin-left  : calc( -100vw / 2 + 100% / 2 );
	margin-right : calc( -100vw / 2 + 100% / 2 );
	max-width    : 100vw;
	width 		 : 100vw;
	margin-bottom:30px;
	background-color:var(--ltgrey);;
	color: var(--grey);
}
.page-header h1{
	font-size:28px;
}

.sample_training p, .sample_training ul {
  margin-bottom: .25em;
}

@media (max-width:767.8px){
	.page-header{
		text-align: left;
		padding:10px;
		margin-bottom:15px;
	}
	.page-header h1{
		font-size:20px;
	}
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/
.woocommerce .cart-collaterals .cross-sells ul.products li, .woocommerce-page .cart-collaterals .cross-sells ul.products li {
	width: 100%;
	list-style: disc;
	margin-left: 25px;
}
/*--------------------------------------------------------------
# Product Search
--------------------------------------------------------------*/
			.product-search-form input,
			.product-search-form button{
				border:2px solid var(--green);;
				font-size: 16px;
				margin: 0;
				padding: 10px 15px;
				border-radius: 0px;
				text-transform: uppercase;
				width: 100%;
				font-weight:bold;
			}

			.product-search-form input[type=text]{
				background-color:#FFF;
				color:#000;
			}
			.product-search-form input[type=submit]{
				background-color:var(--green);
				color: #FFF;
			}
			.product-search-form input[type=submit]:hover{
				background-color:#FFF;
				color:var(--green);
			}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
object {
	max-width: 100%;
}

iframe {
	width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.blocks-gallery-item {
	padding: 0px 16px 16px 0px;
}

.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gal-container {
	margin-bottom: 20px;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
	border-top: 1px solid #FFF;
	font-size: 16px;
	background-color: var(--grey);
	color:#FFF;
}
.site-footer .logo{
	margin-top: -15px;
}
.site-info {
	font-size: 11px;
}
.site-footer a, .site-footer a:visited {
	color:#FFF;
}
.site-footer a:hover{
	text-decoration: underline;
}
/*-----------------------------------------------------------
# Custom Blocks
--------------------------------------------------------------*/
.recent-posts .image{
	background-color: #FFF;
	background-size: cover;
	background-position: center;
	height: 200px;
	display: block;
	margin-bottom: 1em;
}



h1.has-background, h2.has-background, h3.has-background, h4.has-background, h5.has-background, h6.has-background {
	padding: 5px 15px;
	margin-bottom: 0;
}

@media (min-width:786px){
	.is-style-hover-reveal .wp-block-cover__inner-container,
	.is-style-hover-reveal .has-background-dim{
		opacity:0 !important;
		transition: all 200ms;
	}
	.is-style-hover-reveal:hover .wp-block-cover__inner-container{
		opacity:1 !important;
	}
	.is-style-hover-reveal:hover .has-background-dim{
		opacity: 0.8 !important;
	}
}

.is-style-stripe-bg{
	position: relative;
	background-color:#000;
	color: #FFF;
	padding: 7px 10px 7px 45px;
	font-size: 1.25em;
	margin-bottom: 30px;
}	
.is-style-stripe-bg::before{ 
	content: '';
	position: absolute;
	top: 0;
	left: 6px;
	width: 18px;
	border-left: 6px solid #FFF;
	border-right: 6px solid #FFF;
	height: 100%;
	
}

/*
bootstrap edits
*/
.h-100{
	min-height: calc(100vh - var(--header-height));
}

/*
Plan Accordion
*/
.gpress_accordion_ul{
	list-style:none;
	background-color:#bfc9a7;	
	margin:0;
	padding:0;
	font-weight:bold;
}
.gpress_accordion_ul ul{
	margin:0;
	padding:0
}
.gpress_accordion_ul li{
	cursor:pointer;	
	display:block;
	width:100%;
	line-height:2.5em;
	text-transform:uppercase;
	margin:0;
	background-color:rgba(255,255,255,0.35);	
}
.gpress_accordion_ul > li{
	background-color:transparent;
	border-bottom:1px solid #5e701a;
}
.gpress_accordion_ul li.active{
	background-color:rgba(172,185,141,0.70);
}
.gpress_accordion_ul li{
	text-indent:10px;
}
.gpress_accordion_ul li ul li{
	border-left:15px solid #FFF;
}
.gpress_accordion_ul .arrow{
	border: solid #000;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding:3px;
	margin:18px 20px 0 0;
	float:right;
	 transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}
.gpress_accordion_ul li.active > span.arrow{
	 transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.gpress_accordion_ul .count{
	font-weight:normal;	
}
.gpress_accordion_ul a:link,
.gpress_accordion_ul a:active,
.gpress_accordion_ul a:visited{
	font-weight:normal;
	color:#000;
	text-decoration:underline;	
}
.gpress_accordion_ul a:hover{
	color:#333333;
}	
.gpress_accordion_ul{
	text-align:left;
	width:100%;

}
.gblock-content{
	width:100%;	
}
.gpress_accordion_ul li{
	background-color:#FFF;
		
}
.gpress_accordion_ul li.active,
.gpress_accordion_ul > li{
    background-color: #191919;
	color:#FFF;
}
.gpress_accordion_ul li.active ul {
	color:#000;
}
.gpress_accordion_ul > li  > span.arrow,
.gpress_accordion_ul li.active > span.arrow{
	border-color:#FFF;	
}
.gpress_accordion_ul > li{
	border-bottom:1px solid #FFF;	
}
.gpress_accordion_ul li.active > a:link{
	color:#FFF;	
}
.page-template-homepage-template .entry-header{
	display:none;	
}
.gpress_accordion_ul li{
	text-indent:0;
	padding-left: 8px;
}


/*
Testimonials
*/
.testimonial{
	position: relative;
	border: 1px solid var(--grey);
	margin-bottom: 30px;
	padding: 20px;
	height: 300px !important;
	display:flex;
	flex-direction: column;
	
}
.testimonial-header{
	color:var(--green);
	font-size: 1.1em;
	text-align: left;
	line-height: 1;
	font-weight: bold;
	margin-bottom: 15px;
}
.testimonial-content{
	color:var(--grey);
	flex-grow: 1;
	height: calc(100% - 50px);
	overflow: hidden;
}
.testimonial-footer{
	text-align: right;
}
.testimonial-icon{
	height: 50px;
	width: 50px;
	background-color:var(--green);
	border-radius: 50%;
	padding: 10px;
	display: inline-block;
}
.testimonial-icon span{
	color: #FFF;
	font-size: 30px;
}

.testimonial-slider .slick-prev,
.testimonial-slider .slick-next,
.testimonial-slider .slick-prev:focus,
.testimonial-slider .slick-next:focus{
	height:100%;
	margin:0;
	width: 34px;
	background-color: var(--green);
	color:#FFF;
	z-index: 1000;
}
.testimonial-slider .slick-prev:hover,
.testimonial-slider .slick-next:hover
{
	background-color:#000;
}

.testimonial-trigger{
	cursor: pointer;
}
/*
legacy button styling
*/
.mti-button {
    border:3px solid #ffffff;
    border-radius:0px;
    background:none;
    background-color:transparent;
    color:#ffffff;
    text-transform:uppercase;
    padding:1rem 2rem;
    transition:all ease 200ms;
    text-decoration:none;
    font-weight:700;
    font-size:1.25em;
}
.mti-button:hover {
    background:none;
    background-color:#ffffff;
    border:3px solid #ffffff;
    color:#202020;
}
a.mti-button-1,
button.mti-button-1, 
a.mti-button-2,
a.mti-button-3,
button.mti-button-3, 
a.mti-button-4, 
a.mti-button-5 {
	background: none;
	border: none;
	text-decoration:none;
    padding:15px;
    font-weight:700;
	text-align: center;
    font-size:1.2rem;
    font-family: 'Open Sans',sans-serif;
    transition:all ease 200ms;
    display:inline-block;
    line-height:normal;
    text-transform: uppercase;
    letter-spacing: 3px;
    min-width: 230px;
    border-radius: 3px;
}

a.mti-button-1,
button.mti-button-1{
    background-color:#696969;
    color:#fff;
}
a.mti-button-1:hover,
button.mti-button-1:hover{
    color:#666;
    background-color:#fff;
}
a.mti-button-2{
    background-color:#202020;
	color:#ddd;
}
a.mti-button-2:hover{
    background:none;
    color:#fff;
    background-color:#000;
}
a.mti-button-3{
    background-color:#fff;
    color:#475927;
}
a.mti-button-3:hover,
button.mti-button-3:hover {
    background-color:#696969;
    color:#fff;
}
a.mti-button-4, 
button.mti-button-4{
    background-color:#475927;
    color:#fff;
}
a.mti-button-4:hover,
button.mti-button-4:hover{
    background:none;
    background-color:#696969;
}
a.mti-button-5 {
	background-color:#274759;
    color:#ccc;
}
a.mti-button-5:hover {
	background-color: #37a7cd;
	color: #fff;
}