


/* 把我们所有标签的内外边距清零 */
* {
    margin: 0;
    padding: 0;
    /* css3盒子模型 */
    box-sizing: border-box;
}

/* em 和 i 斜体的文字不倾斜 */
em,
i {
    font-style: normal
}

/* 去掉li 的小圆点 */
ul li {
    list-style: none
}

img {
    /* border 0 照顾低版本浏览器 如果 图片外面包含了链接会有边框的问题 */
    border: 0;
    /* 取消图片底侧有空白缝隙的问题 */
    vertical-align: middle
}

button {
    /* 当我们鼠标经过button 按钮的时候，鼠标变成小手 */
    cursor: pointer
}

a {
    color: white;
    text-decoration: none
}


button,
input {
    /* "\5B8B\4F53" 就是宋体的意思 这样浏览器兼容性比较好 */
    font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB, "\5B8B\4F53", sans-serif;
    /* 默认有灰色边框我们需要手动去掉 */
    border: 0;
    outline: none;
}

body {
    /* CSS3 抗锯齿形 让文字显示的更加清晰 */
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    font: 12px/1.5;
    font-family: 'Poppins', sans-serif;
    color: white;
    background: #101010;
}

.hide,
.none {
    display: none
}

/* 清除浮动 */
.clearfix:after {
    visibility: hidden;
    clear: both;
    display: block;
    content: ".";
    height: 0
}


.w {

    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

@font-face {
    font-family: 'MyFont';
    src: url(../font/Gotham\ Pro\ Regular.ttf) format('woff2'),
        url(../font/Gotham\ Pro\ Regular.ttf) format('woff');
}

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?ojhyvg');
    src: url('../fonts/icomoon.eot?ojhyvg#iefix') format('embedded-opentype'),
        url('../fonts/icomoon.ttf?ojhyvg') format('truetype'),
        url('../fonts/icomoon.woff?ojhyvg') format('woff'),
        url('../fonts/icomoon.svg?ojhyvg#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}


/* bg2 */
.hdsection .bg2 {
    background: url(../images/background3.png) no-repeat;
    background-size: 100% auto;
    min-height: 400px;
}

@media (max-width: 800px) {
    .hdsection .bg2 {
        background: url(../images/background4.png) no-repeat;
        background-size: 100% auto;
    }
}



/* Header */

.hdsection .bg {
    background: url(../images/background2.png) no-repeat;
    background-size: 100% auto;
}

@media (max-width: 800px) {
    .hdsection .bg {
        background: url(../images/background2.png) no-repeat;
        background-size: auto 100%;
    }
}

.hdsection .navbar {
    height: 138px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.hdsection .navbar h1 img {
    max-width: 200px;
}

.hdsection .navbar ul {
    display: flex;

}

.hdsection .navbar ul li a {
    font-size: 18px;
    padding: 20px;
    color: #ffffff;
}


.hdsection .navbar ul li a:hover {
    color: #d12145;
}

/* nav_main */



.dropdown:hover .dropdown-content {
    display: block;
}


.dropdown-content a:hover {
    background-color: #df0b37;
    color: white;
    transition: background-color 0.5s ease-in-out;
}

.topbtn {
    height: 34px;
    padding: 0px 15px;
    border-radius: 5px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: linear-gradient(135deg, #d90a2c 0, #ed0d50 50%, #d9230a 100%);
    color: white;
}

.dropbtn {
    padding: 0px 10px;
    font-size: 16px;
    background: none;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.dropbtn span {
    font-family: 'icomoon';
}

.dropdown button span {
    font-family: 'icomoon'
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 0px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown .dropdown-content .nav_item {
    float: none;
    color: black;
    padding: 8px 12px;
    font-size: 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown .dropdown-content .nav_item:hover {
    background-color: #df0b37;
    color: white;
    transition: background-color 0.5s ease-in-out;
}

#myDropdown a {
    font-size: 14px;
    padding: 15px 10px;
}

#myDropdown2 a {
    font-size: 14px;
    padding: 15px 10px;
}

.show {
    display: block;
}

#dropdownContent1 {
    display: none;
}

#dropdownContent2 {
    display: none;
}

@media (max-width: 991px) {
    .hdsection .navbar ul li a {
        font-size: 14px;
        padding: 10px;
        color: #ffffff;
    }

    .hdsection .navbar .topbtn {
        height: 34px;
        padding: 0px 5px;
        border-radius: 5px;
        font-size: 12px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        background: linear-gradient(135deg, #d90a2c 0, #ed0d50 50%, #d9230a 100%);
        ;
        color: white;
    }
}

/* Nav_side */
.side_nav {
    display: flex;
    justify-content: space-between;
    padding: 30px;
    white-space: nowrap;
    align-items: center;
}


.side_nav h1 img {
    max-width: 250px;
}

.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.sidenav a {
    padding: 8px 8px 30px 32px;
    text-decoration: none;
    font-size: 18px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.sidenav a:hover {
    color: #fd4766;
}

.sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

#main {
    transition: margin-left .5s;
    padding: 16px;
}

.sidenav .iconmoon {
    font-family: 'icomoon';
    font-size: 20px;
}

@media (min-width:1280px) {
    .side_nav {
        display: none;
        visibility: hidden;
    }
}

@media (max-width: 1280px) {
    .side_nav span {
        font-size: 30px;
    }

    .hdsection .bg .navbar {
        display: none;
        visibility: hidden;
    }

    @media screen and (max-height: 450px) {
        .side_nav {
            padding-top: 15px;
        }

        .side_nav a {
            font-size: 18px;
        }
    }

    @media (max-width: 576px) {

        .side_nav {
            display: flex;
            justify-content: space-between;
            padding: 15px;
            white-space: nowrap;
            align-items: center;
        }


        .hdsection .bg .navbar {
            display: none;
            visibility: hidden;
        }


        .side_nav span {
            font-size: 20px;
        }

        .side_nav a {
            font-size: 18px;
        }

        .side_nav h1 img {
            max-width: 100px;
        }

        .side_nav .topbtn {
            height: 25px;
            padding: 0px 10px;
            border-radius: 3px;
            font-size: 10px;
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            background: linear-gradient(135deg, #d90a2c 0, #ed0d50 50%, #d9230a 100%);
            ;
            color: white;
        }
    }
}

@media (max-width: 1280px) {
    .side_nav span {
        font-size: 30px;
    }

    .hdsection .bg2 .navbar {
        display: none;
    }

    @media screen and (max-height: 450px) {
        .side_nav {
            padding-top: 15px;
        }

        .side_nav a {
            font-size: 18px;
        }
    }

    @media (max-width: 576px) {

        .side_nav {
            display: flex;
            justify-content: space-between;
            padding: 15px;
            white-space: nowrap;
            align-items: center;
        }


        .hdsection .bg2 .navbar {
            display: none;
        }


        .side_nav span {
            font-size: 20px;
        }

        .side_nav a {
            font-size: 18px;
        }

        .side_nav h1 img {
            max-width: 100px;
        }

        .side_nav .topbtn {
            height: 25px;
            padding: 0px 10px;
            border-radius: 3px;
            font-size: 10px;
            font-family: 'Poppins', sans-serif;
            font-weight: 400;
            background: linear-gradient(135deg, #d90a2c 0, #ed0d50 50%, #d9230a 100%);
            ;
            color: white;
        }
    }
}

/* footer */

footer {
    background: #000;
    padding: 100px 0px;
}

.row1 img {
    max-width: 320px;
}

.footer .w {
    display: grid ;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 30px;
}

.row1 p {
    margin-top: 20px;
    font-size: 14px;
    color: #818181;
}

.link-bd p {
    font-size: 16px;
    color: #818181;
}

@media screen and (max-width: 768px) {

    .footer .w {
        display: grid ;
        grid-template-columns:  1fr 1fr;
        column-gap: 30px;
        row-gap: 40px;
    }

}


@media screen and (max-width: 576px) {

    .footer .w {
        display: grid ;
        grid-template-columns:   1fr;
        column-gap: 30px;
        row-gap: 40px;
    }

}

/* whatsapp */
#fixed-image {
    position: fixed;
    bottom: 20px;
    right: 20px;
    object-fit: cover;
    z-index: 1;
}

@media (max-width: 575px) {
    #fixed-image {
        width: 60px;
        height: 60px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    #fixed-image {
        display: none;
    }
}

@media (min-width: 768px) {
    #fixed-image {
        width: 50px;
        height: 50px;
    }
}

@media (min-width: 992px) {
    #fixed-image {
        width: 70px;
        height: 70px;
    }
}

@media (min-width: 1200px) {
    #fixed-image {
        width: 100px;
        height: 100px;
    }
}