/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
}

q,
blockquote {
    quotes: none;
}

q:before,
q:after,
blockquote:before,
blockquote:after {
    content: "";
    content: none;
}

a img {
    border: none;
}

.hidden-xs {
    display: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

fieldset {
    background-color: transparent;
    border: 0;
    margin: 0;
    padding: 0;
}

legend {
    font-weight: 600;
    margin-bottom: 0.375em;
    padding: 0;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.375em;
    font-size: 12px;
    text-transform: uppercase;
}

input,
select,
textarea {
    display: block;
    /* font-family: -apple-system, BlinkMacSystemFont, "Avenir Next", "Avenir", "Segoe UI", "Lucida Grande", "Helvetica Neue", "Helvetica", "Fira Sans", "Roboto", "Noto", "Droid Sans", "Cantarell", "Oxygen", "Ubuntu", "Franklin Gothic Medium", "Century Gothic", "Liberation Sans", sans-serif; */
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 14px;
}

textarea {
    min-height: 150px;
}

[type='color'],
[type='date'],
[type='datetime'],
[type='datetime-local'],
[type='email'],
[type='month'],
[type='number'],
[type='password'],
[type='search'],
[type='tel'],
[type='text'],
[type='time'],
[type='url'],
[type='week'],
input:not([type]),
textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-bottom: 0.75em;
    padding: 0.5em;
    -webkit-transition: border-color 150ms ease;
    transition: border-color 150ms ease;
    width: 100%;
}

[type='color']:hover,
[type='date']:hover,
[type='datetime']:hover,
[type='datetime-local']:hover,
[type='email']:hover,
[type='month']:hover,
[type='number']:hover,
[type='password']:hover,
[type='search']:hover,
[type='tel']:hover,
[type='text']:hover,
[type='time']:hover,
[type='url']:hover,
[type='week']:hover,
input:not([type]):hover,
textarea:hover {
    border-color: #b1b1b1;
}

[type='color']:focus,
[type='date']:focus,
[type='datetime']:focus,
[type='datetime-local']:focus,
[type='email']:focus,
[type='month']:focus,
[type='number']:focus,
[type='password']:focus,
[type='search']:focus,
[type='tel']:focus,
[type='text']:focus,
[type='time']:focus,
[type='url']:focus,
[type='week']:focus,
input:not([type]):focus,
textarea:focus {
    border-color: #0055DB;
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 85, 219, 0.7);
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 5px rgba(0, 85, 219, 0.7);
    outline: none;
}

[type='color']:disabled,
[type='date']:disabled,
[type='datetime']:disabled,
[type='datetime-local']:disabled,
[type='email']:disabled,
[type='month']:disabled,
[type='number']:disabled,
[type='password']:disabled,
[type='search']:disabled,
[type='tel']:disabled,
[type='text']:disabled,
[type='time']:disabled,
[type='url']:disabled,
[type='week']:disabled,
input:not([type]):disabled,
textarea:disabled {
    background-color: #f2f2f2;
    cursor: not-allowed;
}

[type='color']:disabled:hover,
[type='date']:disabled:hover,
[type='datetime']:disabled:hover,
[type='datetime-local']:disabled:hover,
[type='email']:disabled:hover,
[type='month']:disabled:hover,
[type='number']:disabled:hover,
[type='password']:disabled:hover,
[type='search']:disabled:hover,
[type='tel']:disabled:hover,
[type='text']:disabled:hover,
[type='time']:disabled:hover,
[type='url']:disabled:hover,
[type='week']:disabled:hover,
input:not([type]):disabled:hover,
textarea:disabled:hover {
    border: 1px solid #ddd;
}

[type='color']::-webkit-input-placeholder,
[type='date']::-webkit-input-placeholder,
[type='datetime']::-webkit-input-placeholder,
[type='datetime-local']::-webkit-input-placeholder,
[type='email']::-webkit-input-placeholder,
[type='month']::-webkit-input-placeholder,
[type='number']::-webkit-input-placeholder,
[type='password']::-webkit-input-placeholder,
[type='search']::-webkit-input-placeholder,
[type='tel']::-webkit-input-placeholder,
[type='text']::-webkit-input-placeholder,
[type='time']::-webkit-input-placeholder,
[type='url']::-webkit-input-placeholder,
[type='week']::-webkit-input-placeholder,
input:not([type])::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #b5b5b5;
}

[type='color']:-ms-input-placeholder,
[type='date']:-ms-input-placeholder,
[type='datetime']:-ms-input-placeholder,
[type='datetime-local']:-ms-input-placeholder,
[type='email']:-ms-input-placeholder,
[type='month']:-ms-input-placeholder,
[type='number']:-ms-input-placeholder,
[type='password']:-ms-input-placeholder,
[type='search']:-ms-input-placeholder,
[type='tel']:-ms-input-placeholder,
[type='text']:-ms-input-placeholder,
[type='time']:-ms-input-placeholder,
[type='url']:-ms-input-placeholder,
[type='week']:-ms-input-placeholder,
input:not([type]):-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #b5b5b5;
}

[type='color']::-ms-input-placeholder,
[type='date']::-ms-input-placeholder,
[type='datetime']::-ms-input-placeholder,
[type='datetime-local']::-ms-input-placeholder,
[type='email']::-ms-input-placeholder,
[type='month']::-ms-input-placeholder,
[type='number']::-ms-input-placeholder,
[type='password']::-ms-input-placeholder,
[type='search']::-ms-input-placeholder,
[type='tel']::-ms-input-placeholder,
[type='text']::-ms-input-placeholder,
[type='time']::-ms-input-placeholder,
[type='url']::-ms-input-placeholder,
[type='week']::-ms-input-placeholder,
input:not([type])::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    color: #b5b5b5;
}

[type='color']::placeholder,
[type='date']::placeholder,
[type='datetime']::placeholder,
[type='datetime-local']::placeholder,
[type='email']::placeholder,
[type='month']::placeholder,
[type='number']::placeholder,
[type='password']::placeholder,
[type='search']::placeholder,
[type='tel']::placeholder,
[type='text']::placeholder,
[type='time']::placeholder,
[type='url']::placeholder,
[type='week']::placeholder,
input:not([type])::placeholder,
textarea::placeholder {
    color: #b5b5b5;
}

textarea {
    resize: vertical;
    border-radius: 6px;
}

[type="checkbox"],
[type="radio"] {
    display: inline;
    margin-right: 0.375em;
}

[type="file"] {
    margin-bottom: 0.75em;
    width: 100%;
}

select {
    margin-bottom: 0.75em;
    width: 100%;
}

[type="checkbox"]:focus,
[type="radio"]:focus,
[type="file"]:focus,
select:focus {
    outline: none;
}

.select {
    position: relative;
}

select {
    /*display: inline-block;*/
    width: 100%;
    cursor: pointer;
    padding: 8px 15px;
    outline: 0;
    border: 1px solid #dedede;
    border-radius: 0;
    background: #fff;
    color: #838383;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select::-ms-expand {
    display: none;
}

select:hover,
select:focus {
    color: #000;
    background: #ccc;
}

select:disabled {
    opacity: 0.5;
    pointer-events: none;
}

.select__arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #838383 transparent transparent transparent;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

html,
body {
    height: 100%;
    font-family: 'Source Sans Pro', sans-serif;
}

body {
    margin: 0;
}

ul,
ol {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

dl {
    margin: 0;
}

dt {
    font-weight: 600;
    margin: 0;
}

dd {
    margin: 0;
}

figure {
    margin: 0;
}

img,
picture {
    margin: 0;
    max-width: 100%;
}

strong {
    font-weight: bolder;
}

/*
 *  Remodal - v1.0.3
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  https://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
    overflow: hidden;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
    display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;
    display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow: auto;
    text-align: center;
    -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
    display: inline-block;
    height: 100%;
    margin-left: -0.05em;
    content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
    position: relative;
    outline: none;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.remodal-is-initialized {
    /* Disable Anti-FOUC */
    display: inline-block;
}

/*
 *  Remodal - v1.0.3
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  https://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
    -webkit-filter: blur(3px);
    filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
    background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
    -webkit-animation: remodal-overlay-opening-keyframes 0.3s;
    animation: remodal-overlay-opening-keyframes 0.3s;
}

.remodal-overlay.remodal-is-closing {
    -webkit-animation: remodal-overlay-closing-keyframes 0.3s;
    animation: remodal-overlay-closing-keyframes 0.3s;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
    padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    padding: 35px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    color: #2b2e38;
    background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
    -webkit-animation: remodal-opening-keyframes 0.3s;
    animation: remodal-opening-keyframes 0.3s;
}

.remodal.remodal-is-closing {
    -webkit-animation: remodal-closing-keyframes 0.3s;
    animation: remodal-closing-keyframes 0.3s;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
    vertical-align: middle;
}

/* Close button */

.remodal-close {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: visible;
    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    text-decoration: none;
    color: #95979c;
    border: 0;
    outline: 0;
    background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
    color: #2b2e38;
}

.remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 25px;
    line-height: 35px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    content: "\00d7";
    text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
    font: inherit;
    display: inline-block;
    overflow: visible;
    min-width: 110px;
    margin: 0;
    padding: 12px 0;
    cursor: pointer;
    -webkit-transition: background 0.2s;
    transition: background 0.2s;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    border: 0;
    outline: 0;
}

.remodal-confirm {
    color: #fff;
    background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
    background: #66bb6a;
}

.remodal-cancel {
    color: #fff;
    background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
    background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
    padding: 0;
    border: 0;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);
        opacity: 0;
    }
    to {
        -webkit-transform: none;
        transform: none;
        opacity: 1;
    }
}

@-webkit-keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
    }
}

@keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);
        opacity: 0;
    }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
    .remodal {
        max-width: 700px;
    }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
    background: #2b2e38;
}

.lt-ie9 .remodal {
    width: 700px;
}

/*=================================
=            Variables            =
=================================*/

/* Mixins */

/*=============================================
=            REUSABLE CLASSES            =
=============================================*/

.flex {
    display: flex;
}

@media (min-width: 768px) {
    .flex-md {
        display: flex;
    }
    .hidden-xs {
        display: block;
    }
    .visible-xs {
        display: none;
    }
}

@media (min-width: 1024px) {
    .flex-lrg {
        display: flex;
    }
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.align-center {
    align-items: center;
}

.margin-top--small {
    margin-top: 10px;
}

.margin-bottom--small,
.shipping-wrap .cart-shipping-wrapper.cart-header {
    margin-bottom: 10px;
}

.margin-top--medium {
    margin-top: 25px;
}

.margin-bottom--medium {
    margin-bottom: 25px;
}

.margin-top--large {
    margin-top: 40px;
}

.margin-bottom--large {
    margin-bottom: 40px;
}

/*=====  End of REUSABLE CLASSES  ======*/

/*=====  End of Variables  ======*/

/*========================================
=            Accordion Styles            =
========================================*/

/* line 6, ../sass/_accordions.scss */

.accordion-wrapper {
    padding: 25px 0;
}

.accordion-wrapper .accordion {
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
    background: #ffffff;
    margin-bottom: 20px;
}

.accordion-wrapper .accordion:last-of-type {
    border-bottom: none;
}

.accordion-wrapper .accordion .accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
}

.accordion-wrapper .accordion .accordion-header img {
    height: 20px;
    width: 20px;
    transform: rotate(0deg);
    transition: all, 0.55s;
    flex: 0 0;
}

.accordion-wrapper .accordion .accordion-header img.rotate {
    transform: rotate(45deg);
}

.accordion-wrapper .accordion .accordion-header h3.course-title {
    margin-top: 0px;
    flex: 1 0;
    letter-spacing: 1px;
}

.accordion-wrapper .accordion .accordion-header h3.course-title span {
    font-weight: 700;
    color: #3F6EA5;
}

.accordion-wrapper .accordion .accordion-insides {
    max-height: 0px;
    overflow: hidden;
    transition: all, 0.35s;
}

.accordion-wrapper .accordion .accordion-insides h4+p {
    margin-top: 10px;
}

.accordion-wrapper .accordion .accordion-insides.open {
    max-height: 3000px;
}

.accordion-wrapper .accordion .accordion-insides.open .inside-right {
    font-size: 14px;
    line-height: 22px;
    font-family: 'Source Sans Pro', sans-serif;
}

.accordion-insides .inside-left img,
.accordion-insides .inside-right img {
    display: none;
}

.accordion-insides .inside-left p,
.accordion-insides .inside-right p {
    font-size: 14px;
    line-height: 22px;
}

.accordion-insides .inside-left p+p,
.accordion-insides .inside-right p+p {
    margin-top: 10px;
}

.accordion-insides .inside-left table,
.accordion-insides .inside-right table {
    width: 100% !important;
    height: 100% !important;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
}

.accordion-insides .inside-left table tbody tr+tr,
.accordion-insides .inside-right table tbody tr+tr {
    padding-top: 10px;
}

.accordion-insides .inside-left table .tdHeadSuper,
.accordion-insides .inside-right table .tdHeadSuper {
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px;
    background-color: #3F6EA5;
    color: #ffffff;
}

.accordion-insides .inside-left table .tdHead,
.accordion-insides .inside-right table .tdHead {
    font-weight: 700;
    font-size: 14px;
    vertical-align: top !important;
    padding-bottom: 10px;
    padding-top: 15px;
}

.accordion-insides .inside-left table .tdHead:first-of-type,
.accordion-insides .inside-right table .tdHead:first-of-type {
    width: 100px;
}

.accordion-insides .inside-left table .tdNormal,
.accordion-insides .inside-left table .tdAlt,
.accordion-insides .inside-right table .tdNormal,
.accordion-insides .inside-right table .tdAlt {
    vertical-align: top !important;
    padding-bottom: 10px;
}

.accordion-insides .inside-left table .tdNormal strong,
.accordion-insides .inside-left table .tdAlt strong,
.accordion-insides .inside-right table .tdNormal strong,
.accordion-insides .inside-right table .tdAlt strong {
    font-weight: 700;
    display: block;
    padding-bottom: 4px;
    text-transform: uppercase;
}

.accordion-insides br {
    display: none;
}

.coursePrice {
    text-align: left;
    font-size: 14px;
}

@media (min-width: 768px) {
    .coursePrice {
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
}

.coursePrice+.coursePrice {
    margin-top: 15px;
    border-top: 1px solid #dedede;
    padding-top: 15px;
}

.cp-price {
    flex: 0 0 10%;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .cp-price {
        margin-bottom: 0;
    }
}

.cp-name {
    flex: 1 0 auto;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .cp-name {
        margin-bottom: 0;
    }
}

.cp-purchase {
    flex: 0 0 10%;
}

/*=====  End of Accordion Styles  ======*/

/*================================
=            Products            =
================================*/

.product-grid {
    display: grid;
    grid-gap: 25px;
    margin: 50px auto;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media (min-width: 1400px) {
    .product-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

.product-card {
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);*/
    transition: all .3s;
}

.product-card:hover {
    /*box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);*/
}

.product-image-wrapper {
    text-align: center;
}

.content-wrapper.products-section-wrapper {
    /*margin-top: 40px;
    margin-bottom: 20px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-img {
    max-height: 150px;
    height: 150px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .product-info-wrapper {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
    }
}

.product-name-wrapper {
    font-size: 15px;
    line-height: 20px;
    flex: 0 0 75%;
    /*margin-top: 10px;*/
    /*margin-bottom: 10px;*/
    /*padding: 0 15px; */
}

.product-price-wrapper {
    /*display: flex;
  justify-content: space-between;
  align-items: center;*/
    /*padding: 0 15px 20px; */
}

.product-price-wrapper h4 {
    font-size: 16px;
}

.main-price.onSale {
    text-decoration: line-through;
}

.sale-price {
    color: #cc0000;
    margin-top: 8px;
}

.goBack {
    margin-bottom: 40px;
}

.product-single-wrapper {
    margin: 25px auto !important;
}

@media (min-width: 768px) {
    .product-single-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 25px;
        margin: 50px auto !important;
    }
}

.product-single-name {
    margin-bottom: 40px;
}

.product-single-cat {
    font-size: 16px;
    text-transform: uppercase;
    color: #3F6EA5;
}

.product-single-image {
    text-align: center;
}

.product-single-image img {
    max-width: 100%;
    width: 250px;
}

.product-single-description {
    font-size: 16px;
    line-height: 24px;
}

.product-single-price-wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
}

/*=====  End of Products  ======*/

/*=====================================
=            Shopping Cart            =
=====================================*/

/* @media (min-width: 1024px) {
    .cart-product-wrapper,
    .cart-course-wrapper,
    .cart-special-wrapper,
    .cart-shipping-wrapper,
    .cart-total-wrapper {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(12, 7.33%);
        grid-gap: 25px;
    }
} */

.cart-product-wrapper+.cart-course-wrapper {
    margin-top: 50px;
}

.cart-course-wrapper+.cart-special-wrapper,
.cart-special-wrapper+.cart-shipping-wrapper {
    margin-top: 50px;
}

.cart-product-wrapper .product-quantity {
    grid-column-start: 1;
    grid-column-end: 2;
}

.cart-product-wrapper .product-quantity:before {
    content: "QTY:";
    display: inline-block;
    margin-right: 10px;
    width: 100px;
    text-align: right;
}

@media (min-width: 1024px) {
    .cart-product-wrapper .product-quantity:before {
        content: "";
    }
}

.cart-product-wrapper .cartProductInput {
    display: inline-block;
    width: 85%;
}

@media (min-width: 1024px) {
    .cart-product-wrapper .cartProductInput {
        display: block;
        width: 100%;
    }
}

.cart-product-wrapper .product-title {
    grid-column-start: 2;
    grid-column-end: 7;
}

.cart-product-wrapper .product-title:before {
    content: "Product:";
    display: inline-block;
    margin-right: 10px;
    width: 100px;
    text-align: right;
}

.cart-product-wrapper .product-title h3 {
    display: inline-block;
}

@media (min-width: 1024px) {
    .cart-product-wrapper .product-title h3 {
        display: block;
    }
}

@media (min-width: 1024px) {
    .cart-product-wrapper .product-title:before {
        content: "";
    }
}

.cart-product-wrapper .product-price {
    grid-column-start: 7;
    grid-column-end: 9;
}

.cart-product-wrapper .product-price:before {
    content: "Price:";
    display: inline-block;
    margin-right: 10px;
    width: 100px;
    text-align: right;
}

.cart-product-wrapper .product-price h3 {
    display: inline-block;
}

@media (min-width: 1024px) {
    .cart-product-wrapper .product-price h3 {
        display: block;
    }
}

@media (min-width: 1024px) {
    .cart-product-wrapper .product-price:before {
        content: "";
    }
}

.cart-product-wrapper .product-subtotal {
    grid-column-start: 9;
    grid-column-end: 11;
}

.cart-product-wrapper .product-subtotal:before {
    content: "Subtotal:";
    display: inline-block;
    margin-right: 10px;
    width: 100px;
    text-align: right;
}

.cart-product-wrapper .product-subtotal h3 {
    display: inline-block;
}

@media (min-width: 1024px) {
    .cart-product-wrapper .product-subtotal h3 {
        display: block;
    }
}

@media (min-width: 1024px) {
    .cart-product-wrapper .product-subtotal:before {
        content: "";
    }
}

.cart-product-wrapper .product-remove {
    grid-column-start: 11;
    grid-column-end: 12;
}

.cart-course-wrapper .course-title {
    grid-column-start: 1;
    grid-column-end: 7;
}

.cart-course-wrapper .course-price {
    grid-column-start: 9;
    grid-column-end: 11;
}

.cart-course-wrapper .course-date {
    grid-column-start: 7;
    grid-column-end: 9;
}

.cart-course-wrapper .course-remove {
    grid-column-start: 11;
    grid-column-end: 12;
}

.cart-special-wrapper .special-title {
    grid-column-start: 1;
    grid-column-end: 9;
}

.cart-special-wrapper .special-price {
    grid-column-start: 9;
    grid-column-end: 11;
}

.cart-special-wrapper .special-remove {
    grid-column-start: 11;
    grid-column-end: 12;
}

.cart-shipping-wrapper .shipping-title {
    grid-column-start: 1;
    grid-column-end: 9;
}

.cart-shipping-wrapper .shipping-price {
    grid-column-start: 9;
    grid-column-end: 11;
}

.cart-shipping-wrapper .shipping-remove {
    grid-column-start: 11;
    grid-column-end: 12;
}

.cart-total-wrapper {
    margin-top: 25px;
    font-weight: 900;
}

.cart-total-wrapper h3 {
    grid-column-start: 9;
    grid-column-end: 11;
}

.cart-header {
    display: none;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .cart-header {
        display: grid;
    }
}

.cart-product-wrapper+.cart-product-wrapper,
.cart-course-wrapper+.cart-course-wrapper,
.cart-special-wrapper+.cart-special-wrapper {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dedede;
}

.shipping-wrapper {
    padding: 12px 0;
}

.shipping-row {
    display: inline-block;
}

.shipping-wrapper .field-group {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 10px;
}

.shipping-wrapper .field-group label {
    margin: 0;
}

.total-wrapper {
    grid-column-start: 9;
    grid-column-end: 11;
}

.total-wrapper h3 {
    font-weight: 900;
}

.checkout-btn-wrapper {
    grid-column-start: 11;
    grid-column-end: 12;
}



/*=====  End of Shopping Cart  ======*/

/*================================
=            Checkout            =
================================*/

.shipping-wrap {
    margin-top: 25px;
}

@media (min-width: 768px) {
    .form-fields.g02 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 25px;
    }
}

@media (min-width: 768px) {
    .form-fields.g03 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 25px;
    }
}

.form-wrapper #checkoutForm {
    margin-bottom: 40px;
}

.billing-info-wrapper {
    border-top: 1px solid #dedede;
    margin-top: 25px;
    margin-bottom: 40px;
    padding-top: 25px;
}

.billing-info-wrapper h2 {
    color: #3F6EA5;
    margin-bottom: 20px;
}

/*=====  End of Checkout  ======*/

/*===============================================
=            Additional Modal Styles            =
===============================================*/

.register-modal section {
    justify-content: space-around;
    align-items: flex-start;
}

.register-modal section .img-wrapper {
    flex: 0 0 33.3333%;
}

.register-modal section .modal-text-wrapper {
    text-align: left;
    flex: 0 0 66.66666%;
}

.register-modal section .modal-text-wrapper p,
.register-modal section .modal-text-wrapper ul,
.register-modal section .modal-text-wrapper li {
    padding-left: 25px;
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.25rem;
}

.register-modal section .modal-text-wrapper .info-date {
    color: #3F6EA5;
    padding-bottom: 20px;
}

.register-modal section .modal-text-wrapper .info-title {
    color: #3F6EA5;
    font-size: 1.5rem;
    line-height: 1.75rem;
    margin-bottom: 15px;
}

.register-modal section .modal-text-wrapper .info-location {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.register-modal section .modal-text-wrapper #trainingLevel {
    display: block;
    width: 75%;
    margin-left: 25px;
    margin-bottom: 15px;
}

.register-modal section .modal-text-wrapper .form-group {
    padding-left: 25px;
    margin-bottom: 20px;
}

.register-modal section .modal-text-wrapper .checkout {
    margin-left: 25px;
}

.register-modal section+section {
    border: 2px solid #3F6EA5;
    margin-top: 25px;
    padding-top: 25px;
    text-align: left;
    padding: 10px 10px 5px 10px;
}

.register-modal section+section p {
    color: #3F6EA5;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
}

.register-modal section+section li {
    padding: 10px 0;
    border-bottom: 1px solid #dedede;
}

.register-modal section+section li:last-of-type {
    border-bottom: none;
}

@media (min-width: 1024px) {
    .register-modal section+section .offer-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.info-modal {
    font-family: 'Source Sans Pro', sans-serif;
    text-align: left;
}

/*=====  End of Additional Modal Styles  ======*/

/*==================================
=            TYPOGRAPHY            =
==================================*/

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
ul,
li,
ol,
em,
strong,
label {
    font-family: 'Source Sans Pro', sans-serif;
}

h1 {
    font-size: 30px;
    line-height: 40px;
    font-weight: 300;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 64px;
        line-height: 106px;
    }
}

h2 {
    font-size: 30px;
    line-height: 42px;
}

h4 {
    font-size: 16px;
}

@media (min-width: 1024px) {
    h4 {
        font-size: 20px;
    }
}

.body {
    font-size: 14px;
    line-height: 20px;
}

@media (min-width: 1024px) {
    .body {
        font-size: 16px;
        line-height: 24px;
    }
}

.body+.body {
    margin-top: 25px;
}

h2+.body {
    margin-top: 25px;
}

.body-large {
    font-size: 16px;
    line-height: 22px;
}

@media (min-width: 1024px) {
    .body-large {
        font-size: 19px;
        line-height: 30px;
        color: #3F3F3F;
    }
}

/*=====  End of TYPOGRAPHY  ======*/

/*===============================
=            BUTTONS            =
===============================*/

/*=====  End of BUTTONS  ======*/

img {
    max-width: 100%;
    width: 100%;
}

.content-wrapper {
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .content-wrapper {
        width: 98%;
    }
}

@media (min-width: 1400px) {
    .content-wrapper {
        width: 1440px;
    }
}

/*=======================================
=            Utility Classes            =
=======================================*/

.pad-left {
    padding-left: 0;
}

@media (min-width: 1024px) {
    .pad-left {
        padding-left: 50px;
    }
}

@media (min-width: 1024px) {
    .margin-left {
        margin-left: 50px;
    }
}

/*=====  End of Utility Classes  ======*/

html {
    background: #efefef;
}

/*====================================
=            HEADER & NAV            =
====================================*/

header ul {
    float: none;
}

@media (min-width: 768px) {
    .main-header .logo {
        max-width: 500px;
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .main-header .logo {
        width: 25%;
        max-width: auto;
        text-align: left;
        flex: 0 0 25%;
        padding-left: 20px;
        margin: 0;
    }
}

.main-header nav {
    display: none;
}

@media (min-width: 1024px) {
    .main-header nav {
        display: block;
        padding-right: 40px;
    }
}

.main-header nav ul li {
    display: inline-block;
}

.main-header nav ul {
    margin-top: 20px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .main-header nav ul {
        margin-top: 0px;
        /* flex-direction: row; */
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .main-header nav ul li {
        flex: 0 1 14%;
        text-align: center;
        padding: 0 7px;
    }
}

@media (min-width: 1400px) {
    .main-header nav ul li {
        text-align: left;
        flex: 0 0 auto;
        padding: 0 17px;
    }
}

.main-header nav ul a {
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    color: #3F3F3F;
    font-weight: 600;
    transform: color, .2s;
    font-size: 14px;
    display: block;
}

@media (min-width: 768px) {
    .main-header nav ul a {
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    .main-header nav ul a {
        font-size: 12px;
    }
}

@media (min-width: 1400px) {
    .main-header nav ul a {
        font-size: 14px;
    }
}

.main-header nav ul a:hover {
    color: #3F6EA5;
}

.main-header nav ul li+li {
    margin-top: 10px;
}

@media (min-width: 1024px) {
    .main-header nav ul li+li {
        margin-top: 0px;
    }
}

.main-header .sign-up {
    display: none;
}

@media (min-width: 1024px) {
    .main-header .sign-up {
        display: block;
    }
}

#hamburgler {
    border: none;
    position: absolute;
    right: 15px;
    top: 30px;
    cursor: pointer;
    background: none;
}

@media (min-width: 1024px) {
    #hamburgler {
        display: none;
    }
}

#hamburgler i {
    font-size: 28px;
}

#mobile-nav {
    display: block;
    transform: translateY(1px);
    max-height: 1px;
    overflow: hidden;
    transition: all .3s;
}

@media (min-width: 1024px) {
    #mobile-nav {
        display: none;
    }
}

#mobile-nav.open {
    max-height: 500px;
}

/*==============================
=            FOOTER            =
==============================*/

.f-top {
    background: #3F6EA5;
    padding: 15px;
}

.f-top .content-wrapper {
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .f-top .content-wrapper {
        display: flex;
    }
}

.f-top .content-wrapper h4 {
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

@media (min-width: 1024px) {
    .f-top .content-wrapper h4 {
        margin-bottom: 0px;
    }
}

.f-top .content-wrapper input {
    background: none;
    border: 1px solid #fff;
    width: 250px;
}

@media (min-width: 1024px) {
    .f-top .content-wrapper input {
        margin-right: -4px;
    }
}

.f-top .content-wrapper input::placeholder {
    color: #fff;
}

.f-top .content-wrapper button {
    margin-top: 8px;
}

@media (min-width: 1024px) {
    .f-top .content-wrapper button {
        margin-top: 0px;
    }
}

footer img {
    max-width: none;
    width: auto;
}

.f-bottom section {
    padding-top: 25px;
}

.f-bottom {
    padding: 15px;
}

@media (min-width: 725px) {
    .f-bottom {
        padding: 0;
        display: grid;
        grid-template-columns: 2fr 2fr 1fr;
        grid-gap: 50px;
        margin: 35px 0;
    }
    .f-bottom section {
        padding-top: 0;
    }
    .footer-nav {
        column-count: 2;
    }
}

footer .f-bottom section ul.footer-nav li a {
    font-size: 13px;
    line-height: 31px;
}

.f-bottom p {
    font-size: 14px;
    color: #fff;
}

.footer-logo-wrapper p {
    margin-top: 15px;
}

.footer-social-wrapper p {
    font-size: 14px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 15px;
}

.footer-social-wrapper ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-social-wrapper ul img {
    width: 25px;
    margin-right: 10px;
}

/*=====  End of FOOTER  ======*/

/*=====================================
=            FORM ELEMENTS            =
=====================================*/

input {
    padding: 7px 10px;
}

/*=====  End of FORM ELEMENTS  ======*/

/*==============================
=            Events            =
==============================*/

.event-wrapper {
    width: 100%;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .event-wrapper {
        max-width: 90%;
        display: flex;
        align-items: stretch;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .event-container {
        display: flex;
        flex: 0 0 30%;
        position: relative;
    }
}

@media (min-width: 1024px) {
    .event-img {
        flex: 0 0 33.333%;
        padding-right: 15px;
    }
}

.event-info {
    flex: 0 0 60%;
}

.event-date {
    color: #3F6EA5;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 5px;
}

.event-title {
    color: #3F6EA5;
    font-weight: 400;
    font-size: 21px;
    line-height: 27px;
}

.event-location {
    color: #3F3F3F;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
}

.event-register {
    background: #3F6EA5;
    color: #fff;
    display: inline-block;
    padding: 15px;
    margin-top: 10px;
    text-decoration: none;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .event-register {
        display: inline;
        margin-top: 0px;
        position: absolute;
        padding: 0;
        top: 0%;
        right: 1px;
        text-align: center;
        background: none;
        transform-origin: 150% 150%;
        transform: rotate(-90deg);
        font-size: 13px;
    }
}

.event-closed {
    right: 22px !important;
    top: -29px !important;
}

/*=====  End of Events  ======*/

#home-about {
    background: #fff;
}

@media (min-width: 1024px) {
    #home-about {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
    }
}

#home-about .img {
    flex: 0 0 30%;
}

#home-about .section-info {
    flex: 0 0 65%;
}

#home-about .section-info p {
    padding: 10px;
}

@media (min-width: 1024px) {
    #home-about .section-info p {
        padding: 0;
        padding-left: 50px;
    }
}

#home-about .btn {
    margin-left: 10px;
    margin-top: 25px;
    margin-bottom: 25px;
}

@media (min-width: 1024px) {
    #home-about .btn {
        margin-left: 50px;
    }
}

h2.section-title {
    background: #3F6EA5;
    color: #fff;
    text-transform: uppercase;
    padding: 8px;
    display: inline-block;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 0px;
    margin-bottom: 15px;
}

@media (min-width: 1024px) {
    h2.section-title {
        padding: 8px 30px 8px 50px;
        font-size: 30px;
        margin-top: 75px;
        margin-bottom: 40px;
    }
}

/*==================================
=            ABOUT PAGE            =
==================================*/

.about-nav,
.info-nav {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    background: #fff;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

@media (min-width: 1024px) {
    .about-nav,
    .info-nav {
        margin: -40px auto 45px;
    }
}

@media (min-width: 768px) {
    .about-nav ul,
    .info-nav ul {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
    }
}

.about-nav ul li {
    text-align: center;
    padding: 25px;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .about-nav ul li {
        display: inline-block;
        width: 20%;
        float: none;
    }
}

.info-nav ul li {
    text-align: center;
    padding: 25px;
    text-transform: uppercase;
}

@media (min-width: 1024px) {
    .info-nav ul li {
        flex: 0 0 25%;
        float: none;
    }
}

@media (min-width: 1024px) {
    .about-wrapper,
    .info-wrapper {
        margin-top: -70px;
        padding-top: 70px;
    }
}

.about-nav .current,
.info-nav .current {
    background: #ccc;
}

.tab-content {
    display: none;
    padding: 15px;
}

.tab-content.current {
    display: inherit;
}

.tabs-header {
    margin-bottom: 50px;
}

.tabs-header ul {
    display: flex;
    position: relative;
    z-index: 12;
    text-transform: uppercase;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.tabs-header ul li {
    text-align: center;
    border-left: 1px solid #9D9D9D;
    background: #efefef;
    padding: 40px 0px;
    flex: 0 0 20%;
    width: 100%;
    cursor: pointer;
    transition: all .2s;
}

.tabs-header ul li:first-of-type {
    border-left: none;
}

.tabs-header ul li:hover {
    background: #9D9D9D;
}

.tabs-header ul li:hover a {
    color: #fff;
}

.tabs-header ul a {
    font-size: 18px;
    text-decoration: none;
    color: #9D9D9D;
    transition: color .2s;
}

.tabs-wrapper {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 50px;
}

.tabs-wrapper h2 {
    color: #3F6EA5;
    text-transform: uppercase;
}

.person-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

@media (min-width: 1024px) {
    .person-wrapper {
        flex-wrap: nowrap;
    }
}

@media (min-width: 768px) {
    .person-wrapper .person-block {
        flex: 0 0 47%;
    }
}

@media (min-width: 1024px) {
    .person-wrapper .person-block {
        flex: 0 0 25%;
    }
}

.person-wrapper .person-block .block-wrapper {
    background: #dedede;
    padding: 10px;
    min-height: 330px;
}

.cc-section1,
.online-section1 {
    display: flex;
    align-items: flex-end;
}

.cc-section1 .section-title,
.online-section1 .section-title {
    margin-bottom: 25px;
}

.cc-section2 img {
    width: auto;
}

.online-info {
    background: #dedede;
    padding: 40px;
}

.online-info p.body {
    flex: 0 0 75%;
    margin-bottom: 25px;
}

@media (min-width: 1024px) {
    .online-info p.body {
        margin-bottom: 0;
        padding-right: 25px;
    }
}

.class-info h4 {
    color: #3F6EA5;
    font-weight: 700;
    padding-bottom: 15px;
}

/*========================================
=            COURSE INFO PAGE            =
========================================*/

@media (min-width: 1024px) {
    #course-calendar {
        display: flex;
        align-items: flex-start;
    }
}

#course-calendar .course-list {
    flex: 0 0 70%;
    border-left: 1px solid #cbcbcb;
    padding-left: 10px;
}

#course-calendar .course-types {
    flex: 0 0 30%;
}

#course-calendar .course-types .course-types--wrapper {
    background: #dedede;
    padding: 35px;
}

#course-calendar .course-types h3 {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    margin-bottom: 10px;
}

#course-calendar .course-types li {
    font-size: 14px;
    line-height: 26px;
}

.course-list {
    margin: 25px 0;
}

.course-list-head {
    display: none;
}

@media (min-width: 1024px) {
    .course-list-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid #cbcbcb;
    }
}

.course-list-head .course-title {
    flex: 0 0 20%;
}

.course-list-head .course-title:nth-child(3) {
    padding-left: 40px;
}

.course-list-head .course-title p {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.5rem;
}

.course-list-column+.course-list-column {
    margin-top: 10px;
}

@media (min-width: 725px) {
    .course-list-column+.course-list-column {
        margin-top: 0px;
    }
}

.course {
    border-bottom: 1px solid #cbcbcb;
    padding: 10px 0;
    margin-bottom: 10px;
}

.course-list-type {
    font-weight: bold;
}

@media (min-width: 725px) {
    .course {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }
    .course-list-type {
        padding-left: 40px;
    }
}

.course .course-list-column {
    flex: 0 0 20%;
}

.course .course-list-column a {
    text-decoration: none;
    color: #000;
    cursor: pointer;
}

.course .course-list-column a:hover {
    text-decoration: none;
}

.course .course-list-column .course-list-location:before {
    content: "Location: ";
    font-weight: 700;
}

@media (min-width: 725px) {
    .course .course-list-column .course-list-location:before {
        display: block;
    }
}

@media (min-width: 1024px) {
    .course .course-list-column .course-list-location:before {
        content: "";
    }
}

.course .course-list-column .course-list-date:before {
    content: "Date: ";
    font-weight: 700;
}

@media (min-width: 725px) {
    .course .course-list-column .course-list-date:before {
        display: block;
    }
}

@media (min-width: 1024px) {
    .course .course-list-column .course-list-date:before {
        content: "";
    }
}

.course .course-list-column .course-list-type:before {
    content: "Course Type: ";
    font-weight: 700;
}

@media (min-width: 725px) {
    .course .course-list-column .course-list-type:before {
        display: block;
    }
}

@media (min-width: 1024px) {
    .course .course-list-column .course-list-type:before {
        content: "";
    }
}

.course .course-list-column .course-list-details {
    margin-bottom: 10px;
}

@media (min-width: 1024px) {
    .course .course-list-column .course-list-details {
        margin-bottom: 0;
    }
}

.course .course-register a i {
    color: #9D9D9D;
    margin-left: 10px;
    display: inline-block;
}

.course .course-register a i:hover {
    opacity: .5;
}

.course .course-list-column .course-list-details a i {
    color: #9D9D9D;
    margin-left: 10px;
    display: inline-block;
}

.course:last-of-type {
    border-bottom: none;
}

@media (min-width: 1024px) {
    .course-info-wrapper {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        display: grid;
        grid-template-columns: 2fr 1fr;
        grid-gap: 25px;
    }
}

.course-info-left {
    flex: 0 0 60%;
}

.course-info-right {
    flex: 0 0 40%;
}

/*=====  COST Tab  ======*/

.individual-pricing {
    margin-top: 25px;
}

.individual-pricing h3:first-child {
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    padding: 10px;
    background-color: #3F6EA5;
    color: #ffffff;
}

.individual-pricing article {
    border-bottom: 1px solid #dedede;
    margin-bottom: 25px;
    padding-bottom: 25px;
}

.individual-wrapper h4 {
    margin-bottom: 15px;
}

.cost-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
}

.cost-info-wrapper:nth-of-type(2n) {
    background: #e9e9e9;
}

.cost-info-wrapper+.cost-info-wrapper {
    padding-top: 10px;
}

/*=====  End of COURSE INFO PAGE  ======*/

.form-group {
    position: relative;
}

#existingAccount {
    margin-bottom: 100px;
}

#existingAccount h2 {
    color: #3F6EA5;
    font-size: 28px;
    margin: 20px 0;
}

#existingAccount .form-fields {
    margin-bottom: 25px;
}

#existingAccount .form-fields .form-group label {
    display: block;
    margin-bottom: 8px;
}

#existingAccount .form-fields .form-group+.form-group {
    margin-top: 15px;
}

@media (min-width: 768px) {
    #existingAccount .form-fields .form-group+.form-group {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    #existingAccount .form-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 25px;
    }
}

#existingAccount .registerLinks {
    font-size: 12px;
    margin-right: 10px;
}

#newAccount {
    margin-bottom: 25px;
}

#newAccount h2 {
    color: #3F6EA5;
    font-size: 28px;
    margin: 20px 0;
}

#newAccount .form-fields {
    margin-bottom: 25px;
}

#newAccount .form-fields .form-group label {
    display: block;
    margin-bottom: 8px;
}

#newAccount .form-fields .form-group+.form-group {
    margin-top: 15px;
}

@media (min-width: 768px) {
    #newAccount .form-fields .form-group+.form-group {
        margin-top: 0;
    }
}

@media (min-width: 768px) {
    #newAccount .form-fields {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-gap: 25px;
    }
}

@media (min-width: 768px) {
    #newAccount .form-fields.form-fields-3 {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 25px;
    }
}

#newAccount .btn {
    margin-top: 25px;
}

@media only screen and (max-width: 768px) {
    .hp-head {
        font-size: 2em !important;
        margin: 20px auto !important;
    }
    .hp-top {
        font-size: 1.2em !important;
    }
}

/*=====  End of ABOUT PAGE  ======*/

.contact-section2 .grid {
    display: flex;
    }
    
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
.courseCalendar__course {
	display: block;
}
.courseCalendar__course__details {
    margin-bottom: 12px;
    display: block;
}
	}

.ie .courseCalendar__course {
	display: block;
}
.ie .courseCalendar__course__details {
    margin-bottom: 12px;
    display: block;
}