/*
Theme Name: custom-theme
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: custom-theme
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

custom-theme is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type='button'],
input[type='reset'],
input[type='submit'] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type='checkbox'],
input[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  height: auto;
}

input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
  color: #404040;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

p {
  margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

blockquote {
  margin: 0 1.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: 'Courier 10 Pitch', Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, 'Andale Mono', 'DejaVu Sans Mono', monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}

big {
  font-size: 125%;
}

/*--------------------------------------------------------------
# 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 {
  background: #fff;
  /* Fallback for when there is no custom background color defined. */
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

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;
  /* Extra wide images within figure tags don't overflow the content area. */
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type='button'],
input[type='reset'],
input[type='submit'] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.6em 1em 0.4em;
}

button:hover,
input[type='button']:hover,
input[type='reset']:hover,
input[type='submit']:hover {
  border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type='button']:active,
input[type='button']:focus,
input[type='reset']:active,
input[type='reset']:focus,
input[type='submit']:active,
input[type='submit']:focus {
  border-color: #aaa #bbb #bbb;
}

input[type='text'],
input[type='email'],
input[type='url'],
input[type='password'],
input[type='search'],
input[type='number'],
input[type='tel'],
input[type='range'],
input[type='date'],
input[type='month'],
input[type='week'],
input[type='time'],
input[type='datetime'],
input[type='datetime-local'],
input[type='color'],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 3px;
}

input[type='text']:focus,
input[type='email']:focus,
input[type='url']:focus,
input[type='password']:focus,
input[type='search']:focus,
input[type='number']:focus,
input[type='tel']:focus,
input[type='range']:focus,
input[type='date']:focus,
input[type='month']:focus,
input[type='week']:focus,
input[type='time']:focus,
input[type='datetime']:focus,
input[type='datetime-local']:focus,
input[type='color']:focus,
textarea:focus {
  color: #111;
}

select {
  border: 1px solid #ccc;
}

textarea {
  width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: royalblue;
}

a:visited {
  color: purple;
}

a:hover,
a:focus,
a:active {
  color: midnightblue;
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
}

.main-navigation ul {
  display: none;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 100%;
  left: -999em;
  z-index: 99999;
}

.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}

.main-navigation ul ul a {
  width: 210px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}

.main-navigation li {
  float: left;
  position: relative;
}

.main-navigation a {
  display: block;
  text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}

@media screen and (min-width: 37.5em) {
  .menu-toggle {
    display: none;
  }
  .main-navigation ul {
    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;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.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
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}

.hentry {
  margin: 0 0 1.5em;
}

.updated:not(.published) {
  display: none;
}

.page-content,
.entry-content,
.entry-summary {
  margin: 1.5em 0 0;
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
}

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

/*--------------------------------------------------------------
# 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,
iframe,
object {
  max-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
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}

.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;
}
/* Grids - Bootstrap */
/*!
 * Bootstrap Grid v4.0.0-beta.2 (https://getbootstrap.com)
 * Copyright 2011-2017 The Bootstrap Authors
 * Copyright 2011-2017 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 60%;
    max-width: 60%;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1130px;
  }
}
/*@media (min-width: 1500px) {
  .container {
    max-width: 1440px;
  }
}*/
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*='col-'] {
  padding-right: 0;
  padding-left: 0;
}

.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col,
.col-auto,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm,
.col-sm-auto,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md,
.col-md-auto,
.col-lg-1,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg,
.col-lg-auto,
.col-xl-1,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  max-width: 40%;
}

.col-8 {
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -ms-flex-order: -1;
  order: -1;
}

.order-1 {
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-6-advanced-placement {
    -ms-flex: 0 0 35%;
    flex: 0 0 35%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-1 {
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.flex-row {
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column {
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -ms-flex-pack: justify !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/***********************************Adding Fonts*********************/

@font-face {
  font-family: 'CartoGothicPro Bold';
  src: url('../otf/cartogothicpro-bold.otf')
      format('opentype'),
    url('../eot/cartogothicpro-bold.eot')
      format('embedded-opentype'),
    url('../ttf/cartogothicpro-bold.ttf')
      format('truetype');
  font-weight: 600;
}
@font-face {
  font-family: 'CartoGothicPro';
  src: url('../otf/cartogothicpro-book.otf')
      format('opentype'),
    url('../eot/cartogothicpro-book.eot')
      format('embedded-opentype'),
    url('../ttf/cartogothicpro-book.ttf')
      format('truetype');
  font-weight: 400;
}
@font-face {
  font-family: 'CartoGothicPro Light';
  src: url('../otf/cartogothicpro-light.otf')
      format('opentype'),
    url('../eot/cartogothicpro-light.eot')
      format('embedded-opentype'),
    url('../ttf/cartogothicpro-light.ttf')
      format('truetype');
  font-weight: 100;
}

/************************************General Styles Start***********************/
.on-desktop {
  display: none;
}

body,
html {
  color: #000;
  font-family: 'CartoGothicPro', 'sans-serif';
}
#page {
  position: relative;
}
b,
strong {
  font-family: 'CartogothicPro Bold', 'CartoGothicPro', 'sans-serif';
}
p a,
a,
a:visited {
  text-decoration: none;
  color: #f9a017;
}
li {
  font-family: 'CartoGothicPro Light', 'CartoGothicPro', 'sans-serif';
  position: relative;
}
.slides li,
.flex-direction-nav li {
  padding: 0 !important;
}
.flex-direction-nav {
  position: absolute;
  top: 50%;
  width: 100%;
}

p {
  margin: 1rem 0;
  font-family: 'CartoGothicPro Light', 'CartoGothicPro', 'sans-serif';
  letter-spacing: 0.5px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'CartoGothicPro Bold', 'CartoGothicPro', 'sans-serif';
}
h5 {
  font-size: 16px;
  margin: 18px 0;
}
.hide {
  display: none;
}
.entry-title a,
.heading-h2 a,
.heading-h3 a,
.heading-h4 a {
  color: #000;
}
.entry-title a:hover,
.heading-h2 a:hover,
.heading-h3 a:hover,
.heading-h4 a:hover {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  color: #000;
}
select:focus,
button:focus,
a:focus,
input:focus,
input[type='submit']:focus {
  outline: 0 !important;
}
.line-break {
  display: block;
}
.tribe-events-page-title {
  line-height: 1.5;
}
.heading-h1 {
  text-align: center;
}
.page-title,
.entry-title,
.heading-h1 {
  font-size: 30px;
}
.heading-h2 {
  font-size: 28px;
  text-align: center;
  margin: 1rem 0 1rem;
}
.heading-h3 {
  font-size: 26px;
}
.heading-h4 {
  font-size: 20px;
  margin: 1.5rem 0 1rem;
  line-height: 1.3;
}
h1 {
  font-size: 30px;
  margin: 1rem 0;
  line-height: 1;
}
h2 {
  font-size: 24px;
  line-height: 1;
  margin: 1rem 0;
}
h3 {
  font-size: 20px;
}
h4,
.widgettitle,
.widget-title {
  font-size: 18px;
  line-height: 1;
  margin: 1rem 0;
}
.fa,
.fab,
.fal,
.far,
.fas {
  color: #f37734 !important;
}
/*.tribe-events-button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.button,
.more-button,
.more-button-link,
.link-button,
a.ywraq-big-button.ywraq-accept,
a.ywraq-big-button.ywraq-pdf-file,
button,
input[type="submit"]{
	background:#1770f9 !important;
	color:#fff !important;
	padding:0.8rem 1rem;
	line-height:1;
	font-weight:normal;
	border-radius:7px;
	display:inline-block;
}*/
.tribe-events-button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.button,
.more-button,
.heading-h4 .more-button-link,
.more-button-link,
.link-button,
.hbspt-form .input.hs-button,
a.ywraq-big-button.ywraq-accept,
a.ywraq-big-button.ywraq-pdf-file,
button:not(.tribe-bar-views-toggle):not(.menu-toggle):not(.owl-next):not(
    .owl-prev
  ),
input[type='submit'] {
  background: #f37734 !important;
  color: #fff !important;
  padding: 0.8rem 1rem;
  line-height: 1;
  text-align: center;
  font-weight: normal;
  border-radius: 30px !important;
  display: inline-block;
  text-transform: capitalize !important;
  text-shadow: none !important;
  border-color: #f37734 !important;
}
.site-header input[type='submit'] {
  border-radius: 0 !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.button:hover,
.more-button-link:hover,
.more-button:hover,
#page .link-button:hover,
.hbspt-form .input.hs-button:hover,
button:not(.tribe-bar-views-toggle):not(.menu-toggle):not(.owl-next):not(
    .owl-prev
  ):hover,
a.ywraq-big-button.ywraq-pdf-file:hover,
a.ywraq-big-button.ywraq-accept:hover,
input[type='submit']:hover {
  text-decoration: none;
  /*background-color:#000 !important;
	border-color:#000 !important;*/
  background-color: #f87934e0 !important;
  border-color: #f87934e0 !important;
}
.more-button-link,
.more-button {
  background: #f37734 !important;
  padding: 0.5rem 1rem !important;
  font-size: 14px !important;
}
.more-link-small,
.more-link {
  color: #f9a017 !important;
  font-weight: bold;
  position: relative;
}
.more-link-small {
  font-size: 14px;
  color: #f37734 !important;
}
.more-link-small:hover,
.more-link:hover {
}
.more-link-small:after,
.more-link:after {
  content: ' ';
  position: absolute;
  right: -25px;
}
.more-link:after {
  background: url('../right-arrow-small.html') no-repeat;
  width: 12px;
  height: 20px;
  top: 2px;
}
.more-link-small:after {
  background: url('../right-arrow-mini.html') no-repeat;
  width: 6px;
  height: 10px;
  top: 25%;
  right: -12px;
}
.highlight {
  position: relative;
  z-index: 10;
  display: inline-block;
}
.highlight:after {
  position: absolute;
  content: '';
  width: 115%;
  height: 100%;
  left: -10%;
  top: 10%;
  z-index: -20;
  background: url('../highlighter.html') no-repeat center;
  background-size: contain;
}
.contact.highlight:after {
  background: url('../contact-highlight.html') no-repeat center;
  background-size: contain;
}
.search-field {
  padding: 6px !important;
}
ul,
ol,
li > ul,
li > ol {
  margin-left: 0;
}
select::-ms-expand {
  display: none;
}
.facetwp-sort select,
.tribe-bar-views-list,
.orderby,
.variations select,
.gfield_select,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  z-index: 0;
  background: transparent;
  cursor: pointer;
}
.orderby {
  background: transparent;
}
.select select {
  padding: 10px;
}
/*.tribe-bar-views-list,*/
.select,
.facetwp-sort,
.orderby,
.variations select,
.ginput_container_select,
.hs-fieldtype-select .input,
.quantity_select,
.select-list,
.woocommerce-ordering {
  position: relative;
  z-index: 0;
}

/*.tribe-bar-views-list:before,*/
.select-list:before,
.select:before,
.facetwp-sort:before,
.orderby:before,
.variations select:before,
.ginput_container_select:before,
.hs-fieldtype-select .input:before,
.quantity_select:before,
.woocommerce-ordering:before {
  position: absolute;
  right: 15px;
  top: 10px;
  content: '\f0d7';
  font-family: 'fontawesome';
  color: #f37734;
  z-index: -1;
}
.select {
  display: inline-block;
  background: transparent;
}
.select select {
  padding-right: 30px !important;
}
.select:before {
  right: 30px;
  z-index: 99;
}
table.cart .quantity_select,
.woocommerce-cart-form .quantity_select {
  float: none !important;
  margin-right: 0;
}
table.cart .quantity_select:before,
.woocommerce-cart-form .quantity_select:before {
  content: '';
}
.widget select,
table.cart select,
.woocommerce-cart-form select {
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
}
.widget select,
table.cart select,
.woocommerce-cart-form select {
  padding: 5px;
}
.panel {
  display: none;
  overflow: hidden;
}
.faqs .panel.active,
.panel.active {
  display: block;
}
.faqs .faq .fa {
  margin-right: 10px;
}
.faqs .faq:hover {
  cursor: pointer;
}
.faqs .faq {
  position: relative;
}
.faqs .faq,
.faqs .panel {
  padding-left: 20px;
}
.faqs .faq:before {
  font: normal normal normal 14px/1 FontAwesome;
  position: absolute;
  left: 0;
  content: '\f0d7';
  font-size: 18px;
  color: #f37734 !important;
}
.faqs .faq.open:before {
  content: '\f0d8';
}
.events-list.tribe-bar-is-disabled #tribe-events-content-wrapper,
.events-list .tribe-events-loop,
.single-tribe_organizer .tribe-events-loop,
.single-tribe_venue .tribe-events-loop,
.tribe-events-day .tribe-events-loop {
  max-width: initial;
}
.corner {
  position: relative;
  display: inline-block;
  margin: 0 25px 25px;
  z-index: 0;
}
.corner img {
  display: block;
}
.corner:before,
.corner:after {
  position: absolute;
  content: '';
}
.corner:before {
  background: url('../top-corner.html') no-repeat center;
  right: -13px;
  top: -13px;
  width: 111px;
  height: 111px;
}
.corner:after {
  background: url('../bottom-corner.html') no-repeat center;
  width: 166px;
  height: 160px;
  bottom: -21px;
  left: -21px;
  z-index: -1;
}
/************************************General Styles End************************/
/***********************************Cart/Checkout Page Styles Start*********************/
table.cart .product-thumbnail,
.woocommerce-cart-form .product-thumbnail {
  text-align: center;
}
table.cart img {
  width: 25% !important;
}
.woocommerce-cart-form .product-thumbnail img {
  width: 25% !important;
}

.woocommerce-cart-form .coupon .button,
.woocommerce-cart-form .coupon .input-text {
  width: 100% !important;
  padding: 1rem !important;
  margin-bottom: 0.5rem !important;
}
.woocommerce-error {
  margin-left: 0 !important;
  padding-left: 2rem !important;
}
.woocommerce-error::before {
  left: 0.5rem;
}
tr.wc_bof_product_list td {
  padding: 10px;
}
.woocommerce form .form-row textarea,
.woocommerce-checkout input[type='password'],
.woocommerce-checkout input {
  padding: 0.5rem !important;
}
.select2-container .select2-selection--single,
.woocommerce-checkout .select2-selection {
  height: 36px;
  border: 1px solid #ccc;
}
#shipping_address_2_field,
#billing_address_2_field {
  margin-top: 15px;
}
.woocommerce .wc_avatax_validate_address {
  margin: 5px 0;
}
.select2-container .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .select2-selection .select2-selection__rendered,
.woocommerce-checkout .select2-selection .select2-selection__arrow {
  line-height: 36px;
}
.woocommerce-checkout .select2-selection .select2-selection__arrow b {
  top: 80%;
}
.woocommerce form .form-row.woocommerce-invalid label {
  color: #000;
}
.checkout_coupon .input-text {
  padding: 1.25rem 1rem;
}

.woocommerce-order-overview {
  margin: 0 0 1rem !important;
  padding: 0 !important;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.woocommerce .order_details tr td {
  padding: 0.5rem 0 0.5rem 0.5rem;
}
.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1,
.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  width: 100%;
  flex: 100%;
  max-width: 100%;
  float: none;
  padding: 0;
}
.woocommerce ul.order_details li {
  padding: 1rem;
  margin: 0;
  width: 100%;
  border: 0;
}
.woocommerce-account .woocommerce-Button.button {
  margin-right: 20px;
}
.cart_item .sku,
.cart_item .media-text {
  margin: 0;
  font-size: 12px;
}
.button.return-form-product {
  margin-bottom: 20px !important;
}
/***********************************Cart/Checkout Page Styles End*********************/
/************************************Header Styles Start***********************/
.menu-toggle:after,
.menu-toggle:before,
.menu-toggle {
  height: 3px;
  padding: 0 !important;
  width: 25px;
  background-color: #fff !important;
  border: none;
  border-radius: 0;
  content: '';
  position: absolute;
  left: 15px;
  top: 17px;
  z-index: 99;
  text-indent: -9999px;
}
.menu-toggle:after {
  top: 7px;
  left: 0;
}
.menu-toggle:before {
  top: -7px;
  left: 0;
}
.menu-toggle:hover {
  background-color: #fff !important;
}

.main-navigation ul {
  display: none;
}
.top-bar {
  /*background:#252525;*/
  background: #333;
  color: #fff;
  padding: 6px 0;
}
.top-bar p,
.top-bar a {
  color: #fff;
  font-size: 13px;
}
.top-bar a .fas {
  color: #f9a017 !important;
}
.top-bar #top-menu {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  justify-content: center;
}
.top-bar #top-menu li {
  margin-left: 25px;
  position: relative;
}
.top-bar #top-menu li:after {
  content: '/';
  position: absolute;
  right: -15px;
}
.top-bar #top-menu li:last-child:after {
  content: '';
}
.site-header .site-title {
  line-height: 0;
  margin: 20px 0;
  text-align: center;
}
#site-navigation {
  text-align: center;
  position: inherit;
}
#site-navigation .menu-main-menu-container {
  display: inline-block;
}
.site-header #primary-menu .menu-item a {
  font-size: 15px;
  padding: 10px 25px;
  color: #000000;
  position: relative;
  letter-spacing: 1px;
}
.site-header #primary-menu .menu-item a:hover {
  text-decoration: none;
} /*
.site-header #primary-menu  > .menu-item.menu-item-has-children > a:after{
	font-family: "FontAwesome";
	content: "\f078";
	position:absolute;
	width:10px;
	top:40%;
	right:10px;
	font-size:10px;
	color:#f9a017 !important;
}
.is-mobile .site-header #primary-menu  > .menu-item.menu-item-has-children > a.up-arrow:after{
	content: "\f077";
}*/
.site-header #primary-menu > .menu-item.menu-item-has-children a .fa {
  margin-left: 8px;
  font-weight: 600;
}
.main-navigation.toggled .menu-item.menu-item-has-children a .fa {
  padding: 0 10px;
}
.site-header
  #primary-menu
  > .menu-item.menu-item-has-children:last-child
  a:after {
  right: 10px;
}
.site-header #primary-menu .menu-item.menu-item-has-children > .sub-menu {
  border-top: 4px solid #cccccc;
  background: #fff;
}
.site-header #primary-menu .sub-menu a {
  padding: 14px 15px !important;
  line-height: 1;
}
.main-navigation.toggled {
  text-align: left !important;
}
.main-navigation.toggled ul li {
  float: none;
}
.main-navigation.toggled .menu-main-menu-container {
  display: block !important;
}
.main-navigation.toggled ul ul {
  display: none;
}
.site-header #primary-menu .menu-item.menu-item-has-children > .sub-menu,
.site-header
  #primary-menu
  .menu-item.menu-item-has-children
  > .sub-menu
  .sub-menu,
.site-header #primary-menu .menu-item.menu-item-has-children:hover > .sub-menu,
.site-header
  #primary-menu
  .menu-item.menu-item-has-children
  > .sub-menu:hover
  .sub-menu {
  left: -9999px;
}
.main-navigation ul > li.open > .sub-menu {
  left: auto !important;
}
.main-navigation.toggled ul li .sub-menu {
  position: relative;
  float: none;
}
.site-search {
  background: #e1e1e1;
  padding: 8px 0;
}
.site-search .search-form {
  display: flex;
  position: relative;
}
.site-search .search-form .search-field {
  width: 100%;
  border-radius: 0;
  padding: 12px 25px !important;
  line-height: 1;
  border: 0;
}
.site-search .search-form label {
  width: 100%;
}
.site-search .search-form .search-submit {
  width: 95px !important;
  border-radius: 0;
  margin-left: -5px;
  text-indent: 9999px;
  background: #00b7ba !important;
  padding: 12px 25px !important;
  line-height: 1;
  border: 0;
}
.site-search .search-form:after {
  position: absolute;
  content: '\f002';
  font-family: FontAwesome;
  right: 40px;
  top: 20%;
  color: #fff;
}
/************************************Header Styles End***********************/
/************************************Slider Styles Start***********************/
/*.banner-section.default{
	background: #000 url('/wp-content/uploads/banner-bg.jpg') no-repeat center;
	background-size:cover !important;
	color:#fff;
}*/
.site-content {
  margin: 30px 0;
}
.page-template-frontpage .site-content,
.home .site-content,
.site-content.has-banner {
  margin: 0;
  border: 0;
}
.banner-section {
  color: #fff;
  position: relative;
  padding: 0;
}
.banner-section img {
  width: 100%;
  min-height: 155px;
  object-fit: cover;
}
.banner-section .caption-wrap img {
  width: auto;
  display: inline-block;
  min-height: auto;
}
.banner-section .caption-wrap .heading-h1 {
  text-align: center;
  text-shadow: 1px 2px 4px #00000059;
}

div.banner-section.professional-learning.heading-h1 {
  text-shadow: none;
}

#boxed-h1 {
  box-shadow: none !important;
}

.is-mobile .banner-section {
  background: #000;
}
.is-mobile .banner-section.default {
  background: transparent;
}
/*.banner-section.default .row{min-height:200px;}*/
.metaslider .caption-wrap {
  text-align: center;
  padding-bottom: 20px;
  width: 100%;
  opacity: 1 !important;
}

.banner-section > .container {
  padding-top: 5px;
  padding-bottom: 5px;
}
.metaslider .flexslider .flex-direction-nav li a {
  /*background:#fff url('/wp-content/uploads/right-arrow-small.png') no-repeat center!important;*/
  background: #fff url('../png/arrow-orange-18.png') no-repeat
    center !important;
  border-radius: 50%;
  width: 45px !important;
  height: 45px !important;
  opacity: 0.8 !important;
}
.banner-section img {
  display: block;
}
.metaslider .flexslider .flex-direction-nav li .flex-next {
  transform: rotate(180deg);
}
.banner-section .caption-wrap,
.metaslider .caption-wrap {
  position: relative;
  padding: 10px 0 30px;
}
.is-mobile .banner-section .caption-wrap {
  text-align: center;
}
.is-desktop .metaslider .caption-wrap {
  background: transparent;
  bottom: auto;
  top: 5%;
  position: absolute;
}
.banner-section .caption-wrap {
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-items: center;
  position: absolute;
  opacity: 1 !important;
}
.metaslider .flexslider {
  margin-bottom: 0 !important;
}
.metaslider .flex-control-nav {
  display: none;
}
.page-template-frontpage {
  display: block;
}
.metaslider .flex-control-nav {
  display: block;
  position: absolute;
  bottom: 20px !important;
}
.flex-control-paging li a {
  width: 15px !important;
  height: 15px !important;
  border: 1px solid transparent !important;
  background: #e1e1e1 !important;
}
.flex-control-paging li a.flex-active {
  border: 1px solid #666 !important;
  background: transparent !important;
}
.metaslider .flex-direction-nav .flex-next {
  right: 5px !important;
}
.metaslider .flex-direction-nav .flex-prev {
  left: 5px !important;
}
.banner-section .link-button,
.metaslider .link-button {
  margin-top: 1rem;
}
.banner-section.default {
  color: #000;
}
/************************************Slider Styles End***********************/
/************************************Homepage Styles Start***********************/
.products-section .product-single {
  min-height: 355px;
  margin: 10px 10px 0;
  background-size: cover !important;
  background-repeat: no-repeat;
  background-color: #000;
  padding: 1rem;
  color: #fff;
  position: relative;
}
.products-section .product-single .product-detail {
  padding: 1rem;
  position: absolute;
  width: 98.9%;
  bottom: 0;
}
.products-section .product-single .product-detail p,
.products-section .product-single .product-detail h3 {
  margin: 0 0 10px;
  color: #fff;
  line-height: 1.3;
}
.products-section .product-single .product-detail h3 a {
  color: #fff;
}
.products-section .product-single .prod-link {
  text-align: right;
}
.products-section .product-single .prod-link a {
  font-size: 13px;
  text-align: center;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: flex-end;
}

.products-section .product-single .prod-link a:hover {
  text-decoration: none;
}
.products-section .product-single .prod-link a span.line-break {
  height: 45px;
  width: 45px;
  background: #f37734 url('../right-arrow-white.html') no-repeat
    center;
  border-radius: 50%;
  display: inline-block;
  order: 2;
  margin-left: 10px;
}
.products-section .product-single .prod-link a span.line-break:hover {
  text-decoration: none;
  background: #000 url('../right-arrow-white.html') no-repeat
    center;
}
.blogs-section .blogs {
  padding: 0px 0 10px;
}
.blogs-section .blogs .single-blog {
  margin-bottom: 30px;
}
.blogs-section .blogs .single-blog img {
  width: 100%;
}
.blogs-section .blogs .single-blog .author {
  font-weight: bold;
}
.blogs-section .blog-heading {
  margin-top: 40px;
}
.blogs-section .blogs .blog-content {
  padding: 0 20px;
}
.testimonial-section {
  background: url('../jpg/testimonial-bg.jpg') no-repeat center;
  background-size: cover !important;
  padding: 3.25rem 0 3.6rem;
  text-align: center;
}
.testimonial-section .owl-item.active {
  z-index: 999;
}
.testimonial-section .owl-carousel {
  margin-bottom: 38px;
}
.blogs-section .owl-carousel .owl-dots,
.testimonial-section .owl-carousel .owl-dots {
  position: absolute;
  top: -7px;
  width: 100%;
  line-height: 1;
}
.blogs-section .owl-carousel .owl-dots {
  position: relative;
  text-align: center;
  top: 0;
}
.blogs-section .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  left: 0;
}
.testimonial-section .owl-carousel .owl-stage {
  margin-top: 3.25rem;
}
.blogs-section .owl-carousel .owl-dots .owl-dot,
.testimonial-section .owl-carousel .owl-dots .owl-dot {
  background: #d4d5d2 !important;
  border-radius: 50%;
  padding: 5px !important;
  margin-right: 30px;
}
.blogs-section .owl-carousel .owl-dots .owl-dot.active,
.testimonial-section .owl-carousel .owl-dots .owl-dot.active {
  background: #f9a017 !important;
}
.testimonial-section .testimonial {
  background: #fff;
  padding: 30px 50px 25px;
}
.testimonial-section .owl-carousel .owl-nav {
  position: absolute;
  top: 52%;
  left: 10%;
  width: 80%;
}
.testimonial-section .testimonial .author {
  color: #00b7ba;
  font-weight: bold;
}
.testimonial-section .testimonial .author span {
  font-size: 14px;
  color: #818a90;
  font-weight: normal;
}
.testimonial-section .item {
  opacity: 0.7;
  transition: 0.4s ease all;
  margin: 0 20px;
  transform: scale(0.8);
  border-radius: 7px;
  box-shadow: 0px 2px 5px 2px #d8d8d4;
  margin-bottom: 5px !important;
}
.testimonial-section .active .item {
  opacity: 1;
  transform: scale(1);
}
.testimonial-section .owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}
.testimonial-section .testimonial-content p {
  font-weight: 100;
}
.testimonial-section .owl-carousel .owl-nav .owl-prev {
  margin-left: 2%;
}
.testimonial-section .owl-carousel .owl-nav .owl-next {
  margin-right: 2%;
}
.events-section {
  text-align: center;
  padding: 25px 0 20px;
}
.events-section .event-details {
  text-align: left;
}
.events-section .single-event {
  padding: 1.5rem 0;
  border-bottom: 1px solid #d7d7d7;
}
.events-section .single-event .event-date h2 a,
.events-section .single-event .event-date h2 {
  text-transform: uppercase;
  width: 48%;
  margin: 0 auto;
  color: #354e60;
  font-weight: bold;
  text-align: right;
}
.events-section .event-details h3 a:hover,
.events-section .single-event .event-date h2 a:hover {
  text-decoration: none;
}
.events-section .event-details h3 a:hover {
  color: #cacaca;
}
.tribe-bar-disabled #tribe-bar-form label {
  font-size: 12px;
}
#tribe-bar-views .tribe-bar-views-list {
  padding: 0;
}
.tribe-bar-disabled {
  float: none;
}
.events-section .single-event .event-date h2 span {
  color: #00b7ba;
}
.events-section .event-details h3 a,
.events-section .event-details h3 {
  font-size: 24px;
  margin: 0 0 18px;
  line-height: 1;
}
/*.line{
	width: 100%;	
}*/
.line span {
  height: 3px;
  display: block;
  width: 25px;
  background: #00b7ba;
}
.events-section .single-event p {
  margin: 20px 0;
}
.events-section .single-event .events-date {
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #898989;
}
.events-section .events-link {
  padding: 1.5rem 0;
}
.featured-section .heading {
  background: url('../featured-products-bg.html') no-repeat;
  background-size: cover !important;
  padding: 5rem 0 9.5rem;
}
.featured-section .heading .heading-h2 {
  margin: 0;
  color: #fff;
}
.featured-section .owl-carousel {
  padding: 0 55px !important;
  margin-bottom: 40px;
}
.featured-section.blogs-section .owl-carousel {
  margin-bottom: 0;
}
.owl-carousel .owl-nav .owl-prev span,
.owl-carousel .owl-nav .owl-next span,
.featured-section .owl-dots {
  display: none;
}
.featured-section .owl-carousel .owl-nav {
  position: absolute;
  top: 30%;
  width: 100%;
  left: 0;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
  width: 18px;
  height: 32px;
  background: url('../png/arrow-orange-18.png') no-repeat center !important;
}
.owl-carousel .owl-nav .owl-prev {
  float: left;
  /*background:url('/wp-content/uploads/left-arrow.png') no-repeat center !important;*/
}
.owl-carousel .owl-nav .owl-next {
  float: right;
  /*background:url('/wp-content/uploads/rigth-arrow.png') no-repeat center !important;*/
  transform: rotate(180deg);
}
.featured-section h4 {
  margin: 28px 0 15px;
  line-height: 1;
}
.featured-section h4 a {
  color: #000;
  font-size: 20px;
  line-height: 1;
}
.featured-section p {
  line-height: 1;
  margin: 0 0 20px;
}
.featured-section .prod-cats a {
  color: #a1a1a1;
  font-size: 13px;
}
.featured-section .owl-carousel .owl-item {
  text-align: center;
}
.featured-section.blogs-section .owl-carousel .owl-item {
  text-align: left;
}
.owl-carousel .owl-item img {
  width: auto !important;
  margin: 0 auto;
}
.featured-section {
  padding-bottom: 30px;
}

.featured-section .product-slider {
  margin-top: -85px;
  text-align: center;
  margin-bottom: 30px;
}
.featured-section .blogs {
  text-align: left;
  margin-top: -130px;
  margin-bottom: 0px;
  padding-bottom: 10px !important;
}
.contact-section {
  text-align: center;
  padding: 2rem 0;
  background: url('../jpg/cta-bg.jpg') no-repeat;
  background-size: cover !important;
  /* margin-top:-25%!important; */
}
.contact-section p {
  color: #818a90;
}
.contact-section .highlight:after {
  background: url('../highlight.html') no-repeat center;
  top: 5%;
}
/************************************Homepage Styles End***********************/
/************************************Footer Styles Start***********************/
.site-footer {
  padding: 1rem 0;
  text-align: center;
  border-top: 2px solid #f7f7f7;
}
.site-footer h4 {
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
  line-height: 1;
  margin: 0;
  padding: 15px 0 18px;
}
.site-footer div + h4 {
  margin-top: 1rem;
}
.site-footer ul li {
  line-height: 1.9;
}
.site-footer ul li a {
  padding: 10px 0;
  font-family: 'CartoGothicPro Light', 'CartoGothicPro', 'sans-serif';
}
.site-footer a,
.site-footer address,
.site-footer p {
  font-size: 14px;
  text-transform: initial;
  color: #000;
}
.site-footer h4 a {
  font-size: 16px;
  color: #000;
  line-height: 1;
}
.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  color: #818a90;
  margin: 0;
  line-height: 1.8;
}
/*.site-footer .footer-bottom p a,
.site-footer .footer-bottom p{
	line-height:1.3;
}*/
.site-footer .footer-col {
  margin-bottom: 1rem;
}
.site-footer .social-profiles {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-footer .social-profiles li {
  margin: 0 10px;
}
.site-footer .social-profiles li:first-child {
  margin-left: 0;
}
.site-footer .social-profiles li a {
  font-size: 22px;
  padding: 0;
}
.footer-col-bottom {
  text-align: center;
  margin: 10px 0;
}
/************************************Footer Styles End***********************/
/************************************Contact Page Styles Start***********************/
.form-section {
  padding: 3rem 0 4rem;
}
.form-section .form {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 5px 30px #e0e0e0;
  border-radius: 5px;
  /* padding: 3.5rem 0;  */
}
.form-section .gform_wrapper,
.form-section .hbspt-form {
  width: 82%;
}
.form-section .gform_wrapper span {
  padding-top: 0 !important;
}
.form-section .gform_wrapper .gfield,
.form-section .gform_wrapper input,
.form-section .hbspt-form .hs-input,
.form-section .hbspt-form fieldset {
  max-width: 100% !important;
  width: 100% !important;
}
.gform_wrapper .name_first label,
.gform_wrapper .name_last label,
.form-section .gform_wrapper label,
.form-section .hbspt-form label,
.hbspt-form input[type='submit'],
.form-section .gform_wrapper select,
.form-section .gform_wrapper input,
.form-section .hbspt-form .hs-input:not([type='image']),
.form-section .hbspt-form select,
.form-section .ginput_container_checkbox label {
  font-family: 'CartoGothicPro', 'CartoGothicPro', 'sans-serif';
  font-weight: 400 !important;
  font-size: 16px !important;
  margin: 0 0 12px 0 !important;
  color: #000;
}
.form-columns-2 .field {
  width: 100%;
}
.form-section .ginput_container_checkbox label {
  font-size: 16px !important;
}
.hs-error-msgs {
  padding: 0 !important;
  margin-top: 5px !important;
}
.hbspt-form .hs-error-msgs label {
  color: #f00 !important;
  margin-bottom: 0 !important;
  font-size: 14px !important;
}
.form-section .hbspt-form input[type='submit'] {
  width: 100%;
}
.form-section .gform_wrapper input[type='submit'],
.hbspt-form input[type='submit'] {
  font-size: 18px;
  border: 0;
  box-shadow: none;
  margin-bottom: 0 !important;
  padding: 20px !important;
  box-sizing: border-box !important;
}
.form-section .gform_wrapper input[type='submit']:hover,
.hbspt-form input[type='submit']:hover {
  border: 0 !important;
  box-shadow: none !important;
}
.gform_wrapper ul.gform_fields li.gfield {
  padding: 0 !important;
}
.form-section .gform_wrapper input:not([type='image']),
.form-section .gform_wrapper select,
.form-section .hbspt-form .hs-input:not([type='image']),
.form-section .hbspt-form select {
  box-shadow: none;
  border: 1px solid #d7d7d7;
  padding: 10px;
  line-height: 1;
  height: 40px;
  font-size: 16px;
  box-sizing: border-box;
  margin-bottom: 0 !important;
  width: 100% !important;
}
.ginput_container_checkbox input[type='checkbox'] {
  height: auto !important;
  margin: 0 5px 0 0 !important;
}
.ginput_container_checkbox li {
  display: flex;
  align-items: center;
}
.checkbox .gfield_label {
  display: none !important;
}
.form-section .hbspt-form .actions {
  padding: 0;
  margin: 20px 0 0 0;
}
.form-section .gform_wrapper input:not([type='image'])::placeholder,
.form-section .hbspt-form .hs-input:not([type='image'])::placeholder,
.form-section .hbspt-form select::placeholder,
.form-section .gform_wrapper select::placeholder {
  font-style: italic;
  color: #acacac;
}
.hs-form-required {
  margin-left: 5px;
}
.gform_wrapper input,
.gform_wrapper select,
input.hs-button,
input.hs-input,
textarea.hs-input,
select.hs-input {
  border-radius: 7px !important;
}

.form-section .ginput_container_checkbox label,
.ginput_container_checkbox ul,
.ginput_container_checkbox li,
.form-section .ginput_container,
.form-section .hbspt-form .input {
  margin: 0 !important;
}
.info-section {
  background: url('../jpg/contact-info-bg.jpg') no-repeat;
  background-size: cover !important;
  padding: 60px 0 44px;
  margin-top: 2rem;
}
.info-section .single-way {
  margin-bottom: 20px;
}
.info-section .single-way .contact-desc,
.info-section .single-way .contact-icon {
  text-align: center;
}
.info-section .single-way .heading-h3 {
  font-size: 24px !important;
  color: #00b7ba;
  /* margin:6px 0 28px; */
  line-height: 1;
  margin-bottom: 5px; /* Gary Added 7-16-20 */
}
.info-section .single-way p {
  margin: 0 0 1rem;
}
.info-section .single-way a {
  color: #f37734;
}
.info-section .single-way a strong {
  color: #000;
}
.info-section .single-way strong {
  font-family: 'CartoGothicPro Bold', 'CartoGothicPro', 'sans-serif';
}
.map-section {
  position: relative;
}
#map-canvas > div > div > div > div {
  top: 70% !important;
}
.map-section .directions {
  margin: 0 auto;
  text-align: center;
  color: #fff;
  z-index: 999;
  border-radius: 5px;
  padding: 12px;
  background: rgba(201, 201, 201, 0.2);
}
.map-section .directions .dir-container {
  padding: 30px 20px;
  background: url('../visit-bg-1.html') no-repeat center;
  background-size: cover !important;
  border-radius: 5px;
}
.map-section .directions input[type='submit'] {
  background-color: transparent !important;
  border: 2px solid #fff !important;
  padding: 8px 16px !important;
  font-size: 14px;
}
.map-section .directions h2 {
  margin-top: 0;
  margin-bottom: 25px;
}
/************************************Contact Page Styles End***********************/
/************************************Curriculum Page Styles Start***********************/
.content-section {
  text-align: center;
}
.content-section .heading-h2 {
  margin: 1rem 1rem 0.5rem;
}
.contact-section .highlight.contact-curriculum:after {
  background: url('../curriculum-contact-bg.html') no-repeat
    center;
  top: 5%;
  width: 100%;
  left: 0;
}
.banner-section .highlight.core-banner:after,
.metaslider .highlight.core-banner:after {
  background: url('../middle-banner.html') no-repeat center;
  left: -3%;
  width: 105%;
}
.banner-section .left-caption h2,
.metaslider .left-caption h2 {
  line-height: 1.2;
}
.element-section {
  text-align: center;
  padding: 14px 0;
}
.element-section .single-element {
  margin-bottom: 30px;
}
.element-section .single-element .element-icon {
  background: #00b7ba;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.element-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'CartoGothicPro', 'CartoGothicPro', 'sans-serif' !important;
}
.element-section h3 a {
  font-size: 20px;
  color: #000;
  font-family: 'CartoGothicPro', 'CartoGothicPro', 'sans-serif' !important;
}
.element-section h5 a {
  color: #000;
  font-family: 'CartoGothicPro Bold', 'CartoGothicPro', 'sans-serif' !important;
}
.element-section .more-button {
  margin-top: 5px;
}
.cta-section {
  padding: 30px 0;
  text-align: center;
}
.cta-section .highlight:after {
  background: url('../cta-highlight.html') no-repeat;
  left: -15%;
  width: 117%;
}
.cta-section .link-button {
  background-color: #f37734 !important;
  margin-top: 10px;
}
.cta-section .link-button:hover {
  background-color: #000 !important;
}
.two-col-section {
  background: #f47f32 url('../flexibity-bg-lines.html')
    no-repeat;
  background-size: cover !important;
  color: #fff;
  padding: 3rem 0;
  text-align: center;
}
/*.two-col-section .single-col{
	margin:20px 0;
}*/
.two-col-section h3 .highlight {
  font-style: italic;
  font-weight: bold;
  letter-spacing: 1px;
}
.two-col-section h3 .highlight:after {
  background: url('../rigidity-highlight.html') no-repeat;
}
.two-col-section h3 .highlight:first-child:after {
  background: url('../highlight-rigor.html') no-repeat;
  left: -8%;
}
.two-col-section h3 {
  font-family: 'CartoGothicPro', 'CartoGothicPro', 'sans-serif';
  font-weight: 400;
}
.blogs-section .category a {
  font-size: 13px;
}
.blogs-section p {
  letter-spacing: 1px;
}

.contact-section .form {
  margin-top: 25px !important;
}
.account-section {
  padding: 0;
}
.account-section .form {
  margin-top: 0 !important;
  box-shadow: 0 0 10px 3px #e0e0e0 !important;
}
.account-section .form input[type='submit'],
.contact-section .form input[type='submit'] {
  width: auto;
  font-size: 16px;
  padding: 15px 60px !important;
}
/************************************Curriculum Page Styles End***********************/
/************************************Elementary Page Styles End***********************/
.tabs-section {
  /*background:url('/wp-content/uploads/tabs-bg.png') no-repeat center;*/
  background-size: contain !important;
}
.banner-section .highlight.elementary:after,
.metaslider .highlight.elementary:after {
  background: url('../elementary-highlight.html') no-repeat
    center;
  width: 100%;
}
.tabs-section ul {
  list-style: none;
  padding: 0;
  text-align: center;
  position: relative;
}
.tabs-section .grade {
  font-style: italic;
  font-size: 15px;
}
.tabs-section .tabs-content {
  padding: 20px 20px 40px;
}
.page-content h4 {
  color: #818a90;
  font-family: 'CartoGothicPro Light', 'CartoGothicPro', 'sans-serif';
  font-weight: 400;
}
.tabs-section .tabs-content h4 {
  margin-bottom: 8px;
}
.tabs-section p {
  margin: 28px 0;
  color: #818a90;
}
.tabs-section ul h4 {
  margin: 0;
}
.tabs-section ul li {
  padding: 14px;
}
.wc-tabs:after,
.tabs-section ul:after {
  content: ' ';
  width: 100%;
  height: 2px;
  background: #e6e8e9;
  position: absolute;
  top: 98%;
  left: 0;
  z-index: -10;
}
.tabs-section ul a {
  color: #818a90;
  font-family: 'CartoGothicPro Bold', 'CartoGothicPro', 'sans-serif';
  padding: 14px 0;
  font-weight: bold;
}
.tabs-section ul a.active,
.tabs-section ul a:hover {
  color: #354e60;
  text-decoration: none;
  border-bottom: 2px solid #00b7ba;
}
.elementary-page .tabs-section ul a.active,
.elementary-page .tabs-section ul a:hover {
  color: #293657;
}
.tabs-section .tab-content {
  display: none;
}
.tabs-section .tab-content.active {
  display: flex;
}
.tabs-section .tab-image {
  text-align: center;
}
.curriculum-section {
  background: url('../jpg/core-curricular-bg.jpg') no-repeat center;
  background-size: cover !important;
  padding: 30px 0;
  text-align: center;
}
.curriculum-section .single-curriculum {
  margin: 30px 0;
}
.curriculum-section .heading-h3 {
  margin: 15px 0;
  line-height: 1;
  color: #354e60;
}
.curriculum-section .heading-h3 a {
  color: #354e60;
}
.curriculum-section .curriculum-text p {
  font-size: 18px;
  color: #818a90;
  margin: 15px 0;
}
.featured-section.products-section .owl-carousel {
  padding: 0 20px;
}
.featured-section.products-section .owl-carousel .owl-item {
  text-align: left;
}
.one-col-section {
  text-align: center;
  background: url('../one-col-bg.html') no-repeat center;
  background-size: cover !important;
  color: #fff;
  padding: 30px 0;
}
.one-col-section .highlight:after {
  background: url('../flexible-highlight.html') no-repeat center;
}
.high-school-page .contact-section,
.middle-school-page .contact-section,
.elementary-page .contact-section {
  background: url('../jpg/elementary-contact-bg.jpg') no-repeat
    center;
  background-size: cover !important;
}
/************************************Elementary Page Styles End***********************/
/************************************Middle School Page Styles End***********************/
.banner-section .highlight.middle:after,
.metaslider .highlight.middle:after {
  background: url('../middle-banner.html') no-repeat center;
}
.tab-text img {
  margin-top: 10px;
}
.tab-text img + p {
  margin-top: 20px;
}
.high-school-page .element-section,
.middle-school-page .element-section {
  padding: 0;
}
.high-school-page .element-section .elements,
.middle-school-page .element-section .elements {
  margin: 30px 0;
}
.high-school-page .element-section .single-element,
.middle-school-page .element-section .single-element {
  margin: 30px 0 12px;
}
.high-school-page .element-section > .container,
.middle-school-page .element-section > .container {
  border-top: 2px solid #e6e8e9;
}
.high-school-page .element-section .element-icon,
.middle-school-page .element-section .element-icon {
  width: 100px;
  height: 100px;
}
/************************************Middle School Page Styles End***********************/
/************************************Guides Page Styles Start***********************/
.banner-section .highlight.guides:after,
.metaslider .highlight.guides:after {
  background: url('../guides-highlight.html') no-repeat center;
  top: 3%;
}
.two-column-layout .single-column {
  margin: 30px 0;
}
.two-column-layout.load-content .more-link:after {
  transform: rotate(90deg);
  top: 3px;
}
.two-column-layout {
  padding: 30px 0;
}
.two-column-layout .col-right h3 {
  line-height: 1;
  margin: 8px 0 20px;
}
.two-column-layout .col-right h3 a {
  color: #000;
}
.two-column-layout .more-button {
  padding: 1rem 3.6rem !important;
  font-size: 16px !important;
}
.two-column-layout .col-left {
  max-width: 90px;
  flex: 0 0 90px;
}
.two-column-layout .col-left h3 a,
.two-column-layout .col-left h3 {
  color: #354e60;
  text-align: right;
  margin: 0;
  line-height: 1;
  text-transform: uppercase;
}
.two-column-layout .col-left .line {
  float: right;
}
.two-column-layout .link {
  font-style: italic;
  font-family: 'CartoGothicPro', 'CartoGothicPro', 'sans-serif';
}
/************************************Guides Page Styles End***********************/
/************************************Webinars Page Styles Start***********************/
.banner-section .highlight.webinars:after,
.metaslider .highlight.webinars:after {
  background: url('../webinars-highlight.html') no-repeat center;
  top: 5%;
  width: 155%;
  left: -25%;
}
.two-column-layout.past {
  background: url('../past-webinars.html') no-repeat;
  background-size: cover !important;
}
.webinars-page .two-column-layout .col-right h3 {
  margin: 0 0 20px;
}
.webinars-page .two-column-layout .more-button {
  padding: 1rem 3rem !important;
}
.webinars-page .two-column-layout.past .more-button {
  padding: 1rem 3.25rem !important;
}
/************************************Webinars Page Styles End***********************/
/***********************************High School Page Styles Start************************/
.banner-section .highlight.high:after,
.metaslider .highlight.high:after {
  background: url('../hs-highlight.html') no-repeat center;
}
.high-school-page .curriculum-section {
  background: url('../jpg/curriculum-area.jpg') no-repeat;
  background-size: cover !important;
}
/***********************************High School Page Styles End************************/
/***********************************Brands Page Styles Start************************/
.banner-section .highlight.brands:after,
.metaslider .highlight.brands:after {
  background: url('../brands-highlight.html') no-repeat center;
  left: -5%;
  top: 5%;
}
.content-section {
  text-align: center;
}
.brands-page .content-section {
  margin: 40px 0 20px;
}
.brands-section {
  text-align: center;
  padding: 0 0 30px;
}
.brands-section .owl-carousel {
  padding: 0 50px;
}
.brands-section .line {
  display: flex;
  justify-content: center;
}
.brands-section .item {
  padding: 30px;
}
.brands-section .owl-dots {
  display: none;
}
.brands-section .owl-nav {
  position: absolute;
  top: 50%;
  width: 90%;
  left: 5%;
}
.brands-section .owl-item.center {
  border: 1px solid #ebebeb;
}
.brands-section .owl-item .item {
  border: 1px solid #ebebeb;
}
.brands-section .owl-item.center .item {
  border: none;
}
.brands-section .owl-item.center:hover {
  box-shadow: 0px 0px 10px 4px #ebebeb;
}
.brands-section .owl-item {
  margin-top: 10px;
  margin-bottom: 10px;
}
.brands-section .owl-item {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
}

/***********************************Brands Page Styles End************************/
/***********************************Partnerships Page Styles Start************************/
.banner-section .highlight.part:after,
.metaslider .highlight.part:after {
  background: url('../partnership-highlight.html') no-repeat
    center;
  top: 5px;
  left: -8%;
}
.partnership-page .content-intro-section {
  background: url('../slider-bg.html') no-repeat center;
  background-size: cover !important;
}
.content-intro-section {
  padding: 50px 0 22px;
}
.divider {
  text-align: center;
  padding-top: 20px;
}
.partner-section {
  padding: 0 0 20px;
}
.partner-section .single-partner {
  margin-bottom: 32px;
  text-align: center;
}
.partner-section .heading-h2 {
  margin-bottom: 30px;
}
.content-intro-section.bottom {
  background: url('../active-bg.html') no-repeat center;
  background-size: cover !important;
  color: #fff;
}
.contact-section .highlight.part:after {
  background: url('../our-part-highlight.html') no-repeat center;
  top: 5%;
  left: 0;
  width: 100%;
}
/***********************************Partnerships Page Styles End************************/
/***********************************Custom Page Styles Start************************/
.cta-section.custom {
  background: url('../jpg/history-cta.jpg') no-repeat center;
  background-size: cover !important;
}
.cta-section.custom .link-button {
  /*background:#1770f9 !important;*/
  background: #f37734 !important;
}
.cta-section.custom .link-button:hover {
  background: #000 !important;
}
.two-col-custom {
  padding: 30px 0;
}
/***********************************Custom Page Styles End************************/
/***********************************About Page Styles Start************************/
.banner-section .highlight.about:after {
  background: url('../png/about-highlight.png') no-repeat center;
  width: 125%;
  left: -15%;
}
.about-us-page .content-intro-section .highlight:after {
  background: url('../changing-highlight.html') no-repeat center;
  top: 3%;
}
.content-intro-section .bottom {
  text-align: center;
  margin-top: 30px;
}
.about-us-page .content-intro-section {
  padding: 50px 0;
}
.brand-section {
  background: url('../brands-bg.html') no-repeat center;
  background-size: cover !important;
  text-align: center;
  padding: 40px 0;
}
.brand-section .heading-h2 {
  margin-bottom: 28px;
}
.brand-section .owl-carousel {
  padding: 44px 30px 60px;
}
.brand-section .owl-carousel .owl-nav {
  position: absolute;
  top: 35%;
  width: 100%;
  left: 0;
  z-index: -1;
}
.brand-section .link-button {
  padding: 16px 40px;
  background: #f37734 !important;
}
.brand-section .link-button:hover {
  background: #000 !important;
}
.about-us-page .cta-section .highlight:after {
  background: url('../partnership-highlight.html') no-repeat
    center;
}
.about-us-page .cta-section .link-button {
  /*background:#1770f9 !important;*/
  background: #f37734 !important;
  padding: 16px 40px;
}
.about-us-page .cta-section .link-button:hover {
  background: #000 !important;
}
.team-section {
  padding: 0;
  color: #fff;
}
.team-section .text {
  background-size: cover !important;
  padding: 10%;
  text-align: center;
}
.team-section .text h2,
.team-section .text h4 {
  margin-top: 0;
}
.team-section .top-left,
.team-section .top-right,
.team-section .bottom-left,
.team-section .bottom-right {
  padding: 0 5px;
  margin-bottom: 5px;
}
.team-section img {
  display: block;
  margin: 0 auto;
}
.arrow-button {
  background: rgba(37, 37, 37, 0.8) url('../white-arrow.html')
    no-repeat center;
  height: 30px;
  width: 30px;
  display: inline-block;
  border-radius: 50%;
  background-position: 13px 8px;
}
.about-us-page .cta-section.bottom .cta {
  margin: 30px 0;
  background: #fff;
  padding: 70px 15px;
}
.about-us-page .cta-section.bottom {
  background: url('../jpg/bottom-cta.jpg') no-repeat center;
  background-size: cover !important;
  padding: 30px 0;
}
.about-us-page .cta-section.bottom .link-button {
  background: #f37734 !important;
  margin: 0;
}
.about-us-page .cta-section.bottom .link-button:hover {
  background: #000 !important;
}
/***********************************About Page Styles End************************/
/***********************************Active Classroom Page Styles Start************************/
.active-classroom-page .banner-section .line {
  margin: 22px 0 32px;
}
.active-classroom-page .banner-section .line span {
  margin: 0 auto;
  width: 40px;
  height: 4px;
  border-radius: 2px;
  background: #05e3f3;
}
.classroom-section .single-classroom {
  margin: 20px 0;
  text-align: center;
}
.center-section {
  padding: 30px 0;
}
.active-classroom-page .partner-section {
  padding-top: 30px;
}
.active-classroom-page .element-section {
  padding: 30px 0 0;
}
.element-section,
.center-section {
  background-size: cover !important;
}
.active-classroom-page .element-section .single-element .element-icon {
  width: 100px;
  height: 100px;
}
.active-classroom-page .element-section.activities .element-icon {
  width: 66px;
  height: 66px;
}
.active-classroom-page
  .element-section.activities
  .single-element
  .element-icon {
  background: #fff;
}
.content-intro-section.active h4 {
  text-transform: uppercase;
  color: #354e60;
}
.content-intro-section.active li {
  list-style: none;
  line-height: 3;
}
.active-classroom-page .content-intro-section li:before {
  content: '\f00c';
  position: absolute;
  left: 0;
  top: 0;
  color: #00b7b9;
  font-family: 'FontAwesome';
}
.active-classroom-page .content-intro-section li {
  padding-left: 35px;
}
.content-intro-section.active .content {
  margin-bottom: 30px;
}
.active-classroom-page .contact-section p {
  color: #000;
}
.active-classroom-page .contact-section .highlight.active:after {
  background: url('../png/ac-highlight.png') no-repeat center;
  width: 110%;
  left: -5%;
}
.active-classroom-page .contact-section .link-button {
  margin-top: 30px;
}
/***********************************Active Classroom Page Styles End************************/
/***********************************Learning Page Styles Start************************/
.learning-page .highlight.learning:after {
  background: url('../learning-highlight.html') no-repeat center;
  left: -7%;
}
.common {
  background-size: contain !important;
  background-position: 0 35% !important;
}
.learning-page .two-column-layout {
  background-size: cover !important;
}
.learning-page .two-column-layout.load-content .heading-h2 {
  color: #00b7ba;
}
.learning-page .two-column-layout.load-content .col-right h3 a,
.learning-page .two-column-layout.load-content {
  color: #fff;
}
.pdf-heading {
  text-align: center;
}
.learning-page .content-intro-section .text {
  font-size: 18px;
}
.content-intro-section .text .heading-h3,
.two-column-layout .text .heading-h3 {
  line-height: 1.3;
}
.learning-page .two-column-layout.load-content .more-button,
.learning-page .two-column-layout.courses .more-button {
  padding: 16px 40px !important;
}
.learning-page .two-column-layout.load-content .text .more-link {
  margin-top: 10px;
  display: inline-block;
}
.learning-page .two-column-layout.load-content .text .more-link:after {
  transform: rotate(0deg);
}
.learning-page .contact-section .highlight:after {
  background: url('../ask-highlight.html') no-repeat center;
  left: -30%;
  width: 100%;
}
.team-page .contact-section p,
.learning-page .contact-section p {
  color: #000;
  line-height: 1.5;
}
.learning-page .contact-section h2 {
  margin-bottom: 16px !important;
}
.learning-page .blogs-section {
  padding: 0px 0 30px;
}
.learning-page .blogs-section .link {
  text-align: center;
}
.highlight.empower:after {
  background: url('../empower-highlight.html') no-repeat center;
  left: -5%;
}
/***********************************Learning Page Styles End************************/
/***********************************Team Page Styles Start************************/
.team-member-section {
  text-align: center;
  padding: 20px 0;
  background: url('../management-bg.html') no-repeat top;
}
.team-member-section.sales {
  background: #f7f7f7 url('../sales-bg.html') no-repeat bottom;
}
.team-member-section .member {
  margin: 30px 0;
}
.team-member-section .heading-h4 {
  margin-bottom: 10px !important;
}
.job-title,
.team-member-section .job-title {
  color: #a1a1a1;
}
.team-member-section .member-mail {
  font-family: 'CartoGothicPro Bold', 'CartoGothicPro', 'sans-serif';
  display: block;
  margin: 15px 0 0px;
}
.team-member-section .member-phone {
  color: #000;
  font-family: 'CartoGothicPro', 'CartoGothicPro', 'sans-serif';
  display: block;
}
.team-member-section .more-button {
  padding: 16px 65px !important;
}
.popup-content {
  padding: 30px;
  text-align: center;
}
.popup-content p {
  text-align: left;
}
.popup-content .line {
  text-align: center;
}
.popup-content .corner:before {
  top: 20%;
  z-index: -1;
}
.popup-content .corner:after {
  left: -30px;
  background: url('../team-img-corner-left.html') no-repeat
    center;
}
.popup-content .line span {
  display: inline-block;
}
.team-page .contact-section .highlight:after {
  background: url('../contact-highlight.html') no-repeat center;
  left: -28%;
}
.team-page .contact-section .link-button {
  padding: 16px 40px;
}
/***********************************Team Page Styles End************************/
/************************************Product Page Styles Start***********************/
.woocommerce-breadcrumb,
.woocommerce-breadcrumb a,
.single-product.woocommerce-page .price,
.page-template-product-page .price,
.single-product.woocommerce-page .price span,
.page-template-product-page .price span,
.woocommerce-loop-product__title,
.single-product.woocommerce-page .product_title,
.page-template-product-page .product_title,
.single-product.woocommerce-page .series-heading,
.page-template-product-page .series-heading,
.single-product.woocommerce-page .poduct-subtitle,
.page-template-product-page .product-subtitle {
  font-family: 'CartoGothicPro Light', 'CartoGothicPro', 'sans-serif';
  font-weight: 400;
}
.products form.cart .button,
.products form.cart qty,
.products .price span,
.product-series form.cart .button,
.product-series form.cart select,
.single-product.woocommerce-page .price span,
.page-template-product-page .price span,
.woocommerce-loop-product__title {
  font-size: 16px !important;
}
.woocommerce-breadcrumb {
  margin: 0px 0 32px !important;
  text-transform: uppercase;
}
.woocommerce-breadcrumb a {
  text-transform: uppercase;
}
.woocommerce-loop-product__title {
  /*text-transform:uppercase;*/
  margin: 20px 0 10px;
  max-height: 45px;
  min-height: 45px !important;
  overflow: hidden;
  line-height: 1.4;
}
.woocommerce div.product div.images a {
  max-width: 300px;
  margin: 0 auto;
  display: block;
}
.woocommerce div.product div.images img {
  margin: 0 auto;
  width: auto;
}
.single-product .products .price,
.single-product .products .meta-info,
.single-product .products .woocommerce-loop-product__title {
  text-align: left;
  width: 100%;
}
.single-product .products .woocommerce-loop-product__title {
  max-height: 55px;
  min-height: 55px !important;
}
.single-product ul.products li.product .price {
  margin: 10px 0 !important;
}
.single-product .flex-control-nav {
  margin-top: 15px !important;
}
.single-product .flex-control-nav li {
  margin: 5px 2% 5px 0 !important;
  width: 23% !important;
}
.product_meta .isbn_wrapper {
  margin-top: 10px;
}
#sc1d-variants .child-products-heading {
  margin: 10px 0 0;
}
.woocommerce-MyAccount-navigation a {
  color: #000;
}
.woocommerce-checkout .col2-set .col-1,
.woocommerce-checkout .col2-set .col-2 {
  float: none !important;
  width: 100% !important;
  flex: 0 0 100%;
  max-width: 100%;
}
.single-product.woocommerce-page .product_title,
.page-template-product-page .product_title {
  font-size: 30px;
}
.single-product.woocommerce-page .main-product .price,
.page-template-product-page .main-product .price,
.single-product.woocommerce-page .price span,
.page-template-product-page .main-product .price span,
.single-product.woocommerce-page .product-subtitle,
.single-product.woocommerce-page .product_subtitle,
.page-template-product-page .product-subtitle {
  font-size: 20px !important;
}
ul.products li.product .price span {
  font-size: 12px !important;
}
.single-product.woocommerce-page .price {
  margin: 0.5rem 0 !important;
  display: block;
  line-height: 1;
}
.single-product.woocommerce-page .price span {
  color: #000 !important;
  font-weight: bold;
  font-size: 18px !important;
}
.single-product.woocommerce-page .price span.bulk-discount-price {
  margin-left: 5px;
}
.single-product.woocommerce-page .series-heading,
.page-template-product-page .series-heading {
  font-size: 14px !important;
  margin-bottom: 30px;
}
.woocommerce-loop-product__link {
  color: #000 !important;
}
.woocommerce-loop-product__link:hover {
  text-decoration: none;
}
form.cart .quantity,
form.cart .quantity_select {
  /*width:42%; */
  width: 140px;
  float: left;
}
form.cart .quantity .qty,
form.cart .quantity_select select {
  padding: 18px 22px;
  width: 100%;
  line-height: 1;
}
form.cart .quantity .qty {
  padding: 17px 22px;
}
form.cart .yith-ywraq-add-button a.add-request-quote-button.button {
  width: auto;
  padding: 19px 15px !important;
  margin: 0;
  text-transform: uppercase;
  background: #fff !important;
  border: 1px solid #f37734 !important;
  color: #f37734 !important;
}
form.cart .yith-ywraq-add-button a.add-request-quote-button.button:hover {
  background: #f37734 !important;
  color: #fff !important;
}
form.cart .button {
  width: 54%;
  float: right !important;
  padding: 19px 0 !important;
  text-transform: uppercase;
  border: 1px solid #f37734 !important;
}
form.cart .button:hover {
  border: 1px solid #000 !important;
}
.quantity_select:before {
  top: 30%;
  right: 10%;
}
.single-product.woocommerce-page .product_meta {
  margin: 10px 0 0;
  font-size: 12px;
}
.products form.cart .button,
.products form.cart .quantity_select,
.product-series form.cart .button,
.product-series form.cart .quantity_select {
  width: 48%;
}
.products form.cart .button,
.products form.cart .quantity_select select,
.products form.cart .quantity .qty,
.product-series form.cart .button,
.product-series form.cart .quantity_select select,
.product-series form.cart .quantity .qty {
  padding: 18px !important;
}
.products form.cart .button,
.product-series form.cart .button {
  padding: 19px 0 !important;
  float: right !important;
}
.product-series .series-heading.show-all {
  text-align: center;
  position: relative;
  margin: 30px 0;
}
.product-series .series-heading.show-all:after {
  position: absolute;
  content: ' ';
  background: #000;
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
  z-index: -1;
}
.product-series .series-heading.show-all a {
  color: #000;
  background: #fff;
  padding: 20px 40px 20px 30px;
  position: relative;
}
.product-series .series-heading.show-all a:after {
  position: absolute;
  content: '\f107';
  width: 10px;
  height: 10px;
  font-family: FontAwesome;
  top: 30%;
  font-size: 18px;
  right: 20px;
  font-weight: bold;
}
.product-content {
  margin-top: 30px;
  padding: 30px 15px;
  background: #fbfbfb;
}
.product-content .product_title {
  text-align: center;
}
.product-series .product,
.product-series .product {
  margin-bottom: 30px;
}
.product-image {
  position: relative;
  text-align: center;
  width: 245px;
  height: 245px;
  overflow: hidden;
}
.product-image .product-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
}
.quick {
  padding: 30px 0;
}
.products .product {
  text-align: center;
}
.woocommerce div.product form.cart.layout_default .button {
  margin: 0 0 0 17px !important;
  padding: 19px 2rem !important;
  text-transform: uppercase;
  font-family: 'CartoGothicPro', 'sans-serif';
  width: auto !important;
}
.woocommerce-tabs {
  margin-top: 30px;
}
.woocommerce-tabs .tabs li {
  margin-right: 20px !important;
}
.woocommerce-tabs .tabs li a {
  text-transform: uppercase;
}
.single-product .lead-line {
  margin: 20px 0;
}
ul.products li.product .price,
ul.products li.product p {
  margin: 0 !important;
  font-size: 12px !important;
}
.woocommerce .product .yith-ywraq-add-to-quote {
  display: inline-block;
  line-height: normal;
  vertical-align: middle;
}
.single-product .product_subtitle {
  font-family: 'CartoGothicPro', 'sans-serif';
  margin-top: 5px;
}
.single-product .lead-line,
.single-product .product_subtitle {
  font-weight: 600;
}
.single-product .media-text {
  margin: 1rem 0 0.5rem;
}
.single-product .summary form.cart .quantity,
.single-product .summary form.cart .quantity_select {
  width: 70px;
}
.single-product .summary form.cart .quantity .qty {
  padding: 0.45rem;
  font-size: 14px;
}
.single-product
  .summary
  form.cart
  .yith-ywraq-add-button
  a.add-request-quote-button.button,
.single-product .summary form.cart .button {
  padding: 0.5rem 1rem !important;
  font-size: 14px !important;
  width: auto !important;
}
.woocommerce.single-product div.product form.cart {
  margin-bottom: 1rem;
}
.product-desc {
  height: 69px;
  overflow: hidden;
}
.product-desc p:first-child {
  margin-top: 0;
}
.read-full {
  color: #f9a017;
  margin-top: 10px;
  display: block;
}
.read-full:hover {
  cursor: pointer;
}
.woocommerce table.shop_attributes td {
  font-style: normal;
}
.woocommerce table.shop_attributes th {
  text-align: left;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  flex-wrap: wrap;
}
/************************************Product Page Styles End***********************/
/************************************Category/Shop Page Styles Start***********************/
.orderby {
  padding: 7px;
}
.banner-overlay {
  margin: 30px 0 0;
  text-align: center;
  min-height: 100px;
}
.shop-page .banner-section .heading-h1 {
  line-height: 1;
}
.shop-page .banner-overlay .content {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px 15px 20px;
}
.shop-page .series-product,
.shop-page .new-products {
  padding-top: 50px;
}
.shop-page .series-product .product-slider,
.shop-page .new-products .product-slider {
  margin-top: 0;
  margin-bottom: 0;
}
.shop-page .series-product .view-all,
.shop-page .new-products .view-all {
  text-align: right;
}
.shop-page .series-product .owl-carousel .owl-nav,
.shop-page .new-products .owl-carousel .owl-nav {
  top: 35%;
}
.shop-page .series-product,
.shop-page .three-col-layout {
  background-color: #f2f2f2;
  padding: 30px 0;
}
.shop-page .three-col-layout .single-col {
  margin-bottom: 30px;
  text-align: center;
}
.shop-content {
  padding: 20px 0;
}
.shop-page .woocommerce-loop-product__title a {
  color: #000;
  font-weight: 600;
}
.shop-page .added_to_cart.wc-forward {
  display: block;
  padding: 0;
}
.shop-page .three-col-layout .last {
  position: relative;
}
.product .added_to_cart.wc-forward:hover {
  color: #fff;
}
.shop-page .added_to_cart.wc-forward:hover {
  color: #000;
}
.shop-page .three-col-layout {
  background-size: cover !important;
}
.shop-page .three-col-layout .subject-overlay {
  position: absolute;
  width: 100%;
  left: 0;
  text-align: center;
  top: 35%;
  margin: 0;
}
.woocommerce ul.products li.product .button {
  padding: 0.5rem 1rem !important;
  width: 80% !important;
  margin: 10px auto;
  line-height: 1;
  font-size: 14px;
}
.woocommerce ul.products li.product .added_to_cart {
  margin: 0 auto;
}
.woocommerce ul.products li.product .yith-ywraq-add-to-quote {
  width: 80% !important;
  margin: 0 auto;
}
.woocommerce ul.products li.product .product-img {
  height: 250px;
  margin: 1rem 0;
  display: flex;
  align-items: center;
  width: 100%;
}
.woocommerce ul.products li.product img {
  height: 100% !important;
  object-fit: contain;
}
.single-product.woocommerce ul.products li.product img {
  object-fit: contain;
}
.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
  display: block;
  width: 100%;
}
.woocommerce ul.products li.product img {
  margin: 0 auto !important;
  width: auto !important;
}
.single-product.woocommerce ul.products li.product .button {
  /*width: 40% !important;*/
  border: 1px solid #f37734 !important;
  text-transform: uppercase;
}
.single-product.woocommerce ul.products li.product .button.add_to_cart_button {
  height: max-content;
}
.single-product.woocommerce
  #sc1d-variants
  ul.products
  li.product
  .button.add_to_cart_button {
  height: auto;
}
.single-product.woocommerce ul.products li.product .add_to_cart_button:hover {
  border: 1px solid #000 !important;
}

/*.single-product.woocommerce ul.products li.product .yith-ywraq-add-to-quote .button,
.woocommerce ul.products li.product .yith-ywraq-add-to-quote .button{
	width:100% !important;
	color:#1770f9 !important;
	background:#fff !important;
	border:1px solid #1770f9  !important;
}
.single-product.woocommerce ul.products li.product .yith-ywraq-add-to-quote .button:hover,
.woocommerce ul.products li.product .yith-ywraq-add-to-quote .button:hover{
	background:#1770f9 !important;
	color:#fff !important;
}*/
.single-product.woocommerce
  ul.products
  li.product
  .yith-ywraq-add-to-quote
  .button,
.woocommerce ul.products li.product .yith-ywraq-add-to-quote .button {
  width: 100% !important;
  color: #f37734 !important;
  background: #fff !important;
  border: 1px solid #f37734 !important;
}
.single-product.woocommerce
  ul.products
  li.product
  .yith-ywraq-add-to-quote
  .button:hover,
.woocommerce ul.products li.product .yith-ywraq-add-to-quote .button:hover {
  background: #f37734 !important;
  color: #fff !important;
}
/*.single-product.woocommerce ul.products li.product .yith-ywraq-add-to-quote{
	width:40% !important;
}*/
.woocommerce-page .shop-page .banner-section {
  margin-bottom: 30px;
}
.owl-carousel .owl-nav {
  z-index: -1;
}
.shop-page .heading-section {
  text-align: center;
}
.shop-page .heading-h4 {
  display: inline-block;
}
.shop-page .view-all {
  float: right;
  display: inline-block;
}
.shop-page .view-all a {
  margin: 1.5rem 0 1rem;
  display: block;
}
.testimonial-section .owl-carousel .owl-nav {
  z-index: 0;
}
.col-md-6-advanced-placement ul {
  list-style: none;
  padding: 0;
}
.col-md-6-advanced-placement li a {
  font-size: 18px;
  line-height: 2;
}
.col-md-6-advanced-placement li a:hover {
  font-weight: bold;
  text-decoration: none;
  color: #f9a017;
}
.shop-page .featured-section {
  padding-bottom: 0;
}
.woocommerce.shop-page ul.products li.product .woocommerce-loop-product__title {
  font-size: 13px !important;
  min-height: 42px;
}
.woocommerce.shop-page ul.products li.product .price span {
  font-size: 14px !important;
}
/************************************Category/Shop Page Styles End***********************/
/************************************Events Page Styles Start***********************/
#rtec .tribe-bar-toggle-arrow {
  top: 7px;
}
.tribe-events-title-bar {
  margin-bottom: 30px;
}
.tribe-bar-disabled .tribe-bar-views-inner {
  padding: 10px 0 25px;
}
.tribe-bar-disabled .tribe-bar-filters .tribe-bar-date-filter {
  padding: 10px;
}
.tribe-events-button {
  padding: 16px 40px !important;
  font-size: 16px !important;
}
/************************************Events Page Styles End***********************/
.error-404 {
  margin-top: 30px;
}
/************************************Search Page Styles Start***********************/
.search .facet-label,
.search .page-title {
  font-size: 20px;
}
.search .page-header .page-title {
  font-size: 24px;
  font-family: 'CartoGothicPro Light', 'CartoGothicPro', 'sans-serif';
}
.search .page-header .page-title span {
  font-family: 'CartoGothicPro Bold', 'CartoGothicPro', 'sans-serif';
}
.search .facetwp-selections ul {
  padding-left: 0;
}
.search .custom-search-article .entry-title {
  text-transform: capitalize;
  line-height: 1.3;
  font-size: 20px;
}
.search .facetwp-checkbox {
  color: #0562c1;
}
.search .custom-search-article .entry-title a {
  text-decoration: underline;
  color: #0562c1;
}
.search .facetwp-sort select {
  padding: 10px;
  background: transparent;
  line-height: 1;
  width: 100%;
}
.search .facetwp-sort:before {
  z-index: -1;
}
.search .custom-search-article {
  padding: 20px;
}
.search .custom-search-article:nth-child(2n) {
  background-color: #fae4d5;
}
.search .quantity_select {
  margin-right: 18px;
  width: 80px;
}
.search .quantity_select select {
  width: 100%;
  padding: 15px 10px;
  line-height: 1;
}
.search .quantity_select:before {
  line-height: 1;
  right: 15px;
}
.search .facetwp-pager {
  width: 100%;
  text-align: center;
  background: #eeeeee;
  margin-top: 20px;
  padding: 10px;
}
.search .cart {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
}
/************************************Search Page Styles End***********************/
/************************************Blog Styles Start***********************/
.archive .post,
.blog .post {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 2rem;
}
.archive .post:last-child,
.blog .post:last-child {
  border-bottom: 0;
}
.single .entry-content,
.blog .post .entry-content {
  margin-top: 0;
}
.blog .site-main h2:first-child {
  margin-top: 0;
}
.comment-list {
  padding-left: 1rem;
}
.comment-list a {
  color: #000;
}
.comment-list .comment-author img {
  margin-right: 5px;
}
.comment-list .comment-author .fn {
  color: #f9a017;
}
.comment-list .children {
  margin-left: 0;
}
.comment-list .comment-body {
  margin-bottom: 1rem;
}
.post-navigation a {
  font-weight: bold;
  color: #000;
}
.comment_container p,
.comment_container label {
  font-size: 1rem !important;
  font-weight: 400 !important;
}
.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
}
.comment-form-cookies-consent label {
  padding: 0 !important;
  line-height: 1 !important;
  margin-left: 10px !important;
}
/************************************Blog Styles End***********************/
/************************************Sidebar Styles Start***********************/
#secondary {
  margin-top: 1rem;
}
#secondary .search-field {
  width: 60%;
}
#secondary .search-submit {
  padding: 0.75rem 1rem !important;
}
#secondary a {
  color: #000 !important;
}
/************************************Sidebar Styles End***********************/
/************************************Account Page Style Start********************/
.woocommerce table.my_account_orders {
  font-size: 1rem;
}
.woocommerce-Message .button,
.woocommerce table.my_account_orders .button,
.woocommerce-form button,
.woocommerce .button {
  padding: 0.8rem 2rem !important;
}
.woocommerce-MyAccount-content form legend,
.woocommerce-MyAccount-content form input,
.woocommerce-form input {
  padding: 0.5rem !important;
}
.woocommerce-MyAccount-content form input + span {
  font-size: 14px;
}
/************************************Account Page Style Start********************/
/************************************Calendar Page Styles Start***********************/
.tribe-events-calendar thead th {
  background: #f37734 !important;
  border-left: 1px solid #f37734;
  border-right: 1px solid #f37734;
}
.tribe-events-present div[id*='tribe-events-daynum-'] {
  background-color: #00b7ba !important;
}
#tribe-events-content
  .tribe-events-calendar
  div[id*='tribe-events-event-']
  h3.tribe-events-month-event-title
  a {
  color: #f37734;
  font-weight: 900;
}
.tribe-events-tooltip {
  color: #000 !important;
}
/************************************Calendar Page Styles End***********************/
/************************************Media Styles Start***********************/
@media screen and (max-width: 400px) {
  .featured-section.products-section .product-single {
    min-height: 425px;
  }
  .footer-col-bottom a {
    display: inline-block;
  }
  .woocommerce ul.products[class*='columns-'] li.product,
  .woocommerce-page ul.products[class*='columns-'] li.product {
    width: 100%;
    float: none;
  }

  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    display: block !important;
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  form.cart .quantity,
  form.cart .quantity_select {
    margin: 0 auto !important;
  }
  .single-product
    .summary
    form.cart
    .yith-ywraq-add-button
    a.add-request-quote-button.button,
  .single-product.woocommerce div.product form.cart .button {
    float: none !important;
  }
  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering select,
  .woocommerce.single-product .product .yith-ywraq-add-to-quote {
    width: auto;
  }
  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering,
  .woocommerce .woocommerce-result-count,
  .woocommerce-page .woocommerce-result-count,
  .single-product.woocommerce
    div.product
    form.cart
    .button.single_add_to_cart_button {
    float: none !important;
  }
  .woocommerce .woocommerce-ordering,
  .woocommerce-page .woocommerce-ordering,
  .woocommerce .woocommerce-result-count,
  .woocommerce-page .woocommerce-result-count,
  .woocommerce div.product form.cart {
    text-align: center;
  }
  .woocommerce-variation {
    text-align: left;
  }
}
@media screen and (max-width: 575px) {
  /*.product{
		text-align:center;
	}*/
  .three-col-layout {
    text-align: center;
  }
  .search .custom-search-article {
    text-align: center;
    padding: 50px 20px;
  }

  .search-results .site-main .col-lg-3 {
    float: none !important;
  }
  .entry-header h1.entry-title {
    font-size: 22px;
  }
  #sc1d-variants .product .woocommerce-LoopProduct-link .meta-info {
    display: block !important;
    margin-bottom: 10px !important;
  }
}
@media screen and (max-width: 767px) {
  #site-navigation {
    line-height: 0;
  }
  #site-navigation.toggled {
    line-height: 1;
  }
  #site-navigation.toggled .menu {
    margin-bottom: 10px;
  }
  .main-navigation ul ul a {
    width: 100%;
  }
  .menu-toggle {
    display: block !important;
  }
  .site-header #primary-menu .menu-item.menu-item-has-children > .sub-menu {
    width: 100%;
    padding-bottom: 15px;
  }
  .site-header
    #primary-menu
    .menu-item.menu-item-has-children
    > .sub-menu
    .sub-menu {
    width: 90%;
    margin-left: 5%;
  }
  img.alignleft,
  img.alignright {
    float: none;
    margin: 0;
  }
  .two-col-custom .two-cols:nth-child(2n-1) .single-col:first-child {
    order: 1;
  }
  .banner-section .caption-wrap,
  .metaslider .caption-wrap {
    position: relative !important;
    padding: 10px 0 30px !important;
    background: #000 !important;
  }
  .line-break {
    display: block;
  }
  .highlight:after {
    background: none !important;
  }
  .banner-section .link-button:hover,
  .metaslider .link-button:hover {
    background: #1770f9 !important;
  }
  .tabs-section ul:after {
    top: 100%;
  }
  #ywraq_checkout_quote {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.summary {
    width: 100% !important;
  }
  .woocommerce #content div.product div.images,
  .woocommerce div.product div.images,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page div.product div.images {
    margin: 0 auto;
  }
}
/*@media screen and (min-width:768px) and (max-width:991px){
	.woocommerce div.product form.cart .yith-ywraq-add-button a.add-request-quote-button.button{
			margin: 1rem 0 0 !important; 
	}
}*/
@media screen and (max-width: 991px) {
  .on-desktop-show {
    display: none;
  }
  .content-intro-section .image {
    text-align: center;
    margin-bottom: 50px;
  }
  .highlight:after {
    width: 100% !important;
    left: 0 !important;
  }
}
@media screen and (max-width: 1599px) {
  .blogs-section .owl-carousel {
    padding: 0 25px;
  }
}
@media screen and (min-width: 401px) {
  .form-columns-2 .field {
    width: 48% !important;
  }
  .form-columns-2 .field:first-child {
    margin-right: 2%;
  }
  .form-columns-2 .field:last-child {
    float: right !important;
  }
}
@media screen and (min-width: 480px) {
  .form-section .hbspt-form .hs_firstname,
  .form-section .hbspt-form .hs_lastname {
    width: 48% !important;
  }
  .form-section .hbspt-form .hs_lastname {
    float: right !important;
  }
}
@media screen and (min-width: 500px) {
  .single_variation_wrap .woocommerce-variation-add-to-cart {
    float: left;
  }
}
@media screen and (min-width: 550px) {
  .on-mobile {
    display: none;
  }
  .on-desktop {
    display: block;
  }
  .testimonial-section .owl-carousel .owl-nav {
    left: 8%;
    width: 85%;
  }
  .featured-section .owl-carousel .owl-item img {
    min-height: 240px;
  }
  .brands-section .owl-nav {
    width: 95%;
    left: 2.5%;
  }
}
@media screen and (min-width: 576px) {
  .info-section .single-way .contact-desc,
  .site-footer {
    text-align: left;
  }
  .site-footer .social-profiles {
    justify-content: flex-start;
  }
  .site-footer .second-col {
    order: 3;
  }
  .site-footer .third-col {
    order: 4;
  }
  .site-footer .fourth-col {
    order: 2;
  }
  .site-footer .last-col {
    order: 5;
  }
  .team-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .team-section .bottom,
  .team-section .top {
    height: 50%;
  }
  .team-section .text {
    padding: 0 20px;
    height: 100%;
  }
  .team-section .text .text-container {
    position: absolute;
    top: 40%;
    width: 100%;
    padding: 0 20px;
    left: 0;
  }
  .team-section .top-left,
  .team-section .bottom-left {
    padding-right: 0;
  }
  .search .custom-search-article .entry-title {
    margin-top: 0;
  }
  .search .cart {
    justify-content: flex-end;
  }
  .search .custom-search-article {
    border: 1px solid #000;
    border-bottom: 0;
  }
  .search .custom-search-article:last-of-type {
    border-bottom: 1px solid #000 !important;
  }
}
@media screen and (min-width: 768px) {
  .main-navigation ul > li.open .sub-menu > li .sub-menu {
    left: 100% !important;
  }
  .corner {
    margin: 0;
  }
  .tabs-section .tabs-content {
    padding: 20px;
  }
  .tribe-events-page-title,
  h1 {
    font-size: 40px;
  }
  .heading-h1 {
    font-size: 40px;
  }
  h2 {
    font-size: 40px;
    margin: 2rem 0 1rem;
  }
  .heading-h2 {
    font-size: 32px;
    margin: 2rem 0 1rem;
  }
  h3 {
    font-size: 24px;
    margin: 1rem 0;
  }
  .heading-h3 {
    font-size: 30px;
    margin: 0;
  }
  .widgettitle,
  .widget-title {
    font-size: 24px;
    margin: 1rem 0;
  }
  .top-bar #top-menu {
    justify-content: flex-end;
  }
  .site-header #primary-menu .menu-item a {
    text-align: center;
    padding: 20px 16px;
  }
  .main-navigation ul ul,
  .menu-toggle {
    display: none;
  }

  .main-navigation ul {
    display: block;
  }
  .site-header #primary-menu > .menu-item.menu-item-has-children > a:after {
    right: 5px;
  }
  .site-header
    #primary-menu
    > .menu-item.menu-item-has-children:last-child
    > a:after {
    right: 0;
  }

  .banner-section .heading-h1,
  .is-desktop .metaslider .caption-wrap .heading-h1 {
    line-height: 1.5;
    margin: 0;
  }
  .banner-section .left-caption .link-button,
  .metaslider .left-caption .link-button {
    padding: 22px 90px;
  }
  .is-desktop .banner-section .left-caption p,
  .is-desktop .metaslider .left-caption p {
    line-height: 1.5;
  }
  .is-desktop .banner-section .left-caption,
  .is-desktop .banner-section .left-caption h2,
  .is-desktop .metaslider .left-caption,
  .is-desktop .metaslider .left-caption h2 {
    text-align: left;
    color: white;
  }
  .is-mobile .banner-section .left-caption,
  .is-mobile .banner-section .left-caption h2,
  .is-mobile .metaslider .left-caption,
  .is-mobile .metaslider .left-caption h2 {
    text-align: center;
  }
  .banner-section .left-caption p,
  .banner-section .left-caption h2,
  .metaslider .left-caption p,
  .metaslider .left-caption h2 {
    color: #fff;
  }
  .products-section .product-single {
    min-height: 352px;
    margin: 0 0 20px 0;
  }
  .products-section .product-single:nth-child(2n) {
    border-left: 2px solid #fff;
  }
  .testimonial-section .owl-carousel .owl-nav {
    left: 0;
    width: 100%;
  }
  .testimonial-section .testimonial-content p {
    font-size: 18px;
  }
  .testimonial-section .owl-item.active + .owl-item .item {
    margin: 0 44% 0 -44%;
  }
  .testimonial-section .owl-item:first-child .item,
  .testimonial-section .owl-item ~ .owl-item .item {
    margin: 0 -44% 0 44%;
  }
  .testimonial-section .owl-item .item,
  .testimonial-section .owl-item.active .item {
    margin: 0;
  }

  .events-section .events-link {
    padding: 3rem 0;
  }
  .events-section .single-event {
    padding: 3.5rem 0;
  }
  .events-section .single-event .event-date h2 {
    width: 41%;
  }
  .events-section .single-event .event-date h2 span {
    text-align: right;
  }
  .featured-section .heading {
    padding: 7rem 0 9.5rem;
  }
  .blogs-section .heading {
    padding: 6rem 0 10.5rem;
  }
  .blogs-section .blogs {
    padding: 30px 0;
  }
  .featured-section .owl-carousel .owl-item img {
    min-height: 210px;
  }
  .contact-section {
    padding: 5rem 0;
  }
  .contact-section h2 {
    font-size: 30px;
  }
  .contact-section p {
    font-size: 18px;
  }

  .tribe-events-button,
  .woocommerce #respond input#submit,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .button,
  .more-button,
  .more-button-link,
  .link-button,
  button,
  input[type='submit'] {
    padding: 1.2rem 3rem;
    font-size: 16px;
  }
  .more-button {
    padding: 0.5rem 1.9rem !important;
  }
  .search-field {
    padding: 0.5rem 1rem !important;
  }
  .search-submit {
    padding: 0.8rem 2rem !important;
  }
  .site-footer {
    padding: 2rem 0;
  }
  .site-footer div + h4 {
    margin-top: 2rem;
  }
  .site-footer .footer-col {
    margin-bottom: 2rem;
  }
  #secondary {
    margin-top: 0;
  }
  #secondary .search-field,
  #secondary .search-submit {
    font-size: 14px;
  }
  .woocommerce-checkout .col2-set .col-1,
  .woocommerce-checkout .col2-set .col-2 {
    float: left !important;
    width: 48% !important;
  }
  .woocommerce #content div.product div.images,
  .woocommerce div.product div.images,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page div.product div.images {
    width: 40%;
  }
  .woocommerce #content div.product div.summary,
  .woocommerce div.product div.summary,
  .woocommerce-page #content div.product div.summary,
  .woocommerce-page div.product div.summary {
    width: 56%;
  }
  .woocommerce .col2-set .col-1,
  .woocommerce-page .col2-set .col-1,
  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-2 {
    width: 100%;
    flex: 48%;
    max-width: 48%;
    float: left;
    padding: 0;
    margin-right: 2%;
  }
  .info-section .single-way .contact-icon {
    padding-left: 0;
  }
  .elementary-page .element-content {
    margin-top: 45px;
  }
  .cta-section .highlight:after {
    left: -12%;
  }
  .two-col-section {
    text-align: left;
  }
  .tabs-section ul li {
    display: inline-block;
  }
  .tabs-section .tabs-content {
    padding-bottom: 50px;
  }
  .one-col-section p {
    font-size: 21px;
  }
  .one-col-section {
    padding: 4rem 0;
  }
  .curriculum-section {
    padding: 50px 0;
    text-align: left;
  }
  .curriculum-section .heading-h3 {
    font-size: 30px;
  }
  .curriculum-section .curriculum-img {
    text-align: center;
  }
  .curriculum-section .single-curriculum {
    margin: 50px 0;
  }
  .featured-section.products-section .owl-carousel {
    padding: 0 35px;
  }
  .element-section .heading-h2 {
    margin: 2rem 0;
  }
  .two-column-layout .col-right h3 {
    font-size: 24px;
    line-height: 1.3;
  }
  .woocommerce ul.order_details li {
    width: 50%;
  }
  .comment-form-cookies-consent {
    align-items: center;
  }
  .map-section .directions {
    position: absolute;
    left: 60%;
    top: 35%;
  }
  .map-section .directions h2 {
    font-size: 24px;
  }
  .brands-section .owl-item {
    opacity: 0.5;
  }
  .brands-section .owl-item.active.center {
    opacity: 1;
  }
  .brands-section .brand p {
    margin: 24px 0;
  }
  .content-intro-section .heading-h2 {
    margin: 0 0 20px;
    text-align: left;
  }
  .content-intro-section.active .full,
  .content-intro-section.active .heading-h2 {
    text-align: center;
  }
  .brands-section .owl-nav {
    left: 0;
    width: 100%;
  }
  .brands-section .owl-item {
    padding: 20px 0;
  }
  .single-product.woocommerce-page .product_title,
  .page-template-product-page .product_title,
  .single-product.woocommerce-page .summary,
  .page-template-product-page .summary {
    margin-top: 0;
  }
  .single-product.woocommerce-page .product_title,
  .page-template-product-page .product_title {
    margin-bottom: 28px;
  }
  .product-content {
    padding: 50px 15px;
  }
  .product-image .product-overlay {
    display: none;
  }
  .product-image:hover .product-overlay {
    display: block;
    text-align: center;
  }
  .is-desktop
    .site-header
    #primary-menu
    > .menu-item.menu-item-has-children
    > .sub-menu
    li:hover
    a
    .fa:before,
  .is-desktop
    .site-header
    #primary-menu
    > .menu-item.menu-item-has-children:hover
    > a
    .fa:before {
    content: '\f106';
  }
  .is-desktop
    .site-header
    #primary-menu
    .menu-item.menu-item-has-children:hover
    > .sub-menu {
    left: auto;
  }
  .is-desktop
    .site-header
    #primary-menu
    > .menu-item.menu-item-has-children:last-child:hover
    > .sub-menu {
    left: auto;
    right: 0;
  }
  .is-desktop
    .site-header
    #primary-menu
    .menu-item.menu-item-has-children
    > .sub-menu
    li:hover
    .sub-menu {
    left: 100%;
  }
  .is-desktop .main-navigation ul ul {
    display: block;
  }
  .tab-text > p {
    margin-top: 0;
  }
  .tab-text .heading-h4 + p,
  .tab-text a + p {
    margin-top: 28px;
  }
  .two-col-custom .single-col {
    margin: 10px 0;
  }
  .shop-page .heading-h4 {
    font-size: 30px;
  }
  .shop-page .products .woocommerce-loop-product__title {
    text-align: center;
  }
  .team-section h4 {
    font-size: 24px;
  }
  .about-us-page .content-intro-section .link-button {
    padding: 20px 84px;
  }
  .brand-section {
    padding: 48px 0 80px;
  }
  .about-us-page .cta-section.bottom {
    padding: 70px 0;
  }
  .learning-page .two-column-layout .col-right h3 {
    margin-top: 0;
  }
  .learning-page .two-column-layout.courses .col-right h3 {
    height: 62px;
  }
  .team-page .team-section .bottom .top-right:first-child {
    padding-right: 0;
  }
  .search .custom-search-article {
    border: 0;
    border-left: 1px solid #000;
  }
  .search .custom-search-article:last-of-type {
    border-bottom: 0 !important;
  }

  .banner-section:not(.active-classroom-page, .professional-learning) img {
    height: 300px;
  }
  .banner-section.learning-page img {
    height: 250px;
  }
  .banner-section.curriculum-page img {
    height: auto;
  }
  .brands-section .owl-carousel.owl-drag .owl-item {
    height: 592.25px;
  }
  .brands-section
    .owl-carousel.owl-drag
    .owl-item
    .item.brand
    p.button-product {
    display: block;
    position: absolute;
    bottom: 24px;
    width: calc(100% - 120px);
    text-align: center;
  }
}
@media screen and (min-width: 992px) {
  .on-desktop-hide {
    display: none;
  }
  .tribe-events-page-title,
  h1 {
    font-size: 50px;
  }
  .heading-h1 {
    font-size: 55px;
  }
  h2 {
    /*original
		 * font-size:45px;*/
  }
  .heading-h2 {
    font-size: 40px;
  }
  h3 {
    font-size: 35px;
  }
  .heading-h3 {
    font-size: 32px;
  }
  .checkout h3,
  .widgettitle,
  .widget-title {
    font-size: 30px;
  }
  .site-header .site-title {
    text-align: left;
  }
  #site-navigation {
    text-align: right;
  }
  #site-navigation .menu-main-menu-container {
    display: flex;
    justify-content: flex-end;
  }
  .site-header #primary-menu > .menu-item:last-child > a {
    padding-right: 0px !important;
  }
  /*.banner-section.default .row{min-height:300px;}*/
  .is-desktop .metaslider .caption-wrap {
    top: 10%;
  }
  .products-section .product-single .product-detail {
    padding: 1rem 2rem 2rem 1rem;
  }
  .featured-section.products-section .product-single .product-detail {
    padding: 1rem 2rem 2rem 2rem;
  }
  .products-section .product-single .product-detail p {
    margin-bottom: 0;
    line-height: 1.5;
  }
  .products-section .product-single .prod-link a {
    justify-content: center;
    flex-direction: column;
  }
  .products-section .product-single .prod-link a span.line-break {
    order: 0;
    margin: 0 0 12px;
    height: 60px;
    width: 60px;
  }
  .testimonial-section .testimonial {
    background: #fff;
    padding: 50px 95px 60px;
  }
  .testimonial-section .testimonial-content p {
    font-size: 22px;
    margin: 1.8rem 0 2.2rem;
    letter-spacing: 0;
  }

  .featured-section {
    /*padding-bottom:105px;*/
  }
  .featured-section.blogs-section {
    padding-bottom: 20px;
  }
  .featured-section .product-slider {
    margin-bottom: 42px;
  }
  .contact-section {
    padding: 7rem 0;
  }
  .contact-section h2 {
    font-size: 45px;
    line-height: 1;
    margin: 1rem;
  }
  .contact-section p {
    font-size: 21px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .site-footer {
    padding: 4rem 0;
  }
  .site-footer .footer-col {
    margin-bottom: 0rem;
  }
  .site-footer .footer-bottom {
    margin-top: 45px;
  }
  .site-footer div + h4 {
    margin-top: 3rem;
  }
  .site-footer .social-profiles li {
    margin: 22px 10px;
  }
  .site-footer .second-col {
    order: 2;
  }
  .site-footer .third-col {
    order: 3;
  }
  .site-footer .fourth-col {
    order: 4;
  }
  .site-footer .last-col {
    order: 5;
  }
  .contact-section .highlight:after {
    left: -25%;
    width: 140%;
  }
  .is-desktop .form-section .form {
    margin-top: -15%;
  }
  .form-section .form {
    box-shadow: 0 5px 6px #e0e0e0;
  }
  .form-section .hbspt-form .hs-input:not([type='image']),
  .form-section .hbspt-form select,
  .form-section .gform_wrapper select,
  .form-section .gform_wrapper input:not([type='image']) {
    padding: 17px !important;
    height: 54px;
  }
  .form-section .gform_wrapper .gfield,
  .form-section .hbspt-form .field {
    margin-bottom: 30px !important;
    margin-top: 0;
  }
  .ginput_container_select:before,
  .hs-fieldtype-select .input:before {
    top: 15px;
  }
  .contact-section .highlight.contact-curriculum:after {
    top: 5%;
    width: 110%;
    left: -5%;
  }
  .site-page .page-content {
    margin: 64px auto 20px;
  }
  .cta-section .link-button {
    padding: 20px 88px;
  }
  .two-col-section .two-cols {
    padding: 80px 0 32px;
  }
  .two-col-section .single-col.last {
    padding: 0 45px;
  }
  .tabs-section ul li {
    padding: 14px 30px;
  }
  .one-col-section .highlight:after {
    left: 0;
  }
  .featured-section.products-section .owl-carousel {
    padding: 0 55px;
    margin-bottom: 50px;
  }
  .high-school-page .page-content,
  .middle-school-page .page-content {
    margin-bottom: 24px;
  }
  .middle-school-page .element-section .elements {
    margin: 30px 0 92px;
  }
  .high-school-page .element-section .elements {
    margin: 30px 0 80px;
  }
  .two-column-layout .single-column {
    margin: 33px 0 75px;
  }
  .webinars-page .two-column-layout .single-column {
    margin: 33px 0 100px;
  }
  .two-column-layout {
    padding: 60px 0 75px;
  }
  .webinars-page .two-column-layout {
    padding: 60px 0 70px;
  }
  .webinars-page .two-column-layout.past {
    padding: 50px 0 72px;
  }
  .two-column-layout h2 {
    margin-bottom: 50px;
  }
  .content-section p {
    font-size: 16px;
  }
  /*.is-desktop .banner-section.shop-page .caption-wrap,*/
  .is-desktop .banner-section.active-classroom-page .caption-wrap,
  .is-desktop .banner-section.contact-page .caption-wrap {
    align-items: flex-start;
    top: 5%;
  }
  .shop-page .series-product,
  .shop-page .three-col-layout {
    padding: 50px 0 40px;
  }
  .shop-content {
    padding: 53px 0;
  }
  .two-col-custom .single-col {
    margin: 30px 0;
  }
  .content-section h3,
  .shop-page .shop-content h3,
  .two-col-custom .single-col h3 {
    font-size: 24px;
    line-height: 1;
  }
  .two-col-custom .single-col h3,
  .two-col-custom .single-col p {
    margin-bottom: 24px;
  }
  .team-section .top-left,
  .team-section .top-right,
  .team-section .bottom-left,
  .team-section .bottom-right {
    padding: 0 5px 0 0;
  }
  .team-section .text .text-container h2 {
    font-size: 24px;
  }
  .team-section .single:nth-child(2n) .top-right,
  .team-section .single:nth-child(2n) .bottom-right,
  .team-page .team-section .top-right:last-child {
    padding-right: 0;
  }
  .team-page .team-section .bottom .top-right:first-child {
    padding-right: 5px;
  }
  .banner-section .banner-text h2 {
    font-size: 40px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    line-height: 1.3;
  }
  .classroom-section .single-classroom {
    margin: 40px 0;
  }
  .classroom-section .single-classroom .classroom-content {
    padding: 0 30px;
  }
  .classroom-section {
    margin-bottom: 45px;
  }
  .center-section {
    padding: 70px 0 60px;
  }
  .active-classroom-page .element-section {
    padding: 50px 0;
  }
  .content-intro-section .text .heading-h3,
  .two-column-layout .text .heading-h3 {
    margin-bottom: 35px;
  }
  .learning-page .two-column-layout .col-left h3 a,
  .learning-page .two-column-layout .col-left h3 {
    font-size: 30px;
  }
  .learning-page .two-column-layout .single-column {
    margin: 33px 0 100px;
  }
  .learning-page .two-column-layout.courses .single-column {
    margin: 25px 0 40px;
  }
  .learning-page .two-column-layout {
    padding: 60px 0 100px;
  }
  .learning-page .two-column-layout.courses {
    padding: 60px 0 70px;
  }
  .learning-page .two-column-layout.load-content .heading-h2 {
    margin-bottom: 35px;
  }
  .learning-page .two-column-layout .training {
    margin: 65px 0 30px;
  }
  .learning-page .two-column-layout.load-content .single-column {
    margin: 33px 0;
  }
  .learning-page .two-column-layout.load-content {
    padding: 60px 0 80px;
  }
  .learning-page .two-column-layout .load-more {
    margin-top: 35px;
  }
  .team-member-section {
    padding: 45px 0 50px;
  }
  .team-member-section.sales {
    padding: 45px 0 75px;
  }
  .team-member-section .heading-h2 {
    margin-bottom: 25px;
  }
  .team-member-section .member {
    margin: 40px 0 25px;
  }
  /*.team-page .contact-section .link-button{padding:16px 80px;}*/
  .popup-content {
    padding: 70px 105px 100px;
  }
  .search .facet-label {
    font-size: 20px;
  }
  .search .price,
  .search .page-header .page-title {
    font-size: 30px;
  }
  .search .page-title,
  .search .custom-search-article .entry-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1100px) {
  .woocommerce ul.order_details li {
    width: 33.3%;
    border-right: 1px dashed #d3ced2;
    padding: 1rem 2rem;
  }
  .woocommerce ul.order_details li:nth-child(3n) {
    border: 0;
  }
  .blog-heading {
    margin: 3.5rem 0 15px;
  }
  .site-header #primary-menu .sub-menu a {
    padding: 14px 15px;
  }
  .site-header #primary-menu > .menu-item.menu-item-has-children > a:after {
    right: 15px;
  }

  /*.banner-section.default .row{min-height:400px;}*/
  .is-desktop .metaslider .caption-wrap {
    top: 12%;
  }
  .is-desktop .banner-section .caption-wrap .heading-h1,
  .is-desktop .metaslider .caption-wrap .heading-h1 {
    margin-bottom: 20px;
  }
  /*.is-desktop .banner-section .caption-wrap .heading-h1{
		margin-top:0;*/
  .is-desktop .banner-section .caption-wrap .heading-h1 {
    margin-top: 35px;
  }
  .is-desktop .banner-section .caption-wrap p,
  .is-desktop .metaslider .caption-wrap p {
    font-size: 21px;
  }
  .contact-section {
    padding: 9.5rem 0;
  }
  .site-page .contact-section {
    padding: 4rem 0 7.5rem;
  }
  .site-page .contact-section h2 {
    margin-bottom: 32px;
  }
  .page-template-brands-page .site-page .contact-section h2 {
    margin-bottom: 20px;
  }
  .page-template-partnership-page .site-page .contact-section h2 {
    margin-bottom: 16px;
  }
  .contact-section .link-button {
    margin-top: 10px;
    padding: 16px 28px;
  }
  .products-section .product-single .product-detail {
    width: 99.9%;
  }
  .testimonial-section .owl-item.active + .owl-item .item {
    margin: 0 50% 0 -50%;
  }
  .testimonial-section .owl-item:first-child .item,
  .testimonial-section .owl-item ~ .owl-item .item {
    margin: 0 -50% 0 50%;
  }
  .testimonial-section .owl-item .item,
  .testimonial-section .owl-item.active .item {
    margin: 0;
  }

  .testimonial-section .owl-carousel .owl-nav .owl-prev {
    margin-left: 4%;
  }
  .testimonial-section .owl-carousel .owl-nav .owl-next {
    margin-right: 4%;
  }
  .site-page .testimonial-section {
    padding-bottom: 32px;
  }
  .featured-section.blogs-section .owl-carousel {
    padding: 0;
  }
  .featured-section.blogs-section .item p {
    margin-bottom: 25px;
  }
  .featured-section.blogs-section h4 {
    margin-bottom: 12px;
  }
  .cta-section {
    padding: 38px 0 54px;
  }
  .cta-section h2 {
    margin: 2rem 1rem;
  }
  .tabs-section ul li {
    padding: 14px 35px;
  }
  .one-col-section {
    padding: 100px 0 90px;
  }
  .curriculum-section {
    padding: 58px 0 65px;
  }
  .curriculum-section .heading-h2 {
    margin: 2rem 0 20px;
  }
  .curriculum-section .single-curriculum {
    margin: 80px 0;
  }

  .tabs-section .tab-text {
    padding: 0 25px;
  }
  .high-school-page .curriculum-section .single-curriculum:last-child {
    margin-bottom: 0;
  }
  .high-school-page .curriculum-section .heading-h2 {
    margin: 2rem 0 20px;
  }
  .two-column-layout .col-left {
    padding-right: 35px;
    max-width: 115px;
    flex: 0 0 115px;
  }
  .two-column-layout p {
    margin: 20px 0 25px;
  }
  .events-section .single-event .event-date h2 {
    width: 33%;
  }
  .map-section .directions .dir-container {
    padding: 50px 70px;
  }
  .map-section .directions {
    left: 60%;
    top: 25%;
  }
  .map-section .directions h2 {
    font-size: 30px;
  }
  .brands-page .content-section {
    margin: 56px 0 20px;
  }
  .content-section .col {
    padding: 0 30px;
  }
  .brands-section {
    padding: 20px 0 60px;
  }
  .brands-section .item {
    padding: 25px 61px 24px;
    height: 552.25px;
  }
  .brands-section .owl-nav {
    /*left:-2%;
		width:104%;*/
    left: 0;
  }
  .content-intro-section {
    padding: 70px 0 22px;
  }
  .content-intro-section.bottom {
    padding: 85px 0 70px;
  }
  .divider {
    padding-top: 45px;
  }
  .partner-section {
    padding: 0 0 55px;
  }
  .partner-section .heading-h2 {
    margin-bottom: 42px;
  }
  .content-intro-section.bottom .text {
    padding: 0 50px 0 65px;
  }
  .content-intro-section .heading-h2 {
    margin: 0 0 30px;
  }
  .contact-section .highlight.part:after {
    left: -5%;
    width: 110%;
  }
  .brands-section .owl-carousel .owl-nav .owl-prev {
    /*background: url('/wp-content/uploads/slider-left-arrow.png') no-repeat center !important;*/
    width: 60px;
    height: 43px;
  }
  .brands-section .owl-carousel .owl-nav .owl-next {
    /*background: url('/wp-content/uploads/slider-right-arrow.png') no-repeat center !important;*/
    width: 60px;
    height: 43px;
  }
  .product-content {
    padding: 78px 15px;
  }
  .two-col-custom {
    padding: 45px 0 25px;
  }
  .two-col-custom .single-col {
    margin: 40px 0 48px;
  }
  .two-col-custom .two-cols:nth-child(n) .single-col:first-child {
    padding: 0 15px 0 95px !important;
  }
  .two-col-custom .two-cols:nth-child(n) .single-col.last {
    padding: 0 15px !important;
  }
  .two-col-custom .two-cols:nth-child(2n) .single-col:first-child {
    padding: 0 15px !important;
  }
  .two-col-custom .two-cols:nth-child(2n) .single-col.last {
    padding: 0 95px 0 15px !important;
  }
  .cta-section.custom {
    padding: 55px 0 84px;
  }
  .blogs-section.custom {
    padding: 25px 0 15px;
  }
  .about-us-page .cta-section {
    padding: 40px 0 64px;
  }
  .active-classroom-page .contact-section {
    padding-top: 9rem;
  }
  .is-desktop .banner-overlay {
    margin: -50px 0 20px;
  }
  .classroom-section .single-classroom .classroom-content {
    padding: 0 60px;
  }
  .active-classroom-page .partner-section {
    padding: 65px 0 75px;
  }
  .active-classroom-page .single-partner {
    margin: 35px 0;
  }
  .active-classroom-page .element-section {
    padding: 65px 0 70px;
  }
  .active-classroom-page .element-section .single-element {
    margin: 40px 0 0;
  }
  .active-classroom-page .element-section .element-content {
    margin: 0 auto;
    width: 57%;
  }
  .active-classroom-page .element-section.activities .single-element {
    margin: 40px 0 30px;
  }
  .active-classroom-page .element-section.activities {
    padding: 65px 0 60px;
  }
  .active-classroom-page .testimonial-section {
    padding-bottom: 55px;
  }
  .content-intro-section.active {
    padding: 80px 0 44px;
  }
  .content-intro-section.active .heading-h2 {
    margin-bottom: 20px;
  }
  .content-intro-section.active h4,
  .content-intro-section.active {
    font-size: 21px;
  }
  .content-intro-section.active .full {
    padding: 0 30px;
  }
  .content-intro-section.active .content {
    margin-bottom: 50px;
  }
  .learning-page .two-column-layout.courses .col-left {
    padding-right: 0;
  }
  .learning-page .contact-section {
    padding: 9rem 0 7.3rem;
  }
  .learning-page .blogs-section {
    padding: 40px 0 70px;
  }
  .learning-page .blogs-section .blogs {
    padding-bottom: 40px;
  }
  .search .custom-search-article .detail {
    padding-left: 40px;
    margin-top: -20px;
  }
  .search .custom-search-article {
    padding: 20px 45px;
  }
  .search .button,
  .search .add_to_cart_button {
    padding: 16px 80px;
  }
  .team-page .contact-section h2 {
    margin-bottom: 20px;
  }
  .banner-section .link-button,
  .metaslider .link-button {
    margin-top: 36px;
  }
}
@media screen and (min-width: 1200px) {
}
@media screen and (min-width: 1280px) {
  .site-header #primary-menu .menu-item a {
    padding: 25px 27.5px 25px 27.5px;
  }
  .is-desktop .metaslider .caption-wrap {
    top: 15%;
  }
  .featured-section .owl-carousel .owl-item img {
    min-height: 260px;
  }
  .two-col-section .single-col.last {
    padding: 0 85px;
  }
  .tabs-section ul li {
    padding: 8px 37px 14px;
  }
  .brands-section {
    padding: 20px 0 85px;
  }
  .quantity_select:before {
    right: 25px;
  }
  .team-section .text .text-container h2 {
    font-size: 40px;
    line-height: 1.3;
    margin: 0;
  }
  .is-desktop .banner-overlay {
    margin: -50px 0 20px;
  }
}
@media screen and (min-width: 1366px) {
  .products-section .product-single .prod-link a {
    align-items: flex-end;
  }
  .products-section .product-single .prod-link a span.line-break {
    margin-right: 8px;
  }
  .is-desktop .form-section .form {
    margin-top: -23%;
  }
  .metaslider .flexslider .flex-direction-nav li a {
    opacity: 0 !important;
  }
  .metaslider .flexslider:hover .flex-direction-nav li a {
    opacity: 0.8 !important;
  }
  .map-section .directions h2 {
    font-size: 40px;
  }
  .content-intro-section .text {
    padding-left: 0;
  }
  .is-desktop .banner-overlay {
    margin: -70px 0 20px;
  }
}
@media screen and (min-width: 1601px) {
  .brands-section {
    padding: 20px 0 75px;
  }
  .content-intro-section {
    padding: 100px 0 22px;
  }
  .about-us-page .content-intro-section {
    padding: 70px 0;
  }
  .page-template-brands-page .site-page .contact-section {
    padding: 9rem 0;
  }
  /*.is-desktop .banner-section.shop-page .caption-wrap,*/

  .is-desktop .banner-section.contact-page .caption-wrap {
    top: 20%;
  }
  .is-desktop .banner-section.active-classroom-page .caption-wrap {
    top: 10%;
  }
  .is-desktop .banner-overlay {
    margin-top: -100px;
  }
  .is-desktop .active-classroom-page .banner-overlay {
    margin-top: -220px;
  }
  .shop-page .series-product .owl-carousel,
  .shop-page .new-products .owl-carousel {
    padding: 0;
  }
  .shop-page .series-product .owl-carousel .owl-nav,
  .shop-page .new-products .owl-carousel .owl-nav {
    width: 110%;
    left: -5%;
  }
  .team-section .text .text-container {
    padding: 0 50px;
  }
  .learning-page .content-intro-section {
    padding: 100px 0 92px;
  }
}
/************************************Media Styles End***********************/
.swp-div-fuzzy p {
  color: #000;
  cursor: pointer;
  font-weight: bolder;
  padding: 0.5rem 1rem !important;
}

.bundle_wrap {
  width: auto;
  display: table;
}

.woocommerce div.product form.cart .button.single_add_to_cart_button {
  float: none !important;
  width: auto;
  margin: 0 10px;
}

.addtocart_message {
  float: left;
  width: 322px;
}

.addtocart_message p {
  margin: 0;
}

@media screen and (min-width: 1253px) {
  .bundle_wrap {
    width: 690px;
    display: table;
  }
}

#content li.active {
  border-bottom: 5px solid #0066b4;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 0;
  background-color: #ffffff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border: 0;
}
.wc-tabs:after {
  top: 93%;
}

.entry-summary h4 {
  margin-top: 5px;
}

.woocommerce div.product h1.product_title {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
}

.lead-line {
  margin-bottom: 0;
  margin-top: 40px;
}

.woocommerce div.product p.price {
  margin: 0;
}

p.order-code {
  margin-top: 0;
  font-size: 13px;
}

.overview-title {
  font-weight: bold;
  font-size: 18px;
  font-family: 'CartoGothicPro Bold', 'CartoGothicPro', 'sans-serif';
}
.searchwp-highlight {
  background-color: #fcf919;
}
/*////////////////////////////////  Search results page  ////////////////////////////////////////*/
.search .button,
.search .add_to_cart_button {
  /*background: #4b4b4b !important;*/
  height: 35px;
  font-size: 13px !important;
  padding: 11px 25px;
  text-transform: uppercase;
}
.search .quantity_select select {
  padding: 8px 10px;
}
.search .price {
  font-size: 23px;
}
.quantity_select:before {
  color: #787878;
}
.facetwp-pager a {
  color: #2353bd;
  font-size: 18px;
}
.facetwp-pager a.active {
  color: #000;
}
.search .page-header .page-title {
  font-size: 25px;
}
.search .facetwp-sort select {
  padding: 8px 10px;
}
.search .facetwp-sort:before {
  color: #787878;
  top: 6px;
}

/*/////////////////////////////  Account Page CSS  ///////////////////////////////////////////////*/
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  background: #f7f6f7;
  padding: 0;
  border: 1px solid #bdb5b5;
}
.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 10px 20px;
  border-bottom: 1px solid #bdb5b5;
  text-transform: capitalize;
}
.woocommerce-MyAccount-navigation ul li:last-child a {
  border-bottom: 0;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  background: #e1e1e1;
  text-decoration: none;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  background: #e1e1e1;
}
#billing_state,
#shipping_state,
#shipping_country,
#billing_country {
  line-height: 34px;
  padding: 0 0.5rem;
}
.woocommerce-MyAccount-content .ywraq_my_account_quotes_title {
  font-size: 30px;
}

#shipping_state_field .woocommerce-input-wrapper,
#billing_state_field .woocommerce-input-wrapper,
#shipping_country_field .woocommerce-input-wrapper,
#billing_country_field .woocommerce-input-wrapper {
  position: relative;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b,
.woocommerce-checkout .select2-selection .select2-selection__arrow b {
  display: none;
}

#shipping_state_field .woocommerce-input-wrapper:before,
#shipping_country_field .woocommerce-input-wrapper:before,
#billing_state_field .woocommerce-input-wrapper:before,
#billing_country_field .woocommerce-input-wrapper:before {
  position: absolute;
  right: 15px;
  top: 3px;
  content: '\f0d7';
  font-family: 'fontawesome';
  color: #f37734;
  z-index: 99;
}
.woocommerce-select,
.woocommerce-MyAccount-content .woocommerce-select {
  line-height: 36px;
  padding: 0 0.5rem;
}
#hide-method-bar .button {
  float: left !important;
  margin: 23px 0 0 15px;
}
#add_new_method,
#cancel_button1 {
  padding: 0.8rem 1rem !important;
  margin-top: 15px;
}

@media screen and (max-width: 992px) {
  #hide-method-bar .button {
    margin: 15px 0 0 15px !important;
  }
  .woocommerce-MyAccount-content .ywraq_my_account_quotes_title {
    font-size: 23px;
  }
}
@media screen and (min-width: 768px) and (max-width: 992px) {
  #hide-method-bar .button {
    margin: 15px 0 0 15px !important;
  }
  .woocommerce-MyAccount-content .ywraq_my_account_quotes_title {
    font-size: 23px;
  }
  .woocommerce ul.products li.product,
  .woocommerce-page ul.products li.product {
    width: 30.7%;
    float: left;
    clear: none;
    margin: 0 3.8% 2.992em 0 !important;
  }
  .woocommerce ul.products li:nth-child(3n),
  .woocommerce-page ul.products li:nth-child(3n) {
    margin-right: 0 !important;
  }
}
@media screen and (max-width: 450px) {
  #hide-method-bar {
    text-align: left;
  }
  #hide-method-bar .button,
  .woocommerce-MyAccount-content #hide-method-bar h3 {
    float: none !important;
  }
  .woocommerce-MyAccount-content #hide-method-bar .button {
    margin: 0px 0 23px 0 !important;
  }
  #ebizcharge-new-info .form-row {
    float: none;
    width: 100%;
  }
}
.search-results .site-main > .col-lg-9,
.search .page-header .page-title.searcg-res .facetwp-counts {
  display: inline-block;
}
.search-results .site-main .col-lg-3 {
  float: right;
  margin-top: 10px;
}
.search-results .custom-search-article .price {
  margin-bottom: 5px;
}
.search-results .custom-search-article .order-code {
  margin-bottom: 5px;
  display: inline-block;
  margin-right: 20px;
}
.search-results .custom-search-article .isbn {
  margin-bottom: 5px;
  display: inline-block;
}
.search-results .custom-search-article .sku {
  margin-left: -20px;
  margin-bottom: 5px;
  display: inline-block;
}
.search-results .custom-search-article .entry-title {
  margin-bottom: 2px;
}
.search-results .custom-search-article .entry-title + p {
  margin: 0 0 30px 0;
}
.page-header .facetwp-counts {
  display: inline-block;
}

.page-title.search-res {
  font-size: 20px !important;
}

tr.woocommerce-cart-form__cart-item.cart_item.bundled_table_item {
  display: none;
}

.bundled_table_item {
  display: none;
}

a.added_to_cart:before,
a.added-cart:before {
  font-family: WooCommerce;
  content: '\e017';
  margin-right: 0.53em;
}
a.added_to_cart,
a.added-cart {
  margin-left: 15px;
}

.jacr-add-to-quote {
  margin: 0 10px;
}

.search .jacr-add-to-quote .add-request-quote-button {
  padding: 11px 25px;
}

.in1sd-product .entry-summary .price,
.in1sd-product .entry-summary form.cart,
.in1sd-product .entry-summary .sku_wrapper,
.single_variation_wrap .woocommerce-variation-description {
  display: none;
}
.woocommerce-product-gallery__trigger {
  display: none !important;
}
.child-products-heading {
  font-size: 2em;
}

#sc1d-variants img {
  display: none !important;
}
#sc1d-variants li.product {
  float: none !important;
  width: auto !important;
  display: block !important;
  text-align: left;
}
#sc1d-variants li.product a,
#sc1d-variants li.product .yith-ywraq-add-to-quote {
  float: none !important;
  display: inline-block !important;
  width: auto !important;
  margin: 0 10px 0 0;
}

.new-products .owl-carousel .owl-item img {
  max-height: 230px;
  min-height: 230px !important;
  object-fit: cover;
}

.featured-section .owl-carousel .owl-item img {
  height: 260px;
  object-fit: cover;
}

.col-md-6-img {
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.brands-section .owl-nav {
  z-index: 99;
}

#viewerCanvas > div > div:last-child,
.search-results .facetwp-template .comments-link {
  display: none !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0.4;
  /* change if the mask should have another color then white */
  z-index: 99;
  /* makes sure it stays on top */
}

#status {
  width: 200px;
  height: 200px;
  position: absolute;
  left: 50%;
  /* centers the loading animation horizontally one the screen */
  top: 50%;
  /* centers the loading animation vertically one the screen */
  background-image: url(../gif/status.gif);
  /* path to your loading animation */
  background-repeat: no-repeat;
  background-position: center;
  margin: -100px 0 0 -100px;
  /* is width and height divided by two */
}
.woocommerce-product-gallery .flex-control-nav,
#sc1d-variants .product-img + .woocommerce-loop-product__title,
#sc1d-variants .product-img {
  display: none;
}
/*#sc1d-variants li:first-child .product-img + .woocommerce-loop-product__title,
#sc1d-variants li.product a.woocommerce-LoopProduct-link{
	display:block !important;
}*/
#sc1d-variants .woocommerce-loop-product__title {
  min-height: auto !important;
}
#sc1d-variants li.product {
  margin-bottom: 5px !important;
}
.woocommerce-orders-table__cell-order-actions .button {
  margin: 10px !important;
}
#sc1d-variants .product .price,
#sc1d-variants .product .meta-info {
  display: inline;
  margin: 0 10px 10px 0 !important;
}
.single-product .product .entry-summary .price,
.single-product .product .entry-summary .product_meta,
.single-product .product .entry-summary .cart {
  display: inline-block;
  margin: 0 10px 10px 0 !important;
}
#sc1d-variants .product .woocommerce-LoopProduct-link .isbn_wrapper {
  margin-left: 10px;
}
span.subtitle-in-title {
  font-size: 16px;
  display: block;
}
.search .custom-search-article .quantity {
  width: 70px;
  margin-right: 10px;
  order: 2;
}
.search .custom-search-article .quantity input {
  width: 100%;
  height: 35px;
  padding: 5px 3px 5px 10px;
  text-align: center;
}
.search .custom-search-article .subtitle-in-title {
  text-transform: initial;
}
.my_account_quotes .quotes-actions a {
  margin-right: 10px;
}
.back-to-search {
  margin-bottom: 15px;
}
.woocommerce-order-downloads .download-remaining,
.woocommerce-order-downloads .download-expires,
.woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link--customer-logout,
.woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link--contact-us,
.woocommerce-MyAccount-navigation
  .woocommerce-MyAccount-navigation-link--edit-address,
.woocommerce-table--order-downloads .download-file .nobr {
  display: none !important;
}
#dropdown_variants {
  -webkit-appearance: menulist !important;
  padding: 7px;
  text-align: left;
  margin: 15px 5px 15px 0;
  width: 250px;
  max-width: 100%;
  background: #fff;
}
#dropdown_variantswidth {
  display: none;
}
.single-product #dropdown_variants {
  margin: 5px 5px 15px 0;
}
.search .cart {
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.search .cart .variants {
  width: 100%;
  order: 1;
}
.search .button,
.search .add_to_cart_button {
  order: 3;
}
.search .cart .added_to_cart,
.search .cart .added-cart {
  order: 0;
  margin: 0 10px 0 0;
}
.search .cart .jacr-add-to-quote {
  order: 4;
}
.single-product .content-marketing {
  clear: both;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.single_add_to_cart_button .fa,
.add_to_cart_button .fa {
  color: #fff !important;
  margin-right: 5px;
}
.shop_table.cart .product-remove a {
  color: #ccc !important;
}
.shop_table.cart .product-remove a:hover {
  background: transparent !important;
  color: #4b4b4b !important;
}
.woocommerce-notices-wrapper .button {
  margin-left: 10px;
}
/****************************CT Styles for New Pages 18-6-19 Start**************************************/
.blogs-section .owl-carousel .owl-dots .owl-dot.active,
.testimonial-section .owl-carousel .owl-dots .owl-dot.active,
.site-search .search-form .search-submit {
  background: #f37734 !important;
}
.new-template .testimonial-section .testimonial .author {
  color: #f37734;
}
#page .link-button,
#page .more-button,
.more-button-link {
  border-radius: 20px !important;
  padding: 0.8rem 2rem !important;
  margin: 10px 5px 10px 0;
  font-size: 16px !important;
  font-weight: normal !important;
}
.featured-section .heading.no-bg {
  background: transparent;
  color: #000;
  padding: 3rem 15px;
}
.featured-section .heading.no-bg + .container .blogs,
.featured-section .heading.no-bg + .container .product-slider {
  margin: 0;
}
.featured-section .prod-cats a,
.new-template .featured-section .prod-cats a,
.featured-section .heading.no-bg .heading-h2 {
  color: #000 !important;
}
.new-template .featured-section .owl-carousel .owl-item,
.featured-section .product-slider,
.featured-section .product-slider .owl-item,
.new-template .featured-section .product-slider {
  text-align: left;
}
.product-slider .product-title,
.new-template .product-slider .product-title {
  margin: 1rem 0;
  /*min-height:62px;*/
}

.product-slider .product-title a,
.new-template .product-slider .product-title a {
  font-family: 'CartoGothicPro Light', 'CartoGothicPro', 'sans-serif';
  color: #000;
  line-height: 1.3;
  text-transform: uppercase;
}
.common-cta-section {
  color: #fff;
  background: #67727d;
  padding: 5% 0;
}
.webinars-new .webinars-section .webinar-heading,
.shop-new .categories-section .woocommerce-loop-product__title,
.webinars-section .webinar-content,
.blogs-section.common-blogs .main-content,
.micro-credentials-section .credentials-image,
.common-cta-section .cta-image {
  text-align: center;
}
.micro-credentials-section {
  padding: 5% 0;
}
.blogs-section.common-blogs .blogs .blog-content {
  padding: 0;
}
.common-pages-section .page-content-inner,
.blogs-section.common-blogs .blogs .single-blog-inner {
  padding: 20px 15px;
  border: 1px solid #bfbcbc;
  box-shadow: 0px 3px 3px 0px #bfbcbc;
}
.blogs-section.common-blogs .blog-cat {
  margin-bottom: 0;
}
.webinars-section .webinars .single-webinar p.link,
.common-upcoming-section .upcoming-links li,
.blogs-section.common-blogs .blog-cat a {
  font-weight: bold;
  text-transform: uppercase;
}
.blogs-section.common-blogs .blog-cat + h4 {
  margin: 0;
}
.webinars-section .single-webinar .col-right {
  text-align: right;
}
.webinars-section .webinars {
  border: 1px solid #bfbcbc;
  box-shadow: 0px 3px 3px 0px #bfbcbc;
  background: #fff;
}
.webinars-section .webinars .single-webinar {
  border-bottom: 1px solid #bfbcbc;
  padding: 15px;
}
.professional-learning .webinars-section .webinar-heading {
  text-transform: uppercase;
  font-size: 20px;
}
.webinars-section .webinars .single-webinar:last-child {
  border: 0;
}
.webinars-section .webinars .single-webinar p {
  margin: 0;
  color: #576575;
}
.webinars-section .webinars .single-webinar h4 {
  margin: 5px 0 0;
}
.webinars-section .webinars .single-webinar h4 a {
  color: #364f60;
}
.webinars-section .webinars .single-webinar .event-date {
  font-size: 18px;
  color: #364f60;
}
.webinars-section {
  background-color: #fafbfc;
  padding: 2% 0 4%;
}
.blogs-section.common-blogs {
  padding: 2% 0;
}
.featured-section p.prod-cats,
.new-template p.prod-cats {
  text-align: center;
}
.featured-section p.prod-cats,
.new-template p.prod-cats,
.webinars-section .webinars .single-webinar p.link a {
  font-size: 12px;
}
.new-template .metaslider .flexslider .flex-direction-nav li a {
  background: url('../png/arrow-grey-18.png') no-repeat center !important;
}
.new-template .owl-carousel .owl-nav button {
  background: url('../png/arrow-orange-18.png') no-repeat center !important;
}
.new-template .metaslider .flexslider .flex-direction-nav li a.flex-prev {
  transform: rotate(0);
}
.new-template .metaslider .flexslider .flex-direction-nav li a.flex-next,
.new-template .owl-carousel .owl-nav button.owl-next {
  transform: rotate(180deg);
}
.page-content-bg {
  background: #eeeded;
  padding: 2% 0 5%;
}
.common-pages-section .page-content-inner {
  background: #fff;
  height: 100%;
}
.common-pages-section .page-content-inner h5 {
  margin-top: 0;
}
.common-pages-section .page-content-inner p {
  font-weight: bold;
  margin-bottom: 0;
}
.common-upcoming-section .upcoming-links {
  list-style: none;
  padding: 0;
  text-align: center;
}
.common-upcoming-section .upcoming-links li {
  margin-bottom: 10px;
}
.common-upcoming-section {
  padding: 2% 0;
}
.new-template .testimonial-section {
  margin-bottom: 20px;
}
.scroll-to img {
  width: auto;
  min-height: auto;
  margin: auto;
  display: block;
  transform: rotate(270deg);
}
.scroll-to {
  width: 80px;
  display: flex;
  background: #fff;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: absolute;
  height: 80px;
  left: 47.35%;
  bottom: -40px;
}
html,
body {
  scroll-behavior: smooth;
}
.common-upcoming-section .single-col {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  padding: 30px;
  justify-content: space-between;
  border: 1px solid #bfbcbc;
  box-shadow: 0px 3px 3px 0px #bfbcbc;
  margin-bottom: 10px;
  align-items: center;
}
.common-upcoming-section .single-col .thumb {
  width: 100%;
  display: block;
  padding-bottom: 30px;
  text-align: center;
}
.common-upcoming-section .single-col .heading-h4 {
  margin: 0;
}
.common-upcoming-section .single-col .heading-h4 a {
  color: #354e60;
}
.common-upcoming-section .single-col .image {
  width: 20%;
  height: 100px;
}
.common-upcoming-section .single-col .image img {
  height: 100%;
  object-fit: contain;
}
.common-upcoming-section .single-col .content {
  width: 72%;
}
.common-upcoming-section .single-col span {
  color: #354e60;
  font-size: 12px;
}
.shop-new .three-col-layout {
  background-color: transparent;
}
.shop-new .categories-section {
  background-color: #66818c;
  background-size: cover !important;
  color: #fff;
  padding: 5% 0;
}
.shop-new .categories-section .owl-item {
  background-color: #fff;
  border-radius: 15px;
}
.past-webinars .heading-h2,
.webinars-new .webinars-section .webinar-heading,
.shop-new .heading-h4 {
  font-size: 26px !important;
  margin-bottom: 30px;
}
.shop-new .three-col-layout .single-col {
  margin-bottom: 20px;
}
.shop-new .shop-content {
  padding: 0;
}
.subjects-list li a,
.shop-new .shop-content .advanced-placement {
  color: #fff;
}
.shop-new .shop-content .img {
  flex-grow: 1 !important;
  align-self: stretch !important;
  flex: 1 1 auto !important;
  justify-self: stretch !important;
  min-height: 0;
  display: flex;
  justify-content: stretch;
  align-items: stretch;
}
.shop-new .shop-content .img > div {
  flex: 1;
}
@media screen and (max-width: 992px) {
  .shop-new .shop-content .img > div {
    padding-bottom: 60%;
  }
}
.shop-new .shop-content .img p {
  margin: 0;
}
.shop-new .shop-content .advanced-placement .inner {
  /*original
	height:100%;
	background-color:#648793;
	padding: 10%; */
  height: 100%;
  background-color: #648793;
  /*padding: 10%;*/
  padding: 10% 20% 10% 20%;
}
.subjects-list {
  /*original
	margin:30px 0 0;
	padding:0;
	list-style:none;
	display: grid;
    grid-template-columns: repeat(2, 1fr);
	grid-column-gap: 35px;
    grid-row-gap: 30px;*/
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  /* grid-column-gap: 35px; */
  grid-row-gap: 10px;
}
.subjects-list li {
  /*original
	text-align: center;
	color:#fff;
	line-height:2;
	margin-bottom: 10px;*/
  text-align: center;
  color: #fff;
  /* float: left; */
  /* clear: both; */
  /* width: 100%; */
  /* line-height: 2; */
  margin-bottom: 10px;
}
.subjects-list li a {
  /* original
	border: 1px solid #fff;
    /* border-radius: 10px; *
    padding: 15px 15px;
    font-size: 18px;
	line-height: 26px;
	display: flex;
	align-items: center;
	justify-content: center;
	*/
  border: 1px solid #fff;
  /* border-radius: 10px; */
  padding: 5px;
  font-size: 18px;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subjects-list li a:hover {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}
.shop-new .curriculum-section {
  padding: 5% 0;
}
.shop-new .curriculum-section .curriculum-content p {
  font-size: 26px;
  text-align: center;
}
.shop-new .curriculum-section .heading-h4 a {
  margin: 0;
}
.webinars-section .past-button {
  margin: 0 0 40px;
}
.past-webinars,
.webinars-new .webinars-section {
  padding: 6% 0 10%;
}
.new-template .view {
  text-align: center;
}
.new-template .view .more-button {
  font-size: 20px !important;
  padding: 1rem 2rem !important;
  border-radius: 30px;
  margin-top: 50px;
}
.yith-ywraq-mail-form-wrapper h3,
.professional-learning .webinars-section .past-button,
.professional-learning .webinars-section .webinar-heading span,
.professional-learning .webinars-section .view {
  display: none !important;
}
.past-webinars .single-column img {
  min-height: 242px;
  max-height: 242px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  width: 100%;
}
.past-webinars .single-column {
  margin-bottom: 5%;
}
.past-webinars .single-column .heading-h4 {
  margin-bottom: 0;
}
.past-webinars .link {
  margin-top: 0;
}
.filter-img {
  text-align: center;
  position: relative;
}
.filter-img img {
  opacity: 0.5;
  width: 100%;
}
.filter-img .filter {
  position: absolute;
  top: 45%;
}
.filter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  width: 100%;
  z-index: 0;
}
.filter h4 {
  margin-right: 20px;
  font-size: 20px;
}
.filter .select-list {
  width: 250px;
  background: #fff;
  z-index: 0;
}
.filter .select-list select {
  padding: 10px;
  width: 100%;
  z-index: 2;
}
.banner-section.curriculum-page .caption-wrap {
  background: none;
}
.conference-page .webinars-section .webinar-heading {
  text-align: center;
  margin-bottom: 5%;
}
.form-section .hbspt-form input[type='submit'] {
  border-radius: 30px !important;
}
@media screen and (max-width: 575px) {
  .micro-credentials-section,
  .common-cta-section {
    text-align: center;
  }
  .micro-credentials-section ul,
  .micro-credentials-section ol {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .common-pages-section {
    text-align: center;
  }
  .common-upcoming-section .single-col .heading-h4 a {
    font-size: 16px;
  }
}
@media screen and (min-width: 576px) {
  .common-cta-section .heading-h2,
  .micro-credentials-section .heading-h2 {
    text-align: left;
  }
  .common-cta-section .cta-image {
    text-align: right;
  }
  .common-cta-section .heading-h2 {
    margin-top: 0;
  }
  .common-upcoming-section .upcoming-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .common-upcoming-section .upcoming-links li {
    margin: 0 10px;
    position: relative;
  }
  .common-upcoming-section .upcoming-links li:after {
    position: absolute;
    content: '';
    width: 1px;
    background: #f9a017;
    height: 15px;
    right: -10px;
    top: 5px;
  }
  .common-upcoming-section .upcoming-links li:last-child:after {
    content: none;
  }
}
@media screen and (min-width: 768px) {
  .banner-section.frontpage {
    color: #000;
  }
  .banner-section.professional-learning .caption-wrap {
    width: 60%;
    right: calc((100vw - 710px) / 2);
  }
  .banner-section.professional-learning .caption-wrap .container {
    background: #fff;
    color: #000;
    text-align: left;
    padding: 30px;
  }
  .banner-section.professional-learning .caption-wrap .container h2 {
    text-align: left;
    line-height: 1;
    position: relative;
    margin-bottom: 30px;
    text-shadow: none;
  }
  .banner-section.professional-learning .caption-wrap .container h2:after {
    position: absolute;
    left: 0;
    width: 50px;
    content: '';
    height: 5px;
    background: #f37734;
    top: 110%;
    border-radius: 10px;
  }
  .new-template .testimonial-section .owl-carousel .owl-nav {
    width: 110%;
    left: -5%;
  }
  .new-template .testimonial-section .owl-carousel .owl-nav button {
    margin: 0 !important;
  }
  .past-webinars .heading-h2,
  .webinars-new .webinars-section .webinar-heading,
  .shop-new .heading-h4 {
    font-size: 36px !important;
    margin-bottom: 40px;
  }
  .shop-new .curriculum-section .curriculum-content p {
    font-size: 28px;
  }
  .shop-new .shop-content .img img {
    width: 100%;
  }
  .shop-new .curriculum-section .heading-h4 a {
    font-size: 26px !important;
  }
}
@media screen and (min-width: 992px) {
  .banner-section.professional-learning .caption-wrap {
    width: 55%;
    right: calc((100vw - 960px) / 2);
  }
  .banner-section.professional-learning .caption-wrap .container {
    background: #fff;
    color: #000;
    text-align: left;
    padding: 30px;
  }
  .webinars-section .webinars .single-webinar {
    padding: 30px 40px;
  }
  .common-upcoming-section .single-col.conference .heading-h4 a {
    font-size: 24px;
  }
  .common-upcoming-section .single-col .thumb img {
    min-height: 310px;
    object-fit: cover;
  }
  /*.common-upcoming-section .single-col .thumb .placeholder-img{min-height:255px;}*/
  .conference-page .banner-section .caption-wrap .banner-text p,
  .webinars-new .banner-section .caption-wrap .banner-text p {
    font-size: 30px;
  }
  .common-upcoming-section .single-col {
    height: calc(33.3% - 10px);
  }
  .common-upcoming-section .single-col.conference {
    height: calc(100% - 10px);
  }
}
@media screen and (min-width: 1200px) {
  .banner-section.professional-learning .caption-wrap {
    width: 35%;
    right: calc((100vw - 1130px) / 2);
  }
  .conference-page .banner-section .caption-wrap .banner-text p,
  .webinars-new .banner-section .caption-wrap .banner-text p {
    font-size: 26px;
  }
}
@media screen and (min-width: 1530px) {
  .shop-new .shop-content > .row {
    align-items: normal !important;
  }
}
@media screen and (min-width: 1600px) {
  .banner-section.professional-learning .caption-wrap {
    width: 25%;
  }
}

/****************************CT Styles for New Pages 18-6-19 End*************************************/
/***************************Search page styles 10-10-19********************/
.search .entry-title a,
.search .page-title {
  font-size: 22px !important;
}
.search .facetwp-checkbox,
.search .facetwp-selections li span,
.search .media-type-search,
.search .span.subtitle-in-title {
  font-size: 14px !important;
}
.search .search-res {
  font-size: 16px !important;
}
.search .facet-label,
.search .price {
  font-size: 18px !important;
}
.search .facetwp-checkbox,
.search .search-res,
.search .entry-title,
.search .isbn b,
.search .price,
.search .facetwp-selections li span,
.search .order-code b {
  font-weight: 400 !important;
  font-family: 'CartogothicPro', 'sans-serif' !important;
}
.search .isbn,
.search .order-code {
  font-size: 12px !important;
}
.search .entry-title a,
.search .facetwp-checkbox,
.search .span.subtitle-in-title {
  color: #000 !important;
  text-decoration: none !important;
}
.search .entry-title a:hover,
.search .facetwp-checkbox:hover,
.search .span.subtitle-in-title:hover {
  color: #404040 !important;
}
.search .facetwp-checkbox {
  line-height: 2 !important;
}
.search .site-main.row {
  align-items: center !important;
}
.search .site-main.row .col-lg-3 {
  margin-top: 0 !important;
}
.search .custom-search-article {
  border: 0 !important;
  border-bottom: 1px solid #ccc !important;
}
.search .custom-search-article:nth-child(2n) {
  background-color: transparent !important;
}
.search .custom-search-article > .row {
  align-items: center;
}
.search .custom-search-article .detail,
.search .custom-search-article .detail .entry-summary,
.search .jacr-add-to-quote {
  margin: 0 !important;
}
.search .button,
.search .add_to_cart_button {
  margin: 5px 10px 5px 0 !important;
}
@media screen and (min-width: 768px) {
  .search .custom-search-article {
    position: relative;
    padding: 20px 15px;
  }
  .search .custom-search-article:before {
    content: '';
    position: absolute;
    height: calc(100% + 1px);
    width: 1px;
    background: #000;
    left: -35px;
  }
}
/***************************Search page styles 10-10-19********************/
#add_payment_method .checkout .shipping_address,
.woocommerce-cart .checkout .shipping_address,
.woocommerce-checkout .checkout .shipping_address {
  display: block !important;
}
.related .product-img img,
div.images .wp-post-image,
.products .product img,
.product-slider img,
.product-search-image img {
  box-shadow: 5px 5px 5px #666 !important;
  padding: 3px !important;
}
.woocommerce .related ul.products li.product,
.woocommerce-page .related ul.products li.product {
  margin: 0 3.8% 2.992em 0 !important;
}
.woocommerce .related ul.products li:last-child,
.woocommerce-page .related ul.products li:last-child {
  margin-right: 0 !important;
}
.page-template-curriculum-page .two-col-section .more-button {
  background-color: #fff !important;
  color: #f37734 !important;
  border: 1px solid #fff !important;
}
.page-template-curriculum-page .two-col-section .more-button:hover {
  background-color: #f37734 !important;
  color: #fff !important;
}
.wcbulkordertable .button {
  padding: 1rem 2rem !important;
}
@media (max-width: 768px) {
  #yith-ywraq-form .actions .wc-backward {
    margin-bottom: 15px;
  }
}
/* LUIS REMOVING BOX SHADOW FROM BUNDLE IMAGES NOVEMBER 13, 2019 */
.related .product-img img[src*='bundle_'],
div.images .wp-post-image[src*='bundle_'],
.products .product img[src*='bundle_'],
.product-slider img[src*='bundle_'],
.product-search-image img[src*='bundle_'] {
  box-shadow: none !important;
}

/* END LUIS REMOVING BOX SHADOW FROM BUNDLE IMAGES NOVEMBER 13,2019 */
.blogs-section .blog-content .category,
.related.products .sc1d-meta,
.related.products .sc1d-title {
  display: none;
}
.related.products li {
  clear: none !important;
}
.related.products.featured-section ul li {
  width: 100%;
}

.ywraq_number_items {
  display: inline !important;
}

/* begin for product banners */
.ribbon {
  position: absolute;
  text-align: center;
  width: auto;
  padding: 1px 7px 0px 7px;
  font-size: 14px;
  font-family: 'CartoGothicPro', 'sans-serif';
}

.ribbon_product_page {
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  max-width: 220px;
}

.ribbon-blue {
  /*color: white;
    background: linear-gradient(to bottom, #ffffff 0%, #2357a3 100%)*/
  color: white;
  background: #3a56ca;
  border-radius: 7px;
}

.ribbon-red {
  /*color: white;
    background: linear-gradient(to bottom, #ffffff 0%, #b01824 100%)*/
  color: white;
  /*background: #B64400;*/
  background: #b00;
  border-radius: 7px;
}

.ribbon-green {
  color: white;
  background: #77a464;
  border-radius: 7px;
}

.product-image-wrapper {
  padding-top: 5px;
}

.entry-header {
  margin-left: auto;
  margin-right: auto;
}
/* end for product banners */

/* -------------- WEBINARS TABLE BEGINS ----------------- */

.tab {
  overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 15px 30px;
  font-size: 15px;
  transform: translateX(10px);
}

/* Change background color of buttons on hover */
.tab button:hover {
  text-decoration: underline;
}

/* Create an active/current tablink class */
.tab button.active {
  border: 1px solid #ccc;
  border-bottom: 1px solid #ffffff;
}
.tabcontent {
  display: none;
  border-top: 1px solid #ccc;
  margin-top: -1px;
  margin-bottom: 100px;
  border-bottom: 1px solid #ccc;
}
/* Header Divider */
.headerDivider {
  border-left: 1px solid #ddd;
  /*height: 50px;*/
  height: 66px;
  display: table-cell;
  pointer-events: none;
  float: left;
}
.headerDividerCell {
  display: table-cell;
  vertical-align: middle;
  /*padding-left: 30px;*/
}

.infoRow {
  /* adjusted to fix moving dividers
     width: 100%;*/
  width: 700px;
  height: 20px;
  display: table-cell;
  vertical-align: middle;
  padding: 20px;
  text-align: left;
  line-height: 26px;
}

.courseName {
  font-weight: bold;
  margin-bottom: 0px;
}

.courseType {
  font-size: 15px;
}

.courseType img {
  height: 10px;
  padding-right: 5px;
}
/*
 #Watch .alt_cls:nth-child(4n+3){
    background: #f8f8f9;
}
*/

#Watch .alt_cls:nth-child(2n + 0) {
  background: #f8f8f9;
}

#Register .alt_cls:nth-child(2n + 0) {
  background: #f8f8f9;
}

#main .tab {
  display: flex;
}

#main .tab .tablinks {
  background: #fff !important;
  color: #000 !important;
  margin-left: 20px;
  font-size: 16px !important;
  font-family: 'CartogothicPro', 'CartoGothicPro', 'sans-serif';
  border: 1px solid #f9a017;
  border-radius: 20px !important;
}

#main .tab .tablinks:hover {
  color: #fff !important;
  border-radius: 20px !important;
  font-size: 16px !important;
  font-family: 'CartogothicPro', 'CartoGothicPro', 'sans-serif';
  background-color: #fa8b52 !important;
}

#main .tab button.active {
  background: #f37734 !important;
  color: #fff !important;
  border-radius: 20px !important;
  font-size: 16px !important;
  font-weight: normal !important;
  font-family: 'CartogothicPro', 'CartoGothicPro', 'sans-serif';
}

.dateField {
  display: table-cell;
  vertical-align: middle;
  /*width: 18%;*/
  /*adjusted to fix moving dividers
	width: 23%;*/
  width: 250px;
}

.dateField p {
  font-size: 18px;
  text-align: left;
  padding-left: 25px;
}

.reg_watch_table_cell {
  display: table-cell;
  vertical-align: middle;
  /*adjusted to fix moving divider
 width:41px;*/
  width: 160px;
  /*padding-left:32.5px;*/
  /*padding-right: 30px;*/
}

/* WEBINARS TABLE ENDS */

/******************************* Gary's Banner *******************************/
#baseDiv {
  width: 100%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}

#left {
  height: 300px;
}

#rightDivContent {
  margin: 40px 0px 40px auto;
  padding: 50px;
  background-color: #fff;
}

@media (max-width: 575px) {
  #rightDivContent {
    margin: 0;
  }

  div#right.col-12.col-sm-7.col-md-5 {
    padding: 0;
    text-align: left;
  }
}
/******************************* Gary's Banner *******************************/

.select_fix {
  /* styling */
  background-color: white !important;
  border: thin solid black !important;
  border-radius: 4px !important;
  display: inline-block !important;
  font: inherit !important;
  line-height: 1.5em !important;
  padding: 0.5em 3.5em 0.5em 1em !important;

  /* reset */

  margin: 10px 10px 10px 10px !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}

/* arrows */

.select_fix.classic {
  background-image: linear-gradient(45deg, transparent 50%, #000 50%),
    linear-gradient(135deg, #000 50%, transparent 50%),
    linear-gradient(to right, #f37734, #f37734);
  background-position: calc(100% - 20px) calc(1em + 2px),
    calc(100% - 15px) calc(1em + 2px), 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat !important;
}

.select_fix.classic:focus {
  background-image: linear-gradient(45deg, white 50%, transparent 50%),
    linear-gradient(135deg, transparent 50%, white 50%),
    linear-gradient(to right, gray, gray);
  background-position: calc(100% - 15px) 1em, calc(100% - 20px) 1em, 100% 0;
  background-size: 5px 5px, 5px 5px, 2.5em 2.5em;
  background-repeat: no-repeat;
  border-color: grey;
  outline: 0;
}

.select_fix:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #000;
}

input[type='number']::-webkit-inner-spin-button {
  opacity: 1;
}

/***** Webinar Entries CSS *****/

.parentContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
}

@media (max-width: 770px) {
  .parentContainer {
    flex-direction: column;
  }

  #eventDesc {
    text-align: center !important;
  }
}

#date {
  flex-grow: 1;
  flex-basis: 20%;
  margin: 10px;
  padding: 10px;
  text-align: center;
  font-family: 'CartoGothicPro Light', 'CartoGothicPro', 'sans-serif';
}

#eventDesc {
  flex-grow: 1;
  flex-basis: 60%;
  margin: 10px;
  padding: 10px;
  text-align: left;
  font-family: 'CartoGothicPro', 'sans-serif';
}

#weburl {
  flex-grow: 1;
  flex-basis: 20%;
  margin: 10px;
  padding: 10px;
  text-align: center;
}

.bulletDot {
  font-size: 32px;
  line-height: 18px;
}

/***** Webinar Entries CSS End *****/

/***** Show More/Less Menu CSS *****/
.btnS {
  text-align: center;
  color: #000 !important;
  font-weight: bold;
  border: 0px;
  background-color: #fff !important;
  width: 100%;
  padding-top: 10px;
  /* margin: 10px; */
  cursor: pointer;
  text-decoration: underline;
}

.btnS:focus {
  background-color: #fff;
}
.btnS:hover {
  background-color: #fff;
}
.btnS.collapsed:after {
  content: ' More';
}
.btnS:after {
  content: ' Less';
}

/***** Show More/Less Menu CSS End *****/

/***** Accordion Menu CSS *****/

.accordion-body {
  padding: 0px !important;
}

.accordion-item {
  border: 0px !important;
}

.accordion-button {
  background-color: #fff !important;
  cursor: pointer;
}

.accordion-button:focus {
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: #000 !important;
  box-shadow: none !important;
}

/*
button:hover {
	color: #000 !important;
}

button:focus {
	color: #000 !important;
}

button.accordion-button::after {
	content: none;
}
*/

/***** Accordion Menu CSS End *****/

/**************** start gary css from his custom theme in dev ***/
******************************************
  L-R
  Banner
  CSS
  ******************************************/
  @media
  only
  screen
  and
  (max-width: 1000px) {
  #LRParent,
  #FCParent {
    flex-direction: column-reverse !important;
  }
}

.flexChild {
  margin: 10px;
  padding: 10px;
  flex-basis: 40%;
  text-align: left;
}
/****************************************** L-R Banner CSS End ******************************************/

/****************************************** Flip Card CSS - DO NOT TOUCH THESE CODES ******************************************/
.banner-child {
  margin: 10px;
}

/*
.flip-card {
	background-color: transparent;
	width: 300px;
  	height: 200px;
  	border: 1px solid #f1f1f1;
  	perspective: 1000px; /* Remove this if you don't want the 3D effect *
}
*/

.flip-card {
  margin: 10px;
}

/* This container is needed to position the front and back side */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

/* Position the front and back side */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-backface-visibility: hidden; /* Safari */
  backface-visibility: hidden;
}

/* Style the front side (fallback if image is missing) */
.flip-card-front {
  /*background-color: #bbb;*/
  transform: rotateX(0deg);
  color: black;
  padding: 10px;
}

/* Style the back side */
.flip-card-back {
  /*background-color: dodgerblue;*/
  color: black;
  transform: rotateY(180deg);
  padding: 10px;
}
/****************************************** Flip Card CSS End - DO NOT TOUCH THESE CODES ******************************************/

.imageCTA > img {
  max-width: 70% !important;
}

#dp-hero-banner-right {
  background-color: #fff;
  padding: 30px;
}

.hero-banner-css {
  margin: 0 !important;
  padding: 50px !important;
}

#leadership-hero-banner {
  padding: unset !important;
}

#leadership-banner-header > #leftHeader {
  font-size: 40px;
  color: #ffffff;
  text-shadow: 1px 2px 4px #00000069;
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 300px; */
  margin-bottom: unset !important;
}

.white-box {
  background-color: #fff;
  padding: 55px 35px 55px 35px;
}

.state-specialist-row-css {
  background-color: #f7f7f7;
}

#left-cta {
  margin-top: 50px;
  margin-right: 75px;
}

#right-cta {
  margin-top: 50px;
  margin-left: 75px;
}

#ts-special-banner {
  margin-top: 50px;
  padding: 200px;
}

#dp-special-banner,
#state-special-banner {
  margin-top: 100px;
  padding: 200px;
}

/* #dp-special-left-body > #leftHeader { 
	font-size: 20px; 
	margin: auto;
	line-height: 30px;
} */

#dp-special-left-body > #leftBody {
  text-align: left;
  margin: auto;
}

#ls-special-left-body > #leftHeader {
  font-size: 20px;
  text-align: left;
  line-height: 30px;
}

#ls-special-left-body > #leftBody {
  text-align: left;
}

#state-meet-specialist {
  margin-top: 50px;
}

/**************************************** GLOBAL CSS ****************************************/

.global-hero-banner-css {
  background-size: cover;
  background-position: center;
}

.global-parent-row-css {
  background-size: cover;
  background-position: center;
  margin-top: 100px;
  max-width: 1320px;
}

.global-child-row-css {
  text-align: center;
}

.global-left-css,
.global-right-css {
  text-align: center;
}

.global-left-header-css,
.global-right-header-css {
  color: #000;
  font-family: 'CartoGothic Pro', sans-serif;
  font-size: 40px;
  font-weight: bold;
  line-height: 50px;
}

.global-left-subheader-css {
}

.global-left-body-css,
.global-right-body-css {
  color: #000;
  font-family: 'CartoGothic Pro', sans-serif;
  font-size: 20px;
  line-height: 32px;
}

.global-right.css {
}
.global-right-subheader-css {
}

.global-left-align-text {
  text-align: left !important;
}

.flip-card-front {
  text-align: center;
  margin: auto;
  color: #fff;
  font-family: 'CartoGothicPro Bold', 'CartoGothicPro', 'sans-serif';
  font-size: 26px;
  font-weight: bold;
  background-color: #f27734;
  text-shadow: 1px 2px 4px #00000059;
}

.flip-card-back {
  text-align: center;
  margin: auto;
  color: #000;
  font-family: 'CartoGothicPro', sans-serif;
  font-size: 16px;
  font-weight: bold;
  background-color: #f5f5f5;
}

/**************************************** GLOBAL CSS END ****************************************/

.teacher-cta-css {
  margin: auto;
}

/***** cta button css  *****/
.ctaButton {
  display: inline-block;
  font-size: 16px;
  min-width: 13vw;
  border-radius: 20px;
  text-align: center;
  color: #fff;
  background-color: #f37734;
  padding: 0.8rem 2rem;
  text-decoration: none;
}

@media only screen and (max-width: 1200px) {
  .ctaButton {
    min-width: 70%;
  }
}
/**************** end gary css from his custom theme in dev ***/


/*** Digital Edict Style Improvements ***/

.helpButton {
  bottom: 12px !important;
}

.helpButtonEnabled.uiButton {
  display: flex !important;
  flex-direction: row-reverse !important;
  gap: 1em;

  max-width: 15em !important;
}

.highlight-orange {
  border-radius: 1em 0 1em 0;
  background-image: linear-gradient(
    -100deg,
    rgba(248, 158, 23, 0.2),
    rgba(248, 158, 23, 0.7) 95%,
    rgba(248, 158, 23, 0.1)
  );
}

.grade-container {
  display: flex;
}

.grade-badge {
  border: 2px solid rgba(0, 183, 185, 0.25);
  background: #00B7B9;
  color: #fff;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 15px;
}

.grade-badge:last-child {
  margin-right: 0;
}

.product-tabsubtitle {
    color: #ACACAC;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    display: inline-block;
}

.product-tabdetails {
    margin-top: 10px;
}

.bundle-lefttext {
  font-weight: 900;
}

.quote-body {
  font-size: 22px;
  line-height: 1.6;
  color: #000;
}

.quote-author {
  margin-top: 20px;
  line-height: 2.188;
  color: #00b7ba;
  font-weight: 700;
  font-size: 16px;
}

.quote-source {
  font-size: 14px;
  color: #818a90;
  font-weight: 400;
  font-style: italic;
}

.de.de_tabs.de_tabs__tabs {
    background-color: #ffffff;
    margin-left: -50vw; /* Move the nav element left by 50vw (viewport width) */
    margin-right: -50vw; /* Move the nav element right by 50vw (viewport width) */
    padding-left: 50vw; /* Add left padding equal to 50vw (viewport width) */
    padding-right: 50vw; /* Add right padding equal to 50vw (viewport width) */
  }

.single-post .rt-reading-time {
  margin-bottom: 12px;
}


body.cleanform {
  background-color: unset;
}

/* Remove form-light temporarily 
.cleanform .form-light form.form p label {
  color: white;
}

body.cleanform .form-light form.form input.text, body form.form select {
  background-color: white;
}
*/

body.cleanform .facetwp-sort select,
.tribe-bar-views-list,
.orderby,
.variations select,
.gfield_select,
select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  background: transparent;
  z-index: 0;
  background: transparent;
  cursor: pointer;
}

/* Try to fix form checkbox input */
body.cleanform form.form p.dependentField label{
  float: unset;
  display: unset;
  margin-left: 4px;
}
