.banner_main {
    width: 100%;
    height: 100%;
    padding: 83px 0 !important;
    text-align: center;
    box-sizing: border-box;
}
.banner_box_bg{
    background: url('../img/projects_bg.png') no-repeat;
    background-size: cover;
}
.banner_main_title{
    font-family: Gotham;
    font-weight: bold;
    font-size: 36px;
    color: #FFFFFF;
    line-height: 60px;
}
.banner_main_des{
    font-family: Gotham;
    font-weight: bold;
    font-size: 22px;
    color: #FFFFFF;
    word-spacing: 5px;
    letter-spacing:2px;
}


.projects_content{
    width: 100%;
    height: auto;
    padding: 60px 0;
    box-sizing: border-box;
}
.projects_list{
    display: flex;
    justify-content: flex-start;
    align-items: start;
    flex-wrap: wrap;
    margin-top: 64px;
    gap: 4rem;
}
.projects_item {
    width: calc((100% - 8rem) / 3);
    height: auto;
    position: relative;
    overflow: hidden;
}
.projects_item:hover img{
    transform: scale(1.1);
}
.projects_item:hover .projects_item_btn {
    display: flex;
}
.projects_item img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transform: scale(1);
    transition: transform 0.3s ease;
    cursor: pointer;
}
.projects_item_btn{
    display: none;
    gap: 0 17px;
    width: 200px;
    height: 60px;
    line-height: 60px;
    background: #FF7000;
    border-radius: 5px 5px 5px 5px;
    position: absolute;
    right: 40px;
    bottom: 26px;
    cursor: pointer;
}
.projects_item_btn div {
    font-family: Gotham;
    font-weight: bold;
    font-size: 20px;
    color: #FFFFFF;
}
.projects_item_btn img {
    width: 27.25px;
    height: 20px;
}