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

/* -- COLORS -- */

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

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

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

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

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

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

/* -- END COLORS -- */

/* -- TYPOGRAPHY -- */

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

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

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

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

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

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

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

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

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

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

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

/* -- END TYPOGRAPHY -- */

/* -- TEMPLATE -- */

/* -- END TEMPLATE -- */

/* -- HEADER -- */

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

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

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

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

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

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

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

/* - end mobile menu toggling elements - */

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

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

/* -- END HEADER -- */

/* -- FOOTER -- */

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

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

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

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

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

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

/* -- END FOOTER -- */

/* -- RESPONSIVE -- */

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

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

/* -- END RESPONSIVE -- */

/* -- CHECKLIST -- */

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

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

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

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

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

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

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

/* -- END CHECKLIST -- */

/* -- DIVI HACKS -- */

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

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

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

/* -- END DIVI HACKS -- */

/* -- PASSWORD PROTECTED -- */

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

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

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

/* -- END PASSWORD PROTECTED -- */

/* -- TESTIMONIALS PLUGIN -- */

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

/* -- END TESTIMONIALS PLUGIN -- */

/* -- GRAVITY FORMS -- */

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

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

/*********************************************************  Global area  ***************************************/
body {
  font-weight: 400;
}
.et_pb_button {
  line-height: 1 !important;
  font-weight: 500;
}
.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;
  }
}
@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 (max-width: 980px) {
  .column-reverse {
    display: flex;
    flex-direction: column-reverse;
  }
  .column-reverse .et_pb_image .et_pb_image_wrap {
    margin-bottom: 20px;
  }
  .column-reverse .et_pb_column:first-child {
    margin-bottom: 0 !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: #11c4f4;
  border-radius: 0;
  padding: 25px 0;
}

/* end scrool top */

/* for 1720 */

/* for 1640px in fressy  */
header .container,
#main-footer .container {
  width: 90% !important;
}

/********************************************************* End Global area  ***************************************/
/*********************************************************  Header area ***************************************/

body #page-container #main-header {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.1) !important;
  -moz-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1) !important;
  -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.1) !important;
}

/* for header comon for fresshy  or other defolts */
/* responsive  */
#top-menu li {
  padding-right: 40px;
}

#top-menu li:last-child {
  padding-right: 0 !important;
}
@media only screen and (min-width: 981px) and (max-width: 1279px) {
  img#logo {
    max-width: 190px !important;
  }

  div#et-top-navigation {
    padding-left: 200px !important;
  }

  #top-menu li {
    padding-right: 6px;
  }
  #top-menu li a {
    font-size: 14px !important;
  }

  header#main-header ul#top-menu .custom_btn a {
    padding: 15px 25px !important;
  }
}

@media all and (max-width: 980px) {
  img#logo {
    max-width: 380px;
    max-width: 100% !important;
  }
}

@media all and (min-width: 1280px) and (max-width: 1439px) {
  img#logo {
    max-width: 380px;
  }

  div#et-top-navigation {
    padding-left: 400px !important;
  }

  #top-menu li {
    padding-right: 10px;
  }
  #top-menu li a {
    font-size: 15px !important;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1600px) {
  #top-menu li {
    padding-right: 20px;
  }
  #top-menu li a {
    font-size: 16px !important;
  }
}
@media only screen and (min-width: 1601px) and (max-width: 1685px) {
  #top-menu li {
    padding-right: 30px;
  }
}
/* end responsive  */
/* sp style  */
#top-menu li.current_page_item a {
  position: relative;
}

#top-menu li.current_page_item a:before,
#top-menu li a:before,
#top-menu li.current-menu-item a:before {
  content: "";
  background: #11c4f4;
  position: absolute;
  height: 7px;
  width: 100%;
  bottom: 0;
  transition: 0.3s ease-in;
}

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

#top-menu li:hover a:before {
  width: 100%;
}
body #page-container .et-search-form,
.nav li ul,
.et_mobile_menu,
.footer-widget li:before,
.et_pb_pricing li:before,
blockquote {
  border-color: #11c4f4 !important;
}

#et_mobile_nav_menu .mobile_nav.opened .mobile_menu_bar::before{
	color:#11c4f4 !important
}
/* end sp style  */
/* end comon deforlt header css responsive  */
/********************************************************* End Header area   ***************************************/
/********************************************************* Footer area  ***************************************/

/******************************************************************* footer css  */

.footer-widget h4 {
  padding-bottom: 28px;
}
.footer-widget h4.title {
  padding-bottom: 40px !important;
}
#footer-info {
  width: 100%;
  text-align: center;
}

/* @media all and (min-width:981px) {
	footer#main-footer .footer-widget {
		width: calc( 12.083% + 2.5%) !important;
		margin-right: 2.5% !important;
	}
	footer#main-footer .footer-widget:last-child {
		margin-right: 0 !important;
	}
	footer#main-footer .footer-widget:nth-child(5) {
		width: calc( 12.083% + 2.5% + 3%) !important;
	}
	footer#main-footer .footer-widget:nth-child(3) {
		width: calc( 12.083% + 2.5% - 1.5%) !important;
	}
	footer#main-footer .footer-widget:nth-child(4) {
		width: calc( 12.083% + 2.5% - 1.5%) !important;
	}
} */

.widget_nav_menu .menu li:before,
.custom_socical_footer li:before {
  display: none;
}

.widget_nav_menu .menu li {
  padding-left: 0 !important;
}

.widget_nav_menu .menu li a:hover {
  text-decoration: underline !important;
}

.main-footer .footer-widget h4 {
  font-family: "setimo", sans-serif !important;
	color: #11c4f4;
}

/* update  */

@media only screen and (min-width: 981px) {
  #footer-widgets {
    padding-top: 100px;
    padding-bottom: 87px !important;
  }
  div#footer-bottom {
    padding-bottom: 48px !important;
    padding-top: 0px;
  }
  .et_pb_gutters3 .footer-widget {
    margin-bottom: 0px !important;
  }
}
div#footer-bottom .container {
  border-top: 1px solid rgb(255 255 255 / 15%) !important;
  padding-top: 30px;
}
@media all and (max-width: 980px) {
  body footer#main-footer .footer-widget:nth-child(n) {
    margin-bottom: 35px !important;
  }
  #footer-widgets {
    padding-top: 50px !important;
    padding-bottom: 0 !important;
  }
  div#footer-bottom {
    padding-bottom: 30px !important;
  }
  .footer-widget h4.title {
    padding-bottom: 30px !important;
  }
}

/* end update res */

.custom_socical_footer {
  margin-bottom: 0 !important;
}

/* .custom_socical_footer li {
	padding-left: 0 !important;
}

.custom_socical_footer {
	margin-left: -10px !important;
}

.custom_socical_footer a.icon,
.custom_socical_footer a.icon::before {
	width: 30px !important;
	height: 30px !important;
}

.custom_socical_footer a.icon:before {
	line-height: 30px !important;
} */

/* e */

.et_pb_widget ul li {
  margin-bottom: 1px !important;
}

footer .textwidget {
  /*     font-weight: 300 !important; */
  line-height: 24px;
}

.et_pb_widget ul li {
  line-height: 24px;
}

/* end footer cmn */

@media all and (min-width: 981px) {
  footer#main-footer div#media_image-2 {
    margin-bottom: 40px;
  }
  footer#main-footer div#media_image-3 {
    margin-bottom: 0;
  }
}

@media all and (min-width: 981px) and (max-width: 1279px) {
  #main-footer .container {
    /* 		width: 95% !important; */
  }
  #main-footer .footer-widget h4 {
    font-size: 15px;
  }
  div#media_image-3:after {
    left: 0;
  }
  div#media_image-3:before {
    right: 0;
  }
}

/* up */
div#nav_menu-2 {
  width: 100% !important;
}

ul#menu-footer-menu {
  display: flex;
  flex-wrap: wrap;
}

ul#menu-footer-menu li {
  width: calc(50% - 5px);
}

ul#menu-footer-menu li:nth-child(odd) {
  margin-right: 10px;
}
div#text-2 .textwidget h4 {
  font-size: 18px !important;
  color: #a8a8aa !important;
}

.custom_socical_footer li:first-child {
  padding-left: 0 !important;
}
/* up */
.custom_socical_footer li a {
  margin-right: 0px;
}

.custom_socical_footer li {
  padding-left: 20px !important;
}
/* end footer csss  */
/* update  */
div#text-3 h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff !important;
}
/* for signup area  */

div#field_2_4 {
  padding-right: 0 !important;
}

form#gform_2 {
  width: 100%;
}

.cmn_subscrive .gform_body {
  min-width: 380px;
}

.cmn_subscrive input[type="email"] {
  color: rgb(255 255 255 / 75%) !important;
  background: #424242 !important;
}

.cmn_subscrive .gform_button {
  border: 0px !important;
  border-radius: 0px !important;
  font-family: "Roboto", Helvetica, Arial, Lucida, sans-serif !important;
  margin-top: 0px !important;
}
/* place holder  */

.cmn_subscrive input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgb(255 255 255 / 75%);
}

.cmn_subscrive input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgb(255 255 255 / 75%);
}

.cmn_subscrive input:-ms-input-placeholder {
  /* IE 10+ */
  color: rgb(255 255 255 / 75%);
}

.cmn_subscrive input:-moz-placeholder {
  /* Firefox 18- */
  color: rgb(255 255 255 / 75%);
}
/* update  */
.cmn_subscrive input[type="email"] {
  height: 58px !important;
}

.cmn_subscrive .gform_button {
  height: 58px !important;
  width: 140px;
  line-height: 1;
}
div#text-3 .cmn_subscrive {
  margin-bottom: 25px;
}
/* end for signup area  */
@media all and (min-width: 981px) {
  footer#main-footer .footer-widget:nth-child(1) {
    width: calc(29.667% - 2%) !important;
  }
  footer#main-footer .footer-widget:nth-child(2) {
    width: calc(29.667% + 2% + 4%) !important;
  }
  footer#main-footer .footer-widget:last-child {
    width: calc(29.667% - 4%) !important;
  }
  /* 	u */

  /* 	u */
}
@media only screen and (min-width: 981px) and (max-width: 1200px) {
  footer#main-footer .footer-widget {
    margin-right: 3% !important;
  }
  footer#main-footer .footer-widget:nth-child(1) {
    width: calc(29.667% - 2% + 2.5%) !important;
  }
  footer#main-footer .footer-widget:nth-child(2) {
    width: calc(29.667% + 2% + 4%) !important;
  }
  footer#main-footer .footer-widget:last-child {
    width: calc(29.667% - 4% + 2.5%) !important;
    margin-right: 0% !important;
  }
}
/* u */
@media all and (min-width: 981px) and (max-width: 1279px) {
  .cmn_subscrive .gform_body {
    min-width: 200px;
  }

  .cmn_subscrive .gform_button {
    width: 120px;
  }

  .cmn_subscrive .gform_button {
    width: 100px;
  }
}
/* end update  */
@media only screen and (min-width: 1280px) and (max-width: 1439px) {
  .cmn_subscrive .gform_body {
    min-width: 290px;
  }

  .cmn_subscrive .gform_button {
    width: 120px;
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1600px) {
  .cmn_subscrive .gform_body {
    min-width: 320px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 980px) {
  .cmn_subscrive .gform_body {
    min-width: 200px;
  }

  .cmn_subscrive .gform_button {
    width: 120px;
  }
}
/* u */
/* div#text-2 .textwidget h4 {
    margin-top: 40px;
} 
@media all and (max-width: 980px) {
  footer#main-footer div#media_image-2 {
    margin-bottom: 30px !important;
  }
}
@media all and (max-width: 640px) {
  div#field_2_4 {
    width: 100% !important;
    display: block !important;
  }

  .cmn_subscrive .gform_body.gform-body {
    min-width: 100%;
    max-width: 100% !important;
  }

  .cmn_subscrive div#gform_fields_2 {
    display: block !important;
  }

  .gform_body.gform-body {
    width: 100% !important;
  }

  .cmn_subscrive .gform_footer.top_label {
    display: block !important;
    max-width: 100% !important;
  }

  .cmn_subscrive .gform_body.gform-body {
    display: block !important;
  }

  div#text-3 {
    display: block;
    width: 100% !important;
  }

  .cmn_subscrive .gform_button {
    margin-top: 20px !important;
  }
}
*/
@media all and (max-width: 767px) {
  #freshy_copyright span {
    font-size: 16px;
  }
}

body #page-container .footer-text-first-clm {
  padding-bottom: 4.5em;
}

/********************************************************* End footer area   ***************************************/

/********************************************************* Home page area  ***************************************/
/* slider area  */
/* .post_slider .et_pb_slide_image {
    height: 542px;
}
 */
.post_slider .et_pb_slide_image img {
  /*     height: 100%  !important;
    width: 100%; */
}
/* u */

/*slider author*/

.post_slider .author.vcard, .post_slider .published{
	display: none
}

@media all and (min-width: 1601px) {
  .post_slider .et_pb_slide_description {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }
}

body .gform_wrapper .gform_footer input.button,
body .gform_wrapper .gform_page_footer input.button,
body
  div.form_saved_message
  div.form_saved_message_emailform
  form
  input[type="submit"] {
  font-size: 13px !important;
}

@media only screen and (min-width: 1401px) and (max-width: 1600px) {
  .post_slider .et_pb_slide_description {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
}

@media only screen and (min-width: 1201px) and (max-width: 1400px) {
  .post_slider .et_pb_slide_description {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
}

@media only screen and (min-width: 981px) and (max-width: 1200px) {
  .post_slider .et_pb_slide_description {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
}

.post_slider img.attachment-post-thumbnail {
  max-height: inherit !important;
}
/* u */
@media all and (max-width: 980px) {
  .post_slider .et_pb_slide_image {
    position: relative !important;
    top: 0 !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: 35px !important;
    margin-right: 0 !important;
    float: inherit !important;
  }

  .post_slider .et_pb_slide_description {
    float: inherit;
    width: 100% !important;
  }

  .post_slider .et_pb_slide {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.post_slider .et_pb_slide {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* end slider  */
/* 2nd section blog grid  */
.cu-blog .et_pb_salvattore_content[data-columns]::before {
  content: "4 .column.size-1of2" !important;
}
@media only screen and (min-width: 981px) {
  .cu-blog .column.size-1of2 {
    width: calc(25% - 50px + 12.5px) !important;
    margin-right: 50px;
  }
  .cu-blog .column.size-1of2:last-child {
    margin-right: 0px;
  }
}
/* 3gird  */
.cu-blog_1 .et_pb_salvattore_content[data-columns]::before {
  content: "3 .column.size-1of2" !important;
}
@media only screen and (min-width: 981px) {
  .cu-blog_1 .column.size-1of2 {
    width: calc(33.33% - 45px + 15px) !important;
    margin-right: 45px !important;
  }
  .cu-blog_1 .column.size-1of2:last-child {
    margin-right: 0px !important;
  }
}
/* up */
.cu-blog_1 .et_pb_post {
  padding: 0 !important;
}

.grid_cmn .et_pb_image_container {
  margin: 0 !important;
}

.grid_cmn p.post-meta {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
/* end 2nd section blog grid  */
.section_title {
  position: relative;
}

.section_title:after {
  position: absolute;
  content: "";
  width: 44px;
  height: 2px;
  background: #11c4f4;
  left: 0;
  bottom: 0;
}
.cmn_for_dt_icon span.published {
  padding-left: 23px;
  position: relative;
}

.cmn_for_dt_icon span.published:after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 17px;
  background: url(/wp-content/uploads/Group-49.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
}
/* u */
@media only screen and (min-width: 1300px) {
  .dt-blog .et_pb_post.has-post-thumbnail .entry-featured-image-url {
    float: left;
    width: 50%;
    margin-right: 4%;
  }
  .dt-blog .et_pb_post.has-post-thumbnail:not(.format-gallery) > .post-content {
    padding-left: 39%;
  }
  .dt-blog p.post-meta {
    padding-left: 39%;
  }

  .dt-blog h2.entry-title {
    padding-left: 39% !important;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1299px) {
  .dt-blog .entry-featured-image-url {
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1079px) {
  .dt-blog .entry-featured-image-url {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 980px) {
  body #page-container .single-clm-blg-mbl .et_pb_blog_grid .size-1of2 {
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 767px) {
  body #page-container .single-clm-blg-mbl .et_pb_blog_grid .size-1of2 {
    width: 100% !important;
  }
  body #page-container .home_well_blog h2.entry-title {
    padding-top: 0% !important;
    padding-bottom: 5px;
  }
}

.cmn_blog_style a.more-link {
  display: inline-block;
  font-weight: 500;
  background: #11c4f4;
  padding-top: 16px !important;
  padding-right: 43px !important;
  padding-bottom: 16px !important;
  padding-left: 43px !important;
  line-height: 1;
  margin-top: 30px;
  transition: 0.3s ease-in;
}
.cmn_blog_style a.more-link:hover {
  background: #8d8d8d;
}

@media all and (max-width: 767px) {
  .cmn_blog_style a.more-link {
    padding-right: 35px !important;

    padding-left: 35px !important;
  }
}
.blog_left_img_right_text .et_pb_post {
  margin-bottom: 40px;
}
@media all and (min-width: 1080px) {
  .blog_left_img_right_text a.entry-featured-image-url {
    margin-bottom: 0 !important;
  }
}
/* side bar  */
/* end side bar  */
.sidebar_cmn {
  padding-right: 0 !important;
  border-right: 0px !important;
}
.home_sidebar_subscrive .gform_body {
  min-width: 293px;
}
@media only screen and (max-width: 640px){
	body #page-container .gform_wrapper .gf_simple_horizontal .gform_footer.top_label{
	text-align: center; 
}
}

@media only screen and (min-width: 981px) and (max-width: 1100px) {
  .home_sidebar_subscrive .gform_body {
    min-width: 150px;
  }
  body #page-container .home_sidebar_subscrive .gform_body .ginput_container {
    font-size: 13px;
  }
  div#et-boc .home_sidebar_subscrive {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .home_sidebar_subscrive .gform_button {
    width: 105px;
  }
}
@media only screen and (min-width: 1101px) and (max-width: 1279px) {
  .home_sidebar_subscrive .gform_body {
    min-width: 150px;
  }

  .home_sidebar_subscrive .gform_button {
    width: 120px;
  }

  div#et-boc .home_sidebar_subscrive {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
@media only screen and (min-width: 1280px) and (max-width: 1439px) {
  .home_sidebar_subscrive .gform_body {
    min-width: 200px !important;
  }

  .home_sidebar_subscrive .gform_button {
    width: 110px;
  }

  div#et-boc .home_sidebar_subscrive {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
@media all and (min-width: 1440px) and (max-width: 1650px) {
  .home_sidebar_subscrive .gform_body {
    min-width: 237px !important;
  }
  .home_sidebar_subscrive .gform_button {
    width: 130px;
  }

  div#et-boc .home_sidebar_subscrive {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}
@media only screen and (min-width: 1651px) and (max-width: 1850px) {
  .home_sidebar_subscrive .gform_body {
    min-width: 245px;
  }
}
.cmn_subscrive .gform_footer {
  vertical-align: top !important;
}
.cmn_subscrive .gform_body {
  vertical-align: top !important;
}
/* for hom */
.home_sidebar_subscrive input[type="email"] {
  border: 1px solid #e0e0e0 !important;
  background: #fff !important;
  color: #a0a0a0 !important;
}
/* up */
/* place holder  */

.home_sidebar_subscrive input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #a0a0a0;
}

.home_sidebar_subscrive input::-moz-placeholder {
  /* Firefox 19+ */
  color: #a0a0a0;
}

.home_sidebar_subscrive input:-ms-input-placeholder {
  /* IE 10+ */
  color: #a0a0a0;
}

.home_sidebar_subscrive input:-moz-placeholder {
  /* Firefox 18- */
  color: #a0a0a0;
}
/* update  */
/* end 3rd section */
@media all and (min-width: 981px) {
  .home_side_bar div#text-5 {
    margin-bottom: 0px;
  }
}
.sidebar_right_blog .et_pb_post:last-child {
  margin-bottom: 0px;
}
.sidebar_right_blog h2.entry-title {
  padding-top: 4% !important;
}
.home_well_blog h2.entry-title {
  padding-top: 3% !important;
}
@media only screen and (min-width: 1401px) and (max-width: 1800px) {
  .home_well_blog h2.entry-title {
    padding-top: 1% !important;
  }
}
@media only screen and (min-width: 981px) and (max-width: 1400px) {
  body #page-container .home_well_blog h2.entry-title {
    padding-top: 0 !important;
  }
}

@media only screen and (min-width: 981px) and (max-width: 1300px) {
  .sidebar_right_blog h2.entry-title {
    padding-top: 1% !important;
  }
  .home_well_blog h2.entry-title {
    padding-top: 1% !important;
  }
}

/* up */
.sidebar_title:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  background: #eeeeee;
  left: 0;
  bottom: 0;
}
.section_title h2 {
  padding-bottom: 15px;
}
/* u */
.grid_cmn .et_pb_post {
  padding: 0;
}
/* slider up  */
/* ul */
/* single blog  */
.sidebar_tags a {
  padding: 7px 13px;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  transition: 0.3s ease-in;
  margin-right: 15px;
  margin-bottom: 10px;
  display: inline-block;
}

.sidebar_tags a:last-child {
  margin-right: 0 !important;
}
/* el */
.sidebar_tags .et_pb_blurb_container {
  padding-left: 0 !important;
}
body div#et-boc .sidebar_tags a:hover {
  background: #11c4f4;
  color: #ffff !important;
}
/* up */
.custom_author_single_page,
.custom_catagory,
.cat_egory {
  display: inline-block;
}

/* up */
.custom_date .et_pb_blurb_container,
.custom_comment .et_pb_blurb_container {
  position: relative;
  padding-left: 23px !important;
}
.custom_date .et_pb_blurb_container:after,
.custom_comment .et_pb_blurb_container:after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 17px;
  background: url(/wp-content/uploads/Group-49.png);
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
}
.custom_comment .et_pb_blurb_container:after {
  background: url(/wp-content/uploads/comment-white-oval-bubble.png);
  background-repeat: no-repeat;
}
/* up */
.custom_catagery_c .et-pb-icon {
  left: 5px;
  position: relative;
  top: -3px;
}

.et_pb_blurb_container {
  padding-left: 0px !important;
}
/* up author */
.abfd-container {
  background: #fbfbfb;
  border-color: #fbfbfb !important;
}

.abfd-name {
  font-size: 21px;
  font-weight: bold;
}

.abfd-social-networks a {
  background: #cccccc;
  padding: 10px;
  width: 45px;
  height: 45px;
  transition: 0.3s ease-in;
}

.abfd-container .abfd-social-networks a:before {
  font-size: 20px;
  line-height: 25px;
  color: #fff;
}

.abfd-social-networks a:hover {
  background: #11c4f4;
}
/* up comment  */
.custom_comment input[type="text"],
.custom_comment input[type="email"],
.custom_comment input[type="url"],
.custom_comment textarea {
  padding: 16px !important;

  padding-left: 20px !important;
}

/* social  */
.addtoany_header {
  font-size: 20px;
  font-weight: bold;
  color: #263843;
  display: inline-block;
  margin-right: 5px !important;
}

span.a2a_svg {
  background: #8d8d8d !important;
  border-radius: 50% !important;
  padding: 5px;
  transition: 0.3s ease-in;
}

span.a2a_svg:hover {
  background: #11c4f4 !important;
}
/* end social  */

/********************************************************* End home page area ***************************************/

/*********************************************************  Start Global area  ***************************************/

/*Equal Height for row*/

.equalHeight .et_pb_column {
  margin: auto;
}

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

/*Column Reverse*/

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

/*Blog fix*/

@media (max-width: 980px) {
  body
    #page-container
    .et_pb_column
    .et_pb_blog_grid
    .column.size-1of2
    .et_pb_post {
    margin-bottom: 42px;
  }
  body
    #page-container
    .sidebar_right_blog
    .et_pb_column
    .et_pb_blog_grid
    .column.size-1of2,
  .et_pb_column .et_pb_widget {
    width: 100%;
  }
}
body #page-container .sidebar_right_blog .et_pb_post .entry-featured-image-url {
  margin-bottom: 0px;
}
body #page-container .sidebar_right_blog .entry-featured-image-url {
  padding-bottom: 0px;
}

/* @media (max-width: 980px){
	body #page-container .for_blog_page .et_pb_column .et_pb_blog_grid .column.size-1of2:nth-child(odd), .et_pb_column .et_pb_widget:nth-child(odd) {
    clear: none !important;
}
} */

@media only screen and (min-width: 768px) and (max-width: 980px) {
  body
    #page-container
    .single-clm-blg-mbl.for_blog_page
    .et_pb_blog_grid
    .size-1of2 {
    padding-bottom: 0px;
  }
  body #page-container .for_blog_page .column.size-1of2 {
    width: 44.25% !important;
    clear: none !important;
  }
}
/*Sidebar*/
 body #page-container .home_sidebar_subscrive .gform_wrapper .gform_validation_errors{
	display: none;
}
@media only screen and (min-width: 641px) and (max-width: 980px) {
  .home_sidebar_subscrive .gform_wrapper {
    margin: 0 auto !important;
    display: inline-block;
  }
	
}
@media only screen and (max-width: 640px){
	body #page-container .home_sidebar_subscrive .gform_footer.top_label input.gform_button {
		height: 44px !important;
    width: 118px;
		font-size: 12px !important;
	}
}

/********************************************************* End Global area  ***************************************/

/* -- CONTACT PAGE -- */

/* Contact Form */

body #page-container .contact-form-custom .ginput_container input,
body #page-container .contact-form-custom .ginput_container textarea {
  background-color: transparent;
  font-size: 14px;
  color: #aaa;
  padding: 16px;
  line-height: initial;
  height: initial;
  border: 1px solid #e6e6e6;
  border-radius: 5px;
  padding-left: 20px;
}

body
  #page-container
  .contact-form-custom
  .gform_wrapper
  .gform_footer
  input.button,
body .gform_wrapper .gform_page_footer input.button,
body
  div.form_saved_message
  div.form_saved_message_emailform
  form
  input[type="submit"] {
  background-color: #11c4f4;
  border: none !important;
  border-radius: 0px !important;
  padding: 16px 50px;
  letter-spacing: 2px;
}

body
  #page-container
  .contact-form-custom
  .gform_wrapper
  .gform_footer
  input.button:hover {
  background-color: #8d8d8d;
}

body #page-container .contact-form-custom .gform_wrapper .gform_footer,
body .gform_wrapper .gform_page_footer {
  text-align: left;
}

/* Contact Form Responsive */

@media only screen and (max-width: 980px) {
  body
    #page-container
    .contact-form-custom
    .gform_wrapper
    .gform_footer
    input.button,
  body .gform_wrapper .gform_page_footer input.button,
  body
    div.form_saved_message
    div.form_saved_message_emailform
    form
    input[type="submit"] {
    font-size: 14px;
  }
}
@media only screen and (max-width: 768px) {
  body
    #page-container
    .contact-form-custom
    .gform_wrapper
    .gform_footer
    input.button,
  body .gform_wrapper .gform_page_footer input.button,
  body
    div.form_saved_message
    div.form_saved_message_emailform
    form
    input[type="submit"] {
    width: 100%;
  }
  body
    #page-container
    .contact-form-custom
    .gform_wrapper
    .gform_footer
    input.button,
  body .gform_wrapper .gform_page_footer input.button,
  body
    div.form_saved_message
    div.form_saved_message_emailform
    form
    input[type="submit"] {
    padding: 12px 30px;
    margin-top: 0;
  }
  body #page-container .contact-form-custom .gform_footer {
    text-align: center !important;
  }
}

/*-- BLOG PAGE --*/

.for_blog_page .post-content {
  margin-bottom: 40px;
}

/* -- About page image fix -- */

@media only screen and (max-width: 980px) {
    .three-columns .et_pb_column {
    width: 33%!important;
}
	.three-columns.equalHeight .et_pb_column {
  margin: auto !important;
}

.three-columns.equalHeight .et_pb_column:first-child {
  margin-left: 0 !important;
}
}
 
@media only screen and (max-width: 479px) {
    .three-columns .et_pb_column {
    width: 100%!important;
}
}
@media only screen and (max-width: 980px) {
    .four-columns .et_pb_column {
    width: 22%!important;
}
.four-columns.equalHeight .et_pb_column {
  margin: auto;
}

.four-columns.equalHeight .et_pb_column:first-child {
  margin-left: 0;
}
}
 
@media only screen and (max-width: 479px) {
    .four-columns .et_pb_column {
    width: 100%!important;
}
}

.four-columns

/*Home page blog slider*/

.post_slider .et-pb-arrow-next {
  position: absolute !important;
  background-color: #fff;
  height: 52px;
  width: 51px;
}

.post_slider .et-pb-arrow-prev,.post_slider a.et-pb-arrow-next {
  position: absolute !important;
  background-color: #fff;
  height: 52px;
  width: 51px;
}
@media only screen and (min-width: 1810px) {
  .post_slider .et-pb-arrow-next {
    top: 73%;
    right: 52.8% !important;
    opacity: 1 !important;
	  
  background-color: #fff;
  }
  @media (max-width: 767px) {
    #logo {
      max-height: 85% !important;
      max-width: 70% !important;
    }
  }

  .post_slider .et-pb-arrow-prev {
    top: 85.6%;
    left: 44.1% !important;
    opacity: 1 !important;
  }
}

@media (max-width: 980px) {
	.post_slider .et-pb-arrow-prev {
 	top: 22%;
    opacity: 1;
  }
  .post_slider .et-pb-arrow-next {
    top: 22%;
    opacity: 1;
  }
}
@media (max-width: 767px) {
	.post_slider .et-pb-arrow-prev {
 	top: 34%;
    opacity: 1;
  }
  .post_slider .et-pb-arrow-next {
    top: 34%;
    opacity: 1;
  }
}
@media only screen and (min-width: 1701px) and (max-width: 1810px) {
  .post_slider .et-pb-arrow-prev {
    height: 52px;
    width: 50px;
    top: 80.6%;
    left: 44% !important;
    opacity: 1 !important;
  }
  .post_slider .et-pb-arrow-next {
    top: 68.5%;
    right: 52.9% !important;
    height: 52px;
    width: 50px;  
    opacity: 1 !important;
  }
}
@media only screen and (min-width: 1600px) and (max-width: 1700px) {
  .post_slider .et-pb-arrow-prev {
    height: 52px;
    width: 50px;
    top: 79.6%;
    left: 43.6% !important;
    opacity: 1 !important;
  }
  .post_slider .et-pb-arrow-next {
    top: 67.5%;
    right: 52.9% !important;
    height: 52px;
    width: 51px;	  
    opacity: 1 !important;
  }
}

.post_slider .et-pb-arrow-next:hover,
.post_slider .et-pb-arrow-prev:hover {
  background: #83cd28;
}
.post_slider .et-pb-arrow-next:hover:before,
.post_slider .et-pb-arrow-prev:hover:before {
  color: #fff !important;
}

.post_slider .et_pb_slide_title {
  padding-bottom: 1.5em;
}
body #page-container .post_slider .et_pb_slide_content .post-meta {
  padding-bottom: 20px !important;
}
/* @media only screen and (max-width: 1810px){
	.post_slider .et-pb-arrow-next{
    right: 52.7%!important;
    background: #fff;
    height: 52px;
    top: 65%;
    width: 53px;
}

	.post_slider .et-pb-arrow-prev{
    left: 43.6%!important;
    background: #fff;
    height: 52px;
    top: 76.6%;
    width: 64px;
}
} */
/* update 30 */
.custom_phone ul li::marker {
    content: "\e090" !important;
    color: #000 !important;
}

.inline-block-cls{
	display:inline-block
}



/********************************************************* end custom design  ******************************************************/
