*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

/* ============ fonts ========== */

@font-face {
    font-family: lexend;
    src: url(../font/Lexend/static/Lexend-Regular.ttf);
}

@font-face {
    font-family: marcellus;
    src: url(../font/Marcellus/Marcellus-Regular.ttf);
}

body{
    font-size: 16px;
    line-height: 1.5;
    font-family: lexend;
}

h1{
    font-family: marcellus;
    text-transform: capitalize;
    font-size: 50px;
    display: inline-block;
}

h3{
    text-transform: capitalize;
    font-size: 50px;
    line-height: 1.3;
}

h5{
    font-size: 20px;
    color: #292836;
    text-transform: capitalize;
}
h4{
    font-size: 26px;
}
h1,h2,h3,h4,h5{
    font-family: marcellus;
}

p{
    font-size: 18px;
}

/* ======= color ========= */

:root{
    --primary-color: #2c3963;
    --secondary-color: #d5c5a2;
    --icon-color: #B89C5F;
}
/* ========== other =========== */

.container{
    width: 100%;
    max-width: 1340px;
    padding: 0px 20px;
    margin: 0px auto;
}

a{
    text-decoration: none;
    display: inline-block;
}
ul li{
    list-style: none;
}

.primary-btn{
    button{
        background-color: var(--secondary-color);
        padding: 15px 30px;
        border: none;
        font-size: 16px;
    font-family: lexend;
cursor: pointer;
text-transform: capitalize;
    }
}

img{
    width: 100%;
}

.section-padding{
    padding: 80px 0px;
}

.divider{
    position: relative;
    display: inline-block;
    margin: 0;
    width: auto;
    margin: 0 auto 0 0;
    text-align: center;
    /* float: none; */
    padding: 0 10px 0 0;
    line-height: normal;
}
.divider::before{
    content: "";
    position: absolute;
    display: block;
    left: 100%;
    top: 50%;
    width: 80px;
    background-color: #b8a680;
    ;
    z-index: 0;
    height: 1px;
    margin: 0 auto;
}

.sticky {
    box-shadow: 0px 2px 20px 0px #d1d1d199;
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0px;
    z-index: 999;
    background-color: #fff;
  
    nav {
      a {
        color: var(--black);
      }
    }
  }
  .tagline {
    text-transform: uppercase;
    color: #494949;
    display: block;
    margin-top: 20px;

}

.btn-box{
    display: flex; 
    gap: 10px;
}

  /* ======== inner page ======= */

  .inner-banner{
    padding: 100px 0px;
    text-align: center;
    color: #fff;
    span{
        a{
            color: var(--secondary-color);
        }
    }
  }