*{
    margin: 0;
    padding: 0;
}

html, body{ background-color: white;}
ul, ol{ list-style: none;}
a, img{ text-decoration: none;}

.tutorialWrapper{
    width: 100%;
    max-width: 480px;
    margin:0 auto;
    padding: 24px;
    box-sizing: border-box;
}

.logo{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img{
    display: block;
    width:100%;
    max-width: 380px;
}

.wrapper{
    width: 100%;
    margin-top:36px;
}

.wrapper h1{
    text-align: center;
    font: 400 22px 'sf_ui_textsemibold', sans-serif; 
    color: #000;
}
.wrapper h2{
    text-align: center;
    font: 400 16px 'sf_ui_textregular', sans-serif;
    color: #333;
    margin-top: 8px;
}

.wrapper .noextra{
    width: 100%;
    margin: 36px 0 40px 0;
}

.wrapper .noextra .extraimg{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.wrapper .noextra .extraimg .circle{
    height: 150px;
    width: 150px;
    border-radius: 50%;
    position: relative;
    border: 12px solid #66bb6a;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.wrapper .noextra .extraimg .circle p{
    display: block;
    width: 104px;
    color: #66bb6a;
    text-align: center;
    font: 400 22px 'sf_ui_textsemibold', sans-serif;
    height: 58px;
    background-color: white;
    position: relative;
    z-index: 10;
}

.wrapper .noextra .extraimg .circle .bar{
    width: 12px;
    height: 140px;
    background-color: #66bb6a;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

.wrapper .noextra h1{
    text-align: center;
    font: 400 22px 'sf_ui_textsemibold', sans-serif; 
    color: #000;
}

.wrapper .links{
    width: 100%;
}

.wrapper .links .video{
    height: 48px;
    width: 100%;
    background:url(../icons/play.svg) no-repeat left 16px center #f44336;
    background-size: 24px;
    font: 400 14px/20px 'sf_ui_textmedium', sans-serif;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding-left: 56px;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}
.wrapper .links .video:hover{
    background-color: #D32F2F;
}

.wrapper .links .ppt{
    height: 48px;
    width: 100%;
    background:url(../icons/ppt.svg) no-repeat left 16px center #66bb6a;
    background-size: 24px;
    font: 400 14px/20px 'sf_ui_textmedium', sans-serif;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    margin-top: 8px;
    padding-left: 56px;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}
.wrapper .links .ppt:hover{
    background-color: #43A047;
}
.wrapper .links .ppt1{
    height: 48px;
    width: 100%;
    background:url(../icons/ppt.svg) no-repeat left 16px center #3e4095;
    background-size: 24px;
    font: 400 14px/20px 'sf_ui_textmedium', sans-serif;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    margin-top: 8px;
    padding-left: 56px;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}
.wrapper .links .ppt1:hover{
    background-color: #3e4095;
}
.wrapper .links .global{
    height: 48px;
    width: 100%;
    background:url(../icons/global.svg) no-repeat left 16px center #FA8072;
    background-size: 24px;
    font: 400 14px/20px 'sf_ui_textmedium', sans-serif;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    margin-top: 8px;
    padding-left: 56px;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}


.wrapper .download{
    width: 100%;
    margin-top: 30px;
}

.wrapper .download p{
    text-align: center;
    font: 400 16px 'sf_ui_textregular', sans-serif;
    color: #333;
}

.wrapper .download ul{
    width: 100%;
    margin-top: 12px;
    display: grid;
    grid-gap: 8px;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
}
.wrapper .download ul li{
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.wrapper .download ul li a{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.wrapper .download ul li a img{
    display: inline-block;
    width: 100%;
    max-width: 191px;
}