@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

/*---------------------- RESET & GLOBAL ----------------------*/
html, body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
}

*, *::before, *::after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

#wrapper {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 1rem;
}

/*---------------------- MAIN SECTIONS ----------------------*/
#imageurl {
  display: none;
}

#main {
  color: #333;
}

#disclaimer,
#disclaimer2 {
  max-width: 100%;
  text-align: center;
  margin: 0 auto;
}

#mobile-description,
#keywords {
  display: none;
}

#content {
  margin: 2rem auto;
  padding: 2rem 1rem 4rem;
  border-top: 5px solid #3855A5;
  border-bottom: 5px solid #EC2127;
  background-color: #fff;
  box-shadow:
    rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
    rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

#title {
  background: #efefef;
  padding: 0.75rem 1rem;
  text-align: center;
  font-size: 2rem;
}

#basic {
  text-align: center;
  font-size: 1.1rem;
}

#desc {
  background: #efefef;
  padding: 0.5rem 0;
  text-align: center;
  font-size: 1.3rem;
}

#description {
  font-size: 1.1rem;
  line-height: 1.6;
}

/*---------------------- ACCORDION ----------------------*/
section.accordian {
  max-width: 1140px;
  margin: 2rem auto;
  background: #fff;
  box-shadow:
    rgba(0, 0, 0, 0.4) 0px 2px 4px,
    rgba(0, 0, 0, 0.3) 0px 7px 13px -3px,
    rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
}

section.accordian > label {
  display: block;
  padding: 1rem;
  font-size: 1.3rem;
  font-weight: bold;
  position: relative;
  background: #fff;
  border-bottom: 1px solid #ccc;
  text-shadow: 0 2px 0 #fff;
  cursor: pointer;
}

section.accordian > div {
  max-height: 0;
  overflow: hidden;
  transition: all 300ms ease;
  padding: 0 1rem;
  opacity: 0;
  color: #333;
  line-height: 1.4;
}

section.accordian > input {
  display: none;
}

section.accordian > input:checked + label {
  color: #EC2127;
  background: #efefef;
}

section.accordian > input:checked + label + div {
  max-height: 1000px;
  opacity: 1;
  padding: 1rem;
  border-top: 4px solid #3855A5;
  border-bottom: 4px solid #EC2127;
}

section.accordian > label > span {
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}

section.accordian > label > span::before,
section.accordian > label > span::after {
  content: "";
  display: block;
  width: 20px;
  border-top: 3px solid black;
  transition: 300ms all ease-in-out;
}

section.accordian > label > span::after {
  transform: rotate(90deg);
  margin-top: -3px;
}

section.accordian > input:checked + label span::after {
  transform: rotate(-180deg);
}

section.accordian > input:checked + label span::before {
  transform: rotate(180deg);
}

/*---------------------- CUSTOMER SERVICE MESSAGES ----------------------*/




/*---------------------- RESPONSIVE MEDIA QUERIES ----------------------*/

/* Small devices (phones) */
@media screen and (max-width: 599px) {
  #wrapper {
    font-size: 0.9rem;
    padding: 1rem 0.5rem;
  }

  #title {
    font-size: 1.5rem;
    text-align: left;
  }

  section.accordian > label {
    font-size: 1.1rem;
  }

  #description {
    font-size: 1rem;
  }
}

/* Medium devices (tablets) */
@media screen and (min-width: 600px) and (max-width: 1024px) {
  #wrapper {
    font-size: 1rem;
  }

  #title {
    font-size: 1.8rem;
  }

  section.accordian > label {
    font-size: 1.3rem;
  }
}

/* Larger screens */
@media screen and (min-width: 1025px) {
  #wrapper {
    font-size: 1.1rem;
  }

  #title {
    font-size: 2rem;
  }
}