*{
   margin: 0;
   padding: 0;
}
.main-wrap{
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
.header-wrap{
    width: 100%;
    background: #131C32;
}
.header{
    margin: auto;
    max-width: 1280px;
    display: flex;
    justify-items: center;
    justify-content: space-between;
}
.header-navs{
    display: flex;
    align-items: center;
}
.header-title{
    font-weight: 700;
    font-size: 50px;
    line-height: 75px;
    color: white;
    font-family: 'Poppins';
}
.header-nav-split{
    color: white;
    margin: 0 5px;
    font-size: 20px;
    line-height: 30px;
}
.header-nav{
    font-family: 'Poppins';
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    text-decoration-line: underline;
    color: white;
}
.content-wrap{
    flex: 1;
    padding: 100px 0;
    margin: auto;
    max-width: 1280px;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.wrap-left{
    width: 400px;
}
.icon{
    width: 110px;
    height: 110px;
}
.wrap-intro-title{
    margin-top: 52px;
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 35px;
    line-height: 52px;
    color: #000000;
}
.wrap-intro-content{
    margin-bottom: 60px;
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #000000;
}

.download-img{
    margin-top: 46px;
    width: 155px;
    height: 52px;
}
.wrap-images{
    display: flex;
    width: 750px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.wrap-image{
    width: 350px;
    height: 175px;
    margin-bottom: 50px;
}
.footer{
    width: 100%;
    display: flex;
    justify-content: center;
    font-family: 'Poppins';
    font-style: normal;
    font-size: 20px;
    line-height: 30px;
    color: #000000;
    background-color: #F4F6F7;
    padding: 20px 0;
    flex-wrap: wrap;
}
.footer-copyright{
    border-top: 1px solid #999;
    width: 100%;
    text-align: center;
}
@media all and (max-width : 980px) {
    .header{
        padding: 0 10px;
    }
    .header-title{
        font-size: 20px;
        line-height: 30px;
    }
    .header-nav{
        font-size: 16px;
        line-height: 18px;
    }
    .wrap-left{
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .icon{
        width: 80px;
        height: 80px;
    }
    .wrap-intro-title{
        margin-top: 18px;
        font-size: 32px;
        line-height: 40px;
    }
    .wrap-intro-content{
        font-size: 20px;
    }
    .download-img{
        margin-top: 10px;
    }
    .wrap-images{
        margin-top: 20px;
        width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }
    .wrap-image{
        width: 100%;
        height: unset;
        margin-bottom: 10px;
    }
}
