html {
    padding: 0;
    margin: 0;
    display: table;
    width: 100%;
    height: 100%;
    scroll-behavior: smooth;
}

*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
    color: #fff;
    box-sizing: border-box;
}

body{
    height: 100vh;
    width: 100%;
    font-family: "Alegreya Sans";
}


/* Navbar Style */
nav {
    width: 100%;
    height: 60px;
    position: sticky;
    z-index: 999;
}

nav .container .left-nav {
    float: left;
    padding-top: 20px;
}

nav .container .right-nav {
    float: right;
}

nav .container {
    /* display: flex;
    justify-content: space-between; */
    padding: 0px 70px;
}

nav .container .right-nav ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 30px; */
}

nav .container .right-nav ul li {
    font-family: "Alegreya";
    line-height: 70px;
    font-size: 18px;
    font-weight: 400;
    padding: 7px 15px;
}

.active {
    border-top: 3px solid #AD9667;
}

.other a {
    color: #fff;
    transition: all .3s ease;
}

.other a:hover {
    color: #AD9667;
}


/* main Page Style */

/* Header Section Style */
main {
    position: absolute;
    top: 0;
    width: 100%;
    min-height: 100vh;
}

.home {
    position: relative;
    width: 100%;
    height: 120vh;
    background-image: url('images/bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.home .contain {
    width: 100%;
    /* position: absolute;
    top: 70px; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 230px 0 -230px 0;
}

.home .contain .container {
    width: 100%;
}

.home .contain .container p {
    font-size: 23px;
    font-weight: 400;
    width: 50%;
    line-height: 2;
    margin: auto;
}

.home .contain .container h1 {
    font-family: "Alegreya";
    font-size: 75px;
    font-weight: 300;
    margin-bottom: 10px;
}

.home .contain .container .btn-container {
    margin-top: 25px;
}

.home .contain .container .btn-container .btn {
    font-family: "Alegreya Sans";
    font-size: 17px;
    font-weight: 600;
    padding: 18px 30px;
    background-color: transparent;
    outline: none;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.home .contain .container .btn-container .one {
    margin-right: 20px;
    background-color: #8e7754;
    color: #fff;
    transition: all .3s ease;
}
.home .contain .container .btn-container .one:hover {
    background-color: #ffffff;
    color: #000000;
}

.home .contain .container .btn-container .two {
    color: #fff;
    border: 2px solid #fff;
    transition: all .3s ease;
}
.home .contain .container .btn-container .two:hover {
    color: #000000;
    background-color: #fff;
    transition: all .3s ease;
}

.home .switch {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 90px;
    margin-bottom: -40px;
    text-align: center;
    z-index: 99;
}

.home .switch a  {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #fff;
    width: 34px;
    height: 52px;
    border-radius: 24px;
    text-indent: -9999px;
    position: relative;
    cursor: pointer;
}

.home .switch a span {
    height: 8px;
    width: 8px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    position: absolute;
    left: 11px;
    top: 6px;
    animation: backery-animation 2.5s infinite linear;
}

@keyframes backery-animation {
    10%{
        opacity: 1;
        top: 8px;
    }
    30%{
        opacity: 0;
        top: 15px;
    }
    50%{
        opacity: 0;
        top: 25px;
    }
    10%{
        opacity: 0;
        top: 8px;
    }
}


/* About Section Style */
.about {
    width: 100%;
    background-color: #fff;
}

.about .container {
    width: 100%;
    padding: 100px 70px;
    display: flex;
    justify-content: space-between;
}

.about .container .part {
    font-family: "Alegreya";
    font-size: 17px;
    color: #8e7754;
    padding: 40px 10px 0 80px;
}

.about .container .part h2 {
    color: #303030;
    font-size: 33px;
    font-weight: 100;
}

.about .container .part p {
    font-family: "Alegreya Sans";
    color: #686868;
    font-size: 17px;
    font-weight: 500;
    line-height: 2;
    margin: 25px 0;
}

/* .about .container .part ul li {
    margin-bottom: 20px;
} */

.about .container .part ul i {
    font-size: 23px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #fff;
    color: #8e7754;
    border: 1px solid #8e775446;
    text-align: center;
    padding-top: 13px;
    margin: 0 10px 10px 0;
}

.about .container .part ul span {
    font-family: "Alegreya Sans";
    color: #686868;
    font-size: 17px;
    font-weight: 500;
    line-height: 2;
}


/*  Location Section Style */
.location {
    background-color: #F8F8F8;
    width: 100%;
}

.location .container {
    width: 100%;
    padding: 100px 70px;
    display: flex;
    justify-content: space-between;
}

.location .container .con-left {
    font-family: "Alegreya";
    font-size: 17px;
    color: #8e7754;
    padding: 40px 85px 0 0px;
}

.location .container .con-left h2 {
    color: #303030;
    font-size: 33px;
    font-weight: 100;
}

.location .container .con-left p {
    font-family: "Alegreya Sans";
    color: #686868;
    font-size: 17px;
    font-weight: 500;
    line-height: 2;
    margin: 25px 0;
}


/* Baking Section Style */
.baking {
    width: 100%;
    background-color: #fff;
}

.baking .container {
    width: 100%;
    padding: 70px;
}

.baking .container .one {
    text-align: center;
    margin-bottom: 55px;
}

.baking .container .one h2 {
    font-family: "Alegreya";
    color: #303030;
    font-size: 33px;
    font-weight: 400;
}

.baking .container .one p {
    font-family: "Alegreya Sans";
    color: #888888;
    font-size: 17px;
    font-weight: 500;
    line-height: 2;
    margin: 15px 0;
}

.baking .container .two {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.baking .container .two .block {
    padding: 0px 15px;
}

.baking .container .two h3 {
    font-family: "Alegreya";
    color: #303030;
    font-size: 23px;
    font-weight: 400;
    padding-top: 20px;
}

.baking .container .two p {
    font-family: "Alegreya Sans";
    color: #888888;
    font-size: 17px;
    font-weight: 500;
    line-height: 2;
    margin: 15px 0;
}


/* Contact Section Style  */
.contact {
    width: 100%;
    background-color: #F8F8F8;
}

.contact .container {
    width: 100%;
    padding: 70px;
    display: flex;
    justify-content: space-around;
}

.contact .container .one {
    font-family: "Alegreya";
    font-size: 17px;
    color: #8e7754;
    padding: 40px 85px 0 0px;
}

.contact .container .one h2 {
    color: #303030;
    font-size: 33px;
    font-weight: 100;
}

.contact .container .one p {
    font-family: "Alegreya Sans";
    color: #686868;
    font-size: 17px;
    font-weight: 500;
    line-height: 2;
    margin: 25px 0;
}

.contact .container .one span {
    font-family: "Alegreya Sans";
    color: #686868;
    font-size: 17px;
    font-weight: 500;
}

.contact .container .one .list {
    margin-top: 30px;
}

.contact .container .one .list i {
    font-size: 17px;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    background-color: #8e7754;
    color: #ffffff;
    text-align: center;
    padding-top: 8px;
    margin: 0 10px 10px 0;
}

.contact .container .two {
    border: 1px solid #8e775448;
}

/* Footer Page Style */

/* first Section Style */
.footer-one {
    background-color: #403D38;
    width: 100%;
}

.footer-one .container {
    width: 100%;
    padding: 70px;
    display: flex;
    justify-content: space-around;
}

.footer-one .container .block {
    width: 22%;
    /* padding-right: 20px; */
}

.footer-one .container .block h3 {
    font-family: "Alegreya";
    color: #ffffff;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 25px;
}

.footer-one .container .fix {
    width: 25%;
}

.footer-one .container .block p {
    margin-bottom: 20px;
}

.footer-one .container .block span,
.footer-one .container .block p,
.footer-one .container .block span a {
    font-family: "Alegreya Sans";
    color: #888888;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    transition: all .5s ease;
}

.footer-one .container .block span a,
.footer-one .container .block .fx span {
    padding-left: 10px;
}

.footer-one .container .block span a:hover {
    color: #F8F8F8;
}

.footer-one .container .block li {
    padding-bottom: 20px;
    position: relative;
}

.footer-one .container .block .after::after {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #8888882c;
}

.footer-one .container .block i {
    color: #969696;
}

/* Second Section Style */
.footer-two {
    width: 100%;
    background-color: #353330;
}

.footer-two .container {
    width: 100%;
    padding: 65px;
    text-align: center;
}

.footer-two .container p {
    color: #717273;
    font-family: "Alegreya Sans";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    margin: 20px 0;
}

.footer-two .container .social i {
    background-color: #484540;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    color: #8c8a86;
    padding-top: 12px;
    margin: 0px 5px;
    cursor: pointer;
    transition: all .5s ease;
}

.footer-two .container .social .fa-facebook-f:hover {
    color: #fff;
    background-color: #0275d8;
}

.footer-two .container .social .fa-google-plus-g:hover {
    color: #fff;
    background-color: #DD4B39;
}

.footer-two .container .social .fa-linkedin-in:hover {
    color: #fff;
    background-color: #007BB5;
}

.footer-two .container .social .fa-twitter:hover {
    color: #fff;
    background-color: #00ACED;
}