@import url('https://fonts.googleapis.com/css2?family=Khand:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alumni+Sans:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap');

.khand{
    font-family: "Khand", sans-serif;
}

.alumni-sans{
    font-family: "Alumni Sans", sans-serif;
}

.dm-sans{
    font-family: "DM Sans", sans-serif;
}

.roboto-mono{
    font-family: "Roboto Mono", monospace;
}

html,body{
    width: 100%;
    height: 100%;
    font-family: "DM Sans", sans-serif;
}

.brand-pattern{
    background-image: url('https://rajdeepinfrabulls.com/brand/ri_pattern.png');
    background-repeat: repeat;
    background-position: center center;
    background-size: auto;
}

a{
    text-decoration: none;
}

.fw-300{
    font-weight: 300;
}

.fw-400{
    font-weight: 400;
}

.fw-500{
    font-weight: 500;
}

.fw-600{
    font-weight: 600;
}

.fw-700{
    font-weight: 700;
}

.fw-800{
    font-weight: 800;
}

.fw-900{
    font-weight: 900;
}

.brand-red{
    color: #f4150c;
}

.brand-yellow{
    color: yellow;
}

.brand-blue{
    color: #3a3285;
}

.brand-light-blue{
    color: #bbb4ff;
}

.bg-red{
    background-color: #f4150c;
    color: white;
}

.bg-blue{
    background-color: #3a3285;
    color: white;
}

.btn-red{
    background-color: #f4150c;
    color: white;
}

.btn-red:hover{
    background-color: #b80600;
    color: white;
}

.btn-blue{
    background-color: #3a3285;
    color: white;
}

.btn-blue:hover{
    background-color: #08004e;
    color: white;
}

.fs-10{
    font-size: 10px;
}

.fs-11{
    font-size: 11px;
}

.fs-12{
    font-size: 12px;
}

.fs-13{
    font-size: 13px;
}

.fs-14{
    font-size: 14px;
}

.fs-15{
    font-size: 15px;
}

.fs-16{
    font-size: 16px;
}

.fs-17{
    font-size: 17px;
}

.fs-18{
    font-size: 18px;
}

.fs-19{
    font-size: 19px;
}

.fs-20{
    font-size: 20px;
}

.fs-29{
    font-size: 29px;
}

.fs-40{
    font-size: 40px;
}

.rounded-13{
    border-radius: 13px;
}

.rounded-23{
    border-radius: 23px;
}

.rounded-33{
    border-radius: 33px;
}

.bg-white{
    background: rgba(255, 255, 255);
}

.glass{
    background: rgba(255, 255, 255, 0.47);
    backdrop-filter: blur(14.2px);
    -webkit-backdrop-filter: blur(14.2px);
    border: 1.5px solid rgba(255, 255, 255, 1);
}

.b15{
    border-width: 1.5px;
}

.hover-grow{
	transition: transform .2s;
	cursor: pointer;
}

.hover-grow:hover{
	transform: scale(1.02);
	transition: transform .2s;
}

.hover-grow-xl{
	transition: transform .2s;
	cursor: pointer;
}

.hover-grow-xl:hover{
	transform: scale(1.05);
	transition: transform .2s;
}

.hover-grow-xxl{
	transition: transform .2s;
	cursor: pointer;
}

.hover-grow-xxl:hover{
	transform: scale(1.08);
	transition: transform .2s;
}

.ds{
    box-shadow: 0px 0px 7px 1px rgba(191 191 191 / 47%);
    -webkit-box-shadow: 0px 0px 7px 1px rgba(191 191 191 / 47%);
    -moz-box-shadow: 0px 0px 7px 1px rgba(191 191 191 / 47%);
}

.image-container{
    position: relative;
    overflow: hidden;
    border: 2px solid rgb(223 223 223);
}

.overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    border-radius: 0.5rem;
}
