/*
Theme Name: Divi Child
Theme URI: http://www.elegantthemes.com/gallery/divi
Description: Divi child theme via FreshySites
Author: FreshySites
Author URI: https://freshysites.com/
Template: Divi
Version: 1.5.1
*/
/* Add your own styles at the bottom */

/* -- COLORS -- */

.white,
.white h1, .white h2, .white h3, .white h4, .white h5, .white h6, .white li, .white a,
h1.white, h2.white, h3.white, h4.white, h5.white, h6.white, li.white, a.white, p.white {
    color: #fff;
}

.black,
.black h1, .black h2, .black h3, .black h4, .black h5, .black h6, .black li, .black a,
h1.black, h2.black, h3.black, h4.black, h5.black, h6.black, li.black, a.black, p.black {
    color: #000;
}

.primary,
.primary h1, .primary h2, .primary  h3, .primary h4, .primary h5, .primary h6, .primary li, .primary a,
h1.primary, h2.primary, h3.primary, h4.primary, h5.primary, h6.primary, li.primary, a.primary, p.primary {
    color: #32a709;
}

.secondary,
.secondary h1, .secondary h2, .secondary h3, .secondary h4, .secondary h5, .secondary h6, .secondary li, .secondary a,
h1.secondary, h2.secondary, h3.secondary, h4.secondary, h5.secondary, h6.secondary, li.secondary, a.secondary, p.secondary {
    color: #daf238;
}

.tertiary,
.tertiary h1, .tertiary h2, .tertiary h3, .tertiary h4, .tertiary h5, .tertiary h6, .tertiary li, .tertiary a,
h1.tertiary, h2.tertiary, h3.tertiary, h4.tertiary, h5.tertiary, h6.tertiary, li.tertiary, a.tertiary, p.tertiary {
    color: #e4debe;
}

/* background colors */
.bg-white, a.bg-white {background-color: #fff;}
.bg-black, a.bg-black {background-color: #000;}
.bg-primary, a.bg-primary {background-color: #32a709;}
.bg-secondary, a.bg-secondary {background-color: #daf238;}
.bg-tertiary, a.bg-tertiary {background-color: #e4debe;}

/* -- END COLORS -- */


/* -- TYPOGRAPHY -- */

.text-lowercase,
.text-lowercase h1, .text-lowercase h2, .text-lowercase h3, .text-lowercase h4, .text-lowercase h5, .text-lowercase h6, .text-lowercase li, .text-lowercase a {
    text-transform: lowercase !important;
}

.text-uppercase,
.text-uppercase h1, .text-uppercase h2, .text-uppercase h3, .text-uppercase h4, .text-uppercase h5, .text-uppercase h6, .text-uppercase li, .text-uppercase a {
    text-transform: uppercase !important;
}

.text-capitalize,
.text-capitalize h1, .text-capitalize h2, .text-capitalize h3, .text-capitalize h4, .text-capitalize h5, .text-capitalize h6, .text-capitalize li, .text-capitalize a {
    text-transform: capitalize !important;
}

.text-transform-none,
.text-transform-none h1, .text-transform-none h2, .text-transform-none h3, .text-transform-none h4, .text-transform-none h5, .text-transform-none h6, .text-transform-none li, .text-transform-none a {
    text-transform: none !important;
}

.font-weight-bold,
.font-weight-bold h1, .font-weight-bold h2, .font-weight-bold h3, .font-weight-bold h4, .font-weight-bold h5, .font-weight-bold h6, .font-weight-bold li, .font-weight-bold a {
    font-weight: 700;
}

.font-weight-normal,
.font-weight-normal h1, .font-weight-normal h2, .font-weight-normal h3, .font-weight-normal h4, .font-weight-normal h5, .font-weight-normal h6, .font-weight-normal li, .font-weight-normal a {
    font-weight: 400;
}

.font-italic {font-style: italic;}

.text-underline-none, .text-underline-none a {text-decoration: none !important;}

.text-underline, .text-underline a {text-decoration: underline !important;}

.text-nowrap, .text-nowrap a {white-space: nowrap !important;}

.text-wrap-normal, .text-wrap-normal a {white-space: normal !important;}

/* -- END TYPOGRAPHY -- */


/* -- TEMPLATE -- */



/* -- END TEMPLATE -- */


/* -- HEADER -- */

/* helps logo to not be pixelated when scaled down */
#logo {
    -webkit-transform: none !important;
    transform: none !important;
}

/* when mobile menu is open, change hamburger icon to x icon */
#et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar::before {
    content: '\4d';
}

/* makes sub sub menu icon be right arrow instead of down arrow */
#top-menu .menu-item-has-children .menu-item-has-children > a:first-child::after,
#et-secondary-nav .menu-item-has-children .menu-item-has-children > a:first-child::after {
    content: '5';
}

/* if parent link of child menu is a deadlink, then make it not clickable */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children > a[href="#0"] {
    pointer-events: none;
}

/* - mobile menu toggling elements, injected via jQuery - */

/* make menu list item be relative, to be able to position toggle within this item */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children {
    position: relative;
}
/* the new toggle element, which is added via jQuery */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle {
    position: absolute;
    background-color: rgba(0,0,0,0.03);
    z-index: 1;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 50%;
    top: 4px;
    right: 4px;
    cursor: pointer;
    text-align: center;
}
/* the new toggle element when popped */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped {
    background-color: rgba(0,0,0,0.1);
}
/* toggle icon */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle::before {
    font-family: "ETmodules" !important;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 36px;
    font-size: 24px;
    text-transform: none;
    speak: none;
    content: '\33';
}
/* toggle icon when triggered */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped::before {
    content: '\32';
}
/* hide sub menus by default */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle ~ ul.sub-menu {
    display: none !important;
    padding-left: 0;
}
/* show sub menu when triggered via jQuery toggle, and add slight bg color */
#main-header #mobile_menu.et_mobile_menu .sub-menu-toggle.popped ~ ul.sub-menu {
    display: block !important;
    background-color: rgba(0,0,0,0.03);
}
/* remove sub menu list item left padding, since padding will be on anchors */
#main-header #mobile_menu.et_mobile_menu li li {
    padding-left: 0;
}

/* adjust mobile menu anchors side paddings */
#main-header #mobile_menu.et_mobile_menu li a {
    padding-left: 20px;
    padding-right: 20px;
}
/* indent sub menu */
#main-header #mobile_menu.et_mobile_menu li li a {
    padding-left: 40px;
    padding-right: 20px;
}
/* indent sub sub menus further */
#main-header #mobile_menu.et_mobile_menu li li li a {
    padding-left: 60px;
    padding-right: 20px;
}
/* if mobile menu anchor has toggle, make room for it to fit next to the link */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children .sub-menu-toggle + a {
    padding-right: 44px;
}

/* - end mobile menu toggling elements - */

/* undo Divi's default styling of mobile menu links that have children */
#main-header #mobile_menu.et_mobile_menu .menu-item-has-children > a {
    background-color: transparent;
    font-weight: inherit;
}

/* make the current page's mobile menu link be different */
#main-header #mobile_menu.et_mobile_menu li.current-menu-item > a {
    font-weight: bolder;
}

/* -- END HEADER -- */


/* -- FOOTER -- */

#freshy_copyright span {
    display: inline-block;
    line-height: 1.5em;
}

/* vertical pipe divider */
#freshy_copyright span.copyright_via {
    width: 33.33333%;
    height: 1px;
    overflow: hidden;
    white-space: nowrap;
    text-indent: 100%;
    background: rgba(255,255,255,0.25);
    vertical-align: middle;
    margin: 10px auto 15px;
    display: block;
}

#freshy_copyright a.copyright_fs {
    display: block;
    vertical-align: middle;
    width: 42px;
    height: 20px;
    background-image: url("/wp-content/uploads/fs-lettermark-white.svg");
    background-repeat: no-repeat;
    background-size: 42px 20px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    margin: 0 auto;
}

/* fix if using Impreza to remove underline */
#freshy_copyright a:hover {
    border: 0 !important;
}

@media (min-width: 600px) {
    /* vertical pipe divider */
    #freshy_copyright span.copyright_via {
        width: 1px;
        height: 20px;
        margin: 0 10px;
        display: inline-block;
    }
    #freshy_copyright a.copyright_fs {
        display: inline-block;
    }
}

@media (max-width: 980px) {
    #footer-bottom .et-social-icons li:first-child {
        margin-left: 0;
    }
}

/* -- END FOOTER -- */


/* -- RESPONSIVE -- */

/* do for mobile */
@media screen and (max-width: 767px) {
    /* hide on mobile */
    .hide-mobile {
        display: none;
    }
}

/* do for desktop */
@media screen and (min-width: 768px) {
    /* hide on desktop */
    .hide-desktop {
        display: none;
    }
}

/* -- END RESPONSIVE -- */


/* -- CHECKLIST -- */

.checklist ul {
    margin: 0;
    padding: 0 !important;
    list-style: none;
}

.checklist ul li {
    position: relative;
    padding-left: 30px;
    margin: 0 0 6px !important;
}

.checklist-columns-2 ul li,
.checklist-columns-3 ul li,
.checklist-columns-4 ul li {
    margin-bottom: 30px !important;
}

@media (max-width: 638px) {
    .checklist-columns-2 ul li,
    .checklist-columns-3 ul li,
    .checklist-columns-4 ul li {
        margin-bottom: 20px !important;
    }
    .checklist-columns-2 ul li:last-child,
    .checklist-columns-3 ul li:last-child,
    .checklist-columns-4 ul li:last-child {
        margin-bottom: 0 !important;
    }
}

/* create columns of list items with this class */
@media (min-width: 639px) {
    .checklist-columns-2 ul::after,
    .checklist-columns-3 ul::after,
    .checklist-columns-4 ul::after {
        content: '';
        clear: both;
        display: table;
    }
    .checklist-columns-2 ul li,
    .checklist-columns-3 ul li,
    .checklist-columns-4 ul li {
        float: left;
        width: 50%;
        padding-right: 30px;
    }
    .checklist-columns-2 ul li:nth-child(odd),
    .checklist-columns-3 ul li:nth-child(odd),
    .checklist-columns-4 ul li:nth-child(odd){
        clear: both;
    }
    .checklist-columns-2-alt > ul,
    .checklist-columns-3-alt > ul,
    .checklist-columns-4-alt > ul {
        -moz-column-count: 2;
        -moz-column-gap: 8px;
        -webkit-column-count: 2;
        -webkit-column-gap: 8px;
        column-count: 2;
        column-gap: 20px;
    }
    .checklist-columns-2-alt ul li,
    .checklist-columns-3-alt ul li,
    .checklist-columns-4-alt ul li {
        break-inside: avoid-column;
    }
}
@media (min-width: 981px) {
    .checklist-columns-3 ul li,
    .checklist-columns-4 ul li {
        float: left;
        width: 33.333333%;
    }
    .checklist-columns-3 ul li:nth-child(odd),
    .checklist-columns-4 ul li:nth-child(odd) {
        clear: none;
    }
    .checklist-columns-3 ul li:nth-child(3n+1),
    .checklist-columns-4 ul li:nth-child(3n+1) {
        clear: both;
    }
    .checklist-columns-3-alt ul,
    .checklist-columns-4-alt ul {
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
    }
}
@media (min-width: 1199px) {
    .checklist-columns-4 ul li {
        float: left;
        width: 25%;
    }
    .checklist-columns-4 ul li:nth-child(odd) {
        clear: none;
    }
    .checklist-columns-4 ul li:nth-child(3n+1) {
        clear: none;
    }
    .checklist-columns-4 ul li:nth-child(4n+1) {
        clear: both;
    }
    .checklist-columns-4-alt ul {
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4;
    }
}

.checklist ul li::before {
    font-family: 'ETModules';
    content: '\f058';
    width: 20px;
    margin: 0;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    color: #00adf1;
    /* set font size helps make icon sharper */
    font-size: 22px;
    font-weight: normal;
}

.pluslist ul li::before {
    content: '\f055';
}
.eventlist ul li::before {
    content: '\f274';
}
.locationlist ul li::before {
    content: '\f041';
}
.externallist ul li::before {
    content: '\f14c';
}
.pdflist ul li::before {
    content: '\f1c1';
    color: red;
}
.userlist ul li::before {
    content: '\f2c0';
}

/* -- END CHECKLIST -- */


/* -- DIVI HACKS -- */

/* make parallax image be centered at the start */
.et_parallax_bg {
    background-position: center center;
}

/* Divi was turning off bottom padding on last paragraphs, when it should be only if it's the last child */
p:last-of-type,
p:not(.has-background):last-of-type {
    padding-bottom: 1em;
}
p:last-child,
p:not(.has-background):last-child {
    padding-bottom: 0;
}

/* if there are more than one paragraphin the Fullwidth Header module, they should have padding */
.et_pb_fullwidth_header p:not(:last-child) {
    padding-bottom: 1em;
}

/* -- END DIVI HACKS -- */


/* -- PASSWORD PROTECTED -- */

/* set a max width to make it only as wide as most content */
.post-password-required .et_password_protected_form {
    width: 80%;
    margin: 10% auto;
    max-width: 1140px;
}

/* give the input a border */
.post-password-required .et_password_protected_form p input {
    border: 1px solid !important;
}

/* remove the arrow on hover of the submit button */
.post-password-required .et_password_protected_form .et_submit_button::after {
    display: none;
}

/* -- END PASSWORD PROTECTED -- */


/* -- TESTIMONIALS PLUGIN -- */

/* flip quote so it's an opening quote icon for grid and slider versions */
.b3_archive_testimonials_grid article .b3_quote.grid_quote::before,
.et_pb_module.et_pb_testimonial_slider .et_pb_slides_testi::before {
    -moz-transform: scale(-1,-1);
    -o-transform: scale(-1,-1);
    -webkit-transform: scale(-1,-1);
    transform: scale(-1,-1);
}

/* -- END TESTIMONIALS PLUGIN -- */


/* -- GRAVITY FORMS -- */

/* partially due to Surbma's restyling of the form,
there now apepars to be excess margin above fields at certain screen sizes,
when two or more inputs have errors side by side (hence the + in the CSS),
so let's remove that top gap */
@media only screen and (max-width: 761px), (max-device-width: 1023px) and (min-device-width: 768px) {
    .gform_wrapper form .gform_body ul.gform_fields li.gfield.gfield_error+li.gfield.gfield_error {
        margin-top: 0;
    }
}

/* we swap out form ajax spinner via PHP Function, and add spinning if its PNG */
img.gform_ajax_spinner[src$=".png"] {
    -webkit-animation: lime-spin 1.5s linear infinite;
    -moz-animation: lime-spin 1.5s linear infinite;
    animation: lime-spin 1.5s linear infinite;
    padding: 0;
    margin-left: 10px;
}
@-moz-keyframes lime-spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes lime-spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes lime-spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

/* fix for when Date Picker is used */
#ui-datepicker-div:empty {
    margin-top: 0;
}

/* confirmation (success) message */
.gform_confirmation_wrapper .gform_confirmation_message {
    font-size: 1.2rem;
    line-height: 1.5em;
    padding: 2rem;
    background: rgba(90, 90, 90, 0.1);
    text-align: center;
}

/* -- END GRAVITY FORMS -- */


/* -- HELPERS -- */

/* use the "fullwidth-section" class on a SECTION to make a "standard" SECTION truly be fullwidth
(NOTE: the SECTION needs THIS class) */
.fullwidth-section.et_pb_section {
    padding: 0;
}
.fullwidth-section.et_pb_section > .et_pb_row {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0;
}

/* use the "fullwidth-row" class on a SECTION to make a "full width" ROW truly be fullwidth
(NOTE: the ROW module settings needs to be Gutter Width 1, and the SECTION needs THIS class,
and unlike the class above, THIS class will auto-add padding to the columns) */
.fullwidth-row.et_pb_section {
    padding: 0;
}
.fullwidth-row.et_pb_section .et_pb_row {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* helps add padding to each column */
.fullwidth-row.et_pb_section .et_pb_row > .et_pb_column {
    padding: 50px 10%;
}
@media (min-width: 767px) {
    .fullwidth-row.et_pb_section .et_pb_row > .et_pb_column {
        padding: 80px 6%;
    }
}
/* for some reason Divi removes bottom margin from modules if in column with no gutters,
so we need to add margins back */
.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column .et_pb_module:not(:last-child) {
    margin-bottom: 30px;
}
@media (min-width: 981px) {
    .fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column_2_3 .et_pb_module:not(:last-child) {
        margin-bottom: 4.242%;
    }
    .fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column_1_3 .et_pb_module:not(:last-child) {
        margin-bottom: 9.27%;
    }
}
/* reduce gap between toggles if in fullwidth row */
.fullwidth-row.et_pb_section .et_pb_row.et_pb_gutters1 > .et_pb_column .et_pb_module.et_pb_toggle:not(:last-child) {
    margin-bottom: 3px;
}

/* -- END HELPERS -- */

/* -- BLOG -- */

/* sidebar recent posts */
.et_pb_widget.widget_recent_entries ul li  {
    margin-bottom: 1em;
}

/* sidebar recent posts dates */
.et_pb_widget.widget_recent_entries ul li span.post-date {
    display: table;
    font-size: 0.85em;
}

/* -- END BLOG -- */

/* ---------- CUSTOM CODE - KML - FRESHYSITES - 2020------------ */


/* ---------- General ---------- */
body {
    font-family: pt-sans, sans-serif;
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: pt-sans, sans-serif;
}

.futura,
.futura .header-content h1.et_pb_module_header,
.futura h1 {
    font-family: futura-pt, sans-serif;
}

.futura.medium,
.futura.medium .header-content h1.et_pb_module_header {
    font-weight: 500;
}

.futura.font-weight-400,
.futura.font-weight-400 .header-content h1.et_pb_module_header {
    font-weight: 400;
}

.futura-bold {
    font-family: futura-pt-bold, sans-serif;
}

/* -- Change the highlighted text color -- */
::selection {
    background-color: #3f296d;
    color: #fff;
}

::-moz-selection {
    background-color: #3f296d;
    color: #fff;
}

::-o-selection {
    background-color: #3f296d;
    color: #fff;
}

::-ms-selection {
    background-color: #3f296d;
    color: #fff;
}

::-webkit-selection {
    background-color: #3f296d;
    color: #fff;
}

.et_pb_scroll_top.et-pb-icon {
    background: #3f296d;
}

/* Divi column stacking on mobile */

@media all and (max-width: 980px) {

/*** wrap row in a flex box ***/

.custom_row {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    flex-wrap: wrap;
}

/*** custom classes that will designate the order of columns in the flex box row ***/

.first-on-mobile {
    -webkit-order: 1;
    order: 1;
    }

.second-on-mobile {

    -webkit-order: 2;
    order: 2;
    }

.third-on-mobile {
    -webkit-order: 3;
    order: 3;
    }

.fourth-on-mobile {

    -webkit-order: 4;
    order: 4;
    }
}

@media (min-width: 981px) {
    .vertically-aligned {
        margin: auto;
    }
}

/* Divi column stacking on mobile */

@media all and (max-width: 767px) {

/*** wrap row in a flex box ***/

.custom_row_mobile_only {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    flex-wrap: wrap;
}

/*** custom classes that will designate the order of columns in the flex box row ***/

.first-on-mobile {
    -webkit-order: 1;
    order: 1;
    }

.second-on-mobile {

    -webkit-order: 2;
    order: 2;
    }

.third-on-mobile {
    -webkit-order: 3;
    order: 3;
    }

.fourth-on-mobile {

    -webkit-order: 4;
    order: 4;
    }
}


/* ---------- Gravity Forms ---------- */
/* Gravity Forms - make the text darker */
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body .gform_wrapper textarea.textarea, body div.form_saved_message div.form_saved_message_emailform form input[type=text],
body .gform_wrapper select {
    color: #262626;
    font-weight: bold;
    font-family: futura-pt, sans-serif;
    font-size: 18px;
}


/* Gravity Forms - button */
body .gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_page_footer input.button,
body div.form_saved_message div.form_saved_message_emailform form input[type=submit],
body .gform_wrapper .gform_footer button,
body .gform_wrapper .gform_page_footer button,
body div.form_saved_message div.form_saved_message_emailform button {
    font-family: futura-pt, sans-serif;
    color: #3f296d;
    font-weight: 500;
    font-size: 35px;
    border: 3px solid #3f296d;
    padding: 8px 70px;
    letter-spacing: 2px;
    background-color: transparent;
    cursor: pointer;
    margin-top: 5px;

}

@media (max-width: 980px) {
    body .gform_wrapper .gform_footer input.button,
    body .gform_wrapper .gform_page_footer input.button,
    body div.form_saved_message div.form_saved_message_emailform form input[type=submit],
    body .gform_wrapper .gform_footer button,
    body .gform_wrapper .gform_page_footer button,
    body div.form_saved_message div.form_saved_message_emailform button {
        font-size: 25px;
    }
}

body .gform_wrapper .gform_footer input.button:hover,
body .gform_wrapper .gform_page_footer input.button:hover,
body div.form_saved_message div.form_saved_message_emailform form input[type=submit]:hover,
body .gform_wrapper .gform_footer button:hover,
body .gform_wrapper .gform_page_footer button:hover,
body div.form_saved_message div.form_saved_message_emailform button:hover {
    color: #00adf1;
    background-color: transparent;
}

body .gform_wrapper .gform_footer {
    text-align: left;
    margin: 0;
    padding: 5px 0 0 0;
}
/* fields */
body .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body .gform_wrapper textarea.textarea,
body div.form_saved_message div.form_saved_message_emailform form input[type=text],
body .gform_wrapper select {
    background-color: transparent !important;
    border: 1px solid #9f9f9f !important;
}

/* select */
body .gform_body .gform_fields .gfield select {
    color: #3f296D;
    padding-left: 16px;
}

/* placeholder */

.gform_body .gform_fields .gfield input::-webkit-input-placeholder {
  	color: #3f296D;
    font-weight: bold;
    font-family: futura-pt, sans-serif;
}
.gform_body .gform_fields .gfield input::-moz-placeholder {
  	color: #3f296D;
    font-weight: bold;
    font-family: futura-pt, sans-serif;
}
.gform_body .gform_fields .gfield input:-ms-input-placeholder {
  	color: #3f296D;
    font-weight: bold;
    font-family: futura-pt, sans-serif;
}
.gform_body .gform_fields .gfield input:-moz-placeholder {
  	color: #3f296D;
    font-weight: bold;
    font-family: futura-pt, sans-serif;
    font-size: 18px;
}

.gform_body .gform_fields .gfield textarea::-webkit-input-placeholder {
  	color: #3f296D;
    font-weight: bold;
    font-family: futura-pt, sans-serif;
}
.gform_body .gform_fields .gfield textarea::-moz-placeholder {
  	color: #3f296D;
    font-weight: bold;
    font-family: futura-pt, sans-serif;
}
.gform_body .gform_fields .gfield textarea:-ms-input-placeholder {
  	color: #3f296D;
    font-weight: bold;
    font-family: futura-pt, sans-serif;
}
.gform_body .gform_fields .gfield textarea:-moz-placeholder {
  	color: #3f296D;
    font-weight: bold;
    font-family: futura-pt, sans-serif;
    font-size: 18px;
}


/* spacing */
body .gform_wrapper ul li.gfield,
body .gform_wrapper .top_label div.ginput_container,
.gform_wrapper {
    margin-top: 0 !important;
}

/* textarea  */
body .gform_wrapper textarea.textarea {
    height: 130px;
}

/* ---------- Header  ---------- */
/* Homepage */
.custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu {
    margin: auto;
    left: 64px;
    position: relative;
}

.custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li a {
    font-family: futura-pt, sans-serif;
    font-weight: 500;
}

.custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li {
    padding-left: 16px;
    padding-right: 16px;
}

/* Header button */
.skew-btn {
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
    float: right;
    position: relative;
    left: 32px;
}

.skew-btn button {
    background-color: #00adf1;
    border: 2px solid #00adf1;
    color: #fff;
    padding: 0 90px 0 100px;
    font-family: futura-pt, sans-serif;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    letter-spacing: 2px;
}

.skew-btn button:hover {
    color: #3f296d;
}

.skew-btn-text {
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    padding: 20px;
    white-space: nowrap;
}



/* -- Header Responsive -- */
@media (min-width: 2100px) and (max-width: 2399px) {
    .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu {
        left: 84px;
    }
}

@media (min-width: 2400px) and (max-width: 2800px) {
    .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu {
        left: 130px;
    }
}

@media (min-width: 2801px) and (max-width: 2999px) {
    .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu {
        left: 190px;
    }
}

@media (min-width: 3000px) {
    .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu {
        left: 300px;
    }
}

@media (min-width: 981px) and (max-width: 1705px) {
    .et_pb_gutters3.et-db #et-boc .et-l .et_pb_column.menu-col {
        margin-right: 1%;
    }

    .et_pb_gutters3.et-db #et-boc .et-l .et_pb_column.slant-btn-col {
        float: right;
        /*width: 24.875%;*/
        width: 18%;
    }
    .et_pb_gutters3 .et_pb_column_3_4 {
        width: 81%;
    }
	.page-id-282141 .et_pb_gutters3 .et_pb_column_3_4 {
        width: 73.625%;
    }

    .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu {
        left: 0;
    }
}

@media (max-width: 1440px) {
    .skew-btn button {
        padding: 0 90px 0 80px;
        font-size: 25px;
    }
}

@media (min-width: 1310px) and (max-width: 1349px) {
    .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu #menu-primary-menu li {
        padding-left: 10px;
        padding-right: 10px;
    }

    .skew-btn button {
        padding: 0 90px 0 60px;
        font-size: 25px;
    }
}

@media (min-width: 1125px) and (max-width: 1309px) {
    .et-db #et-boc .et-l .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu #menu-primary-menu li {
        padding-left: 8px;
        padding-right: 8px;
    }

    .et-db #et-boc .et-l .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu #menu-primary-menu li a {
        font-size: 19px;
    }

    .skew-btn button {
        padding: 0 90px 0 60px;
        font-size: 19px;
    }

    .et-db #et-boc .et-l .et_pb_column.menu-col .et_pb_menu.custom-primary .et_pb_menu__logo-wrap .et_pb_menu__logo img {
        max-height: 70px;
    }
}

@media (min-width: 981px) and (max-width: 1124px) {
    .et-db #et-boc .et-l .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu #menu-primary-menu li {
        padding-left: 8px;
        padding-right: 8px;
    }

    .et-db #et-boc .et-l .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu #menu-primary-menu li a {
        font-size: 18px;
    }

    .skew-btn button {
        padding: 0 60px 0 35px;
        font-size: 18px;
    }

    .et-db #et-boc .et-l .et_pb_column.menu-col .et_pb_menu.custom-primary .et_pb_menu__logo-wrap .et_pb_menu__logo img {
        max-height: 60px;
    }
}

/* Header Responsive - Button on mobile */
@media (min-width: 768px) and (max-width: 980px) {
    .skew-btn button {
        padding: 3px 44px 3px 28px;
        font-size: 18px;
    }

    .skew-btn-text {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .skew-btn button {
        padding: 3px 44px 3px 28px;
        font-size: 16px;
    }

    .skew-btn-text {
        padding: 0;
    }
}

/* Header Responsive - Main menu mobile */
@media (min-width: 768px) and (max-width: 980px) {
    .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap {
        margin-top: 40px;
    }

    .custom-primary .et_pb_menu_inner_container {
        top: -21px;
    }

     .et_pb_column.menu-col {
        margin-bottom: 0 !important;
    }

    .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_mobile_nav_menu .et_mobile_menu {
        top: 126%;
    }
}

@media (max-width: 767px) {
    .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap {
        margin-top: 25px;
    }

    .custom-primary .et_pb_menu_inner_container {
        top: -21px;
        margin-top: 6px;
    }

    .et_pb_column.menu-col {
        margin-bottom: 0;
    }

    .custom-primary .et_pb_menu_inner_container .et_pb_menu__wrap .et_mobile_nav_menu .et_mobile_menu {
        top: 136%;
    }
}


/* ---------- Home  ---------- */

/* -- Home banner -- */
/* Overlay */
.full-x-header .et_pb_fullwidth_header_overlay {
    background: url(/wp-content/uploads/overlay-x-3.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    mix-blend-mode: multiply;
    backface-visibility: hidden;
    background-size: contain;
}

.full-x-header .et_pb_section_video_bg  {
    opacity: 40%;
    -webkit-opacity: 40%;
    -moz-opacity: 40%;
    display: block;
}

.full-x-header .et_pb_fullwidth_header_container .header-content-container {
    margin-top: -106px;
}


/* Text */
.full-x-header h1.et_pb_module_header {
    padding-top: 20px;
    width: 80%;
    margin: auto;
}

/* EDIT for Zoom in browser*/
@media screen and (min-width: 1921px) {
    .full-x-header,
    .full-x-header .et_pb_fullwidth_header_container.center,
    .full-x-header-slider,
    .full-x-header-slider .et_pb_slides .et_pb_slide {
        min-height: 700px !important;
        max-height: 700px !important;
    }
}

@media screen and (min-height: 1000px) {
    .full-x-header,
    .full-x-header .et_pb_fullwidth_header_container.center,
    .full-x-header-slider,
    .full-x-header-slider .et_pb_slides .et_pb_slide {
        min-height: 1000px !important;
		max-height: 1000px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
    .full-x-header,
    .full-x-header .et_pb_fullwidth_header_container.center,
    .full-x-header-slider,
    .full-x-header-slider .et_pb_slides .et_pb_slide {
        /* 
        min-height: 600px !important;
        max-height: 600px !important;
		*/
		min-height: 86vh !important;
		max-height: 100vh !important;
    }
}

@media screen and (max-width: 350px) {
    .full-x-header,
    .full-x-header .et_pb_fullwidth_header_container.center,
    .full-x-header-slider,
    .full-x-header-slider .et_pb_slides .et_pb_slide {
        min-height: 250px !important;
        max-height: 250px !important;
    }
}

@media screen and (max-width: 767px) {
    .full-x-header,
    .full-x-header .et_pb_fullwidth_header_container.center,
    .full-x-header-slider,
    .full-x-header-slider .et_pb_slides .et_pb_slide {
        min-height: 350px !important;
        max-height: 350px !important;
    }

    .full-x-header-slider .et_pb_slide_overlay_container,
    .full-x-header .et_pb_fullwidth_header_overlay {
        background-size: cover !important;
    }
}

/* EDIT for Zoom out browser*/
@media screen and (min-width: 1280px) and (max-width: 1540px) {
    .full-x-header .header-content img {
        max-width: 80%;
    }
}

@media screen and (min-width: 1025px) and (max-width: 1279px) {
    .full-x-header .header-content img {
        max-width: 70%;
    }
}

@media (max-width: 767px) {
    /* Text */
    .full-x-header h1.et_pb_module_header {
        padding-top: 20px;
        width: 100%;
        margin: auto;
    }

    /* Overlay */
    .full-x-header .et_pb_fullwidth_header_container .header-content-container {
        margin-top: 0;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .full-x-header.et_pb_fullwidth_header .et_pb_fullwidth_header_container,
    .full-x-header.et_pb_fullwidth_header {
        min-height: 500px !important;
    }
}


/* button */
body .full-x-header.et_pb_fullwidth_header .header-content a.et_pb_button:hover {
    background-color: #fff  !important;
}


/* -- homepage 3rd section - find a studio -- */
@media (min-width: 981px) and (max-width: 1440px) {
    .find-studio-section .et_pb_fullwidth_header .et_pb_fullwidth_header_container .header-content .et_pb_button_one {
        font-size: 35px !important;
    }
}

@media (max-width: 767px) {
    .find-studio-section .et_pb_fullwidth_header .et_pb_fullwidth_header_container .header-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .find-studio-section .et_pb_fullwidth_header .et_pb_fullwidth_header_container .header-content .et_pb_button_one {
        margin-right: 0;
    }
}

/* homepage 4th section - videos */
.full-skew-btn {
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    float: right;
    position: relative;
}

.full-skew-btn.center {
    float: none;
}

.full-skew-btn button {
    background-color: #3f296d;
    border: 2px solid #3f296d;
    color: #fff;
    padding: 0 100px 5px 100px;
    font-family: futura-pt, sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    line-height: 1.7em!important;
    font-weight: 500!important;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    text-align: right;
}

.full-skew-btn.medium button {
    font-weight: 500 !important;
}

.full-skew-btn button:hover {
    color: #00adf1;
}

.full-skew-btn-text {
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
    white-space: nowrap;
}

@media (max-width: 767px) {
.full-skew-btn button {
    padding: 0 80px 5px 80px;
    font-size: 23px;
}
}

/* small desktops  - video corners must always be touching */
@media (min-width: 1580px) and (max-width: 1770px) {
    .video-section .content-col h2 {
        font-size: 3vw;
    }

    .video-section .content-col p {
        font-size: 1.1vw;
    }

    .video-section .content-col .script p {
        font-size: 2.3vw;
    }

    .video-section .content-col .full-skew-btn button {
        font-size: 1.6vw;
    }
}

@media (min-width: 1280px) and (max-width: 1579px) {
    .video-section .content-col h2 {
        font-size: 2.7vw;
    }

    .video-section .content-col p {
        font-size: 1.1vw;
    }

    .video-section .content-col .script p {
        font-size: 2.3vw;
    }

    .video-section .content-col .full-skew-btn button {
        font-size: 1.5vw;
    }

    .video-section .content-col .script {
        margin-top: 18px !important;
        margin-bottom: 18px !important;
    }
}

@media (min-width: 1150px) and (max-width: 1279px) {
    .video-section .content-col h2 {
        font-size: 2.5vw;
    }

    .video-section .content-col p {
        font-size: 1vw;
    }

    .video-section .content-col .script p {
        font-size: 2vw;
    }

    .video-section .content-col .full-skew-btn button {
        font-size: 1.5vw;
    }

    .video-section .content-col .script {
        margin-top: 18px !important;
        margin-bottom: 18px !important;
    }
}


@media (min-width: 1030px) and (max-width: 1149px) {
    .video-section .content-col h2 {
        font-size: 2.3vw;
    }

    .video-section .content-col p {
        font-size: 1vw;
    }

    .video-section .content-col .script p {
        font-size: 1.8vw;
    }

    .video-section .content-col .full-skew-btn button {
        font-size: 1.3vw;
    }

    .video-section .content-col .script {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }
}

@media (min-width: 981px) and (max-width: 1029px) {
    .video-section .content-col h2 {
        font-size: 2.3vw;
    }

    .video-section .content-col p {
        font-size: 1vw;
    }

    .video-section .content-col .script p {
        font-size: 1.8vw;
    }

    .video-section .content-col .full-skew-btn button {
        font-size: 1.3vw;
    }

    .video-section .content-col .script {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .video-section .content-col {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (min-width: 981px) and (max-width: 1279px) {
    .large-skew .full-skew-btn button {
        padding: 0 30px 5px 30px;
    }
}

@media (max-width: 480px) {
    .large-skew .full-skew-btn button {
        padding: 0 30px 5px 30px;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .video-section .et_pb_row {
        display: flex !important;
    }

    .video-section .et_pb_row .et_pb_column.content-col {
        padding-left: 15px !important;
        padding-right: 15px !important;
        padding-top: 10px !important;
        padding-bottom: 0 !important;
    }

    .video-section .et_pb_row .et_pb_column {
        width: 50% !important;
    }

    .video-section .content-col h2 {
        padding-bottom: 0;
    }

    .video-section .content-col .full-skew-btn button {
        font-size: 15px;
    }
}

/* larger dektops */
@media (min-width: 1921px) {
    .video-section .content-col {
        padding-right: 200px;
    }
}

/* -- Homepage - testimonial -- */
/* single testimonial */
.single-testimonial .et_pb_b3_testimonial_archive {

}

.single-testimonial .et_pb_b3_testimonial_archive .b3_archive_testimonial .b3_archive_testimonial_view {
    -moz-column-count: 1;
    column-count: 1;
    -webkit-column-count: 1;
}

.single-testimonial .et_pb_b3_testimonial_archive .b3_archive_testimonial_view .b3_testimonials_element {
    border: none;
}

.single-testimonial .et_pb_b3_testimonial_archive .b3_archive_testimonial .b3_archive_testimonial_view_grid .b3_archive_testimonials_grid.et_pb_column {
    margin-bottom: 0;
}
/* all testimonials */
.b3_archive_testimonial_text::before,
.et_pb_slide_content_testi::before {
    content: url(/wp-content/uploads/testimonial-quotes.png);
    display: block;
    position: relative;
    left: -36px;
}

.b3_archive_testimonial .b3_archive_testimonial_view .b3_archive_testimonials_grid,
.et_pb_container_testi {
    padding: 25px 40px 0 40px;
}

.et_pb_testimonial_slider .et_pb_slide_content_testi {
    font-family: pt-sans, sans-serif !important;
}

@media (max-width: 980px) {
    .b3_archive_testimonial .b3_archive_testimonial_view .b3_archive_testimonials_grid,
    .et_pb_container_testi {
        padding: 25px 0 25px 40px;
    }
}

/* -- Homepage - square grid -- */
#home-modula-gallery .modula .modula-items .modula-item .figc {
    text-align: left;
    letter-spacing: 2px;
}

@media (min-width: 1280px) and (max-width: 1366px) {
    #home-modula-gallery .modula .modula-items .modula-item .figc h2.jtg-title {
        font-size: 30px;
    }
}

@media (min-width: 981px) and (max-width: 1279px) {
    #home-modula-gallery .modula .modula-items .modula-item .figc h2.jtg-title {
        font-size: 25px;
    }
}

@media (min-width: 786px) and (max-width: 980px) {
    #home-modula-gallery .modula .modula-items .modula-item .figc h2.jtg-title {
        font-size: 19px;
    }
}


/* Homepage - bottom two ctas */
.cta-section .cta-btn .et_pb_button_wrapper .et_pb_button.et_pb_promo_button {
    font-family: futura-pt, sans-serif;
    background-color: transparent;
    width: 240px;
    text-align: center;
    line-height: 1.6em !important;
    font-weight: 500;
}

body #page-container .et_pb_section.cta-section .cta-btn.et_pb_promo:hover .et_pb_promo_button.et_pb_button {
    background-color: #fff;
}

@media (max-width: 767px) {
    .cta-section .cta-btn .et_pb_button_wrapper .et_pb_button.et_pb_promo_button {
        width: 200px;
    }
}

/* three illustrated blurbs */
@media (min-width: 981px) {
    .three-illustrated-blurbs-row .et_pb_column {
        padding-bottom: 80px;
    }

    .three-illustrated-blurbs-row .et_pb_column .arrow {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
}

/* ---------- Footer ---------- */
/* no bullets */
#footer-widgets .footer-widget li {
    padding-left: 0;
}

#footer-widgets .footer-widget li:before {
    content: none;
}

/* full width bottom footer */
#footer-bottom .container {
    margin-right: 2.773%;
    margin-left: 2.773%;
    width:94.454%!important;
    max-width: 94.454%;
}

/* centered */
#footer-info {
    text-align: center;
    width: 100%;
}

/* container width */
#main-footer .container {
    max-width: 100%;
    width: 70%;
}

@media (min-width: 1280px) and (max-width: 1366px) {
    #main-footer .container {
        width: 78%;
    }
}

@media (min-width: 1024px) and (max-width: 1279px) {
    #main-footer .container {
        width: 95%;
    }
}

@media (min-width: 981px) and (max-width: 1023px) {
    #main-footer .container {
        width: 95%;
    }

    #main-footer .container .footer-widget {
        width: 21.875%;
        margin-right: 3%;
    }
}

/* widget title */
#main-footer .footer-widget h4 {
    font-family: futura-pt-bold, sans-serif;
}

/* navigation menus */
.et_pb_widget ul li {
    margin-bottom: 0;
}

/* phone and email */
.footer-widget .widget_text strong {
    color: #3f296d;
}

/* line height */
.footer-widget .widget_text p,
.footer-widget ul.menu li  {
    line-height: 1.6em;
}

/* spacing */
@media (min-width: 981px) {
    #footer-widgets {
        padding: 0;
    }
}

/* find a location  */
.footer-widget #text-3,
.footer-widget #custom_html-3 {
    float: left;
    clear: left;
}

#main-footer #footer-widgets .footer-widget #text-3 {
    margin-bottom: 0 !important;
}

.dropbtn {
    width: 200px;
    border: 1px solid #707070;
    padding: 5px 10px;
    display: block;
}

.landing-pg-link li .dropbtn::before {
  	content: url(/wp-content/uploads/map-marker.png);
    line-height: 1;
    position: relative;
    top: 0;
    margin-right: 5px;
    vertical-align: middle;
}

.landing-pg-link li .dropbtn::after {
  	content: url(/wp-content/uploads/caret.png);
    margin-left: 42px;
}

.landing-pg-link li .dropbtn:hover::after {
  	transform: rotate(3deg);
}

.landing-pg-link ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #fff;
}

.landing-pg-link li {
    float: left;
    margin-right: 5px;
    margin-bottom: -7px;
    position: inherit !important;
}


.landing-pg-link li.dropdown {
    display: inline-block;
}

.landing-pg-link .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #707070;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 999;
    padding: 5px;
    max-height: 136px;
    overflow-y: scroll;
}


.landing-pg-link .dropdown-content a {
    color: #222 !important;
    padding: 0;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 15px;
}

.landing-pg-link .dropdown-content a:hover {
    background-color: #f1f1f1;
}

.landing-pg-link .dropdown:hover .dropdown-content {
    display: block;
}

/* homepage footer */
.et-db #et-boc .et-l .purple-social-icons li.et_pb_social_icon a.icon {
    border-radius: 30px;
    background-color: #3f296d!important;
}

.et-db #et-boc .et-l .purple-social-icons li a.icon:before {
    font-size: 18px !important;
}
/* ---------- General --------- */
/* registered mark in page banners */
.registered .et_pb_module_header span,
.registered em {
    font-size: 40%;
    vertical-align: super;
}
/* ---------- Studios Template ---------- */
/* -- Header -- */
@media (min-width: 1170px) and (max-width: 1760px) {
    .slant-btn-col .skew-btn-book-session button {
        padding: 0 30px 0 30px;
        font-size: 25px;
    }
}

@media (min-width: 981px) and (max-width: 1169px) {
    .slant-btn-col .skew-btn-book-session button {
        padding: 0 30px 0 20px;
        font-size: 19px;
    }
}

@media (min-width: 1360px) and (max-width: 1394px) {
    .custom-primary.studio .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li {
        padding-left: 7px;
    	padding-right: 7px;
    }
}

@media (min-width: 1115px) and (max-width: 1359px) {
    .custom-primary.studio .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li {
        padding-left: 6px;
    	padding-right: 6px;
    }

    .custom-primary.studio .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li a {
        font-size: 21px;
    }
}

@media (min-width: 981px) and (max-width: 1114px) {
    .custom-primary.studio .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li {
        padding-left: 5px;
    	padding-right: 5px;
    }

    .custom-primary.studio .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li a {
        font-size: 18px;
    }
}


@media (min-width: 768px) and (max-width: 980px) {
    .slant-btn-col .skew-btn-book-session button {
        padding: 3px 44px 3px 28px;
        font-size: 18px;
    }

    .slant-btn-col .skew-btn-book-session .skew-btn-text,
    .slant-btn-col .skew-btn .skew-btn-text {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .slant-btn-col .skew-btn-book-session button {
        padding: 3px 44px 3px 18px;
        font-size: 13px;
    }

    .slant-btn-col .skew-btn-book-session .skew-btn-text,
    .slant-btn-col .skew-btn .skew-btn-text {
        padding: 0;
    }
}



/* Book Session button */
.skew-btn-book-session {
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
    float: right;
    position: relative;
    left: 32px;
}

.skew-btn-book-session button {
    background-color: #3f2d6d;
    border: 2px solid #3f2d6d;
    color: #fff;
    padding: 0 60px 0 70px;
    font-family: futura-pt, sans-serif;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    letter-spacing: 2px;
}

.skew-btn-book-session button:hover {
    color: #00adf1;
}

.skew-btn-text {
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    padding: 20px;
    white-space: nowrap;
}

/* -- Banner -- */
.full-x-header.studio h1.et_pb_module_header {
    padding-top: 150px;
    width: 100%;
    margin: auto;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
}

.full-x-header.studio .header-content .et_pb_button_one {
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
}

.full-x-header.studio .header-content .et_pb_button_one span {
    -ms-transform: skewX(22deg);
    -webkit-transform: skewX(22deg);
    transform: skewX(22deg);
    white-space: nowrap;
    display: block;
}

/* small desktops */
@media (min-width: 981px) and (max-width: 1279px) {
    .et_pb_section .full-x-header.studio h1.et_pb_module_header {
        font-size: 80px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .et_pb_section .full-x-header.studio h1.et_pb_module_header {
        padding-top: 30px;
    }
}

/* -- Favorite this location button -- */
.simplefavorite-button {
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-size: 35px;
    letter-spacing: 2px;
    border: none;
    padding: 30px 100px 30px 92px;
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
    left: 53px;
    position: relative;
    cursor: pointer;
}

.simplefavorite-button i,
.simplefavorite-button span {
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    white-space: nowrap;
    display: inline-block;
}

.simplefavorite-button i {
    vertical-align: middle;
}


@media (max-width: 980px) {
    .simplefavorite-button {
        margin-top: 0;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .simplefavorite-button {
        font-size: 28px;
    }
}


@media (max-width: 767px) {
    .simplefavorite-button {
        font-size: 18px;
        padding: 10px 80px 10px 30px;
    }
}
/* heart icon */
button.simplefavorite-button .fa.fa-heart-o:before,
button.simplefavorite-button .fa.fa-heart:before {
    font-family: 'ETModules';
}


/* footer widget */
#custom_html-3.widget_text {
    margin-bottom: 20px;
}

#custom_html-4.widget_text h4.title {
    font-size: 18px;
    padding-bottom: 3px;
}

#custom_html-4.widget_text ul.favorites-list li {
    padding: 5px;
}
/* -- Studios - welcomem message -- */
.welcome-message::after {
    content: url(/wp-content/uploads/fitness-home-logo.png);
    top: -111px;
    position: relative;
    left: -158px;
}

.welcome-message {
    display: flex;
}

.welcome-message .et_pb_text_inner {
    margin: 0 auto;
}

.welcome-message .et_pb_text_inner strong {
    font-family: futura-pt-bold, sans-serif;
}

/* responsive */
@media (min-width: 1745px) and (max-width: 1834px) {
    .welcome-message::after {
        left: -100px;
    }
}

@media (min-width: 1580px) and (max-width: 1744px) {
    .welcome-message::after {
        left: -40px;
    }
}

@media (min-width: 1538px) and (max-width: 1579px) {
    .welcome-message::after {
        left: 20px;
    }
}

@media (min-width: 1420px) and (max-width: 1537px) {
    .welcome-message::after {
        left: -50px;
    }

    .welcome-message-row .welcome-message {
        font-size: 75px;
    }

    .welcome-message-row .welcome-sub-text {
        width: 69%;
        left: -50px;
    }

    .welcome-message-row .welcome-franchise {
        width: 71%;
        left: -34px;
    	position: relative;
    }
}

@media (min-width: 1336px) and (max-width: 1419px) {
    .welcome-message::after {
        left: -5px;
    }

    .welcome-message-row .welcome-message {
        font-size: 75px;
    }

    .welcome-message-row .welcome-sub-text {
        width: 69%;
        left: -50px;
    }

    .welcome-message-row .welcome-franchise {
        width: 71%;
        left: -34px;
    	position: relative;
    }
}

@media (min-width: 1130px) and (max-width: 1335px) {
    .welcome-message::after {
        left: -5px;
    }

    .welcome-message-row .welcome-message {
        font-size: 60px;
    }

    .welcome-message-row .welcome-sub-text {
        width: 62%;
        left: -50px;
        font-size: 30px;
    }

    .welcome-message-row .welcome-franchise {
        width: 60%;
    	left: -58px;
    	position: relative;
        font-size: 19px;
    }
}

@media (min-width: 981px) and (max-width: 1129px) {
    .welcome-message::after {
        left: -5px;
    }

    .welcome-message-row .welcome-message {
        font-size: 46px;
    }

    .welcome-message-row .welcome-sub-text {
        width: 62%;
        left: -50px;
        font-size: 25px;
    }

    .welcome-message-row .welcome-franchise {
        width: 60%;
    	left: -58px;
    	position: relative;
        font-size: 18px;
    }
}


@media (min-width: 935px) and (max-width: 980px) {
    .welcome-message::after {
        left: -96px;
        top: -86px;
        content: url(/wp-content/uploads/fitness-home-logo-smaller.png);
    }

    .welcome-message-row .welcome-sub-text {
        width: 55%;
        left: -50px;
    }

    .welcome-message-row .welcome-franchise {
        width: 52%;
    	left: -58px;
    	position: relative;
    }
}

@media (min-width: 840px) and (max-width: 934px) {
    .welcome-message::after {
        left: -60px;
        top: -86px;
        content: url(/wp-content/uploads/fitness-home-logo-smaller.png);
    }

    .welcome-message-row .welcome-sub-text {
        width: 55%;
        left: -50px;
    }

    .welcome-message-row .welcome-franchise {
        width: 52%;
    	left: -58px;
    	position: relative;
    }
}

@media (min-width: 768px) and (max-width: 839px) {
    .welcome-message::after {
        left: -20px;
        top: -86px;
        content: url(/wp-content/uploads/fitness-home-logo-smaller.png);
    }

    .welcome-message-row .welcome-sub-text {
        width: 66%;
        left: -50px;
    }

    .welcome-message-row .welcome-franchise {
        width: 63%;
    	left: -58px;
    	position: relative;
    }
}

@media (max-width: 767px) {
    .welcome-message::after {
        content: none;
    }
}

@media (min-width: 2150px) {
    .welcome-message-row .welcome-message::after {
        top: -160px;
    }
}

@media (min-width: 2150px) and (max-width: 2290px) {
    .welcome-message-row .welcome-message::after {
        left: -325px;
    }
}

@media (min-width: 2291px) and (max-width: 2400px) {
    .welcome-message-row .welcome-message::after {
        left: -380px;
    }
}

@media (min-width: 2401px) and (max-width: 2520px) {
    .welcome-message-row .welcome-message::after {
        left: -435px;
    }
}

@media (min-width: 2521px) {
    .welcome-message-row .welcome-message::after {
        left: -490px;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .welcome-message-row.studio-pg .et_pb_column {
        width: 23% !important;
        margin-right: 2% !important;
    }
}

@media (max-width: 767px) {
    .welcome-message-row.studio-pg .et_pb_column {
        width: 48% !important;
        margin-right: 2% !important;
    }
}

/* -- Contact Info Section -- */
.contact-info-section .col-1 {
    display: flex;
    margin: auto;
}

.contact-info-section .session-btn.et_pb_button {
    font-weight: 400;
}

@media (min-width: 981px) {
    .contact-info-section .col-1 {
        width: 36.7%;

    }

    .contact-info-section .col-2 {
        width: 57.8%;
    }
}

@media (min-width: 981px) and (max-width: 1279px) {
    .contact-info-section .col-1 {
        padding-left: 0;
        padding-right: 0;

    }
}

@media (min-width: 1490px) and (max-width: 1580px) {
    .contact-info-section .session-btn.et_pb_button {
        font-size: 18px;
    }
}

@media (min-width: 1390px) and (max-width: 1489px) {
    .contact-info-section .session-btn.et_pb_button {
        font-size: 16px;
    }
}

@media (min-width: 190px) and (max-width: 1389px) {
    .contact-info-section .session-btn.et_pb_button {
        font-size: 13px;
    }
}
/* -- Blue CTA Section -- */
/* white skew button */
.white-skew-btn {
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
    position: relative;
}

.white-skew-btn button {
    background-color: #fff;
    border: 2px solid #fff;
    color: #3f296d;
    padding: 0 70px 5px 70px;
    font-family: futura-pt, sans-serif;
    font-size: 36px;
    letter-spacing: 2px;
    line-height: 1.7em!important;
    font-weight: 500!important;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    text-align: right;
}

.white-skew-btn button:hover {
    color: #00adf1;
}

.white-skew-btn-text {
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .white-skew-btn button {
        padding: 0 80px 5px 80px;
        font-size: 23px;
    }
}

/* position of button */
@media (min-width: 1665px) and (max-width: 1820px) {
    .blue-cta-row .btn-code-module {
        left: -110px;
    }
}

@media (min-width: 1510px) and (max-width: 1664px) {
    .blue-cta-row .btn-code-module {
        left: -60px;
    }
}

@media (min-width: 1310px) and (max-width: 1509px) {
    .blue-cta-row .btn-code-module {
        left: 0;
    }
}

@media (min-width: 1170px) and (max-width: 1309px) {
    .blue-cta-row .cta {
        font-size: 50px;
    }

    .white-skew-btn button {
        font-size: 30px;
    }

    .blue-cta-row .btn-code-module {
        left: 0;
    }
}

@media (min-width: 981px) and (max-width: 1169px) {
    .blue-cta-row .cta {
        font-size: 40px;
    }

    .white-skew-btn button {
        font-size: 25px;
    }

    .blue-cta-row .btn-code-module {
        left: 0;
    }
}

@media (max-width: 980px) {
    .btn-col {
        display: flex;
    }

    .btn-col .btn-code-module {
        margin: auto;
    }

    .white-skew-btn button {
        font-size: 28px;
    }
}

/* -- Instructors -- */
.instructor-items .et_pb_blurb .et_pb_module_header {
    padding-bottom: 0;
}

.instructor-items .et_pb_blurb .et_pb_main_blurb_image {
    margin-bottom: 20px;
    background-color: #00adf1;
    border-radius: 200px;
}

.instructor-items .et_pb_blurb,
.instructor-items .et_pb_blurb .et_pb_main_blurb_image img {
    transition: all 0.3s ease-in-out;
}

.instructor-items .et_pb_blurb:hover .et_pb_main_blurb_image img {
    opacity: 0.4;
}

/* view bio button
.instructor-items .et_pb_blurb .et_pb_module_header .hover-skew-btn {
    display: none;
}

.instructor-items .et_pb_blurb:hover .et_pb_module_header .hover-skew-btn {
    display: block;
    position: absolute;
    top: 34%;
    left: 22%;
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
}

.instructor-items .et_pb_blurb:hover .et_pb_module_header .hover-skew-btn button {
    color: #fff;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    border: 2px solid #fff;
    background: transparent;
    padding: 8px 50px 10px 50px;
    line-height: 1.7em!important;
    cursor: pointer;
}

.instructor-items .et_pb_blurb:hover .et_pb_module_header .hover-skew-btn button:hover {
    color: #3f296d;
}

.instructor-items .et_pb_blurb:hover .et_pb_module_header .hover-skew-btn-text {
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    white-space: nowrap;
}

@media (min-width: 1281px) and (max-width: 1600px) {
    .instructor-items .et_pb_blurb:hover .et_pb_module_header .hover-skew-btn button {
        font-size: 16px;
    	padding: 8px 30px 10px 30px;
    }

    .instructor-items .et_pb_blurb:hover .et_pb_module_header .hover-skew-btn {
        top: 30%;
    	left: 18%;
    }
}

@media (min-width: 981px) and (max-width: 1280px) {
    .instructor-items .et_pb_blurb:hover .et_pb_module_header .hover-skew-btn button {
        font-size: 15px;
    	padding: 8px 20px 10px 20px;
    }

    .instructor-items .et_pb_blurb:hover .et_pb_module_header .hover-skew-btn {
        top: 30%;
    	left: 18%;
    }
}

@media (max-width: 980px) {
    .instructor-items .et_pb_blurb:hover .et_pb_module_header .hover-skew-btn {
        display: none;
    }
} */


/* Slider */
.slick-slide {
    float: left;
    padding: 0 10px;
}

/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 26%;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'ETModules';
    font-size: 36px;
    line-height: 1;
    opacity: 1;
    color: #3f296d;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -100px;
}
div#gform_wrapper_7 {
    display: block!important;
}

@media (max-width: 767px) {
    .slick-prev {
        left: -38px;
    }
}

[dir='rtl'] .slick-prev {
    right: -25px;
    left: auto;
}

.slick-prev:before {
    content: '\f053';
}

[dir='rtl'] .slick-prev:before {
    content: '\f054';
}

.slick-next {
    right: -88px;
}

@media (max-width: 767px) {
    .slick-next {
        right: -33px;
    }
}

[dir='rtl'] .slick-next {
    right: auto;
    left: -25px;
}

.slick-next:before {
    content: '\f054';
}

[dir='rtl'] .slick-next:before {
    content: '\f054';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'ETModules';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '•';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

/* -- Do what you love CTA section -- */
/* width of body copy */
@media (min-width: 981px) and (max-width: 1366px) {
    .love-body-copy {
        width: 80% !important;
    }
}

.purple-skew-btn {
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
    position: relative;
}

.purple-skew-btn button {
    background-color: #3f296d;
    border: 2px solid #3f296d;
    color: #fff;
    padding: 5px 60px 5px 60px;
    font-family: futura-pt, sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    line-height: 1.7em !important;
    font-weight: 400 !important;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    text-align: right;
}


.purple-skew-btn button:hover {
    color: #00adf1;
}

.purple-skew-btn-text {
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    white-space: nowrap;
}

@media (max-width: 767px) {
    .purple-skew-btn button {
        padding: 0 30px 5px 30px;
        font-size: 23px;
		white-space: normal!important;
    }
}

/* -- Tabs -- */
/* controls */
.studio-tabs .et_pb_tabs_controls li {
    width: 50%;
    text-align: center;
}

.studio-tabs .et_pb_tabs_controls li a {
    padding: 20px;
    text-align: center;
    display: block;
}

@media screen and (max-width: 767px) {
    .studio-tabs .et_pb_tabs_controls li {
        width: 100%;
    }

    .studio-tabs .et_pb_all_tabs .et_pb_tab {
        padding: 0;
    }
}

@media (min-width: 981px) and (max-width: 1280px) {
    .studio-tabs .et_pb_tabs_controls li a {
        font-size: 28px !important;
    }
}

/* bold blue text */
/*
.studio-tabs .et_pb_tab_content strong {
    color: #00adf1;
} */

/* links */
.studio-tabs .et_pb_tab_content a {
    color: #00adf1;
}

/* white headings */
.studio-tabs .et_pb_tab_content h1,
.studio-tabs .et_pb_tab_content h2,
.studio-tabs .et_pb_tab_content h3,
.studio-tabs .et_pb_tab_content h4,
.studio-tabs .et_pb_tab_content h5,
.studio-tabs .et_pb_tab_content h6 {
    color: #fff;
}

/* -- Three Column Links -- */
/* tablet */
@media (min-width: 768px) and (max-width: 980px) {
    .three-blurbs-row .et_pb_column {
        width: 31.3333%;
        margin-right: 3%;
    }
}

/* Gallery */
body .mfp-wrap {
    z-index: 1000003;
}

.mfp-content figure img.mfp-img {
    box-shadow: 1px 1px 20px 5px rgb(34 34 34 / 0.15);
    /* border: 15px solid #fff; */
    padding: 0;
}

.custom-gallery .et_pb_gallery_grid .et_pb_gallery_items .et_pb_gallery_item {
    margin-right: 2.5%;
    margin-bottom: 2.5%;
}

/* -- Contact Section -- */
@media (max-width: 980px) {
    .contact-row .et_pb_column {
        margin-bottom: 0;
    }
}

/* -- Get Started pages -- */

.full-x-header.get-started-header .et_pb_fullwidth_header_container .header-content h1.et_pb_module_header em  {
    font-weight: normal;
    font-size: 40%;
    vertical-align: super;
}

.full-x-header.get-started-header h1.et_pb_module_header {
    padding-top: 150px;
    width: 100%;
    margin: auto;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
}

.full-x-header.get-started-header .et_pb_fullwidth_header_container .header-content {
    max-width: 100%;
}

/* small desktops */
@media (min-width: 981px) and (max-width: 1279px) {
    .et_pb_section .full-x-header.get-started-header h1.et_pb_module_header {
        font-size: 80px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .et_pb_section .full-x-header.get-started-header h1.et_pb_module_header {
        padding-top: 30px;
    }
}

/* smaller headers */
.small-header.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center .header-content {
    width: 100%;
    max-width: 100%;
}

.small-header.et_pb_fullwidth_header .et_pb_fullwidth_header_container.center {
    max-width: 100%;
}

.small-header h1.et_pb_module_header {
    width: 100%;
    margin: auto;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
}

.small-header .header-content .et_pb_button_one {
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
}

.small-header .header-content .et_pb_button_one span {
    -ms-transform: skewX(22deg);
    -webkit-transform: skewX(22deg);
    transform: skewX(22deg);
    white-space: nowrap;
    display: block;
}

/* small desktops */
@media (min-width: 981px) and (max-width: 1279px) {
    .et_pb_section .small-header.studio h1.et_pb_module_header {
        font-size: 80px;
    }
}

/* mobile */
@media (max-width: 767px) {
    .et_pb_section .small-header {
        padding: 0;
    }

    .et_pb_section .small-header.studio h1.et_pb_module_header {
        line-height: 1em;
    }
}

.et_pb_fullwidth_header.reduced-padding .et_pb_fullwidth_header_container.center .header-content {
    margin: 0 auto;
}


/* custom offer */
body #page-container .et_pb_section.custom-offer-section .et_pb_button_module_wrapper a.custom-offer-get-started-btn:hover {
        background-color: #00adf1 !important;
}

/* header button */
.full-x-header.get-started-header .header-content .et_pb_more_button,
.full-x-header.get-started-header .header-content .et_pb_more_button > span {
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
}

.full-x-header.get-started-header .header-content .et_pb_more_button span > span {
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    white-space: nowrap;
    display: block;
}

body .full-x-header.get-started-header .header-content .et_pb_more_button:hover {
    background-color: #fff !important;
}


/* ---------- Education page ---------- */
/* -- Header -- */
@media (min-width: 1360px) and (max-width: 1465px) {
    .custom-primary.education .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li {
        padding-left: 7px;
    	padding-right: 7px;
    }
}

@media (min-width: 1135px) and (max-width: 1359px) {
    .custom-primary.education .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li {
        padding-left: 6px;
    	padding-right: 6px;
    }

    .custom-primary.education .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li a {
        font-size: 20px;
    }
}

@media (min-width: 981px) and (max-width: 1134px) {
    .custom-primary.education .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li {
        padding-left: 4px;
    	padding-right: 4px;
    }

    .custom-primary.education .et_pb_menu_inner_container .et_pb_menu__wrap .et_pb_menu__menu .et-menu li a {
        font-size: 17px;
    }
}

/* -- Slider -- */
.full-x-header-slider .et_pb_slide_description {
    padding: 0 !important;
}


.full-x-header-slider .et_pb_slides {
    height: 100vh !important;
}


.full-x-header-slider .et_pb_slide {
    height: 88% !important;
}

/* Overlay */
.full-x-header-slider .et_pb_slide_overlay_container {
    background: url(/wp-content/uploads/overlay-x-3.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    mix-blend-mode: multiply;
    backface-visibility: hidden;
}


@media (min-width: 768px) and (max-width: 980px) {
    .full-x-header-slider .et_pb_slides .et_pb_slide {
        min-height: 500px;
    }
}


/* Text */
.full-x-header-slider.et_pb_slider .et_pb_container {
    max-width: 100%;
}

.full-x-header-slider h2.et_pb_slide_title {
    width: 100%;
    margin: auto;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
}

@media (max-width: 767px) {
    /* Text */
    .full-x-header-slider h2.et_pb_slide_title {
        width: 100%;
        margin: auto;
    }

    /* Overlay */

    .full-x-header-slider .et_pb_fullwidth_header_container .header-content-container {
        margin-top: 0;
    }

    .full-x-header-slider.et_pb_fullwidth_header .et_pb_fullwidth_header_container,
    .full-x-header-slider.et_pb_fullwidth_header {
        min-height: 400px !important;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .full-x-header-slider.et_pb_fullwidth_header .et_pb_fullwidth_header_container,
    .full-x-header-slider.et_pb_fullwidth_header {
        min-height: 906px !important;
    }
}


.full-x-header-slider .et_pb_slider_container_inner .et_pb_more_button {
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
}

.full-x-header-slider .et_pb_slider_container_inner .et_pb_more_button span {
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    white-space: nowrap;
    display: block;
}

body .full-x-header-slider .et_pb_slider_container_inner .et_pb_more_button:hover {
    background-color: #fff !important;
}

/* small desktops */
@media (min-width: 981px) and (max-width: 1279px) {
    .et_pb_section .full-x-header-slider h2.et_pb_slide_title {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .full-x-header-slider .et_pb_slide_content h1{
        font-size: 18px;
    }
}



/* change the animation of the slider text */
.full-x-header-slider.education .et-pb-active-slide .et_pb_slide_description {
    animation-name: fadeRight;
}

/* -- Fixed Sub Menu -- */
#floating-menu-section {
    top: 88vh;
}

/* -- Fixed Sub Menu /franchise/ -- */
.page-id-179 #floating-menu-section {
    top: 60vh;
}
/* -- End Fixed Sub Menu /franchise/ -- */
/* -- Fixed Sub Menu /franchise/ -- */
.page-id-177 #floating-menu-section {
    top: 64vh;
}
/* -- End Fixed Sub Menu /franchise/ -- */

@media (min-width: 981px) {
    #floating-menu-section.fixed-scroll {
        position: fixed !important;
        width: 264px;
        top: 95px;
        left: 0;
        background: #fff;
        padding: 20px 0;
        z-index: 999999;
    }
}

.floating-menu.et_pb_menu ul.et-menu {
    display:block;
    box-shadow: 0px 8px 20px 0px rgba(0,0,0,0.2);
    border-radius: 5px;
    width: 264px;
    background-color: #fff;
}

.floating-menu.et_pb_menu ul.et-menu>li {
    border-bottom: 1px solid #E4E5EC;
}

.floating-menu.et_pb_menu ul.et-menu>li a {
    padding-bottom: 28px;
    padding-top: 28px;
    padding-left: 50px;
    padding-right: 20px;
    width: 100%;
}

.floating-menu.et_pb_menu ul.et-menu li.sub-menu-logo {
    padding: 10px 50px;
}

/* -- All sections that need to shift for the sub menu -- */
@media (min-width: 1150px) and (max-width: 1780px) {
    #journey,
    #course-schedule,
    #course-descriptions,
    #additional-studies,
    #testimonials,
    #experience,
    #about,
    #new-to-imx-toggles,
    #workouts,
    #workouts-content,
    #private,
    #advantages,
    #reach,
    #franchise {
        padding-left: 150px;
    }
}

@media (min-width: 981px) and (max-width: 1149px) {
    #journey,
    #course-schedule,
    #course-descriptions,
    #additional-studies,
    #testimonials,
    #experience,
    #about,
    #new-to-imx-toggles,
    #workouts,
    #workouts-content,
    #private,
    #advantages,
    #reach,
    #franchise {
        padding-left: 200px;
    }
}

/* banners with buttons */
@media (max-width: 480px) {
    .full-x-header-slider .et_pb_slides .et_pb_slide .et_pb_container .et_pb_button_wrapper a {
        font-size: 16px;
    }

    .full-x-header-slider .et_pb_slides .et_pb_slide .et_pb_container .et_pb_button_wrapper a span {
        white-space: initial;
        line-height: 1.3em;
    }
}


/* -- Integrated Movement Xercize section -- */
/* video mask */
.video-col .et_pb_section_video_bg {
    filter: grayscale(1);
}

@media (min-width: 981px) and (max-width: 1280px) {
    .imx-video-section {
        overflow-x: hidden;
    }

    .imx-video-section .et_pb_column {
        width: 100%;
        margin-right: 0;
    }

    .video-col .et_pb_section_video_bg {
        width: 560px;
    }
}

.video-mask {
  -webkit-mask-image: url("/wp-content/uploads/video-mask-svg-1.svg");
  mask-image: url("/wp-content/uploads/video-mask-svg-1.svg");
  -webkit-mask-size: auto;
  mask-size: auto;
  -webkit-mask-repeat: no-repeat;
}

.video-mask .et_pb_video_box {
    height: 565px;
    display: flex;
    filter: grayscale(1);
    overflow: hidden;
}

.video-mask .et_pb_video_box video {
    transform: scale(2.1);
    margin: auto;
}

@media (min-width: 981px) and (max-width: 1825px) {
    .video-mask .et_pb_video_box video {
        transform: scale(1.8);
    }
}

@media (min-width: 2500px)  {
    .video-mask .et_pb_video_box {
        height: 770px;
    }
}

@media (min-width: 1800px) and (max-width: 1885px) {
    .video-mask .et_pb_video_box {
        height: 460px;
    }
}

@media (min-width: 1760px) and (max-width: 1799px) {
    .video-mask .et_pb_video_box {
        height: 450px;
    }
}

@media (min-width: 1700px) and (max-width: 1759px) {
    .video-mask .et_pb_video_box {
        height: 430px;
    }
}

@media (min-width: 1605px) and (max-width: 1699px) {
    .video-mask .et_pb_video_box {
        height: 400px;
    }
}

@media (min-width: 1490px) and (max-width: 1604px) {
    .video-mask .et_pb_video_box {
        height: 370px;
    }
}

@media (min-width: 1390px) and (max-width: 1489px) {
    .video-mask .et_pb_video_box {
        height: 340px;
    }
}

@media (min-width: 1260px) and (max-width: 1389px) {
    .video-mask .et_pb_video_box {
        height: 300px;
    }
}

@media (min-width: 1140px) and (max-width: 1259px) {
    .video-mask .et_pb_video_box {
        height: 270px;
    }

    .imx-video-section .col-2 {
        padding-left: 50px;
    }
}

@media (min-width: 1015px) and (max-width: 1139px) {
    .video-mask .et_pb_video_box {
        height: 230px;
    }

    .imx-video-section .col-2 {
        padding-left: 50px;
    }
}

@media (min-width: 981px) and (max-width: 1014px) {
    .video-mask .et_pb_video_box {
        height: 200px;
    }

    .imx-video-section .col-2 {
        padding-left: 50px;
    }
}
/*
@media (min-width: 768px) and (max-width: 980px) {
    .video-mask .et_pb_video_box video {
        transform: scale(1.2);
    }
} */

@media (max-width: 400px) {
    .video-mask .et_pb_video_box {
        height: 300px;
    }
}

@media (min-width: 401px)and (max-width: 520px) {
    .video-mask .et_pb_video_box {
        height: 400px;
    }
}

@media (min-width: 521px)and (max-width: 767px) {
    .video-mask .et_pb_video_box {
        height: 500px;
    }
}

/* -- Course Descriptions -- */
.description-row .et_pb_blurb .et_pb_blurb_container {
    padding: 50px 30px;
}

.description-row .et_pb_blurb .et_pb_blurb_description a {
    color: #00adf1;
    font-weight: bold;
}

.description-row .et_pb_column {
    padding-bottom: 50px;
}

@media (min-width: 1805px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
    	height: 350px;
    }
}

@media (min-width: 1783px) and (max-width: 1804px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 400px !important;
    }
}

@media (min-width: 1740px) and (max-width: 1782px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 430px !important;
    }
}

@media (min-width: 1660px) and (max-width: 1739px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 470px !important;
    }
}

@media (min-width: 1613px) and (max-width: 1659px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 530px !important;
    }

    .description-row .et_pb_blurb {
        max-height: 700px !important;
    }
}

@media (min-width: 1565px) and (max-width: 1612px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 580px !important;
    }

    .description-row .et_pb_blurb {
        max-height: 700px !important;
    }
}

@media (min-width: 1520px) and (max-width: 1564px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 630px !important;
    }

    .description-row .et_pb_blurb {
        max-height: 700px !important;
    }
}

@media (min-width: 1475px) and (max-width: 1519px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 700px !important;
    }

    .description-row .et_pb_blurb {
        max-height: 700px !important;
    }
}

@media (min-width: 1379px) and (max-width: 1474px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 500px !important;
    }

    .description-row .et_pb_blurb {
        max-height: 500px !important;
    }

    .description-row .et_pb_blurb .et_pb_main_blurb_image {
        width: 250px !important;
    }
}

@media (min-width: 1307px) and (max-width: 1378px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 500px !important;
    }

    .description-row .et_pb_blurb {
        max-height: 500px !important;
    }

    .description-row .et_pb_blurb .et_pb_main_blurb_image {
        width: 200px !important;
    }

    .description-row .et_pb_blurb.img-adjustment img {
        object-position: 11% 100% !important;
    }
}

@media (min-width: 1176px) and (max-width: 1306px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 600px !important;
    }

    .description-row .et_pb_blurb {
        max-height: 600px !important;
    }

    .description-row .et_pb_blurb .et_pb_main_blurb_image {
        width: 200px !important;
    }

    .description-row .et_pb_blurb.img-adjustment img {
        object-position: 11% 100% !important;
    }

    .description-row .et_pb_blurb.img-adjustment-2 img {
        object-position: 59% 100% !important;
    }

    .description-row .et_pb_blurb.img-adjustment-8 img,
    .description-row .et_pb_blurb.img-adjustment-3 img {
        object-position: 30% 100% !important;
    }

    .description-row .et_pb_blurb.img-adjustment-9 img {
        object-position: 37% 100% !important;
    }
}


@media (min-width: 981px) and (max-width: 1175px) {
    .description-row .et_pb_column {
        width: 100%;
    }

    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 435px !important;
    }

    .description-row .et_pb_blurb {
        max-height: 435px !important;
    }

    .description-row .et_pb_blurb .et_pb_main_blurb_image {
        width: 350px !important;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .description-row .et_pb_column {
        width: 100%;
    }

    .description-row .et_pb_blurb .et_pb_image_wrap img {
        height: 380px !important;
    }

    .description-row .et_pb_blurb {
        max-height: 380px !important;
    }

    .description-row .et_pb_blurb .et_pb_main_blurb_image {
        width: 350px !important;
    }
}

@media (max-width: 980px) {
    .description-row .et_pb_column {
        margin-bottom: 0;
    }
}

@media (min-width: 768px) {
    .description-row .et_pb_blurb .et_pb_image_wrap img {
        width: 350px;
    	object-fit: cover;
    	object-position: left;
    }

    .description-row .et_pb_blurb .et_pb_main_blurb_image {
        width: 350px;
    }

    .description-row .et_pb_blurb.center-img .et_pb_image_wrap img {
        object-position: center;
    }
}

@media (max-width: 767px) {
    .description-row .et_pb_blurb .et_pb_blurb_container {
        padding: 0 50px 30px 50px;
    }
}

/* -- Testimonials -- */
.custom-testimonial-slider .et_pb_testimonial_slider.dot_nav_class .swiper-pagination-bullets span {
    border-radius: 10px;
    border: 2px solid #fff;
    opacity: 1;
}

.custom-testimonial-slider .et_pb_testimonial_slider.dot_nav_class .swiper-pagination-bullets span.swiper-pagination-bullet-active {
    border: 2px solid #3f296d !important;
}

.custom-testimonial-slider.home .et_pb_testimonial_slider.dot_nav_class .swiper-pagination-bullets span {
    border: 2px solid #3f296d;
}

/* -- FAQs -- */
/* -- Tabs -- */
/* controls */
.faq-tabs .et_pb_tabs_controls li {
    width: 33.3%;
    text-align: center;
}

.faq-tabs .et_pb_tabs_controls li a {
    padding: 20px;
    text-align: center;
    display: block;
}

@media screen and (max-width: 767px) {
    .faq-tabs .et_pb_tabs_controls li {
        width: 100%;
    }

    .faq-tabs .et_pb_all_tabs .et_pb_tab {
        padding: 0;
    }
}

@media (min-width: 1615px) and (max-width: 1710px) {
    .faq-tabs .et_pb_tabs_controls li a {
        font-size: 24px !important;
    }
}

@media (min-width: 1520px) and (max-width: 1614px) {
    .faq-tabs .et_pb_tabs_controls li a {
        font-size: 22px !important;
    }
}

@media (min-width: 1330px) and (max-width: 1519px) {
    .faq-tabs .et_pb_tabs_controls li a {
        font-size: 18px !important;
    }
}

@media (min-width: 1210px) and (max-width: 1329px) {
    .faq-tabs .et_pb_tabs_controls li a {
        font-size: 18px !important;
        padding: 10px;
    }
}

@media (min-width: 1140px) and (max-width: 1209px) {
    .faq-tabs .et_pb_tabs_controls li a {
        font-size: 17px !important;
        padding: 8px;
    }
}

@media (min-width: 1070px) and (max-width: 1139px) {
    .faq-tabs .et_pb_tabs_controls li a {
        font-size: 16px !important;
        padding: 6px;
    }
}

@media (min-width: 981px) and (max-width: 1069px) {
    .faq-tabs .et_pb_tabs_controls li a {
        font-size: 14px !important;
        padding: 5px;
    }
}

/* tab content area */
.faq-tabs.et_pb_tabs .et_pb_all_tabs .et_pb_tab {
    padding-top: 50px;
    padding-right: 60px;
    padding-bottom: 50px;
    padding-left: 60px;
}

@media (max-width: 980px) {
    .faq-tabs.et_pb_tabs .et_pb_all_tabs .et_pb_tab {
        padding-top: 25px;
        padding-right: 30px;
        padding-bottom: 25px;
        padding-left: 30px;
    }
}

/* accordions */
#custom-faq-accordion .et_pb_accordion .et_pb_toggle {
    margin-bottom: 0;
    padding: 15px 5px;
}

/* icons */
#custom-faq-accordion .et_pb_accordion .et_pb_toggle .et_pb_toggle_title:before {
        content: url(/wp-content/uploads/Icon-awesome-plus.svg);
}

#custom-faq-accordion .et_pb_accordion .et_pb_toggle.et_pb_toggle_open .et_pb_toggle_title:before {
    content: url(/wp-content/uploads/Icon-awesome-minus-white.svg);
    top: 7px;
    width: 20px;
}

@media (min-width: 1280px) and (max-width: 1519px) {
    #custom-faq-accordion .et_pb_accordion .et_pb_toggle h3.et_pb_toggle_title {
        font-size: 18px !important;
    }
}


@media (min-width: 981px) and (max-width: 1279px) {
    #custom-faq-accordion .et_pb_accordion .et_pb_toggle h3.et_pb_toggle_title {
        font-size: 16px !important;
    }

    #custom-faq-accordion .et_pb_accordion .et_pb_toggle .et_pb_toggle_title:before,
    #custom-faq-accordion .et_pb_accordion .et_pb_toggle.et_pb_toggle_open .et_pb_toggle_title:before {
        transform: scale(-0.7);
    }
}

/* -- Three column buttons -- */
.three-col-btns-row .purple-skew-btn button {
    background-color: #3f296d;
    border: 2px solid #3f296d;
    color: #fff;
    padding: 5px 60px 5px 60px;
    font-family: futura-pt, sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    line-height: 1.7em !important;
    font-weight: 400 !important;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
    text-align: center;
    width: 470px;
}

.three-col-btns-row .purple-skew-btn button:hover {
    color: #00adf1;
}

@media (min-width: 981px) and (max-width: 1781px) {
    .three-col-btns-row .purple-skew-btn button {
        padding: 5px 0 5px 0;
    }
}

@media (min-width: 1045px) and (max-width: 1559px) {
    #xtras .three-col-btns-row {
        padding-left: 100px;
    }
}

@media (min-width: 1560px) and (max-width: 1781px) {
    .three-col-btns-row .purple-skew-btn button {
        width: 430px;
    }
}

@media (min-width: 1370px) and (max-width: 1559px) {
    .three-col-btns-row .purple-skew-btn button {
        font-size: 24px;
        width: 340px;
    }
}

@media (min-width: 1225px) and (max-width: 1369px) {
    .three-col-btns-row .purple-skew-btn button {
        font-size: 22px;
        width: 300px;
    }
}

@media (min-width: 1160px) and (max-width: 1224px) {
    .three-col-btns-row .purple-skew-btn button {
        font-size: 20px;
        width: 280px;
    }
}

@media (min-width: 1045px) and (max-width: 1159px) {
    .three-col-btns-row .purple-skew-btn button {
        font-size: 18px;
        width: 250px;
    }
}

@media (min-width: 1015px) and (max-width: 1044px) {
    #xtras .three-col-btns-row {
        padding-left: 150px;
    }

    .three-col-btns-row .purple-skew-btn button {
        font-size: 16px;
        width: 225px;
    }
}

@media (min-width: 981px) and (max-width: 1014px) {
    #xtras .three-col-btns-row {
        padding-left: 120px;
    }

    .three-col-btns-row .purple-skew-btn button {
        font-size: 15px;
        width: 225px;
    }
}

@media (max-width: 767px) {
    .three-col-btns-row .purple-skew-btn button {
        font-size: 18px;
    	width: 265px;
    	padding: 5px 0px 5px 0px;
    }
}

/* -- Request Info popup Form -- */
/* close button */
#et-boc .area-outer-wrap .da-close-wrap .da-close {
    color: #f0edf4;
    background: #00adf1;
    margin: 20px;
    font-size: 30px;
}

.da-overlay {
    background: rgb(63 41 109 / 0.92);
}

/* - Gravity Form - */
/* Gravity Forms - make the text darker */
body #request-info .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body #request-info .gform_wrapper textarea.textarea, body div.form_saved_message div.form_saved_message_emailform form input[type=text],
body #request-info .gform_wrapper select {
    color: #222;
    font-size: 18px;
    font-family: pt-sans, sans-serif;
    font-weight: normal;
}


/* Gravity Forms - button */
body #request-info .gform_wrapper .gform_footer button,
body #request-info .gform_wrapper .gform_page_footer button,
body #request-info div.form_saved_message div.form_saved_message_emailform button {
    font-family: futura-pt, sans-serif;
    color: #fff;
    font-weight: 500;
    font-size: 35px;
    border: 3px solid #3f296d;
    padding: 8px 90px;
    letter-spacing: 0;
    background-color: #3f296d;
    cursor: pointer;
    margin-top: 5px;
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
    white-space: nowrap;
}

body #request-info .gform_wrapper .gform_footer button span,
body #request-info .gform_wrapper .gform_page_footer button span,
body #request-info div.form_saved_message div.form_saved_message_emailform button span {
    -ms-transform: skewX(40deg);
    -webkit-transform: skewX(40deg);
    transform: skewX(40deg);
    display: block;
}

@media (max-width: 980px) {
    body #request-info .gform_wrapper .gform_footer button,
    body #request-info .gform_wrapper .gform_page_footer button,
    body #request-info div.form_saved_message div.form_saved_message_emailform button {
        font-size: 25px;
    }
}


body #request-info .gform_wrapper .gform_footer button:hover,
body #request-info .gform_wrapper .gform_page_footer button:hover,
body #request-info div.form_saved_message div.form_saved_message_emailform button:hover {
    color: #00adf1;
    background-color: #3f296d;
}

body #request-info .gform_wrapper .gform_footer {
    text-align: center;
    margin: 0;
    padding: 10px 0 0 0;
}
/* fields */
body #request-info .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body #request-info .gform_wrapper textarea.textarea,
body div.form_saved_message div.form_saved_message_emailform form input[type=text],
body #request-info .gform_wrapper select{
    background-color: #fff;
    border: none;
    box-shadow: 0px 0px 6px rgb(0 0 0 / 0.16);
    margin-top: 10px !important;
}

body .gform_wrapper .top_label li.gfield.gf_left_half,
body .gform_wrapper .top_label li.gfield.gf_right_half {
    padding-right: 10px;
}


#request-info .gform_body .gform_fields .gfield input::-webkit-input-placeholder,
#request-info .gform_body .gform_fields .gfield textarea::-webkit-input-placeholder,
#request-info .gform_body .gform_fields .gfield select::-webkit-input-placeholder {
  	color: #222;
    font-size: 18px;
    font-family: pt-sans, sans-serif;
    font-weight: normal;
}

#request-info .gform_body .gform_fields .gfield input::-moz-placeholder,
#request-info .gform_body .gform_fields .gfield textarea::-moz-placeholder,
#request-info .gform_body .gform_fields .gfield select::-moz-placeholder {
  	color: #222;
    font-size: 18px;
    font-family: pt-sans, sans-serif;
    font-weight: normal;
}

#request-info .gform_body .gform_fields .gfield input:-ms-input-placeholder,
#request-info .gform_body .gform_fields .gfield textarea:-ms-input-placeholder,
#request-info .gform_body .gform_fields .gfield select:-ms-input-placeholder {
  	color: #222;
    font-size: 18px;
    font-family: pt-sans, sans-serif;
    font-weight: normal;
}

#request-info .gform_body .gform_fields .gfield input:-moz-placeholder,
#request-info .gform_body .gform_fields .gfield textarea:-moz-placeholder,
#request-info .gform_body .gform_fields .gfield select:-moz-placeholder {
  	color: #222;
    font-size: 18px;
    font-family: pt-sans, sans-serif;
    font-weight: normal;
}


#request-info .gform_body .gform_fields .gfield select {
    border: none;
}


@media (max-width: 640px) {
    body .gform_wrapper .top_label li.gfield.gf_left_half,
    body .gform_wrapper .top_label li.gfield.gf_right_half {
        padding-right: 0 !important;
    }
}
/* education child pages */
.next-blurb .et_pb_main_blurb_image {
    float: right;
}

.next-blurb .et_pb_blurb_container {
    float: right;
    padding-right: 15px;
    padding-left: 0;
}

.mobile-nav .et_pb_column {
    width: 50% !important;
}


/* ---------- EventOn ---------- */
/* title */
.list_cal .eventon_events_list .eventon_list_event .evcal_desc span.evcal_event_title {
    text-transform: inherit;
    font-size: 20px;
    font-weight: 500;
}
/* meta */
.list_cal .eventon_events_list .eventon_list_event .evcal_desc .evcal_desc_info {
    font-size: 14px;
        opacity: 1;
}

.list_cal .eventon_events_list .eventon_list_event .evcal_desc .evcal_desc_info em.evcal_time,
.list_cal .eventon_events_list .eventon_list_event .evcal_desc .evcal_desc_info em.evcal_local_time {
    display: block;
}

/* number in parenthesis */
.eventon_list_event .evcal_desc_info .evcal_time .evo_endday {
    display: none;
}


/* hover */
.eventon_list_event .desc_trig_outter .desc_trig:hover {
border-color: #00adf1 !important;
}

/* single event */
.list_cal .eventon_list_event .desc_trig_outter .desc_trig {
    padding: 10px 0;
    border-left-width: 6px;
}

.list_cal .eventon_list_event .desc_trig_outter .desc_trig .evcal_desc .evcal_desc3 {
    display: none;
}

.list_cal .eventon_events_list .eventon_list_event .evcal_desc {
    padding-left: 90px;
}
/* color */

.ajde_evcal_calendar.color #evcal_list .eventon_list_event .evoet_cx em {
	color: #00adf1;
}
.list_cal #evcal_list.eventon_events_list .eventon_list_event .evcal_cblock {
    color: #00adf1;
}

.eventon_events_list .eventon_list_event .evcal_cblock em.month {
    color: #222!important;
    font-size: 15px;
}
/* size */
.list_cal #evcal_list.eventon_events_list .eventon_list_event .evcal_cblock .evo_start  em.date {
    font-size: 28px;
}

.list_cal #evcal_list.eventon_events_list .eventon_list_event .evcal_cblock .evo_end  em.date {
    font-size: 18px;
}

/* entire list */
.list_cal #evcal_list {
    border-radius: 0;
    border-right: 1px solid #3f296d;
    border-top: 1px solid #3f296d;
}

/* icons */
.list_cal .eventon_events_list .eventon_list_event .evcal_desc .evcal_time::before,
.evo_pop_body .evcal_desc em.evcal_time::before {
    content: url(/wp-content/uploads/icon_clock_alt.svg);
}

.list_cal .eventon_events_list .eventon_list_event .evcal_desc .evcal_location::before,
.evo_pop_body .evcal_desc em.evcal_location::before {
    content: url(/wp-content/uploads/icon_pin_alt.svg);
}

/* --------- Workout page ---------- */
/* -- banner -- */
.heading-padding .et_pb_slide_title {
    padding-bottom: 0;
}

.full-x-header-slider.workout .et_pb_section_video_bg  {
    opacity: 60%;
    -webkit-opacity: 60%;
    -moz-opacity: 60%;
    display: block;

}

/* everybody - bold the body */

.full-x-header-slider.workout h2.et_pb_slide_title em  {
    font-style: normal;
    font-weight: 900;
}

/* -- about the imx story -- */
@media (min-width: 1921px) {
    .et_pb_column.about-text-col {
        padding-right: 160px;
    }

}


/* -- experience im=x section -- */
.bold-purple strong {
    color: #3f296d;
}

.checklist.more-line-height ul li {
    margin: 0 0 25px !important;
}

.registered .et_pb_module_header em,
.registered .et_pb_text_inner em {
    font-size: 40%;
    vertical-align: super;
}

@media (max-width: 480px) {
    .et_pb_text img.alignleft {
        display: block;
        margin-bottom: 15px;
        margin-right: 0;
        float: none;
    }
}


/* -- workout child pages -- */
.child-page-navigation .et_pb_blurb_position_left .et_pb_blurb_container {
    padding-left: 0;
    padding-right: 10px;
}

@media (max-width: 980px) {
    .child-page-navigation.et_pb_row .et_pb_column {
        margin-bottom: 0px;
    }
}


@media (min-width: 768px) and (max-width: 980px) {
    .child-page-navigation.et_pb_row .et_pb_column {
        width: 50%;
    }
}

@media (max-width: 980px) {
    .child-page-navigation.mobile.et_pb_row .et_pb_column {
        width: 50% !important;
        height: 25px;
    }
    .child-page-navigation.one-step.et_pb_row .et_pb_column {
        width: 100% !important;
    }
}

/* all in one line on mobile */
@media (max-width: 980px) {
    .child-page-navigation.mobile-steps .et_pb_column.col-1,
    .child-page-navigation.mobile-steps .et_pb_column.col-3 {
        width: 28% !important;
    }

    .child-page-navigation.mobile-steps .et_pb_column.col-2 {
        width: 44% !important;
    }

    .child-page-navigation.mobile-steps .et_pb_column.et_pb_column_empty {
        display: block !important;
    }
}

/* -- About section -- */
#about {
    display: flex;
}

@media (max-width: 767px) {
    .about-img {
        content: url(/wp-content/uploads/logo-190px-1.jpg);
        width: 40%;

    }

    .about-img-desktop {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .about-img {
        display: none !important;
    }
}


/* -- New to IMX -- */
/* - toggles - */
/* icons */
.purple-toggles .et_pb_toggle .et_pb_toggle_title:before {
    content: url(/wp-content/uploads/Icon-awesome-plus.svg);
    top: 20px;
    right: 20px;
}

.purple-toggles .et_pb_toggle.et_pb_toggle_open .et_pb_toggle_title:before {
    content: url(/wp-content/uploads/Icon-awesome-minus-white.svg);
    top: 20px;
    right: 20px;
    width: 20px;
}

/* spacing */
.purple-toggles .et_pb_toggle {
    padding: 0;
    margin-bottom: 10px !important;
}

.purple-toggles .et_pb_toggle .et_pb_toggle_title {
    padding: 10px 20px;
}

.purple-toggles .et_pb_toggle .et_pb_toggle_content {
    padding: 20px;
}

/* color
.purple-toggles .et_pb_toggle.et_pb_toggle_open .et_pb_toggle_title {
    background-color: #d3d3d3;
}*/

@media (max-width: 767px) {
    .purple-toggles .et_pb_toggle .et_pb_toggle_title {
        padding: 10px 42px 10px 20px;
    }
}

/* -- Classes at imx section -- */
.classes-row .et_pb_blurb .et_pb_blurb_description a {
    color: #00adf1;
    font-weight: bold;
}

.classes-row .et_pb_blurb .et_pb_main_blurb_image {
    margin-bottom: 0;
}

.classes-row .et_pb_blurb .et_pb_blurb_container {
    background-color: #fff;
    padding: 200px 60px 45px;
    margin-top: -193px;
}

@media (min-width: 1871px) {
    .classes-row .et_pb_blurb .et_pb_blurb_container {
        min-height: 455px;
    }
}

@media (min-width: 1665px) and (max-width: 1870px) {
    .classes-row .et_pb_blurb .et_pb_blurb_container {
        min-height: 480px;
    }
}


@media (min-width: 1560px) and (max-width: 1664px) {
    .classes-row .et_pb_blurb .et_pb_blurb_container {
        min-height: 510px;
    }
}

@media (min-width: 1445px) and (max-width: 1559px) {
    .classes-row .et_pb_blurb .et_pb_blurb_container {
        min-height: 540px;
    }
}

@media (min-width: 1380px) and (max-width: 1444px) {
    .classes-row .et_pb_blurb .et_pb_blurb_container {
        min-height: 570px;
    }
}

@media (min-width: 1290px) and (max-width: 1379px) {
    .classes-row .et_pb_blurb .et_pb_blurb_container {
        min-height: 600px;
    }
}

@media (min-width: 1185px) and (max-width: 1289px) {
    .classes-row .et_pb_blurb .et_pb_blurb_container {
        min-height: 640px;
    }
}

@media (min-width: 1150px) and (max-width: 1184px) {
    .classes-row .et_pb_blurb .et_pb_blurb_container {
        min-height: 705px;
    }
}

@media (min-width: 981px) and (max-width: 1149px) {
    .classes-row .et_pb_blurb .et_pb_blurb_container {
        padding: 100px 30px 45px;
        margin-top: -95px;
        min-height: 610px;
    }
}

/* -- Private training -- */
#private .content-col {
    width: 67%;
}


/* Top right triangle section */
.et_pb_section.top-right-triangle-section {
    top: auto;
}


/* circle placement and style */
.home-circle {
    display: flex;
}

.home-circle .et_pb_text_inner {
    margin: auto;
}

#circles .home-circle.xercizer {
    margin-left: 260px !important;
}

#circles .home-circle.on-demand {
    margin-left: 536px !important;
}

@media (min-width: 3801px)  {
    #circles {
        padding-top: 150px;
   		padding-left: 1800px;
    }
}

@media (min-width: 2801px) and (max-width: 3800px) {
    #circles {
        padding-top: 150px;
   		padding-left: 900px;
    }
}

@media (min-width: 2501px) and (max-width: 2800px) {
    #circles {
        padding-top: 150px;
   		padding-left: 600px;
    }
}

@media (min-width: 2200px) and (max-width: 2500px) {
    #circles {
        padding-top: 150px;
   		padding-left: 400px;
    }
}

@media (min-width: 1601px) and (max-width: 1750px) {
    #circles {
        padding-top: 80px;
   		padding-left: 80px;
    }
}

@media (min-width: 1530px) and (max-width: 1600px) {
    #circles {
        padding-top: 50px;
   		padding-left: 50px;
    }


    #circles .home-circle {
        width: 300px;
        height: 300px;
    }

    #circles .home-circle.xercizer {
        margin-left: 230px !important;
    }

    #circles .home-circle.on-demand {
        margin-left: 450px !important;
        margin-top: -15px !important;
    }
}

@media (min-width: 1400px) and (max-width: 1529px) {
    #circles {
        padding-top: 50px;
   		padding-left: 80px;
    }


    #circles .home-circle {
        width: 250px;
        height: 250px;
    }

    #circles .home-circle.xercizer {
        margin-left: 200px !important;
    }

    #circles .home-circle.on-demand {
        margin-left: 375px !important;
        margin-top: -15px !important;
    }
}

@media (min-width: 1185px) and (max-width: 1399px) {
    #circles {
        padding-top: 50px;
   		padding-left: 80px;
    }


    #circles .home-circle {
        width: 200px;
        height: 200px;
        font-size: 30px;
    }

    #circles .home-circle.xercizer {
        margin-left: 160px !important;
    }

    #circles .home-circle.on-demand {
        margin-left: 295px !important;
        margin-top: -15px !important;
    }
}

@media (min-width: 981px) and (max-width: 1184px) {
    #circles {
        padding-top: 250px;
   		padding-left: 345px;
    }


    #circles .home-circle {
        width: 150px;
        height: 150px;
        font-size: 20px;
    }

    #circles .home-circle.xercizer {
        margin-left: 120px !important;
        margin-top: -10px !important;
    }

    #circles .home-circle.on-demand {
        margin-left: 230px !important;
        margin-top: 0px !important;
    }

    .home-program-content-row .et_pb_column {
        width: 45%;
    }

    .home-program-content-row .et_pb_column .home-heading {
        width: 95%;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .mobile-circles-row .et_pb_column {
        width: 33.3%;
    }
}


/* ---------- Franchise Page ---------- */
/* -- Testimonials -- */
.custom-testimonial-slider-blue .et_pb_testimonial_slider.dot_nav_class .swiper-pagination-bullets span {
    border-radius: 10px;
    border: 2px solid #fff;
    opacity: 1;
}

.custom-testimonial-slider-blue .et_pb_testimonial_slider.dot_nav_class .swiper-pagination-bullets span.swiper-pagination-bullet-active {
    border: 2px solid #00adf1 !important;
}

.custom-testimonial-slider-blue .et_pb_slide_content_testi::before {
    content: url(/wp-content/uploads/blue-quote.png);
    display: block;
    position: relative;
    left: -36px;
}

/* -- Advantages -- */
.advantages .et_pb_main_blurb_image {
    width: 219px;
}

@media (min-width: 981px) and (max-width: 1024px) {
    .advantages .et_pb_main_blurb_image {
        width: 140px;
    }
}

/* -- Steps Tabs -- */
/* controls */
.franchise-tabs h3.et_pb_module_header {
    padding-bottom: 0;
}

.franchise-tabs .et_pb_tabs_controls li {
    width: 50%;
    text-align: center;
}

.franchise-tabs .et_pb_tabs_controls li a {
    text-align: center;
    display: block;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    padding-bottom: 40px;
}

@media (min-width: 1380px) and (max-width: 1560px) {
    .franchise-tabs .et_pb_tabs_controls li a {
        font-size: 70px !important;
    }

    .franchise-tabs .et_pb_tabs_controls li a span {
        font-size: 24px !important;
    }
}

@media (min-width: 1240px) and (max-width: 1379px) {
    .franchise-tabs .et_pb_tabs_controls li a {
        font-size: 60px !important;
    }

    .franchise-tabs .et_pb_tabs_controls li a span {
        font-size: 22px !important;
    }

    #steps {
        padding-left: 240px;
    }
}

@media (min-width: 981px) and (max-width: 1239px) {
    .franchise-tabs .et_pb_tabs_controls li a {
        font-size: 41px !important;
    }

    .franchise-tabs .et_pb_tabs_controls li a span {
        font-size: 20px !important;
        line-height: 1.4em !important;
    }

    #steps {
        padding-left: 240px;
    }
}

@media (max-width: 768px) and (max-width: 980px) {
    body .franchise-tabs .et_pb_tabs_controls li a,
    body .franchise-tabs.et_pb_tabs .et_pb_tabs_controls li.et_pb_tab_1,
    body .franchise-tabs.et_pb_tabs .et_pb_tabs_controls li.et_pb_tab_1 a,
    body .franchise-tabs.et_pb_tabs .et_pb_tabs_controls li.et_pb_tab_0,
    body .franchise-tabs.et_pb_tabs .et_pb_tabs_controls li.et_pb_tab_0 a {
        font-size: 45px !important;
    }
}

@media (max-width: 767px) {
    body .franchise-tabs .et_pb_tabs_controls li a,
    body .franchise-tabs.et_pb_tabs .et_pb_tabs_controls li.et_pb_tab_1,
    body .franchise-tabs.et_pb_tabs .et_pb_tabs_controls li.et_pb_tab_1 a,
    body .franchise-tabs.et_pb_tabs .et_pb_tabs_controls li.et_pb_tab_0,
    body .franchise-tabs.et_pb_tabs .et_pb_tabs_controls li.et_pb_tab_0 a {
        font-size: 25px !important;
    }
}

@media (min-width: 1386px) and (max-width: 1700px) {
    .et_pb_row.step-line {
        top: -40px;
    }

    .et_pb_row.step-blurbs .et_pb_blurb .et_pb_blurb_container h3.et_pb_module_header {
        line-height: 1.4em;
    }
}

@media (min-width: 1370px) and (max-width: 1385px) {
    .et_pb_row.step-line {
        top: -60px;
    }

    .et_pb_row.step-blurbs .et_pb_blurb .et_pb_blurb_container h3.et_pb_module_header {
        line-height: 1.4em;
    }
}

@media (min-width: 1352px) and (max-width: 1369px) {
    .et_pb_row.step-line {
        top: -60px;
    }

    .et_pb_row.step-blurbs .et_pb_blurb .et_pb_blurb_container h3.et_pb_module_header {
        line-height: 1.4em;
        font-size: 19px;
    }
}

@media (min-width: 1288px) and (max-width: 1351px) {
    .et_pb_row.step-line {
        top: -80px;
    }

    .et_pb_row.step-blurbs .et_pb_blurb .et_pb_blurb_container h3.et_pb_module_header {
        line-height: 1.4em;
        font-size: 19px;
    }
}

@media (min-width: 1280px) and (max-width: 1287px) {
    .et_pb_row.step-line {
        top: -90px;
    }

    .et_pb_row.step-blurbs .et_pb_blurb .et_pb_blurb_container h3.et_pb_module_header {
        line-height: 1.4em;
        font-size: 17px;
    }
}

@media (min-width: 981px) and (max-width: 1279px) {
    .et_pb_row.step-line {
        display: none;
    }

    .et_pb_row.step-blurbs .et_pb_blurb .et_pb_blurb_container h3.et_pb_module_header {
        line-height: 1.4em;
        font-size: 17px;
    }

    .et_pb_row.step-blurbs .et_pb_column {
        width: 29.3%;
        height: 530px;
    }

    .et_pb_row.step-blurbs {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .franchise-tabs .et_pb_tabs_controls li {
        width: 100%;
    }

    .franchise-tabs .et_pb_all_tabs .et_pb_tab {
        padding: 0;
    }
}


/* second line in tab title */
.franchise-tabs .et_pb_tabs_controls li.et_pb_tab_active a span {
    text-align: center;
    display: block;
    font-family: pt-sans, sans-serif;
    font-weight: 500;
    font-size: 35px;
    color: #222;
    line-height: 38px;
}

.franchise-tabs .et_pb_tabs_controls li a span {
    text-align: center;
    display: block;
    font-family: pt-sans, sans-serif;
    font-weight: 500;
    font-size: 35px;
    color: #fff;
    line-height: 38px;
}

@media (min-width: 768px) and (max-width: 980px) {
    .franchise-tabs .et_pb_tabs_controls li a span,
    .franchise-tabs .et_pb_tabs_controls li.et_pb_tab_active a span {
        font-size: 18px;
        line-height: 1.4em;
    }

    .franchise-tabs .et_pb_tabs_controls li a {
        padding-bottom: 10px;
    }
}

@media (max-width: 767px) {
    .franchise-tabs .et_pb_tabs_controls li a span,
    .franchise-tabs .et_pb_tabs_controls li.et_pb_tab_active a span {
        font-size: 17px;
        line-height: 1.4em;
    }

    .franchise-tabs .et_pb_tabs_controls li a {
        padding-bottom: 10px;
    }
}

/* -- Reach a bigger market -- */
.block-blurbs .et_pb_blurb_container h3.et_pb_module_header {
    font-family: futura-pt, sans-serif;
}

@media (min-width: 1301px) and (max-width: 1485px) {
    .block-blurbs .et_pb_blurb_container h3.et_pb_module_header {
        /*font-size: 24px; */
    }

    .block-blurbs .et_pb_column {
        padding-right: 30px;
    	padding-left: 30px;
    }

}

@media (min-width: 1180px) and (max-width: 1300px) {
    .block-blurbs .et_pb_blurb_container h3.et_pb_module_header {
        font-size: 27px;
    }

    .block-blurbs .et_pb_blurb_description {
        font-size: 18px;
    }

    .block-blurbs .et_pb_column {
        padding-right: 30px;
    	padding-left: 30px;
    }

    #reach {
        padding-left: 210px;
    }
}

@media (min-width: 981px) and (max-width: 1179px) {
    .block-blurbs .et_pb_blurb_container h3.et_pb_module_header {
        font-size: 19px;
    }

    .block-blurbs .et_pb_blurb_description {
        font-size: 16px;
    }

    #reach {
        padding-left: 210px;
    }

    .block-blurbs .et_pb_column {
        padding-top: 30px;
    	padding-right: 30px;
    	padding-bottom: 30px;
    	padding-left: 30px;
    }
}

/* ---------- Contact page ---------- */
#contact-form .gform_body .gform_fields .gfield textarea::-webkit-input-placeholder {
  	color: #3f296D !important;
}

#contact-form .gform_body .gform_fields .gfield textarea::-moz-placeholder {
  	color: #3f296D !important;
}

#contact-form .gform_body .gform_fields .gfield textarea:-ms-input-placeholder {
  	color: #3f296D !important;
}

#contact-form .gform_body .gform_fields .gfield textarea:-moz-placeholder {
  	color: #3f296D !important;
}

body #contact-form .gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body #contact-form .gform_wrapper textarea.textarea,
body #contact-form .gform_wrapper select{
    margin-top: 10px !important;
}


/* ---------- Studios page ---------- */
@media (max-width: 767px) {
    #studio-pg-row .et_pb_column.et_pb_column_1_4 {
        width: 47.25% !important;
        margin-right: 1.5% !important;
        margin-bottom: 0 !important;
    }
}

@media (min-width: 768px) {
    #studio-pg-row .et_pb_column.et_pb_column_1_4 {
        margin-bottom: 0 !important;
    }
}


/* ---------- WooCommerce ---------- */
.woocommerce #main-content,
.woocommerce-page #main-content {
    padding-bottom: 80px;
}

/* cart icon */
ul#menu-woocommerce-menu li.wpmenucartli a {
    font-size: 17px !important;
}

/*
header.woocommerce-products-header h1.woocommerce-products-header__title.page-title,
#left-area nav.woocommerce-breadcrumb,
p.woocommerce-result-count,
.prdctfltr_filter .pf-help-title h4.widgettitle,
a.woocommerce-LoopProduct-link span.onsale {
    text-transform: lowercase;
} */


/* -- Product Page -- */
/* title and price */
.product .summary h1.product_title {
    font-family: futura-pt, sans-serif;
}

.woocommerce-page .product .summary p.price {
    color: #00adf1;
}

/* magnifying glass
.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
    z-index: 0;
} */

/* arrows */
ul.flex-direction-nav {
    position: absolute;
    top: 180px;
    z-index: 99999;
    width: 100%;
    left: 0;
    margin: 0;
    padding: 0px !important;
    list-style-type: none !important;
}

li.flex-nav-prev {
    float: left;
}

li.flex-nav-next {
    float: right;
}

a.flex-next {
    visibility:hidden;
}

a.flex-prev {
    visibility:hidden;
}

a.flex-next::after {
    visibility:visible;content: '\f054';
    font-family: 'ETModules';
    margin-right: 10px;
    font-size: 20px;
    font-weight: bold;
}
a.flex-prev::before {
    visibility:visible;
    content: '\f053';
    font-family: 'ETModules';
    margin-left: 10px;
    font-size: 20px;
    font-weight: bold;
}
ul.flex-direction-nav li a {
    color: #ccc;
}
ul.flex-direction-nav li a:hover {
    text-decoration: none;
}

/* height of photo window */
body.woocommerce .woocommerce-product-gallery .flex-viewport {
    max-height: 1000px !important;
    /*min-height: 1000px !important;*/
	min-height: 500px !important;
}

@media (max-width: 1024px) {
    body.woocommerce .woocommerce-product-gallery .flex-viewport {
        max-height: 400px !important;
        min-height: 400px !important;
    }

    ul.flex-direction-nav {
    top: 80px;
    }
}
/* hide photo title in lightbox */
.woocommerce-page .pswp .pswp__scroll-wrap .pswp__caption .pswp__caption__center {
    display: none;
}

/* lightbox X close button color */
body .mfp-iframe-holder .mfp-close,
body .mfp-image-holder .mfp-close {
    color: #000;
}

/* description */
body.woocommerce .woocommerce-tabs {
    border: none;
}

body.woocommerce #content-area div.product .woocommerce-tabs .panel,
body.woocommerce div.product .woocommerce-tabs .panel,
body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs li.active a,
body.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    background-color: #eee;
}

body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs li.active a,
body.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
    color: #3f296d !important;
    font-family: futura-pt, sans-serif;
    font-size: 24px;
    padding: 20px 15px !important;
}

body.woocommerce #content-area div.product .woocommerce-tabs ul.tabs, body.woocommerce div.product .woocommerce-tabs ul.tabs {
    background: #f3f3f3;
}

body.woocommerce .woocommerce-Tabs-panel--description h2 {
    display: none;
}

/* Related products */
.related.products h2 {
    font-family: futura-pt, sans-serif;
    font-size: 34px !important;
}

.related .products .product a.woocommerce-LoopProduct-link h2.woocommerce-loop-product__title {
    font-size: 23px !important;
}

.related .products .product a.woocommerce-LoopProduct-link span.price {
    color: #00adf1 !important;
}

@media (min-width: 981px) {
    .product .summary h1.product_title {
        font-size: 40px;
    }

    body.woocommerce #content-area div.product .woocommerce-tabs .panel,
    body.woocommerce div.product .woocommerce-tabs .panel {
        padding: 40px;
    }
}

/* -- Category Page -- */
header.woocommerce-products-header h1.woocommerce-products-header__title {
    font-family: futura-pt, sans-serif;
    font-size: 36px;
}

h2.woocommerce-loop-product__title {
    font-family: futura-pt, sans-serif;
    font-size: 21px !important;
}

.products .product a.woocommerce-LoopProduct-link span.price {
    color: #00adf1 !important;
}

.woocommerce nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul li {
    border: none;
}

/* Hide company sidebar on tablet and mobile */
@media (max-width: 768px) {
    div#nav_menu-2 {
    display: none;
}
}

/* ---------- Product Listing ---------- */
.woocommerce-page ul li.product a.woocommerce-LoopProduct-link span.onsale,
.woocommerce ul li.product a.woocommerce-LoopProduct-link span.onsale,
.woocommerce-page #left-area .product span.onsale,
.woocommerce #left-area .product span.onsale {
    background: #00adf1 !important;
}

/* ---------- Product Filter ---------- */
/* font style */
.prdctfltr_filter_inner .prdctfltr_filter .pf-help-title h4.widgettitle {
    font-family: futura-pt, sans-serif;
    font-size: 24px;
}

.prdctfltr_woocommerce_ordering .prdctfltr_filter_wrapper .prdctfltr_filter_inner .prdctfltr_filter label {
    font-size: 17px;
    line-height: 30px;
}

/* sidebar line */
.woocommerce #main-content .container:before {
    background-color: transparent;
}

.woocommerce #sidebar {
    border-right: 1px solid #eee;
}

/* hide sale and in stock icons */
.prdctfltr-widget form.prdctfltr_woocommerce_ordering .prdctfltr_buttons .prdctfltr_sale,
.prdctfltr-widget form.prdctfltr_woocommerce_ordering .prdctfltr_buttons .prdctfltr_instock {
    display: none !important;
}

/* make page full width */
.archive.woocommerce #page-container #et-main-area #main-content .container {
    width: 100%;
    max-width: 100%;
}

.archive.woocommerce.et_left_sidebar #sidebar {
    padding: 0 58px;
}

@media (min-width: 981px) {
    .et_left_sidebar #left-area {
        padding-left: 80px;
        padding-right: 80px;
    }
}

@media (min-width: 1280px) {
    .archive.woocommerce.et_left_sidebar #page-container #et-main-area #main-content .container #content-area #sidebar {
        padding: 0 50px 0 80px;
    }
}

@media (max-width: 980px) {
    .archive.woocommerce #page-container #et-main-area #main-content .container #content-area #left-area {
        padding: 30px;
    }
}

@media (min-width: 981px) and (max-width: 1280px) {
    .archive.woocommerce #page-container #et-main-area #main-content .container #content-area #sidebar {
        padding: 0 30px;
    }
}

/* if the mobile filter is at the bottom */
.archive.woocommerce #page-container #et-main-area #main-content .container #content-area {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap; /* Safari 6.1+ */
    flex-wrap: wrap;
}

.archive.woocommerce #page-container #et-main-area #main-content .container #content-area #sidebar {
    -webkit-order: 1;
    order: 1;
    }

.archive.woocommerce #page-container #et-main-area #main-content .container #content-area #left-area {
    -webkit-order: 2;
    order: 2;
    }

/* CUSTOM FS TOGGLE FOR FILTER WRAPPER -- using HTML added via Snippet and JS for toggling */

/* the toggle button */
body.archive #fs-custom-woo-filter-toggle .mobile-filter-toggle {
    display: block;
    cursor: pointer;
    text-align: center;
    padding: 8px 8px;
    font-weight: bold;
    font-size: 14px;
    border-radius: 5px;
    background-color: #00adf1;
    color: #fff;
}

body.archive #fs-custom-woo-filter-toggle .mobile-filter-toggle::before {
    content: '\f00b';
    font-family: 'ETModules';
    margin-right: 6px;
    display: inline-block;
    font-weight: normal;
    color: white;
    position: relative;
    top: 2px;
}

@media (max-width: 980px) {
    /* collapsed by default on mobile archive pages */
    body.archive #fs-custom-woo-filter-toggle .mobile-filter-toggle + .mobile-filter-toggle-inner {
        display: none;
    }
}

@media (min-width: 981px) {
    /* hide expand/collapse button on desktop archive pages */
    body.archive #fs-custom-woo-filter-toggle .mobile-filter-toggle {
        display: none !important;
    }
    /* always expand on desktop archive pages */
    body.archive #fs-custom-woo-filter-toggle .mobile-filter-toggle + .mobile-filter-toggle-inner {
        display: block !important;
    }
}

/* if its not an archive page, then don't show the expand/collapse button */
body:not(.archive) #fs-custom-woo-filter-toggle .mobile-filter-toggle {
    display: none !important;
}

/* if its not an archive page, then never collapse it */
body:not(.archive) #fs-custom-woo-filter-toggle .mobile-filter-toggle + .mobile-filter-toggle-inner {
    display: block !important;
}

/* ---------- Cart / Checkout ---------- */
.woocommerce-cart #main-content #left-area article h1.entry-title,
.woocommerce-checkout #main-content #left-area article h1.entry-title {
    font-family: futura-pt, sans-serif;
    font-size: 40px;
}

.cart-collaterals .cart_totals  h2,
.cart_totals .wc-proceed-to-checkout a.checkout-button,
table.shop_table tr th,
table.shop_table button.button,
.woocommerce-checkout h1.entry-title,
form.woocommerce-checkout h3,
form.woocommerce-checkout label,
.woocommerce-checkout-payment .form-row button.button {
    text-transform: lowercase;
}

.form-row label.woocommerce-form__label span.automatewoo-optin__checkbox-text,
ul.wc_payment_methods li.wc_payment_method label {
    text-transform: initial;
}

/* ---------- On Demand page ---------- */
.et_pb_fullwidth_header.full-x-header.futura .et_pb_fullwidth_header_container.center .header-content {
    max-width: 100%;
}

.et_pb_fullwidth_header.full-x-header.futura .et_pb_fullwidth_header_container.center .header-content h1 span {
    font-size: 40%;
    vertical-align: super;
}

.on-demand-section .et_pb_row .et_pb_column .et_pb_blurb .et_pb_blurb_container {
    padding: 0 5px;
}

/* when subscriber logs in they seen this header */
.on-demand-header {

}

/* Ultimate member account page */
.um-account-profile-link a.um-link {
    display: none;
}

img.um-avatar {
    pointer-events: none;
}

/* ---------- home program page ---------- */
.blurb-btn .full-skew-btn button .full-skew-btn-text {

}

.blurb-btn .full-skew-btn button {
    font-size: 20px;
    padding: 0 50px 5px 50px;
}

.blurb-btn .full-skew-btn {
    float: none;
    text-align: center;
}

/* ---------- Custom fields ---------- */

form table.thwepo-extra-options label.label-tag {
    font-weight: bold;
}

form table.thwepo-extra-options td select {
    background-color: #ececec;
    border-radius: 3px;
    border-color: #ececec;
}

/* ---------- Communication preferences ---------- */
.aw-communication-form__preference label {
    text-transform: lowercase;
}

form.aw-communication-form input.woocommerce-Button {
    color: #fff;
}

/* ---------- Gallery ---------- */
.mfp-gallery .mfp-content figure figcaption {
    display: none;
}

/* EDIT for when zooming out on rows with column backgrounds */

@media screen and (min-width: 1921px) and (max-width: 2800px) {
    .col-background-img-zoom .et_pb_column.img {
    	height: 800px;
    }
}

@media screen and (min-width: 2801px) and (max-width: 3000px) {
    .col-background-img-zoom .et_pb_column.img {
    	height: 900px;
    }
}

@media screen and (min-width: 3001px) {
    .col-background-img-zoom .et_pb_column.img {
    	height: 1000px;
    }
}

/* ---------- popups for bundles ---------- */
/*products with variables */
.variable-style table.variations,
.variable-style table.thwepo-extra-options {
    width: 100%;
    margin-bottom: 20px;
}

@media (max-width: 1240px) {
    .variable-style table.variations tr td,
    .variable-style table.thwepo-extra-options tr td{
        display: block;
    }
}

/*Have it appear at top of screen */
body.woocommerce #sgpb-popup-dialog-main-div-wrapper .sgpb-popup-dialog-main-div-theme-wrapper-4 {
    right: 0;
    bottom: 0;
    left: auto !important;
    top: auto !important;
}

/* ---------- instructor area & franchisee portal ---------- */
.custom-sub-menus ul.et-menu li {
    width: 100%;
}

@media (max-width: 980px) {
    .custom-sub-menus .et_pb_menu_inner_container.clearfix::before {
        display: inline-block;
        color: #3f296d!important;
        font-size: 25px;
    }
}

/* ---------- instructor area ---------- */
/* sidebar */
@media (max-width: 980px) {
    .instructor-franchise-menu .et_pb_menu_inner_container.clearfix::before {
        content: 'Franchise';
    }

    .instructor-exam-menu .et_pb_menu_inner_container.clearfix::before {
        content: 'Practical Exams';
    }
}

/* card height */
.video-cards .et_pb_blurb {
    height: 100%;
}

.video-cards .et_pb_module_header {
    padding-left: 10px;
    padding-right: 10px;
}

/* ---------- franchisee portal ---------- */
/* sidebar */
@media (max-width: 980px) {
    .franchisee-training-menu .et_pb_menu_inner_container.clearfix::before {
        content: 'Training Support';
    }

    .franchisee-marketing-menu .et_pb_menu_inner_container.clearfix::before {
        content: 'Marketing';
    }

    .franchisee-business-menu .et_pb_menu_inner_container.clearfix::before {
        content: 'Business';
    }

    .franchisee-quick-menu .et_pb_menu_inner_container.clearfix::before {
        content: 'Quick Links';
    }

    .print-menu .et_pb_menu_inner_container.clearfix::before {
        content: 'Print & Ad Graphics Library';
    }

    .campaign-menu .et_pb_menu_inner_container.clearfix::before {
        content: 'Campaigns';
    }
}

/* ---------- tablepress ---------- */
body .tablepress tfoot th,
body .tablepress thead th {
    background-color: #f5f4f7;
}

body table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>td:first-child:before,
body table.dataTable.dtr-inline.collapsed>tbody>tr[role=row]>th:first-child:before {
    background-color: #3f296d;
}

/* ---------- shop page ---------- */
@media only screen and (max-width: 768px) {
    body.woocommerce ul.products[class*=columns-] li.product:nth-child(4),
    body.woocommerce-page ul.products[class*=columns-] li.product:nth-child(4) {
        clear: both !important;
    }
}


/* ---------- notification bar ---------- */
/* show only on woocommerce pages */
#wpfront-notification-bar-spacer {
    display: none !important;
}

body.woocommerce #wpfront-notification-bar-spacer,
body.woocommerce-page #wpfront-notification-bar-spacer {
    display: block !important;
}

/* ---------- internation franchise and staff certification pages with script and button one line  ---------- */
.one-line-script-button .et_pb_code {
    float: left;
}

@media (min-width: 981px) {
    .one-line-script-button .col-1 {
        width: 30% !important;
        margin-left: 0 !important;
    }

    .one-line-script-button.more-info .col-1 {
        width: 40% !important;
        margin-left: 0 !important;
    }
}

.one-line-script-button .full-skew-btn button {
    padding: 0 50px 5px 50px;
    font-size: 24px;
}

@media (max-width: 767px) {
    .one-line-script-button .full-skew-btn button {
        padding: 0 30px 5px 30px;
        font-size: 21px;
        margin-left: 20px;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .video-section .et_pb_row.one-line-script-button {
        display: block !important;
    }

    .video-section .et_pb_row.one-line-script-button .et_pb_column {
        width: 100% !important;
    }
}

/* -- Bundles account page -- */
.bundles-row .full-skew-btn button {
    padding: 0 50px 5px 50px;
    font-size: 24px;
}

.bundles-row .full-skew-btn {
    float: none;
}

/* --- bundle images are not appearing --- */
.account-bundles-blurb .et_pb_wc_images .woocommerce-product-gallery {
    opacity: 1 !important;
}

@media (max-width: 767px) {
    .bundles-row .full-skew-btn button {
        padding: 0 30px 5px 30px;
        font-size: 21px;
        margin-left: 20px;
    }
}



/* restrict plugin */
.rsc_message {
    padding: 80px 0;
    width: 60%;
    margin: auto;
}

/* ---------- Franchise application ---------- */
#application .application-form_wrapper input[type=email],
#application .application-form_wrapper input[type=tel],
#application .application-form_wrapper input[type=text],
#application .application-form_wrapper input[type=url],
#application .application-form_wrapper textarea {
    margin-bottom: 0;
}

body #application .application-form_wrapper.gform_wrapper ul li.gfield,
body #application .application-form_wrapper.gform_wrapper .top_label div.ginput_container,
#application .application-form_wrapper.gform_wrapper {
    margin-top: 15px !important;
}

body #application .application-form_wrapper.gform_wrapper input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]),
body #application .application-form_wrapper.gform_wrapper textarea.textarea, body div.form_saved_message div.form_saved_message_emailform form input[type=text],
body #application .application-form_wrapper.gform_wrapper select {
    font-weight: normal;
}

/* button */
body #application .application-form_wrapper.gform_wrapper .gform_footer input.button,
body #application .application-form_wrapper.gform_wrapper .gform_page_footer input.button,
body #application .application-form_wrapper div.form_saved_message div.form_saved_message_emailform form input[type=submit],
body #application .application-form_wrapper.gform_wrapper .gform_footer button,
body #application .application-form_wrapper.gform_wrapper .gform_page_footer button,
body #application .application-form_wrapper div.form_saved_message div.form_saved_message_emailform button,
body #application .application-form_wrapper.gform_wrapper .gform_footer input.gform_previous_button,
body #application .application-form_wrapper.gform_wrapper .gform_page_footer input.button {
    font-size: 23px;
}

/* list */
ul li.business-list table.gfield_list tr th {
    font-size: 15px;
}

body #application .application-form_wrapper.gform_wrapper ul li.business-list.partner {
    margin-top: 25px !important;
}

/* submit */
body #application .application-form_wrapper.gform_wrapper button.gform_button {
    padding: 13px 70px;
}


/* franchisee pages - alt headers 2 column */
.franchisee-cta .et_pb_button_wrapper .et_pb_promo_button {
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    -ms-transform: skewX(-40deg);
    -webkit-transform: skewX(-40deg);
    transform: skewX(-40deg);
}

.franchisee-cta .et_pb_button_wrapper .et_pb_promo_button span {
    -ms-transform: skewX(22deg);
    -webkit-transform: skewX(22deg);
    transform: skewX(22deg);
    white-space: nowrap;
    display: block;
}

.franchisee-cta .et_pb_button_wrapper .et_pb_promo_button:hover {
    background-color: #fff !important;
    border-color: #fff !important;
}

/*--New Get Started Custom Form Styling--*/
.gs-form-style .gform_footer.top_label {
    text-align: center;
}

.gs-form-style .gform_button {
    background: #ffffff!important;
    border: 0px!important;
    border-radius: 30px;
}

.gs-form-style input, .gs-form-style textarea, .gs-form-style select {
    border-radius: 30px;
}

.gs-form-style input, .gs-form-style textarea, .gs-form-style select {
    color: #fff!important;
    font-weight: normal!important;
    border-radius: 30px;
}
.gs-form-style option {
    color: #000;
}

.gs-form-style  .gform_fields .gfield input::-webkit-input-placeholder,
.gs-form-style  .gform_fields .gfield textarea::-webkit-input-placeholder {
  	color: #ffffff!important;
    font-weight: normal;
}
.gs-form-style  .gform_fields .gfield input::-moz-placeholder,
.gs-form-style  .gform_fields .gfield textarea::-moz-placeholder {
  	color: #ffffff!important;
    font-weight: normal;
}
.gs-form-style  .gform_fields .gfield input:-ms-input-placeholder,
.gs-form-style  .gform_fields .gfield textarea::-ms-input-placeholder {
  	color: #ffffff!important;
    font-weight: normal;
}
.gs-form-style .gform_fields .gfield input:-moz-placeholder,
.gs-form-style  .gform_fields .gfield textarea::-moz-placeholder {
  	color: #ffffff!important;
    font-weight: normal;
}

.gs-form-style .gform_confirmation_wrapper .gform_confirmation_message {
    color: #fff!important;
}

#field_7_15 label.gfield_label {
    display: none!important;
}

label#label_7_15_1 {
    color: #3f296d;
    font-weight: bold;
    font-family: futura-pt, sans-serif;
    font-size: 18px;
}

/* preview first week get started page */
@media (max-width:426px) and (min-width:320px){
    .gs-form-style ul.gform_fields li.gfield .ginput_container input#input_15_7 {
    margin-top: -5px !important;
}
}

/*--Registration Form Styling--*/
#gform_wrapper_10 .description, #gform_wrapper_10 .gfield_description, #gform_wrapper_10 .gsection_description, #gform_wrapper_10 .instruction {
    font-size: 16px!important;
}

ul#input_10_95 {
    font-size: 19px!Important;
}

#gform_wrapper_10 div#input_10_93_Container, #gform_wrapper_10 div#input_10_64_Container {
    height: 100px!important;
}

/*--Hover Effect for Blurbs with Popups--*/
.blurb-cursor-popup:hover {
    cursor: pointer;
}

/*--Blog Styling--*/
.featured-blog-post .entry-featured-image-url {
	width: 33%;
	padding-right: 20px;
	float: left;
}

.featured-blog-post a.more-link {
	clear: none!important;
}

