/*
Table Of Contents
=========================
- Default Typography
- Custom Typography
=========================
*/

/*
--------------------------
- Default Typography
--------------------------
*/


/*
--------------------------
- Custom Typography
--------------------------
*/


/* google fonts area here */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


/* .oswald {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
} */

/* custom font area here */
@font-face {
    font-family: 'manush';
    src: url('../../fonts/MNS_TRIAL.otf') format('opentype'),
         url('../../fonts/MNS_TRIAL.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


/* variable color code */
:root{
    --white: #ffffff;
    --main_white: #fffdfb;
    --fonts: #e5e1da;
    --black: #000000;
    /* --primary: #514a3b; */
    --primary: #444545;
    --secondary:#837453;
    --subsecondary: #C5A880;
    --secLight: #d3c2ab;
    --darkBg: #232321;
}

.bg {
    background: linear-gradient(180deg,rgba(0,0,0,.33),rgba(26,26,26,.43));
}

body {
    font-family: "Roboto", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
}
p {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
}
