@import url('reset.css');
@import url('common.css');

/* ==================== flex and grid =========================== */

.flex-row {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    align-items: stretch;
}

.grid {
    flex: 1;
}

.grid-column {
    flex: 1;
}

.grid-xs {
    display: inline-flex;
    width: 100%;
    min-height: 1px;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
}

.grid-md-2 {
    display: inline-flex;
    width: calc(100% / 2);
    min-height: 1px;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
    vertical-align: top;
}

.grid-md-3 {
    display: inline-flex;
    width: calc(100% / 3);
    min-height: 1px;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
    vertical-align: top;
}

.grid-md-4 {
    display: inline-flex;
    width: calc(100% / 4);
    min-height: 1px;
    padding-right: 30px;
    padding-left: 30px;
    position: relative;
    vertical-align: top;
}



/* font  style*/

.title {
    color: #2c2c2d;
    text-align: left;
    font-size: 30px;
    font-family: 'din_pro_bold';
    padding: 15px 0
}

.headline {
    font-size: 24px;
    line-height: 1.25;
    color: #2c2c2d;
    font-weight: bold;
    padding: 5px 0px;
    margin: 0px 0;
}

.headline span {
    font-size: .85em;
    font-weight: 300;
    line-height: 1.6;
}

.subhead {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: .85;
    margin-top: 0px;
}

@media (max-width: 736px) {
    .title {
        font-size: 20px;
    }

    .headline {
        font-size: 18px;
    }

    .subhead {
        font-size: 15px;
    }
    
}


/* color */

.grayborder {
    border: 1px solid #dbdbdb;
    opacity: 1;
}

.whiteColor {
    color: #fff;
}

.blackColor {
    color: rgb(0, 0, 0);
    text-align: center;
}


/* ===========  section header ======= */

.section_heand {
    width: 100%;
    padding: 2% 15px;
}

.section_heand h3.title {
    text-align: center;
}

.section_heand h3.title::after {
    content: "";
    display: block;
    width: 65px;
    height: 5px;
    background-color: #2e98e5;
    margin: 15px auto;
}


/* page commmon */

.page_wrapper {
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    overflow: hidden;
}


/*full section*/

.section {
    display: block;
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
    padding: 2% 0 5% 0;
    background-size: cover;
}


/*center content*/

.content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.content_full {
    width: 100%;
    max-width: 2560px;
    margin: 0 auto;
}

.content .row {
    margin: 0;
}


/* layout */

.base_center {
    margin: 0 auto;
    text-align: center;
}

.base_left {
    margin: 0;
    text-align: left;
}




/* Btn default */

.morebtn {
    display: block;
    margin-top: 20px;
}

a.defaultBtn {
    z-index: 99;
    cursor: pointer;
    display: inline-block;
    background-color: #2c2c2d;
    opacity: 1;
    font-size: 15px;
    color: #fff;
    width: auto;
    min-width: 120px;
    display: inline-block;
    padding: 0 30px;
    border-radius: 4px;
    line-height: 45px;
    height: 45px;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    letter-spacing: 0;
    font-weight: 500;
    font-style: normal;
}


/* Btn color style */

a.btnColor_Dark {
    color: #fff;
    background-color: #2c2c2d;
}

a.btnColor_White {
    color: #2c2c2d;
    background-color: #f7f9fa;
}

a.case {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 700;
    color: #2c2c2d;
    background-color: transparent;
    border: 0;
    outline: none;
    text-align: center;
    vertical-align: middle;
    padding: 0;
    margin: 0;
}

a.case .img_inner {
    border: 0;
    height: auto;
    margin: 0;
    background-color: transparent;
}

a:hover {
    opacity: .85;
}

@media (max-width: 736px) {
    a.defaultBtn {
        font-size: 1em;
        font-weight: bold;
    }
}



/*footer*/

.footer {
    width: 100%;
    background: #1e2127;
    padding: 2rem 2rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    
}
.footer .footer_body {
    margin-right: -15px;
    margin-left: -15px;
}

.footer .container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer ul,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer p {
    font-size: 14px;
    color: #bababa;
    line-height: 1.6;
    vertical-align: middle;
    padding: 0;
}

.footer .col-f,
.footer .col-r {
    float: left;
}

.footer .col-r {
    float: right;
}

.footer .footer_logo_Group.bs-float {
    float: left;
    width: 100%;
    text-align: left;
}

.footer .logo_Group.bs-float {
    float: right;
    text-align: right;
    padding: 0 10px;
}

.footer .privacy_Group.bs-float {
    float: right;
    padding: 0;
}

.footer .privacy_Group li {
    display: inline-block;
    font-size: 14px;
    line-height: 1.6;
}

.footer .privacy_Group li:after {
    content: "|";
    margin: 5px;
    color: #666;
    display: inline-block;
}

.footer .logo_Group {
    width: auto;
    text-align: right;
    padding: 0px;
}







/*===== link style ======*/

.footer .logo_Group a {
    margin: 0px;
    opacity: 1;
}

.footer .privacy_Group a {
    font-size: 14px;
    color: #bababa;
    line-height: 1.25;
}

.footer .logo_Group a:hover,
.footer .privacy_Group a:hover {
    opacity: .85;
    text-decoration: none;
}


@media (max-width: 1199px) {
    .footer .col-r {
        float: none;
    }
}

@media (max-width: 1024px) {
    .footer .col-f,
    .footer .col-r {
        float: none;
    }
    .footer .logo_Group.bs-float {
        float: none;
        text-align: center;
        padding: 0 15px;
    }
    .footer .footer_logo_Group.bs-float {
        float: none;
        text-align: center;
    }
    .footer .privacy_Group.bs-float {
        float: none;
        text-align: center;
        padding: 10px 10px;
    }
}

@media (max-width: 576px) {

    .footer {
        width: 100%;
        background: #1e2127;
        padding: 1rem 1rem;
    }
    .footer p {
        display: block;
        font-size: .5rem;
        line-height: 1.25;
    }

    .footer .logo_Group a {
        margin: 0;
    }
    .foorer_logo_msi {
        padding: 0;
    }
}







/*page_footer*/

.page_footer {
    width: 100%;
    position: relative;
    z-index: 1;
}

.page_footer.bg {
    background: url(https://storage-asset.msi.com/event/msi_ipc/images/pages_footer_bg.jpg) top center no-repeat;
    padding: 0;
    background-size: cover;
}

.page_footer .title {
    color: #fff;
    font-family: 'din_pro_bold';
    line-height: 1.6;
    padding: 2% 0;
    text-transform: uppercase;
    text-align: left;
}

.page_footer .inner {
    width: 90%;
    padding: 5% 15px;
    margin: 0;
}

.page_footer .w-btn {
    width: 100%;
}


@media (max-width: 768px) {
    .page_footer .title {
        line-height: 1.6;
        padding: 0;
    }
}

@media (max-width: 736px) {
    .page_footer .title {
        padding: 0;
        text-align: left;
    }
    .page_footer .w-btn {
        width: 80%;
    }

    .page_footer .inner {
        width: 90%;
        padding: 10% 0;
        margin: 0 auto;
    }

    .silder-bar-center {
        top: 40%;
    }
}


.silder-bar-center {
    position: fixed;
    right: 0;
    top: 43%;
    z-index: 999;
}

.silder-bar-center .mailto-btn {
    display: block;
    text-align: center;
    color: #fff;
    font-size: 15px;
    padding: 10px 5px;
    margin: 0 auto;
    /*嚗�*/
    height: auto;
    white-space: nowrap;
    vertical-align: text-top;
    background-color: rgba(46, 152, 229, .95);
    border-radius: 2px;
    opacity: 1;
    cursor: pointer;
    border-radius: 2px;
}



.silder-bar-center .outsite-txt {
    text-align: center;
    font-size: 15px;
    line-height: 2;
    padding: 0px 0px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -webkit-transition: all .3s;
    transition: all .3s;
    letter-spacing: 0.5px;
    transform: rotate(0deg);
    white-space: nowrap;
}

.mail-bg .fa {
    padding: 10px 8px;
    vertical-align: baseline;
}

.silder-bar-center .mailto-btn:hover,
.silder-bar-center .mailto-btn:active {
    color: #fff;
    opacity: .85;
}



@media (max-width: 736px) {
    .silder-bar-center {
        top: 70%;
    }
    .silder-bar-center .mailto-btn {

        padding: 5px;
    }
    .silder-bar-center .outsite-txt {
        text-align: center;
        font-size: 85%;
    }
}





/**/


/*silder-bar*/

.silder-bar-bottom {
    position: fixed;
    right: .5%;
    bottom: 3.5%;
    z-index: 100;
}

.silder-bar-bottom .top-btn {
    display: block;
    color: #ddd;
    cursor: pointer;
    /*padding: 10px;*/
    /* border: 2px solid rgba(42, 156, 229, 1);*/
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    vertical-align: middle;
    box-sizing: border-box;
    background: transparent;
    position: relative;
    opacity: 1;
}


.silder-bar-bottom .top-btn:before {
    content: "";
    display: block;
    position: relative;
    width: 45px;
    height: 45px;
    vertical-align: middle;
    text-align: center;
    background: url(https://storage-asset.msi.com/event/msi_ipc/images/icon_top.png) center top no-repeat;
}

.silder-bar-bottom .top-btn:hover {
    background: transparent;
    opacity: .65;
}

.silder-bar-bottom .top-btn span {
    display: block;
    color: #2e98e5;
    font-size: 16px;
    line-height: 1;
    vertical-align: text-bottom;
    position: relative;
    bottom: 0;
}

@media (max-width: 768px) {
    .silder-bar-bottom {
        bottom: 18%;
    }
}

@media (max-width: 576px) {
    .silder-bar-bottom .top-btn {
        width: 100%;
    }
    .silder-bar-bottom .top-btn:before {
        display: none;
    }
    .silder-bar-bottom {
        width: 100%;
        background-color: #2e98e5;
        position: relative;
        right: 0;
        bottom: 0px;
        margin-right: 0px;
    }
    .silder-bar-bottom .top-btn span {
        text-align: center;
        color: #fff;
        font-weight: bold;
        display: block;
        line-height: 45px;
        vertical-align: middle;
    }
}







/**/


/*modal popup*/

.modal .close {
    float: right;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .3;
}

.modal-body {
    position: relative;
    padding: 50px 0;
}

.modal-header {
    padding: 15px;
    top: 0;
    border-bottom: 0px solid #e5e5e5;
}

.modal-body .center-body {
    width: 100%;
    text-align: center;
    vertical-align: middle;
    display: inline-block;
}

.modal-footer {
    border-top: 0px solid #e9ecef;
    border-bottom: 10px solid #e9ecef;
}

.modal-footer.rgb-light-border {
    border-width: 0px;
    border-bottom: 10px solid;
}









/* ====== home_contact US ======*/

#home_contactUS {
    width: 100%;
    padding: 0;
    background-color: transparent;
}

.flex-imgbg_supply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
}

.flex-imgbg_supply .imgbg_wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    height: 300px;
}

.flex-imgbg_supply .imgbg_border {
    border-top: 1px solid #000;
}


.flex-imgbg_supply .imgbg_wrapper .imgbg-inner {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
    overflow: visible;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.flex-imgbg_supply .imgbg_wrapper .imgbg {
    z-index: 1;
    position: absolute;
    border: 0;
    margin: 0;
    padding: 0;
    left: calc(50% + 0px);
    right: auto;
    bottom: 0px;
    top: auto;
    -webkit-transform: translatex(-50%);
    transform: translatex(-50%);
}

.imgbg.imgbg_supply {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.flex-imgbg_supply .imgbg_wrapper.imgbg-flex-2 {
    width: calc(100%/3);

}
.content_full  .copy-inner .msi__logo{
    /* width: 100%; */
    margin-right: 10px;
    min-width: 100px;
    display: inline-block
}

/* @media (max-width: 1400px) {
   
    
} */

.content_full  .copy-inner .icon__font {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
}

.content_full  .copy-inner .icon__font a {
    display: inline-block;
    cursor: pointer ;
}

.content_full  .copy-inner .icon__font .margin__box {
    margin: 0;
}

.icon__font a i{
    font-size: 33px;
    color: #000;
    
}

@media (max-width: 768px) {
    .icon__font a i{
        /* font-size: 3em; */
        color: #000;
        
    }
    
}

@media (max-width: 736px) {
    .content_full  .copy-inner .msi__logo{
        width: auto;
        margin-right: 10px;
        min-width: 0;
        }
    
}

.bg-link-a {
    background-image: url(https://storage-asset.msi.com/event/msi_ipc/images/content_bg_01.jpg);
}

.bg-link-b {
    background-image: url(https://storage-asset.msi.com/event/msi_ipc/images/content_bg_02.jpg);
}

.copy-inner {
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    z-index: 4;
    /* pointer-events: none; */
    position: absolute !important;
    width: 90%;
    top: 45%;
    left: 15%;
    -webkit-transform: translateY(-45%);
    transform: translateY(-45%);
    /*    -webkit-transform: translateX()(-20%);
    transform: translateX(-20%);*/
    
}



.copy-inner-icon{
    left: 0;
    top: 50%;
    width: 100%;
}


#home_contactUS a.defaultBtn {
    pointer-events: auto;
}


@media (max-width: 768px) {
    .copy-inner {
        top: 40%;
        left: 10%;
        width: 80%;
    }

    .flex-imgbg_supply .imgbg_wrapper {
        height: 300px;
    }
}

@media (max-width: 736px) {
    .flex-imgbg_supply .imgbg_wrapper.imgbg-flex-2 {
        width: 100%;
    }
    .flex-imgbg_supply .imgbg_wrapper {
        height: 200px;
    }
    .copy-inner {
        width: 90%;
        left: 5%;
        top: 45%;
    }
    .copy-inner .title,
    .copy-inner .subhead {
        text-align: center;
    }

    .copy-inner .morebtn {
        display: block;
        margin-top: 20px;
        margin: 20px auto;
        text-align: center;
    }
}





/* pagenav*/

.pageNavBar {
    width: 100%;
    display: block;
    margin: 30px auto;
    letter-spacing: 0;
}

.pageNavBar ul {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.pageNavBar ul.justify-end {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
}

.pageNavBar ul.justify-between {
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.pageNavBar li.next {
    margin-left: 20px;
}

.pageNavBar li.prev {
    margin-right: 20px;
}

.pageNavBar li.pageItem a {
    font-size: 15px;
    font-weight: 500;
    color: #b1b1b1;
    padding: .85rem 0rem;
    display: block;
    text-align: center;
    box-sizing: border-box;
    vertical-align: middle;
    width: 40px;
    height: 40px;
    position: relative;
}

.pageNavBar li a:hover {
    background: transparent;
    color: #2e98e5;
}

.pageNavBar li a.active {
    background: transparent;
    color: #2e98e5;
    border: 0;
    font-weight: 700;
}

.pageNavBar li a.active:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    left: 25%;
    max-width: 20px;
    vertical-align: middle;
    text-align: center;
    background-color: #2e98e5;
}


.pageNavBar .angle-icon {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
    width: 40px;
    height: 40px;
    position: relative;
    border: 1px solid #eaeaea;
}

.pageNavBar .angle-icon:hover {
    color: #2e98e5;
    border: 1px solid #2e98e5;
}

.pageNavBar .angle-icon.angleRight:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 40px;
    padding: 0rem 0rem;
    background: url(https://storage-asset.msi.com/event/msi_ipc/images/icon_angle-right_bule.svg)left center no-repeat;
}

.pageNavBar .angle-icon.angleLeft:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 40px;
    padding: 1.5rem 0rem;
    background: url(https://storage-asset.msi.com/event/msi_ipc/images/icon_angle-left_bule.svg)left center no-repeat;
}

.pageNavBar .angleRight {
    margin-left: 20px;
}

.pageNavBar .angleLeft {
    margin-right: 20px;
}


/* ================= articleNav / NES PAGE FOOTER ======================*/

.articleNav li a {
    display: inline-block;
    color: #b1b1b1
}

.articleNav li.pageItem a.nav_back_btn {
    width: 100%;
    cursor: pointer;
    box-sizing: border-box;
    vertical-align: middle;
    padding: 15px 30px;
    background: transparent;
    color: #333;
    border: 1px solid #eaeaea;
    width: auto;
    height: auto;
    opacity: 1;
    font-size: 15px;
    border-radius: 2px;
}

.articleNav li.pageItem a.nav_back_btn:after {
    display: none;
}

.articleNav li.pageItem a.nav_back_btn:hover {
    background: transparent;
    color: #2e98e5;
    border: 1px solid #2e98e5;
}

@media (max-width: 992px) {
    .pageNavBar {
        margin: 30px auto 60px;
    }
}

@media (max-width: 736px) {
    .pageNavBar ul {
        justify-content: space-around;
    }
}

/*===== back nav=====================*/
.pageBack {
    width: 100%;
    display: block;
    margin: 0px auto;

    letter-spacing: 0;
}

.pageBack .prev {
    color: #2e98e5
}

.pageBack a {
    font-size: 18px;
    font-weight: 500;
    display: inline-block;
    line-height: 20px;
    color: #2e98e5;
    text-align: left;
    padding: 0;
    box-sizing: border-box;
    vertical-align: middle;
    position: relative;
}

.pageBack a:hover {
    background: transparent;
    color: #2e98e5;
}

.pageBack a.active {
    background: transparent;
    color: #2e98e5;
    border: 0;
    font-weight: 700;
}

.pageBack .angle-icon {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    background-color: transparent;
    width: 20px;
    position: relative;
}

.pageBack .angle-icon.angleLeft:after {
    content: "";
    display: inline-block;
    vertical-align: baseline;
    width: 20px;
    height: 20px;
    padding: 0;
    background: url(https://storage-asset.msi.com/event/msi_ipc/images/icon_angle-left_bule.svg)left center no-repeat;
}

.find_msg_bar {
    width: 100%;
    max-width: 800px;
    margin: 0px auto;
}

.find_msg_bar .find_msg{
    float: left;
    line-height: 1.6;
    color: #c5c5c5;
    padding: 15px 0;
}
.find_msg_bar .find_msg span {
    color: #2e98e5;
    padding: 0 5px;
}