.home-wrapper{
    width: 80%;
    margin: 0 auto 7% auto;
}
.home-top-logo{
    text-align: center;
    margin: 4% 0 4% 0;
}
.home-top-logo img{
    width: 49.6%;
    opacity: 0;
	transform: translate(0, 25px);
    transition: all 5s 0.4s ease-out;
}
.home-news{
    width: 50%;
    text-align: center;
    margin: 0 auto;
    opacity: 0;
	transform: translate(0, 0);
    transition: all 1s ease-out;
}
.home-news h2{
    color: #FAAC58;
    margin: 0 0 1% 0;
}
.home-news dl{
    padding: 1.5% 0;
    text-align: left;
    font-weight: bold;
}
.home-news dt{
    font-size: 14px;
    color: darkgrey;;
}
.home-news a{
    text-decoration: underline #FAAC58 2px;
    color: black;
}
.home-news a:hover{
    opacity: 0.8;
}
.home-content-title{
    margin: 2% 0;
    text-align: center;
    color: #FAAC58;
    opacity: 0;
	transform: translate(0, 0);
    transition: all 1s ease-out;
}
.home-content{
    display: flex;
    width: 90%;
    margin: 0 auto;
    opacity: 0;
	transform: translate(0, 0);
    transition: all 1s ease-out;
}
.home-content-box{
    text-align: center;
    width: 33%;
    margin: 0 3%;
}
.home-content-box img{
    width: 100%;
    border-radius: 10px;
}
.home-content-box-text h3{
    font-size: 18px;
}
.home-content-box-text{
    margin: 5% 0;
    text-align: left;
}
.home-content-box-text p{
    height: 110px;
}
.home-content-box-button{
    text-align: center;
    width: 100%;
    padding: 8% 0;
}
.home-content-box-button a{
    color: white;
    background: #FAAC58;
    border: 1px solid #FAAC58;
    text-decoration: none;
    border-radius: 7px;
    padding: 3% 15%;
    transition: 0.3s;
}
.home-content-box-button a:hover{
    color: #FAAC58;
    background-color: white;
}


/*responsive*/
@media screen and (min-width: 768px) and (max-width: 1068px){
    .home-wrapper{
        width: 100%;
        margin: 0 auto 7% auto;
    }
    .home-top-logo{
        margin: 8% 0;
    }
    .home-top-logo img{
        width: 80%;
        box-sizing: border-box;
    }
    .home-content-title{
        font-size: 17px;
        margin: 5% 0 3% 0;
    }
    
    .home-content-box{
        width: 30%;
        margin:0 auto;
    }
    .home-content-box-text h3{
        font-size: 15px;
    }
    .home-content-box-button{
        padding: 12% 0;
    }
}

@media screen and (max-width: 767px){
    .home-wrapper{
        width: 90%;
        margin: 0 5% 5% 5%;
    }
    .home-top-logo{
        margin: 8% 0 12% 0;
    }
    .home-top-logo img{
        width: 80%;
        height: 40vh;
        box-sizing: border-box;
    }
    .home-news{
        width: 90%;
        margin: 0 auto;
    }
    .home-news h2{
        font-size: 18px;
    }
    .home-news a{
        font-size: 15px;
    }
    .home-content-title{
        margin: 15% 0 2% 0;
    }
    .home-content-title h2{
        font-size: 18px;
    }
    .home-content{
        display: block;
    }
    .home-content-box{
        width: 80%;
        margin: 3% auto;
    }
    .home-content-box h3{
        font-size: 16px;
    }
    .home-content-box p{
        font-size: 14px;
        height: auto;
    }
    .home-content-box-button{
        padding: 13% 0;
    }
    .home-content-box-button a{
        font-size: 15px;
        padding: 2% 14%;
    }
}