@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root{
    --tp-primary-color:#ffa100;
    --tp-secondary-color:#000000;
    --tp-black-color:#000000;
    --tp-white-color:#FFFFFF;
    --tp-off-white-color:#FDF7F2;
}

a{
    text-decoration: none;
}
html,body{
    overflow-x: hidden !important;
    height: 100%;
}

/* Text and BG Colors */
.t-primary{
    color: var(--tp-primary-color) !important;
}
.t-secondary{
    color: var(--tp-secondary-color) !important;
}
.t-black{
    color: var(--tp-black-color) !important;
}
.t-white{
    color: var(--tp-white-color) !important;
}
.t-off-white{
    color: var(--tp-off-white-color) !important;
}
.bg-primary{
    background-color: var(--tp-primary-color) !important;
}
.bg-secondary{
    background-color: var(--tp-secondary-color) !important;
}
.bg-black{
    background-color: var(--tp-black-color) !important;
}
.bg-white{
    background-color: var(--tp-white-color) !important;
}
.bg-off-white{
    background-color: var(--tp-off-white-color) !important;
}

/* Typography Style */
.h1{
    font-family: "Poppins", sans-serif;
    font-size: 70px;
    font-weight: 600;
    line-height: 1.2em;
    font-style: normal;
}
.h2{
    font-family: "Poppins", sans-serif;
    font-size: 60px;
    font-weight: 600;
    line-height: 1.15em;
    font-style: normal;
}
.h3{
    font-family: "Poppins", sans-serif;
    font-size: 50px;
    font-weight: 600;
    line-height: 1.3em;
    font-style: normal;
}
.h4{
    font-family: "Poppins", sans-serif;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.35em;
    font-style: normal;
}
.h5{
    font-family: "Poppins", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.35em;
    font-style: normal;
}
.h6{
    font-family: "Poppins", sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4em;
    font-style: normal;
}
.para{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7em;
    font-style: normal;
}
.small{
    font-size: 14px !important;
}
.ex-small{
    font-size: 12px !important;
}
.button{
    font-family: "Poppins", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.7em;
    letter-spacing: .5px;
    font-style: normal;
}
/* Tablet */
@media screen and (max-width:900px){
    .h1{
        font-size: 55px;
    }
    .h2{
        font-size: 48px;
    }
    .h3{
        font-family: "Poppins", sans-serif;
        font-size: 40px;
    }
    .h4{
        font-size: 29px;
    }
    .h5{
        font-size: 23px;
    }
    .h6{
        font-size: 17px;
    }
    .para{
        font-size: 17px;
    }
    .button{
        font-size: 17px;
    }
}
/* Mobile */
@media screen and (max-width:600px){
    .h1{
        font-size: 40px;
    }
    .h2{
        font-size: 36px;
    }
    .h3{
        font-size: 30px;
    }
    .h4{
        font-size: 18px;
    }
    .h5{
        font-size: 16px;
    }
    .h6{
        font-size: 14px;
    }
    .para{
        font-size: 16px;
    }
    .button{
        font-size: 18px;
    }
}

.fw-semibold{
    font-weight: 600 !important;
}