*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    /* background-color: aquamarine; */
}
header{
    width: 100%;
    position: relative;
    z-index: 9;
}
.nav{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 98px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo>a{
    display: flex;
    align-items: center;
    padding: 8px;
}
.logo img{
    height: 60px;
}
.logo-text{
    margin-left: 20px;
    font-size: 15px;
    color: #ffffff;
}
.logo>a:hover{
    transform: translate(-3px,-3px);
    transition: all 0.3s;
}
.logo>a:hover .logo-text{
    color: #ee9a57;
}
nav{
    display: flex;
    align-items: center;
}
nav a{
    height: 40px;
    line-height: 40px;
    padding: 0 25px;
    font-weight: 600;
    font-size: 18px;
    color: #ffffff;
}
nav a:hover{
    color: #c4832e;
    transition: all .3s;
    border-radius: 9px;
    background-color: #ffffff;
}
a{
    text-decoration: none;
}
footer{
    padding: 5px 0;
    background-color: #623e29;
}
footer>a{
    display: block;
    width: 1200px;
    margin: 0 auto;
    color: #ffffff;
    font-size: 45px;
    padding: 45px 0;
    font-family: "Gilda Display", serif;
}
footer>a:hover{
    color: #ee9a57;
}
h1{
    font-family: "Gilda Display", serif;
}
ul{
    list-style: none;
}
footer ul{
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
footer ul>li{
    width: 360px;
    padding: 25px;
    border: 1px solid #ffffff;
}
footer h2{
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 20px;
}
footer li>div{
    display: flex;
    align-items: center;
    margin-right: 12px;
    margin-bottom: 6px;
    font-size: 15px;
    color: #ffffff;
}
footer ul li>div img{
    height: 34px;
}
footer ol{
    margin-top: 35px;
    display: flex;
    align-items: center;
    list-style: none;
}
footer ol li{
    margin-right: 30px;
}
footer ol li img{
    width: 50px;
    height: 50px;
}
footer ul li a{
    display: block;
    width: 310px;
    height: 58px;
    margin: 0 auto;
    margin-top: 45px;
    border-radius: 29px;
    line-height: 50px;
    text-align: center;
    border: 2px solid #ffffff;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}
footer ul a:hover{
    color: #ee9a57;
    border-color: #ee9a57;
}
footer p{
    text-align: center;
    margin-top: 70px;
    line-height: 2;
    font-size: 14px;
    color: #ffffff;
}
p{
    font-family: "Inter", sans-serif;
}
@media (max-width: 780px) {
    header{
        background-color: #623e29;
    }
    .nav{
        position: relative;
        left: 0;
        transform: translateX(0);
        width: 100%;
        height: auto;
        flex-wrap: wrap;
    }
    .logo{
        width: 100%;
    }
    .logo>a{
        justify-content: center;
    }
    nav{
        display: block;
        width: 100%;
    }
    nav a{
        display: block;
        text-align: center;
        font-size: 16px;
        border-top: 1px solid #c4832e;
    }
    footer>a{
        width: 94%;
        font-size: 34px;
    }
    footer ul{
        width: 100%;
        padding: 3%;
        display: block;
    }
    footer ul>li{
        width: 100%;
        margin-bottom: 20px;
    }
    footer p{
        padding-bottom: 35px;
        margin-top: 40px;
        text-align: center;
    }
}