:root {
  --cta-main-color: #C02942;
  --link-main-color: white;
  --text-main-color: #F9F9F9;
  --background-gray-color: #F9F9F9;
  --background-dark-color: #014E75;
  --highlight-color: #014E75;
}

/****************** 
   HERO SECTION 
*******************/
#coins-hero {
  background-color: black;
  background-image: url("../images/coins/shopping.jpg");
  background-position: bottom;
  background-attachment: scroll;
  min-height: 60vh;
}

#coins-hero-cta-box {
  background-color: var(--background-dark-color);
  color: var(--text-main-color);
  padding: 20px;
}

#coins-hero-cta-box h1, #coins-hero-cta-box button {
  color: var(--text-main-color);
}

#coins-hero-cta-box h1 {
  line-height: 1;
  margin-bottom: 0;
}

#coins-hero-cta-box p {
  font-size: 16px;
  margin-bottom: 5px;
}

#coins-hero-cta-box button {
  background-color: var(--cta-main-color);
  width: 100%;
  padding: 10px;
  font-size: 20px;
  text-transform: uppercase;
}

@media only screen and (min-width: 700px) {
  #coins-hero-cta-box {
    width: 50%;
    padding-left: 5%;
  }

  #coins-hero-cta-box button {
    width: 300px;
  }
}

@media only screen and (min-width: 1000px) {
  #coins-hero {
    min-height: 50vh;
  }
}

@media only screen and (min-width: 1200px) {
  #coins-hero {
    padding-top: 15%;
    padding-bottom: 10%;
  }

  #coins-hero-cta-box {
    width: 40%;
  }
}

/****************** 
   OFFERS SECTION 
*******************/
#coins-offers {
  padding: 30px 20px;
}

#coins-offers h1 {
  font-size: 24px;
  line-height: 1;
  margin-bottom: 10px;
}

#coins-offers .coins-offer-single {
  border: 1px solid black;
  padding: 20px;
  margin-bottom: 10px;
}

#coins-offers .coins-offer-single h2 {
  font-size: 20px;
  color: var(--highlight-color);
}

#coins-offers .coins-offer-single p {
  font-size: 18px;
  margin-bottom: 0;
}

#coins-offers .coins-offer-single p span {
  font-weight: bold;
  font-size: 16px;
}

#coins-offers .coins-offer-single a {
  color: var(--cta-main-color);
  font-size: 20px;
}

@media only screen and (min-width: 700px) {
  #coins-offers .coins-offer-single {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #coins-offers .coins-offer-single a {
    min-width: 150px;
    margin-left: 5px;
  }
}

@media only screen and (min-width: 100px) {
  #coins-offers {
    padding: 30px 5%;
  }
}

/****************** 
   HISTORY SECTION 
*******************/
#coins-history {
  margin: 0;
  padding: 0;
}

#coins-history #coins-history-content {
  background-color: var(--background-dark-color);
  padding: 40px 20px;
}

#coins-history-content .coins-liberty-image {
  display: none;
}

#coins-history #coins-history-content #coins-history-text, #coins-history #coins-history-content #coins-history-text h1 {
  color: var(--text-main-color);
}

#coins-history #coins-history-content #coins-history-text h1 {
  line-height: 1;
  font-size: 24px;
  margin-bottom: 15px;
}

#coins-history #coins-history-content #coins-history-text p {
  font-size: 16px;
  margin-bottom: 5px;
}

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

  #coins-history #coins-history-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 30px 5%;
  }

  #coins-history-content .coins-liberty-image {
    display: block;
    min-width: 30%;
    background-image: url("../images/coins/liberty.jpg");
    background-size: cover;
    margin-right: 20px;
  }
}

@media only screen and (min-width: 1200px) {
  #coins-history #coins-history-content {
    justify-content: center;
  }

  #coins-history-content .coins-liberty-image {
    max-width: 30%;
  }

  #coins-history-content #coins-history-text {
    max-width: 30%;
  }
}

/****************** 
   FAQs SECTION 
*******************/
#coins-faqs {
  padding: 30px 20px;
}

#coins-faqs h1 {
  color: var(--highlight-color);
  line-height: 1;
  font-size: 24px;
  margin-bottom: 15px;
}

#coins-faqs .coins-faq h2 {
  line-height: 1;
}

#coins-faqs .coins-faq p, ul {
  font-size: 16px;
}

#coins-faqs .coins-faq p {
  margin-bottom: 5px;
}

@media only screen and (min-width: 700px) {
  #coins-faqs {
    padding: 5% 10%;
  }
}

@media only screen and (min-width: 1000px) {
  #coins-faqs {
    padding: 5% 12%;
  }
}

@media only screen and (min-width: 1200px) {
  #coins-faqs {
    padding: 5% 15%;
  }
}

/****************** 
   CTA SECTION 
*******************/
#coins-cta {
  background-color: var(--background-dark-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 20px 35px;
}

#coins-cta h1 {
  color: white;
  text-align: center;
  margin-bottom: 5px;
}

#coins-cta a {
  margin: 0 auto;
  width: 100%;
}

#coins-cta a button {
  background-color: var(--cta-main-color);
  color: white;
  font-size: 20px;
  text-transform: uppercase;
  padding: 5px;
  width: 100%;
}

@media only screen and (min-width: 700px) {
  #coins-cta a {
    width: 75%;
  }
}

@media only screen and (min-width: 1000px) {
  #coins-cta {
    padding: 30px 20px 40px;
  }

  #coins-cta h1 {
    color: white;
    text-align: center;
    margin-bottom: 10px;
  }

  #coins-cta a {
    width: 50%;
  }
}