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

/* - 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;
    color: white;
    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: 42px;
    height: 20px;
    background-image: url("/wp-content/uploads/fs-lettermark-white.svg");
    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: #096191;
    /* set font size helps make icon sharper */
    font-size: 22px;
    font-weight: normal;
    font-family: "Font Awesome 5 Free";
    content: "\f14a";
    font-weight: 900;
}

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

/********************************************************* End Global area  ***************************************/
/* freashy header  */

header .container,
#main-footer .container {
    width: 90% !important;
}

body,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
}

.et_pb_button {
    line-height: 1 !important;
    font-weight: 400;
}

.align_tems_cmn {
    align-items: center;
}

.clomn_items_center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* end fresy header footer  */
@media all and (min-width: 981px) {
    .margin_right_30_row_cmn .et_pb_column {
        width: calc(33.33% - 30px + 10px) !important;
        margin-right: 30px !important;
    }

    .margin_right_30_row_cmn .et_pb_column:last-child {
        margin-right: 0 !important;
    }

    .for_practice_page_2box_row .et_pb_column {
        width: calc(50% - 30px + 15px) !important;
    }

    .for_prace_page_4box_row .et_pb_column {
        width: calc(25% - 16px + 4px) !important;
    }
}

@media all and (max-width: 980px) {
    body div#et-boc .margin_right_30_row_cmn .et_pb_column {
        margin-bottom: 30px !important;
    }

    body div#et-boc .margin_right_30_row_cmn .et_pb_column:last-child {
        margin-bottom: 0 !important;
    }
}

/* end gatter 1 custom margin */

@media all and (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;
    }
}

/*  divi icon  text icon */
/* .et_pb_text_inner ul:not(.gform_fields) li, .et_pb_blurb_description ul li {
    padding-left: 10px;
    margin-bottom: 10px;
}
.et_pb_text_inner ul:not(.gform_fields) li::marker, .et_pb_blurb_description ul li::marker {
    content: '\e052';
    font-family: ETmodules;
    color: #F26C10;
    margin-right: 10px;
}
 */
/* end divi text icon  */
/* -- Scroll to Top Style -- */
.et_pb_scroll_top.et-pb-icon {
    background: #0372bc;
    border-radius: 0;
    padding: 25px 0;
}

/* end scrool top */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
    .cmn_section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    .cmn_section_top {
        padding-top: 80px !important;
    }

    .cmn_section_btm {
        padding-bottom: 80px !important;
    }

    div#page-container .cmn_margin_j {
        margin-bottom: 80px !important;
        margin-top: 80px !important;
    }

    div#page-container .cmn_margin_top_cmn {
        margin-top: 80px !important;
    }

    div#page-container .cmn_margin_btm_cmn {
        margin-bottom: 80px !important;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Metropolis medium", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 500;
}

/* end cmn global  */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
    body div#page-container .custom_h_for_all h1 {
        font-size: 50px;
        line-height: 1.2em;
    }

    .custom_h_for_all h2 {
        font-size: 40px !important;
    }

    .custom_h_for_all h3 {
        font-size: 28px !important;
    }

    .custom_h_for_all h4 {
        font-size: 24px !important;
    }

    .custom_h_for_all h5 {
        font-size: 22px !important;
    }

    /* 	body #page-container .custom_h_for_all.what_we_do_title h1{
		font-size: 70px
	} */
}

@media only screen and (min-width: 981px) and (max-width: 1280px) {
    /* 	 body div#page-container .inner_bnr_sec {
        background-size: 59% 48%;
		 background-position: right 0px top 0%;
    } */
	
	body div#page-container .our_mission_txt{
		font-size: 25px;
		line-height: 1.5em;
	}
}

@media only screen and (min-width: 2000px) {
    body #page-container .what_we_do_title h1 {
        font-size: 120px;
    }

    body div#page-container .inner_bnr_sec {
        background-size: 50% 130%;
        background-position: right 0px top 40%;
    }
}

/*********************************************************  end global  area ***************************************/
/*********************************************************  Header area ***************************************/
/********************************************************* End Header area   ***************************************/
/********************************************************* Footer area  ***************************************/
/********************************************************* End footer area   ***************************************/
/********************************************************* Home page area  ***************************************/
/* .single_blurb .et_pb_main_blurb_image .et_pb_image_wrap  {
    border-width: 1px;
    border-color: #096191;
    width: 155px;
    height: 155px;
    line-height: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
} */
/*  3column blurb area  */
.single_blurb_image span.et_pb_image_wrap {
    border: 1px solid #096191;
    width: 155px;
    height: 155px;
    line-height: 150px;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto;
}

.meet_blurb_image span.et_pb_image_wrap {
    background: #096191;
}

/* .meet_blurb_image:hover span.et_pb_image_wrap{
	background: #fff;
} */

/* @media all and (min-width: 1651px) {
    .et_pb_button {
        width: 264px;
    }
} */

@media only screen and (min-width: 981px) and (max-width: 1650px) {
    .et_pb_button {
        font-size: 20px !important;
    }

    .single_blurb_row .single_blurb_image {
        margin-bottom: 25px !important;
    }
}

/* up  */
@media all and (min-width: 981px) {
    .single_blurb_row .et_pb_column {
        padding-bottom: 75px !important;
    }

    .single_blurb_row .et_pb_button_module_wrapper {
        position: absolute;
        bottom: 0;
        width: 100%;
    }
}

/* end 3column blurb area  */
/* 2nd icon 4 colm area  */
.single_icon_title_blurb .et_pb_main_blurb_image {
    margin-bottom: 20px;
}

/* end 2nd icon 4 colm area  */
/* responsive  */
@media all and (max-width: 980px) {
    .single_blurb_image span.et_pb_image_wrap {
        width: 100px;
        height: 100px;
        line-height: 100px;
    }

    .single_blurb_image span.et_pb_image_wrap img {
        max-width: 50px !important;
        max-height: 50px !important;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
    .single_blurb_image span.et_pb_image_wrap {
        width: 120px;
        height: 120px;
        line-height: 120px;
    }

    .single_blurb_image span.et_pb_image_wrap img {
        max-width: 70px !important;
        max-height: 70px !important;
    }
}

/* end responsive  */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
    .exart_text {
        font-size: 24px !important;
        line-height: 1.4em !important;
    }

    .our_msn_row .custom_h_for_all {
        margin-bottom: 20px !important;
    }
}

/* up  */
.custom_blog a.more-link {
    display: inline-block;
    margin-top: 20px;
}

/* up  */
@media only screen and (min-width: 1025px) and (max-width: 1650px) {
    /*     .inner_bnr_sec_why_ch.cmn_section {
		padding-bottom: 25px !important;
    } */
}

/********************************************************* End home page area ***************************************/
/********************************************************* code tahmina area ***************************************/
html.js.js {
    overflow-x: hidden !important;
}

/* ============== Start Header css ====================== */
.top_menu .et_pb_menu--without-logo .et_pb_menu__menu > nav > ul > li {
    margin-top: 0px !important;
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
    .top_menu ul li a {
        font-size: 18px !important;
    }
}

#page-container .blank_menu {
    display: none !important;
}

.et-menu a:hover {
    opacity: 1;
}

.et_pb_menu .et-menu > li {
    padding-left: 0px;
    padding-right: 50px;
}

.nav li {
    line-height: 0em;
}

.header_menu .et_pb_menu__logo-slot {
    margin-left: 9vh !important;
    margin-right: 15vh !important;
    margin-top: 0vh !important;
    margin-bottom: 0vh !important;
}

.log_in_btn {
    margin-right: 30px !important;
    padding-right: 0px !important;
}

.et_pb_newsletter_form.et_pb_login_form {
    width: 100% !important;
}

#page-container .log_in_btn a {
    border: 3px solid #096191;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 52px;
    padding-right: 52px;
    line-height: 0em;
    font-family: Metropolis medium;
    font-weight: 500;
}

#page-container .log_in_btn a:hover {
    background: #096191;
    border: 3px solid #096191;
    color: #ffffff !important;
    transition: 0.3s;
}

#page-container .schedule_btn a {
    background: #096191;
    padding-left: 52px !important;
    padding-right: 52px !important;
    border: 3px solid #096191;
    font-family: Metropolis medium !important;
    font-weight: 500 !important;
    color: #ffffff !important;
}

#page-container .schedule_btn a:hover {
    color: #096191 !important;
    background: no-repeat;
    border: 3px solid #096191;
    transition: 0.3s;
}

.schedule_btn {
    padding-right: 0px !important;
}

/* .header_menu .et_pb_menu__menu > nav > ul > li > a {
    padding: 27px 0 !important;
} */

.gform_footer input {
    border-radius: 0px !important;
}

@media only screen and (min-width: 981px) {
    .header_menu li a::before {
        position: absolute;
        content: "";
        width: 0 !important;
        height: 1px !important;
        background: #011723 !important;
        left: 0;
        bottom: 8px;
        transition: 0.3s ease-in;
    }

    .header_menu li a:hover::before {
        width: 100% !important;
    }

    #page-container .log_in_btn a:hover::before {
        width: 0%;
    }

    #page-container .schedule_btn a:hover::before {
        width: 0%;
    }

    #page-container .header_menu .et_pb_menu__logo a:hover::before {
        width: 0%;
    }
}

@media only screen and (min-width: 1450px) and (max-width: 1770px) {
    /*     .et_pb_menu .et-menu > li {
        padding-right: 50px;
    } */

    .header_menu .et_pb_menu__logo-slot {
        margin-left: 5vh !important;
        margin-right: 10vh !important;
    }

    #page-container .log_in_btn a {
        padding-left: 45px;
        padding-right: 45px;
        font-size: 18px;
    }

    #page-container .schedule_btn a {
        padding-left: 40px !important;
        padding-right: 40px !important;
        font-size: 18px !important;
    }

    .header_menu ul li a {
        font-size: 20px !important;
    }

    .log_in_btn {
        margin-right: 20px !important;
        padding-right: 0px !important;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1450px) {
    .et_pb_menu .et-menu > li {
        padding-right: 20px;
    }

    .header_menu .et_pb_menu__logo-slot {
        margin-left: 1vh !important;
        margin-right: 1vh !important;
        width: 180px !important;
    }

    #page-container .log_in_btn a {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 18px;
    }

    #page-container .schedule_btn a {
        padding-left: 15px !important;
        padding-right: 15px !important;
        font-size: 16px !important;
    }

    /*     .header_menu ul li a {
        font-size: 16px !important;
    } */

    .log_in_btn {
        margin-right: 10px !important;
        padding-right: 0px !important;
    }
    /* 
    .header_menu .et_pb_menu__menu > nav > ul > li > a {
        padding: 22px 0 !important;
    } */
}

body #page-container .sub-menu li a {
    line-height: 1.5em;
    width: 207px;
    padding: 9px 2px;
}

.menu-item a {
    cursor: pointer;
}

@media only screen and (max-width: 980px) {
    .header_menu .et_pb_menu__logo-wrap {
        margin-bottom: 0px !important;
        float: left;
    }

    .et_pb_menu__wrap {
        float: right;
        margin-top: 15px;
    }

    #page-container .log_in_btn a {
        padding: 28px 30px;
        text-align: center;
        font-size: 14px;
    }

    #page-container .schedule_btn a {
        text-align: center !important;
        font-size: 14px;
    }

    .et_mobile_menu li a:hover {
        opacity: 1;
    }

    .log_in_btn {
        padding-right: 0px !important;
        margin-bottom: 10px !important;
    }

    .et_mobile_menu {
        margin-top: 10px;
    }
}

.current-menu-item a {
    text-transform: uppercase;
}

/**** This hides the sub menu items on mobile ****/
#page-container .mobile_nav li ul.hide {
    display: none !important;
}
/**** This adjusts the positioning and the background transparency of the parent menu item on mobile ****/
#page-container .mobile_nav .menu-item-has-children {
    position: relative;
}
#page-container .mobile_nav .menu-item-has-children > a {
    background: transparent;
}
/**** This styles the icon and moves it to the right ****/
#page-container .mobile_nav .menu-item-has-children > a + span {
    position: absolute;
    right: 0;
    top: 0;
    padding: 10px 20px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    z-index: 3;
}
/**** Here you can swap out the actual icons ****/
#page-container span.menu-closed:before {
    content: "\3b";
    display: block;
    color: #096191;
    font-size: 16px;
    font-family: ETmodules;
}
#page-container span.menu-closed.menu-open:before {
    transform: rotate(180deg);
}

/* ============== End Header css ====================== */
/* ============== Start Footer css ====================== */
/* h1, h2, h3, h4, h5, h6 {
    font-family: "Metropolis Font";
    font-weight: 500;
} */
.wp-image-286.alignnone.size-full {
    position: relative;
    top: 5px;
}

.footer_blurb .et_pb_blurb_container {
    padding-left: 0px !important;
}

#menu-resources {
    display: block;
}

#menu-company {
    display: block;
}

#menu-quick-links {
    display: block;
}

.footer-col-1 {
    width: 28% !important;
    margin-right: 8% !important;
}

.footer-col-2 {
    width: 18% !important;
    margin-right: 8% !important;
}

.footer-col-3 {
    width: 18% !important;
    margin-right: 8% !important;
}

.footer-col-4 {
    width: 12% !important;
}

.footer_blurb {
    max-width: 80% !important;
}

#page-container .footer_row .et-menu {
    margin-left: 0px !important;
}

@media only screen and (min-width: 981px) and (max-width: 1150px) {
    .footer-col-1 {
        width: 27% !important;
        margin-right: 7% !important;
    }

    .footer-col-2 {
        width: 18% !important;
        margin-right: 4% !important;
    }

    .footer-col-3 {
        width: 18% !important;
        margin-right: 5.5% !important;
    }

    .footer-col-4 {
        width: 20% !important;
    }

    .footer_row img {
        max-width: 190px;
    }

    .footer_row h2 {
        font-size: 20px;
    }

    .footer_blurb {
        max-width: 100% !important;
    }
}

@media only screen and (min-width: 481px) and (max-width: 980px) {
    .footer_menu_cmn .et_pb_menu__menu {
        display: flex;
    }

    .footer_menu_cmn .mobile_menu_bar {
        display: none;
    }

    .footer_menu_cmn .et_pb_menu__wrap {
        justify-content: flex-start;
    }

    .footer_row img {
        max-width: 180px;
    }

    .footer-col-1 {
        width: 63% !important;
        margin-right: 0% !important;
    }

    .footer-col-2 {
        width: 37% !important;
        margin-right: 0% !important;
    }

    .footer-col-3 {
        width: 53% !important;
        margin-right: 10% !important;
    }

    .footer-col-4 {
        width: 37% !important;
    }

    #page-container .footer_blurb {
        max-width: 75% !important;
    }
}

@media only screen and (max-width: 480px) {
    .footer_row img {
        max-width: 180px;
    }

    .footer_blurb {
        max-width: 80% !important;
    }

    .footer_menu_cmn .et_pb_menu__menu {
        display: flex;
    }

    .footer_menu_cmn .mobile_menu_bar {
        display: none;
    }

    .footer_menu_cmn .et_pb_menu__wrap {
        justify-content: flex-start;
    }

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

    .footer-col-2 {
        width: 100% !important;
    }

    .footer-col-3 {
        width: 100% !important;
    }

    .footer-col-4 {
        width: 100% !important;
    }
}

/* ============== End Footer css ====================== */

/*================== Stat CTA section css =================== */
.cta_button {
    width: auto;
}

@media only screen and (min-width: 981px) and (max-width: 1680px) {
    .cta_section h2 {
        font-size: 40px !important;
    }
}

@media only screen and (max-width: 550px) {
    .cta_section br {
        display: none;
    }
}

/*================== End CTA section css =================== */

/* Start What we do page */

/* ====================== Start Counter css =============== */
.percent {
    margin-bottom: 5px !important;
}

.col_2_dolor span.percent-value {
    position: relative;
    padding-left: 30px;
}

.col_2_dolor span.percent-value:after {
    content: "$";
    display: block;
    position: absolute;
    top: -4px;
    left: 0px;
    color: #fff;
    font-weight: 500;
}

.col_3_weeks span.percent-value {
    position: relative;
    padding-right: 30px;
}

.col_3_weeks span.percent-value:after {
    content: "Weeks";
    display: block;
    position: absolute;
    top: -4px;
    left: 40px;
    color: #fff;
    font-weight: 500;
}

.col_3_weeks .percent {
    position: relative;
    right: 65px;
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
    .percent-value {
        font-size: 38px;
    }

    .percent-sign {
        font-size: 38px;
    }

    .counter_row .title {
        font-size: 20px !important;
    }

    .col_2_dolor span.percent-value::after {
        font-size: 38px;
        top: -10px !important;
    }

    .col_3_weeks span.percent-value::after {
        font-size: 38px;
        top: -10px !important;
    }
}

@media only screen and (min-width: 981px) {
    .counter_col_1 {
        width: 25% !important;
    }

    .col_2_dolor {
        width: 36% !important;
        padding-left: 30px;
        padding-right: 30px;
    }

    .col_3_weeks {
        width: 25% !important;
    }

    .col_2_dolor::after {
        content: "";
        display: block;
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0px;
        left: 75px;
        border-right: 2px solid rgba(255, 255, 255, 0.42);
    }

    .col_2_dolor::after {
        content: "";
        display: block;
        position: absolute;
        height: 100%;
        width: 100%;
        top: 0px;
        left: 0px;
        border-left: 2px solid rgba(255, 255, 255, 0.42);
    }
}

@media only screen and (max-width: 980px) {
    .col_2_dolor span.percent-value::after {
        top: -10px !important;
    }

    .col_3_weeks span.percent-value::after {
        top: -10px !important;
        left: 30px;
    }

    .col_3_weeks span.percent-value {
        padding-right: 0px;
    }

    .et_pb_number_counter .percent {
        height: 60px !important;
    }
}

/* ====================== End Counter css =============== */

/* ====================== Start Our Process css =============== */
@media only screen and (max-width: 980px) {
    .process_blurb_1 {
        width: 100% !important;
    }
}

/* ====================== End Our Process css =============== */

/* End What we do page */
/********************************************************* End tahmina area ***************************************/
/*********************************************************  rashedul area ***************************************/
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */
/*****Custom CSS by Rashed****/

@media only screen and (min-width: 981px) and (max-width: 1650px) {
    div#page-container .row_btm_pd {
        padding-bottom: 80px !important;
    }

    div#page-container .our_msn_row {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

@media (min-width: 1025px) and (max-width: 1650px) {
    /*     div#page-container .inner_bnr_sec {
        background-position: inherit;
    } */
}

/****Our Supplements Section****/
@media (min-width: 981px) {
    .dis_flex_col {
        display: flex;
    }

    .our_splmt_blurb .et_pb_blurb_container h3 {
        max-width: 335px;
    }

    .our_splmt_blurb .et_pb_blurb_container .et_pb_blurb_description {
        max-width: 445px;
    }

    .splmt_blrb_3 .et_pb_blurb_container h3 {
        max-width: 383px;
    }
}

@media (min-width: 981px) and (max-width: 1650px) {
    .single_blurb .et_pb_main_blurb_image .et_pb_image_wrap {
        width: 100px !important;
        height: 100px !important;
    }

    .our_splmt_blurb .et_pb_blurb_container h3 {
        font-size: 28px !important;
    }

    .our_splmt_blurb .et_pb_blurb_container .et_pb_blurb_description {
        font-size: 18px !important;
    }
}

@media (max-width: 980px) {
    .single_blurb .et_pb_main_blurb_image .et_pb_image_wrap {
        width: 70px !important;
        height: 70px !important;
    }
}

@media (max-width: 767px) {
    .single_blurb .et_pb_main_blurb_image .et_pb_image_wrap {
        width: 70px !important;
        height: 70px !important;
    }
}

/*****Contact Page*****/
.contact_form textarea {
    resize: none;
}

.contact_form .gform_heading {
    display: none;
}

body .contact_form .gform_wrapper .hidden_label .ginput_container textarea,
body .contact_form .gform_wrapper .hidden_label .ginput_container input {
    margin-top: 8px !important;
    border: 1px solid #fff !important;
    padding-left: 20px !important;
    background: transparent !important;
    color: #fff;
    font-size: 20px !important;
}

div#page-container .contact_form textarea::-webkit-input-placeholder,
div#page-container .contact_form input::-webkit-input-placeholder {
    opacity: 1 !important;
    color: #fff !important;
}

div#page-container .contact_form textarea::-moz-placeholder,
div#page-container .contact_form input::-moz-placeholder {
    opacity: 1 !important;
    color: #fff !important;
}

div#page-container .contact_form textarea:-ms-input-placeholder,
div#page-container .contact_form input:-ms-input-placeholder {
    opacity: 1 !important;
    color: #fff !important;
}

body .contact_form .gform_wrapper .hidden_label .ginput_container > input:focus,
body
    .contact_form
    .gform_wrapper
    .hidden_label
    .ginput_container
    > textarea:focus,
body
    .contact_form
    .gform_wrapper
    .hidden_label
    .ginput_container
    > select:focus,
body .contact_form .gform_wrapper .hidden_label .ginput_container > input:hover,
body
    .contact_form
    .gform_wrapper
    .hidden_label
    .ginput_container
    > textarea:hover,
body
    .contact_form
    .gform_wrapper
    .hidden_label
    .ginput_container
    > select:hover {
    border-color: #ffcaca !important;
}

.contact_form div.gform_footer.top_label input {
    padding: 14px 70px !important;
    text-align: center;
    background: #fff;
    border: 1px solid #fff !important;
    color: #096191 !important;
}

.contact_form div.gform_footer.top_label input:hover {
    background: transparent;
    color: #fff !important;
}

.contact_form .gform_footer {
    justify-content: center;
}

@media (min-width: 981px) and (max-width: 1650px) {
    .contact_form div.gform_footer.top_label input {
        font-size: 20px !important;
        padding: 12px 50px !important;
    }

    div#page-container .contact_form textarea::-webkit-input-placeholder,
    div#page-container .contact_form input::-webkit-input-placeholder,
    body .contact_form .gform_wrapper .hidden_label .ginput_container input,
    body .contact_form .gform_wrapper .hidden_label .ginput_container textarea {
        font-size: 18px !important;
    }
}

@media (min-width: 768px) and (max-width: 980px) {
    .contact_form div.gform_footer.top_label input {
        font-size: 20px !important;
        padding: 12px 50px !important;
    }

    div#page-container .contact_form textarea::-webkit-input-placeholder,
    div#page-container .contact_form input::-webkit-input-placeholder,
    body .contact_form .gform_wrapper .hidden_label .ginput_container input,
    body .contact_form .gform_wrapper .hidden_label .ginput_container textarea {
        font-size: 18px !important;
    }
}

@media (max-width: 767px) {
    .contact_form div.gform_footer.top_label input {
        font-size: 18px !important;
        padding: 10px 50px !important;
    }

    div#page-container .contact_form textarea::-webkit-input-placeholder,
    div#page-container .contact_form input::-webkit-input-placeholder,
    body .contact_form .gform_wrapper .hidden_label .ginput_container input,
    body .contact_form .gform_wrapper .hidden_label .ginput_container textarea {
        font-size: 14px !important;
    }
}

/*****Blog page****/
.custom_blog a.more-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.custom_blog p.post-meta {
    margin-bottom: 0;
}

@media (min-width: 981px) and (max-width: 1650px) {
    #page-container .custom_blog .et_pb_post h2 {
        font-size: 22px !important;
    }

    #page-container .custom_blog .et_pb_post .post-content-inner p {
        font-size: 18px !important;
    }
}

@media all and (min-width: 981px) {
    .custom_blog_archive .column.size-1of3 {
        width: 31.333% !important;
        margin-right: 3% !important;
    }

    .custom_blog_archive .column.size-1of3:last-child {
        margin-right: 0 !important;
    }
}

/***Menu Button Color fix***/
#page-container .log_in_btn a,
#page-container .schedule_btn:hover a {
    color: #096191 !important;
}

/********************************************************* End rashedul area ***************************************/
/*********************************************************  hridoy  area  ***************************************/
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */

.home_slider h1 {
    font-family: "Metropolis medium", Helvetica, Arial, Lucida, sans-serif;
    letter-spacing: -0.82px;
    font-weight: 500 !important;
    padding-bottom: 32px;
}

@media all and (min-width: 981px) and (max-width: 1280px) {
    body #page-container .home_slider h1.et_pb_slide_title {
        font-size: 48px !important;
    }

    body #page-container .home_slider .et_pb_slide_content {
        font-size: 30px !important;
    }
}

@media all and (min-width: 1281px) and (max-width: 1440px) {
    body #page-container .home_slider h1.et_pb_slide_title {
        font-size: 56px !important;
    }

    body #page-container .home_slider .et_pb_slide_content {
        font-size: 32px !important;
    }
}

.home_slider .et_pb_slide_content {
    max-width: 880px;
    margin: 0 auto;
    padding-bottom: 48px;
}

@media all and (max-width: 980px) {
    .home_slider .et_pb_slide_content {
        padding-bottom: 20px;
    }
}

/*********************************************************  end hridoy   area  ***************************************/
/********************************************************* End home page area ***************************************/
/*********************************************************  finihsing  area  ***************************************/
.top_menu ul li:last-child {
    padding-right: 0 !important;
}

.top_menu ul {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.header_menu_up ul {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* up  */
.header_menu_up .et_pb_menu__wrap {
    justify-content: flex-end;
}

/* header resposnive  */
@media only screen and (min-width: 981px) and (max-width: 1000px) {
    .header_menu_up .et-menu > li {
        padding-right: 15px;
    }
}

@media only screen and (min-width: 1001px) and (max-width: 1100px) {
    .header_menu_up .et-menu > li {
        padding-right: 19px;
    }
}

@media only screen and (min-width: 1101px) and (max-width: 1279px) {
    .header_menu_up .et-menu > li {
        padding-right: 2vw;
    }

    .log_in_btn {
        margin-right: 2vw !important;
    }

    .header_menu .et_pb_menu__logo-slot {
        margin-left: 4vw !important;
        margin-right: 3vw !important;
        margin-top: 0vh !important;
        margin-bottom: 0vh !important;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1365px) {
    .header_menu_up .et-menu > li {
        padding-right: 2vw;
    }

    .header_menu_up .et-menu > li a {
        font-size: 19px !important;
    }

    .log_in_btn {
        margin-right: 2vw !important;
    }

    .header_menu .et_pb_menu__logo-slot {
        margin-left: 2vw !important;
        margin-right: 7.5vw !important;
        margin-top: 0vh !important;
        margin-bottom: 0vh !important;
    }

    #page-container .schedule_btn a {
        padding-left: 30px !important;
        padding-right: 30px !important;
        font-size: 18px !important;
    }

    #page-container .log_in_btn a {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 18px;
    }
}

@media only screen and (min-width: 1366px) and (max-width: 1439px) {
    .header_menu_up .et-menu > li {
        padding-right: 2vw;
    }

    .header_menu_up .et-menu > li a {
        font-size: 20px !important;
    }

    .log_in_btn {
        margin-right: 2vw !important;
    }

    .header_menu .et_pb_menu__logo-slot {
        margin-left: 2vw !important;
        margin-right: 7vw !important;
        margin-top: 0vh !important;
        margin-bottom: 0vh !important;
    }

    #page-container .schedule_btn a {
        padding-left: 35px !important;
        padding-right: 35px !important;
        font-size: 20px !important;
    }

    #page-container .log_in_btn a {
        padding-left: 30px !important;
        padding-right: 30px !important;
        font-size: 20px !important;
    }
}

.home_quize_form input[type="radio"] {
    display: none !important;
}

@media only screen and (min-width: 1440px) and (max-width: 1599px) {
    .header_menu_up .et-menu > li {
        padding-right: 2vw;
    }

    .header_menu_up .et-menu > li a {
        font-size: 22px !important;
    }

    .log_in_btn {
        margin-right: 2vw !important;
    }

    .header_menu .et_pb_menu__logo-slot {
        margin-left: 0vw !important;
        margin-right: 5vw !important;
        margin-top: 0vh !important;
        margin-bottom: 0vh !important;
    }

    #page-container .schedule_btn a {
        padding-left: 30px !important;
        padding-right: 30px !important;
        font-size: 22px !important;
    }

    #page-container .log_in_btn a {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 22px;
    }

    .header_menu .et_pb_menu__logo-slot {
        width: 250px !important;
    }
}

/* end header resposnvie  */
.header_menu li.current-menu-item a::before {
    width: 100% !important;
}

.header_menu li.current-menu-item a {
    font-weight: 700;
}

@media all and (max-width: 980px) {
    .header_menu_up .log_in_btn {
        margin-right: 0 !important;
    }
}

/* end header  */
@media all and (max-width: 980px) {
    .our_msn_row {
        border-radius: 25px !important;
    }
}

/* quiz section design  */
.home_quize_form .gform_heading {
    display: none;
}

.home_quize_form p.gf_progressbar_title {
    color: #b9b9b9 !important;
    font-size: 18px !important;
}

div#page-container .home_quize_form h2 {
    font-size: 36px;
    color: #fff !important;
}

/* up  */
/* .top_form_header {
    position: absolute;
    top: -100px;
} */

@media only screen and (min-width: 981px) and (max-width: 1650px) {
    .home_quize_form {
        padding-top: 25px;
    }

    /*     .top_form_header {
        position: absolute;
        top: -140px;
    } */
}

.home_quize_form legend.gfield_label {
    font-size: 22px !important;
    font-family: "Metropolis medium", Helvetica, Arial, Lucida, sans-serif;
    font-weight: 500;
    margin-bottom: 15px !important;
}


.home_quize_form .gfield_radio label {
    font-size: 18px !important;
}

@media only screen and (max-width: 980px){
	body div#page-container .quiz_form_toggle .gform_wrapper.gravity-theme .gfield_radio label {
    font-size: 16px !important;
}
	
	.gform_wrapper.gravity-theme .gfield-choice-input+label {
    max-width: 100% !important;
}
}

.home_quize_form
    .gform_wrapper.gravity-theme
    .gfield-choice-input:disabled
    + label {
    color: #b9b9b9;
}

.home_quize_form .gfield_radio .gchoice {
    margin-bottom: 10px;
}

/* up  */
.home_quize_form .gform_wrapper.gravity-theme .gf_progressbar_percentage {
    background: #096191 !important;
    border-radius: 36px !important;
    height: 42px;
}

.home_quize_form .gf_progressbar.gf_progressbar_blue {
    border-radius: 36px !important;
    background: #fff !important;
    margin: 17px !important;
}

.home_quize_form .gf_progressbar.gf_progressbar_blue:after {
    position: absolute;
    left: -16px;
    top: -16px;
    background: #e5e4e7;
    content: "";
    height: 72px;
    width: calc(100% + 17px + 17px);
    z-index: -1;
    border-radius: 36px;
}

.home_quize_form .gform_wrapper.gravity-theme .gf_progressbar_percentage span {
    line-height: 42px;
    font-size: 22px !important;
    font-weight: 500 !important;
    font-family: "Metropolis medium", Helvetica, Arial, Lucida, sans-serif;
}

.home_quize_form .gf_progressbar_wrapper {
    margin-bottom: 50px;
}

/* update  */
.home_quize_form .gform_footer input {
    padding: 14px 70px !important;
    text-align: center;
    background: #fff;
    border: 1px solid #fff !important;
    color: #096191 !important;
}

.home_quize_form .gform_footer.top_label input:hover {
    background: transparent;
    color: #fff !important;
}

.gform_page_footer {
}


.quiz_form_toggle .gform_page_footer.top_label {
    display: flex;
    justify-content: flex-start;
    gap: 35px;
}

@media all and (max-width: 980px){
	.quiz_form_toggle .gform_page_footer.top_label {
    gap: 5px;
}
	body #page-container h2.gform_submission_error.hide_summary {
    font-size: 14px;
    color: #c02b0a !important;
}
}

body #page-container h2.gform_submission_error.hide_summary {
    color: #c02b0a !important ;
	line-height: 1em;
}

@media all and (max-width: 480px){
	 body #page-container .quiz_form_toggle .gform_wrapper.gravity-theme .gf_progressbar_percentage span {
    font-size: 12px !important;
    margin-right: 3px !important;
    padding-right: 0px;
}
	span.score_area {
    font-size: 35px;
    line-height: 1em;
}
}


.home_quize_form .gform_page_footer .button {
    padding: 13px 25px !important;
    text-align: center;
    background: transparent;
    border: 2px solid #fff !important;
    color: #fff;
    width: 196px;
    font-size: 17px;
    font-weight: 600;
    font-family: "Metropolis medium", Helvetica, Arial, Lucida, sans-serif !important;
    transition: 0.3s ease-in;
}

.home_quize_form .gform_page_footer .button:hover {
    background: #fff !important;
    color: #011723 !important;
}

/* up  */
.home_quize_form input {
    border: 1px solid #fff !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 20px !important;
    padding: 20.5px 20px !important;
    max-width: 660px !important;
}

.home_quize_form
    input
    div#page-container
    .home_quize_form
    textarea::-webkit-input-placeholder,
div#page-container .home_quize_form input::-webkit-input-placeholder {
    opacity: 1 !important;
    color: #fff !important;
}

.home_quize_form .ginput_container_email {
    margin-bottom: 25px;
}

/* sucess  */
.home_quize_form .gform_confirmation_wrapper .gform_confirmation_message {
    background: transparent !important;
    padding: 0 !important;
    text-align: left;
    font-size: 18px !important;
    line-height: 1.6em;
}

.home_quize_form .gform_confirmation_wrapper .gform_confirmation_message br {
    display: none;
}

.home_quize_form span.content_area_res {
    display: block;
    margin-bottom: 20px;
}

.home_quize_form span.content_area_res br {
    display: block !important;
    margin-bottom: 10px;
}

/* res icon  */
span.score_area {
    font-size: 52px;
    margin-bottom: 35px;
    display: inline-block;
    position: relative;
    padding-left: 85px;
    font-weight: 500;
}

span.score_area:after {
    position: absolute;
    content: "";
    width: 60px;
    height: 50px;
    background-image: url(/wp-content/uploads/score-icon.png);
    left: 0;
    top: -12px;
}

/* up  */
.home_quize_form .email_field_c label.gfield_label {
    font-size: 22px !important;
    font-weight: 500 !important;
}

/* res  */
@media all and (max-width: 1650px) {
    .home_quize_form legend.gfield_label {
        font-size: 18px !important;
    }

    div#page-container .home_quize_form h2 {
        font-size: 30px !important;
    }

    .home_quize_form .email_field_c label.gfield_label {
        font-size: 18px !important;
    }

    .home_quize_form input {
        font-size: 18px !important;
    }

    input#gform_submit_button_2 {
    }

    span.score_area {
        font-size: 42px;
        padding-left: 65px;
    }

    span.score_area:after {
        width: 50px;
        background-size: contain;
        background-repeat: no-repeat;
    }
}

/* resposnive  */
@media all and (max-width: 980px) {
    div#page-container .home_quize_form h2 {
        font-size: 24px !important;
    }

    /*     .top_form_header {
        position: absolute;
        top: -220px;
    } */

    .home_quize_form {
        padding-top: 220px;
    }

    .home_quize_form input {
        font-size: 16px !important;
    }

    .home_quize_form .gform_page_footer .button {
        padding: 10px 25px !important;
    }

    .home_quize_form
        .gform_wrapper.gravity-theme
        .gf_progressbar_percentage
        span {
        font-size: 16px !important;
        line-height: 30px;
    }

    .home_quize_form .gform_wrapper.gravity-theme .gf_progressbar_percentage {
        height: 30px !important;
        border-radius: 20px !important;
    }

    .home_quize_form .gf_progressbar.gf_progressbar_blue {
        border-radius: 20px !important;
        margin: 10px !important;
    }

    .home_quize_form .gf_progressbar.gf_progressbar_blue:after {
        height: 40px;
        top: -5px;
        left: -10px;
        border-radius: 20px !important;
        width: calc(100% + 20px);
    }

    .home_quize_form .gform_page_footer.top_label {
        flex-wrap: wrap;
        gap: 10px;
    }

    .home_quize_form .gform_page_footer .button {
        width: 150px;
    }
}

/* ic  */
.for_ic_done {
    position: relative;
    padding-left: 50px;
}

.for_ic_done:after {
    content: "";
    width: 35px;
    height: 40px;
    background-image: url(/wp-content/uploads/done-icon.png);
    position: absolute;
    left: 0;
    top: 0;
    background-repeat: no-repeat;
}

/* end quiz section  */
/* up  */
@media all and (max-width: 399px) {
    .header_menu_up .et_pb_menu__logo-wrap {
        max-width: 200px !important;
    }

    .header_menu_up .et_pb_menu__wrap {
        margin-top: 6px;
    }
}

@media all and (max-width: 767px) {
    .btm_header {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

/* up  */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
    .single_icon_title_blurb h3 {
        font-size: 24px !important;
    }
}

.footer_menu_cmn ul li a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* update  */
/* .home_quize_form input[type="radio"] {
    display: none !important;
} */

.home_quize_form input[type="radio"] label {
    position: relative;
    cursor: pointer;
}

.home_quize_form input[type="radio"] + label:before {
    content: "";
    display: inline-block;
    width: 24px !important;
    height: 24px !important;
    margin: 0px 8px 0 8px;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid #d3d3d3;
    position: absolute;
    left: 0;
    margin-left: 0;
    transform: translateY(5px);
}

.home_quize_form .gquiz-correct-response img,
.home_quize_form .gquiz-incorrect-response img,
.home_quize_form .gquiz-indicator {
    display: none;
}

.gform_page_footer input {
    border-radius: 0px !important;
}

.home_quize_form input[type="radio"] + label.gquiz-incorrect-choice {
    position: relative;
}

div#page-container .home_quize_form label.gquiz-incorrect-choice:before {
    content: "";
    display: inline-block;
    width: 18px !important;
    height: 18px !important;
    margin: 0px 8px 0 8px;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    background-color: transparent;
    border: 4px solid #fff !important;
    position: absolute;
    margin-left: 0;
}

.home_quize_form
    .gform_wrapper.gravity-theme
    .gfield_radio
    .gfield-choice-input
    + label {
    padding-left: 70px;
}

/* up  */
@media all and (max-width: 980px) {
    .home_quize_form
        .gform_wrapper.gravity-theme
        .gfield_radio
        .gfield-choice-input
        + label {
        padding-left: 45px;
    }

    .home_quize_form input[type="radio"] + label:before {
        transform: translateY(00px);
    }
    .home_quize_form
        .gform_wrapper.gravity-theme
        .gfield_radio
        .gfield-choice-input
        + label {
        max-width: 100% !important;
    }
}

/* res  */
@media only screen and (min-width: 400px) and (max-width: 550px) {
    /*     .top_form_header {
        top: -180px;
    } */

    .home_quize_form {
        padding-top: 180px;
    }
}
@media only screen and (min-width: 551px) and (max-width: 767px) {
    /*     .top_form_header {
        top: -140px;
    } */

    .home_quize_form {
        padding-top: 140px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 980px) {
    /*     .top_form_header {
        top: -110px;
    } */

    .home_quize_form {
        padding-top: 23px;
    }
}

/* f  */
@media only screen and (min-width: 551px) and (max-width: 767px) {
    .home_quize_form
        .gform_wrapper.gravity-theme
        .gf_progressbar_percentage
        span {
        font-size: 12px !important;
    }
}
@media all and (max-width: 550px) {
    .home_quize_form
        .gform_wrapper.gravity-theme
        .gf_progressbar_percentage
        span {
        color: #fff !important;
        font-size: 16px !important;
        transform: translateY(35px);
    }
}

p.survey_txt {
    font-weight: 500;
}

.home_quize_form .gform_wrapper.gravity-theme .gfield_label {
    font-weight: 500;
}

@media all and (max-width: 767px) {
    .home_quize_form input[type="radio"] + label:before {
        width: 18px !important;
        height: 18px !important;
        margin: 4px 14px 0 6px;
    }

    .home_quize_form legend.gfield_label {
        font-size: 16px !important;
    }

    .home_quize_form
        .gform_wrapper.gravity-theme
        .gfield_radio
        .gfield-choice-input
        + label {
        font-size: 15px !important;
    }
}

@media only screen and (max-width: 480px) {
    .two_columns .et_pb_column {
        width: 50% !important;
    }
}

/* header area up ********* */
/* .header-col-1 {
  width: 40% !important;
}
.header-col-2 {
  width: 20% !important;
}
.header-col-3 {
  width: 40% !important;
} */

.header_row .et_pb_column {
    margin-right: 20px !important;
}
.header_row .et_pb_column:nth-child(1) {
    width: calc(40% - 10px) !important;
}
.header_row .et_pb_column:nth-child(2) {
    width: calc(20% - 0px) !important;
}
.header_row .et_pb_column:nth-child(3) {
    width: calc(40% - 10px) !important;
    margin-right: 0px !important;
}

.dfrnt_btn_1 {
    margin-right: 30px !important;
    padding-right: 0px !important;
}

#page-container .dfrnt_btn_1 a {
    border: 3px solid #096191;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 52px;
    padding-right: 52px;
    line-height: 2.8em;
    font-size: 22px;
    font-family: Metropolis medium !important;
    font-weight: 500;
    color: #096191;
}

#page-container .dfrnt_btn_1 a:hover {
    background: #096191;
    border: 3px solid #096191;
    color: #ffffff !important;
    transition: 0.3s;
}

#page-container .dfrnt_btn_2 a {
    background: #096191;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 52px;
    padding-right: 52px;
    border: 3px solid #096191;
    font-family: Metropolis medium !important;
    font-weight: 500;
    color: #ffffff;
    line-height: 2.8em;
    font-size: 22px;
}

#page-container .dfrnt_btn_2 a:hover {
    color: #096191 !important;
    background: no-repeat;
    border: 3px solid #096191;
    transition: 0.3s;
}
.dfrnt_btn_1 {
    padding-right: 0px !important;
}
.dfrnt_btn_2 {
    padding-right: 0px !important;
}
.et_pb_menu--without-logo .et_pb_menu__menu > nav > ul > li {
    margin-top: 0px !important;
}
.et_pb_menu--without-logo .et_pb_menu__menu > nav > ul > li > a {
    padding-bottom: 0px !important;
}
/* #menu-primary-menu-btn {
  position: relative;
  left: 65px;
} */
.header_menu li a::before {
    position: absolute;
    content: "";
    width: 0 !important;
    height: 1px !important;
    background: #011723 !important;
    left: 0;
    bottom: 8px;
    transition: 0.3s ease-in;
}
.current-menu-item a {
    text-transform: uppercase;
    font-weight: 700;
}
/* .header-col-1 {
  margin-right: 4% !important;
} */
@media only screen and (min-width: 1550px) and (max-width: 1850px) {
    .header_row ul li a {
        font-size: 19px !important;
    }
    /* .header-col-3 {
  width: 35% !important;
} */
    #page-container .dfrnt_btn_1 a {
        padding-left: 45px;
        padding-right: 45px;
        font-size: 20px;
    }
    #page-container .dfrnt_btn_2 a {
        padding-left: 45px;
        padding-right: 45px;
        font-size: 20px;
    }
    /* .header-col-2{
		margin-right:0px !important;
	} */
}

@media all and (max-width: 980px) {
    body #page-container .header_menu ul li a {
        font-size: 18px;
    }
}

@media all and (max-width: 767px) {
    body #page-container .header_menu ul li a {
        font-size: 16px;
    }

    #page-container .log_in_btn a,
    #page-container .schedule_btn a {
        font-size: 15px;
    }
}

@media only screen and (min-width: 1450px) and (max-width: 1549px) {
    /* .header-col-1 {
  width: 45% !important;
}
.header-col-2 {
  width: 20% !important;
}
.header-col-3 {
  width: 35% !important;
} */
    #page-container .dfrnt_btn_1 {
        padding-right: 0px;
        margin-right: 15px;
    }
    /* .et_pb_menu .et-menu > li  {
  padding-right: 40px !important;
} */
    .header_menu ul li a {
        font-size: 20px;
    }

    #page-container .dfrnt_btn_1 a {
        padding-left: 40px;
        padding-right: 40px;
        font-size: 18px;
    }
    #page-container .dfrnt_btn_2 a {
        padding-left: 40px;
        padding-right: 40px;
        font-size: 18px;
    }
}
@media only screen and (min-width: 1200px) and (max-width: 1450px) {
    body #page-container .header_menu ul li a {
        font-size: 18px;
    }
    #page-container .dfrnt_btn_1 a {
        padding-left: 40px;
        padding-right: 40px;
        font-size: 18px;
    }
    #page-container .dfrnt_btn_2 a {
        padding-left: 35px;
        padding-right: 35px;
        font-size: 18px;
    }

    .header-col-1 .et_pb_menu__wrap {
        display: flex;
        justify-content: flex-start;
    }
}
/* end header area up  */
/* up  */
.header_menu_cum ul,
.menu_button ul {
    margin-left: 0 !important;
    margin-right: 0 !important;
}
.header_row {
    align-items: center;
}
/* header resposnvei  */

@media only screen and (min-width: 981px) and (max-width: 1279px) {
    #page-container .log_in_btn a {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 18px;
    }

    #page-container .dfrnt_btn_1 a {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 16px;
    }

    #page-container .dfrnt_btn_2 a {
        font-size: 16px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .header_row .et_pb_column {
        margin-right: 20px !important;
    }

    .header_row .et_pb_column:nth-child(1) {
        width: calc(40% - 10px) !important;
    }
    .header_row .et_pb_column:nth-child(2) {
        width: calc(20% - 0px) !important;
    }
    .header_row .et_pb_column:nth-child(3) {
        width: calc(40% - 10px) !important;
        margin-right: 0px !important;
    }

    .header_menu_cum ul li {
        padding-right: 12px !important;
    }

    div#page-container .header_menu_cum ul li a {
        font-size: 14px !important;
        padding-top: 0 !important;
    }

    .menu_button ul li {
        margin-right: 10px !important;
    }

    .menu_button ul li:last-child {
        margin-right: 0px !important;
    }
}
@media only screen and (min-width: 1100px) and (max-width: 1279px) {
    .header_menu_cum ul li {
        padding-right: 15px !important;
    }

    div#page-container .header_menu_cum ul li a {
        font-size: 16px !important;
    }
    .menu_button ul li {
        margin-right: 20px !important;
    }
    .menu_button ul li:last-child {
        margin-right: 0px !important;
    }
}
/* end header responsve  */
.footer_menu_cmn ul li {
    margin-bottom: 8px !important;
}

.footer_menu_cmn ul li:last-child {
    margin-bottom: 0;
}

/* up  */
@media only screen and (min-width: 1350px) and (max-width: 1449px) {
    .header_menu_cum ul li {
        padding-right: 25px !important;
    }
}
/* up  */
@media only screen and (min-width: 1450px) and (max-width: 1660px) {
    div#page-container .header_menu_cum ul li {
        padding-right: 20px !important;
    }
}
@media all and (max-width: 980px) {
    .header_menu li a::before {
        display: none;
    }
}

/* up  */

#page-container .log_in_btn a,
#page-container .schedule_btn a {
    padding: 18px 30px;
    display: block;
    line-height: 1;
}
.custom_header_menu.et_pb_sticky {
    box-shadow: 0px 12px 18px -6px rgba(168, 168, 168, 0.15);
}

/********************************************************* End finishing area  ***************************************/

/***** Hridoy CSS update 12-19-22 *******/

.login_fix .et_pb_newsletter_button.et_pb_button {
    background: #fff;
    color: #096191;
    padding: 14px 10px !important;
}

body #page-container .login_fix .et_pb_newsletter_button.et_pb_button:hover {
    background: #096191;
    color: #fff !important;
    border-color: #fff !important;
}

.start_quiz_fix.et_pb_toggle_open {
    background: transparent !important;
}
/* 
body div#page-container .et_pb_toggle_close.quiz_form_toggle h2.et_pb_toggle_title {
    color: #096191 !important;
} */

/* body
    div#page-container
    .et_pb_toggle_open.quiz_form_toggle
    h2.et_pb_toggle_title {
    display: none !important;
} */

body div#page-container .ginput_container_radio .gchoice {
    cursor: pointer !important;
    z-index: 9;
}

/* .home_quize_form {
    position: relative;
} */

body div#page-container .et_pb_toggle_open.start_quiz_fix {
    padding-top: 150px;
}

.home_quize_form .gf_progressbar_percentage.percentbar_blue.percentbar_100 {
    position: absolute;
    top: 6px !important;
    padding-right: 10px;
    right: 0;
    text-align: right;
    border-radius: 20px;
    background: #096191;
}

.home_quize_form .form_btn_fix {
    padding: 17.5px 70px !important;
    text-align: center;
    background: #fff !important;
    border: 2px solid #fff !important;
    color: #096191 !important;
    /*     width: 196px; */
    font-size: 24px;
    font-weight: 600 !important;
    font-family: "Metropolis medium", Helvetica, Arial, Lucida, sans-serif !important;
    transition: 0.3s ease-in;
    display: block;
    max-width: 540px;
    margin: 0 auto;
    text-transform: uppercase;
}

.home_quize_form .form_btn_fix:hover {
    background: #096191 !important;
    color: #fff !important;
    cursor: pointer;
}

@media all and (max-width: 980px) {
    body #page-container .home_quize_form .form_btn_fix {
        font-size: 20px;
    }
    .home_quize_form .gf_progressbar_percentage.percentbar_blue.percentbar_100 {
        top: 0px !important;
    }
}

@media all and (max-width: 768px) {
    body #page-container .home_quize_form .form_btn_fix {
        font-size: 18px;
    }
    .home_quize_form .gf_progressbar_percentage.percentbar_blue.percentbar_100 {
        top: 3px !important;
    }
}

h3.ready_join_txt {
    font-size: 34px;
    color: #fff;
    text-align: center;
    margin-bottom: -15px !important;
    padding-bottom: 0 !important;
}

.ready_join_subtxt {
    text-align: center;
    display: block;
}

/* .gquiz-field legend {
    text-transform: uppercase;
} */

/******** Quiz form redesign ********/

/* 
body div#page-container .et_pb_toggle_close.quiz_form_toggle h2.et_pb_toggle_title {
    color: #096191 !important;
} */

body
    div#page-container
    .et_pb_toggle_open.quiz_form_toggle
    h2.et_pb_toggle_title {
    display: none !important;
}

.quiz_form_toggle .gf_progressbar.gf_progressbar_blue {
    border-radius: 36px !important;
    background: #fff !important;
    margin: 17px !important;
    border: 13px solid #e5e4e7;
}

.quiz_form_toggle .gform_wrapper.gravity-theme .gf_progressbar_percentage {
    background: #096191 !important;
    border-radius: 36px !important;
    height: 42px;
}

.quiz_form_toggle .gform_wrapper.gravity-theme .gf_progressbar_percentage span {
    line-height: 42px;
    font-size: 22px !important;
    font-weight: 500 !important;
    font-family: "Metropolis medium", Helvetica, Arial, Lucida, sans-serif;
}

body .quiz_form_toggle .gform_wrapper .gf_progressbar_percentage {
    font-family: inherit;
    background: #11608b;
    border-radius: 36px;
    text-align: right;
}

body .quiz_form_toggle .gform_wrapper .gf_progressbar_percentage span {
    padding-right: 7px;
}

body .form_btn_fix {
    padding: 17.5px 70px !important;
    text-align: center;
    background: #fff !important;
    border: 2px solid #fff !important;
    color: #096191 !important;
    /*     width: 196px; */
    font-size: 24px;
    font-weight: 600 !important;
    font-family: "Metropolis medium", Helvetica, Arial, Lucida, sans-serif !important;
    transition: 0.3s ease-in;
    display: block;
    max-width: 540px;
    margin: 0 auto;
    text-transform: uppercase;
}

body .quiz_form_toggle .form_btn_fix:hover {
    background: #096191 !important;
    color: #fff !important;
    cursor: pointer;
}

@media all and (max-width: 980px) {
    body .form_btn_fix {
        font-size: 20px;
    }
}

@media all and (max-width: 768px) {
    body .form_btn_fix {
        font-size: 18px;
    }
}

body .quiz_form_toggle .gform_confirmation_wrapper .gform_confirmation_message {
    text-align: left;
}

body .quiz_form_toggle .et_pb_toggle_content {
    padding-top: 0px;
}

body .quiz_form_toggle .et_pb_toggle_content p {
    padding-bottom: 0;
}

body
    .quiz_form_toggle
    .gform_confirmation_wrapper
    .gform_confirmation_message
    h2 {
    color: #fff;
}

div#page-container .quiz_form_toggle h2 {
    font-size: 36px;
    color: #fff !important;
}

@media only screen and (min-width: 981px) and (max-width: 1440px) {
    div#page-container .quiz_form_toggle h2 {
        font-size: 30px;
    }
}

@media all and (max-width: 980px) {
    div#page-container .quiz_form_toggle h2 {
        font-size: 24px;
    }

    div#page-container .quiz_form_toggle .gform_page_footer .button {
        padding: 15px 15px !important;
        width: 165px;
        font-size: 16px !important;
    }
    .quiz_form_toggle .gf_progressbar.gf_progressbar_blue {
        margin: 10px 0 0 0 !important;
    }
    div#page-container
        .quiz_form_toggle
        .gform_wrapper.gravity-theme
        .gfield_radio
        label {
        font-size: 16px;
    }
    div#page-container
        .quiz_form_toggle
        .gform_wrapper.gravity-theme
        .gfield_label {
        font-size: 18px;
        padding-bottom: 13px;
    }
}

div#page-container
    .quiz_form_toggle
    .gform_wrapper.gravity-theme
    .gfield_label {
    font-size: 22px;
    padding-bottom: 13px;
}

div#page-container .quiz_form_toggle .gform_page_footer .button {
    padding: 13px 25px !important;
    text-align: center;
    background: transparent;
    border: 2px solid #fff !important;
    color: #fff;
    width: 196px;
    font-size: 17px;
    font-weight: 600;
    font-family: "Metropolis medium", Helvetica, Arial, Lucida, sans-serif !important;
    transition: 0.3s ease-in;
}

div#page-container .quiz_form_toggle .gform_page_footer .button:hover {
    background: #fff !important;
    color: #096191 !important;
}

div#page-container
    .quiz_form_toggle
    .gform_wrapper.gravity-theme
    .gf_progressbar_title {
    color: #b9b9b9;
    font-size: 18px;
}

div#page-container .quiz_form_toggle p.gform_required_legend {
    display: none;
}

/***** radio button *****/

div#page-container .quiz_form_toggle input[type="radio"] {
    display: none;
}

div#page-container .quiz_form_toggle input[type="radio"] label {
    position: relative;
    cursor: pointer;
}

div#page-container .quiz_form_toggle input[type="radio"] + label:before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    margin: 0px 36px 0 8px;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
    background-color: #096191;
    border: 1px solid #ffffff;
}

@media all and (max-width: 1280px) {
    div#page-container .quiz_form_toggle input[type="radio"] + label:before {
        margin: 0px 16px 0 8px;
    }
}

div#page-container .quiz_form_toggle input[type="radio"]:checked + label {
    position: relative;
}

div#page-container .quiz_form_toggle input[type="radio"]:checked + label:after {
    content: "";
    position: absolute;
    top: 3.5px;
    left: 8px;
    width: 18px;
    height: 18px;
    border: 5px solid #ffffff;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

div#page-container
    .quiz_form_toggle
    input[type="radio"]:checked
    + label:before {
    background-color: #096191;
}

@media all and (max-width: 980px) {
    div#page-container
        .quiz_form_toggle
        input[type="radio"]:checked
        + label:after {
        top: 1px;
    }
}

/* div#page-container .quiz_form_toggle .gform_wrapper.gravity-theme .gfield input{
    display: none;
} */

div#page-container
    .quiz_form_toggle
    .gform_wrapper.gravity-theme
    .gfield_radio
    label {
    font-size: 18px;
}

body div#page-container .quiz_form_toggle .ginput_container_radio .gchoice {
    margin-bottom: 10px;
}

.quiz_form_toggle .gf_progressbar.gf_progressbar_blue {
    margin-bottom: 1.5em !important;
}

.quiz_form_toggle input {
    border: 1px solid #fff !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 20px !important;
    padding: 20.5px 20px !important;
    max-width: 660px !important;
}

.quiz_form_toggle .ginput_container_email {
    margin-bottom: 25px;
}

.quiz_form_toggle input::placeholder {
    color: #fff !important;
}

.quiz_form_toggle input::-webkit-input-placeholder {
    /* Edge */
    color: #fff !important;
}

.quiz_form_toggle input:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #fff !important;
}

@media only screen and (min-width: 981px) and (max-width: 1280px) {
    body #page-container .sm_btn {
        font-size: 16px !important;
    }
}

/****** Featured Blog fix *******/

@media only screen and (min-width: 1001px) {
    .dt-blog .et_pb_post.has-post-thumbnail .entry-featured-image-url {
        float: left;
        width: 45%;
        margin-right: 4%;
    }
    .dt-blog
        .et_pb_post.has-post-thumbnail:not(.format-gallery)
        > .post-content {
        padding-left: 34%;
    }

    .dt-blog h2.entry-title {
        padding-top: 5vw;
    }

    .dt-blog .et_pb_post .entry-featured-image-url {
        margin-bottom: 0px;
    }
    .ft_blog_fix .et_pb_ajax_pagination_container {
        padding-right: 1em;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1440px) {
    .ft_blog_fix .entry-title a {
        font-size: 26px;
    }
    body #page-container .ft_blog_fix .post-content-inner p {
        font-size: 18px;
    }
}

@media only screen and (min-width: 981px) and (max-width: 1280px) {
    body #page-container .ft_blog_fix p.post-meta {
        padding-bottom: 0;
    }
    .dt-blog h2.entry-title {
        padding-top: 4vw;
    }
}

@media only screen and (max-width: 1000px) {
    body #page-container .ft_blog_fix h2.entry-title {
        padding: 0 30px 20px 30px;
    }

    body #page-container .ft_blog_fix p.post-meta {
        padding: 0 30px 0 30px;
    }

    body #page-container .ft_blog_fix .post-content-inner {
        padding: 0 30px 20px 30px;
    }
}

.contact_icons span.et_pb_image_wrap img[src*=".svg"] {
    width: 39%;
}

.contact_icons span.et_pb_image_wrap:hover {
    background: #096191;
}

.meet_blurb_image span.et_pb_image_wrap:hover {
    background: #fff;
}

.contact_icons span.et_pb_image_wrap {
    transition: all 200ms ease 0ms;
}


/* upd ate wiht a  */
.custom_style_for_blog_single_page strong, .custom_style_for_blog_single_page p b {
    color: #011723;
    font-weight: 700;
}
@media (min-width:981px) and (max-width:1190px){
	.process_blurb_1 .et_pb_blurb.custom_h_for_all h3.et_pb_module_header{
		font-size: 21px !important;
	}
}

/* Hide days until launch from projects page - projectopia */
#cqpim_dashboard_container #front_projectpage_table_wrapper #front_projectpage_table th:nth-child(6),
#cqpim_dashboard_container #front_projectpage_table_wrapper #front_projectpage_table tr td:nth-child(6){
    display: none;
}