/**
 * Theme Name: Barringer
 * Template:   arthurelliott
 * Author: Arthur Elliott
 * Version: 1.0
 * text Domain: arthur_elliott
 */
/* Result Page CSS*/
/* Heading CSS*/
h1.archive-header {
    font-size: 50px !important;
    color:  #fff !important;
	  text-align:center !important;
	  font-weight: 500 !important;
	margin-top: 25px;
	line-height: 1.25em;
}

/* Search Bar CSS*/
.search-form {
  display: flex;
  align-items: center;
  gap: 10px; 
}

.search-form .screen-reader-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
  display: inline-block;
}

.search-form .search-field {
  width: 250px;
  padding: 18px 12px;
  border: 2px solid #e1171d;
  border-radius: 20px;
	background-color: black;
  font-size: 15px;
  transition: border-color 0.3s ease;
	color: white;
	outline: none;
}

.search-form .search-field::placeholder {
  color: white;
}

.search-form .search-submit {
  padding: 11px 9px;
  background-color: #e1171d;
  border: none;
  color: #fff;
  font-size: 15px;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease;
	margin-top: -18px;
	position: relative;
	right: 75px;
}

/*Search Result CSS on Result page*/
.archive-main section article {
	background-color: black;
	border: 1px solid white;
	border-radius: 20px;
	padding: 50px;
	color: white;
	margin-left: 10px;
    margin-right: 10px;
	padding-bottom: 5px;
}
h3.archive-post-title a {
	color: white;
}

h3.archive-post-title a:hover {
	color: #e1171d;
}

h3.archive-post-title  {
	color: white;
}

.archive-post-content .post-content-preview {
	padding: 10px;
}

a.read-more-button {
	padding: 11px 18px;
  background-color: #e1171d;
  border: none;
  color: #fff;
  font-size: 15px;
  border-radius: 30px;
	font-weight: 600;
	letter-spacing: 1.5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
	margin-bottom: 30px;
}

a.read-more-button:hover {
	background-color: #7A0F05;
	color: white;
}

.taxonomy-heading h1 {
	margin-top: 40px;
}



/* Search field css for portfolio and sidebar*/
.is-form-style.is-form-style-3 label {
	width: auto !important;
	margin-bottom: 0px;
}

.is-form-style input.is-search-input {
	background-color: black;
	border: 2px solid #E1171D !important;
	width: 400px;
	border-radius: 20px;
	font-family: HCo Gotham, sans-serif;
	color: white;
}

.is-form-style input.is-search-input::placeholder {
	color: white;
}

span.is-search-icon {
	background-color: #E1171D;
	border: none;
	border-radius: 50%;
	position: relative;
    left: -36px;
}

span.is-search-icon:hover {
	background-color: #E1171D;
}

.is-form-style .is-search-submit path {
	fill: white;
}



/* Not result found page CSS*/
.no-results h2 {
	color: white;
}

.no-results h3 {
	color: white;
}

/* Below search bar space adding css in sidebar*/
.header-secondary {
	margin-top: 20px;
}

/* To align the heading in center*/ 
.query-header-container {
	margin-left: 40px;
}

/*Page not found CC*/ 
main#page-not-found {
	background-color: black !important;
	text-align: center;
	color: white;
}

main#page-not-found h1 {
	color: white;
}

@media screen and (max-width: 886px) {
	.search-form .search-submit {
	margin-top: -21px;
}
}

@media screen and (max-width: 560px) {
	
	/*Search result container css*/
	.archive-main section article {
	border-radius: 15px;
	padding: 15px;
	color: white;
	margin-left: 10px;
    margin-right: 10px;
}
	/* Search result heading*/
	h1.archive-header {
	margin-top: 15px;
	line-height: 50px;
}

	/* sidebar search input*/
	.is-form-style input.is-search-input {
	width: 250px;
}
	/* To align the heading in center*/ 
.query-header-container {
	margin-left: 0px;
}
}
/* added css for portfolio search*/
div#portfolio-search-bar {
    display: flex;
    justify-content: flex-end;
}
.toggle-filter-button {
    right: 35px;
    }

div#portfolio-search-bar{
    position: relative;
    top: 35px;
}

/* added css for portfolio search result page */

.post-type-archive-project .query-content-container h5{
	display: none;
}
.post-type-archive-project .archive-post-content p{
	display: none;
}

@media screen and (min-width: 768px) {

.post-type-archive-project h3.archive-post-title {
    color: white;
    width: 50%;
    text-align: right;
    display: flex;
    justify-content: flex-end;
    margin-left: auto;
    text-align: left;
}
.post-type-archive-project img{
    width: 42% !important;
    margin-top: -105px;
}

.post-type-archive-project a.read-more-button {
    margin-left: 450px;
    margin-top: -82px !important;
    position: relative;
    top: -175px;
	}
}
@media screen and (max-width: 768px) {
.post-type-archive-project h3.archive-post-title{
 text-align: center;
}
.post-type-archive-project img {
     margin-left: auto;
    margin-right: auto;
}

.post-type-archive-project a.read-more-button {
    display: flex;
    justify-content: center;
    width: 130px;
	margin-right: auto;
    margin-left: auto;
}
}




