* {
    margin: 0px;
    padding: 0px;
}

body{
    color: #333;
    font-size: 16px;
}
body, button, input, select {
    font-family: Poppins, sans-serif;
}

.container {
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
}

ul{
    list-style: none;
}
img{
    max-width: 100%;
    height: auto;
}

.left{
    float: left;
}
.right{
    float: right;
}
.width50{
    width: 48.5%;
}

.theme_color{
    color: #0063E3;
}

.header{
    border:1px solid#dee1e1;
    padding: 10px 0;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 9;
    background: #fff;
    right: 0px;
}
.header img.logo{
    display: inline-block;
    max-height: 50px;
    vertical-align: middle;
}
.header .logo_txt{
    height: 50px;
    display: inline-block;
    vertical-align: middle;
    font-size: 26px;
    font-weight: bold;
    line-height: 50px;
}

.header .contact_us{
    float: right;
    line-height: 50px;
    font-size: 18px;
}

.box1{
    background: #f4f8ff;
    position: relative;
    padding-bottom: 125px;
    padding-top: 50px;
    margin-top: 70px;
}
.box .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.box .title{
    margin-bottom: 20px;
    font-size: 40px;
    font-weight: bold;
}
.box .desc{
    line-height: 30px;
    color: #162020;
}

.box2 li{
    margin-bottom: 35px;
}

.box2 .title{
    margin:  40px auto 40px;
    text-align: center;
    font-weight: bold;
}

.box2 .desc,.box4 .desc{
    color: rgb(109, 124, 143);
}

.box2 .h1{
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 900;
}
.box2 .h1::before{
    content: '';
    display: inline-block;
    height: 10px;
    width: 10px;
    background: #0063E3;
    border-radius: 50%;
    vertical-align: middle;
}

.box1::after,.box3::after{
    content: " ";
    width: 100%;
    height: 75px;
    background: #fff;
    position: absolute;
    bottom: 0;
    clip-path: polygon(0 100%,100% 0,100% 100%,0% 100%);
}

.box3{
    background: #f4f8ff;
    margin-top: 50px;
    position: relative;
}
.box3::before {
    content: " ";
    width: 100%;
    height: 75px;
    background: #fff;
    position: absolute;
    clip-path: polygon(0 0%,100% 0,100% 0%,0% 100%);
}
.box3 .container{
    padding: 140px 0;
}

.box3 li{
    margin-bottom: 20px;
}

.box3 .content-list{
    margin-top: 30px;
}

.box3 .content-list .h1{
    font-size: 20px;
    margin-bottom: 10px;
}

.box4{
    padding: 40px 0px;
}
.footer{
    background: #f2f2f2;
}
.footer .container {
    font-size: 32px;
    text-align: center;
    line-height: 50px;
    border-bottom: 1px solid #ccc;
    padding: 40px 0px;
}
.footer .footer-text{
    width: 80%;
    margin: 0 auto;
    font-weight: bold;
}

.footer .copyright{
    padding: 10px 0px;
    text-align: center;
}

.footer .copyright a{
    text-decoration: none;
    color: inherit;
}
.footer .copyright a:hover{
    color: #0063E3;
}

@media (min-width: 768px) {
    .container {
        width: 750px;
    }
   
}

@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1200px;
    }
}

@media (min-width: 1400px) {
    .container {
        width: 1400px;
    }
}


@media (max-width: 960px) {
    .width50{
        width: 100%;
    }
    .left{
        float: none;
    }
    .right{
        float: none;
        margin-top: 20px;
    }
    .box .container{
        display: block;
    }
    .box .title{
        font-size: 30px;
    }
    .footer{
        margin-top: 30px;
    }
}