@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Bold.ttf') format('truetype');
    font-weight: 700;
}
@font-face {
    font-family: 'Nunito';
    src: url('../fonts/Nunito-Regular.ttf') format('truetype');
    font-weight: 400;
}

.h1{
    font-size: 28px; /* i used media query to change it to 36px for desktop view*/
    line-height: 36px;
    font-weight: 700;
}
.h2{
    font-size: 28px;
    line-height: 36px;
    font-weight: 700;
}
.h3{
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
}
.h4{
    font-size: 18px;
    line-height: 24px;
    font-weight: 700;
}
.h5{
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}
.h6{
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
}
.h7{
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
}
.h8{
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
}
.h1,.h2,.h3,.h4,.h5,.h6,.h7,.h8{
    position: relative;
    text-decoration: none;
}
a{
    position: relative;
    text-decoration: none;
}
.pri300{
    color: #d7e9ff;
}
.pri500{
    color: #094690;
}
.white{
    color: #ffffff;
}
.black{
    color: #0B1D33;
}
.black.active{
    color: #094690;
}
.grey{
    color: #999999;
}
.error{
    color: #e7515a;
}
.success{
    color: #1abc9c;
}
.warning{
    color: #e2a03f;
}
.bg-pri300{
    background-color: #d7e9ff;
}
.bg-pri500{
    background-color: #094690;
}
.bg-white{
    background-color: #ffffff;
}
.bg-black{
    background-color: #0B1D33;
}
.bg-error{
    background-color: #e7515a;
}
.bg-success{
    background-color: #1abc9c;
}
.bg-warning{
    background-color: #e2a03f;
}
body::-webkit-scrollbar {
    width: 0px; /* Set the thickness (width) of the scrollbar */
}
body::-webkit-scrollbar-thumb {
    background-color: #094690; /* Set the color of the thumb */
    border-radius: 8px; /* Optional: Add rounded corners */
}
body::-webkit-scrollbar-track {
    background-color: #c9cdcf; /* Optional: Change track color */
    border-radius: 8px; /* Optional: Add rounded corners */
}
div::-webkit-scrollbar {
    height: 6px; /* Set the thickness (width) of the scrollbar */
    width: 0px; /* Set the thickness (width) of the scrollbar */
}
div::-webkit-scrollbar-thumb {
    background-color: #094690; /* Set the color of the thumb */
    border-radius: 8px; /* Optional: Add rounded corners */
}
div::-webkit-scrollbar-track {
    background-color: #c9cdcf; /* Optional: Change track color */
    border-radius: 8px; /* Optional: Add rounded corners */  
}
body {
    margin: 0;
    line-height: normal;
    text-align: center;
    font-family: Nunito;
    background-color: #ffffff;
}
.home {
    width: 100%;
    position: relative;
    height: 1000px;
}
.gtranslate_wrapper{
    position: fixed;
    width: auto;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.topnav {
    position: fixed;
    width: 100%;
    top: 0px;
    right: 0px;
    left: 0px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.25);
    background-color: rgba(255, 255, 255, 0.8); 
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px;
    box-sizing: border-box;
    z-index: 998;
    gap: 16px;
}
.topnavin{
    position: relative;
    display: flex;
    flex-direction: row;
    align-self: stretch;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.button1 {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: none;
    font-family: Nunito;
    box-sizing: border-box;
}
.button1:hover {
    opacity: 0.8;
}
.button2 {
    position: relative;
    align-self: stretch;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border: none;
    font-family: Nunito;
    box-sizing: border-box;
}
.button2:hover {
    opacity: 0.8;
}
.input {
    border-radius: 4px;
    background-color: #F4F4F6;
    min-height: 40px;
    overflow: hidden;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 16px;
    box-sizing: border-box;
    min-width: 200px;
    border: none;
    color: #344054;
    width: 100%;
    flex: 1;
    font-family: Nunito;
}
.input:focus {
    outline: none; 
    border: 2px solid #094690;
}
.input::placeholder{
    color: #52647A;
    font-family: Nunito;
}
input[type="radio"] {
    width: 16px;
    height: 16px;
}
.textarea {
    border-radius: 4px;
    background-color: #F4F4F6;
    min-height: 120px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    padding: 10px 16px;
    box-sizing: border-box;
    min-width: 200px;
    border: none;
    color: #344054;
    width: 100%;
    resize: none;
    flex: 1;
    font-family: Nunito;
}
.textarea:focus {
    outline: none; 
    border: 2px solid #094690;
  }
.textarea::placeholder{
    color: #52647A;
    font-family: Nunito;
}
.logo-icon{
    width: 32px;
    position: relative;
    height: 32px;
}
.button-img {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background:transparent;
    padding: 0px;
    border: none;
    min-width: 32px;
    height: 32px;
    border-radius: 2px;
    box-sizing: border-box;
}
.x-icon {
    width: 32px;
    position: relative;
    height: 32px;
}
.xx-icon {
    width: 40px;
    position: relative;
    height: 40px;
}
.xxx-icon {
    width: 44px;
    position: relative;
    height: 44px;
}
.x-img {
    flex: 1;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    height: auto;
    object-fit: cover;
    min-width: 288px;
    box-sizing: border-box;
    border-radius: 4px;
}
.video-icon {
    width: 100%;
    position: relative;
    height: auto;
    object-fit: cover;
    border: 2px solid #ffffff;
    border-radius: 4px;
    box-sizing: border-box;
}
.plan-img-icon {
    width: 80px;
    position: relative;
    height: 80px;
    object-fit: cover;
}
.check-icon {
    width: 16px;
    position: relative;
    height: 16px;
}
.bdctn {
    position: absolute;
    width: 100%;
    top: 64px;
    right: 0px;
    left: 0px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    z-index: 997;
    box-sizing: border-box;
}
.trkc1 {
    position: relative;
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 32px;
    box-sizing: border-box;
}
.trkc2 {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 16px;
    box-sizing: border-box;
    align-self: stretch;
}
.heroc {
    position: relative;
    align-self: stretch;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 128px 16px;
    background-image: url('../assets/heroimg1.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    box-sizing: border-box;
}
.heroin {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    min-width: 300px;
    max-width: 800px;
    box-sizing: border-box;
}
.ctn1a{
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.ctn1b{
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 16px;
    box-sizing: border-box;
}
.ctn1c{
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 16px;
    border-radius: 4px;
    box-sizing: border-box;
}
.ctn1d{
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    border-radius: 4px;
    box-sizing: border-box;
}
.ctn2 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border-radius: 4px;
    min-width: 288px;
    max-width: 400px;
    min-height: 240px;
    box-sizing: border-box;
}
.ctn3 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    border-radius: 4px;
    min-width: 288px;
    box-sizing: border-box;
    text-align: left;
}
.ctn4 {
    position: relative;
    overflow: hidden;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    gap: 16px;
    max-width: 800px;
    box-sizing: border-box;
}
.ctn5a{
    position: relative;
    overflow: hidden;
    display: flex;
    flex: 1;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    padding: 8px;
    border-radius: 4px;
    min-width: 200px;
    max-width: 400px;
    box-sizing: border-box;
}
.ctn5b{
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-sizing: border-box;
}
.ctn5c{
    position: relative;
    overflow: hidden;
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    max-width: 400px;
    min-width: 288px;
    text-align: left;
    box-sizing: border-box;
}
.ctn6{
    position: relative;
    overflow-x: scroll;
    display: flex;
    align-self: stretch;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    padding: 0px 0px 16px 0px;
    box-sizing: border-box;
}
.ctn7{
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    box-sizing: border-box;
}
.reviewctn{
    position: relative;
    overflow: hidden;
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
    border: 2px solid #094690;
    text-align: left;
    box-sizing: border-box;
    min-width: 100%;
    min-height: 240px;
}
.footer {
    position: relative;
    align-self: stretch;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 16px;
    background-image: url('../assets/fchart.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top;
    box-sizing: border-box;
}
/* 1. Initial State (Invisible) */
.animate {
    /* Base State: Start invisible and moved 50px down */
    opacity: 0;
    /* Moves the element 50 pixels down from its final position */
    transform: translateY(50px);
    
    /* Ensure hardware acceleration */
    will-change: transform, opacity;
    
    /* Define the smooth, bouncy transition */
    transition: 
        /* Opacity transition is the same */
        opacity 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
        /* Transform transition now applies to the slide */
        transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* 2. Final State (Visible/In place) */
.animate.is-visible {
    opacity: 1;
    /* Moves the element back to its original position (0 movement) */
    transform: translateY(0);
}
/* Full-screen overlay for the loader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's on top of everything */
}
/* The actual spinner element */
#loader {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #094690; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite; /* Apply the animation */
}
/* Keyframes for the spinning animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.ctn5w {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 16px;
    box-sizing: border-box;
}
.ctn6bw {
    flex: 1;
    border-radius: 8px;
    border: 2px solid #094690;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 32px;
    position: relative;
    gap: 32px;
    min-width: 100%;
    min-width: 100%;
}
.ctn11w {
    align-self: stretch;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    box-sizing: border-box;
}
.ctn11bw {
    align-self: stretch;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
}
.ctn2aw {
    align-self: stretch;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    box-sizing: border-box;
}
.ctn2bw {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    min-width: 288px;
    box-sizing: border-box;
    padding: 8px;
}
.ctn7bw {
    align-self: stretch;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    box-sizing: border-box;
}
.ctn11cw {
    align-self: stretch;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    padding: 12px 8px;
    box-sizing: border-box;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}
.ctn2ew {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    min-width: 256px;
    box-sizing: border-box;
}
.list {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 8px 8px;
    gap: 8px;
    border-radius: 4px;
}
.p-shell-icon {
    width: 96px;
    position: relative;
    height: 72px;
    overflow: hidden;
    flex-shrink: 0;
}
.setcz {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}
.numpad,.del,.info{
    position: relative;
    display: flex;
    width: 48px;
    height: 48px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border: 1px solid #094690;
    font-size: 14px;
    line-height: 14px;
    color: #094690;
    border-radius: 24px;
    box-sizing: border-box;
    background-color: #FFFFFF;
}
.numpad:hover,.del:hover,.info:hover {
    color: #ffffff;
    background-color: #094690;
    border: none;
}
.num-div{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 16px;
    width: 100%;
}
.pin-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    box-sizing: border-box;
    width: 100%;
}
/*MEDIA QUERY*/
@media (min-width: 800px) {
    .trkc1 {
        display: flex; /* Hide the sidenav */
    }
    #burger {
        display: none; /* Hide the sidenav */
    }
    #cancel {
        display: none; /* Hide the sidenav */
    }
    .reviewctn {
        min-width: 400px;
    }
    .h1 {
        font-size: 36px;
        line-height: 44px;
    }
}
@media (min-width: 480px) {
    .ctn6bw {
        min-width: 320px;
        max-width: 400px;
    }
}