/** Course pa*/
.course-content .cource_title {
  width: 39%;
  display: inline-block;
  text-align: left;
}

.course-content .frist-row {
  width: 100%;
  display: inline-block;
  /* padding: 20px 0; */
}

.course-content  .course_image {
  width: 60%;
  display: inline-block;
  vertical-align: top;
}

.course-content  .cource_title h1 {
  font-size: 46px;
  padding: 20px 40px;
}

.course-content  .content-box {
  width: 60%;
  display: inline-block;
  font-size: 18px;
  margin-bottom: 30px;
}

.course-content  .second-row {
  padding: 25px 0;
}

.course-content  .second-row .course_image {
  display: inline-block;
  width: 39%;
  margin-top: -45px;
  vertical-align: top;
}

a.cource-btn {
  display: flex;
  background: #FFBD59;
  width: 150px;
  padding: 5px 20px;
  text-align: center;
  color: #000;
  box-shadow: 15px 15px;
  margin: 10% 5% 0 10%;
  font-weight: bold;
}
a.cource-btn:hover {
  text-decoration: none;
  color: #fff;
  box-shadow: 15px 15px #000;
}
.course-upcommin .frist-row {
  background: #FE6912;
  display: inline-block;
}

.course-upcommin .second-row {
  display: inline-block;
  padding: 5% 6%;
  text-align: center;
}

.course-upcommin .frist-row .course_image {
  width: 60%;
  display: inline-block;
}

.course-upcommin .frist-row .course_upcomin {
  width: 39%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
}

.course-upcommin .frist-row a.cource-btn {margin: 0 auto;}

.course-upcommin .frist-row .course_upcomin h2 {
  color: #fff;
  padding-bottom: 30px;
}
section.course-products {
  background: #FFBD59;
  padding: 50px 0 0px 0;
}
section.course-products .bottom-notes {padding: 5% 0;}

section.course-products .bottom-notes p {font-weight: bold;font-size: 16px;text-align: center;}

.product-listing.grid-container {
  display: inline-block;
  width: 100%;
}

.product-listing.grid-container .grid-item {
  float: left;
  width: 48%;
  background: #fff;
  text-align: center;
  margin: 1%;
}

.product-listing.grid-container .grid-item .item_details {padding: 25px 25px 0 25px;width: 50%;float: left;}
.product-listing.grid-container .grid-item .item-im  {/* padding: 25px; */width: 50%;float: left;}

.product-listing.grid-container .grid-item .item-im img {
  min-height: 38px;
}

.product-listing.grid-container .grid-item .item_details .notes {
  font-size: 10px;
  display: inline-block;
  margin: 20px 0;
  /* vertical-align: bottom; */
}

.product-listing.grid-container .grid-item .item_details a.cource-btn {
  font-weight: bold;
  font-size: 22px;
  padding: 0;
  display: inline-block;
}

.product-listing.grid-container .grid-item .item_details h3 {
  font-weight: bold;
  color: #FE6912;
}

.product-listing.grid-container .grid-item .item_details .date {
  font-weight: bold;
  font-size: 18px;
}
.product-listing.grid-container .grid-item .item_details .course-short-content{min-height:130px}
.product-listing.grid-container .grid-item .item_details .course-short-content p {
  font-size: 18px;
}

/**********************/
.hero {
  text-align: center;
  background: #14a2dd;
  color: #fff;
  padding: 80px 0;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero h2, .hero h1 {
  font-size: 36px;
  margin-bottom: 20px;
  color:#fff
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color:#fff
}

.hero .btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #00bcd4;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #0193a5;
}


.home_grid.grid-container {
  display: flex;
  background-color: #f7932e;
  padding: 20px;
}

.home_grid .grid-item {
  flex: 1;
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  margin: 10px;
}

.home_grid .grid-item h2 {
  margin-top: 0;
  color: #14a2dd;
}

.home_grid .grid-item p {
  margin: 10px 0;
}
.home_grid.grid-item p.date {
  color: #f7932e;
}
/** Sponser css  ----------------------------- */
   h2.title {
    text-align:center;
    padding: 10px;   
    text-transform:uppercase;
    font-size:26px; letter-spacing:1px;
    
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: 16px 0;
    grid-gap: 22px;
  }
  
  h2.title:after, h2.title:before {
    content: " ";
    display: block;
    border-bottom: 2px solid #ccc;
    background-color:#f8f8f8;
  }
.row.logo-contain img {
  width: 50%;
}
/** Galley CSS **/

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-gap: 10px;
  max-width: 1200px;
  margin: 20px auto;
}

.image {
  border: 1px solid #ccc;
  border-radius: 5px;
  overflow: hidden;
}

.image img {
  width: 100%;
  height: auto;
  display: block;
}

.image img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Responsive Design */

/* Mobile Layout */
@media screen and (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 5px;
    margin: 10px auto;
  }
}

/* Tablet and Desktop Layout */
@media screen and (min-width: 601px) {
  .gallery {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    grid-gap: 10px;
    margin: 20px auto;
  }
}

/*** end of the galley**/

/* img.woocommerce-placeholder.wp-post-image {
  visibility: hidden;
  height: 19px;
  } */
  .hide {display: none !important;}
  .storefront-sticky-add-to-cart__content a.button{
    padding: 5px 10px;
  }

  ul.sub-menu-product{
    display: inline-block;
    position: absolute;
    width: 600px;
    margin: 0 auto;
    top: 50%;
    left: 25%;
    padding: 20px 0 0 0;
  }
  ul.sub-menu-product li a{
    transition: all 0.2s ease-out 0s;
    font-family: 'Oswald', sans-serif !important;
    font-size: 20px !important;
    font-weight: normal !important;
    color: #1a1b1e !important;
    /* text-transform: none !important; */
    text-align: center !important;
    text-transform: capitalize;
  }
  ul.sub-menu-product li a:focus, ul.sub-menu-product li a.active { color: #f7932e; text-decoration: underline;}
  ul.sub-menu-product li {
    display: inline-block;
    padding: 0 5px 0 5px;
    text-align: center;
    margin: 0 5px;
}

  /** end product menu*************/
  li.current-menu-item, #menu-primary li.parent_menu.current-menu-parent {
    border-bottom: solid 4px #43baff;
}
.billing_dietary_wrapper label.radio {
  margin-left: 10px;
}
  ul.sub-menu li a{
    transition: all 0.2s ease-out 0s;
    font-family: 'Oswald', sans-serif !important;
    font-size: 15px !important;
    font-weight: normal !important;
    color: #1a1b1e !important;
    text-transform: none !important;
    text-align: center !important;
  }
  ul ul.sub-menu {
    position: absolute;
    width: 365px;
    padding-left: 0px !important;
    display: none !important;
    top: 55px;
  }
ul.sub-menu li {
    display: inline-block;
    padding: 0 5px 0 5px;
    text-align: center;
    margin: 0 5px;
}
ul.sub-menu li a:hover {text-decoration: none !important;}

  #menu-primary li.parent_menu.current-menu-parent > ul.sub-menu,  #menu-primary li.parent_menu.current_page_item > ul.sub-menu {
   display: inline-block;
  }

 bdi{ color: #000;
    font-weight: bold;
}
.woocommerce-order-details table.order_details{
  width: 80%;
    margin: 0 auto;
}
.woocommerce-order-details table.order_details tfoot td, .woocommerce-order-details table.order_details td.product-total {
  padding-left: 10%;
}

ins {
  text-decoration: none;
}
.single-product .onsale {display: none;}
.single-product div.product {padding: 40px 0;}
.row.home_product {  padding: 50px 0;}
.return-to-shop a{
  background-color: #000 !important;
    color: #fff !important;
    padding: 10px;}

.row.home_product .btn, .btn{
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #ffffff;
  background-color: #5ba0d9;
  margin: 50px auto 0 auto;
}
.row.home_product .btn:hover{    background-color: #f7932e; }

[type=button]:hover, [type=reset]:hover, [type=submit]:hover, button:hover, .return-to-shop a:hover{
  background: #f7932e !important;
  color: #fff;
  text-decoration: none;
}

.woocommerce-MyAccount-content input{
  border: 1px solid
}

.page-template-template-fullwidth-php .woocommerce-MyAccount-content{
  float: none !important;
}

.page-template-template-fullwidth-php .woocommerce-MyAccount-content .form-row {
  display: block;
  padding: 0 15px;
}
.page-template-template-fullwidth-php .woocommerce-MyAccount-content .form-row  .show-password-input{
  padding: 0 0.618em;
}
div#timer {
    display: inline-block;
    line-height: 1;
    padding: 20px;
    font-size: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .timer_wrapper {
    width: 100%;
  }
  div#timer  span {
    display: block;
    font-size: 20px;
    color: #000;
    
  }
  
  #days {
    font-size: 100px;
    color: #db4844;
    font-family: 'Oswald', sans-serif !important;
    text-align: center;
  }
  #hours {
    font-size: 100px;
    color: #f07c22;
    font-family: 'Oswald', sans-serif !important;
    text-align: center;
  }
  #minutes {
    font-size: 100px;
    color: #f6da74;
    font-family: 'Oswald', sans-serif !important;
    text-align: center;
  }
  #seconds {
    font-size: 100px;
    color: #abcd58;
    font-family: 'Oswald', sans-serif !important;
    text-align: center;
  }


  /*----------intial declartaion of css----------*/
/*----- Normalize.css Start -----*/
/*----------intial declartaion of css----------*/
* { /*appearance:none; -moz-appearance:none;-webkit-appearance:none;*/ }
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, select, input, option, textarea { margin: 0; padding: 0; border: 0; outline: 0; /* list-style:none;*/ box-sizing: border-box; }
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section, summary { display: block; }
audio, canvas, video { display: inline-block; }
audio:not([controls]) { display: none; height: 0; }
pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word }
q { quotes: none }
q:before, q:after { content: ''; content: none }
small { font-size: 80% }
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline }
sup { top: -0.5em; }
sub { bottom: -0.25em }
nav ul, nav ol {list-style: none;list-style-image: none;}
button, input, select, textarea { margin: 0; vertical-align: baseline; }
textarea { overflow: auto; vertical-align: top }
table { border-collapse: collapse; border-spacing: 0 }
button, html input[type="button"], input[type="reset"], input[type="submit"], textarea { -webkit-appearance: none; border-radius: 0 }
/* remember to define focus styles! */
:focus { outline: 0; }
ol, ul {list-style: none; }
/* tables still need 'cellspacing="0"' in the markup */
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
a { text-decoration: none; }
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }
table { border: 0 none; border-collapse: collapse; border-spacing: 0; }
td { vertical-align: top; }
img { border: 0 none; max-width: 100%; }
a { outline: none; cursor: pointer; }
/* End hide from IE Mac */ .none { display: none; } /* End Clearfix */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block }
.clear { clear: both; }
img { max-width: 100%; }
/* For modern browsers */ 
.cf:before, .cf:after { content: ""; display: table }
.cf:after { clear: both; }
/* For IE 6/7 (trigger hasLayout) */
body{background: #fff; font-size: 20px; line-height: 1.65; color:#000; font-family: 'Lato', sans-serif; font-weight: 400;}


a,button,.btn,.cancel-btn, .cta-link,
ul li a:after,
ul.slick-dots li:after,
.services-wrap .services-icon,
.our-gallery .gallery-item,
.our-gallery .search-icon,
.our-gallery .gallery-item:after,
.item-img,
.item-img:after,
.events-section .item,
.section.portfolio .filters-content .item img,
.section.portfolio .filters-content .item a:after,
.section.portfolio .filters-content .item a:before,
.section.portfolio .filters-content .item .title,
.section.portfolio .filters,
input[type="button"],
input[type="reset"],
input[type="submit"]
{outline: none !important;transition: all 0.5s ease-in-out 0s;-moz-transition: all 0.5s ease-in-out 0s;-ms-transition: all 0.5s ease-in-out 0s;-o-transition: all 0.5s ease-in-out 0s;-webkit-transition: all 0.5s ease-in-out 0s;text-decoration: none;}

p { font-size: 20px; line-height: 1.65; color:#000; font-family: 'Lato', sans-serif; font-weight: 400; margin-bottom: 20px; }

b, strong{ font-weight: 700;}

h1,h2,h3,h4,h5 { clear: both;}

/* font-family: 'Lato', sans-serif;
font-family: 'Oswald', sans-serif;*/

h1 { font-size: 46px; margin-bottom: 15px; padding: 0; line-height: 1.35;}
h2, .h2 { font-size: 40px; margin-bottom: 20px; padding: 0; line-height: 1.25; color: #000; letter-spacing: 0px; font-family: 'Oswald', sans-serif; font-weight: 400;}
h3, .h3 { font-size: 28px; margin-bottom: 15px; padding: 0; line-height: 1.2; color: #000; font-family: 'Lato', sans-serif; font-weight: 400;}
h4, .h4 { font-size: 24px; margin-bottom: 20px; padding: 0; line-height: 1.35; color: #5ba0d9;font-weight: 700; }
h5 { font-size: 18px; margin-bottom: 20px; padding: 0; line-height: 1;}

h3 strong{
  color: #5ba0d9;
}


a { color: #5ba0d9; }
a:hover,
a:focus { color: #f7932e; text-decoration: underline;}

.widget-area .widget a:hover {
  color: #B73843;
}


img {max-width: 100%; height: auto;}


ul{ list-style: none; margin: 0; padding: 0;}
ul li{ margin: 0; position: relative; padding: 0;}

ul {
  list-style: disc;
  padding: 0px 0px 20px 20px;
}


input[type="submit"]{ width: 100%;}

.btn, 
.cta, 
button, 
.cta-link, 
input[type="submit"]{ 
  display: inline-block;
  font-weight: 400; 
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 20px;
  color: #ffffff;
  background-color: #5ba0d9;
  border-radius: 2px;
  text-transform: none;
  -webkit-appearance: none;
  position: relative;
  overflow: hidden;
  padding: 8px 20px;
}

.btn:hover, 
.cta:hover, 
button:hover, 
.cta-link:hover, 
input[type="submit"]:hover{
  background: #f7932e;
  color: #fff;
}



.w-20{ width: 20%;}
.w-25{ width: 25%;}
.w-30{ width: 30%;}
.w-33{ width: 33.33%;}
.w-35{ width: 35%;}
.w-40{ width: 40%;}
.w-45{ width: 45%;}
.w-50{ width: 50%;}
.w-55{ width: 55%;}
.w-60{ width: 60%;}
.w-65{ width: 65%;}
.w-70{ width: 70%;}
.w-100{ width: 100%;}



.d-flex { display: -webkit-box; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; flex-flow: row wrap;}

.bg-set { background-size: cover; background-repeat: no-repeat; background-position: center center;}

img.alignright{
  float: right;
  margin: 0px 0 20px 30px;
}
img.alignleft{
  float: left;
  margin: 0 30px 20px 0;
}

.wrapper{ }
/* 
.container{ max-width: 1210px; width: 100%; margin: 0 auto; padding: 0 15px;} */

.wrapper-section{
  padding: 10px 0 70px 0;
}
.wrapper-section h2{
  text-align: center;
}

/*----------intial declartaion of css end----------*/

/*----------Header and navigation ----------*/

.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(20, 29, 56, 0.15);
  position: relative;
  z-index: 1009;
}
.site-header .site-branding {
  width: 240px;
}

.main-navigation {
  width: 78%;
  padding-bottom: 20px;
}
.menu-toggle {
  display: none;
}
.primary-navigation ul {
  padding: 0 0 0 20px;
  margin: 0;
}
.main-navigation .primary-navigation > ul > li a:after {
     content: none !important;
}
.main-navigation .primary-navigation > ul > li {
  margin: 20px 14px;
  padding: 0px 0px;
  display: inline-block;
}
.main-navigation .primary-navigation > ul > li > a {
  background-color: transparent !important;
  display: inline-block;
  padding: 5px 0px;
  line-height: 1.25;
  text-decoration: none;
  text-align: center;
  outline: none;
  color: #1a1b1e;
  white-space: nowrap;
  -webkit-transition: all 0.2s ease-out 0s;
  -moz-transition: all 0.2s ease-out 0s;
  -o-transition: all 0.2s ease-out 0s;
  transition: all 0.2s ease-out 0s;
  font-family: 'Oswald', sans-serif !important;
    font-size: 23px !important;
    font-weight: normal !important;
    color: #1a1b1e !important;
    text-transform: none !important;
}
.main-navigation .primary-navigation > ul > li:before {
  position: absolute;
  height: 3px;
  width: 0;
  bottom: -3px;
  right: 0;
  background: #43baff;
  content: "";
  display: block;
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -o-transition: all 0.3s linear;
  -ms-transition: all 0.3s linear;
  
}
.main-navigation .primary-navigation > ul > li:hover:before,
.main-navigation .primary-navigation > ul > li.active:before, 
.main-navigation .primary-navigation > ul > lii.open:before {
  left: 0;
  right: auto;
  width: 100%;
}
.storefront-primary-navigation .container {
  position: relative;
}
.site-header-cart {
  position: absolute !important;
  right: 0;
  top: 4px;
}
.site-header-cart .cart-contents {
  padding: 4px 0 !important;
}
.site-header-cart .cart-contents span {
  display: inline;
  color: #000;
}
.site-header-cart .widget_shopping_cart .woocommerce-mini-cart__empty-message {
  font-size: 13px !important;
  margin: 0 !important;
  padding: 8px 8px !important;
  text-align: center;
}

.contain-section{
  padding:30px 0 50px;
  border-bottom: 2px solid #b6b3b3;
}

.menu_toggle_class{
  display: none;
}
del {
  display: none;
}
.site-header-cart .widget_shopping_cart{
  display: none !important;
}
span.onsale {
  position: absolute;
    background: green;
    color: #fff;
    font-weight: bold;
    transform: rotate(45deg);
    font-size: 12px;
    top: 10px;
    right: -20px;
}

ul.ul-listing {
  padding: 20px 0 50px 0;
}
ul.ul-listing li {
  padding: 5px 50px 5px 0;
  border-top: 1px solid #ddd;
  display: flex;
  justify-content: space-between;
}

.contain-section .container .logo-contain:first-of-type{
  border-top: 0;
}
.logo-contain {
  border-top: 2px dashed #f7932e;
  padding: 30px 0;
  align-items: center;
}

.presenters-call {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}
.presenters-call h2 {
  font-size: 22px;
  font-family: 'Lato', sans-serif;
  margin-bottom: 10px;
}

.woocommerce-product-details__short-description p {
  border-bottom: 1px solid #f7932e;
  padding-bottom: 6px;
}

.site-main ul.products li.product {
  margin: 0 20px 40px 0 !important;
  display: block;
  padding: 0 10px 50px;
  border: 1px solid #ddd;
  position: relative;
  transition: .3s all linear;
}
.site-main ul.products li.product:hover {
  box-shadow: 3px 6px 10px rgba(0,0,0,0.2);
  transform: scale(1.05);
  transition: .3s all linear;
}
.woocommerce-product-details__short-description ul{
  padding-left: 0;
}
.site-main ul.products li.product ul li, .woocommerce-product-details__short-description ul li {
  font-size: 20px;
  color: #000;
  display: block;
  line-height: 1.5;
  margin-bottom: 8px;
  text-align: left;
}
ul.products li.product .woocommerce-LoopProduct-link{
  text-decoration: none;
}

.woocommerce-MyAccount-navigation ul li a::before{
      float: none !important;
      margin-right: 20px !important;
}

.site-main ul.products li.product ul li:before, .woocommerce-product-details__short-description ul li:before{
  content: "";
  background-image: url(./assets/images/check.svg);
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: top;
  margin: 6px 9px 0 0;
}
h2.woocommerce-loop-product__title {
  font-size: 26px !important;
  font-size: 30px !important;
    font-weight: bold !important;
    color: #f7932e;
}
span.price {
  font-size: 24px;
}
ul.products {
  display: flex;
  padding: 0;
}
.add_to_cart_button {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0 !important;
  padding: 10px 20px;
  font-size: 20px;
  color: #fff;
  background: #000;
}
.add_to_cart_button:hover{
  background: #f7932e !important;
  color: #fff;
  text-decoration: none !important;
}
ul.products li.product .woocommerce-LoopProduct-link, ul.products .wc-block-grid__product .woocommerce-LoopProduct-link, .wc-block-grid__products li.product .woocommerce-LoopProduct-link, .wc-block-grid__products .wc-block-grid__product .woocommerce-LoopProduct-link {
  display: block;
  font-size: 20px;
  color: #000;
}

.quantity .qty {
  width: 4.235801032em;
  text-align: center;
  border: 1px solid;
  height: 43px;
}

.col2-set .col-1, .col2-set .col-2{
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}
table.cart {
  width: 100%;
}
table:not( .has-background ) th {
  background-color: #1a1b1e !important;
  color: #fff !important;
  font-size: 20px !important;
  padding: 4px 10px;
}

table.shop_table.shop_table_responsive{
  width: 100%;
}
table.shop_table_responsive tbody th {
  display: table-cell;
  margin-bottom: 40px;
  padding: 10px 10px;
}
.wc-proceed-to-checkout .button.checkout-button {
  padding: 10px 10px;
}
span.woocommerce-input-wrapper {
  display: block;
  width: 100%;
}
span.woocommerce-input-wrapper input , span.woocommerce-input-wrapper textarea, .coupon input {
  border: 1px solid;
  padding: 4px 10px;
}
table.woocommerce-checkout-review-order-table .product-name {
  border: 1px solid;
  padding: 6px 10px;
}
table:not( .has-background ) tbody td {
  /*border: 1px solid #000;*/
  padding: 5px 10px;
}
tr.cart-subtotal td, tr.order-total td {
  display: block;
  padding: 4px 10px;
  /* border-bottom: 1px solid;
  border-right: 1px solid; */
}
.select2-container .select2-selection--single {
  height: 40px;
  padding: 3px 0 0 0;
}
.select2-container--default .select2-selection--single {
  border: 1px solid #000;
  border-radius: 0px;
}








/*-----------Footer start here---------------*/
.footer-main{ 
  padding: 30px 0; 
  position: relative;
}
.footer-main .d-flex{
  justify-content: space-between;
  align-items: center;
}
.footer-main .copyright-info p{
  margin: 0;
  font-size: 16px;
}
.social-footer a {
  display: inline-block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  text-align: center;
  border: 1px solid #5ba0d9;
  border-radius: 50%;
  color: #5ba0d9;
  margin-top: 10px;
  margin-left: 10px;
  line-height: 38px;
  font-size: 18px;
}
.social-footer a:hover, .social-footer a:focus {
  color: #fff;
  background: #f7932e;
  border: 1px solid #f7932e;
}




@media only screen and (min-width: 992px) and (max-width: 2560px)  {
  .primary-navigation {
    display: block !important;
}
}

@media (max-width: 1500px) {


}

@media (max-width: 1200px) {
  .main-navigation {
    width: 74%;
}
.main-navigation .primary-navigation > ul > li {
  margin: 20px 8px;
}
.main-navigation .primary-navigation > ul > li > a{
  font-size: 20px !important;
}

}

@media (max-width: 1199px) {
  

}


@media (max-width: 1023px) {


}


@media (max-width: 991px) {

  .main-navigation {
    width: 100%;
}

.site-header-cart {
  top: -4px;
}
ul.sub-menu {
  display: block;
}
ul.sub-menu a {
  font-size: 16px;
    font-weight: normal;
    margin-left: 12px;
}

  .primary-navigation {
    background: #fff;
    width: 100%;
    display: none;
    opacity: 1 !important;
}
  .menu_toggle_class {
    display: block;
    position: absolute;
    background: none !important;
    border: 0 !important;
    font-size: 0 !important;
    padding: 0;
    top: 30px;
    right: 20px;
    cursor: pointer;
    width: 26px;
    height: 20px;
}

.menu_toggle_class span {
  position: absolute;
  left: 0;
  top: 50%;
  margin: -2px 0 0;
  background: #1b1d21;
  height: 2px;
  padding: 0;
  border: none;
  width: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  outline: none;
  border-radius: 2px;
}
.menu_toggle_class span:before {
  content: "";
  position: absolute;
  left: 0;
  top: -7px;
  width: 26px;
  height: 2px;
  background: #1b1d21;
  -webkit-transform-origin: 1.5px center;
  transform-origin: 1.5px center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  border-radius: 2px;
}
.menu_toggle_class span:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 26px;
  height: 2px;
  background: #1b1d21;
  -webkit-transform-origin: 1.5px center;
  transform-origin: 1.5px center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  border-radius: 2px;
}
.menu_toggle_class.icon-close span:before{
  top: 0;
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.menu_toggle_class.icon-close span:after{
  bottom: 0;
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg);
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}
.menu_toggle_class.icon-close span{
  background: none;
}
.main-navigation .primary-navigation > ul > li {
  margin: 0;
  padding: 10px 5px;
  display: block;
  text-align: center;
}
.primary-navigation ul {
  padding: 0;
  margin: 0;
}
  

}


@media (max-width: 767px) {


  ul.products{
    display: block;
  }
 

}