/*
Theme Name: Divi Child
Theme URI: https://www.elegantthemes.com/gallery/divi/
Description: Divi child theme via FreshySites
Author: FreshySites
Author URI: https://freshysites.com/
Template: Divi
Version: 3.0.0
*/
/* 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 {
    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 -- */

/* - Bottom Bar - */

/* if the bottom bar has equal column height setting, then make it always be flex, and stack the columns initially (for mobile use)
 * and make the columns vertical aligned to be vertically centered too */
#fs-footer-bottom-bar > .et_pb_row.et_pb_equal_columns {
    display: flex;
    align-items: center;
}

/* copyright wrapper */
#freshy_copyright {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    color: black;
    font-size: 13px;
    line-height: 1.25em;
}

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

/* add an FS logo via background */
#freshy_copyright a.copyright_fs {
    display: block;
    width: 68px;
    height: 20px;
    background-image: url("/wp-content/uploads/Freshy_Logo_White_RGB.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-indent: 200%;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    flex-shrink: 0;
    transition: all 0.4s ease-in-out;
}

/* FS logo link hover */
#freshy_copyright a.copyright_fs:hover {
    opacity: 0.8;
}

/* remove the bottom margin that Divi adds to the social media follow icons */
#fs-footer-bottom-bar .et_pb_social_media_follow li {
    margin-bottom: 0;
}

@media (min-width: 600px) {
    /* make the copyright elements be side by side at wider screens */
    #freshy_copyright {
        flex-direction: row;
    }

    /* change horizontal pipe divider to vertical on wider screens */
    #freshy_copyright span.copyright_via {
        width: 1px;
        height: 20px;
        margin: 0 10px;
    }
}

@media (max-width: 980px) {
    /* make sure the row has columns going side by side instead of stacked */
    #fs-footer-bottom-bar > .et_pb_row.et_pb_equal_columns {
        flex-direction: column;
    }

    /* when stacked, adjust the gap between stacked columns */
    #fs-footer-bottom-bar > .et_pb_row.et_pb_equal_columns > .et_pb_column {
        margin-bottom: 1rem;
    }

    /* swap the order of columns when stacked, to the first column is the last one 
	 * and give no bottom margin to the first column, since we re-ordered it to the bottom */
    #fs-footer-bottom-bar
        > .et_pb_row.et_pb_equal_columns
        > .et_pb_column:first-child {
        order: 1;
        margin-bottom: 0;
    }

    /* center the copyright stuff when columns are stacked */
    #freshy_copyright {
        justify-content: center;
    }

    /* remove left margin on first social icon in regular Divi footer (when not using Theme Builder) when stacked */
    #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 {
        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 {
        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 {
        column-count: 4;
    }
}

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

.pluslist ul li::before {
    content: "\e050";
}

.externallist ul li::before {
    content: "\e906";
}

/* -- 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 {
    transform: scale(-1, -1);
}

/* -- END TESTIMONIALS PLUGIN -- */

/* -- GRAVITY FORMS -- */

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

@media (max-width: 980px) {
    /* use the "stacked-flex" class on a ROW to make it be flexbox when stacked, to help with adjusting order of stacked columns */
    .stacked-flex {
        display: flex;
        flex-wrap: wrap;
    }

    /* add the desired class to COLUMNS to designate their order when stacked within a "stacked-flex" ROW */
    .stacked-order-negative-4 {
        order: -4;
    }

    .stacked-order-negative-3 {
        order: -3;
    }

    .stacked-order-negative-2 {
        order: -2;
    }

    .stacked-order-negative-1 {
        order: -1;
    }

    .stacked-order-1 {
        order: 1;
    }

    .stacked-order-2 {
        order: 2;
    }

    .stacked-order-3 {
        order: 3;
    }

    .stacked-order-4 {
        order: 4;
    }

    /* adds margin to former "last" column that otherwise wouldn't have it */
    .stacked-flex:last-child .et_pb_column:last-child {
        margin-bottom: 30px;
    }
}

/* -- 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 -- */

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

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

/*--SITE WIDE--*/
/**body text**/
/*font weight*/
p {
    font-weight: 400 !important;
}

.p-bold p {
    font-weight: 600 !important;
}

.p-libre {
    font-family: "Libre Baskerville", serif !important;
    font-weight: 700 !important;
}

/**back to top button**/
.et_pb_scroll_top.et-pb-icon {
    background: #94a6bf;
    border-radius: 50px !important;
    right: 25px !important;
}

.et_pb_scroll_top:before {
    content: "\42" !important;
    color: #fdf0d5;
}

/**vertically align items**/
.fs-vertical-align {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/**flex and center two buttons**/
.buttons-flex {
    display: flex;
    flex-direction: row;
    justify-content: center !important;
}

/**white links**/
.white-link a {
    color: #fff !important;
}

.white-link a:hover {
    color: #f6f6f6 !important;
}

/*custom column margin*/
.cust-col-margin .et_pb_column {
    margin-right: 10px !important;
    margin-left: 10px !important;
}

/**inner hero section height on small desktops**/
@media screen and (min-width: 981px) and (max-width: 1399px) {
    .et_pb_section.inner-hero-sec {
        height: 350px !important;
    }
}

/*blurbs with icon on left spacing between icon and text*/
.et_pb_blurb_position_left .et_pb_blurb_container {
    padding-left: 3px !important;
}

/**disable animations on mobile**/
@media all and (max-width: 981px) {
    .et_animated {
        opacity: 1 !important;
    }

    .et_pb_section * {
        -o-transition-property: none !important;
        -moz-transition-property: none !important;
        -webkit-transition-property: none !important;
        transition-property: none !important;
        -o-transform: none !important;
        -moz-transform: none !important;
        -ms-transform: none !important;
        -webkit-transform: none !important;
        transform: none !important;
        -webkit-animation: none !important;
        -moz-animation: none !important;
        -o-animation: none !important;
        animation: none !important;
    }
}

/*hide horizontal overflow*/
div#page-container {
    overflow-x: hidden !important;
}

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

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

/*--FOOTER--*/
/**images row**/
/*make row flex*/
.footer-images {
    display: flex;
    flex-direction: row;
    vertical-align: middle !important;
}

/*remove 2 outside images on small mobile*/
@media screen and (max-width: 480px) {
    .footer-img-1 {
        display: none !important;
    }

    .footer-img-3 {
        display: none !important;
    }
}

/*image border radius*/
@media screen and (max-width: 480px) {
    .footer-images .et_pb_image_wrap {
        border-radius: 25px !important;
    }
}

@media screen and (min-width: 481px) and (max-width: 767px) {
    .footer-images .et_pb_image_wrap {
        border-radius: 15px !important;
    }
}

/**gray contact section**/
/*top margin on small mobile*/
@media screen and (max-width: 480px) {
    .footer-contact-section {
        margin-top: -20vw !important;
    }
}

/**copyright**/
/*image size*/
.led-copyright img {
    max-width: 68px !important;
    vertical-align: middle !important;
    margin-top: -3px;
}

/**social links**/
/*spacing between social icons*/
.footer-social li a {
    margin-right: -4px !important;
}

/**menu links**/
/*font weight*/
.footer-links.et_pb_menu ul li a {
    font-weight: 400;
}

.footer-links.et_pb_menu ul li.current-menu-item a {
    font-weight: 600;
}

/*arrow after current menu items*/
.footer-links.et_pb_menu ul li.current-menu-item a:after {
    font-family: "ETMODULES";
    content: "\45";
    text-align: center;
    vertical-align: middle;
    margin-left: -1px;
    color: #ed9531;
    font-size: 1em;
    transition: all 0.3s ease;
}

/*spacing between menu links*/
.footer-links.et_pb_menu .et-menu > li {
    padding-right: 16px;
    padding-left: 16px;
}

/**open menu on tablet/mobile and text size on small desktops**/
@media (max-width: 767px) {
    .footer-links .et_pb_menu__menu {
        display: flex !important;
        flex-direction: column !important;
    }

    .footer-links .et_mobile_nav_menu {
        display: none !important;
    }

    .footer-links.et_pb_menu .et_pb_menu__menu > nav {
        display: flex;
        flex-direction: column;
    }

    .footer-links .et_pb_menu__menu > nav > ul {
        flex-direction: column !important;
    }

    .footer-links.et_pb_menu .et_pb_menu__menu > nav > ul > li {
        justify-content: center !important;
        padding: 2px 0px !important;
    }

    .footer-links.et_pb_menu ul li a {
        font-size: 14px !important;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .footer-links .et_pb_menu__menu {
        display: flex !important;
        flex-direction: row !important;
    }

    .footer-links .et_mobile_nav_menu {
        display: none !important;
    }

    .footer-links.et_pb_menu .et_pb_menu__menu > nav {
        display: flex;
        flex-direction: row;
    }

    .footer-links .et_pb_menu__menu > nav > ul {
        flex-direction: row !important;
    }

    .footer-links.et_pb_menu .et_pb_menu__menu > nav > ul > li {
        justify-content: center !important;
        padding: 0px 10px !important;
    }

    .footer-links.et_pb_menu ul li a {
        font-size: 14px !important;
    }
}

@media (min-width: 981px) and (max-width: 1100px) {
    .footer-links.et_pb_menu ul li a {
        font-size: 17px !important;
    }
}

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

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

/*--GRAVITY FORMS--*/
/**all forms**/
/*submit buttons*/
.gform_wrapper.gravity-theme #field_submit input {
    max-width: 100%;
    height: 100%;
    border-radius: 50px;
    border: 0px;
    background-color: #ed9531;
    height: 70px;
    padding-left: 50px;
    padding-right: 50px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 20px;
    letter-spacing: 1px;
    width: 100% !important;
}

.gform_wrapper.gravity-theme #field_submit input:hover {
    background-color: #383a56;
}

@media screen and (max-width: 640px) {
    .gform_wrapper.gravity-theme #field_submit input {
        width: 100% !important;
    }
}

@media screen and (max-width: 640px) {
    .gform_wrapper.gravity-theme #field_submit input {
        font-size: 14px !important;
    }
}

@media screen and (min-width: 641px) and (max-width: 767px) {
    .gform_wrapper.gravity-theme #field_submit input {
        height: 50px !important;
        padding-left: 38px;
        padding-right: 38px;
        font-size: 12px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
    .gform_wrapper.gravity-theme #field_submit input {
        font-size: 14px !important;
        padding-left: 40px !important;
        padding-right: 40px !important;
        height: 50px !important;
    }
}

@media screen and (min-width: 981px) and (max-width: 1250px) {
    .gform_wrapper.gravity-theme #field_submit input {
        font-size: 15px !important;
        height: 60px !important;
    }
}

@media screen and (min-width: 981px) {
    .gform_wrapper.gravity-theme #field_submit input {
        width: 100% !important;
    }
}

/**input fields**/
.gform_wrapper.gravity-theme select {
    background: #fff;
    border: 0px;
    border-radius: 50px;
    padding-top: 11px !important;
}

/*select field*/
@media screen and (max-width: 640px) {
    body .gform_wrapper select {
        height: 70px !important;
    }
}

@media screen and (min-width: 641px) and (max-width: 980px) {
    body .gform_wrapper select {
        height: 50px !important;
    }
}

@media screen and (min-width: 981px) {
    body .gform_wrapper select {
        height: 70px !important;
    }
}

/*all other fields*/
body .gform_wrapper input:not([type="submit"]) {
    background: #fff !important;
    border-radius: 50px;
    height: 70px !important;
    padding-top: 23px !important;
}

@media screen and (min-width: 641px) and (max-width: 980px) {
    body .gform_wrapper input:not([type="submit"]) {
        height: 50px !important;
        padding-top: 18px !important;
    }
}

@media screen and (min-width: 981px) and (max-width: 1250px) {
    body .gform_wrapper input:not([type="submit"]) {
        height: 60px !important;
        padding-top: 18px !important;
    }

    body .gform_wrapper select {
        height: 60px !important;
    }
}

/*remove spacing above input fields to match button size*/
body .gform_wrapper .hidden_label .ginput_container > * {
    margin-top: 0px !important;
}

/*input field spacing*/
.gform_wrapper.gravity-theme .gfield select {
    padding-left: 30px !important;
}

.gform_wrapper.gravity-theme .gfield input:not([type="submit"]) {
    padding-left: 30px !important;
}

@media screen and (max-width: 980px) {
    .gform_wrapper.gravity-theme .gfield select {
        padding-left: 0px !important;
    }

    .gform_wrapper.gravity-theme .gfield input:not([type="submit"]) {
        padding-left: 0px !important;
    }
}

/*placeholder text*/
/*select field*/
.gform_wrapper.gravity-theme select {
    font-size: 20px !important;
    text-transform: uppercase;
    color: #a5a5a5;
    margin-bottom: 0;
    letter-spacing: 1px;
}

@media screen and (max-width: 980px) {
    .gform_wrapper.gravity-theme select {
        text-align: center !important;
    }

    .gform_wrapper
        .gform_body
        .gform_fields
        .gfield
        input::-webkit-input-placeholder {
        text-align: center !important;
    }
}

@media screen and (max-width: 640px) {
    .gform_wrapper.gravity-theme select {
        font-size: 14px !important;
    }
}

@media screen and (min-width: 641px) and (max-width: 767px) {
    .gform_wrapper.gravity-theme select {
        font-size: 12px !important;
    }

    .gform_wrapper
        .gform_body
        .gform_fields
        .gfield
        input::-webkit-input-placeholder {
        font-size: 12px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
    .gform_wrapper.gravity-theme select {
        font-size: 14px !important;
    }
}

@media screen and (min-width: 981px) and (max-width: 1250px) {
    .gform_wrapper.gravity-theme select {
        font-size: 15px !important;
    }
}

/*all other fields*/
.gform_wrapper
    .gform_body
    .gform_fields
    .gfield
    input::-webkit-input-placeholder {
    text-transform: uppercase !important;
    color: #a5a5a5;
    font-size: 20px;
    letter-spacing: 1px;
}

@media screen and (max-width: 640px) {
    .gform_wrapper
        .gform_body
        .gform_fields
        .gfield
        input::-webkit-input-placeholder {
        font-size: 14px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
    .gform_wrapper
        .gform_body
        .gform_fields
        .gfield
        input::-webkit-input-placeholder {
        font-size: 14px !important;
    }
}

@media screen and (min-width: 981px) and (max-width: 1250px) {
    .gform_wrapper
        .gform_body
        .gform_fields
        .gfield
        input::-webkit-input-placeholder {
        font-size: 15px !important;
    }
}

/*gap between fields*/
@media screen and (min-width: 641px) and (max-width: 767px) {
    .gform_wrapper.gravity-theme .gform_fields {
        grid-column-gap: 5px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
    .gform_wrapper.gravity-theme .gform_fields {
        grid-column-gap: 10px !important;
    }
}

@media screen and (min-width: 981px) {
    .gform_wrapper.gravity-theme .gform_fields {
        grid-column-gap: 20px !important;
    }
}

/*mobile styling*/
@media screen and (min-width: 641px) and (max-width: 980px) {
    .subscribe-form-row {
        width: 90% !important;
    }
}

/*select field arrow replacement*/
.gform_wrapper.gravity-theme .footer-form select {
    -webkit-appearance: none !important;
}

.gform_wrapper.gravity-theme .about-contact select {
    -webkit-appearance: none !important;
}

/*select field - new arrow*/
.gform_wrapper.gravity-theme .about-contact .gfield select.large {
    background: #fff0 url(/wp-content/uploads/yellow-form-arrow.png) right
        center no-repeat;
    left: 0px !important;
}

@media screen and (max-width: 980px) {
    .gform_wrapper.gravity-theme .about-contact .gfield select.large {
        background: #fff0 url(/wp-content/uploads/yellow-arrow-mobile.png) right
            center no-repeat !important;
        left: 0px !important;
    }
}

/*footer form select field background-color adjustment*/
#input_2_3 {
    background: #fff url(/wp-content/uploads/yellow-form-arrow.png) right center
        no-repeat;
}

@media screen and (max-width: 980px) {
    #input_2_3 {
        background: #fff url(/wp-content/uploads/yellow-arrow-mobile.png) right
            center no-repeat !important;
    }
}

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

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

/*--HEADER--*/
/*navigation and logo row**/
/*flex row*/
.header-flex {
    display: flex;
    flex-direction: row;
    justify-content: center !important;
}

/*navigation menu*/
/*font weight*/
.header-links.et_pb_menu ul li a {
    font-weight: 400;
}

.header-links.et_pb_menu ul li.current-menu-item a {
    font-weight: 600;
}

/*arrow after current menu items*/
.header-links.et_pb_menu ul li.current-menu-item a:after {
    font-family: "ETMODULES";
    content: "\45";
    text-align: center;
    vertical-align: middle;
    margin-left: -1px;
    color: #ed9531;
    font-size: 1em;
    transition: all 0.3s ease;
}

.header-links.et_pb_menu ul li.current-menu-item .sub-menu a:after {
    display: none !important;
}

.header-links.et_pb_menu ul li.current-menu-item .sub-menu a {
    font-weight: 400 !important;
}

.header-links.et_pb_menu ul li.current-menu-item.menu-item-has-children:after {
    font-family: "ETMODULES";
    content: "\45";
    text-align: center;
    vertical-align: middle;
    margin-left: -1px;
    margin-top: 1px !important;
    color: #ed9531;
    font-size: 1.8em;
    transition: all 0.3s ease;
}

.sub-menu li.current-menu-item a:after {
    font-family: "ETMODULES";
    content: "\45";
    text-align: center;
    vertical-align: middle;
    margin-left: -1px;
    color: #ed9531;
    font-size: 1em;
    transition: all 0.3s ease;
}

/*spacing between menu links*/
.header-links.et_pb_menu .et-menu > li {
    padding-right: 16px;
    padding-left: 16px;
}

/*remove ::after on nav items with children and aadjust spacing*/
.header-links .et-menu .menu-item-has-children > a:first-child:after {
    display: none !important;
}

.header-links .et-menu .menu-item-has-children > a:first-child {
    padding-right: 0px !important;
}

/**small desktop styling**/
@media screen and (min-width: 981px) and (max-width: 1100px) {
    .header-links li {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .header-links a {
        font-size: 13px !important;
    }

    .head-logo {
        max-width: 90px !important;
    }
}

@media screen and (min-width: 1101px) and (max-width: 1300px) {
    .header-links a {
        font-size: 13px !important;
    }

    .head-logo {
        max-width: 100px !important;
    }
}

@media screen and (min-width: 1301px) and (max-width: 1500px) {
    .header-links a {
        font-size: 17px !important;
    }

    .head-logo {
        max-width: 110px !important;
    }
}

/**sub-menu**/
/*width*/
.header-links .sub-menu {
    width: 300px !important;
}

.header-links .sub-menu li {
    width: 100% !important;
}

.header-links .sub-menu li a {
    width: 100% !important;
}

/*rounded corners*/
ul.sub-menu {
    border-radius: 0px 0px 30px 30px;
}

/*link text*/
.header-links .sub-menu a {
    text-transform: capitalize !important;
    font-size: 18px !important;
}

@media screen and (min-width: 981px) and (max-width: 1300px) {
    .header-links .sub-menu a {
        font-size: 13px !important;
    }
}

@media screen and (min-width: 1301px) and (max-width: 1500px) {
    .header-links .sub-menu a {
        font-size: 16px !important;
    }
}

/*link padding*/
.header-links .et-menu li li a {
    padding: 3px 20px !important;
}

@media screen and (min-width: 981px) and (max-width: 1300px) {
    .header-links .et-menu li li a {
        padding: 1px 20px !important;
    }
}

/*arrow after current menu items*/
.header-links.et_pb_menu li li a:hover::after {
    font-family: "ETMODULES";
    content: "\45";
    text-align: center;
    vertical-align: middle;
    margin-left: -1px;
    color: #ed9531;
    font-size: 1em;
    transition: all 0.3s ease;
}

/**fullscreen mobile menu**/
@media screen and (max-width: 980px) {
    /*align the hamburger menu to the right*/
    .fs-fullscreen-mobile .et_pb_menu__wrap {
        justify-content: flex-end !important;
    }

    /*hide the desktop version of the menu*/
    .fs-fullscreen-mobile .et_pb_menu__wrap .et_pb_menu__menu {
        display: none !important;
    }

    /*style the opened menu*/
    .fs-fullscreen-mobile .opened #mobile_menu1 {
        width: 400px !important;
        position: fixed !important;
        top: 0em !important;
        right: 0px !important;
        left: auto !important;
        height: 100vh !important;
        display: flex !important;
        justify-content: center !important;
        flex-direction: column !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: visibility 0.3s, opacity 0.3s ease-in-out;
        padding: 0 !important;
    }

    /*style the closed menu*/
    .fs-fullscreen-mobile .closed #mobile_menu1 {
        background-color: #fff !important;
        text-align: center !important;
        width: 100vw !important;
        position: fixed !important;
        left: 100vw !important;
        top: 0em !important;
        height: 100vh !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        flex-direction: column !important;
        transition: visibility 0.3s, opacity 0.3s, left 1s, ease-in-out;
        opacity: 0 !important;
        visibility: hidden !important;
    }

    /*remove the bullet points from the list items*/
    .fs-fullscreen-mobile #mobile_menu1 li {
        list-style: none !important;
        text-align: center !important;
        width: 100%;
    }

    /*move the menu to the top above other elements*/
    .fs-fullscreen-mobile .et_pb_menu__wrap span.mobile_menu_bar {
        z-index: 999999 !important;
    }

    /*change the opened menu icon*/
    .fs-fullscreen-mobile .et_pb_menu__wrap .opened .mobile_menu_bar:before {
        content: "\4d" !important;
        color: #fff !important;
        font-size: 20px !important;
    }

    /*make the hamburger menu fixed position on mobile*/
    .fs-fullscreen-mobile .opened .mobile_menu_bar {
        position: fixed !important;
        top: 100px !important;
    }

    /*remove the default blue border top on the mobile menu*/
    .fs-fullscreen-mobile .et_mobile_menu {
        border-top: none;
    }

    /*remove the default background color on menu items*/
    .fs-fullscreen-mobile .et_mobile_menu .menu-item-has-children > a {
        background-color: transparent;
    }

    /*remove the default hover background color and adjust opacity*/
    .et_mobile_menu li a:hover {
        background-color: transparent;
        opacity: 1;
    }

    /*remove the default border bottom on menu items*/
    .fs-fullscreen-mobile .et_mobile_menu li a {
        border-bottom: none;
    }

    /*links aligned left*/
    .fs-fullscreen-mobile #mobile_menu1 li {
        text-align: left !important;
        padding-left: 20px !important;
    }

    .fs-fullscreen-mobile .et_mobile_menu li li a {
        border-left: 2px solid #ed9531;
    }

    /*link size on mobile*/
    @media screen and (max-width: 767px) {
        .fs-fullscreen-mobile .et_mobile_menu li li a {
            font-size: 16px !important;
        }
    }

    /*spacing between links*/
    .et_mobile_menu li a {
        padding: 6px 5% !important;
    }
}

/*menu size on small mobile*/
@media screen and (max-width: 699px) {
    .fs-fullscreen-mobile .opened #mobile_menu1 {
        width: 100% !important;
    }
}

/**top bar**/
/*flex row*/
.top-bar-flex {
    display: flex;
    flex-direction: row;
    justify-content: center !important;
}

@media screen and (max-width: 767px) {
    .top-bar-flex {
        flex-direction: column !important;
    }
}

/**small desktop and mobile styling**/
/*text size*/
@media screen and (max-width: 357px) {
    .top-bar-text {
        font-size: 10px !important;
    }
}

@media screen and (min-width: 981px) and (max-width: 1100px) {
    .top-bar-text {
        font-size: 12px !important;
    }

    .top-bar-button {
        font-size: 12px !important;
    }
}

@media screen and (min-width: 1101px) and (max-width: 1300px) {
    .top-bar-text {
        font-size: 14px !important;
    }

    .top-bar-button {
        font-size: 14px !important;
    }
}

/*row size on small mobile*/
@media screen and (max-width: 400px) {
    .top-bar-row {
        width: 100% !important;
    }
}

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

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

/*--HOME PAGE--*/
/**hero flex row**/
.home-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center !important;
}

.content-1 {
    width: 100% !important;
}

.content-2 {
    width: 100% !important;
    display: flex;
    flex-direction: row;
    justify-content: center !important;
}

@media screen and (max-width: 767px) {
    .content-2 {
        flex-direction: column !important;
    }

    .home-hero-btn {
        width: 262px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
    .home-hero-content {
        left: 0 !important;
        right: 0 !important;
    }
}

/**hero row width small desktops**/
/*row width*/
@media screen and (min-width: 981px) and (max-width: 1299px) {
    .home-hero-content {
        width: 735px !important;
    }

    .home-hero-sec {
        height: 800px !important;
    }
}

@media screen and (min-width: 1300px) and (max-width: 1603px) {
    .home-hero-content {
        width: 860px !important;
    }

    .home-hero-sec {
        height: 900px !important;
    }
}

@media screen and (min-width: 1604px) {
    .home-hero-content {
        width: 1105px !important;
    }
}

/*font sizes*/
@media screen and (min-width: 1300px) and (max-width: 1603px) {
    .home-hero-title h1 {
        font-size: 55px !important;
    }

    .home-hero-subtitle p {
        font-size: 35px !important;
        line-height: 1.3em !important;
    }
}

@media screen and (min-width: 1100px) and (max-width: 1299px) {
    .home-hero-title h1 {
        font-size: 45px !important;
    }

    .home-hero-subtitle p {
        font-size: 30px !important;
        line-height: 1.3em !important;
    }
}

@media screen and (min-width: 981px) and (max-width: 1099px) {
    .home-hero {
        width: 72vw !important;
    }

    .home-hero-title h1 {
        font-size: 45px !important;
    }

    .home-hero-subtitle p {
        font-size: 30px !important;
        line-height: 1.3em !important;
    }
}

/**free study materials buttons**/
/*text weight on hover*/
body #page-container .et_pb_section .study-materials-buttons:hover {
    font-weight: 600 !important;
}

/**online-courses row**/
@media screen and (min-width: 981px) and (max-width: 1299px) {
    .online-courses {
        width: 90% !important;
    }
}

/*add margin to last blurb in row*/
.flex-4 {
    margin-bottom: 2.75% !important;
}

/**study materials**/
/*row width on tablet*/
@media screen and (min-width: 768px) and (max-width: 980px) {
    .free-study-materials {
        max-width: 602px !important;
    }
}

/**online courses**/
/*subtitle width on small desktop, tablet and mobile*/
@media screen and (min-width: 678px) and (max-width: 980px) {
    .study-materials-sub {
        max-width: 500px !important;
        margin: auto !important;
    }
}

@media screen and (min-width: 981px) {
    .study-materials-sub {
        max-width: 600px !important;
        margin: auto !important;
    }
}

/**blurbs styling**/
/*column spacing*/
@media screen and (min-width: 981px) {
    .home-blurb-col {
        margin-left: 10px !important;
        margin-right: 10px !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
    .home-blurb-col {
        width: 48% !important;
        margin: 5px 5px !important;
        height: 545px !important;
    }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .home-blurb-col {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
}

@media screen and (max-width: 479px) {
    .et_pb_row .et_pb_column.home-blurb-col {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
}

/*add overlay to blurb images on hover*/
.home-blurb .et_pb_main_blurb_image {
    position: relative !important;
}

.home-blurb:hover .et_pb_main_blurb_image::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(148, 166, 191, 0.5),
        rgba(148, 166, 191, 0.5)
    );
}

/*button bold on hover*/
.home-blurb-button.et_pb_button {
    font-weight: 400;
}

.home-blurb-button.et_pb_button:hover {
    font-weight: 600;
}

/**conversational english blurb on small mobile**/
@media screen and (max-width: 400px) {
    .conv-eng-blurb.et_pb_blurb .et_pb_module_header {
        font-size: 17px !important;
    }
}

/**blurbs on small desktops**/
@media screen and (min-width: 981px) and (max-width: 1300px) {
    .home-blurb.et_pb_blurb .et_pb_module_header {
        font-size: 15px !important;
    }

    .home-blurb.et_pb_blurb .et_pb_blurb_content {
        line-height: 1.8em;
        font-size: 14px;
    }
}

@media screen and (min-width: 1301px) and (max-width: 1457px) {
    .home-blurb.et_pb_blurb .et_pb_module_header {
        font-size: 17px !important;
    }
}

/**testimonial slider**/
/*bold author name*/
.testimonial-author p {
    font-weight: 900 !important;
}

/*add gradient to inactive slides*/
div#n2-ss-2 .n2-ss-showcase-overlay {
    background: linear-gradient(
        90deg,
        rgba(56, 58, 86, 0.9010197829131653) 0%,
        rgba(56, 58, 86, 0.7) 50%,
        rgba(56, 58, 86, 0.9) 100%
    );
}

/**mobile styling**/
@media screen and (max-width: 400px) {
    div#n2-ss-2 .n-uc-Mj4itkToc3Yc {
        padding: 0px 0px 10px 0px !important;
    }

    .n2-ss-section-main-content.n2-ss-layer-with-background.n2-ss-layer-content.n2-ow {
        padding: 10px 30px !important;
    }

    .n2-ss-slide {
        height: 650px !important;
    }

    .testimonial-author {
        margin-top: 40px !important;
    }

    div#n2-ss-2 .n2-ss-showcase-overlay {
        height: auto !important;
    }

    div#n2-ss-2 .n2-ss-showcase-slides {
        height: 650px !important;
    }

    div.n2-ss-slider-3.n2-ow {
        height: 650px !important;
    }
}

@media screen and (min-width: 401px) and (max-width: 500px) {
    div#n2-ss-2 .n-uc-Mj4itkToc3Yc {
        padding: 0px 0px 10px 0px !important;
    }

    .n2-ss-section-main-content.n2-ss-layer-with-background.n2-ss-layer-content.n2-ow {
        padding: 10px 30px !important;
    }

    .n2-ss-slide {
        height: 650px !important;
    }

    .testimonial-author {
        margin-top: 40px !important;
    }

    div#n2-ss-2 .n2-ss-showcase-overlay {
        height: ato !important;
    }

    div#n2-ss-2 .n2-ss-showcase-slides {
        height: 650px !important;
    }

    div.n2-ss-slider-3.n2-ow {
        height: 650px !important;
    }
}

@media screen and (min-width: 501px) and (max-width: 600px) {
    div#n2-ss-2 .n-uc-Mj4itkToc3Yc {
        padding: 0px 0px 10px 0px !important;
    }

    .n2-ss-section-main-content.n2-ss-layer-with-background.n2-ss-layer-content.n2-ow {
        padding: 10px 30px !important;
    }

    .n2-ss-slide {
        height: 550px !important;
    }

    .testimonial-author {
        margin-top: 40px !important;
    }

    div#n2-ss-2 .n2-ss-showcase-overlay {
        height: ato !important;
    }

    div#n2-ss-2 .n2-ss-showcase-slides {
        height: 550px !important;
    }

    div.n2-ss-slider-3.n2-ow {
        height: 550px !important;
    }
}

@media screen and (min-width: 601px) and (max-width: 700px) {
    div#n2-ss-2 .n-uc-Mj4itkToc3Yc {
        padding: 0px 0px 10px 0px !important;
    }

    .n2-ss-section-main-content.n2-ss-layer-with-background.n2-ss-layer-content.n2-ow {
        padding: 10px 30px !important;
    }

    .n2-ss-slide {
        height: 550px !important;
    }

    .testimonial-author {
        margin-top: 40px !important;
    }

    div#n2-ss-2 .n2-ss-showcase-overlay {
        height: ato !important;
    }

    div#n2-ss-2 .n2-ss-showcase-slides {
        height: 550px !important;
    }

    div.n2-ss-slider-3.n2-ow {
        height: 450px !important;
    }
}

@media screen and (min-width: 701px) and (max-width: 900px) {
    div#n2-ss-2 .n-uc-Mj4itkToc3Yc {
        padding: 0px 0px 10px 0px !important;
    }

    .n2-ss-section-main-content.n2-ss-layer-with-background.n2-ss-layer-content.n2-ow {
        padding: 10px 30px !important;
    }

    .n2-ss-slide {
        height: 450px !important;
    }

    .testimonial-author {
        margin-top: 40px !important;
    }

    div#n2-ss-2 .n2-ss-showcase-overlay {
        height: ato !important;
    }

    div#n2-ss-2 .n2-ss-showcase-slides {
        height: 450px !important;
    }

    div.n2-ss-slider-3.n2-ow {
        height: 450px !important;
    }
}

@media screen and (min-width: 901px) and (max-width: 1199px) {
    div#n2-ss-2 .n-uc-Mj4itkToc3Yc {
        padding: 0px 0px 10px 0px !important;
    }

    .n2-ss-section-main-content.n2-ss-layer-with-background.n2-ss-layer-content.n2-ow {
        padding: 35px 50px !important;
    }

    .n2-ss-slide {
        height: 475px !important;
    }

    .testimonial-author {
        margin-top: 40px !important;
    }

    div#n2-ss-2 .n2-ss-showcase-overlay {
        height: ato !important;
    }

    div#n2-ss-2 .n2-ss-showcase-slides {
        height: 475px !important;
    }

    div.n2-ss-slider-3.n2-ow {
        height: 475px !important;
    }
}

@media screen and (min-width: 1200px) {
    div#n2-ss-2 .n-uc-Mj4itkToc3Yc {
        padding: 0px 0px 10px 0px !important;
    }

    .n2-ss-section-main-content.n2-ss-layer-with-background.n2-ss-layer-content.n2-ow {
        padding: 50px 75px !important;
    }

    .n2-ss-slide {
        height: 500px !important;
    }

    .testimonial-author {
        margin-top: 40px !important;
    }

    div#n2-ss-2 .n2-ss-showcase-overlay {
        height: ato !important;
    }

    div#n2-ss-2 .n2-ss-showcase-slides {
        height: 500px !important;
    }
}

/**text sizinf adjustments in between breakpoints*/
@media screen and (max-width: 400px) {
    .grammar-explanations h3 {
        font-size: 19px !important;
    }
}

@media screen and (max-width: 450px) {
    .testimonial-header h2 {
        font-size: 28px !important;
    }
}

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

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

/*--ABOUT--*/
/**hero section**/
/*adjust position of hero image*/
.about-bkg {
    background-position: 0px 0px;
}

/**contact form**/
/*submit buttons*/
body .gform_wrapper .about-contact .gform_footer input.button {
    background-color: #fff;
    padding: 15px 50px 15px 50px;
    color: #000;
    border: 0px;
    border-radius: 50px;
    font-family: "Poppins", Arial, sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
}

body .gform_wrapper .about-contact .gform_footer input.button:hover {
    background-color: #ed9531;
    color: #fff;
}

/*move submit button to right*/
.gform_wrapper.gravity-theme .about-contact .gform_footer {
    justify-content: flex-end;
}

/**input fields**/
/*all other fields*/
body .gform_wrapper .about-contact input:not([type="submit"]) {
    background: transparent !important;
    border: 1px solid #6f729e !important;
    border-radius: 50px;
    height: 70px !important;
    padding-top: 23px !important;
}

/*message field*/
body .gform_wrapper .about-contact .gform_body .gform_fields .gfield textarea {
    background: transparent;
    border: 1px solid #6f729e;
    border-radius: 10px;
    margin-top: 0px !important;
}

/*message field placeholder*/
.gform_wrapper
    .about-contact
    .gform_body
    .gform_fields
    .gfield
    textarea::-webkit-input-placeholder {
    text-transform: capitalize !important;
    color: #6f729e !important;
    font-size: 20px !important;
}

/*other field placeholders*/
.gform_wrapper
    .about-contact
    .gform_body
    .gform_fields
    .gfield
    input::-webkit-input-placeholder {
    text-transform: capitalize !important;
    color: #6f729e !important;
    font-size: 20px !important;
}

/*select field*/
body .gform_wrapper .about-contact select {
    background: transparent;
    border: 1px solid #6f729e;
    border-radius: 50px;
    height: 70px !important;
}

.gform_wrapper.gravity-theme .about-contact select {
    font-size: 20px !important;
    text-transform: capitalize;
    color: #6f729e;
    margin-bottom: 0;
    letter-spacing: 1px;
}

/**form on purple backgrounds mobile nad tablet and small desktop styling**/
@media screen and (max-width: 479px) {
    /*select field placeholder*/
    .gform_wrapper.gravity-theme .about-contact select {
        font-size: 10px !important;
    }

    /*other field placeholders*/
    .gform_wrapper
        .about-contact
        .gform_body
        .gform_fields
        .gfield
        input::-webkit-input-placeholder {
        font-size: 12px !important;
    }

    /*center submit button*/
    .gform_wrapper.gravity-theme .about-contact .gform_footer {
        justify-content: center;
    }

    /*button width*/
    body .gform_wrapper .about-contact .gform_footer input.button {
        width: 100%;
    }

    /*submit button size*/
    body .gform_wrapper .about-contact .gform_footer input.button {
        font-size: 12px;
        height: 70px;
    }

    /*message field placeholder*/
    .gform_wrapper
        .about-contact
        .gform_body
        .gform_fields
        .gfield
        textarea::-webkit-input-placeholder {
        text-transform: capitalize !important;
        font-size: 12px !important;
        text-align: center !important;
    }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    /*select field placeholder*/
    .gform_wrapper.gravity-theme .about-contact select {
        font-size: 14px !important;
    }

    /*other field placeholders*/
    .gform_wrapper
        .about-contact
        .gform_body
        .gform_fields
        .gfield
        input::-webkit-input-placeholder {
        font-size: 14px !important;
    }

    /*submit button size*/
    body .gform_wrapper .about-contact .gform_footer input.button {
        font-size: 14px;
        height: 70px;
    }

    /*message field placeholder*/
    .gform_wrapper
        .about-contact
        .gform_body
        .gform_fields
        .gfield
        textarea::-webkit-input-placeholder {
        text-transform: capitalize !important;
        font-size: 14px !important;
        text-align: center !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
    /*select field placeholder*/
    .gform_wrapper.gravity-theme .about-contact select {
        text-align: left !important;
        padding-left: 20px !important;
    }

    /*other field placeholders*/
    .gform_wrapper
        .about-contact
        .gform_body
        .gform_fields
        .gfield
        input::-webkit-input-placeholder {
        text-align: left !important;
        padding-left: 20px !important;
    }

    /*submit button size*/
    body .gform_wrapper .about-contact .gform_footer input.button {
        height: 70px;
    }

    /*message field placeholder*/
    .gform_wrapper
        .about-contact
        .gform_body
        .gform_fields
        .gfield
        textarea::-webkit-input-placeholder {
        text-transform: capitalize !important;
        text-align: left !important;
    }
}

@media screen and (min-width: 981px) and (max-width: 1150px) {
    /*select field placeholder*/
    .gform_wrapper.gravity-theme .about-contact select {
        font-size: 16px !important;
    }

    /*other field placeholders*/
    .gform_wrapper
        .about-contact
        .gform_body
        .gform_fields
        .gfield
        input::-webkit-input-placeholder {
        font-size: 16px !important;
    }

    /*submit button size*/
    body .gform_wrapper .about-contact .gform_footer input.button {
        font-size: 16px;
        height: 70px;
    }

    /*message field placeholder*/
    .gform_wrapper
        .about-contact
        .gform_body
        .gform_fields
        .gfield
        textarea::-webkit-input-placeholder {
        text-transform: capitalize !important;
        font-size: 16px !important;
    }
}

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

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

/*--GRAMMAR RESOURCES PAGE--*/
/**resources boxe rows**/
/*spacing between columns on desktop*/
@media screen and (min-width: 981px) {
    .resources-rows .et_pb_column {
        margin: 10px !important;
    }
}

/**resources boxes hover**/
@media screen and (min-width: 981px) {
    .resources-rows .et_pb_column {
        height: 275px !important;
    }
}

.resources-rows .et_pb_column:hover {
    cursor: pointer !important;
}

.resources-rows .et_pb_column:hover .resources-divider {
    display: none !important;
    transition: transform 2s ease-in-out;
}

.resources-rows .et_pb_column .resources-divider-hover {
    display: none !important;
}

.resources-rows .et_pb_column:hover .resources-divider-hover {
    display: block !important;
    transition: transform 2s ease-in-out;
}

.resources-rows .et_pb_column .resources-icon {
    display: none !important;
}

.resources-rows .et_pb_column:hover .resources-icon {
    display: block !important;
    transition: transform 2s ease-in-out;
}

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

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

/*--BLOG--*/
/**to be edited in theme builder**/
/*spacing below featured image*/
.et_pb_title_featured_container {
    margin-bottom: 35px !important;
}

/*featured image rounded corners*/
.et_pb_title_featured_container img {
    border-radius: 30px !important;
}

@media screen and (max-width: 479px) {
    .et_pb_title_featured_container img {
        border-radius: 20px !important;
    }
}

/**blog page grid**/
/*spacing around image*/
.et_pb_blog_grid .et_pb_image_container img {
    padding: 30px 30px 0px 30px;
}

/*rounded corners on post box and bottom padding*/
.et_pb_blog_grid .et_pb_salvattore_content[data-columns] .column .et_pb_post {
    border-radius: 15px !important;
    padding-bottom: 35px !important;
}

/*no border on overlay*/
.et_pb_blog_0 .et_overlay {
    border: 0px !important;
}

/*blogs eqaul heights regardless of title length*/
.pa-blog-equal-height .pa-auto-height {
    height: auto !important;
}

.pa-blog-equal-height .pa-auto-margin {
    margin-top: 20px !important;
}

/**small desktop styling**/
/*adjust title text size*/
@media screen and (min-width: 981px) and (max-width: 1100px) {
    .et_pb_blog_0 .et_pb_post .entry-title a {
        font-size: 18px !important;
    }
}

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

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

/*--COURSES--*/
/**mobile styling**/
/*text adjustments - conversational english*/
@media screen and (max-width: 350px) {
    .conversational-english-mobile h2 {
        font-size: 20px !important;
    }
}

@media screen and (min-width: 351px) and (max-width: 400px) {
    .conversational-english-mobile h2 {
        font-size: 22px !important;
    }
}

@media screen and (min-width: 401px) and (max-width: 419px) {
    .conversational-english-mobile h2 {
        font-size: 23px !important;
    }
}

/**small desktop styling**/
@media screen and (min-width: 981px) and (max-width: 1306px) {
    .conversational-english-mobile h2 {
        font-size: 30px !important;
    }

    a.et_pb_button.sign-up-conv-english {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    a.et_pb_button.learn-more-vip {
        padding-right: 30px !important;
        padding-left: 30px !important;
        font-size: 17px !important;
    }
}

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

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

/*--CONTACT PAGE--*/
/**form styling**/
/*submit buttons*/
body .gform_wrapper .contact-us .gform_footer input.button {
    background-color: #fff;
    padding: 15px 50px 15px 50px;
    color: #000;
    border: 0px;
    border-radius: 50px;
    font-family: "Poppins", Arial, sans-serif;
    text-transform: uppercase;
    font-size: 20px;
    letter-spacing: 1px;
}

body .gform_wrapper .contact-us .gform_footer input.button:hover {
    background-color: #ed9531;
    color: #fff;
}

/*move submit button to right*/
.gform_wrapper.gravity-theme .contact-us .gform_footer {
    justify-content: flex-end;
}

/**input fields**/
/*all other fields*/
body .gform_wrapper .contact-us input:not([type="submit"]) {
    background: transparent !important;
    border: 1px solid #6f729e !important;
    border-radius: 50px;
    height: 70px !important;
    padding-top: 23px !important;
}

/*message field*/
body .gform_wrapper .contact-us .gform_body .gform_fields .gfield textarea {
    background: transparent !important;
    border: 1px solid #6f729e !important;
    border-radius: 10px !important;
    margin-top: 0px !important;
}

/*message field placeholder*/
.gform_wrapper
    .contact-us
    .gform_body
    .gform_fields
    .gfield
    textarea::-webkit-input-placeholder {
    text-transform: capitalize !important;
    color: #6f729e !important;
    font-size: 20px !important;
}

/*other field placeholders*/
.gform_wrapper
    .contact-us
    .gform_body
    .gform_fields
    .gfield
    input::-webkit-input-placeholder {
    text-transform: capitalize !important;
    color: #6f729e !important;
    font-size: 20px !important;
}

/**contact blurbs**/
/*mobile*/
@media screen and (max-width: 619px) {
    .contact-blurb .et_pb_blurb_description {
        font-size: 12px !important;
    }

    .contact-blurb .et-pb-icon {
        font-size: 17px !important;
    }
}

@media screen and (min-width: 620px) and (max-width: 767px) {
    .contact-blurb .et_pb_blurb_description {
        font-size: 12px !important;
    }

    .contact-blurb .et-pb-icon {
        font-size: 17px !important;
    }

    .gform_wrapper.gravity-theme .about-contact .gform_footer {
        margin-bottom: -90px !important;
    }
}

/*desktop*/
@media screen and (min-width: 981px) and (max-width: 1299px) {
    .contact-blurb .et_pb_blurb_description {
        font-size: 20px !important;
    }

    .contact-blurb1.et_pb_blurb {
        margin-top: 30px !important;
    }
}

@media screen and (min-width: 1300px) and (max-width: 1500px) {
    .contact-blurb .et_pb_blurb_description {
        font-size: 13px !important;
    }

    .contact-blurb1.et_pb_blurb {
        margin-top: -75px !important;
    }
}

@media screen and (min-width: 1501px) and (max-width: 1700px) {
    .contact-blurb .et_pb_blurb_description {
        font-size: 17px !important;
    }

    .contact-blurb1.et_pb_blurb {
        margin-top: -75px !important;
    }
}

@media screen and (min-width: 1701px) {
    .contact-blurb1.et_pb_blurb {
        margin-top: -75px !important;
    }
}

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

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

/*--VIP BUSINESS ENGLISH PAGE--*/
/**small mobile styling**/
/*vip treatment row borders and spacing*/
@media screen and (max-width: 479px) {
    .vip1 {
        border-right: 0px !important;
        border-bottom: 1px solid #fff !important;
    }

    .vip2 {
        border-bottom: 0px !important;
        padding-top: 25px !important;
    }

    .vip3 {
        border-right: 0px !important;
    }

    .vip4 {
        padding-bottom: 0px !important;
    }
}

/**small desktop styling**/
/*vip treatment row and column sizing*/
@media screen and (min-width: 981px) and (max-width: 1400px) {
    .vip-treatment-row .et_pb_column {
        width: 50% !important;
        padding-right: 30px !important;
        padding-left: 30px !important;
    }

    .vip-treatment-row {
        width: 90% !important;
    }
	
}

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

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

/*--MEMBERSHIP INFO PAGE--*/
/**mobile styling adjustments**/
/*introducting text small mobile*/
@media screen and (max-width: 400px) {
    .introducing-mobile h1 {
        font-size: 26px !important;
    }

    .collaborate-mobile p {
        font-size: 18px !important;
    }

    .what-you-get-mobile h2 {
        font-size: 24px !important;
    }

    a.et_pb_button.buy-membership-button-mobile {
        padding-top: 11px !important;
        padding-right: 44px !important;
        padding-bottom: 11px !important;
        padding-left: 44px !important;
    }
}

@media screen and (min-width: 981px) and (max-width: 1280px){
	
	.what-you-get-mobile h2 {
        font-size: 31px !important;
    }
}

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

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

/*--GRAMMAR EXERCISES PAGE--*/
/**tablet and mobile styling**/
/*spacing between columns**/
@media screen and (max-width: 479px) {
    .resources-rows.et_pb_gutters1 .et_pb_column,
    .et_pb_gutters1.et_pb_row .et_pb_column {
        margin: 5px !important;
    }

    .pronunciation-mobile p {
        font-size: 14px;
    }
}

@media screen and (min-width: 626px) and (max-width: 700px) {
    .pronunciation-mobile p {
        font-size: 12px;
    }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
    .resources-rows .et_pb_column {
        margin: 5px !important;
        width: 47% !important;
    }
}

@media screen and (min-width: 768px) and (max-width: 980px) {
    .resources-rows .et_pb_column {
        margin: 5px !important;
        width: 48% !important;
    }
}

/**small desktop styling**/
/*resources row width*/
@media screen and (min-width: 981px) and (max-width: 1241px) {
    .resources-rows {
        width: 90% !important;
    }

    .pronunciation-mobile p {
        font-size: 17px;
    }

    .pronunciation-title p {
        font-size: 18px;
    }
}

@media screen and (min-width: 1598px) and (max-width: 1720px) {
    .pronunciation-mobile p {
        font-size: 18px;
    }
}

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

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

/*--GRAMMAR QUIZZES PAGE--*/
/**tablet, mobile and small desktop styling for certain items also found in section above under "Grammar Explanations Page" as they share elements**/
/**additional small desktop styling**/
/*phrasal verbs sizing*/
@media screen and (min-width: 981px) and (max-width: 1241px) {
    .phrasal-verbs p {
        font-size: 18px !important;
    }

    .pronunciation-quiz p {
        font-size: 18px !important;
    }

    .future-simple-quiz p {
        font-size: 18px !important;
    }
}

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

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

/*-- BUSINESS ENGLISH PAGE--*/
/**small desktop styling**/
/*reduce padding on 2nd columns*/
@media screen and (min-width: 981px) and (max-width: 1300px) {
    .free-study-materials {
        width: 90% !important;
    }
}

@media screen and (min-width: 981px) and (max-width: 1400px) {
    .bus-eng-col-2 {
        padding-right: 50px !important;
    }
}

/* update with rev 1 a  */
.ic_ap .et_pb_main_blurb_image {
    margin-bottom: 0px !important;
    vertical-align: middle;
}

/* up  */
.custom_blog_pdf_shec article {
    padding-top: 35px !important;
    margin-bottom: 30px !important;
}

.custom_blog_pdf_shec a.more-link {
    position: relative;
    margin-top: 20px !important;
    display: inline-block;
    padding-top: 20px;
    text-transform: capitalize;
}

.custom_blog_pdf_shec a.more-link:before {
    content: "";
    width: 50px;
    height: 2px;
    display: inline-block;
    background: #94a6bf;
    top: 0;
    left: 0;
    position: absolute;
    -webkit-transform: translate(50%, -50%);
    -ms-transform: translate(50%, -50%);
    transform: translate(50%, -50%);
}

/* up  */
.checklist ul li::before {
    font-family: "ETModules";
    content: "\4e";
    width: 20px;
    margin: 0;
    display: inline-block;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    color: #f47e3a;
    font-size: 22px;
    font-weight: normal;
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    font-weight: 900;
}
/* update for qa  */
.rv_button.closed:after {
    content: "\33" !important;
}
.rv_button.opened:after {
    content: "\32" !important;
}

.et_pb_module.et_pb_icon.et_pb_icon_0_tb_header.rv_button.closed::after {
    display: none !important;
}
/* update  */
@media only screen and (min-width: 981px) and (max-width: 1439px) {
    .row_for_1_2_3_res .et_pb_column {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}
/* end update  */
.custom_table_jn {
    margin-bottom: 15px;
}

.custom_table_jn,
.custom_table_jn th,
.custom_table_jn td {
    border: 1px solid #ddd;
}
.custom_table_jn td,
.custom_table_jn th {
    padding: 5px 15px;
}
/* update for 10  */
/* .single_btn_ag {
    position: absolute;
    bottom: 0;
    width: 150px;
    left: 0;
}
 */
.row_for_ab_button .et_pb_column {
    padding-bottom: 40px;
    position: relative;
}

.row_for_ab_button .et_pb_button_module_wrapper {
    position: absolute;
    bottom: -30px;
    width: 150px;
    left: 20px;
}
.accordion_single_c {
    /* padding-bottom: 41px; */
}
/* end update for 10  */
div#page-container div#et-boc .accordion_single_c .single_btn_ag,
div#page-container div#et-boc .accordion_single_c .single_btn_ag:hover {
    background: transparent !important;
    color: #ed9531 !important;
    font-size: 15px !important;
    position: relative !important;
    padding-left: 0 !important;
}

div#page-container .accordion_single_c .single_btn_ag:after {
    top: 4px;
}
/* up  */
div#page-container div#et-boc .white_acordion_s .single_btn_ag,
div#page-container div#et-boc .white_acordion_s .single_btn_ag:hover {
    color: #fff !important;
}
/* update  */
@media all and (min-width: 768px) {
    .table_area {
        display: flex;
        flex-wrap: wrap;
        gap: 45px;
    }
}
/* end update with rev 1  */
.single-post ol {
    line-height: 36px;
}
/* .grammar-exercises-pdf-list #post-1572{
	display:none;
} */

/* update  */

/* team popup  */

.pum-theme-default-theme .pum-container {
    background: #fff !important;
}

.popup_row {
    width: 100% !important;
}

.popup_section {
    padding: 10px !important;
}

button.pum-close.popmake-close {
    background: #f47e3a !important;
    color: #fff !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 25px !important;
    transition: 0.3s ease-in;
}

button.pum-close.popmake-close:hover {
    background: #000 !important;
    color: #fff !important;
}

.pum-theme-default-theme {
    background: rgb(0 0 0 / 70%) !important;
}

/* popup content  */

.popup_content h4 {
    font-size: 30px;
}

@media all and (max-width: 980px) {
    .popup_content h4 {
        font-size: 24px;
    }
}

@media all and (max-width: 767px) {
    .popup_content h4 {
        font-size: 20px;
    }
}

.popup_content {
    color: #000;
}

.popup_content a {
    color: #f43200;
}

.popup_row {
    padding: 0 !important;
}

.popup_section .popup_content {
    margin-bottom: 0 !important;
}

@media all and (min-width: 981px) {
    .popup_content {
        font-size: 16px !important;
    }
}
@media all and (max-width: 980px) {
    .popup_content {
        font-size: 15px !important;
    }
}
.popup_content {
    color: #000000;
}
/* up  */
div#page-container .up_id_sound_s .resources-icon {
    display: block !important;
}

div#page-container .resources-rows .et_pb_column .resources-divider-hover {
    display: block !important;
}

div#page-container .resources-divider {
    display: none !important;
}

.click_to_lit {
    display: none !important;
}
/* end poup content  */
/* update for icon */
.id_sound_cmn {
    display: inline-block !important;
    margin-right: 25px;
    max-width: 92px;
}

.icon_sp_inline {
    display: inline-block !important;
    max-width: 30px;
    position: relative;
    margin-left: 105px !important;
    margin-top: -40px !important;
}
.t_sound_row .icon_sp_inline,
.d_sound_row .icon_sp_inline {
    margin-left: 95px !important;
}
@media all and (max-width: 980px) {
    .icon_sp_inline {
        margin-left: 85px !important;
    }
    .t_sound_row .icon_sp_inline,
    .d_sound_row .icon_sp_inline {
        margin-left: 75px !important;
    }
}

/* endupdae for icon */
/* end update  */

/* update with rev 4  */
.table_flex_c {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.custom_li_for_quiz ol li {
    line-height: 1.8;
}

.custom_li_for_quiz ol li::marker {
    font-weight: 600;
    text-indent: -20px !important;
}
/* table  */
.right_table_c {
    width: 50%;
    text-align: center;
}

.table_area {
    max-width: 1080px;
}
/* up tra */
.no_border_c th {
    border: 0;
    padding: 0;
    font-weight: 400;
    text-align: left;
}

.no_border_c tr {
    display: flex;
    flex-wrap: nowrap;
    border: 0;
}

.no_border_c {
    border: 0;
}

.no_border_c th:nth-child(1) {
    padding-right: 15px;
}
/* up  */
.c_sp_sort {
    padding-bottom: 25px;
}

/* for 3rd post go to future  */
.table_area_d {
    text-align: center;
    max-width: 680px;
    text-align: center;
}

.table_area_d table.custom_table_jn {
    margin: 0 auto;
}

.table_area_d .right_table_c {
    margin-top: 30px;
    width: 100%;
}

.table_area_d .right_table_c table.custom_table_jn {
    margin-left: 0;
    margin-bottom: 20px;
}

/* up  */

.last_t_c .left_talbe_c {
    width: calc(50% - 45px);
}

.last_t_c .right_table_c {
    text-align: left;
}
/* up  */
.no_border_c td {
    border: 0;
}

.no_border_c tr {
    align-items: center;
}

.last_5_table .right_table_c {
    text-align: left;
}

.last_5_table .right_table_c tr td {
    padding-left: 0;
}
/* end got o future  */
/* end update rev 4  */

/* update with rev 5  */
.formkit-input {
    font-size: 13px !important;
}
[data-group="dropdown"] select {
    font-size: 12px !important;
}
.home .n2-ss-slider .n2-ss-text {
    font-size: 12px !important;
}
@media only screen and (max-width: 1190px) {
    .home .n2-ss-slider .n2-ss-text {
        font-size: 10px !important;
    }
}

/*** Hridoy CSS update 11-16-22 ***/

@media (max-width: 1280px) {
    .container {
        width: 90%;
    }
    .et_pb_row {
        width: 90%;
    }
}

@media (max-width: 480px){
	.table_fix tr td {
    border-top: 1px solid #eee;
    padding: 6px 10px;
}
}

@media all and (min-width: 480px) and (max-width: 980px) {
  .three-columns .et_pb_column {
    width: 31%!important;
}
}

/* column align middle */
@media (min-width: 981px) {
  .center-align {
    display: flex;
    align-items: center;
  }
	.bottom-align{
		display: flex;
    align-items: flex-end;
	}
}

/* Column reverse on tab and mobile devices */
@media (max-width: 980px) {
  .column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .column-reverse .et_pb_column:first-child {
    margin-bottom: 0;
  }
  .column-reverse .et_pb_column:last-child {
    margin-bottom: 30px;
  }
}

@media (max-width: 479px) {
	.column-reverse .et_pb_column:last-child {
     margin-bottom: 30px !important;
     }
}

@media (max-width: 980px){
	.blog_row_fix .column.size-1of3{
	width: 100%
}
}
