/*
=============== 
Global Styles
===============
*/

body{
	margin:0;
	width: 100%;
	height: 100%;
	font-family: "Trade Gothic Next LT", Verdana, sans-serif;
	/*font-size: 18px;*/
	background-color: #000;

}

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


a {
  text-decoration: none;
}


p {
  margin-bottom: 1.25rem;
  color: hsl(209, 61%, 16%);
}


@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
    padding: 22p 0;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.25rem;
    line-height: 1.25;
    padding: 25px 65px;
  }

  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3{
    line-height: 1;
  }
}


/*  global classes */

.btn {
  text-transform: uppercase;
  background: transparent;
  color: #222;
  padding: 0.375rem 0.75rem;
  letter-spacing: 0.25rem;
  display: inline-block;
  transition: all 0.3s linear;
  font-size: 0.875rem;
  border: 2px solid #222;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: .5rem;
}

.btn:hover {
  color: #fff;
  background: #222;
}

/* section */
.section {
  padding: 5rem 0;
}

.section-center-faqs {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
}


@media screen and (min-width: 992px) {
main {
  min-height: 100vh;
  display: grid;
  place-items: center;
}



/*
=============== 
Questions
===============
*/
.title {
  margin-top: 15vh;
  margin-bottom: 4rem;
}

.title h2 {
  color: #c59d5f;
  font-family: "Great Vibes", cursive;
  /*text-align: center;*/
  margin: auto;
}

.center {
  text-align: center;
}
     
.fax-ex{
  text-align: center;
  max-width: 60%;
  margin: auto;
}

.section-center-faqs {
  max-width: 80%;
 position: relative;
  padding: 20px;
	padding-bottom: 140px;
	margin: 0 auto;
	background-color: #f9f0d8;

}

.section-center-questions {
  width: 75%;
  position: relative;
  margin: auto;
}
.question {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 1.5rem 1.5rem 0 1.5rem;
  margin-bottom: 2rem;
}
.question-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: capitalize;
  padding-bottom: 1rem;
}
.question-title p {
  margin-bottom: 0;
  letter-spacing: 0.25rem;
  color: var(--clr-grey-1);
}
.question-btn {
  font-size: 1.5rem;
  background: transparent;
  border-color: transparent;
  cursor: pointer;
  color: #c59d5f;
  transition: all 0.3s linear;
  display: inline;
}
.question-btn:hover {
  transform: rotate(90deg);
}
.question-text {
  padding: 1rem 0 1.5rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.question-text p {
  margin-bottom: 0;
}
}

/* hide text */
.question-text {
  display: none;
}
.show-text .question-text {
  display: block;
}
.minus-icon {
  display: none;
}
.show-text .minus-icon {
  display: inline;
}
.show-text .plus-icon {
  display: none;
} 
