
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    scroll-behavior: smooth;
    
}

/* ======== font ============ */



body{
 
font-family: "Sora", sans-serif;
 
font-size: 16px;
 
background-color: #ffffff;
 
font-weight: normal;
}


h1{
    font-size: 30px;
    font-family: "Sora", sans-serif;
    /* font-weight: 700; */
    font-weight: normal;
}

h3.banner-heading{
    font-size: 50px;
    font-family: "Sora", sans-serif;
    font-weight: 700;
    color: #c1a067;
}
h3{
    font-size: 50px;
    font-family: "Sora", sans-serif;
    font-weight: normal;
}

h4{
    font-size: 21px;
    font-family: "Sora", sans-serif;
    color: #000;
    font-weight: normal;
}

h5{
    font-family: "Sora", sans-serif;
    font-size: 21px;
    font-weight: normal;
}

h6{
    font-size: 20px;
    color: #000000;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: normal;
}

p{
    font-size: 16px;
}

/* ========== other =========== */

a{
    text-decoration: none;
}

ul li{
    list-style: none;
}

.container{
    width: 100%;
    max-width: 1340px;
    margin: 0px auto;
    padding: 0px 20px;
}

img{
   
    height: auto;
    max-width: 100%;
}

.primary-btn{
    a{
        button{
            padding: 10px 21px;
            font-size: 18px;
            border: none;
            background: #c1a067;
            color: #000;
            cursor: pointer;
            transition: all .4s linear;
            border-radius: 12px;
        }
    }
}

.secondry-btn{
    a{
        button{
            padding: 10px 21px;
            font-size: 18px;
            border: none;
            background: #000;
            color: #c1a067;
            cursor: pointer;
            transition: all .4s linear;
            border-radius: 12px;
        }
    }
}

.secondry-btn button:hover{
    background-color: #c1a067;
    color: #000;
}

.primary-btn button:hover{
    background-color: #c1a067;
}

.section-padding{
    padding: 80px 0px;
}


.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 0px;
    z-index: 999;
    background-color: #fff;
    nav {
      a {
        color: var(--black);
      }
    }
  }

  .text-theme {color:  #c1a067;}

  .banner-content p {color:  #c1a067;font-size: 20px;}


  .inner-banner {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../upload/background/inner-bg.jpg);
    text-align: center;
    color: #fff;
    padding: 100px 0px;
    background-position: center;
    background-size: cover;
}