@charset "utf-8";

* {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}

body {
   color: #444;
   font-family: "Arial", sans-serif;
   font-size: 1rem;
   line-height: 1.5;
}

img {
   max-width: 100%;
   height: auto;
   display: block;
}

#wrapper {
   position: relative;
   max-width: 50rem;
   margin: 1rem auto;
   overflow: hidden;
   background: #fff;
   border: solid 1px #000;
}

:is(a:link, a:visited, a:hover, a:active) {
   color: inherit;
   text-decoration: none;
   white-space: nowrap;
}

a.link {
   color: #ed7100;
   text-decoration: underline;
}

article p {
   padding-bottom: 1rem;
}

h1 {
   font-size: 1.75rem;
   line-height: 1.2;
   padding: 1.5rem 0 .75rem;
}

h2 {
   font-size: 1.5rem;
   line-height: 1.1;
   padding: 0 0 .75rem;
   color: #4d4d4d;
}

ul {
   list-style: none;
   padding-bottom: 1.5rem;
}

ul li {
   padding: 0 0 0 1.25rem;
}

ul li:before {
   content: "\25A0";
   float: left;
   margin-left: -1.25rem;
   color: #ed7100;
   line-height: 1.2;
}

section {
   padding: 1.5rem 2.5rem;
}

section>:last-child {
   padding-bottom: 0;
}

.gray {
   background-color: #b3b3b3;
   color: #fff;
}

.gray h2 {
   color: #fff;
}

.info {
   display: flex;
   flex-wrap: wrap;
   column-gap: 1rem;
}

.info p {
   padding-bottom: .2rem;
}

.info i {
   margin-right: .3rem;
}

.benefits {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
   gap: 1rem;
   padding-top: .75rem;
}

.benefit {
   flex: 0 0 48%;
   display: flex;
   gap: .625rem;
}

.benefit i {
   font-size: 1.5rem;
}

.benefit p {
   padding-bottom: .75rem;
}

.person {
   display: flex;
   align-items: center;
   gap: 1.25rem 1.875rem;
   padding: 1rem 0;
}

.person p {
   padding-bottom: 0;
}

header {
   display: flex;
   padding: 1.25rem 2.5rem;
}

footer {
   padding: 2.5rem;

}

.btn {
   background: #AFCA0B;
   border-radius: 4px;
   padding: 12px 30px;
   font-weight: 700;
}

@media only screen and (max-width: 49.938rem) {
   #wrapper {
      border: none;
      margin: 0 auto;
   }

   p,
   ul {
      -moz-hyphens: auto;
      -webkit-hyphens: auto;
      -ms-hyphens: auto;
      hyphens: auto;
   }

   h1 {
      font-size: 2rem;
      padding-top: 0;
   }

   h2 {
      font-size: 1.3rem;
   }
}

@media only screen and (max-width: 43rem) {
   section {
      padding: 1.25rem 1rem;
   }

   header,
   footer {
      justify-content: center;
      padding: 1.25rem 1rem;
   }

   ul {
      padding-bottom: 1.25rem;
   }
}

@media only screen and (max-width: 35rem) {
   .benefit {
      flex: 100%;
   }

   .person {
      flex-direction: column;
      text-align: center;
   }
}
