/*
Theme Name: Divi Child
Theme URI: https://www.elegantthemes.com/gallery/divi/
Description: Divi child theme by FS
Author: Forbes Books
Author URI: https://forbesbooks.com/
Template: Divi
Version: 3.1.0-fb
*/
/* 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;
  /* add your own logo image here */
  background-image: url("");
  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 10px !important;
  line-height: 1.36em;
}

.checklist ul li:last-child {
  margin-bottom: 0 !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: #fbaa19;
  /* 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: top 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 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: linear-gradient(180deg, #fbaa19 5.61%, #de782d 65.09%);
  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;
  }
}

/* up  */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
  div#page-container .custom_h_for_all h1 {
    font-size: 45px !important;
  }

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

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

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

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

/* end cmn global  */

/********************************************************* End Global area  ***************************************/
/*********************************************************  Header area ***************************************/
/* under line  */
/* update header  */
div#page-container #top-menu li a:hover {
  color: #fbaa19 !important;
  opacity: 1 !important;
}

@media all and (min-width: 981px) {
  #top-menu li a {
    position: relative;
  }

  #top-menu li a:before {
    position: absolute;
    content: "";
    width: 0%;
    height: 1.5px;
    background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
    left: 0;
    bottom: 0;
    transition: 0.3s ease-in;
    border-radius: 5px;
  }

  #top-menu li li a:before {
    left: 0;
  }

  #top-menu li li a:before {
    background: #ba55c9 !important;
  }

  #top-menu li.menu-item-has-children li a:before {
    width: 0%;
  }

  #top-menu li.menu-item-has-children a:before {
    width: 0;
  }

  #top-menu li:hover a:before,
  #top-menu .current_page_item a:before,
  #top-menu li.menu-item-has-children.current_page_item a:before {
    width: 100%;
  }

  #top-menu li.menu-item-has-children:hover a:before {
    width: 0%;
  }

  #top-menu li li:hover a:before,
  #top-menu li ul.sub-menu .current_page_item a:before,
  #top-menu li ul.sub-menu li:hover a:before {
    width: 95%;
  }

  #top-menu li.contact_menu_btn a:before {
    height: 0;
  }

  .et-fixed-header #top-menu li a:before {
    background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
  }

  div#page-container .contact_btn a:before,
  div#page-container li.centered-inline-logo-wrap a:before {
    display: none;
  }
}

/* end update  */
/* top bottom spacing  */
@media all and (min-width: 981px) {
  #et-top-navigation {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  ul#top-menu {
    margin-top: 0px;
  }

  li.centered-inline-logo-wrap {
    transform: translateY(-14px);
  }
}

/* end top buttom spacing  */

div#page-container #top-menu li a {
  padding-bottom: 2px;
  position: relative;
  transition: 0.3s ease-in;
}

/* end under line  */
/* button  */
div#page-container #top-menu li.contact_btn a {
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
  padding: 15px 55px;
  border-radius: 61px;
  color: #fff !important;
}

div#page-container #top-menu li a {
  line-height: 1.36em;
}

/* div#page-container #top-menu li.contact_btn a:hover {
    background:linear-gradient(90deg,  #DE782D 5.61%, #FBAA19 65.09%);
    opacity:1;
}
 */
/* hover styel  */
div#page-container #top-menu li.contact_btn a:after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(90deg, #de782d 5.61%, #fbaa19 65.09%);
  content: "";
  border-radius: 61px;
  /* opacity: 0; */
  z-index: -1;
  transition: 0.3s ease-in;
  transform: scale(0);
}

div#page-container #top-menu li.contact_btn a:hover:after {
  transform: scale(1);
}

/* end hover style  */
/* end button */
#main-header {
  box-shadow: inherit;
}

/* button respsonvie left right spacign  */
#top-menu li {
  padding-right: 25px;
}

#top-menu li.centered-inline-logo-wrap {
  padding-right: 0;
}

/* #top-menu li:nth-child(3) {
	padding-right: 20px;
} */

#top-menu li.centered-inline-logo-wrap {
  margin-right: 22px !important;
}
/* 
ul#top-menu {
	transform: translateX(60px);
} */

/* end desktop  */
/* 981 to 1200  */
@media only screen and (min-width: 981px) and (max-width: 1200px) {
  #top-menu li {
    padding-right: 11px;
  }

  #top-menu li.centered-inline-logo-wrap {
    padding-right: 0;
  }

  /* 	#top-menu li:nth-child(3) {
		padding-right: 10px;
	} */

  #top-menu li.centered-inline-logo-wrap {
    margin-right: 12px !important;
  }

  /* 	ul#top-menu {
		transform: translateX(23px);
	} */

  div#page-container #top-menu li a {
    font-size: 14px;
  }

  div#page-container #top-menu li.contact_btn a {
    padding: 10px 20px;
  }

  #top-menu li.centered-inline-logo-wrap {
    max-width: 110px;
    height: auto !important;
  }

  ul#top-menu {
    margin-top: 0;
  }

  li.centered-inline-logo-wrap {
    transform: translateY(-0px);
  }

  #et-top-navigation {
    padding-top: 40px !important;
    padding-bottom: 35px !important;
    padding-left: 0px !important;
  }
  header .container,
  #main-footer .container {
    width: 98% !important;
  }
}

/* end 981px to 1200  */
/* 1201 to 1650  */
@media only screen and (min-width: 1201px) and (max-width: 1740px) {
  #top-menu li {
    padding-right: 20px;
  }

  #top-menu li.centered-inline-logo-wrap {
    padding-right: 0;
  }

  /* 	#top-menu li:nth-child(3) {
		padding-right: 20px;
	} */

  #top-menu li.centered-inline-logo-wrap {
    margin-right: 22px !important;
  }

  /* 	ul#top-menu {
		transform: translateX(15px);
	} */

  div#page-container #top-menu li a {
    font-size: 16px;
  }

  #top-menu li.centered-inline-logo-wrap {
    max-width: 170px;
    height: auto !important;
  }

  ul#top-menu {
    margin-top: 0;
  }

  li.centered-inline-logo-wrap {
    transform: translateY(-0px);
  }

  #et-top-navigation {
    padding-top: 50px !important;
    padding-bottom: 35px !important;
  }

  div#page-container #top-menu li.contact_btn a {
    padding: 10px 35px;
  }
  div#page-container #top-menu li a {
    font-size: 15px;
  }
  #top-menu li {
    padding-right: 15px !important;
  }
  header .container,
  #main-footer .container {
    width: 95% !important;
  }
}

@media only screen and (min-width: 1277px) and (max-width: 1740px) {
  div#page-container #top-menu li a {
    font-size: 15px;
  }
  #top-menu li {
    padding-right: 25px;
  }
  div#page-container #top-menu li.contact_btn a {
    padding: 13px 40px;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1740px) {
  /* 	ul#top-menu {
		transform: translateX(70px);
	} */
}

/* end 1201 to 1650  */
/* end button resposnive  */

/* mobile menu  */
/* mobile menu  */
/* header responsive  */
/* 
@media all and (max-width:980px) {
	span.mobile_menu_bar.mobile_menu_bar_toggle {
		opacity: 1;
	}

	.mobile_nav.closed {
		background: transparent !important;
	}

	span.select_page {
		display: none !important;
	}

	.et_header_style_split #main-header .mobile_nav {
		background: transparent !important;
	}

	.logo_container {
		margin-left: 0 !important;
	}

	div#et-top-navigation {
		display: inline-block !important;
	}

	header .container {
		display: flex !important;
		flex-wrap: wrap;
	}

	div#et-top-navigation {
		position: absolute !important;
		top: 0 !important;
	}

	
	img#logo {
		max-width: 118px !important;
	}

	.et_header_style_split #logo {
		max-height: inherit;
		
	}

	span.mobile_menu_bar.mobile_menu_bar_toggle {
		margin-top: 30px;
	}

	.et_header_style_split .et_mobile_menu {
		top: 104px;
	}

	
	body.divibar-active #page-container {
		padding-top: 140px !important;
	}
}

@media (max-width:767px) {

	.et_header_style_split #logo {
		margin-top: 0;
	}

	.et_header_style_split #main-header {
		padding: 8px 0;
	}

	body.divibar-active #page-container {
		padding-top: 101px !important;
	}

	.et_header_style_split .et_mobile_menu {
		top: 88px;
	}
}
 */

/* end header responsive  */

@media all and (max-width: 980px) {
  .mobile_menu_bar:before {
    color: #fbaa19 !important;
    font-size: 45px;
  }

  .et_header_style_split #main-header .mobile_nav {
    margin-top: -25px;
  }

  .et_mobile_menu {
    background-color: #fff !important;
  }

  .et_mobile_menu li a {
    color: #1c3d6e !important;
    font-size: 17px;
    opacity: 1;
  }

  /* 	mobile menu button */
  #main-header #mobile_menu.et_mobile_menu li a:hover {
    opacity: 0.99;
  }

  div#page-container header li.contact_btn a {
    color: #fff !important;
    text-align: center;
    background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
    padding: 15px 20px !important;
    position: relative;
    border-radius: 25px;
  }

  /* 
	div#page-container header li.contact_btn  a:hover {
		background: #000 !important;
	}
	 */
  /* hover styel  */
  /* 	div#page-container header li.contact_btn a:after {
		position: absolute;
		top: 0;
		width: 100%;
		height: 100%;
		left: 0;
		background: linear-gradient(90deg, #DE782D 5.61%, #FBAA19 65.09%);
		content: "";
		border-radius: 0px;
		z-index: -1;
		transition: 0.3s ease-in;
		transform: scale(0)
	} */

  div#page-container #top-menu li.contact_btn a:hover {
    background-position: 100% 0 !important;
  }

  div#page-container #top-menu li a:hover {
    /* 	color: #FBAA19 !important; */
    opacity: 1 !important;
  }

  div#page-container header li.contact_btn a:hover:after {
    transform: scale(1);
  }

  /* end mobile menu button  */

  .et_mobile_menu li a:hover {
    background-color: transparent;
  }
}

/* end mobile menu  */
/* mobile  */
@media all and (max-width: 980px) {
  header#main-header {
    background-color: #fff;
  }
}

@media all and (max-width: 767px) {
  .et_mobile_menu li a {
    font-size: 15px;
  }

  img#logo {
    max-width: 100px !important;
  }
}

/* end mobile  */
/* mobile button style  */
/* end mobile button style  */
/* end mobile menu  */
/********************************************************* End Header area   ***************************************/
/********************************************************* Footer area  ***************************************/
div#page-container .footer_menu ul {
  margin: 0;
}

div#page-container .footer_menu ul li {
  padding: 0;
  margin-top: 0;
  padding-right: 30px;
}

div#page-container .footer_menu ul li a {
  padding: 0px;
  padding-bottom: 2px;
}

div#page-container .footer_menu ul li:last-child {
  padding-right: 0;
}

.footer_btm_text span {
  display: inline-block;
  margin: 0 14px;
}

/* up  */
/* uner line  */
div#page-container .footer_menu ul li a::after {
  content: "";
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
  width: 00%;
  height: 1.5px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  transition: 0.3s ease-in;
}

div#page-container .footer_menu ul li:hover a::after {
  width: 100%;
}

div#page-container .footer_menu ul li:hover a {
  opacity: 1;
}

/* up  */
/* mobile menu  */
@media all and (max-width: 980px) {
  .footer_menu .et_pb_menu__menu {
    display: block;
  }

  .footer_menu .et_mobile_nav_menu {
    display: none;
  }

  .footer_row .et_pb_column:nth-child(1) {
    margin-bottom: 25px;
  }
}

@media all and (max-width: 599px) {
  div#page-container .footer_menu ul li {
    width: 100%;
    margin-bottom: 7px;
    padding-right: 0;
  }

  div#page-container .footer_menu ul li:last-child {
    margin-bottom: 0;
  }

  .footer_btm_text span {
    font-size: 0;
    position: relative;
    display: block;
    width: 70px;
    border-bottom: 1px solid #000;
    margin: 0 auto;
    margin-bottom: 10px;
    line-height: 0;
    margin-top: 10px;
  }
}

/* end mobile  */
@media all and (max-width: 599px) {
  .footer_menu .et_pb_menu__wrap {
    justify-content: flex-start !important;
  }

  .footer_menu {
    border-bottom: 1px solid #000;
    padding-bottom: 25px;
  }
}

@media all and (min-width: 600px) and (max-width: 980px) {
  div#page-container .footer_menu ul li {
    width: auto;
    padding-right: 10px;
    margin-bottom: 0;
  }
  .footer_row {
    width: 95% !important;
  }
}

@media only screen and (min-width: 600px) and (max-width: 1200px) {
  .footer_btm_text span {
    margin: 0 8px;
  }
}

/* footer responsive  */
@media only screen and (min-width: 981px) and (max-width: 1320px) {
  div#page-container .footer_menu ul li {
    padding-right: 8px;
  }
  .footer_row {
    width: 98% !important;
  }

  div#page-container .footer_menu ul li a {
    font-size: 15px !important;
  }

  div#page-container .footer_btm_text {
    font-size: 15px;
  }

  .footer_btm_text span {
    margin: 0 0px;
  }

  .footer_row .et_pb_column:nth-child(1) {
    width: calc(58.8% - 1%);
    margin-right: 1%;
  }

  .footer_row .et_pb_column:nth-child(2) {
    width: calc(38.2% + 3%);
  }
}

@media only screen and (min-width: 1000px) and (max-width: 1100px) {
  .footer_btm_text span {
    margin: 0 5px;
  }
}

@media only screen and (min-width: 1101px) and (max-width: 1200px) {
  div#page-container .footer_menu ul li a {
    font-size: 17px !important;
  }

  .footer_btm_text {
    font-size: 17px;
  }
}

@media only screen and (min-width: 1201px) and (max-width: 1800px) {
  div#page-container .footer_menu ul li a {
    font-size: 17px !important;
  }

  div#page-container .footer_btm_text {
    font-size: 17px;
  }

  div#page-container .footer_menu ul li {
    padding-right: 12px;
  }

  .footer_btm_text span {
    margin: 0 5px;
  }
}

@media only screen and (min-width: 1278px) and (max-width: 1800px) {
  .footer_btm_text span {
    margin: 0 15px;
  }
}

/* end footer responsive  */
/********************************************************* End footer area   ***************************************/
/********************************************************* Home page area  ***************************************/
/* banner area  */
/* cotntent  */
.home_banner_style ul {
  list-style: none;
  padding: 0;
}

.home_banner_style ul li {
  line-height: 1.36em;
  position: relative;
  margin-bottom: 30px;
}

.home_banner_style ul li:after {
  content: "";
  position: absolute;
  right: 0;
  top: -7px;
  width: 35px;
  height: 35px;
  background-image: url(/wp-content/uploads/banner-icon.png);
  background-repeat: no-repeat;
  background-size: contain;
}

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

.home_banner_style .et_pb_slide_title span {
  color: #fbaa19;
}

.home_banner_style .et_pb_slide_description {
  text-shadow: inherit;
  background-color: rgb(28 61 110 / 90%);
  padding: 45px 62px 90px 45px;
}

/* up  */
.home_banner_style h2 {
  line-height: 1.36em;
}

.home_banner_style ul {
  max-width: 485px;
}

.home_banner_style .et_pb_container {
  margin-right: 0 !important;
}

/* up  */
.home_banner_style .et_pb_button_wrapper {
  position: absolute;
  bottom: -32px;
}

.home_banner_style .et_pb_slides .et_pb_slider_container_inner {
  transform: translateY(-30px);
}

/* up  */

/* end content  */
/* banner responisve laptop  */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .home_banner_style h2 {
    padding-bottom: 30px;
  }

  div#page-container .home_banner_style .et_pb_slide_content {
    font-size: 20px !important;
  }

  .home_banner_style ul li:after {
    width: 35px;
    height: 35px;
    top: -4px;
  }

  .home_banner_style ul li {
    margin-bottom: 30px;
  }

  body div#page-container .et_pb_button {
    font-size: 18px !important;
    padding: 20px 40px !important;
  }
}

/* end banner responsive laptop  */
/* mobile responsive  */
@media all and (max-width: 767px) {
  .home_banner_style h2 {
    padding-bottom: 20px;
  }

  .home_banner_style ul li:after {
    width: 25px;
    height: 25px;
    top: 0px;
    right: -21px;
  }

  .home_banner_style ul li {
    margin-bottom: 15px;
  }

  .home_banner_style .et_pb_slide_description {
    padding: 26px 25px 60px 20px;
  }

  div#page-container .home_banner_style .et_pb_container {
    width: 100%;
  }

  .home_banner_style .et_pb_button_wrapper {
    bottom: -20px;
  }

  .home_banner_style ul {
    max-width: 340px;
  }
}

@media only screen and (min-width: 400px) and (max-width: 767px) {
  .home_banner_style ul li:after {
    right: -10px;
  }
}

/* end mobile responsive  */
/* tab  */
@media only screen and (min-width: 768px) and (max-width: 980px) {
  .home_banner_style h2 {
    padding-bottom: 30px;
  }

  .home_banner_style ul li:after {
    width: 25px;
    height: 25px;
    top: -4px;
  }

  .home_banner_style ul li {
    margin-bottom: 20px;
  }

  .home_banner_style .et_pb_slide_description {
    padding: 30px 30px 60px 30px;
  }

  .home_banner_style ul {
    max-width: 390px;
  }

  .home_banner_style .et_pb_button_wrapper {
    bottom: -22px;
  }
}

/* end tab  */
/* end banner area stayle  */
/* 2nd section  */
.custom_h_for_all h2 span,
.custom_h_for_all h1 span {
  color: #fbaa19;
}

/* end 2nd section */
/* common button  */
body #page-container .et_pb_section .et_pb_button {
  position: relative;
  z-index: 3;
}

body #page-container .et_pb_section .et_pb_button:after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(90deg, #de782d 5.61%, #fbaa19 65.09%);
  content: "";
  border-radius: 61px;
  /* opacity: 0; */
  z-index: -1;
  transition: 0.3s ease-in;
  transform: scale(0);
}

body #page-container div#et-boc .et_pb_section .et_pb_button:after {
  display: inline-block !important;
}

body #page-container div#et-boc .et_pb_section .et_pb_button:hover:after {
  transform: scale(1);
  opacity: 1 !important;
}

/* end cummon button  */

/* speaker section  */
@media all and (min-width: 981px) {
  .speaker_section {
    position: relative;
    overflow: hidden;
  }

  .speaker_section:after {
    content: "";
    position: absolute;
    right: -162px;
    top: 0;
    /* width: 1618px; */
    height: 100%;
    background-image: url(/wp-content/uploads/Phil-Speaking-background-image.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 85%;
  }
}

@media only screen and (min-width: 981px) and (max-width: 1270px) {
  .speaker_section:after {
    right: -40px;
  }
}

@media only screen and (min-width: 1271px) and (max-width: 1650px) {
  .speaker_section:after {
    right: -110px;
  }
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  body,
  .cmn_font_laptop {
    font-size: 18px !important;
    line-height: 1.6em !important;
  }

  #page-container .partner_content {
    max-width: 460px;
  }

  #page-container .spaeaker_content {
    max-width: 550px;
  }
}

/* end speaker section */

/* caring coach section area  */
.cmn_form_style .gform_heading {
  display: none;
}

/* subscrive form  */

/* contact common  */
.cmn_form_style .gfield input,
.cmn_form_style .gfield textarea {
  border-radius: 61px;
  background-color: #fff !important;
  box-shadow: 0px 4px 85px rgba(0, 0, 0, 0.15);
  padding: 14px 0px 14px 25px !important;
  font-size: 20px !important;
  font-weight: 400;
  color: #000 !important;
}
.subscrive_form_style .gfield input {
  padding: 19px 0px 19px 25px !important;
}

div#page-container .cmn_form_style .gfield textarea {
  margin-top: 0 !important;
  border-radius: 25px;
  resize: none;
}

div#page-container .contact_style .gfield input {
  border-radius: 25px;
}

/* responsive  */
@media all and (max-width: 767px) {
  .cmn_form_style .gfield input,
  .cmn_form_style .gfield textarea {
    padding: 14.75px 0px 14.75px 25px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 980px) {
  .cmn_form_style .gfield input,
  .cmn_form_style .gfield textarea {
    padding: 15.09px 0px 15.09px 25px !important;
  }
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .cmn_form_style .gfield input,
  .cmn_form_style .gfield textarea {
    padding: 17.29px 0px 17.29px 25px !important;
  }
}

/* end respsnive  */
/* up  */
/* placeholder style  */
.cmn_form_style input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000000;
  opacity: 1;
}

.cmn_form_style input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000;
  opacity: 1;
}

.cmn_form_style input:-ms-input-placeholder {
  /* IE 10+ */
  color: #000000;
  opacity: 1;
}

.cmn_form_style input:-moz-placeholder {
  /* Firefox 18- */
  color: #000000;
  opacity: 1;
}

/* text area  */
.cmn_form_style textarea::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000000;
  opacity: 1;
}

.cmn_form_style textarea::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000;
  opacity: 1;
}

.cmn_form_style textarea:-ms-input-placeholder {
  /* IE 10+ */
  color: #000000;
  opacity: 1;
}

.cmn_form_style textarea:-moz-placeholder {
  /* Firefox 18- */
  color: #000000;
  opacity: 1;
}

/* end text area  */
/* end placeholde style  */

/* end cotanact common  */
/* subscrive style  */
.subscrive_form_style .gform_wrapper .gform_fields {
  grid-template-columns: inherit;
}

.subscrive_form_style .gfield--type-submit {
  position: absolute;
  right: 0;
}

/* button style  */
.cmn_form_style .gfield--type-submit input,
.cmn_form_style .gform_footer input {
  font-size: 20px !important;
  background: transparent !important;
  padding: 21.32px 58px !important;
  /*     background: linear-gradient(90deg, #FBAA19 5.61%, #DE782D 65.09%) !important; */
  border-radius: 61px !important;
  border: 0px !important;
  box-shadow: inherit !important;
  color: #fff !important;
}
body .gform_wrapper #field_submit input {
  color: #fbaa19;
}
/* button style  */
/* end subscrive style  */
div#page-container .cmn_form_style .gfield input {
  margin-top: 0 !important;
}

div#page-container .subscrive_form_style .gform_footer.top_label {
  margin: 0px;
  padding: 0;
}

/* end subscirve form  */
/* end caring coach  section area  */
/* slider section  */
.slider_style .et_pb_slide_title {
  margin-bottom: 20px;
}

/* button  */
.slider_style .et_pb_slide_content span.first_btn a {
  margin-bottom: 20px;
}

.slider_style .et_pb_slide_content a {
  /*     margin-bottom: 20px !important; */
  display: inline-block;
}

.slider_style .et_pb_slide_content a {
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
  padding: 22.5px 55px;
  border-radius: 61px;
  color: #fff !important;
  position: relative;
  z-index: 3;
  font-size: 20px;
  line-height: 1;
}

/* hover styel  */

.slider_style .et_pb_slide_content a:after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(90deg, #de782d 5.61%, #fbaa19 65.09%);
  content: "";
  border-radius: 61px;
  /* opacity: 0; */
  z-index: -1;
  transition: 0.3s ease-in;
  transform: scale(0);
}

.slider_style .et_pb_slide_content a:hover:after {
  transform: scale(1);
}

/* end hover style  */
/* slider responsive  */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .slider_style .et_pb_slide_content a {
    font-size: 18px;
    padding: 20px 40px !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 980px) {
  .slider_style .et_pb_slide_content a {
    font-size: 16px;
  }
}

@media all and (max-width: 767px) {
  .slider_style .et_pb_slide_content a {
    font-size: 15px;
  }
}

/* end slider respoonsive  */
/* end button */
.slider_style .et_pb_slide_content br {
  display: none;
}

.slider_style .et_pb_slide_content span {
  display: block;
}

.slider_style span.content_slider {
  margin-bottom: 25px;
}

/* border button  */
.slider_style .et_pb_slide_content span.secnd_butn a {
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #fbaa19, #de772d) border-box;
  color: #043361 !important;
  border: 2px solid transparent;
  padding: 20.5px 55px;
  transition: 0.3s ease-in;
}

.slider_style .et_pb_slide_content span.secnd_butn a:hover {
  background: linear-gradient(#fff, #fff) padding-box,
    linear-gradient(90deg, #de772d, #fbaa19) border-box;
  color: #fff !important;
}

/* end border button  */
/* spacing  */
@media only screen and (min-width: 981px) {
  .slider_style .et_pb_slide {
    padding-left: 0;
    padding-right: 0;
  }

  .slider_style .et_pb_slide_image {
    margin-right: 4.5%;
    width: calc(47.25% + 0% + 4.5%);
    /* margin-left: -5%; */
  }

  .slider_style .et_pb_slide_description {
    width: calc(47.25% - 4.5%);
    /*     padding: 0; */
  }

  .slider_style .et_pb_slide_content {
    max-width: 618px;
  }

  .slider_style .et_pb_slide_description {
    transform: translateY(50px) !important;
  }
}

/* img  */
/* .slider_style .et_pb_slide_image img {
	max-height: unset !important;
} */

/* end img  */
/* end spacing  */
/* dot  */
div#page-container .slider_style .et-pb-controllers a {
  background-color: #b4b4b4;
  width: 16px;
  height: 16px;
  opacity: 1;
  margin-right: 7px;
}

div#page-container .slider_style .et-pb-controllers a.et-pb-active-control {
  background-color: #1c3d6e;
}

div#page-container .slider_style .et-pb-controllers {
  width: calc(47.25% - 4.5%);
  right: 0;
  bottom: 80px;
  margin-right: 0;
  left: inherit;
}

div#page-container .slider_style .et-pb-controllers a:last-child {
  margin-right: 0;
}

/* end dot  */
/* left right  */
/* end img area  */

.slider_style .et-pb-arrow-next {
  right: -70px !important;
  opacity: 1;
}

.slider_style .et-pb-arrow-prev {
  left: -70px !important;
  opacity: 1;
}

/* icon  */
.slider_style .et-pb-arrow-next,
.slider_style .et-pb-arrow-prev {
  width: 40px;
  height: 25px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  transition: 0.3s ease-in;
  background-image: url(/wp-content/uploads/Arrow-14.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.slider_style .et-pb-arrow-prev {
  background-image: url(/wp-content/uploads/Arrow-15.png);
}

.slider_style .et-pb-arrow-next:hover {
  background-image: url("/wp-content/uploads/Arrow-color-right.png");
}

.slider_style .et-pb-arrow-prev:hover {
  background-image: url("/wp-content/uploads/Arrow-color-left.png");
}

/* end icon  */

.slider_style .et-pb-arrow-next::before,
.slider_style .et-pb-arrow-prev::before {
  content: "";
}

.slider_style .et_pb_slides,
.slider_style {
  overflow-x: inherit !important;
  overflow-y: inherit !important;
}

/* left right responsive  */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
  div#page-container .slider_style .et_pb_slide_title {
    font-size: 35px !important;
    margin-bottom: 0;
  }

  div#page-container .slider_style .et_pb_slide_content {
    font-size: 18px !important;
  }

  .slider_style .et_pb_slide_image {
    margin-right: 4.5%;
    width: calc(47.25% + 1%);
  }

  .slider_style .et_pb_slide_description {
    width: calc(47.25%);
    padding-right: 20px;
  }

  .slider_style .et-pb-arrow-prev {
    left: -40px !important;
  }

  .slider_style .et-pb-arrow-next {
    right: -40px !important;
  }

  div#page-container .slider_style .et-pb-controllers {
    width: 47.25%;
    bottom: 60px;
  }

  .slider_style .et_pb_slide_description {
    transform: translateY(00px) !important;
  }
}

/* end left right resposnive  */
/* end left right  */
/* tab resposnive  */
@media only screen and (max-width: 980px) {
  div#page-container .slider_style .et_pb_slide_title {
    margin-bottom: 0;
  }

  .slider_style .et_pb_slide_image {
    margin-right: 3%;
    width: calc(47.25% + 2.5%);
  }

  .slider_style .et_pb_slide_description {
    width: calc(47.25%);
    padding-right: 20px;
  }

  .slider_style .et-pb-arrow-prev {
    left: -25px !important;
  }

  .slider_style .et-pb-arrow-next {
    right: -25px !important;
  }

  div#page-container .slider_style .et-pb-controllers {
    width: 47.25%;
    bottom: 60px;
  }

  .slider_style .et_pb_slide_description {
    transform: translateY(00px) !important;
  }

  .slider_style .et_pb_slide {
    padding: 0;
  }

  .slider_style span.content_slider {
    margin-bottom: 20px;
  }

  .slider_style .et_pb_slide_content a,
  .slider_style .et_pb_slide_content span.secnd_butn a {
    padding: 18px 35px;
  }

  .slider_style .et_pb_slide_content span.secnd_butn a {
    padding: 18;
  }

  .slider_style .et-pb-arrow-next,
  .slider_style .et-pb-arrow-prev {
    width: 30px;
    height: 20px;
  }

  div#page-container .slider_style .et-pb-controllers a {
    width: 12px;
    height: 12px;
  }
}

/* end tab responsive  */
/* mobile  */
@media all and (max-width: 767px) {
  .slider_style .et_pb_slide_image {
    display: block !important;
    margin: 0 !important;
  }

  div#page-container .slider_style .et_pb_slide_description {
    padding-top: 20px !important;
    padding-bottom: 50px !important;
  }

  .slider_style .et_pb_slide_image {
    width: 100%;
    margin-right: 0;
  }

  .slider_style .et_pb_slide_description {
    width: 100%;
    padding-right: 0;
  }

  .slider_style .et_pb_slide_content a,
  .slider_style .et_pb_slide_content span.secnd_butn a {
    padding: 15px 30px;
  }

  /* 	up  */

  .slider_style .et-pb-arrow-prev {
    left: -10px !important;
    /*     transform: translateY(95px); */
  }

  .slider_style .et-pb-arrow-next {
    right: -10px !important;
    /*     transform: translateY(95px); */
  }

  /* 	en up  */
  div#page-container .slider_style .et-pb-controllers {
    bottom: 00px;
    width: 100%;
  }

  div#page-container .slider_style .et-pb-controllers a {
    width: 12px;
    height: 12px;
  }

  /* 	up  */
  .slider_style .et_pb_slide {
    padding-left: 20px;
    padding-right: 20px;
  }

  /* 	end up  */
}

/* up  */

/* end mobile  */
/* end slider  */

/* colaborate section  */
.icon_cmn_for_partner {
  display: inline-block;
}

div#page-container .icon_cmn_for_partner {
  margin-bottom: 0;
}

.customer_icon .et_pb_module_header {
  max-width: 90px;
  margin: 0 auto;
}

.icon_cmn_for_partner .et_pb_module_header {
  padding-bottom: 0;
}

@media all and (min-width: 981px) {
  .row_for_icons .et_pb_column {
    display: flex;
    flex-wrap: wrap;
  }

  .row_for_icons .et_pb_column:nth-child(1) {
    width: 580px;
    margin-right: 60px;
  }

  .row_for_icons .et_pb_column:nth-child(2) {
    max-width: 420px;
  }
}

.title_for_icon_box {
  width: 100%;
}

/* up  */
/* responisve icon  */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .icon_cmn_for_partner .et_pb_main_blurb_image {
    /* max-width: 100px; */
  }

  .row_for_icons .et_pb_column:nth-child(1) {
    max-width: 470px;
    margin-right: 35px;
  }

  .row_for_icons .et_pb_column:nth-child(2) {
    /*     width: calc(47% - 35px ); */
    width: calc(100% - 35px - 470px);
    max-width: 350px;
  }

  .icon_cmn_for_partner .et_pb_module_header {
    font-size: 16px !important;
  }

  .sales_icon .et_pb_main_blurb_image {
    max-width: 100px;
  }

  .safety_icon .et_pb_main_blurb_image {
    max-width: 123.82px;
  }

  .customer_icon .et_pb_main_blurb_image {
    max-width: 121.43px;
  }

  .empower_icon .et_pb_main_blurb_image {
    max-width: 105.548px;
  }

  .senior_icon .et_pb_main_blurb_image {
    max-width: 100px;
  }

  .mid_level_icon .et_pb_main_blurb_image {
    max-width: 123.82px;
  }

  .emerging_icon .et_pb_main_blurb_image {
    max-width: 105.55px;
  }

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

/* end resposnive icon  */

/* resposnive phone and tab  */
@media only screen and (max-width: 980px) {
  .row_for_icons .et_pb_column:nth-child(1) {
    max-width: 470px;
    margin-right: 0px;
  }

  .row_for_icons .et_pb_column:nth-child(2) {
    max-width: 350px;
  }

  .icon_cmn_for_partner .et_pb_module_header {
    font-size: 16px !important;
  }

  .sales_icon .et_pb_main_blurb_image {
    max-width: 100px;
  }

  .safety_icon .et_pb_main_blurb_image {
    max-width: 120px;
  }

  .customer_icon .et_pb_main_blurb_image {
    max-width: 120px;
  }

  .empower_icon .et_pb_main_blurb_image {
    max-width: 110px;
  }

  .senior_icon .et_pb_main_blurb_image {
    max-width: 100px;
  }

  .mid_level_icon .et_pb_main_blurb_image {
    max-width: 125px;
  }

  .emerging_icon .et_pb_main_blurb_image {
    max-width: 110px;
  }

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

  .row_for_icons .et_pb_column {
    display: flex;
    flex-wrap: wrap;
  }
}

/* end resposnive phone and tab icon  */
/* responsive for only phone  */
@media all and (max-width: 767px) {
  div#page-container .icon_cmn_for_partner {
    width: 50%;
    margin-bottom: 30px;
  }

  .row_for_icons .et_pb_column:nth-child(1) {
    margin-bottom: 0;
  }

  div#page-container .emerging_icon {
    width: 100%;
    margin-bottom: 0;
  }

  .row_for_icons .et_pb_column {
    max-width: inherit !important;
  }
}

/* end responsive for phone  */
/* end colaborate partner section  */
/* creative desiner section  */
.creative_design_bold_content h2 span {
  display: block;
}

/* logo slider section  */
.logo_slider_s {
  margin-bottom: 30px !important;
}

/* end logo slider section  */

@media only screen and (min-width: 981px) {
  .row_for_creative_design .et_pb_column:nth-child(1) {
    width: calc(50% - 3% + 4px);
  }

  .row_for_creative_design .et_pb_column:nth-child(2) {
    width: calc(50% + 3% - 4px);
  }
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .row_for_creative_design .et_pb_column:nth-child(2) {
    padding-left: 4%;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  div#page-container .creative_design_bold_content {
    margin-bottom: 20px !important;
  }

  .row_for_creative_design .et_pb_button_module_wrapper {
    margin-bottom: 40px !important;
  }
}

@media only screen and (max-width: 980px) {
  div#page-container .creative_designer_section {
    padding-bottom: 50px !important;
  }
}

@media all and (max-width: 767px) {
  div#page-container .creative_designer_section {
    padding-bottom: 40px !important;
  }
}

/* end creative designer section  */

/* caring coach & mentor section */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .row_for_coach .et_pb_column:nth-child(2) {
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 3%;
    padding-right: 3%;
  }

  .row_for_coach .et_pb_column:nth-child(2) .et_pb_button_module_wrapper {
    margin-bottom: 30px !important;
  }
}

/* laptop and mobile  */
@media all and (max-width: 980px) {
  .row_for_coach .et_pb_column:nth-child(1) {
    padding-top: 40vh;
    padding-bottom: 40vh;
    background-position: center;
  }

  .row_for_coach .et_pb_column:nth-child(2) {
    padding-top: 30px;
  }
}

@media all and (max-width: 767px) {
  .row_for_coach .et_pb_column:nth-child(1) {
    padding-top: 25vh;
    padding-bottom: 25vh;
    background-position: center;
  }
}

/* end laptop and mobile  */
/* end caring coach & mentor section */
/********************************************************* End home page area ***************************************/

/********************************************************* sart contact page  area  ***************************************/
.title_inner_page h1 {
  padding-bottom: 0;
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .inner_banner_section {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }
}

.cmn_form_style .gform_footer input {
  margin-top: 0 !important;
}

.contact_style .gform_footer {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 16px !important;
  justify-content: center;
}

/*********************************************************  service  page  area  ***************************************/
.gallery_area .et_pb_gallery_image:hover {
  transform: scale(1.05);
}

.gallery_area .et_pb_gallery_image {
  transition: 0.35s ease-in-out;
}

.mfp-title {
  display: none !important;
  /* opacity: 0 !IMPORTANT; */
  /* visibility: hidden; */
}

/********************************************************* End service page  area  ***************************************/

/********************************************************* End book page  area  ***************************************/
.title_pre_order .small_title_t {
  font-size: 26px;
  display: block;
  text-transform: uppercase;
  line-height: 1.36em;
  color: #043361;
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .title_pre_order .small_title_t {
    font-size: 22px;
  }
}

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

/********************************************************* End book page  area  ***************************************/
/*********************************************************  press page  area  ***************************************/
@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .for_for_cmn_full_width_left_content .et_pb_column:nth-child(1) {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 5%;
    padding-right: 3%;
  }

  .for_for_cmn_full_width_right_content .et_pb_column:nth-child(2) {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 3%;
    padding-right: 5%;
  }
}

/* up  */
div#page-container .link_check_list a {
  position: relative;
  padding-bottom: 2px;
}

div#page-container .link_check_list a::after {
  content: "";
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
  width: 00%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  transition: 0.3s ease-in;
}

div#page-container .link_check_list a:hover::after {
  width: 100%;
}

/* end  */

/********************************************************* End press page  area  ***************************************/
/********************************************************* End contact page  area  ***************************************/
/* blog pge  */
.custom_grid_blog .dp-dfg-search {
  justify-content: flex-start !important;
}

div#page-container .custom_grid_blog .dp-dfg-search span.et-pb-icon {
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%) !important;
  color: #fff !important;
  left: 0;
  border-color: #fbaa19;
}

div#page-container .custom_grid_blog .dp-dfg-search span.et-pb-icon:hover {
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
  border-color: #fbaa19 !important;
}

div#page-container .custom_grid_blog input.dp-dfg-search-input {
  border: 1px solid #918e93;
  background: transparent;
  font-weight: 300;
}

div#page-container .custom_grid_blog input.dp-dfg-search-input::placeholder {
  color: #241f29;
}

/* filter grid section */
/* filter grid blog section  */
div#page-container div#et-boc .custom_grid_blog article a.et_pb_button {
  padding: 0 !important;
}

.custom_grid_blog article {
  padding: 0 !important;
}

.custom_grid_blog figure.dp-dfg-image {
  margin: 0;
}

.custom_grid_blog .dp-dfg-header {
  padding-top: 12px;
  padding-bottom: 16px;
}

.custom_grid_blog .read-more-wrapper {
  padding: 0 !important;
}

/* update hover  */
div#page-container div#et-boc .custom_grid_blog article a.et_pb_button:before {
  display: inline-block !important;
  position: relative;
}

div#page-container div#et-boc .custom_grid_blog article a.et_pb_button:after {
  display: none !important;
}

div#page-container div#et-boc .custom_grid_blog article a.et_pb_button::before {
  content: "";
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
  width: 00%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block !important;
  transition: 0.3s ease-in;
  right: 0;
  top: inherit;
  margin: 0 !important;
  padding: 0 !important;
}

div#page-container
  div#et-boc
  .custom_grid_blog
  article
  a.et_pb_button:hover::before {
  width: 100%;
  opacity: 1;
}

div#page-container div#et-boc .custom_grid_blog article a.et_pb_button {
  padding-bottom: 3px !important;
  position: relative;
}

/* end update hove r  */
div#page-container div#et-boc .custom_grid_blog .dp-dfg-load-more-button {
  padding-top: 22.5px !important;
  padding-right: 65.6px !important;
  padding-bottom: 22.5px !important;
  padding-left: 65.6px !important;
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
  border-radius: 61px;
}

@media all and (max-width: 980px) {
  div#page-container div#et-boc .custom_grid_blog .dp-dfg-load-more-button {
    padding-top: 18px !important;
    padding-right: 35px !important;
    padding-bottom: 18px !important;
    padding-left: 35px !important;
  }
}

@media all and (max-width: 767px) {
  div#page-container div#et-boc .custom_grid_blog .dp-dfg-load-more-button {
    padding-top: 15px !important;
    padding-right: 30px !important;
    padding-bottom: 15px !important;
    padding-left: 30px !important;
  }
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  div#page-container .custom_grid_blog .entry-title {
    font-size: 20px !important;
  }

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

/* up  */
body.et-db
  #page-container
  #et-boc
  .et-l
  .et_pb_section
  .et_pb_button_module_wrapper
  .et_pb_button.Common_button:after {
  display: inline-block !important;
}

/********************************************************* End contact page  area  ***************************************/

/********************************************************* sart finshing   area  ***************************************/

/* contact button update  */
.cmn_form_style .gform_footer {
  position: relative;
  max-width: 200px;
  margin: 0 auto !important;
  margin-top: 20px !important;
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%) !important;
  border-radius: 61px;
  z-index: 3;
}

/* hover styel  */
.cmn_form_style .gform_footer:after,
.subscrive_form_style .gfield--type-submit:after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(90deg, #de782d 5.61%, #fbaa19 65.09%);
  content: "";
  border-radius: 61px;
  /* opacity: 0; */
  z-index: -1;
  transition: 0.3s ease-in;
  transform: scale(0);
}

.cmn_form_style .gform_footer:hover:after,
.subscrive_form_style .gfield--type-submit:hover:after {
  transform: scale(1);
}

.cmn_form_style .gfield--type-submit input,
.cmn_form_style .gform_footer input {
  width: 100%;
}

.contact_style .gform_footer input {
  padding: 13.75px 55px !important;
}

.subscrive_form_style .gfield--type-submit {
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%) !important;
  z-index: 3;
  border-radius: 61px;
}

/* up  */
@media all and (max-width: 980px) {
  .row_for_box_bl .et_pb_column {
    max-width: 450px;
  }

  .row_for_box_bl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* end contact button update  */

@media all and (max-width: 980px) {
  .contact_style .gfield input {
    border-radius: 25px;
  }

  .contact_style .gfield input,
  .contact_style .gfield textarea {
    padding: 18.5px 0px 18.5px 20px !important;
    font-size: 16px !important;
  }
}

@media all and (max-width: 767px) {
  .contact_style .gfield input,
  .contact_style .gfield textarea {
    padding: 18.5px 0px 18.5px 20px !important;
    font-size: 15px !important;
  }

  .title_pre_order .small_title_t {
    font-size: 18px;
  }
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .contact_style .gfield input,
  .contact_style .gfield textarea {
    padding: 20.5px 0px 20.5px 25px !important;
    font-size: 18px !important;
  }

  .title_conteact_h2 h2 {
    font-size: 22px !important;
  }

  .title_inner_page {
    max-width: 1050px;
    margin: 0 auto;
  }

  .book_section_book_page,
  .book_slider_sectiion {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

/* up  */
@media all and (max-width: 370px) {
  body #page-container div#et-boc .et_pb_section .big_btn_cmn {
    font-size: 12px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media only screen and (min-width: 371px) and (max-width: 440px) {
  body #page-container div#et-boc .et_pb_section .big_btn_cmn {
    font-size: 14px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

/* up  */
@media only screen and (min-width: 981px) and (max-width: 1200px) {
  body #page-container div#et-boc .et_pb_section .big_btn_cmn {
    padding-left: 25px !important;
    padding-right: 25px !important;
    font-size: 16px !important;
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }
}

@media only screen and (min-width: 1201px) and (max-width: 1350px) {
  body #page-container div#et-boc .et_pb_section .big_btn_cmn {
    padding-left: 35px !important;
    padding-right: 35px !important;
    font-size: 18px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

/* end up  */
body.et_fixed_nav #main-header {
  box-shadow: inherit;
}

/* update last day  */
ul.et_pb_side_nav.et-visible {
  display: none !important;
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .cmn_form_style .gfield--type-submit input,
  .cmn_form_style .gform_footer input {
    font-size: 18px !important;
  }
}

@media all and (max-width: 980px) {
  .cmn_form_style .gfield--type-submit input,
  .cmn_form_style .gform_footer input {
    font-size: 16px !important;
  }
}

@media all and (max-width: 767px) {
  .cmn_form_style .gfield--type-submit input,
  .cmn_form_style .gform_footer input {
    font-size: 15px !important;
  }
}

/* up  */
div#n2-ss-2 .nextend-arrow img:hover {
  content: url(/wp-content/uploads/Arrow-color-left.png);
}

/* finishing with up  */
.cmn_form_style .gfield--type-submit input {
  padding: 15.5px 58px !important;
}

/* up  */

/* up  */
/* finsihg with subscrive  */
@media all and (min-width: 981px) {
  .fullpage-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* 	.banner_section {
		height: 84vh !important;
	}

	body.admin-bar .banner_section {
		height: calc(84vh - 32px) !important;
	} */
}

/* end update last day  */
.cky-btn-revisit-wrapper.cky-revisit-bottom-left {
  background: linear-gradient(90deg, #fbaa19 6%, #de782d 65%) !important;
  background-color: inherit !important;
}

.custom_map_style .imp-shape img {
  max-width: 25px;
  height: auto !important;
}

/* cooke  */

.cky-btn {
  border: 0px !important;
  color: #fff !important;
  background: linear-gradient(90deg, #fbaa19 6%, #de782d 65%) !important;
  opacity: 1 !important;
  position: relative;
  z-index: 3;
}

/* hover styel  */
.cky-btn:after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(90deg, #de782d 5.61%, #fbaa19 65.09%);
  content: "";
  border-radius: 0px;
  /* opacity: 0; */
  z-index: -1;
  transition: 0.3s ease-in;
  transform: scale(0);
}

.cky-btn:hover:after {
  transform: scale(1);
}

.cky-preference-content-wrapper .cky-show-desc-btn {
  color: #fbaa19 !important;
}

.cky-accordion-header .cky-always-active {
  color: #de782d;
}

#spot-875 img {
  max-width: 80% !important;
}

@media all and (max-width: 767px) {
  .custom_map_style .imp-shape img {
    max-width: 14px;
  }

  #spot-875 img {
    max-width: 60% !important;
  }
}

/* end cooke  */

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .row-for_banner .et_pb_column:nth-child(2) {
    width: calc(47.25% + 10%);
    padding: 50px 70px 50px 70px !important;
  }

  .row-for_banner .et_pb_column:nth-child(1) {
    width: calc(47.25% - 10%);
  }
}

/* update  */
@media only screen and (min-width: 981px) {
  .row_for_coach .et_pb_column:nth-child(2) {
    padding-top: 10vh;
  }
}

@media all and (max-width: 980px) {
  .row_for_coach .et_pb_column:nth-child(2) {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: 30px;
  }
}

/* end update  */

/* finishing last day  */

/* subscrive fiishing  */
@media only screen and (min-width: 768px) and (max-width: 980px) {
  div#page-container .subscrive_form_style .gfield input {
    font-size: 16px !important;
  }

  .subscrive_form_style .gfield--type-submit input {
    padding: 12.5px 50px !important;
  }
}

@media all and (max-width: 767px) {
  div#page-container .subscrive_form_style .gfield input {
    font-size: 15px !important;
  }

  .subscrive_form_style .gfield--type-submit input {
    padding: 12px 50px !important;
  }
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  div#page-container .subscrive_form_style .gfield input {
    font-size: 18px !important;
  }

  .subscrive_form_style .gfield--type-submit input {
    padding: 13.5px 50px !important;
  }
}

/* end f  */

/* for design section  */
@media all and (min-width: 1651px) {
  .sp_image_for_laptop {
    display: none;
  }

  .sp_image_for_desktop {
    margin-left: -80px !important;
  }
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .sp_image_for_desktop {
    display: none;
  }

  .row_solution_row .et_pb_column:nth-child(1) {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }


  .sp_image_for_laptop {
    max-width: 450px;
    margin: 0 auto !important;
  }
}

/* tab  */
@media only screen and (min-width: 981px) and (max-width: 1200px) {
  div#page-container .creative_section_sp {
    background-image: initial !important;
    height: inherit;
    max-height: inherit;
  }
  div#page-container .creative_section_sp {
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 27%,
        rgba(0, 0, 0, 0.5) 100%
      ),
      url(/wp-content/uploads/Phil-Creating-creative-designer-image.jpg) !important;
  }

  .row_solution_row .et_pb_column:nth-child(1) {
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 27%,
        rgba(0, 0, 0, 0.5) 100%
      ),
      url(/wp-content/uploads/Phil-Creating-creative-designer-image.jpg) !important;
    margin-right: 0;
  }

  .row_solution_row {
    width: 100% !important;
    max-width: 100% !important;
    height: 100vh;
  }

  .row_solution_row .et_pb_column:nth-child(1) {
    padding-left: 5%;
    padding-bottom: 50px;
    padding-right: 3%;
  }

  .row_solution_row .et_pb_column:nth-child(1),
  .row_solution_row .et_pb_column:nth-child(2) {
    width: 50%;
  }

  .row_solution_row .et_pb_column:nth-child(2) {
    padding-left: 3%;
    padding-right: 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* end tab  */
/* end design creative section up  */
@media only screen and (min-width: 981px) and (max-width: 1200px) {
  body div#page-container div#et-boc .big_btn_creative {
    padding-left: 34px !important;
    padding-right: 35px !important;
    font-size: 16px !important;
  }
}

/* end finishg  */

/* banner update  */

@media all and (max-width: 399px) {
  div#page-container .banner_section {
    padding-top: 350px !important;
    background-position: -350px center !important;
  }

  .home_banner_style ul li {
    margin-bottom: 15px;
    font-size: 14px;
  }

  .home_banner_style ul li:after {
    width: 20px;
    height: 20px;
    right: -10px;
  }
}

@media only screen and (min-width: 400px) and (max-width: 980px) {
  div#page-container .banner_section {
    padding-top: 350px !important;
    background-position: -350px center !important;
  }
}

@media all and (max-width: 980px) {
  .row-for_banner .et_pb_column:nth-child(2) {
    max-width: 550px;
  }
}

/* end banner update  */
/* finishing with ridoy  */
.row-for_banner .et_pb_button_module_wrapper {
  position: absolute;
  bottom: -30px;
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .row-for_banner .et_pb_button_module_wrapper {
    bottom: -27px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 980px) {
  .row-for_banner .et_pb_button_module_wrapper {
    bottom: -25px;
  }
}

@media all and (max-width: 767px) {
  .row-for_banner .et_pb_button_module_wrapper {
    bottom: -23px;
  }
}

@media all and (max-width: 980px) {
  .row-for_banner .et_pb_column:nth-child(2) {
    margin-bottom: 30px;
  }
}

@media all and (min-width: 981px) {
  .row-for_banner .et_pb_column:nth-child(2) {
    max-width: 660px;
  }
}

/* menu  */
@media all and (max-width: 980px) {
  #main-header #mobile_menu.et_mobile_menu li a {
    line-height: 1.2em;
    padding: 7px 0;
  }
}

/* logo  */
.inline-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

.inline-logo a {
  margin-right: 20px;
}

.slider_style .et_pb_slide_content .inline-logo a {
  background: inherit;
  padding: 0 !important;
  border-radius: inherit;
}

.slider_style .et_pb_slide_content .inline-logo a:after {
  display: none;
}

.slider_style .et_pb_slide_content p {
  padding-bottom: 0;
}

/* end logo  */
/* search  */
div#page-container .custom_grid_blog input.dp-dfg-search-input {
  border-radius: 5px 0px 0px 5px;
}

div#page-container .custom_grid_blog .dp-dfg-search span.et-pb-icon {
  border-radius: 0px 5px 5px 0;
}

/* up  */
/* placeholder style  */
div#page-container
  .custom_grid_blog
  input.dp-dfg-search-input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #000000;
  opacity: 1;
}

div#page-container
  .custom_grid_blog
  input.dp-dfg-search-input::-moz-placeholder {
  /* Firefox 19+ */
  color: #000000;
  opacity: 1;
}

div#page-container
  .custom_grid_blog
  input.dp-dfg-search-input:-ms-input-placeholder {
  /* IE 10+ */
  color: #000000;
  opacity: 1;
}

div#page-container
  .custom_grid_blog
  input.dp-dfg-search-input:-moz-placeholder {
  /* Firefox 18- */
  color: #000000;
  opacity: 1;
}

div#page-container .custom_grid_blog input.dp-dfg-search-input {
  font-weight: 400;
}

/* end search  */

/* subscrive error  */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .row_for_coach .et_pb_column:nth-child(2) {
    padding-top: 4vh;
  }
}

/* end subscrive error  */
/* 100vh  */
@media only screen and (min-width: 981px) and (min-height: 750px) {
  body.admin-bar .fullpage-section {
    height: calc(100vh - 70vh -32px);
  }

  .vh_100_cmn_up {
    height: calc(100vh - 70vh);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .sp_404_banner {
    height: calc(100vh - 284px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* end 100vh  */
/* resposnvie menu  */
@media all and (max-width: 980px) {
  .et_header_style_split #main-header {
    padding: 10px 0;
  }

  img#logo {
    max-width: 120px !important;
    max-height: 90%;
  }

  /* 	span.mobile_menu_bar.mobile_menu_bar_toggle {
		margin-top: 15px;
	} */
}

/* end responsive  */
@media all and (max-width: 980px) {
  div#page-container .row_for_btm .et_pb_column:nth-child(1) {
    margin-bottom: 30px !important;
  }
}

/* res  */
@media all and (max-width: 400px) {
  .subscrive_form_style .gfield--type-submit input {
    padding: 12px 30px !important;
  }
}

@media only screen and (min-width: 981px) and (max-width: 1150px) {
  .row_for_box_bl_sp {
    max-width: 600px !important;
  }
}

/* 494  */
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .sp_404_banner {
    height: calc(100vh - 230px);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/* end 4040  */
@media only screen and (min-width: 768px) and (max-width: 980px) {
  .cmn_img_size_in_tab span.et_pb_image_wrap {
    max-width: 500px;
    margin: 0 auto;
  }

  .cmn_img_size_in_tab {
    text-align: center;
  }
}

/* end finshing with ridoy  */
/* updae with usepestal  */
@media all and (max-width: 980px) {
  div#page-container .coach_section_c {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
}

.book_form .gform_footer {
  margin-left: 0 !important;
}

.img_update span.et_pb_image_wrap {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
}

@media all and (max-width: 980px) {
  .row_for_box_service .et_pb_column {
    max-width: 450px;
  }

  .row_for_box_service {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* end update with usepastal  */

/* about page css  */
.about_title span.small_title_t {
  color: #fff;
}
/* end about page css  */
/* css for speaking page  */
.cmn_for_speaker_content_box h3 span {
  color: #fbaa19;
}
/* end speaking page  */
/* Book page update  */
.book_form .gform_confirmation_message a {
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
  padding: 22.5px 55px;
  border-radius: 61px;
  color: #fff !important;
  position: relative;
  z-index: 3;
  font-size: 20px;
  line-height: 1;
  margin-top: 00px;
  display: inline-block;
}

.book_form .gform_confirmation_message a:after {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(90deg, #de782d 5.61%, #fbaa19 65.09%);
  content: "";
  border-radius: 61px;
  /* opacity: 0; */
  z-index: -1;
  transition: 0.3s ease-in;
  transform: scale(0);
}

.book_form .gform_confirmation_message a:hover:after {
  transform: scale(1);
}

.book_form .gform_confirmation_message {
  background: rgb(0 0 0 / 45%);
  font-size: 20px;
}

@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .book_form .gform_confirmation_message a {
    font-size: 18px;
    padding: 20px 40px !important;
  }
  .book_form .gform_confirmation_message {
    font-size: 18px;
  }
}
@media all and (max-width: 980px) {
  .book_form .gform_confirmation_message a {
    font-size: 16px;
    padding: 18px 35px;
  }
  .book_form .gform_confirmation_message {
    font-size: 15px;
  }
}
@media all and (max-width: 767px) {
  .book_form .gform_confirmation_message a {
    font-size: 15px;
    padding: 15px 30px;
  }
  .book_form .gform_confirmation_message {
    font-size: 15px;
  }
}

/* end book page udpate  */
/* home button update  */
@media all and (max-width: 399px) {
  body #page-container div#et-boc .et_pb_section .banner_btn {
    font-size: 12px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }

  .row-for_banner .et_pb_column:nth-child(2) {
    padding-left: 10px;
  }

  .row-for_banner .et_pb_button_module_wrapper {
    bottom: -20px;
  }

  body #page-container div#et-boc .et_pb_section .speaker_btn {
    font-size: 14px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

@media only screen and (min-width: 371px) and (max-width: 449px) {
  body #page-container div#et-boc .et_pb_section .banner_btn {
    font-size: 13px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}
/* end home button update  */

/* vide box  */
@media all and (max-width: 980px) {
  .row_for_box_program .et_pb_column {
    max-width: 500px;
  }

  .row_for_box_program {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* end box video  */
/********************************************************* End finshing area  ***************************************/
/************************************************* Rev 1 - philgeldart.com *************************************/
/* button update  */
div#page-container #top-menu li.contact_btn a:after {
  display: none;
}

div#page-container #top-menu li.contact_btn a {
  background-image: linear-gradient(
    to right,
    #fbaa19,
    #de782d,
    #de782d,
    #fbaa19
  );
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
}
div#page-container #top-menu li.contact_btn a:hover {
  background-position: 100% 0;
}
/* end button update  */
/* cmn button  */
body.et-db
  #page-container
  #et-boc
  .et-l
  .et_pb_section
  .et_pb_button_module_wrapper
  .et_pb_button.Common_button:after,
.slider_style .et_pb_slide_content a:after {
  display: none !important;
}

body.et-db
  #page-container
  #et-boc
  .et-l
  .et_pb_section
  .et_pb_button_module_wrapper
  .et_pb_button.Common_button {
  background-color: transparent;
  background: transparent;
  background-image: inherit !important;
  background-image: linear-gradient(
    to right,
    #fbaa19,
    #de782d,
    #de782d,
    #fbaa19
  ) !important;
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
}
.slider_style .et_pb_slide_content a {
  background-color: transparent;
  background: transparent;
  background-image: inherit;
  background-image: linear-gradient(
    to right,
    #fbaa19,
    #de782d,
    #de782d,
    #fbaa19
  );
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
}
body.et-db
  #page-container
  #et-boc
  .et-l
  .et_pb_section
  .et_pb_button_module_wrapper
  .et_pb_button.Common_button:hover,
.slider_style .et_pb_slide_content a:hover {
  background-position: 100% 0%;
}
/* end cmn btn */

/* form button  */
.cmn_form_style .gform_footer:after,
.subscrive_form_style .gfield--type-submit:after {
  display: none;
}

.subscrive_form_style .gfield--type-submit {
  background: inherit !important;
  background-image: linear-gradient(
    to right,
    #fbaa19,
    #de782d,
    #de782d,
    #fbaa19
  ) !important;
  background-size: 300% 100% !important;
  transition: all 0.4s ease-in-out;
}

.subscrive_form_style .gfield--type-submit:hover {
  background-position: 100% 0 !important;
}

/* up  */
.cmn_form_style .gform_footer {
  background: inherit !important;
  background-image: linear-gradient(
    to right,
    #fbaa19,
    #de782d,
    #de782d,
    #fbaa19
  ) !important;
  background-size: 300% 100% !important;
  transition: all 0.4s ease-in-out;
}
.cmn_form_style .gform_footer:hover {
  background-position: 100% 0 !important;
}
/* end from button  */
/* cooke button  */
.cky-btn:after {
  display: none;
}

.cky-btn {
  background: inherit !important;
  background-image: linear-gradient(
    to right,
    #fbaa19,
    #de782d,
    #de782d,
    #fbaa19
  ) !important;
  background-size: 300% 100% !important;
  transition: all 0.4s ease-in-out;
}

.cky-btn:hover {
  background-position: 100% 0 !important;
}
/* end cooke button */
/* blog button  */
div#page-container div#et-boc .custom_grid_blog .dp-dfg-load-more-button {
  background: transparent;
}

body #page-container div#et-boc .et_pb_section .et_pb_button:after {
  display: none !important;
}
div#page-container div#et-boc .custom_grid_blog .dp-dfg-load-more-button {
  background-image: linear-gradient(
    to right,
    #fbaa19,
    #de782d,
    #de782d,
    #fbaa19
  );
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
}
div#page-container div#et-boc .custom_grid_blog .dp-dfg-load-more-button:hover {
  background-position: 100% 0;
}
/* end blog button  */
/* slidner 2nd button  */
.slider_style .et_pb_slide_content span.secnd_butn a:after {
  display: block !important;
}
/* end silider 2nd button  */
/* ********************* end button ************************ */
div#page-container #top-menu li a {
  font-weight: 500;
}
.creative_design_content h2 span {
  display: block;
}

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

/* up  */
.banner_section {
  width: 100%;
}

/* update  */
@media only screen and (min-width: 981px) and (max-width: 1250px) {
  img#logo {
    max-width: 120px;
  }
}
/* end update  */
/* about page update  */
@media only screen and (min-width: 981px) and (max-width: 1300px) {
  div#page-container .section_about_us_content {
    background-image: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.6) 0%,
        rgba(0, 0, 0, 0.6) 100%
      ),
      url(/wp-content/uploads/About-Phil-Geldar-background-image-.jpg) !important;
  }
}
/* end about page update  */
/* book page  */
@media all and (max-width: 399px) {
  .inline-logo a {
    margin-right: 10px;
  }
}

/* end book page  */

/* service  */
@media only screen and (min-width: 981px) and (max-width: 1650px) {
  .cmn_for_service_content_box h3 {
    font-size: 22px !important;
  }
  .podcust_row .custom_h_for_all h3 {
    font-size: 22px !important;
  }
}
/* end service  */
/* slider  */
@media only screen and (max-width: 767px) {
  .logo_slider_s div#n2-ss-2 .nextend-arrow-animated-fade {
    -widget-offset: -15px !important;
  }
}

/* end slider  */
/********************************************* end Rev 1 - philgeldart.com  ***************************************/
/********************************************************* End with azim area  ***************************************/
@media only screen and (min-width: 981px) and (min-height: 750px) {
  .fullpage-section {
    height: 100vh !important;
    min-height: min-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

/****************************** From another dev ********************** */
body.et_fixed_nav #main-header {
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
}

#main-header.et-fixed-header #et-top-navigation {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

ul.et_pb_side_nav .side_nav_item a.active {
  position: relative;
  background: transparent;
}

ul.et_pb_side_nav .side_nav_item a.active:after {
  content: "";
  position: absolute;
  width: 69px;
  height: 76px;
  background-image: url(/wp-content/uploads/Dot-for-navigation.png);
  background-repeat: no-repeat;
  background-size: contain;
  left: -35px;
  top: -35px;
}

/* @media(max-width: 768px) {
.fullpage-section {
	min-height: 100vh;
}
	
} */
@media all and (max-width: 980px) {
  .fullpage-section {
    height: inherit !important;
    max-height: inherit !important;
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

@media (min-width: 981px) and (min-height: 750px) {
  body.admin-bar .fullpage-section {
    height: calc(100vh - 32px);
  }

  .fullpage-section {
    height: 100vh;
  }

  body.admin-bar #home_first_section {
    height: calc(100vh - 190px);
  }

  body #home_first_section {
    height: calc(100vh - 170px);
  }
}
@media (min-width: 981px) and (max-height: 750px) {
  .fullpage-section {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}

/********************************* end another developer  ******************************/

/*** pinned scrolling styles ***/
:root {
  -header-height-padding: 144px;
}
@media (min-width: 981px) {
  .et_pb_side_nav_page header {
    position: absolute !important;
    top: 0 !important;
  }
  .et_pb_side_nav_page
    #main-content
    .et_builder_inner_content
    .et_pb_section.fixed {
    position: fixed !important;
  }
  .et_pb_side_nav_page #main-content .et_builder_inner_content .et_pb_section {
    width: 100% !important;
    height: 100vh !important;
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    top: 0 !important;
    z-index: 99999;
  }
  .et_pb_side_nav_page
    #main-content
    .et_builder_inner_content
    .et_pb_section#home_first_section {
    height: calc(100vh + 20px) !important;
    top: var(--header-height-padding) !important;
  }
  .et_pb_side_nav_page
    #main-content
    .et_builder_inner_content
    .et_pb_section#home_first_section.fixed {
    top: 0 !important;
    transition-duration: 1500ms;
    transition-timing-function: ease-in;
  }
  .et_pb_side_nav_page
    #main-content
    .et_builder_inner_content
    .et_pb_section#home_first_section.top.fixed {
    top: calc(var(--header-height-padding)) !important;
  }
  /* .admin-bar.et_pb_side_nav_page
    #main-content
    .et_builder_inner_content
    .et_pb_section#home_first_section.top.fixed {
    top: calc(var(--header-height-padding) + 32px) !important;
  } */
  .et_pb_side_nav_page
    #main-content
    .et_builder_inner_content
    .et_pb_section#home_first_section.no-top {
    top: 0 !important;
  }
  .et_pb_side_nav_page {
    position: relative;
  }
  .et_pb_side_nav_page #main-content {
    position: relative;
  }
  .et_pb_side_nav_page .et-l--footer {
    position: absolute;
    z-index: 99999999;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}
@media (max-width: 980px) {
  .et_pb_side_nav_page header {
    position: absolute !important;
    top: 0 !important;
  }
  .et_pb_side_nav_page
    #main-content
    .et_builder_inner_content
    .et_pb_section.fixed {
    position: relative !important;
  }
  .et_pb_side_nav_page #main-content .et_builder_inner_content .et_pb_section {
    height: auto !important;
    z-index: 1 !important;
  }
  .et_pb_side_nav_page
    #main-content
    .et_builder_inner_content
    .et_pb_section#home_first_section {
    height: auto !important;
  }
}
/*** end pinned scrolling styles ***/

/**------ Ridoy CSS update 6-1-23----------**/

@media all and (min-width: 981px) {
  .slider_style_reverse.slider_style .et_pb_slide_image {
    right: 0;
    margin-right: 0;
  }

  .slider_style_reverse.slider_style
    .et_pb_slide_with_image
    .et_pb_slide_description {
    float: left !important;
    padding-left: 1.2em;
  }
}

/* Update 6-14-23 */
.explorer_list_item ol {
    counter-reset: list;
}
ol > li {
    list-style: none;
    position: relative;
}
ol > li:before {
counter-increment: list;
content: counter(list, upper-greek) ") ";
position: absolute;
left: -1.8em;
color: #fbaa19;
font-weight: bold;
}
#main-header{
	transition:none;
}
.logo_container {
  -webkit-transition: none;
  transition: none;
}
img#logo:hover {
    content: url(/wp-content/uploads/header-yellow-logo-1.png) !important;
    transition: .6s;
	transform: scale(1.02) !important;
}
/* #page-container .text_btn_border a:hover{
	border-bottom: 2px solid !important;
border-image:  linear-gradient(90deg, #FBAA19 5.61%, #DE782D 65.09%) 1;
} */
#page-container .text_btn_border:hover a::after {
  width: 100%;
}
#page-container .text_btn_border a::after {
  content: "";
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%);
  width: 00%;
  height: 1.5px;
  position: absolute;
  left: 0;
  bottom: 0;
  display: inline-block;
  transition: 0.3s ease-in;
}

@media screen and (min-width: 981px) and (max-width: 1650px) {
	#page-container .text_btn_border{
		max-width: 385px;
	}
#page-container .text_btn_border a::after {
  height: 2px;
}
}
@media screen and (max-width: 980px){
	#page-container .text_btn_border a::after {
  height: 2px;
}
}
/* ============ Start Testimonial css ============== */

div#n2-ss-3 .n2-style-9c5b46fd9789f3affddff2be36a4105d-dot.n2-active {
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%) !important;
}
div#n2-ss-3 .n2-style-9c5b46fd9789f3affddff2be36a4105d-dot.n2-active,
div#n2-ss-3 .n2-style-9c5b46fd9789f3affddff2be36a4105d-dot:hover {
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%) !important;
}

@media screen and (min-width: 981px) and (max-width: 1650px) {
  .solutions_testimonial
    div#n2-ss-3
    .n2-font-80ad16131bcd8e3da6e509f73309ef69-paragraph {
    font-size: 18px;
  }
}
@media screen and (max-width: 1099px) {
  .solutions_testimonial #n2-ss-3-arrow-previous {
    display: none;
  }
  .solutions_testimonial #n2-ss-3-arrow-next {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  .solutions_testimonial
    div#n2-ss-3
    .n2-font-80ad16131bcd8e3da6e509f73309ef69-paragraph {
    font-size: 15px;
  }
  .solutions_testimonial .n2-ss-slider-pane {
    height: 180px;
  }
  .solutions_testimonial .n2-ss-slide {
    height: 180px;
  }
  .solutions_testimonial .n2-ss-control-bullet {
    position: relative;
    top: 30px;
  }
}
@media screen and (max-width: 490px) {
  .solutions_testimonial .n2-ss-control-bullet {
    position: relative;
    top: 50px;
  }
  #page-container .solutions_testimonial .n2-ss-slider-pane {
    height: 250px !important;
  }
  #page-container .solutions_testimonial .n2-ss-slide {
    height: 250px !important;
  }
  #page-container .testimonial_section {
    padding-bottom: 5em;
  }
}
/* ============ End Testimonial css ============== */

/* ============= Start Phil About Form  ================ */

.gform_heading {
  display: none;
}
.phil_about_form .gform_wrapper.gravity-theme .gf_progressbar_title {
  color: #fff;
}
.phil_about_form
  .gform_wrapper.gravity-theme
  .gf_progressbar_percentage.percentbar_blue {
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%) !important;
}
.phil_about_form .gform_wrapper.gravity-theme .gf_progressbar_blue {
  background: #fff;
}
#page-container .phil_about_form .gfield_label {
	color: #fbaa19;
	font-size: 22px;
	text-align: left;
	margin-bottom: 25px;
	padding-top: 10px;
	display: block !important;
	width: 100%;
}
.gform_wrapper.gravity-theme .gfield_required {
  color: #fbaa19;
}
.phil_about_form .gchoice {
  color: #fff;
}
.phil_about_form .gform_wrapper.gravity-theme .gfield_checkbox label {
  font-size: 18px;
}
.phil_about_form .gchoice .gfield-choice-input {
  background: #fbaa19 !important;
}
#page-container .phil_about_form .gform_next_button {
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  background: inherit !important;
  background-image: linear-gradient(
    to right,
    #fbaa19,
    #de782d,
    #de782d,
    #fbaa19
  ) !important;
  background-size: 300% 100% !important;
  transition: all 0.4s ease-in-out;
}
#page-container .phil_about_form .gform_next_button:hover {
  background-position: 100% 0 !important;
}
#page-container .phil_about_form .gform_previous_button {
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  background: inherit !important;
  background-image: linear-gradient(
    to right,
    #fbaa19,
    #de782d,
    #de782d,
    #fbaa19
  ) !important;
  background-size: 300% 100% !important;
  transition: all 0.4s ease-in-out;
}
#page-container .phil_about_form .gform_previous_button:hover {
  background-position: 100% 0 !important;
}
#page-container .phil_about_form .gform_button {
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  border: none;
  background: inherit !important;
  background-image: linear-gradient(
    to right,
    #fbaa19,
    #de782d,
    #de782d,
    #fbaa19
  ) !important;
  background-size: 300% 100% !important;
  transition: all 0.4s ease-in-out;
}
#page-container .phil_about_form .gform_button:hover {
  background-position: 100% 0 !important;
}
#page-container .phil_about_form .gform_confirmation_wrapper .gform_confirmation_message{
	background: #1C3D6E;
	color: #fff;
}
#page-container .phil_about_form .gfield--type-html {
  color: #fff;
}
@media screen and (max-width: 980px) {
  #page-container .phil_about_form .gfield_label {
    color: #fbaa19;
    font-size: 18px;
  }
  .phil_about_form .gform_wrapper.gravity-theme .gfield_checkbox label {
    font-size: 15px;
  }
  #page-container .phil_about_form .gform_next_button {
    padding: 6px 30px;
  }
  #page-container .phil_about_form .gform_previous_button {
    padding: 6px 30px;
  }
  #page-container .phil_about_form .gform_button {
    color: #fff;
    padding: 6px 30px;
  }
}
/* ============= End Phil About Form  ================ */

/* =================== Start Book slider ================== */

.book_slider div#n2-ss-4 .n2-ss-slide {
  background-color: transparent;
}
div#n2-ss-4 .n2-style-0499f5486dc9ee33b61ba67e3c409a90-dot.n2-active {
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%) !important;
}
div#n2-ss-4 .n2-style-0499f5486dc9ee33b61ba67e3c409a90-dot.n2-active,
div#n2-ss-4 .n2-style-0499f5486dc9ee33b61ba67e3c409a90-dot:hover {
  background: linear-gradient(90deg, #fbaa19 5.61%, #de782d 65.09%) !important;
}
div#page-container .book_slider_btn a {
  border-radius: 61px;
  background-image: linear-gradient(
    to right,
    #fbaa19,
    #de782d,
    #de782d,
    #fbaa19
  );
  background-size: 300% 100%;
  transition: all 0.4s ease-in-out;
}
div#page-container .book_slider_btn a:hover {
  background-position: 100% 0%;
}
@media all and (min-width:981px){
div#page-container .book_slider h2 {font-size: 35px !important;}
}
@media screen and (min-width: 981px) and (max-width: 1450px) {
 div#page-container .book_slider h2 {
    font-size: 28px !important;
}
	.book_slider div#n2-ss-4 .n2-font-5f4d9e532dff256f35845084684326c2-paragraph {
    font-size: 16px;
  }
  div#page-container .book_slider_btn a {
    font-size: 18px !important;
    padding: 18px 40px 18px 40px;
  }
}
@media screen and (max-width: 1099px) {
  .book_section {
    padding-top: 0px;
  }
  div#page-container .book_slider div#n2-ss-4 .n2-ss-layer-row-inner {
    flex-wrap: wrap;
  }
  div#page-container .book_slider div#n2-ss-4 .n2-ss-layer {
    width: 100%;
  }
  div#page-container .book_slider div#n2-ss-4 .n-uc-179f2f0f5a02b-inner {
    padding: 10px 0px 40px 0px;
  }
}
@media screen and (max-width: 980px) {
  .book_slider div#n2-ss-4 .n2-font-5f4d9e532dff256f35845084684326c2-paragraph {
    font-size: 16px;
  }
  div#page-container .book_slider_btn a {
    font-size: 18px !important;
    padding: 18px 40px 18px 40px;
  }
  div#page-container .book_slider h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 620px) {
  div#page-container .book_slider h2 {
    font-size: 25px;
  }
/*   div#page-container
    .book_slider
    .n2-ss-section-main-content.n2-ss-layer-with-background.n2-ss-layer-content {
    height: 900px;
  } */
  div#page-container .book_slider div#n2-ss-4 .n2-ss-slide {
    height: auto !important;
  }
  div#page-container .book_slider div#n2-ss-4 .n-uc-179f2f0f5a02b-inner {
    padding: 10px 0px 0px 0px;
  }
  div#page-container .book_section {
    padding-top: 3em;
  }
  div#page-container .book_slider br {
    display: none;
  }
}
@media screen and (max-width: 480px) {
/*   div#page-container
    .book_slider
    .n2-ss-section-main-content.n2-ss-layer-with-background.n2-ss-layer-content {
    height: 750px;
  } */
	
	 div#page-container
    .book_slider
    .n2-ss-section-main-content.n2-ss-layer-with-background.n2-ss-layer-content {
    height: auto !important;
  }
	
  div#page-container .book_slider div#n2-ss-4 .n2-ss-slide {
    height: auto !important;
  }
}
/* =================== End Book slider ================== */

/* footer fix */
@media screen and (min-width: 981px) and (max-width: 1650px) {
	div#page-container .footer_section {
  padding-top: 18px;
  padding-bottom: 18px;
}
}
/* align-item */
@media (min-width: 981px) {
  .center-align {
    display: flex;
    align-items: center;
  }
}
.form_heding h2 {
  font-weight: 700;
  font-size: 50px;
  color: #FFFFFF !important;
  line-height: 1.36em;
  position: relative;
top: -0px;
}
.form_heding {
    position: absolute;
    top: -125px;
    width: 100%;
}
@media (max-width: 980px) {
	div#page-container .form_heding h2 {
  font-size: 35px; 
	}
}
@media (max-width: 767px){
div#page-container .form_heding h2 {
  font-size: 25px;
}
}


/* rev 3  */
.icon_cmn_for_partner:hover    .et_pb_module_header {
    color: #fbaa19 !important;
}

.icon_cmn_for_partner .et_pb_module_header {
    transition: 0.3s ease-in;
}

/* up  */
div#page-container .phil_about_form   .gchoice {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

div#page-container .phil_about_form .gfield input {
    margin-top: 10px !important;
    margin-right: 10px;
}

@media only screen   and (max-width:1650px){

 
div#page-container .phil_about_form  .gfield input {
    margin-top: 7px !important;
    }   
}

@media all and (max-width:980px){
    
div#page-container .phil_about_form  .gfield input {
    margin-top: 5px !important;
    }
}

@media all and (max-width:550px){
.logo_slider_s {
    max-width: 85%;
    margin: 0 auto;
}
}

/* up  */
@media all and (max-width:767px){
.book_slider {
    margin-bottom: 50px !important;
}

.book_slider  .n2-ss-control-bullet {--widget-offset: -50px !important;}


div#page-container .book_slider p {
    font-size: 15px;
}
}

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

.icon_cmn_for_partner:hover span.et_pb_image_wrap img {
    transform: scale(1.05);
}

.icon_cmn_for_partner span.et_pb_image_wrap img {transition: 0.3s ease-in;}
/* end up  */
/* end rev 3  */

/* rev 4 with jn  */
.custom_h3_form_c h3 {
    color: #fff;
    font-weight: 700;
    font-size: 25px;
	text-align:center;
}

@media all and (max-width:980px) {
 .program_speaking_sp_4 .et_pb_column:nth-child(2) {
    margin-top: 50px !important;
/*     margin-bottom: 30px !important; */
} 
.program_speaking_sp_4 .et_pb_column:nth-child(2){
    padding-left:5%;
    padding-right:5%;
} 
}

/* logo  */
/*
@media all and (min-width:981px){
img#logo {
    max-height: 75%;
    transform: translateY(-7px) !important;
}
}
 img#logo {
    border: 1px solid #000;
    max-height: 90%;
}

img#logo:hover {
    border-color: #fbaa19;
} */

/* .logo_container a:before {
    content: "Home";
    position: absolute;
    bottom: -42px;
    width: 100%;
    text-align: center;
    color: #000;
}

.logo_container a {
    position: relative;
    
}

.logo_container a:hover:before {
    color: #fbaa19;
} */
/* end logo  */
.form_heding h2 {
    text-align: center;
    width: 100%;
}

/* @media all and (max-width:980px){
img#logo {
    max-height: 75%;
    transform: translateY(-5px) !important;
}
.logo_container a:before {
    bottom: -37px;
}
} */

/* update  */
div#page-container .footer_menu ul li {position: relative;padding-left: 10px;}
 

div#page-container .footer_menu ul li:after {
  position: absolute;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fbaa19;
  content: "";
  left: -5px;
  top: calc(50% - 0.0px);
  /* right: 0; */
  -webkit-transform: translate(50%,-50%);
  -ms-transform: translate(50%,-50%);
  transform: translate(50%,-50%);
}

/* end rev 4 with jn */

/*---- Ridoy CSS update 07-13-23 ----*/


/* @media (max-width: 767px){
	.n2-ss-slide {
    padding-bottom: 27em;
}
} */

  @media (max-width: 767px){
	div#page-container .book_slider div#n2-ss-4 .n2-ss-slide .n2-ss-section-main-content,div#page-container .book_slider div#n2-ss-4 .n2-ss-slide .n2-ss-layer{
    padding: 0px;
}
} 


@media screen and (-webkit-min-device-pixel-ratio:0) {
@media all and (max-width:980px){
	div#page-container .phil_about_form  .gfield input[type=checkbox] {
		-webkit-transform: scale(.6,.6) !important;
		margin-right: 1px !important;
		margin-top: 0px !important;
}
	
	.phil_about_form .gform_wrapper.gravity-theme .gfield_checkbox label {
    font-size: 13px;
}
} 
}

/*Hridoy CSS update 7-18-23*/

@media all and (min-width:981px){
	.footer_row .et_pb_column:nth-child(1){
		width: 53.5%;
	}
	
	.footer_row .et_pb_column:nth-child(2){
		width: 40%;
	}
	
	.footer_row .et_pb_column:nth-child(3){
		width: 4%;
	}
}

@media all and (max-width:980px){
	div#page-container .footer_row .et_pb_column{
		width: 100%;
	}
}

/* -- LinkedIn Slider -- */

.linkedin-slider {
	transition: 0.2s all ease-in-out !important;
	max-height: 500px !important;
}

.linkedin-slider:hover > .slick-prev,
.linkedin-slider:hover > .slick-next {
	display: block !important;
	opacity: 1 !important;
}

.slick-prev {
	display: block !important;
	opacity: 0 !important;
    padding: 0px;
    background-color: #fbaa19;
    position: absolute;
    top: 40%;
	left: 2%;
	margin: 0px;
    border: 6px solid #fbaa19;
    font-size: 0;
	line-height: 0;
    background-size: contain;
    background-position-x: center;
    border-radius: 0px;
	z-index: 999;
	cursor: pointer;
	transition: 0.2s all ease-in-out !important;
}

.slick-next {
	display: block !important;
	opacity: 0 !important;
    padding: 0px;
    background-color: #fbaa19;
    position: absolute;
    top: 40%;
	right: 2%;
	margin: 0px;
    border: 6px solid #fbaa19;
    font-size: 0;
	line-height: 0;
    background-size: contain;
    background-position-x: center;
    border-radius: 0px;
	z-index: 999;
	cursor: pointer;
	transition: 0.2s all ease-in-out !important;
}

.slick-prev:before {
	font-family: "ETmodules" !important;
	content: '\23';
	color: #ffffff !important;
	font-size: 40px;
    line-height: 1;
    opacity: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	transition: 0.2s all ease-in-out !important;
}

.slick-next:before {
	font-family: "ETmodules" !important;
	content: '\24';
	color: #ffffff !important;
	font-size: 40px;
    line-height: 1;
    opacity: 1;
    color: white;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
	transition: 0.2s all ease-in-out !important;
}

@media (min-width: 981px) {
	.slick-dots li button {
		font-size: 0;
		line-height: 0;
		display: block;
		width: 90px;
		height: 4px;
		padding: 0;
		cursor: pointer;
		color: transparent;
		border: 0;
		outline: none;
		background-color: #F5F5F7;
 		border-radius: 0px;
	}
}

@media (max-width: 980px) {
	.slick-dots li button {
		font-size: 0;
		line-height: 0;
		display: block;
		width: 60px;
		height: 4px;
		padding: 0;
		cursor: pointer;
		color: transparent;
		border: 0;
		outline: none;
		background-color: #F5F5F7;
 		border-radius: 0px;
	}
}

.linkedin-slide {
	float: left;
}

/* -- END LinkedIn Slider -- */

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

.custom_map_style .imp-shape img{
	animation-name: slideOutUp;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}


.pum-form--style-default button {
	  background: linear-gradient(90deg, #FBAA19 5.61%, #DE782D 65.09%);
    padding: 15px 55px;
    border-radius: 61px;
    color: #fff !important;
	border: 0;
}
  

.pum-form--style-default input[type=email], .pum-form--style-default input[type=text] {
	    background: #fff;
    border: 0;
    padding: 1.5rem 2rem;
    border-radius: 50px;
}

.pum-theme-30601 .pum-title, 
.pum-theme-default-theme .pum-title {
	text-align: center;
	font-weight: bold;
}

.page-id-328 .fluid-width-video-wrapper, 
.page-id-328 .dp-dfg-skin-default .dp-dfg-video-overlay {
	min-height: 288px;
}

@media(min-width: 900px) {

	#filter-grid-main-courses .dp-dfg-layout-grid {
		grid-template-columns: 1fr 2.5fr;
	}

	#filter-grid-main-courses .dp-dfg-pagination,
	#filter-grid-main-courses .dp-dfg-items {
		grid-column-start: 1;
		grid-column-end: 3;
	}
}

#hide-filters .dp-dfg-filters.dp-dfg-filters-buttons-layout {
	display: none;
}

.snacks-overflow {
	overflow-x: hidden;
}

@media (max-width: 767px) {
	.pum-theme-30601 .pum-title, 
	.pum-theme-default-theme .pum-title {
		font-size: 20px !important;
		line-height: 20px !important;
	}

	.pum-form--style-default input[type=email], 
	.pum-form--style-default input[type=text] {
		padding: 0.5rem 1rem !important;
	}

	.pum-form--style-default label,
	.pum-form__field p {
		font-size: 12px !important;
	}

	.pum-form--style-default button {
		padding: 10px 40px !important;
		font-size: 14px !important;
	}
}

@media (min-width: 981px) {
	.linkedin-slide h2 {
		font-size: 20px;
		font-weight: bold;
		text-align: center;
	}
}

@media (min-width: 768px) and (max-width: 980px) {
	.linkedin-slide h2 {
		font-size: 18px;
		font-weight: bold;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.linkedin-slide h2 {
		font-size: 16px;
		font-weight: bold;
		text-align: center;
	}
}