 @font-face {
     font-display: swap;
     font-family: 'Noto Sans';
     font-style: normal;
     font-weight: 400;
     src: url('../fonts/noto-sans-v42-latin-regular.eot');
     src: url('../fonts/noto-sans-v42-latin-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/noto-sans-v42-latin-regular.woff2') format('woff2'), url('../fonts/noto-sans-v42-latin-regular.woff') format('woff'), url('../fonts/noto-sans-v42-latin-regular.ttf') format('truetype'), url('../fonts/noto-sans-v42-latin-regular.svg#NotoSans') format('svg');
 }

 @font-face {
     font-display: swap;
     font-family: 'Roboto Slab';
     font-style: normal;
     font-weight: 600;
     src: url('../fonts/roboto-slab-v36-latin-600.eot');
     src: url('../fonts/roboto-slab-v36-latin-600.eot?#iefix') format('embedded-opentype'), url('../fonts/roboto-slab-v36-latin-600.woff2') format('woff2'), url('../fonts/roboto-slab-v36-latin-600.woff') format('woff'), url('../fonts/roboto-slab-v36-latin-600.ttf') format('truetype'), url('../fonts/roboto-slab-v36-latin-600.svg#RobotoSlab') format('svg');
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box
 }

 html {
     min-height: 100%;
 }

 body {
     color: #545B63;
     font-family: 'Noto Sans', Arial, sans-serif;
     font-size: 14px;
     line-height: 21px;
     font-weight: 400;
 }

 #wrapper {
     margin: 1rem auto;
     max-width: 565px;
     border: 1px solid #2a2e32;
     background-color: #FDFDFF;
 }

 article {
     padding: 0 25px;
 }

 .title {
    display: flex;
    flex-direction: column;
    align-items: center;
 }

 .title .text {
     margin-top: -5px;
 }

 footer {
     padding: 20px 25px 16px 25px;
     position: relative;
 }

 .apply {
     width: 291px;
     height: 122px;
     background: url('../images/background-apply.png') no-repeat;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     padding-top: 60px;
     position: absolute;
     bottom: 62px;
     right: 12px;
 }

 .apply p {
     text-align: center;
     font-size: 17px;
     line-height: 26px;
 }

 p:not(:first-of-type) {
     margin-top: 10px;
 }

 h1 {
     font-size: 34px;
     line-height: 1;
     font-family: 'Roboto Slab', Arial, sans-serif;
     font-weight: 600;
     color: #235C81;
     margin: 20px 0;
     text-align: center;
 }

 ul {
     list-style: none;
     margin-left: 6px;
 }

 ul li {
     padding-left: 19px;
     margin-top: 15px;
 }

 li:before {
     content: "\2022";
     color: #f7a0a2;
     float: left;
     font-size: 37px;
     text-indent: -19px;
     font-family: Arial, Helvetica, sans-serif;
     margin-top: 1px;
 }

 li:nth-of-type(2):before {
     color: #F7BCBB
 }

 li:nth-of-type(3):before {
     color: #F9D1BD
 }

 img {
     max-width: 100%;
     display: block;
 }

 :is(a:link, a:visited, a:hover, a:active) {
     color: #545B63;
     text-decoration: none;
     white-space: nowrap;
 }

 @media only screen and (max-width: 563px) {
     #wrapper {
         border: none;
         margin: 0;
     }

     :is(p, ul) {
         hyphens: auto;
         text-wrap: pretty
     }

     .apply {
        position: static;
     }

     footer {
        display: flex;
        flex-direction: column;
        align-items: center;
     }

     h1 {
        font-size: 27px;
     }
 }
