/*
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: 2.3.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 {
    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: 200%;
    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("https://hub.btechconsortium.com/wp-content/uploads/fs-lettermark-white.svg");
    background-repeat: no-repeat;
    background-size: 42px 20px;
    text-indent: 200%;
    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: 25px;
    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: #ef9d39;
    /* set font size helps make icon sharper */
    font-size: 22px;
    font-weight: normal;
}

.checklist ul li::before {
    content: "";
    width: 15px;
    height: 15px;
    background-image: url(https://hub.btechconsortium.com/wp-content/uploads/Menu-icon-img.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 6px;
}

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

/********************************************************* Start Custom Style   ***************************************/

body {
    font-weight: 400;
}

body h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: trajan-pro-3, serif;
    padding-bottom: 0;
}

@media only screen and (min-width: 981px) {
    .equalHeight:not(.et_section_specialty) .et_pb_column,
    .et_section_specialty.equalHeight
        > .et_pb_row
        > .et_pb_column.et_pb_specialty_column {
        margin: auto;
    }

    .equalHeight .et_pb_column:first-child {
        margin-left: 0;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1360px) {
    body #page-container h1,
    body #page-container h2 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 980px) {
    .columnReverse {
        display: flex;
        flex-direction: column-reverse;
    }
}

/********************************************************* End Custom Style   ***************************************/

/********************************************************* Start Header Style   ***************************************/

body #page-container #main-header .container {
    width: 91%;
}

body #page-container #main-header {
    border-bottom: 1px solid #000000;
}

body
    #page-container
    #main-header
    #et-top-navigation
    .menu-item.current-menu-item {
    padding-left: 17px;
}

body
    #page-container
    #main-header
    #et-top-navigation
    .menu-item.current-menu-item
    a {
    font-weight: 700;
}

body
    #page-container
    #main-header
    #et-top-navigation
    .menu-item.current-menu-item:before {
    position: absolute;
    content: "";
    background-image: url(https://hub.btechconsortium.com/wp-content/uploads/Menu-icon-img.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 23px;
    height: 23px;
    left: -10px;
    top: -4px;
    z-index: 9999;
}

body
    #page-container
    #main-header
    #et-top-navigation
    .menu-item.Ppb_menuBtn:before {
    display: none;
}

body #page-container #main-header #et-top-navigation .menu-item.Ppb_menuBtn {
    padding-left: 0;
}

body
    #page-container
    #main-header
    #et-top-navigation
    .sub-menu
    .menu-item.current-menu-item:before {
    width: 15px;
    height: 15px;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

body #page-container #main-header #et-top-navigation .menu-item {
    padding-right: 16px;
}

body #page-container #main-header #et-top-navigation .Ppb_menuBtn {
    padding-right: 0px;
}

body #page-container #main-header #et-top-navigation .menu-item:hover a {
    opacity: 1;
}

@media only screen and (min-width: 981px) {
	body #page-container #main-header #et-top-navigation ul {
    width: unset;
}
}

body #page-container #main-header #et-top-navigation .menu-item a {
    opacity: 1;
    font-weight: 400;
    width: unset;
    white-space: nowrap;
}
/* body.et_pb_svg_logo #page-container #logo {
    height: 87px;
} */
body.et_pb_svg_logo #page-container .logo_container a {
    position: relative;
}
body.et_pb_svg_logo #page-container .logo_container a:after {
    content: "HUB";
    position: relative;
    top: 21px;
    right: -20px;
    font-size: 50px;
    padding: 16px 6px;
    background: #ef9d39;
    color: #fff;
    display: inline-block;
    border-radius: 5px;
    font-weight: 400;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    transition: all 300ms ease-in-out;
}

body.et_pb_svg_logo #page-container .et-fixed-header .logo_container a:after {
    top: 12px;
    right: -5px;
    font-size: 30px;
    padding: 8px 6px;
}
body.et_pb_svg_logo #page-container .et-fixed-header .logo_container a:before {
    font-size: 12px;
    top: -20px;
}
@media only screen and (min-width: 1181px) and (max-width: 1480px) {
    body #page-container #main-header #et-top-navigation .menu-item {
        padding-right: 12px;
    }

    body #page-container #main-header #et-top-navigation .menu-item a {
        font-size: 16px;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1280px) {
    body #page-container #main-header #et-top-navigation .menu-item a {
        font-size: 14px;
    }
    body #page-container #main-header #et-top-navigation .menu-item {
        padding-right: 10px;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1180px) {
    body #page-container #main-header #et-top-navigation .menu-item {
        padding-right: 7px;
    }

    body #page-container #main-header #et-top-navigation .menu-item a {
        font-size: 12px;
    }
    .et_pb_svg_logo #logo {
        height: 70% !important;
    }
}
@media only screen and (min-width: 981px) and (max-width: 1024px) {
    .et_pb_svg_logo #logo {
        height: 55% !important;
    }
}
@media only screen and (max-width: 1180px) {
    body.et_pb_svg_logo #page-container .logo_container a:after {
        top: 15px;
        right: -10px;
        font-size: 36px;
        padding: 12px 6px;
    }
}
@media only screen and (max-width: 980px) {
    body #page-container #main-header .container {
        width: 90%;
    }

    body
        #page-container
        #main-header
        #et-top-navigation
        .menu-item.current-menu-item {
        position: relative;
    }

    body
        #page-container
        #main-header
        #et-top-navigation
        .menu-item.current-menu-item:before {
        width: 10px;
        height: 10px;
        left: 5px;
        top: 17px;
    }

    body
        #page-container
        #main-header
        #et-top-navigation
        .menu-item.current-menu-item {
        padding-left: 0px;
    }

    body
        #page-container
        #main-header
        #et-top-navigation
        .menu-item.current-menu-item
        a {
        color: #ef9d39;
    }
    body.et_pb_svg_logo #page-container #logo {
        max-height: 80%;
		height: 80%;
    }
	
    body.et_pb_svg_logo #page-container .logo_container a::before {
        top: -25px;
        right: -90px;
    }
}
@media only screen and (max-width: 480px) {
    body.et_pb_svg_logo #page-container .logo_container a:after {
        top: 9px;
        right: -5px;
        font-size: 23px;
        padding: 6px 6px;
    }
}
/********************************************************* End Header Style   ***************************************/

/********************************************************* Start Banner Style   ***************************************/
body
    #page-container
    .Ppb_homeBanner
    .Ppb_bannerSlider
    .et_pb_slide_description
    .et_pb_slide_title,
body #page-container .Ppb_mainTitle h2,
body #page-container .Ppb_mainTitle h1,
.Ppb_mainTitle h1 {
    padding-bottom: 0px;
    display: inline;
    position: relative;
    text-transform: uppercase;
}

body #page-container .Ppb_mainTitle,
.Ppb_mainTitle,
.popmake-content .Ppb_mainTitle .et_pb_text_inner {
    text-align: center;
}

body
    #page-container
    .Ppb_homeBanner
    .Ppb_bannerSlider
    .et_pb_slide_description
    .et_pb_slide_title:before,
body #page-container .Ppb_mainTitle h2:before,
body #page-container .Ppb_mainTitle h1:before,
body.post-type-archive-mec-events #main-content h1:before,
.Ppb_mainTitle h1:before {
    position: absolute;
    content: "";
    background-image: url(https://hub.btechconsortium.com/wp-content/uploads/title-icon-img.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 67px;
    height: 68px;
    left: -16px;
    top: 38%;
    z-index: -1;
    transform: translateY(-50%);
}
body #page-container .Ppb_mainTitle.Ppb_maingreyTitle h2:before,
body #page-container .Ppb_mainTitle.Ppb_maingreyTitle h1:before {
    background-image: url(https://hub.btechconsortium.com/wp-content/uploads/title-icon-grey.svg);
}
body
    #page-container
    .Ppb_homeBanner
    .Ppb_bannerSlider
    .et_pb_slide_description
    p {
    font-size: 18px;
    max-width: 695px;
    margin: 0 auto;
}

.mec-single-event .mec-booking-button {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    text-transform: uppercase;
}
@media only screen and (max-width: 980px) {
    body
        #page-container
        .Ppb_homeBanner
        .Ppb_bannerSlider
        .et_pb_slide_description
        .et_pb_slide_title:before,
    body #page-container .Ppb_mainTitle h2:before,
    body #page-container .Ppb_mainTitle h1:before,
    body.post-type-archive-mec-events #main-content h1:before {
        background-size: 100%;

        width: 40px;
        height: 41px;
        left: -11px;
        top: 20%;
    }
}

@media only screen and (max-width: 380px) {
    body
        #page-container
        .Ppb_homeBanner
        .Ppb_bannerSlider
        .et_pb_slide_description
        .et_pb_slide_title {
        font-size: 20px !important;
        margin-bottom: 10px;
    }
}

/********************************************************* End Banner Style   ***************************************/

/********************************************************* Start Footer Style   ***************************************/
body
    #page-container
    #main-footer
    #footer-widgets
    .footer-widget
    .et_pb_widget.Ppb_widgetspcHide {
    margin-bottom: 30px !important;
}

body
    #page-container
    #main-footer
    #footer-widgets
    .footer-widget
    .et_pb_widget.Ppb_widgetspcHide:last-child,
body
    #page-container
    #main-footer
    #footer-widgets
    .footer-widget
    .et_pb_widget.Ppb_widgetspcHide.Ppb_ftlogoWrap {
    margin-bottom: 0px !important;
}

#footer-widgets .footer-widget li {
    padding-left: 0;
}

#footer-widgets .footer-widget .Ppb_ftSocialWrap {
    margin-left: -11px;
    margin-bottom: 0;
}

body
    #page-container
    #footer-widgets
    .footer-widget
    .et_pb_widget.Ppb_widgetspcHide.Ppb_footerInfo {
    margin-bottom: 20px;
}

body
    #page-container
    #footer-widgets
    .footer-widget
    .et_pb_widget.Ppb_widgetspcHide.Ppb_footerInfo
    p {
    line-height: 1.8em;
}

#footer-widgets .footer-widget .Ppb_ftSocialWrap li a,
#footer-widgets .footer-widget .Ppb_ftSocialWrap li a:before {
    line-height: 35px;
    height: 35px;
    width: 35px;
}

body #page-container #footer-widgets .footer-widget h2.widgettitle {
    font-size: 18px;
    font-weight: 600;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    color: #ef9d39;
    padding-bottom: 5px;
}

body #page-container #main-footer #footer-widgets .footer-widget li {
    margin-bottom: 0;
    line-height: 1.7em;
}

body
    #page-container
    #main-footer
    #footer-widgets
    .footer-widget
    .Ppb_ftlatestNews
    li {
    padding-bottom: 15px;
}

body #page-container #footer-widgets .footer-widget .Ppb_ftsocialWidget {
    clear: both;
}

body #page-container #main-footer #footer-bottom #footer-info {
    float: unset;
    text-align: center;
}

body #page-container #main-footer #footer-bottom {
    padding-top: 0;
}

body #page-container #footer-widgets .footer-widget {
    margin-bottom: 3%;
}

body #page-container #main-footer #footer-widgets {
    padding-top: 95px;
}

body #page-container #main-footer {
    padding-bottom: 80px;
}
body #page-container #main-footer .Ppb_designWrap {
    display: block;
    margin-top: 5px;
}

@media only screen and (min-width: 981px) {
    body #page-container #footer-widgets .footer-widget:nth-child(1) {
        width: 15.875%;
    }

    body #page-container #footer-widgets .footer-widget:nth-child(2) {
        width: 52.25%;
    }
}

/* @media only screen and (min-width: 981px) and (max-width: 1440px) {
	body #page-container #footer-widgets .footer-widget:nth-child(1) {
		width: 27.875%;
	}

	body #page-container #footer-widgets .footer-widget:nth-child(2) {
		width: 19.875%;
	}
} */

@media only screen and (max-width: 980px) {
    body #page-container #main-footer #footer-widgets .footer-widget {
        margin-bottom: 30px !important;
    }

    body
        #page-container
        #main-footer
        #footer-widgets
        .footer-widget:last-child {
        margin-bottom: 0px !important;
    }

    body #page-container #main-footer #footer-widgets {
        padding-top: 50px;
    }

    body #page-container #main-footer {
        padding-bottom: 30px;
    }

    body #page-container #main-footer .container {
        width: 90%;
    }
}

@media only screen and (max-width: 768px) {
    body #page-container #main-footer #footer-widgets {
        padding-top: 30px;
    }

    body #page-container #main-footer {
        padding-bottom: 10px;
    }

    body #page-container #main-footer #footer-widgets {
        padding-bottom: 30px;
    }
}

/********************************************************* End Footer Style   ***************************************/
/********************************************************* Start Blog Style   ***************************************/
body #page-container .et_pb_post .post-meta {
    padding-bottom: 15px;
}
body #page-container .et_pb_post .post-content {
    padding-bottom: 30px;
}
body #page-container .et_pb_post .post-content a.more-link {
    text-transform: capitalize;
    font-weight: 600;
    position: absolute;
    bottom: 30px;
}

body #page-container .et_pb_blog_grid .et_pb_post {
    padding: 40px 25px;
    margin-bottom: 0px;
}

body #page-container .et_pb_blog_grid .et_pb_salvattore_content {
    display: flex;
}

body
    #page-container
    .et_pb_blog_grid
    .et_pb_salvattore_content
    .column
    article {
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 16%);
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body.home
    #page-container
    .et_pb_blog_grid
    .et_pb_salvattore_content
    .column
    article {
    margin-bottom: 0px;
}

body.home
    #page-container
    .et_pb_blog_grid
    .et_pb_salvattore_content
    .column
    article,
body
    #page-container
    .Ppb_blogWrap
    .et_pb_blog_grid
    .et_pb_salvattore_content
    .column
    article {
    align-items: baseline;
}

body
    #page-container
    .Ppb_mainblogWrap
    .et_pb_blog_grid
    .et_pb_salvattore_content
    .column
    article {
    display: block;
    position: relative;
    padding-bottom: 60px;
}

body #page-container .Ppb_mnblogWrap h3 {
    font-size: 22px;
}
body #page-container .Ppb_mnblogWrap .el-dbe-post-categories li a {
    padding-right: 30px;
    padding-left: 30px;
}
body #page-container .Ppb_mnblogWrap .post-content {
    padding: 30px 30px 50px;
    position: relative;
    height: 100%;
}
body #page-container .Ppb_mnblogWrap .post-content .el-read-more-link {
    position: absolute;
    bottom: 0;
}
body
    #page-container
    .Ppb_mnblogWrap
    .post-content
    .el-read-more-link
    .more-link {
    position: relative;
    bottom: 0px;
}
body #page-container .Ppb_mnblogWrap .post-content .post-data {
    margin-bottom: 0px;
}
body #page-container .Ppb_mnblogWrap article {
    padding-bottom: 60px;
}
body #page-container .Ppb_hubBlog .et_pb_post .et_pb_image_container img {
    width: auto;
}

body #page-container .Ppb_hubpostWrap img {
    height: unset;
    width: unset;
    margin: 0 auto;
}
body #page-container .Ppb_hubpostWrap .el_dbe_block_extended {
    border-radius: 0;
    border: 0;
    box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 16%);
}
body #page-container .Ppb_hubpostWrap .el_dbe_block_extended .post-content {
    padding: 15px 0 0;
}
body #page-container .Ppb_hubpostWrap .el_dbe_block_extended .post-content h2 {
    font-size: 18px !important;
}
body
    #page-container
    .Ppb_hubpostWrap
    .el_dbe_block_extended
    .post-media-container,
body
    #page-container
    .Ppb_hubpostWrap
    .el_dbe_block_extended
    .post-media-container
    .post-media {
    height: unset;
}
body
    #page-container
    .Ppb_hubpostWrap
    .el_dbe_block_extended:hover
    .post-media-container
    .post-media {
    transform: unset !important;
}

@media only screen and (max-width: 980px) {
    body.home
        #page-container
        .et_pb_blog_grid
        .et_pb_salvattore_content
        .column
        article {
        margin-bottom: 30px;
    }

    body.home
        #page-container
        .et_pb_blog_grid
        .et_pb_salvattore_content
        .column
        article:last-child {
        margin-bottom: 0px;
    }

    body #page-container .et_pb_blog_grid .et_pb_post {
        padding: 30px 15px;
    }

    body #page-container .et_pb_blog_grid .et_pb_post {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    body #page-container .et_pb_blog_grid .et_pb_salvattore_content {
        display: block;
    }

    body #page-container .Ppb_hubBlog .et_pb_post .et_pb_image_container {
        max-width: 300px;
        margin: 0 auto !important;
    }
}

/********************************************************* End Blog Style   ***************************************/
/********************************************************* Start Event Style   ***************************************/
body .mec-month-divider {
    display: none;
}

body .mec-wrap .mec-event-list-minimal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 5vw;
    grid-row-gap: 30px;
}

.mec-wrap .mec-event-list-minimal .mec-event-article .col-md-9,
.mec-wrap .mec-event-list-minimal .mec-event-article .col-md-3 {
    width: 100%;
}

.mec-wrap .mec-event-list-minimal .mec-event-article .btn-wrapper {
    text-align: left;
}

.mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-title {
    font-size: 27px;
    text-transform: initial;
    font-weight: 600;
    padding-top: 0;
}

body .mec-wrap .mec-event-list-minimal .mec-event-article {
    border-bottom: 1px solid #94948f;
    padding: 15px 0 25px;
}

body .mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-detail {
    display: none;
}

.mec-wrap
    .mec-event-list-minimal
    .mec-event-article
    .btn-wrapper
    .mec-detail-button {
    margin-left: 70px;
    background: transparent;
    color: #000;
    position: relative;
}

.mec-wrap
    .mec-event-list-minimal
    .mec-event-article
    .btn-wrapper
    .mec-detail-button:before {
    content: "—";
}

.mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-date {
    font-family: trajan-pro-3, serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 0;
    background: #eeeeee;
    color: #000000;
    padding: 0;
}

.mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-date span {
    font-size: 27px;
    font-weight: 600;
    background: #ef9d39;
    color: #fff;
    padding: 5px;
    margin-bottom: 0;
    line-height: 1em;
}

.mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-date:after {
    display: none;
}

.mec-wrap .mec-event-list-minimal .mec-event-article .col-md-9,
.mec-wrap .mec-event-list-minimal .mec-event-article .col-md-3 {
    padding: 0;
}

body.post-type-archive-mec-events #main-content {
    padding: 120px 0;
    max-width: 90%;
    width: 1320px;
}

body.post-type-archive-mec-events #main-content h1 {
    text-align: center;
    position: relative;
    margin: 0 auto;
    width: 367px;
}

body.post-type-archive-mec-events #main-content h1:before {
    z-index: 1;
}

body.post-type-archive-mec-events #main-content > .mec-wrap {
    padding-top: 50px;
}

body.post-type-archive-mec-events #main-content > .mec-wrap {
    padding-top: 50px;
}

.mec-single-event .mec-event-social li.mec-event-social-icon a {
    color: #ef9d39;
    padding: 6px;
    font-size: 18px;
    margin-right: 0px;
    margin-bottom: 5px;
    border-radius: 0px;
    background: transparent;
}

.mec-single-event .mec-event-social li.mec-event-social-icon a:hover {
    background: transform;
}

.mec-wrap .mec-single-title,
.single-mec-events .mec-wrap.mec-no-access-error h1 {
    font-weight: 600;
}
.mec-single-event-organizer {
    display: none;
}
.mec-skin-carousel-container
    .mec-event-footer-carousel-type3
    .mec-modal-booking-button:hover,
.mec-timeline-month-divider,
.mec-wrap.colorskin-custom
    .mec-single-event
    .mec-speakers-details
    ul
    li
    .mec-speaker-avatar
    a:hover
    img,
.mec-wrap.colorskin-custom
    .mec-event-list-modern
    .mec-event-sharing
    > li:hover
    a
    i,
.mec-wrap.colorskin-custom
    .mec-event-list-modern
    .mec-event-sharing
    .mec-event-share:hover
    .mec-event-sharing-icon,
.mec-wrap.colorskin-custom
    .mec-event-list-standard
    .mec-month-divider
    span:before,
.mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,
.mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,
.mec-wrap.colorskin-custom
    .mec-calendar
    .mec-calendar-events-side
    .mec-table-side-day,
.mec-wrap.colorskin-custom .mec-border-color,
.mec-wrap.colorskin-custom .mec-border-color-hover:hover,
.colorskin-custom .mec-single-event .mec-frontbox-title:before,
.colorskin-custom .mec-single-event .mec-wrap-checkout h4:before,
.colorskin-custom
    .mec-single-event
    .mec-events-meta-group-booking
    form
    > h4:before,
.mec-wrap.colorskin-custom
    .mec-totalcal-box
    .mec-totalcal-view
    span.mec-totalcalview-selected,
.mec-wrap .mec-totalcal-box .mec-totalcal-view span.mec-totalcalview-selected,
.event-carousel-type1-head .mec-event-date-carousel:after,
.mec-wrap.colorskin-custom .mec-events-masonry-cats a.mec-masonry-cat-selected,
.mec-marker-infowindow-wp .mec-marker-infowindow-count,
.mec-wrap.colorskin-custom .mec-events-masonry-cats a:hover,
.mec-has-event-for-booking .mec-calendar-novel-selected-day,
.mec-booking-tooltip.multiple-time .mec-booking-calendar-date.mec-active,
.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover,
.mec-virtual-event-history h3:before,
.mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover,
.mec-calendar-day.mec-active
    .mec-booking-tooltip.multiple-time
    .mec-booking-calendar-date.mec-active,
.mec-rsvp-form-box form > h4:before,
.mec-wrap .mec-box-title::before,
.mec-box-title::before {
    font-size: 18px;
    background-color: #ef9d39;
    border-width: 0px !important;
    border-radius: 0px;
    color: #000 !important;
    font-weight: 500;
}

.mec-single-event
    .mec-event-export-module.mec-frontbox
    .mec-event-exporting
    .mec-export-details
    ul
    li
    a:hover {
    background-color: #000;
    color: #fff !important;
}

.mec-single-event .mec-event-meta .mec-events-event-cost,
.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-value,
.mec-event-data-fields .mec-event-data-field-item .mec-event-data-field-name,
.mec-wrap .info-msg div,
.mec-wrap .mec-error div,
.mec-wrap .mec-success div,
.mec-wrap .warning-msg div,
.mec-breadcrumbs .mec-current,
.mec-events-meta-group-tags,
.mec-single-event .mec-events-meta-group-booking .mec-event-ticket-available,
.mec-single-modern .mec-single-event-bar > div dd,
.mec-single-event .mec-event-meta dd,
.mec-single-event .mec-event-meta dd a,
.mec-next-occ-booking span,
.mec-hourly-schedule-speaker-description,
.mec-single-event .mec-speakers-details ul li .mec-speaker-job-title,
.mec-single-event .mec-speakers-details ul li .mec-speaker-name,
.mec-event-data-field-items,
.mec-load-more-button,
.mec-events-meta-group-tags a,
.mec-events-button,
.mec-wrap abbr,
.mec-event-schedule-content dl dt,
.mec-breadcrumbs a,
.mec-breadcrumbs span .mec-event-content p,
.mec-wrap p {
    font-family: "Open Sans", sans-serif;
    font-weight: 400 !important;
    font-size: 18px;
    color: #000000 !important;
}
body.single.single-mec-events
    .mec-single-event
    .mec-book-ticket-container
    h4
    .mec-ticket-name {
    display: none;
}
@media only screen and (min-width: 981px) {
    body.single.single-mec-events .mec-single-event .mec-event-meta {
        margin-top: 50px;
    }
    body .mec-wrap .mec-event-list-minimal .mec-event-article:last-child,
    body
        .mec-wrap
        .mec-event-list-minimal
        .mec-event-article:nth-last-child(2) {
        border-bottom: none;
        padding: 15px 0 10px;
    }
}

@media only screen and (max-width: 1280px) {
    .mec-skin-carousel-container
        .mec-event-footer-carousel-type3
        .mec-modal-booking-button:hover,
    .mec-timeline-month-divider,
    .mec-wrap.colorskin-custom
        .mec-single-event
        .mec-speakers-details
        ul
        li
        .mec-speaker-avatar
        a:hover
        img,
    .mec-wrap.colorskin-custom
        .mec-event-list-modern
        .mec-event-sharing
        > li:hover
        a
        i,
    .mec-wrap.colorskin-custom
        .mec-event-list-modern
        .mec-event-sharing
        .mec-event-share:hover
        .mec-event-sharing-icon,
    .mec-wrap.colorskin-custom
        .mec-event-list-standard
        .mec-month-divider
        span:before,
    .mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,
    .mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,
    .mec-wrap.colorskin-custom
        .mec-calendar
        .mec-calendar-events-side
        .mec-table-side-day,
    .mec-wrap.colorskin-custom .mec-border-color,
    .mec-wrap.colorskin-custom .mec-border-color-hover:hover,
    .colorskin-custom .mec-single-event .mec-frontbox-title:before,
    .colorskin-custom .mec-single-event .mec-wrap-checkout h4:before,
    .colorskin-custom
        .mec-single-event
        .mec-events-meta-group-booking
        form
        > h4:before,
    .mec-wrap.colorskin-custom
        .mec-totalcal-box
        .mec-totalcal-view
        span.mec-totalcalview-selected,
    .mec-wrap
        .mec-totalcal-box
        .mec-totalcal-view
        span.mec-totalcalview-selected,
    .event-carousel-type1-head .mec-event-date-carousel:after,
    .mec-wrap.colorskin-custom
        .mec-events-masonry-cats
        a.mec-masonry-cat-selected,
    .mec-marker-infowindow-wp .mec-marker-infowindow-count,
    .mec-wrap.colorskin-custom .mec-events-masonry-cats a:hover,
    .mec-has-event-for-booking .mec-calendar-novel-selected-day,
    .mec-booking-tooltip.multiple-time .mec-booking-calendar-date.mec-active,
    .mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover,
    .mec-virtual-event-history h3:before,
    .mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover,
    .mec-calendar-day.mec-active
        .mec-booking-tooltip.multiple-time
        .mec-booking-calendar-date.mec-active,
    .mec-rsvp-form-box form > h4:before,
    .mec-wrap .mec-box-title::before,
    .mec-box-title::before {
        font-size: 16px;
    }

    .mec-single-event .mec-events-meta-group-booking,
    .mec-single-event .mec-frontbox {
        padding: 20px 15px;
    }
}

@media only screen and (max-width: 980px) {
    .mec-single-event .mec-event-meta .mec-events-event-cost,
    .mec-event-data-fields
        .mec-event-data-field-item
        .mec-event-data-field-value,
    .mec-event-data-fields
        .mec-event-data-field-item
        .mec-event-data-field-name,
    .mec-wrap .info-msg div,
    .mec-wrap .mec-error div,
    .mec-wrap .mec-success div,
    .mec-wrap .warning-msg div,
    .mec-breadcrumbs .mec-current,
    .mec-events-meta-group-tags,
    .mec-single-event
        .mec-events-meta-group-booking
        .mec-event-ticket-available,
    .mec-single-modern .mec-single-event-bar > div dd,
    .mec-single-event .mec-event-meta dd,
    .mec-single-event .mec-event-meta dd a,
    .mec-next-occ-booking span,
    .mec-hourly-schedule-speaker-description,
    .mec-single-event .mec-speakers-details ul li .mec-speaker-job-title,
    .mec-single-event .mec-speakers-details ul li .mec-speaker-name,
    .mec-event-data-field-items,
    .mec-load-more-button,
    .mec-events-meta-group-tags a,
    .mec-events-button,
    .mec-wrap abbr,
    .mec-event-schedule-content dl dt,
    .mec-breadcrumbs a,
    .mec-breadcrumbs span .mec-event-content p,
    .mec-wrap p {
        font-size: 16px;
    }

    body.post-type-archive-mec-events #main-content h1 {
        font-size: 30px;
    }

    body .mec-wrap .mec-event-list-minimal .mec-event-article {
        padding: 0px;
    }

    body .mec-wrap .mec-event-list-minimal .mec-event-article:last-child {
        border-bottom: none;
    }

    body .mec-wrap .mec-event-list-minimal {
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 0;
        grid-row-gap: 30px;
    }

    .mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-title,
    .mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-date span {
        font-size: 20px;
    }

    body.post-type-archive-mec-events #main-content h1 {
        width: 275px;
    }

    body.post-type-archive-mec-events #main-content {
        padding: 50px 0;
    }

    .mec-wrap .mec-single-title,
    .single-mec-events .mec-wrap.mec-no-access-error h1 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 768px) {
    .mec-wrap
        .mec-event-list-minimal
        .mec-event-article
        .btn-wrapper
        .mec-detail-button {
        text-align: left;
        margin-left: 50px;
    }

    .mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-title,
    .mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-date span {
        font-size: 18px;
    }

    body.post-type-archive-mec-events #main-content h1 {
        font-size: 24px;
    }

    body.post-type-archive-mec-events #main-content h1 {
        width: 220px;
    }

    body #page-container .mec-container {
        width: 90%;
    }

    .mec-wrap .mec-single-title,
    .single-mec-events .mec-wrap.mec-no-access-error h1 {
        font-size: 20px;
    }

    .mec-skin-carousel-container
        .mec-event-footer-carousel-type3
        .mec-modal-booking-button:hover,
    .mec-timeline-month-divider,
    .mec-wrap.colorskin-custom
        .mec-single-event
        .mec-speakers-details
        ul
        li
        .mec-speaker-avatar
        a:hover
        img,
    .mec-wrap.colorskin-custom
        .mec-event-list-modern
        .mec-event-sharing
        > li:hover
        a
        i,
    .mec-wrap.colorskin-custom
        .mec-event-list-modern
        .mec-event-sharing
        .mec-event-share:hover
        .mec-event-sharing-icon,
    .mec-wrap.colorskin-custom
        .mec-event-list-standard
        .mec-month-divider
        span:before,
    .mec-wrap.colorskin-custom .mec-single-event .mec-social-single:before,
    .mec-wrap.colorskin-custom .mec-single-event .mec-frontbox-title:before,
    .mec-wrap.colorskin-custom
        .mec-calendar
        .mec-calendar-events-side
        .mec-table-side-day,
    .mec-wrap.colorskin-custom .mec-border-color,
    .mec-wrap.colorskin-custom .mec-border-color-hover:hover,
    .colorskin-custom .mec-single-event .mec-frontbox-title:before,
    .colorskin-custom .mec-single-event .mec-wrap-checkout h4:before,
    .colorskin-custom
        .mec-single-event
        .mec-events-meta-group-booking
        form
        > h4:before,
    .mec-wrap.colorskin-custom
        .mec-totalcal-box
        .mec-totalcal-view
        span.mec-totalcalview-selected,
    .mec-wrap
        .mec-totalcal-box
        .mec-totalcal-view
        span.mec-totalcalview-selected,
    .event-carousel-type1-head .mec-event-date-carousel:after,
    .mec-wrap.colorskin-custom
        .mec-events-masonry-cats
        a.mec-masonry-cat-selected,
    .mec-marker-infowindow-wp .mec-marker-infowindow-count,
    .mec-wrap.colorskin-custom .mec-events-masonry-cats a:hover,
    .mec-has-event-for-booking .mec-calendar-novel-selected-day,
    .mec-booking-tooltip.multiple-time .mec-booking-calendar-date.mec-active,
    .mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover,
    .mec-virtual-event-history h3:before,
    .mec-booking-tooltip.multiple-time .mec-booking-calendar-date:hover,
    .mec-calendar-day.mec-active
        .mec-booking-tooltip.multiple-time
        .mec-booking-calendar-date.mec-active,
    .mec-rsvp-form-box form > h4:before,
    .mec-wrap .mec-box-title::before,
    .mec-box-title::before {
        font-size: 15px;
    }
}

@media only screen and (max-width: 479px) {
    .mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-date {
        padding: 0 10px 0 0;
        margin-bottom: 30px;
        display: inline-block;
        width: auto;
        margin-right: 0;
        background: #eee;
    }

    .mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-title,
    .mec-wrap .mec-event-list-minimal .mec-event-article .mec-event-date span {
        text-align: center;
    }

    .mec-wrap
        .mec-event-list-minimal
        .mec-event-article
        .btn-wrapper
        .mec-detail-button {
        margin-left: 0px;
        text-align: center;
    }

    .mec-event-list-minimal .mec-event-date span {
        display: inline-block;
    }
}

/********************************************************* End Event Style   ***************************************/

/*** Take out the divider line between content and sidebar ***/
#main-content .container:before {
    background: none;
}

/*** Hide Sidebar ***/
#sidebar {
    display: none;
}

/*** Expand the content area to fullwidth ***/
@media (min-width: 981px) {
    #left-area {
        width: 100%;
        padding: 23px 0px 0px !important;
        float: none !important;
    }
}

/********************************************************* Start Hub Gellery Style   ***************************************/
body #page-container .Ppb_hubBlog .et_pb_post .et_pb_image_container {
    margin: 0;
}

body #page-container .wp-pagenavi {
    text-align: center;
    margin-top: 30px;
}

body #page-container .wp-pagenavi a,
body #page-container .wp-pagenavi span {
    border: 0px solid #bfbfbf;
}

@media only screen and (min-width: 981px) and (max-width: 1360px) {
    body #page-container .Ppb_hubBlog h2 {
        font-size: 18px !important;
    }

    body #page-container .Ppb_hubBlog .post-content-inner p {
        font-size: 14px !important;
    }
}

/********************************************************* End Hub Gellery Style   ***************************************/

.um-login .um-form form {
    display: grid;
}

.um-login .um-form form > .um-row {
    order: 1;
    margin: 0 0 20px 0 !important;
}

.um-login .um-form form .um-col-alt {
    order: 3;
    margin: 25px 0 5px 0;
}

.um-login .um-form form .um-col-alt-b {
    order: 2;
    padding-top: 0px;
}

.um .um-form input[type="text"],
.um .um-form input[type="search"],
.um .um-form input[type="tel"],
.um .um-form input[type="password"],
.um .um-form textarea,
.um .um-form input[type="text"]:focus,
.um .um-form input[type="search"]:focus,
.um .um-form input[type="tel"]:focus,
.um .um-form input[type="password"]:focus,
.um .um-form textarea:focus {
    background: #eee;
    color: #000;
    font-weight: 300;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.72px;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
    padding: 15px 25px !important;
    height: unset !important;
    font-size: 18px !important;
}

a.um-link-alt {
    color: #000 !important;
    font-weight: 300;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
    letter-spacing: 0.72px;
    font-size: 18px;
}

input[type="submit"].um-button,
input[type="submit"].um-button:focus,
.um .um-button.um-alt,
.um input[type="submit"].um-button.um-alt {
    font-family: trajan-pro-3, serif;
    letter-spacing: 0.72px;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 18px !important;
    color: #000;
    min-width: 220px !important;
    background: #ef9d39 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.um-field {
    padding: 8px 0 0 0;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #000 !important;
    opacity: 1 !important;
    /* Firefox */
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000 !important;
    opacity: 1 !important;
}

::-ms-input-placeholder {
    /* Microsoft Edge */
    color: #000 !important;
    opacity: 1 !important;
}

input[type="submit"].um-button:hover,
.um .um-button.um-alt:hover,
.um input[type="submit"].um-button.um-alt:hover {
    background: #000 !important;
    color: #fff;
}

.um .um-tip:hover,
.um .um-field-radio.active:not(.um-field-radio-state-disabled) i,
.um .um-field-checkbox.active:not(.um-field-radio-state-disabled) i,
.um .um-member-name a:hover,
.um .um-member-more a:hover,
.um .um-member-less a:hover,
.um .um-members-pagi a:hover,
.um .um-cover-add:hover,
.um .um-profile-subnav a.active,
.um .um-item-meta a,
.um-account-name a:hover,
.um-account-nav a.current,
.um-account-side li a.current span.um-account-icon,
.um-account-side li a.current:hover span.um-account-icon,
.um-dropdown li a:hover,
i.um-active-color,
span.um-active-color,
.um a.um-link,
.um-profile.um .um-profile-headericon a:hover,
.um-profile.um .um-profile-edit-a.active {
    color: #ef9d39;
}

.um .um-field-group-head,
.picker__box,
.picker__nav--prev:hover,
.picker__nav--next:hover,
.um .um-members-pagi span.current,
.um .um-members-pagi span.current:hover,
.um .um-profile-nav-item.active a,
.um .um-profile-nav-item.active a:hover,
.upload,
.um-modal-header,
.um-modal-btn,
.um-modal-btn.disabled,
.um-modal-btn.disabled:hover,
div.uimob800 .um-account-side li a.current,
div.uimob800 .um-account-side li a.current:hover {
    background: #ef9d39;
}

body #page-container .Ppb_memberWrap:before {
    position: absolute;
    content: "";
    background-image: url(https://hub.btechconsortium.com/wp-content/uploads/member-bg-right-img.svg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 30%;
    height: 100%;
    right: 0px;
    top: 0;
    z-index: 1;
}

@media only screen and (max-width: 980px) {
    body #page-container .Ppb_memberWrap::before {
        width: 90%;
        height: 100%;
        z-index: 1;
        max-width: 230px;
        max-height: 550px;
    }

    .um .um-form input[type="text"],
    .um .um-form input[type="search"],
    .um .um-form input[type="tel"],
    .um .um-form input[type="password"],
    .um .um-form textarea,
    .um .um-form input[type="text"]:focus,
    .um .um-form input[type="search"]:focus,
    .um .um-form input[type="tel"]:focus,
    .um .um-form input[type="password"]:focus,
    .um .um-form textarea:focus,
    a.um-link-alt,
    input[type="submit"].um-button,
    input[type="submit"].um-button:focus,
    .um .um-button.um-alt,
    .um input[type="submit"].um-button.um-alt {
        font-size: 16px !important;
    }
}

@media only screen and (max-width: 768px) {
    .um .um-form input[type="text"],
    .um .um-form input[type="search"],
    .um .um-form input[type="tel"],
    .um .um-form input[type="password"],
    .um .um-form textarea,
    .um .um-form input[type="text"]:focus,
    .um .um-form input[type="search"]:focus,
    .um .um-form input[type="tel"]:focus,
    .um .um-form input[type="password"]:focus,
    .um .um-form textarea:focus,
    a.um-link-alt,
    input[type="submit"].um-button,
    input[type="submit"].um-button:focus,
    .um .um-button.um-alt,
    .um input[type="submit"].um-button.um-alt {
        font-size: 15px !important;
    }
}

@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 !important;
    }
}

.align_tems_cmn {
    align-items: center;
}

/********************************************************* Start Popup Style   ***************************************/
.popmake-content .Ppb_popclorBTN {
    font-size: 18px;
    background-color: #ef9d39;
    border-width: 0px !important;
    border-radius: 0px;
    padding-top: 13px !important;
    padding-right: 52px !important;
    padding-bottom: 13px !important;
    padding-left: 52px !important;
    transition: all 0.4s;
}
.popmake-content .Ppb_popclorBTN:hover {
    background-color: #000;
    color: #fff;
}
@media only screen and (max-width: 980px) {
    .popmake-content .Ppb_popclorBTN,
    .popmake-content p {
        font-size: 16px;
    }
    .popmake-content .Ppb_mainTitle h1 {
        font-size: 24px;
    }
    .popmake-content .Ppb_mainTitle h1:before {
        background-size: 100%;
        width: 40px;
        height: 41px;
        left: -11px;
        top: 30%;
    }
}
@media only screen and (max-width: 768px) {
    .popmake-content .Ppb_popclorBTN,
    .popmake-content p {
        font-size: 15px;
    }
    .popmake-content .Ppb_mainTitle h1 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 380px) {
    .popmake-content .Ppb_mainTitle h1 {
        font-size: 18px;
    }
}
/********************************************************* End Popup Style   ***************************************/
/********************************************************* Start Form Style   ***************************************/

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"] {
    border-width: 0px;
    border-radius: 0px !important;
    padding: 10px 50px;
}
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"] {
    background-color: transparent;
    font-size: 18px;
    color: #000000;
    padding: 16px;
    border: 1px solid #ef9d39;
}
::-webkit-input-placeholder {
    /* Edge */
    color: #000000;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #000000;
}

::placeholder {
    color: #000000;
}

@media only screen and (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"] {
        font-size: 16px;
        padding: 10px 30px;
    }
    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"] {
        font-size: 16px;
    }
}

/********************************************************* End Form Style   ***************************************/
/********************************************************* Start Team Style   ***************************************/

body
    #page-container
    .Ppb_mainblogWrap.Ppb_teamblgWrap
    .et_pb_blog_grid
    .et_pb_salvattore_content
    .column
    article {
    padding-bottom: 0;
    box-shadow: none;
}
body
    #page-container
    .Ppb_mainblogWrap.Ppb_teamblgWrap
    .et_pb_blog_grid
    .et_pb_image_container
    img {
    width: auto;
    max-width: unset;
    min-width: unset;
}
body
    #page-container
    .Ppb_mainblogWrap.Ppb_teamblgWrap
    .et_pb_blog_grid
    .et_pb_image_container {
    margin: 0;
}
body #page-container .Ppb_teamblgWrap .et_pb_post {
    border: 0;
    box-shadow: none;
    background: transparent;
}
body #page-container .Ppb_teamblgWrap .et_pb_post .post-content {
    background: transparent;
}
body
    #page-container
    .Ppb_teamblgWrap
    .et_pb_post_extra.el_dbe_block_extended
    .post-media-container,
body
    #page-container
    .Ppb_teamblgWrap
    .et_pb_post_extra.el_dbe_block_extended
    .post-media,
body
    #page-container
    .Ppb_teamblgWrap
    .et_pb_post_extra.el_dbe_block_extended
    .post-media
    .entry-featured-image-url,
body
    #page-container
    .Ppb_teamblgWrap
    .et_pb_post_extra.el_dbe_block_extended
    .post-media
    img {
    height: unset;
    width: unset;
    margin: 0 auto;
    transform: unset !important;
}
body
    #page-container
    .Ppb_teamblgWrap
    .et_pb_post_extra.el_dbe_block_extended.et_pb_post
    .post-media {
    position: relative;
    cursor: pointer;
    max-width: 300px;
    margin-left: 0;
}
body
    #page-container
    .Ppb_teamblgWrap
    .et_pb_post_extra.el_dbe_block_extended.et_pb_post
    .post-media
    a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(239, 157, 57, 0.5);
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s;
}
body
    #page-container
    .Ppb_teamblgWrap
    .et_pb_post_extra.el_dbe_block_extended:hover
    .post-media
    a:before {
    opacity: 1;
}
body
    #page-container
    .Ppb_teamblgWrap.Ppb_adminteamWrap
    .et_pb_post_extra.el_dbe_block_extended:hover
    .post-media
    a:before {
    opacity: 0;
}
body
    #page-container
    .Ppb_teamblgWrap.Ppb_adminteamWrap
    .et_pb_post_extra.el_dbe_block_extended:hover
    .post-media
    a,
body #page-container .Ppb_teamblgWrap.Ppb_adminteamWrap article.et_pb_post,
body #page-container .Ppb_teamblgWrap.Ppb_adminteamWrap article.et_pb_post div,
body #page-container .Ppb_teamblgWrap.Ppb_adminteamWrap article.et_pb_post img {
    cursor: unset !important;
}
body
    #page-container
    .Ppb_teamblgWrap
    .et_pb_post_extra.el_dbe_block_extended
    .post-media
    img:hover {
    transform: unset !important;
}
body #page-container .Ppb_teamblgWrap .et_pb_post {
    border-radius: 0;
}

body #page-container .Ppb_teamblgWrap .et_pb_post .post-content {
    padding: 15px 15px 15px 0px;
}
body #page-container .Ppb_teamblgWrap .et_pb_post .post-content .entry-title a{
    color: #282828;
    text-decoration: none;
    text-shadow: 0.03em 0 #fff, -0.03em 0 #fff, 0 0.03em #fff, 0 -0.03em #fff,
        0.06em 0 #fff, -0.06em 0 #fff, 0.09em 0 #fff, -0.09em 0 #fff,
        0.12em 0 #fff, -0.12em 0 #fff, 0.15em 0 #fff, -0.15em 0 #fff;
    background-image: -webkit-linear-gradient(#fff, #fff),
        -webkit-linear-gradient(#fff, #fff),
        -webkit-linear-gradient(#f75b3b, #f75b3b);
    background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff),
        linear-gradient(#f75b3b, #f75b3b);
    background-size: 0.05em 0.12em, 0.05em 0.12em, 0.12em 0.12em;
    background-repeat: no-repeat, no-repeat, repeat-x;
    background-position: 0% 96%, 100% 96%, 0% 96%;
    -webkit-transition: background-size 0.3s ease;
    transition: background-size 0.3s ease;
}
body #page-container .Ppb_teamblgWrap .et_pb_post:hover .post-content a {
    background-size: 100% 0.12em, 0.05em 0.12em, 0.12em 0.12em;
    text-decoration: none;
}
body
    #page-container
    .Ppb_teamblgWrap.Ppb_adminteamWrap
    .et_pb_post:hover
    .post-content
    a {
    text-shadow: 0.03em 0 #fff, -0.03em 0 #fff, 0 0.03em #fff, 0 -0.03em #fff,
        0.06em 0 #fff, -0.06em 0 #fff, 0.09em 0 #fff, -0.09em 0 #fff,
        0.12em 0 #fff, -0.12em 0 #fff, 0.15em 0 #fff, -0.15em 0 #fff;
    background-image: -webkit-linear-gradient(#fff, #fff),
        -webkit-linear-gradient(#fff, #fff),
        -webkit-linear-gradient(#f75b3b, #f75b3b);
    background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff),
        linear-gradient(#f75b3b, #f75b3b);
    background-size: 0.05em 0.12em, 0.05em 0.12em, 0.12em 0.12em;
    background-repeat: no-repeat, no-repeat, repeat-x;
    background-position: 0% 96%, 100% 96%, 0% 96%;
}
body #page-container .Ppb_teamtabWrap ul.et_pb_tabs_controls {
    background: transparent;
    overflow: hidden;
}
body #page-container .Ppb_teamtabWrap ul.et_pb_tabs_controls:after {
    display: none;
}
body #page-container .Ppb_teamtabWrap .et_pb_tabs_controls li {
    border: none;
    height: auto !important;
}
body #page-container .Ppb_teamtabWrap .et_pb_tabs_controls li a {
    font-weight: 400;
}
body #page-container .Ppb_teamblgWrap .et_pb_post .post-media-container,
body #page-container .Ppb_teamblgWrap .et_pb_post .post-media-container img {
    width: 100% !important;
}
body #page-container .Ppb_teamsingleImage.et_pb_image {
    box-shadow: 0px 10px 20px 0px rgb(0 0 0 / 10%);
}
body #page-container .Ppb_adminteamWrap a {
    cursor: not-allowed;
    pointer-events: none;
}
@media only screen and (min-width: 981px) {
    body #page-container .Ppb_teamblgWrap.Ppb_fourcolTeam article.et_pb_post {
        width: 22.375%;
        margin-right: 3.5%;
    }
    body
        #page-container
        .Ppb_teamblgWrap.Ppb_fourcolTeam
        article.et_pb_post:nth-child(4n) {
        margin-right: 0;
    }
}
@media only screen and (max-width: 980px) {
    body #page-container .Ppb_teamblgWrap .et_pb_post {
        width: 48.24%;
        margin-right: 3.5%;
    }
    body #page-container .Ppb_teamblgWrap .et_pb_post:nth-child(2n) {
        margin-right: 0;
    }
    body #page-container .Ppb_teamblgWrap .et_pb_post:last-child {
        margin-bottom: 0;
    }
}
@media only screen and (max-width: 768px) {
    body #page-container .Ppb_teamblgWrap .et_pb_post {
        width: 100%;
        margin-right: 0;
    }
}
@media only screen and (max-width: 767px) {
    body #page-container .Ppb_teamtabWrap .et_pb_tabs_controls li a {
        padding-left: 0;
        padding-right: 0;
    }
}
/********************************************************* End Team Style   ***************************************/

/*********** CSS by Ridoy 07-06-2022 ************/

/*News page*/

.news_custom_style .et_pb_button {
    padding: 0 !important;
}

.news_custom_style .et_pb_button:hover {
    padding: 0 !important;
}

.news_custom_style .dp-dfg-items .dp-dfg-item {
    padding: 4em 3em 6em 3em;
}

.news_custom_style .et_pb_button_wrapper.read-more-wrapper {
    position: absolute;
    bottom: 10px;
    left: 3em;
}

body #page-container .news_custom_style a.dp-dfg-filter-link.active {
    background-color: #ef9d39 !important;
    padding: 15px 32px !important;
    color: #000 !important;
    border: none !important;
}

body #page-container .news_custom_style a.dp-dfg-filter-link {
    background-color: #f4f4f4 !important;
    border: none !important;
    margin: 0px 8px !important;
    padding: 15px 32px !important;
}
body #page-container .wpra-item-list--bullets.wpra-item-list--default {
    list-style-type: none;
}
body #page-container .yrm-btn-wrapper .yrm-toggle-expand {
    background: #ef9d39;
    color: #000;
    border: none;
    width: auto;
    height: 40px !important;
    min-width: 120px;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif;
}
body #page-container .yrm-more-button-wrapper .yrm-toggle-expand:hover {
    background: #000;
    color: #fff;
}
body.single-post .et_post_meta_wrapper img {
    max-width: unset !important;
    height: auto;
    width: unset;
}
@media only screen and (max-width: 600px) {
    body #page-container .news_custom_style li.dp-dfg-filter {
        margin-bottom: 15px;
    }
}
@media (max-width: 980px) {
    #logo {
        max-height: 80%;
    }
}

/* rev 4 update with azim  */
.postid-1363 .mec-event-export-module.mec-frontbox,
.postid-1369 .mec-event-export-module.mec-frontbox {
    display: none;
}
.postid-1363 .mec-event-social.mec-frontbox,
.postid-1369 .mec-event-social.mec-frontbox {
    display: none;
}
span.mec-event-ticket-available {
    display: none !important;
}
/* update for event  */

.custom_event h3.mec-event-title a,
.single-mec-events .mec-event-content h1.mec-single-title {
    font-weight: 400;
    font-family: trajan-pro-3, serif;
}
div#page-container .custom_event .mec-event-description {
    color: #000000 !important;
    /*     font-weight: 600 !important; */
    margin-bottom: 15px;
    font-size: 16px !important;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
}

div#page-container .custom_event span.mec-start-date-label {
    /*     font-weight: 600 !important; */
    color: #000 !important;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
}

div#page-container .custom_event span.mec-start-time {
    color: #000 !important;
    font-weight: 600 !important;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
}

div#page-container .custom_event .mec-venue-details {
    font-weight: 600 !important;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
}

div#page-container .custom_event address.mec-event-address {
    font-weight: 600 !important;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
    color: #000 !important;
}
.custom_event .mec-event-list-standard .mec-event-article {
    border-color: #94948f !important;
}

.custom_event .mec-event-list-standard .mec-event-meta-wrap {
    border-color: #94948f !important;
}

.custom_event .mec-event-footer {
    border-color: #94948f !important;
}

/* up  */
.custom_event .mec-event-footer .mec-booking-button {
    background: #ef9d39 !important;
    color: #000 !important;
    border-color: #ef9d39 !important;
    font-size: 14px;
    letter-spacing: 0 !important;
    z-index: 1 !important;
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
}

.custom_event .mec-event-footer .mec-booking-button:hover {
    background: #000 !important;
    color: #fff !important;
    border-color: #fff !important;
}
/* update with exp  */
.with_a_cus_event h4.mec-event-title a {
    font-weight: 400;
    font-family: trajan-pro-3, serif;
    font-size: 24px;
}

.with_a_cus_event .mec-event-list-minimal a.mec-detail-button {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
}
/* end update for event  */
/* end rev 4 udapte with azim  */

.event_fix_btn .mec-detail-button {
    display: none !important;
}

.event_fix_btn
    .mec-wrap
    .mec-event-list-minimal
    .mec-event-article
    .mec-event-date {
    height: 130px;
}

.event_fix_btn
    .mec-wrap
    .mec-event-list-minimal
    .mec-event-article
    .mec-event-date
    span {
    padding: 22px 5px;
}

/* update for last isue  */
@media all and (min-width: 981px) and (max-width: 1550px) {
    .up_for_event_f h4.mec-event-title {
        width: calc(100% - 160px);
        display: inline-block;
    }

    .up_for_event_f.mec-event-date {
        width: 130px;
    }
}
/* end update with last issue  */
/* List style  */
@media all and (min-width: 981px) {
    .checklist.Ppb_bigList ul li::before {
        width: 18px;
        height: 18px;
        margin-top: 10px;
    }
}

/* Table Style */
body #page-container .Ppb_responsiveTable .tablepress thead th {
    background-color: #ef9d39;
    color: #fff;
    padding: 18px 24px;
    font-size: 20px;
    text-transform: uppercase;
}
body #page-container .Ppb_responsiveTable .tablepress tbody tr td {
    padding: 18px 24px;
}
body:not(.admin-bar) #page-container .Ppb_responsiveTable caption {
    display: none;
}
@media all and (max-width: 1200px) {
    body #page-container .Ppb_responsiveTable .tablepress-scroll-wrapper {
        overflow-x: scroll;
    }
    body
        #page-container
        .Ppb_responsiveTable
        .tablepress-scroll-wrapper
        .tablepress-responsive {
        min-width: 1200px;
    }
}

.mec-wrap,
.mec-wrap div:not([class^="elementor-"]),
.lity-container,
.mec-wrap h1,
.mec-wrap h2,
.mec-wrap h3,
.mec-wrap h4,
.mec-wrap h5,
.mec-wrap h6,
.entry-content .mec-wrap h1,
.entry-content .mec-wrap h2,
.entry-content .mec-wrap h3,
.entry-content .mec-wrap h4,
.entry-content .mec-wrap h5,
.entry-content .mec-wrap h6,
.mec-wrap .mec-totalcal-box input[type="submit"],
.mec-wrap .mec-totalcal-box .mec-totalcal-view span,
.mec-agenda-event-title a,
.lity-content .mec-events-meta-group-booking select,
.lity-content .mec-book-ticket-variation h5,
.lity-content .mec-events-meta-group-booking input[type="number"],
.lity-content .mec-events-meta-group-booking input[type="text"],
.lity-content .mec-events-meta-group-booking input[type="email"],
.mec-organizer-item a,
.mec-single-event
    .mec-events-meta-group-booking
    ul.mec-book-tickets-container
    li.mec-book-ticket-container
    label {
    font-family: "Open Sans", Helvetica, Arial, Lucida, sans-serif !important;
    color: #000000;
}


.mec-load-more-button:hover {
	color: #fff !important;
}

input[type="submit"].um-button, input[type="submit"].um-button:focus, .um .um-button.um-alt, .um input[type="submit"].um-button.um-alt{
	font-family: 'Open Sans',Helvetica,Arial,Lucida,sans-serif !important;
}

@media all and (max-width: 767px) {
	.mec-event-list-standard .mec-event-title {
    font-size: 22px;
}
}

/*— Scroll to top fix —*/
.et_pb_scroll_top.et-pb-icon {
  background: #ef9d39;
  border-radius: 0;
  padding: 25px 0;
}

.mec-event-list-standard .mec-event-meta img.mec-svg-icon {
    filter: brightness(0) saturate(100%) invert(82%) sepia(34%) saturate(3681%) hue-rotate(333deg) brightness(98%) contrast(90%);
}