*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}
body{
    font-family: 'Montserrat', sans-serif;
}


/*  ==============  HEADER_STARTING ============== */

header{
    background: url('./image/header_bg.jpg') no-repeat center bottom;
    height: 570px;
}

header .menu_top{
    width: 100%;
    background: #f8f8f8;
    padding: 7px 0;
    box-shadow: 0 0 8px #cfc9c4;
}

header .menu_top nav{
    width: 1110px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .menu_top nav ul{
    display: flex;
}
header .menu_top nav ul li{
    margin-left: 23px;
}
header .menu_top nav ul li a{
    font-size: 16px;
    font-weight: 400;
    color: #4e4e4e;
    transition: 500ms;
}
header .menu_top nav ul li a.active, 
header .menu_top nav ul li a:hover
{
    color: #dd4400;
}


/* ===============  MAIN_STARTING   =============== */

main{
    width: 1115px;
    margin: auto;
    padding: 50px 0 100px;
}

main .about{
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}
main .about .box{
    width: 255px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 0 14px #ebded9;
}
main .about .box h3{
    font-size: 18px;
    font-weight: 700;
    margin: 50px 0;
    color: #dd4400;
    text-align: center;
}
main .about .box .line{
    margin-bottom: 30px;
}

.btn{
    border: none;
    background: #dd4400;
    font-size: 16px;
    font-weight: 400;
    margin-top: 24px;
    margin-bottom: 26px;
    padding: 14px 53px 11px;
    color: white;
    transition: 500ms;
    cursor: pointer;
}
.btn:hover{
    background: yellow;
    color: black;
}


main .business{
    display: flex;
    justify-content: space-between;
}
main .business .left{
    width: 730px;
}
main .business h2{
    color: #5e5e5e;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 52px;
}
main .business .left p{
    font-size: 18px;
    color: #5e5e5e;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 40px;
}
main .business .left .btn{
    margin: 0;
}


main .business .right{
    width: 250px;
}

main .business .right .item{
    display: flex;
    margin-bottom: 15px;
}
main .business .right .item img{
    width: 65px;
    height: 65px;
    margin-right: 30px;
}
main .business .right .item a{
    font-size: 14px;
    font-weight: 400;
    color: #dd4400;
    line-height: 21px;
    text-decoration: underline;
}



/* footer */

footer{
    background: #dd4400;
    padding: 66px 0;
}
footer .contact{
    width: 1110px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    color: white;
}

footer .contact h3{
    margin-bottom: 23px;
    font-weight: 400;
    font-size: 30px;
}
footer .contact .left a{
    font-size: 45px;
    font-weight: 400;
    color: white;
}
footer .contact .left p{
    font-size: 18px;
    font-weight: 400;
}
footer .contact .right{
    text-align: right;
}
footer .contact .right p{
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 26px;
}
footer .contact .right a{
    font-size: 20px;
    font-weight: 400;
    color: white;
}

/* ===== FINISH ===== */

