@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&family=Rubik:ital,wght@0,400;0,500;1,300;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&family=Tiro+Gurmukhi&display=swap");

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
}
a{
    text-decoration: none;
    color: inherit;
}

body {
    overflow-x: hidden;
    width: 100vw;
}

:root {
    font-size: 12px;
    --blue: #8199b4;
    --main: #454242;
}

.color-main {
    color: var(--main);
}

.color-wood {
    color: #b57a46;
}

.blue {
    color: var(--blue);
}

/* flex css */

.flex {
    display: flex;
}

.flex-a {
    display: flex;
    justify-content: space-around;
}

.flex-b {
    display: flex;
    justify-content: space-between;
}

.fd-column{
    flex-direction: column;
}
.center-v {
    align-items: center;
}

/* text css */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* font css */

.font-size-1 {
    font-size: 1rem;
}

.font-size-2 {
    font-size: 2rem;
}

.font-size-m {
    font-size: 1.1rem;
}




.title-1 {
    display: block;
    position: relative;
    width: 100%;
    text-align: center;
    font-size: 2rem;
}
.title-2{
    display: block;
    width: 100%;
    text-align: center;
    font-size: 2rem;
    color: var(--blue);
}

.title-c {
    display: block;
    text-align: center;
}

.title {
    display: block;
    width: 100%;
}

.text-info {
    color: rgb(97, 97, 97);
}

.center-v {
    align-items: center;
}

.mt-1 {
    margin-top: 1rem;
}

.my-1 {
    margin: 1rem 0;
}
.my-2{
    margin:2rem 0;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mt-2 {
    margin-top: 2rem;
}
.mt-5{
    margin-top: 3rem;
}

.p-1{
    padding: 1rem;
}
.p-2{
    padding: 2rem;
}
.py-1 {
    padding: 1rem 0;
}

.block {
    width: 100%;
    display: block;
}

.title-1::before {
    content: "";
    position: absolute;
    top: 1rem;
    right: 0;
    width: 20%;
    height: 2px;
    background: linear-gradient(45deg, #a67c57, transparent);
}

.title-1::after {
    content: "";
    position: absolute;
    top: 1rem;
    left: 0;
    width: 20%;
    height: 2px;
    background: linear-gradient(-45deg, #a67c57, transparent);
}



.bg-black{
    background-color: black;
}




