@import url('root.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Kaushan+Script&display=swap');
*{
    font-size: 16px;
    font-family: var(--ff2);
    font-weight: var(--fw-400);
}
body{
    position: relative;
}
section{
    margin: 0 0 2rem 0;
    padding:3rem 0;
}

.banner{
    background:var(--bg-clr1);
    position: relative;
    padding:0!important;
}
.banner h6{
    font-family: var(--ff1);
    font-size: 1.2rem;
}
.banner h1{
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}
.banner h1 span{
    font-size: inherit!important;
    font-weight: var(--fw-700);
}

.text-primary{
    color:var(--clr-prime)!important;
}
.btn-primary{
    background:var(--clr-prime)!important;
    border:var(--clr-prime)!important;
}
.btn-primary:hover{
    background:var(--clr-prime-hover)!important;
    border:var(--clr-prime)!important;
}
.banner .btn-primary{
    font-size: 1.2rem;
    font-weight: 600;
}
.hroImg{
    width: 25rem;
    margin: auto;
    display: block;
}

.brandTitle{
    font-size: .95rem;
    font-weight: 300;
}

.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    animation: fadeup 0.5s ease-out alternate-reverse;
    transition: transform 0.3s ease-in-out;
}
.inputIconWrapper {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
}
.inputIconWrapper i {
    cursor: pointer;
}
@keyframes fadeup {
    0% {
        transform: translateY(-100%); /* Start off-screen */
    }
    50% {
        top: -30%; /* Move partially down */
    }
    100% {
        top: 0%; /* End in place */
    }
}


.inputWrapper{
    position: relative;
}
.error{
    position: absolute;
    bottom: -1.3rem;
    left: .15rem;
    font-size: .75rem;
    text-transform: capitalize;
    color: red;
}

.formcold {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.formcold .btn{
    width: max-content;
    display: inline-block;
}

.signup,.login,.updatePass {
    width: 30%;
    margin: auto;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 1rem;
}

body{
    position: relative;
}
.tool-pills a {
    background: powderblue!important;
    color: #000;
    font-size: 12px;
}
.theme-banner-bg{
    background: var(--theme-banner-bg);
}
.icon-bx-desc {
    display: flex;
    flex-direction: column;
    gap: .25rem;
}

.icon-bx-desc h5 {
    margin-bottom: 0;
}

.h-600px{
    height: 400px;
    max-height: 100%;
}

.icon-bx {
    width: 20px;
    height: 20px;
    border: 1px solid #b2d1ff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 5px;
    background: #b2d1ff;
    color: #fff;
}

.icon-bx i {
    color: #7e7e7e;
}