* {
    margin: 0 auto;
    padding: 0px;
    list-style: none;
    text-decoration: none;
    outline: none;
    border: none;
    box-sizing: border-box;
}


body {
    @import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap');
    font-family: 'Open Sans', sans-serif;
}

a,
a:focus,
a:hover,
a:active {
    outline: 0 !important;
    text-decoration: none;
    cursor: pointer
}

.btn:focus,
.btn:active:focus,
.btn.active:focus {
    outline: none !important;
    outline-style: none;
}

.header {
    float: left;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    z-index: 9999;
    position: fixed;
    top: 0;
    background-color: #fff;
    -webkit-box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.20);
}

#particles {
    position: relative;
    width: 100%;
    height: 200px;
    z-index: 99;
    background-image: url(../images/banner.jpg);
}

.container-fluid {
    padding: 0 20px;
}

.main-section {
    float: left;
    width: 100%;
    padding: 30px 0;
}

.brand-box {
    float: left;
    width: 100%;
    margin: 30px 0;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 0px 16px 1px rgba(0, 0, 0, 0.20);
}

.brand-logo {
    float: left;
    width: 100%;
}

.brand-logo img {
    width: 70%;
}

.brand-img img {
    width: 100%;
    margin: 20px 0;
    border: 1px solid #ccc;
}

.brand-box p {
    color: #333333;
    font-size: 14px;
    line-height: 26px;
    font-weight: 600;
    vertical-align: baseline;
    letter-spacing: normal;
    word-spacing: 0px;
}

.brand-box ul {
    float: left;
    width: 100%;
    padding: 10px 20px;
    background-color: rgba(38, 85, 142, 0.1);
    border-radius: 10px;
}

.brand-box ul li {
    float: left;
    width: 100%;
    text-align: left;
    margin: 5px 0;
    font-weight: 600;
    color: #000;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
    text-decoration: underline dashed #FF5B2E;
    text-underline-offset: 5px;
}

.brand-box ul li::before {
    content: "";
    position: absolute;
    left: 0;
    width: 10px;
    border-radius: 10px;
    height: 2px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #FF5B2E;
}

footer {
    float: left;
    width: 100%;
    background-color: #1A3E76;
    padding: 30px 0;
}

footer p {
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}