* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

a {
    text-decoration: none;
}

.clear {
    clear: left;
}

.container {
    max-width: 1366px;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
}

/*Start of CSS Code for Navbar*/
header {
    height: auto;
    width: 100%;
    background-color: #fff;
    padding: 0 10px;
    position: fixed;
    top: 0;
    z-index: 10;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.logo {
    width: 125px;
    margin-top: 10px;
}

.nav-left {
    float: left;
}

.nav-right {
    float: right;
    margin-right: -25px;
}

.nav-right a {
    line-height: 65px;
    padding: 0 25px;
    color: black;
    display: block;
    float: left;
    transition: all 0.5s;
}

.nav-right a:hover {
    background-color: rgb(238, 210, 131);
    border-bottom: 5px solid rgb(186, 147, 39);
}

.menu-icon {
    color: rgb(186, 147, 39);
    float: right;
    font-size: 25px;
    padding: 21px 0;
    margin-right: 20px;
    display: none !important;
}

.active {
    border-bottom: 5px solid rgb(186, 147, 39);
}
/*End of CSS Code for Navbar*/

/*Start of CSS Code for Header*/
.top-wrapper {
    padding: 200px 0;
    background-image: url(../image/background.jpg);
    background-size: cover;
    color: white ;
    text-align: center;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.top-wrapper h1 {
    opacity: 0,7;
    font-size: 70px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 2px black;
}

.animation {
    font-size: 22px;
	width: 100%;
	white-space:nowrap;
	overflow:hidden;
	-webkit-animation: text 3s steps(50, end);
	animation: text 3s steps(50, end);
    opacity: 0,5;
}

@keyframes text {
    from { width: 0; }
}

@-webkit-keyframes text{
    from { width: 0; }
}

.btn-wrapper {
    text-align: center;
    margin-top: 50px;
}

.btn-explore {
    padding: 12px 50px;
    color: white;
    opacity: 0.7;
    border-radius: 20px;
    text-align: center;
    background-color: brown;
}

.btn-explore:hover {
    opacity: 1;
}
/*End of CSS Code for Header*/

/*Start of CSS Code for Body*/
.mid-wrapper {
    margin-bottom: 70px;
}

.content-wrapper1 {
    padding: 20px 20px 40px 10px;
}

.content-text1, .content-text2 {
    width: 300px;
    margin-right: 30px;
    float: left;
}

.content-text2 {
    margin-top: 200px;
    margin-left: 20px;
}

.content-img img {
    width: 40%;
    margin-top: 40px;
    margin-left: 30px;
}

.content-wrapper2{
    padding: 20px 20px 40px 10px;
    margin-top: 20px;
}

.content-img-second img{
    vertical-align: top;
    width: 40%;
    margin-right: 30px;
    margin-top: 110px;
    float: left;
}

.content-text3, .content-text4{
    vertical-align: top;
    width: 300px;
    margin-right: 30px;
    margin-left: 10px;
    float: left;
}

.content-text3{
    margin-top: 270px;
    margin-left: 30px;
}

.content-wrapper2 h2{
    float: right;
    margin-right: 45px;
}
/*End of CSS Code for Body*/

/*Start of CSS Code for Footer*/
footer {
    background-color: rgb(238, 210, 131);
    padding-top: 30px;
    padding-bottom: 10px;
}

footer img {
    width: 150px;
	float: left;
    margin: 20px 50px;
}

.footer-contents {
    display: inline-block;
    margin-left: 200px;
}

.footer-bottom {
    display: inline-block;
    margin-left: 280px;
}

.footer-icon span {
    margin-right: 10px;
}
/*End of CSS Code for Footer*/