*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
h1,h2,h3,h4{
    font-family: 'Alegreya', serif;
    font-weight: 400;
}
p{
    font-family: 'Alegreya Sans', sans-serif;
    font-size: 17px;
    color:#888;
    line-height: 1.8;
}
.clear-fix{
    clear: both;
}
/* Start Header */
header{
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
}
header .container{
    width: 90%;
    margin: auto;
}
header .logo{
    width: 200px;
    float: left;
}
header a img{
    width: 100%;
}
header nav{
    float: right;
}
header nav img{
    width: 30px;
    margin-top: 15px;
}
header nav ul{
    list-style: none;
}
header nav ul li{
    display: inline-block;
}
header nav ul li a{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 15px 20px;
    font-size: 20px;
    transition: color 0.3s;
}
header nav ul li a:hover{
    color: #e0c690;
}
@media screen and (min-width:992px){
    header nav img{
        display: none;
    }
}
@media screen and (max-width:992px){
    header nav ul{
        display: none;
    }
}
/* End Header */
/* Start Landing */
.landing{
    background-image: url(../images/drew-coffman-1872.jpg);
    background-size: cover;
    background-position:center ;
    min-height: 100vh;
    position: relative;
}
.landing .content{
    width: 60%;
    margin:  auto;
    padding-top: 200px;
    text-align: center;
}
.landing .content p{
    font-size: 22px;
    color: #ebebeb;
}
.landing .content h1{
    font-size: 70px;
    margin: 15px 0;
    color: #fff;
}
.landing .content .second-para{
    font-size: 24px;
}
.landing .content .btns{
    margin-top: 30px ;
}
.landing .content  .btns .btn{
    padding: 17px 20px;
    margin-right: 5px;
    border:none;
    border-radius: 3px;
    color: #fff;
    font-weight: 700;
    transition: background-color 0.3s ,color 0.3s;
    cursor: pointer;
}
.landing .content  .btns .btn:hover{
    background: #fff;
    color: black;
}
.landing .content .btns .one{
    background-color: #8e7754;
    border: 2px solid #8e7754;
}
.landing .content .btns .two{
    background: none;
    border: 2px solid #fff;
}
.landing .content .btns .one:hover{
    border: 2px solid #fff;
}
.landing  .scroll{
    border: 2px solid#fff;
    border-radius: 30px;
    width: 30px;
    height: 50px;
    margin: 50px auto;
    cursor: pointer;
}
.landing  .scroll span{
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
    margin: 5px auto;
    animation: move 1.5s  ease-in infinite;
}
@keyframes move {
    0%{
        opacity: 0;
        transform: translateY(0px); 
    }
    100%{
        opacity: 1;
        transform: translateY(15px);
    }
}
.landing .side{
    width: 50px;
    background-color: #fff;
    border-top-left-radius: 4px;
    border-bottom-left-radius:4px;
    position: fixed;
    right: 0;
    top: 220px;
}
.landing .side ul{
    list-style: none;
    text-align: center;
}
.landing .side .first {
    width: 75%;
}
.landing .side .last {
    width: 50%;
}
@media screen and (max-width:768px) and (min-width:600px){
    .landing .content p{
        font-size: 16px;
    }
    .landing .content h1{
        font-size: 40px;
    }
    .landing .content .second-para{
        font-size: 18px;
    }
    .landing .content  .btns .btn{
        padding: 10px 15px;
        margin: 0;
    }
}
@media screen and  (max-width:600px){
    .landing .content p{
        font-size: 16px;
    }
    .landing .content h1{
        font-size: 30px;
    }
    .landing .content .second-para{
        font-size: 18px;
    }
    .landing .content  .btns .btn{
        padding: 10px 15px;
        margin: 5px 0;
    }
}
/* End Landing */

/* Start about us */
.about-us{
    padding: 60px 0px;
}
.about-us .container{
    width: 90%;
    margin: auto;
}
.about-us .image{
    width: 45%;
    float: left;
    text-align: center;
}
.about-us .image img{
    width: 90%;
}
.about-us .Who-are-you{
    width: 50%;
    float: left;
    padding: 50px 30px 0;
}
.about-us .Who-are-you h2{
    margin-bottom: 30px ;
    font-size: 32px;
}
.about-us .Who-are-you .icons{
    margin-top: 30px;
}
.about-us .Who-are-you .icons .content {
    margin-bottom: 10px;
}
.about-us .Who-are-you .icons .content .photo{
    width: 30px;
    height: 30px;
    border:1px solid wheat;
    border-radius: 50%;
    text-align: center;
    float: left;
    margin-right: 10px;
}
.about-us .Who-are-you .icons .content .photo img{
    width: 20px;
    margin: 5px auto;
}
.about-us .Who-are-you .icons .content p{
    float: left;
}
@media screen and (max-width:1200px) and (min-width:992px){
    .about-us .image{
        padding-top: 20px;
    }
    .about-us .Who-are-you{
        padding:  10px;
    }
}
@media screen and (max-width:992px) and (min-width:768px){
    .about-us .image{
        padding-top: 60px;
    }
    .about-us .Who-are-you{
        padding:0 20px;
    }
}
@media screen and (max-width:768px){
    .about-us .image{
        width: 100%;
        padding-top: 0;
    }
    .about-us .Who-are-you{
        width: 100%;
    }
}
/* End about us */

/* Start location */
.our-location{
    padding: 60px 0 ;
    background-color: #f8f8f8;
}
.our-location .content {
    width: 90%;
    margin: auto;
}
.our-location .location{
    width: 50%;
    float: left;
    padding:0 20px  ;
    padding-top: 70px;
}
.our-location .location h2{
    margin-bottom:  20px ;
    font-size: 32px;
}
.our-location .location p{
    margin-bottom:  20px ;
}
.our-location .image{
    width: 50%;
    float: right;
    padding: 0 20px;
    text-align: center  ;
}
.our-location .image img{
    width: 100%;
}
@media screen and (max-width:1200px) and (min-width:992px){
    .our-location .location{
    padding-top: 10px;
    }
}
@media screen and (max-width:992px) and (min-width:768px){
    .our-location .location{
        padding-top: 0px;
        }
    .our-location .image{
        padding-top:50px;
        }
}
@media screen and (max-width:768px){
    .our-location .location{
        width: 100%;
        margin-bottom: 30px;
        padding-top: 0;
    }
    .our-location .image{
        width: 100%;
    }
}
/* End location */

/* Start our-baking */
.our-baking{
    padding: 60px 0px;
    text-align: center;
}
.our-baking .heading{
    margin-bottom: 50px;
}
.our-baking .heading h2{
    font-size: 32px;
    margin-bottom: 25px;
}
.our-baking .baking{
    padding: 0 50px;
}
.our-baking .baking .item{
    width: 33.33333%;
    float: left;
    padding: 0 15px;
    margin-bottom: 20px;
}
.our-baking .baking .item img{
    width: 100%;
}
.our-baking .baking .item h3{
    margin: 20px 0;
    font-size: 25px;
}
.our-baking .baking .item p{
    padding: 0  10px;
}
@media screen and (max-width:1200px) and (min-width:992px){
    .our-baking .baking .item{
        width: 33.3333%;
    }
}
@media screen and (max-width:992px) and (min-width:768px){
    .our-baking .baking .item{
        width: 50%;
    }
}
@media screen and (max-width:768px){
    .our-baking .baking .item{
        width: 100%;
    }
}
/* End our-baking */

/* Start Contact info */
.contact{
    padding: 60px 0;
    background-color: #f8f8f8;
}
.contact .container{
    width: 90%;
    margin: auto;
} 
.contact .Contact-Info{
    width: 50%;
    float: left;
    padding: 0 20px;
}
.contact .Contact-Info h2{
    margin-bottom:  30px ;
    font-size: 32px;
}
.contact .Contact-Info .para{
    margin-bottom: 30px;
}
.contact .Contact-Info .icons{
    margin-top: 30px;
}
.contact .Contact-Info .icons .content{
    margin-bottom: 10px;
}
.contact .Contact-Info .icons .content .brdr{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    float: left;
    margin-right: 10px;
    background-color:#8e7754;
}
.contact .Contact-Info .icons .content .brdr img{
    width: 20px;
    margin: 5px auto;
}
.contact .Contact-Info .icons .content p{
    float: left;
}
.contact .map{
    float: right;
    width: 45%;
    padding: 0 20px;
}
.contact .map iframe{
    width: 100%;
    height: 500px;
}
@media screen and (max-width:768px) {
    .contact .Contact-Info{
        width: 100%;
        margin-bottom: 40px;
    }
    .contact .map{
        width: 100%;
    }
}
/* End Contact info */

/* Start Footer */
/* Start Part-one */
footer{
    padding: 60px 0 0 0;
}
footer .part-one{
    background-color: #403d38;
}
footer  .part-one .container{
    width: 90%;
    margin: auto;
}
footer .part-one .info {
    float: left;
    width: 25%;
    padding: 10px;
}
footer .part-one h2 {
    font-size: 20px;
    color: #fff;
    margin: 25px 0;
}
footer .part-one p {
    margin: 25px 0;

}
footer .part-one .info ul {
    list-style: none;
}
footer .part-one .info ul  li {
    padding-bottom:10px ;
    margin-bottom: 20px;
    border-bottom: 1px solid #ffffff0d;
    color:#888;
}
footer .part-one .last{
    position: relative;
}
footer .part-one .links{
    padding-bottom:10px ;
    margin-bottom: 20px;
    color:#888;
    list-style: none;
    position: relative;
    z-index: 3;
}
footer .part-one .links img{
    width: 20px;
}
footer .part-one .links a{
    text-decoration: none;
    color: #888;
    padding-left: 5px;
    display: inline-block;
    transition: color  0.3s;
}
footer .part-one .links a:hover{
    color: #fff;
}
footer .part-one .back-img{
    background-image: url(../images/contact-details-map.png);
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.3;
}
@media screen and (max-width:1200px) and (min-width:992px){
    footer .part-one .info {
        width: 25%;
    }
}
@media screen and (max-width:992px) and (min-width:768px){
    footer .part-one .info {
        width: 50%;
    }
}
@media screen and (max-width:768px){
    footer .part-one .info {
        width: 100%;
    }
}
/* End Part-one */
footer .part-two{
    background-color: #353330;
    padding: 50px;
    text-align: center;
}
footer .part-two span{
    margin: 30px 0;
    display: block;
    color: #888;
}
footer .part-two .icons a{
    width: 40px;
    height: 40px;
    background-color: #403d38;
    border-radius: 50%;
    text-align: center;
    display:inline-block ;
    margin-right: 15px;
    transition: background-color 0.4s;
}
footer .part-two .icons a.face:hover{
    background-color: #3b5998;
}
footer .part-two .icons a.google:hover{
    background-color: #dd4b39;
}
footer .part-two .icons a.linkedin:hover{
    background-color: #007bb5 ;
}
footer .part-two .icons a.twitt:hover{
    background-color: #00aced ;
}
footer .part-two .icons a img{
    width: 30px;
    margin: 5px auto;
}
@media screen and (max-width:600px){
    footer .part-two img{
        width: 200px;
    }
    footer .part-two .icons a{
        margin-right: 5px;
        width: 30px;
        height: 30px;
    }
    footer .part-two .icons a img{
        width: 20px;
    }
}
/* End Footer */