* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 20px;
  line-height: 1.3;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

p {
  margin: 0 0 16px;
  line-height: 1.4;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.grey {
  color: #858585;
}

header {
  text-align: center;
  box-shadow: 1px 6px 5px #999999;
  margin-bottom: 15px;
}

header>div {
  max-width: 95%;
  width: 790px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header a {
  text-align: left;
  color: #f17836;
  font-weight: bold;
  display: inline-block;
}

header img.logo {
  max-height: 100px;
  padding: 16px 0;
  max-width: 90%;
}

main.article {
  width: 790px;
  margin: 0 auto;
  max-width: 90%;
  flex: 1;
}

.author {
  font-size: 12px;
  color: #666666;
  margin-bottom: 16px;
}

h1 {
  color: #000;
  font-size: 50px;
  line-height: 1.1;
  margin: 10px 0;
  font-family: "Segoe UI", "Segoe WP", Arial, sans-serif;
}

h1 strong {
  color: #f17836;
}

.article p a,
.article li a {
  color: #f17836;
  font-weight: bold;
}

.cta-light {
  background: #625a55;
  color: #f17836;
  font-size: 22px;
  font-weight: bold;
  line-height: 25px;
  margin-bottom: 12px;
  padding: 10px 15px;
  text-align: center;
}

.cta-light p:last-child {
  margin-bottom: 0;
}

.cta-dark {
  background: #f17836;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: bold;
  line-height: 25px;
  margin-bottom: 12px;
  padding: 10px 15px;
  text-align: center;
}

.cta-dark p:last-child {
  margin-bottom: 0;
}

.dobs,
.dobs-mobile {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.dobs a,
.dobs-mobile a {
  background: #f17836;
  color: white;
  font-size: 19px;
  font-weight: bold;
  margin: 2px;
  min-width: 60px;
  padding: 15px 0;
  text-align: center;
  width: calc(12.5% - 4px);
}

.dobs a:hover,
.dobs-mobile a:hover {
  background: #625a55;
  color: #f17836;
}

.dobs-mobile {
  display: none;
}

.dobs-mobile a {
  width: calc(50% - 4px);
}

.cta-button {
  background: #f17836;
  border-radius: 12px;
  box-shadow: 0 6px 0 0 #b75c2c;
  color: #fff !important;
  cursor: pointer;
  display: inline-block;
  font-size: 120%;
  font-weight: bold;
  margin-bottom: 16px;
  padding: 16px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.cta-button:hover {
  box-shadow: 0 0 0 0 #b75c2c;
  transform: translateY(6px);
}

.article ol {
  counter-reset: ordered-list;
  margin: 0 0 16px;
  padding: 0;
}

.article ol li {
  align-items: start;
  display: flex;
  list-style: none;
  margin-bottom: 8px;
  padding: 0;
}

.article ol li::before {
  background-color: #f17836;
  border-radius: 50%;
  color: #FFFFFF;
  content: counter(ordered-list);
  counter-increment: ordered-list;
  display: block;
  flex-grow: 0;
  flex-shrink: 0;
  line-height: 23px;
  margin-right: 10px;
  padding: 5px;
  text-align: center;
  width: 33px;
}

footer {
  background-color: #000000;
  color: #FFFFFF;
  font-size: 0.8em;
  margin-top: 16px;
  padding: 16px;
  text-align: center;
}

footer a:hover {
  color: #b75c2c;
}

video {
  max-width: 500px;
  margin: 0 auto 15px;
  display: block;
}

@media screen and (max-width: 700px) {
  h1 {
    font-size: 33px;
  }
}

@media screen and (max-width: 600px) {
  header {
    font-size: 75%;
  }
}

@media screen and (max-width: 450px) {
  .dobs {
    display: none;
  }

  .dobs-mobile {
    display: flex;
  }
}.dynamic-modal-trigger {
  cursor: pointer;
}
.dynamic-modal-trigger:hover {
  color: #f17836;
}
.dynamic-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, .5);
  opacity: 0;
  display: none;
  visibility: hidden;
  transition: all .4s ease;
  z-index: 9999;
}
.dynamic-modal:target {
  opacity: 1;
  display: block;
  visibility: visible;
}
.dynamic-modal .container {
  background-color: #fff;
  border-radius: 30px;
  border: solid 2px #f17836;
  box-shadow: 0 0 10px #f17836;
  left: 50%;
  max-width: 90%;
  opacity: 1;
  overflow: hidden;
  position: absolute;
  top: 25px;
  transform: translateX(-50%);
  transition: all .4s ease;
  visibility: visible;
  width: 900px;
}
.dynamic-modal .container .content {
  overflow: auto;
  padding: 20px;
  max-height: calc(100vh - 50px);
}
.close-dynamic-modal {
  background: #f17836;
  border-radius: 50%;
  border: solid 2px white;
  box-shadow: 0 0 4px black;
  color: white;
  cursor: pointer;
  height: 40px;
  padding-top: 3px;
  position: absolute;
  right: 8px;
  text-align: center;
  top: 8px;
  width: 40px;
  z-index: 9;
}
.close-dynamic-modal a {
  color: white;
  text-decoration: none;
  display: block;
  line-height: 36px;
}
.dynamic-modal h1 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #f17836;
}
.dynamic-modal h2 {
  font-size: 20px;
  margin: 20px 0 10px;
}
.dynamic-modal p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 12px;
}
.dynamic-modal ul {
  margin: 10px 0;
  padding-left: 20px;
}
.dynamic-modal li {
  font-size: 16px;
  line-height: 1.5;
  padding: 3px 0;
}