* {
    box-sizing: border-box;
}

html {
    height: 100%;
    padding: 8px;
    margin: 0;
}

body {
    font-family: "alwyn-new-rounded-web", Helvetica, arial, sans-serif;
    font-weight: 400;
    color: #fff;
    background-image: -webkit-linear-gradient(45deg, #258DC3 0%, #47ADB3 100%);
    background-image: -o-linear-gradient(45deg, #258DC3 0%, #47ADB3 100%);
    background-image: linear-gradient(135deg, #258DC3 0%, #47ADB3 100%);  
    background-attachment: fixed; 
    min-height: 100%;
    margin: 0;
    padding: 0;
}

main {
    position: relative;
    top: 96px;
    padding-bottom: 32px;
}

section {
    margin: 0 auto;
    max-width: 560px;
    margin-top: 33px;
    background-image: url('images/border-33-1.png');
    background-repeat: no-repeat;
}

ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: center;
}

ul li a {
    text-decoration: none;
    color: #fff;
}

footer {
    margin-top: 48px;
    font-size: 0.8em;
    text-align: center;
}

.page_title {
    padding: 48px 96px;
    font-size: 4.2em;
}

.page_title small {
      display: block;
      font-size: 0.4em;
}

.section_title {
    position: absolute;
    margin-top: -33px;
    margin-left: -33px;
    width: 66px;
    height: 66px;
    border-radius: 33px;
    background: #fff;
    padding: 3px;
    background-clip: content-box;
    text-align: center;
    border: 1px solid #fff;
    color: #258DC3;
}

.section_title div {
    display: block;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.2;
}

.section_title div:first-child {
    margin-top: 11px;
}

.section_content {
    margin-left: 80px;
    padding-bottom: 12px;
}

@media screen and (max-width: 680px) {
    main {
        position: static;
        padding-bottom: 24px;
    }
    
    section {
         background-image: none;
         margin-top: 0;
    }
    
    ul.section_content {
        text-align: left;
    }

    ul li {
        line-height: 2.2em;
    }   
    
    .page_title {
        padding: 12px;
        margin-bottom: 24px;
        font-size: 4.2em;
    }
    
    .section_title {
        position: static;
        margin-top: 0;
        margin-left: 0;
        float: left;
    }
}

@media screen and (min-width: 681px) {
    ul li {
        display: inline;
    }   
    
    ul li a {
        padding: 0.2em 1em;
    }
}