
/* MISC */

/* Montserrat and Roboto fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat&family=Roboto&display=swap');

.visuallyhidden { 
  position: absolute; 
  overflow: hidden; 
  clip: rect(0 0 0 0); 
  height: 1px; width: 1px; 
  margin: -1px; padding: 0; border: 0; 
}

html,
body {
  background: #f8fff8;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
}

a {
  color: green;
}
 
a:visited {
  color: #050;
}

.header_container {
  background-color: white;
  box-shadow: 0px 0px 10px 0px #888;
}

header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: auto;
  max-width: 700px;
  padding: 10px;
}

a.header_title {
  align-items: center;
  color: rgb(21, 109, 21);
  display: flex;
  font-size: 20px;
  text-decoration: none;
}

header img {
  height: 32px;
  margin: 4px;
}

nav {
  height: 100%;
}

nav ul {
  align-items: center;
  display: flex;
  list-style: none;
}

nav li {
  margin: 0 10px;
}

nav a {
  color: black;
  font-size: 14px;
  padding: 15px 0px 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  margin-bottom: -1px;
  text-decoration: none;
  text-transform: uppercase;
  transition-duration: 0.25s;
}

nav a:visited {
  color: black;
}

nav a:hover,
nav a[aria-current=page] {
  border-bottom-color: rgba(0, 0, 0, 1);
}

@media only screen and (max-width: 520px) {
  nav {
    display: none;
  }
}

h1 {
  font-size: 24px;
  margin: 32px;
  text-align: center;
}

p {
  text-align: center;
}

main {
  margin: auto;
  max-width: 800px;
}

main section {
  margin: 25px 0;
  padding: 25px;
}

main section.image_on_the_side {
  align-items: center;
  display: flex;
  flex-direction: column;
}

main section.image_on_the_side h2 {
  margin-bottom: 20px;
  text-align: left;
}

main .description {
  margin-bottom: 40px;
  width: 100%;
}

main .center {
  margin: auto;
  text-align: center;
}

main h2 {
  font-size: 28px;
  margin-bottom: 40px;
  text-align: center;
}

main li {
  margin: 0 0 5px 0;
}

@media only screen and (min-width: 700px) {
  main section {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }

  main section.image_on_the_side {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
  
  main section:nth-child(2n - 1) {
    flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 800px) {
  main section {
      padding: 25px calc((100% - 800px)/2);
  }
  
  main section.multiple-images div {
      padding: 0 100px;
  }
}

main img {
  background-color: white;
  border-radius: 7px;
  box-shadow: 0px 0px 10px 0px #888;
  box-sizing: border-box;
  width: 400px;
}

main section:nth-child(2n - 1) img {
  margin-right: 40px;
}

main section.large_box {
  background-color: #f7f7f7;
  border-radius: 7px;
  box-shadow: 0px 0px 10px 0px #888;
  box-sizing: border-box;
  font-size: 0.9em;
  padding: 25px 20px 20px;
}

@media only screen and (min-width: 970px) {
  main section.large_box {
    position: relative;
    left: -10%;
    width: 120%;
  }
}

main section.large_box h2 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 15px;
}

main section.large_box p {
  margin: 8px 0;
}

main section.alert {
  background-color: rgb(240, 83, 83);
  color: white;
}

main section.alert a {
  color: white;
}

.pricing_list {
  padding: 0;
}

@media only screen and (min-width: 700px) {
  .pricing_list {
    display: flex;
  }
}

.pricing {
  background-color: white;
  border-radius: 7px;
  box-shadow: 0px 0px 10px 0px #888;
  box-sizing: border-box;
  display: block;
  padding:  40px 30px 50px;
  position: relative;
  margin: 25px auto 20px;
  transition-duration: 0.25s;
  width: 250px;
}

.pricing:hover {
  /* background-color: #cfedff; */
  box-shadow: 0px 0px 20px 0px #848484;
}

.pricing h3 {
  margin: 10px;
  font-size: 32px;
  text-align: center;
}

.pricing ul {
  font-size: 16px;
  list-style: none;
  margin: 40px 0;
  margin-left: -16px;
  padding-left: 0;
}

.pricing li {
  margin: 0 0 10px 0;
  text-align: center;
}

.pricing li:before {
  color: green;
  content: '✓';
  margin: 8px;
}
.pricing li.x:before {
  color: red;
  content: '✗';
  margin: 8px;
}

.pricing .price {
  font-size: 32px;
  padding-left: 16px;
  text-align: center;
}

.pricing .price small {
  font-size: 13px;
}

.pricing .recommended {
  background: radial-gradient(#33af2b,#4d8a49);;
  border-radius: 7px 7px 0 0;
  color: white;
  left: 0;
  padding: 8px;
  position: absolute;
  right: 0;
  text-align: center;
  top: 0;
}

main a.button {
  background-color: rgb(21, 109, 21);
  border: 2px solid rgb(21, 109, 21);
  border-radius: 4px;
  color: white;
  display: block;
  margin: 40px 10px 0;
  opacity: 0.8;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.25s;
}

main a.button[disabled] {
  background-color: #555555;
  border: 2px solid #555555;
}

main a.button:hover {
  opacity: 1;
}

main a.button[disabled]:hover {
  cursor: not-allowed;
}