@import url('https://fonts.googleapis.com/css2?family=Jaro:opsz@6..72&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');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
}

:root{
    --client: #f43726;
}

body{
    background-color: #9e9e9e !important;
    overflow-y: hidden;
}

.hero{
    max-width: 450px;
}

.heroWrap{
    background-color: #fff;
    overflow-y: auto;
    height: 100vh;
    top: 0;
    position: relative;
}

.heroWrap.darkmode{
    background-color: #1d1d27;
}

.nav{
    position: fixed;
    top: 0;
    width: 100%;
    max-width: 450px;
    z-index: 1;
    background-color: red;
    height: 50vh;
}

.heroWrap.darkmode .nav{
    background-color: rgb(0, 39, 55);
}

.goBack{
    border: 2px solid black;
    border-radius: 50%;
}

.heroWrap.darkmode .goBack{
    border-color: #f0f0f0;
}

.goBack i{
    color: black;
}

.heroWrap.darkmode i{
    color: #f0f0f0;
}


.goBack + p{
    font-weight: 600;
    font-size: .875rem;
}

.heroWrap.darkmode .goBack + p{
    color: #f0f0f0;
}

.main-view{
    position: relative;
    z-index: 10;
    overflow-y: auto;
    height: calc(-30px + 100vh);
    top: 50px;
    padding-bottom: 0;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.heroWrap.darkmode .main-view{
    background-color: #1d1d27!important;
}

.heroWrap.darkmode h1,.heroWrap.darkmode span,.heroWrap.darkmode h2,.heroWrap.darkmode hr{
    color: #f0f0f0;
}

.heroWrap.darkmode .hello{
    color: #f0f0f0;
}

.heroWrap.darkmode .viber{
    color: #f0f0f0;
}


hr {
    margin: 1rem 0;
    color: inherit;
    border: 0;
    border-top: 1px solid;
    opacity: .25;
}

.contactText{
    font-size: .9rem;
    font-weight: 600;
}

.fs-13{
    font-size: .8rem;
}

.viberphNo{
    font-size: 1rem;
    font-weight: bold;
}

.border-custom{
    border-color: #ffc107 !important;
    border-width: 2px;
    border-style: solid;
}

.bg-custom{
    background-color: #ffc107!important;
    color: #fff!important;
}

.text-custom{
    color: #ffc107;
}

.footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    max-width: 450px;
    z-index: 999;
    background-color: #fff;
    height: auto;
    margin-top: 20px;
    padding: 10px 10px;
    padding-left: 10px;
    box-shadow: 0px -5px 5px -5px rgba(0,0,0,0.5);
    /* transition: background-color .5s ease; */
}

.heroWrap.darkmode .footer{
    background-color: #111;
}

.footerWrap{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tabs{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.tabs span{
    font-weight: bold;
    font-size: 0.8rem;
    font-family: 'Jaro';
}

.heroWrap.darkmode .tabs{
    color: #f0f0f0;
}