/*------------------------------------------------------------------
global.css
Last edited: 8/25/22
[Table of contents]

 1. GLOBAL STYLES
 2. WORDPRESS WYSIWYG
 3. BUTTONS
 4. ADMIN INSTRUCTIONS
 5. FLEX ROW
 6. RESPONSIVE VIDEO IFRAME
 7. TABLES
 8. VIDEO PLAY BUTTON
 9. SUB-MENU SHORTCODE
10. WIDGETS
11. BANDS
    11a. BANDS - GLOBAL COLORS
    11b. BANDS - PADDING
    11c. BANDS - GUTTER
12. SITE SEARCH RESULTS


100. MEDIA QUERIES
    100a. EXTRA SMALL DEVICES (phones 576px and up)
    100b. SMALL DEVICES (tablets, 768px and up)
    100c. MEDIUM DEVICES (desktops, 992px and up)
    100d. LARGE DEVICES (large desktops, 1200px and up)
    100e. EXTRA LARGE DEVICES (large desktops, 1400px and up)

[Notes]

-------------------------------------------------------------------*/

/*------------------------------------------------------------------
1. GLOBAL STYLES
-------------------------------------------------------------------*/
body {
	color: #707070;
	font-family: 'Alegreya Sans', sans-serif;
	font-size: 20px;
	line-height: 1.3;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
h1, 
h2, 
h3, 
h4, 
h5, 
h6 {
	font-family: 'Alegreya Sans', sans-serif;
	font-weight: 300;
	line-height: 1.2;
	margin-bottom: 0.4em;
}
h1, 
.h1,
.fake-h1 {
	font-size: 40px;
}
h2, 
.h2, 
.fake-h2 {
	color: #C52227;
	font-size: 30px;
	text-transform: none;
}
h3 {
	color: #C52227;
	font-size: 24px;
	text-transform: none;
}
h4 {
	font-size: 22px;
	margin: 0;
}
h5 {
	font-size: 20px;
}
h6 {
	font-size: 20px;
}
p {
	margin-bottom: 1.1em;
}
a:link {
	color: #00669A;
}
a:visited {
	color: #00669A;
}
a:hover {
	color: #C52227;
	text-decoration: none;
}
a:active {
	color: #00669A;
	text-decoration: none;
}
h1 a,
h1 a:link,
h1 a:visited,
h2 a,
h2 a:link,
h2 a:visited,
h3 a,
h3 a:link,
h3 a:visited,
h4 a,
h4 a:link,
h4 a:visited,
h5 a,
h5 a:link,
h5 a:visited,
h6 a,
h6 a:link,
h6 a:visited {
	color: #C52227;
	text-decoration: underline;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
	text-decoration: none;
}
ul, 
ol {
	margin: 0 0 0.9em 1.0em;
}
blockquote {
    background-color: #FAFAFA;
    border: 1px solid #CCE0EB;
    font-size: 25px;
    margin-bottom: 30px;
    padding: 20px 15px;
}
blockquote p {
	margin-bottom: 0.3em;
}
blockquote p:last-child {
	margin-bottom: 0;
}
strong, 
b {
	font-weight: bold;
}
em {
	font-style: italic;
}
i {
    font-style: italic;
}
sub, 
sup { 
	font-size: 75%;
	line-height: 0; 
	position: relative; 
	vertical-align: baseline; 
}
sup { 
	top: -0.5em; 
}
sub { 
	bottom: -0.25em; 
}
hr {
	border: 0;
	border-top: 2px solid #CCE0EB;
	height: 0;
}
pre {
    font-family: "Operator Mono SSm A", "Operator Mono SSm B", 'Source Code Pro', Menlo, Consolas, Monaco, monospace;
    clear: both;
    color: white;
    background: rgba(0,0,0,0.85);
	line-height: 28px;
	margin-bottom: 1.0em;
	min-width: 100%;
    padding: 0;
	position: relative;
    -moz-tab-size: 2;
    -o-tab-size: 2;
    tab-size: 2;
    -ms-word-break: normal;
    word-break: normal;
    -webkit-hyphens: none;
    -moz-hyphens: none;
    -ms-hyphens: none;
    hyphens: none;
}
pre[rel] {
    padding-top: 28px;
}
pre[rel]::before {
	background: #999;
	color: white;
    content: attr(rel);
    font-size: 1rem;
	left: 0;
	padding: 0;
    position: absolute;
	text-indent: 15px;
    top: 0;
    width: 100%;
}
pre code {
	background: none;
	display: block;
    font-size: 16px;
    line-height: 1.75;
    padding: 1.5rem;
    white-space: pre;
    -webkit-overflow-scrolling: touch;
}
/* Vertical Center */
.vertical-center [class^="col-"] {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
/* Photo Strip */
.photo-strip div:nth-child(n+2) {
    display: none;
}
/*------------------------------------------------------------------
2. WORDPRESS WYSIWYG
-------------------------------------------------------------------*/
/*https://codex.wordpress.org/CSS*/
/*.alignnone {
	margin: 5px 20px 20px 0;
}*/
.alignnone {
	margin: 5px 0 20px;
}
.aligncenter, 
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}
.alignright {
	float:right;
	margin: 5px 0 20px 20px;
}
.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}
a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}
a img.alignnone {
	margin: 5px 20px 20px 0;
}
a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}
a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}
.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%; /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}
.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}
.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}
.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}
.screen-reader-text { /* Text meant only for screen readers. */
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	overflow: hidden;
	width: 1px;
}
.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;
	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. */
}
/*------------------------------------------------------------------
3. BUTTONS
-------------------------------------------------------------------*/
.btn, 
a.btn {
	background-color: #00669A;
	border-radius: 50px;
	color: #ffffff;
	display: inline-block;
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.2em;
	padding: 20px 40px;
	text-decoration: none;
	text-transform: uppercase;
}
.btn:hover, 
a.btn:hover {
	background-color: #C52227;
	color: #ffffff;
	text-decoration: none;
}
.btn.focus, 
.btn:focus {
	box-shadow: none;
    outline: 0;
}
/*------------------------------------------------------------------
4. ADMIN INSTRUCTIONS
-------------------------------------------------------------------*/
.grid-directions {
	margin-top: 10px;
	text-align: center;
}
.grid-directions:first-of-type {
    margin-top: 0;
}
.grid-directions .row div {
	background: #61811d;
}
.grid-directions .row div:nth-of-type(odd) {
    background: #00559b;
}
.grid-directions .row p {
	background: #8bb929;
	color: #ffffff;
	margin: 0;
}
.grid-directions .row div:nth-of-type(odd) p {
    background: #005daa;
}
.band-icon-key [class^="icon-"] {
	background: none;
	color: #8bb929;
	float: left;
	font-size: 25px;
	margin-right: 15px;
	padding: 0;
}
.band-icon-key p {
	margin-bottom: 20px;
}
/*------------------------------------------------------------------
5. FLEX ROW
-------------------------------------------------------------------*/
/* Add class to bootstrap row to convert to Flexbox, gives boxes equal height */
.flex-row {
	display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.flex-row > [class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}
.row.flex-row:before,
.row.flex-row:after {
   content: normal;
}
/*------------------------------------------------------------------
6. RESPONSIVE VIDEO IFRAME
-------------------------------------------------------------------*/
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*------------------------------------------------------------------
7. TABLES
-------------------------------------------------------------------*/
table {
	border-collapse: collapse;
}
table th, 
table td {
	border: solid 1px #e3e3e3;
	font-size: 12px;
	padding: 3px;
	vertical-align: top;
}
table th {
	background: #ebebeb;
	text-transform: uppercase;
}

/*------------------------------------------------------------------
8. VIDEO PLAY BUTTON
-------------------------------------------------------------------*/
.video-play-wrapper {
	display: inline-block;
    position: relative;
}
.play-button:after {
	content: "\e928";
	font-family: 'icomoon';
	font-size: 90px;
	line-height: 1;
}
.play-button {
	align-items: center;
    background: none;
	color: rgba(0,0,0,0.6);
	cursor: pointer;
	display: flex;
	height: 100%;
	justify-content: center;
	margin: 0;
    padding: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.play-button:hover {
	color: rgba(0,0,0,1.0);
}
.play-button-white {
	color: rgba(255,255,255,0.6);
}
.play-button-white:hover {
	color: rgba(255,255,255,1.0);
}

/*------------------------------------------------------------------
9. SUB-MENU SHORTCODE
-------------------------------------------------------------------*/
ul.menu-style-02, 
ul.menu-style-02 .sub-menu {
	list-style-type: none; 
	margin: 0;
	max-width: 400px;
	padding: 0;
}
.menu-style-02 li a {
	border-bottom: 2px solid #CCE0EB;
	color: #707070;
	display: block;
	padding: 10px 0;
}
.menu-style-02 li:first-child a {
	border-top: 2px solid #CCE0EB;
}
ul.menu-style-02 .sub-menu li a::before {
    content: "- ";
}
ul.menu-style-02 .sub-menu li a {
	padding: 8px 15px 8px 30px;
	
}
.menu-style-02 li a:hover {
	color: #C52227;
	text-decoration: none;
}
ul.menu-style-03, 
ul.menu-style-03 .sub-menu {
	list-style-type: none; 
	margin: 0;
	max-width: 400px;
	padding: 0;
}
ul.menu-style-03 li a::before {
	content: "\e909";
    font-family: 'icomoon' !important; /* Use !important to prevent issues with browser extensions that change fonts */
    font-size: 9px;
    margin: 7px 3px 0 0;
    display: block;
    float: left;
}
.menu-style-03 li a {
    display: block;
    margin-bottom: 1px;
    padding: 3px 0;
    border-bottom: dotted 1px #cdcdcd;
}
ul.menu-style-03 .sub-menu li a::before {
    content: "- ";
}
.menu-style-03 li a:hover {
	text-decoration: none;
}
/*------------------------------------------------------------------
10. WIDGETS
-------------------------------------------------------------------*/
.widget {
	background-color: transparent;
    margin: 25px 0 15px;
    padding: 0;
}
.widget h3.widget-title {
	font-size: 30px;
}
.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget ul li {
	border-bottom: 2px solid #CCE0EB;
	margin: 0;
	padding: 10px 0;
}
.widget ul li:first-child {
	border-top: 2px solid #CCE0EB;
}
.widget ul li a,
.widget a:visited {
	color: #707070;
}
.widget a:active,
.widget ul li a:hover,
.widget ul li a:active {
	color: #C52227;
	text-decoration: none;
}
.widget span.post-date,
.widget span.event-dates,
.widget span.career-location {
	display: block;
	font-size: 14px;
	text-transform: uppercase;
}

/* GRAVITY FORM WIDGET */
.widget .gravity-form {
	background: none;
	padding: 0;
}
.widget .gravity-form ul li {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

/* NEWS ARCHIVE WIDGET */
.widget.aac_widget_news_archive ul li {
	border-bottom: none;
	margin: 0 0 10px;
	padding: 0;
}
.widget.aac_widget_news_archive ul li a {
	color: #8bb929;
}
.widget.aac_widget_news_archive ul li a:hover {
	color: #333333;
	text-decoration: underline;
}
/*------------------------------------------------------------------
11. BANDS - GLOBAL COLORS & PADDING
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
11a. BANDS - GLOBAL COLORS
-------------------------------------------------------------------*/
.band {
	background: #ffffff;
}
.band-gray {
	background: #f9f9f9;
}
/*------------------------------------------------------------------
11b. BANDS - PADDING
-------------------------------------------------------------------*/
.band-top-bottom-padding {
	padding: 25px 0;
}
.band-bottom-padding {
	padding: 0 0 25px 0;
}
.band-top-padding {
	padding: 25px 0 0 0;
}
/* 0-200 padding choices */
/* BOTTOM */

.band-bottom-padding-0 {
	padding-bottom: 0px;
}
.band-bottom-padding-10 {
	padding-bottom: 5px;
}
.band-bottom-padding-20 {
	padding-bottom: 10px;
}
.band-bottom-padding-30 {
	padding-bottom: 15px;
}
.band-bottom-padding-40 {
	padding-bottom: 20px;
}
.band-bottom-padding-50 {
	padding-bottom: 25px;
}
.band-bottom-padding-60 {
	padding-bottom: 30px;
}
.band-bottom-padding-70 {
	padding-bottom: 35px;
}
.band-bottom-padding-80 {
	padding-bottom: 40px;
}
.band-bottom-padding-90 {
	padding-bottom: 45px;
}
.band-bottom-padding-100 {
	padding-bottom: 50px;
}
.band-bottom-padding-110 {
	padding-bottom: 55px;
}
.band-bottom-padding-120 {
	padding-bottom: 60px;
}
.band-bottom-padding-130 {
	padding-bottom: 65px;
}
.band-bottom-padding-140 {
	padding-bottom: 70px;
}
.band-bottom-padding-150 {
	padding-bottom: 75px;
}
.band-bottom-padding-160 {
	padding-bottom: 80px;
}
.band-bottom-padding-170 {
	padding-bottom: 85px;
}
.band-bottom-padding-180 {
	padding-bottom: 90px;
}
.band-bottom-padding-190 {
	padding-bottom: 95px;
}
.band-bottom-padding-200 {
	padding-bottom: 100px;
}

/* TOP */
.band-top-padding-0 {
	padding-top: 0px;
}
.band-top-padding-10 {
	padding-top: 5px;
}
.band-top-padding-20 {
	padding-top: 10px;
}
.band-top-padding-30 {
	padding-top: 15px;
}
.band-top-padding-40 {
	padding-top: 20px;
}
.band-top-padding-50 {
	padding-top: 25px;
}
.band-top-padding-60 {
	padding-top: 30px;
}
.band-top-padding-70 {
	padding-top: 35px;
}
.band-top-padding-80 {
	padding-top: 40px;
}
.band-top-padding-90 {
	padding-top: 45px;
}
.band-top-padding-100 {
	padding-top: 50px;
}
.band-top-padding-110 {
	padding-top: 55px;
}
.band-top-padding-120 {
	padding-top: 60px;
}
.band-top-padding-130 {
	padding-top: 65px;
}
.band-top-padding-140 {
	padding-top: 70px;
}
.band-top-padding-150 {
	padding-top: 75px;
}
.band-top-padding-160 {
	padding-top: 80px;
}
.band-top-padding-170 {
	padding-top: 85px;
}
.band-top-padding-180 {
	padding-top: 90px;
}
.band-top-padding-190 {
	padding-top: 95px;
}
.band-top-padding-200 {
	padding-top: 100px;
}
/*------------------------------------------------------------------
11c. BANDS - GUTTER
-------------------------------------------------------------------*/
/* Thin Gutter */
.thin-gutter .row, 
.thin-gutter.row {
margin-right: -8px;
margin-left: -8px;
}
.thin-gutter > [class^="col-"], 
.thin-gutter > [class^=" col-"] {
padding-right: 8px;
padding-left: 8px;
}
/* No Gutter */
.no-gutter .row, 
.no-gutter.row {
margin-right: 0;
margin-left: 0;
}
.no-gutter [class^="col"],
.no-gutter [class^="col-"] {
padding-right: 0;
padding-left: 0;
}
/*------------------------------------------------------------------
12. SITE SEARCH RESULTS
-------------------------------------------------------------------*/
.search-results-wrapper form {
	margin: 20px 0;
}
.search-result {
	margin-bottom: 20px;
}
.search-result span.highlight {
	background: yellow;
}
/*------------------------------------------------------------------
13. PAGINATION
-------------------------------------------------------------------*/
.pagination {
	margin: 50px 0 0;
  }
  .page-item,
  .page-item-link {
	text-align: center;
  }
  .page-item .page-link,
  .page-item-link .page-link {
	color: #303030;
	padding: 15px;
	min-width: 58px;
  }
  .page-item.active .page-link,
  .page-item-link.active .page-link {
	background-color: #00669A;
	border-color: transparent;
	font-weight: 700;
	color: #ffffff;
  }
  .page-item .page-link,
  .page-item:first-child .page-link,
  .page-item:last-child .page-link,
  .page-item-link .page-link,
  .page-item-link:first-child .page-link,
  .page-item-link:last-child .page-link {
	border-radius: 0px;
	margin: 0;
  }
  .pagination [class^="icon-"],
  .pagination [class*=" icon-"] {
	font-size: 16px;
	padding: 0;
  }

/* add mobile CSS here */

/*------------------------------------------------------------------
100. MEDIA QUERIES
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
100a. EXTRA SMALL DEVICES (phones 576px and up)
-------------------------------------------------------------------*/
@media (min-width: 576px) {
    
}
/*------------------------------------------------------------------
100b. SMALL DEVICES (tablets, 768px and up)
-------------------------------------------------------------------*/
@media (min-width: 768px) {
/*------------------------------------------------------------------
1. GLOBAL STYLES
-------------------------------------------------------------------*/
/* Photo Strip */
.photo-strip div:nth-child(n+2) {
	display: block;
}
.photo-strip div:nth-child(n+3) {
	display: none;
}

/*------------------------------------------------------------------
11. BANDS
-------------------------------------------------------------------*/
/*------------------------------------------------------------------
11b. BANDS - PADDING
-------------------------------------------------------------------*/    
.band-top-bottom-padding {
	padding: 50px 0;
}
.band-bottom-padding {
	padding: 0 0 50px 0;
}
.band-top-padding {
	padding: 50px 0 0 0;
}    
/* 0-200 padding choices */
/* BOTTOM */
.band-bottom-padding-0 {
	padding-bottom: 0px;
}
.band-bottom-padding-10 {
	padding-bottom: 10px;
}
.band-bottom-padding-20 {
	padding-bottom: 20px;
}
.band-bottom-padding-30 {
	padding-bottom: 30px;
}
.band-bottom-padding-40 {
	padding-bottom: 40px;
}
.band-bottom-padding-50 {
	padding-bottom: 50px;
}
.band-bottom-padding-60 {
	padding-bottom: 60px;
}
.band-bottom-padding-70 {
	padding-bottom: 70px;
}
.band-bottom-padding-80 {
	padding-bottom: 80px;
}
.band-bottom-padding-90 {
	padding-bottom: 90px;
}
.band-bottom-padding-100 {
	padding-bottom: 100px;
}
.band-bottom-padding-110 {
	padding-bottom: 110px;
}
.band-bottom-padding-120 {
	padding-bottom: 120px;
}
.band-bottom-padding-130 {
	padding-bottom: 130px;
}
.band-bottom-padding-140 {
	padding-bottom: 140px;
}
.band-bottom-padding-150 {
	padding-bottom: 150px;
}
.band-bottom-padding-160 {
	padding-bottom: 160px;
}
.band-bottom-padding-170 {
	padding-bottom: 170px;
}
.band-bottom-padding-180 {
	padding-bottom: 180px;
}
.band-bottom-padding-190 {
	padding-bottom: 190px;
}
.band-bottom-padding-200 {
	padding-bottom: 200px;
}
/* TOP */

.band-top-padding-0 {
	padding-top: 0px;
}
.band-top-padding-10 {
	padding-top: 10px;
}
.band-top-padding-20 {
	padding-top: 20px;
}
.band-top-padding-30 {
	padding-top: 30px;
}
.band-top-padding-40 {
	padding-top: 40px;
}
.band-top-padding-50 {
	padding-top: 50px;
}
.band-top-padding-60 {
	padding-top: 60px;
}
.band-top-padding-70 {
	padding-top: 70px;
}
.band-top-padding-80 {
	padding-top: 80px;
}
.band-top-padding-90 {
	padding-top: 90px;
}
.band-top-padding-100 {
	padding-top: 100px;
}
.band-top-padding-110 {
	padding-top: 110px;
}
.band-top-padding-120 {
	padding-top: 120px;
}
.band-top-padding-130 {
	padding-top: 130px;
}
.band-top-padding-140 {
	padding-top: 140px;
}
.band-top-padding-150 {
	padding-top: 150px;
}
.band-top-padding-160 {
	padding-top: 160px;
}
.band-top-padding-170 {
	padding-top: 170px;
}
.band-top-padding-180 {
	padding-top: 180px;
}
.band-top-padding-190 {
	padding-top: 190px;
}
.band-top-padding-200 {
	padding-top: 200px;
}
}

/*------------------------------------------------------------------
100c. MEDIUM DEVICES (desktops, 992px and up)
-------------------------------------------------------------------*/
@media (min-width: 992px) {
/*------------------------------------------------------------------
1. GLOBAL STYLES
-------------------------------------------------------------------*/
body {
	font-size: 22px;
}
h1, 
.h1,
.fake-h1 {
	font-size: 40px;
}
h2, 
.h2, 
.fake-h2 {
	font-size: 36px;
}
h3 {	
font-size: 26px;
}
h4 {
font-size: 24px;
}
h5 {
font-size: 22px;
}
/* Photo Strip */
.photo-strip div:nth-child(n+3) {
	display: block;
}
/*------------------------------------------------------------------
10. WIDGETS
-------------------------------------------------------------------*/
.widget {
	margin-top: 0;
}
.widget h3.widget-title {
	font-size: 36px;
}
/*------------------------------------------------------------------
11c. BANDS - GUTTER
-------------------------------------------------------------------*/
/* 10 - 100 choices */
.gutter-10 [class^="col"],
.gutter-10 [class^="col-"] {
    padding-right: 5px;
    padding-left: 5px;
}
.gutter-20 [class^="col"],
.gutter-20 [class^="col-"] {
    padding-right: 10px;
    padding-left: 10px;
}
/*.gutter-30 [class^="col"],
.gutter-30 [class^="col-"] {
    padding-right: 15px;
    padding-left: 15px;
}*/
.gutter-40 [class^="col"],
.gutter-40 [class^="col-"] {
    padding-right: 20px;
    padding-left: 20px;
}
.gutter-50 [class^="col"],
.gutter-50 [class^="col-"] {
    padding-right: 25px;
    padding-left: 25px;
}
.gutter-60 [class^="col"],
.gutter-60 [class^="col-"] {
    padding-right: 30px;
    padding-left: 30px;
}
.gutter-70 [class^="col"],
.gutter-70 [class^="col-"] {
    padding-right: 35px;
    padding-left: 35px;
}
.gutter-80 [class^="col"],
.gutter-80 [class^="col-"] {
    padding-right: 40px;
    padding-left: 40px;
}
.gutter-90 [class^="col"],
.gutter-90 [class^="col-"] {
    padding-right: 45px;
    padding-left: 45px;
}
.gutter-100 [class^="col"],
.gutter-100 [class^="col-"] {
    padding-right: 50px;
    padding-left: 50px;
}
[class*="gutter-"].row [class^="col"]:first-of-type:not(.order-lg-2),
[class*="gutter-"].row [class^="col-"]:first-of-type:not(.order-lg-2), 
[class*="gutter-"] .row [class^="col"]:first-of-type:not(.order-lg-2),
[class*="gutter-"] .row [class^="col-"]:first-of-type:not(.order-lg-2),
[class*="gutter-"].row [class^="col"].order-lg-1,
[class*="gutter-"].row [class^="col-"].order-lg-1, 
[class*="gutter-"] .row [class^="col"].order-lg-1,
[class*="gutter-"] .row [class^="col-"].order-lg-1 {
    padding-left: 15px;
}
[class*="gutter-"].row [class^="col"]:last-of-type:not(.order-lg-1),
[class*="gutter-"].row [class^="col-"]:last-of-type:not(.order-lg-1), 
[class*="gutter-"] .row [class^="col"]:last-of-type:not(.order-lg-1),
[class*="gutter-"] .row [class^="col-"]:last-of-type:not(.order-lg-1),
[class*="gutter-"].row [class^="col"].order-lg-2,
[class*="gutter-"].row [class^="col-"].order-lg-2, 
[class*="gutter-"] .row [class^="col"].order-lg-2,
[class*="gutter-"] .row [class^="col-"].order-lg-2 {
    padding-right: 15px;
}   
}

/*------------------------------------------------------------------
100d. LARGE DEVICES (large desktops, 1200px and up)
-------------------------------------------------------------------*/
@media (min-width: 1200px) {
	
}

/*------------------------------------------------------------------
100e. EXTRA LARGE DEVICES (large desktops, 1400px and up)
-------------------------------------------------------------------*/
@media screen and (min-width: 1450px) {
/*------------------------------------------------------------------
1. GLOBAL STYLES
-------------------------------------------------------------------*/    
  .container {
    max-width: 1390px;
  }   
}