 body, html{
            margin: 0;
            padding: 0;
            width: 100%;
            height: 100%;
            font-family: Verdana, Arial, sans-serif;
            overflow-x: hidden;
        }
section.welcome-box-container {
    background: #ff7400;
    padding: 20px;
    width: 100%;
    height: 100vh;
}
        section.welcome-box-container .welcome-box {
            max-width: 770px;
            margin: 0 auto;
            background: #fff;
            padding: 16px;
            border-radius: 16px;
            box-shadow: 0 0 12px 4px rgba(0,0,0,.1);
            margin-top: 60px;
        }
        section.welcome-box-container .welcome-box h1 {
            margin: 0 0 10px 0;
            font-weight: 400;
        }
        .body-content {
            box-shadow: inset 1px 5px 6px 0px rgba(0,0,0,.1);
            padding: 16px;
            border-radius: 14px;
            border: 1px solid #eee;
        }
        p {
            font-size: 12px;
            margin: 0 0 10px 0;
            display: block;
        }
        .body-content ul {
            margin: 16px 0;
            padding: 0 0 0 8px;
        }
        .body-content ul li {
            list-style: none;
            font-size: 12px;
            margin: 0 0 8px 0;
            position: relative;
            padding-left: 12px;
        }
        .body-content .list {
            display: flex;
            justify-content: space-between;
            align-items: start;
        }
          figure {
              margin: 0;
          }
        .body-content .list figure { 
            text-align: right;
        }
        .body-content .list img{
            width: 77%;
        }
        .body-content ul li:before {
            content: "";
            background: url("http://flask.com.au/template/ef3674e0/images/holding-arrow-listitem.webp") no-repeat center;
            width: 10px;
            height: 12px;
            display: block;
            position: absolute;
            left: -6px;
            top: 1px;
        }
        .footer-content {
            display: flex;
            align-items: center;
            gap: 20px;
            margin: 35px 0;
        }
        a{
            color: #FF7400 !important;
            text-decoration: none;
        }
        a:hover{ 
            color: #3f3f3f !important;
        }
.popup-mask, .image-popup-container-for-zoom-preview { 
    display: none !important;
}
        @media screen and  (max-width: 767px) {
            .body-content .list, .footer-content {
                flex-direction: column;
            }
            body{
                overflow-x: visible;
            }
        }