/* =================================================
Global Layout
================================================= */

body{
    font-family:'Montserrat', sans-serif;
    color:var(--blackcolor);
    background:#F8F5F0;
    line-height:1.6;
}

.container{
    max-width:1200px;
    margin:0 auto;
}

/* =================================================
Typography
================================================= */

h1,h2,h3,h4,h5,h6{
    font-family: Georgia, 'Times New Roman', serif;
    font-weight:600;
    color:var(--blackcolor);
}

h1{
    font-size:42px;
}

h2{
    font-size:28px;
}

h3{
    font-size:22px;
    font-weight:500;
    line-height:1.6;
    color:#2E2E2E;
}

p{
    font-family:'Montserrat', sans-serif;
    margin-bottom:1.5rem;
}

/* =================================================
Links
================================================= */

a{
    color:var(--primarycolor);
    text-decoration:none;
}

a:hover{
    color:var(--secondarycolor);
}

/* =================================================
Header
================================================= */

.bottom-bar{
    padding:20px 0;
    background:var(--whitecolor);
}

.bottom-bar .logo img{
    max-height:60px;
}

.desktop-main-menu ul{
    list-style:none;
    margin:0;
    padding:0;
    display:flex;
}

.desktop-main-menu ul li{
    margin-left:30px;
}

.desktop-main-menu ul li a{
    color:var(--blackcolor);
    font-weight:500;
}

.desktop-main-menu ul li a:hover{
    color:var(--primarycolor);
}

/* =================================================
Buttons
================================================= */

.btn-primary{
    background:var(--primarycolor);
    border:none;
    color:#fff;
    padding:12px 24px;
}

.btn-primary:hover{
    background:var(--secondarycolor);
}

.btn-secondary{
    background:var(--secondarycolor);
    border:none;
    color:#fff;
    padding:12px 24px;
}

.btn-secondary:hover{
    background:var(--primarycolor);
}

/* =================================================
Sections
================================================= */

.section-padding{
    padding:80px 0;
}

.section-title{
    margin-bottom:40px;
}

/* =================================================
Forms
================================================= */

input,
textarea,
select{
    width:100%;
    border:1px solid var(--graycolor);
    padding:12px;
    border-radius:6px;
}

input:focus,
textarea:focus{
    outline:none;
    border-color:var(--primarycolor);
}

/* =================================================
Footer
================================================= */

footer{
    background:var(--blackcolor);
    color:var(--whitecolor);
    padding:60px 0;
}

footer a{
    color:var(--whitecolor);
}

footer a:hover{
    color:var(--secondarycolor);
}
.site-footer a,
.site-footer a:visited{
  color:#F8F5F0;
}

.site-footer a:hover,
.site-footer a:focus,
.site-footer a:active{
  color:#A8935E;
}
.footer-widget-link{
  color:#F8F5F0;
}

.footer-widget-link:hover{
  color:#A8935E;
}

.footer-bottom{
    border-top:1px solid var(--graycolor);
    margin-top:40px;
    padding-top:20px;
    text-align:center;
}

/* =================================================
Images
================================================= */

img{
    max-width:100%;
    height:auto;
}

/* =================================================
Utility
================================================= */

.text-center{
    text-align:center;
}

.text-right{
    text-align:right;
}

.mt-40{
    margin-top:40px;
}

.mb-40{
    margin-bottom:40px;
}

/* =================================================
mobile
================================================= */

@media (max-width: 768px){
  .hide-mobile{
    display:none;
  }
}
