/*Change button color to white on forms */
form input[type='submit'],
#searchsubmit {
    color: white;
}

/*Remove padding on homepage*/
.homepage .page-content,
.content {
	padding-bottom: 0;
}

/* Add copyright to footer  */
.footer-information {
  font-size: 0;
}
.footer-information .content::before {
  content: '© Copyright 2020 GM Machinery Tools Private Limited · All Rights Reserved';
  font-size: initial;
  margin:0 auto;
	padding-top: 10px;
}

/*Center align Read More button*/
a.more-link {
	text-align: center;
    margin: 0 auto;
    display: block;
    width: 11%;
    margin-bottom: 10px;
}
@media only screen and (max-width: 600px) {
	a.more-link {
		width:40%;
	}
}

/*Hide headline*/
.parent-pageid-6134 .content h1.headline {
	display: none;
}


/*Make featured slider unclickable on homepage*/
.home .flexslider .post a {
	pointer-events: none;
}

/*Increase menu font size*/
#navigation li a {
    font-size: 15px;
}

/*Justify text*/
.justify-text {
	text-align: justify;
}

/*Darken the image behind text*/
.custom-header-image:before,
.page-banner:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.45);
}

/*Make the menu lighter when sticky header plugin is active*/
#mysticky-nav .dark-header-text.myfixed .menu a,
 .dark-header-text.myfixed #navigation .menu li.current-menu-ancestor a, .dark-header-text.myfixed #navigation .menu li.current_page_ancestor a, .dark-header-text.myfixed #navigation .menu .current_page_item a, .dark-header-text.myfixed #navigation .menu .current_page_ancestor a, .dark-header-text.myfixed #navigation .menu .current-menu-item a, .dark-header-text.myfixed #navigation .menu .current-cat a
{
    color: rgba(255, 255, 255, 1);
}


/*Increase submenu width*/
.menu ul ul, ul.menu ul {
    width: 340px;
  }

/*Hide spacer on mobile*/
@media handheld, only screen and (max-width: 600px) {
  .mobile-spacer {
      display:none;
    }
  }
