@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@800&display=swap");
@font-face {
    font-family: "Benedic";
    src: url("../font/benedic/Benedic.otf") format("opentype");
}

@font-face {
    font-family: "Gotham";
    src: url("../font/gotham/GOTHAM-LIGHT.TTF") format("truetype");
}

:root {
    --w-primary: #209dfc;
    --w-secondary: #5cdbd1;
}

body {
    font-family: "Gotham", sans-serif;
    overflow-x: hidden !important;
}
.container{
    overflow: hidden;

}
ul {
    margin-bottom: 0 !important;
}

ul li {
    list-style-type: none;
}

.cursor-pointer {
    cursor: pointer;
}

.text-gotham {
    font-family: "Gotham", sans-serif;
}

.text-montserrat {
    font-family: "Montserrat", sans-serif;
}

.text-benedic {
    font-family: "Benedic", sans-serif;
}

h1 {
    font-weight: bolder;
}

.btn {
    border-radius: 2px;
}

.btn-info {
    background: linear-gradient(to right, #209dfc, #5cdbd1) !important;
}

.btn-info:hover {
    background: linear-gradient(to right, #5cdbd1, #209dfc) !important;
}

.btn-outline-info:hover {
    background: linear-gradient(to right, #5cdbd1, #209dfc) !important;
}

.nav-item {
    padding-left: 5px;
    padding-right: 5px;
}

.nav-link {
    color: var(--w-primary);
    font-size: 15px;
}

.p-l-10 {
    padding-left: 30px;
}
.pt-v-20 {
    padding-top: 20%;
}
.pt-50 {
    padding-top: 50px;
}
.py-10 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.pt-10 {
    padding-top: 150px;
}

.pb-10 {
    padding-bottom: 150px;
}
.p-10 {
    padding: 10px;
}
.h-450 {
    height: 450px;
}
.h-500 {
    height: 800px;
}
.text-w-primary {
    color: var(--w-primary);
}

.text-w-secondary {
    color: var(--w-secondary);
}

.text-gradient {
    background: linear-gradient(to right, var(--w-primary), var(--w-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.bg-transparent {
    background: transparent;
}
.bg-w-primary {
    background-color: var(--w-primary);
}

.bg-w-secondary {
    background-color: var(--w-secondary);
}

.bg-opacity {
    background-color: #111111aa;
}

.bg-gradient {
    background: linear-gradient(to right, #209dfc, #5cdbd1) !important;
}

.top-gradient-border {
    background: linear-gradient(to right, #209dfc, #5cdbd1);
    box-shadow: 0px 5px 0px 0px transparent;
    padding-top: 5px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.gradient-border {
    background: linear-gradient(to right, #209dfc, #5cdbd1);
    box-shadow: 0px 5px 0px 0px transparent;
    padding-top: 2px;
}

.banner {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.section-bg-image {
    background-image: url("../image/bg-doodle.png");
    background-color:#1f242c;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 1 0 100%;
    min-width: 100%;
    height: 100vh; /* Ensure full viewport height */
}

.slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.indicator {
    width: 12px;
    height: 12px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}

.indicator.active {
    background-color: #f00;
}
.header {
    position: relative;
    width: 102vw;
    height: 100vh;
    overflow: hidden; /* Hide any overflow from the video */
}

#background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire element while maintaining aspect ratio */
    transform: translate(-50%, -50%); /* Center the video */
    z-index: -1; /* Send the video behind other content */
}
#home-banner1 {
    background-image: url(../image/banner/home.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#home-banner2 {
    background-image: url(../image/banner/Picture4.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#home-banner3 {
    background-image: url(../image/banner/Picture5.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#home-banner {
    background-image: url(../image/banner/sudo.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.nav-arrow img {
    width: 20px;
    cursor: pointer;
}
.about-img {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: center;
}
.about-img img {
    width: 20%;
}
.mission-img img {
    width: 20%;
}
.vision-img img {
    width: 38%;
}
.input-cont {
    height: 68px;
    width: 41vw;
}
.input-cont {
    position: relative;
    right: 135%;
}
.input-cont button img {
    height: 74px;
    width: 86px;
}
.about-pic {
    width: 90vw;
}
.custom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.custom-col {
    flex: 0 0 calc(20% - 10px);
    max-width: calc(40% - 10px);
    margin: 5px;
}

.container {
    margin-left: 0px;
    margin-right: 0px;
    width: 100vw;
    margin: auto;
}

.row {
    justify-content: space-between;
    align-items: center;
}
.about-cont a {
    width: 63%;
}
.about-cont p {
    margin-bottom: 0px;
    font-size: 0.8rem;
}
.slide .col-md-9 {
    width: 55%;
}
.slide h1 {
    font-size: 3rem;
}
.slide p {
    font-size: 1.5rem;
}

.login-container {
    /* background: #111111; */
    border-radius: 10px;
    width: 50%;
}
.login-container button {
    width: 100%;
}
.login-container ul {
    padding-left: 0px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.login-container ul li button {
    box-shadow: 0px 0px 8px rgba(256, 256, 256, 0.4);
}
.login {
    box-shadow: 0px 0px 8px rgba(256, 256, 256, 0.4);
}
.inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0px 0px 16px;
}
.label {
    font-size: 14px;
    font-weight: 700;
}
label {
    padding: 0px 0px 8px;
}
input::placeholder {
    font-size: 1rem;
    color: rgb(255, 255, 255);
    opacity: 0.6;
}
input:hover {
    border: 2px solid white;
}
#password {
    height: auto;
}
.checkbox p {
    padding-left: 156px;
}

.remember {
    border: 0;
}
.box {
    width: 324px;
    height: 48px;
    padding: 8px 14px;
    background: #121212;
    outline: 0;
    border: solid 1px grey;
    border-radius: 4px;
    color: rgb(255, 255, 255);
    font-size: 16px;
}
.pass {
    display: flex;
    width: 324px;
    height: 3rem;
    background: #121212;
    outline: none;
    border: solid 1px grey;
    border-radius: 4px;
    color: rgb(255, 255, 255);
}
.pass input {
    border: 0;
    outline: none;
    height: auto;
}
.pass:hover {
    border: solid 2px white;
}

.pass img {
    padding: 10px;
    cursor: pointer;
    width: 48px;
    opacity: 0.6;
}

.pass img:hover {
    opacity: 1;
}
.pass:focus {
    border: 2px solid white;
}
.dot {
    background: #121212;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    position: relative;
    top: 2px;
    left: 2px;
    cursor: pointer;
}

.toggle {
    width: 32px;
    height: 16px;
    background: #727272;
    border-radius: 5rem;
    position: absolute;
    transition: 500ms background;
    margin-top: -9px;
    cursor: pointer;
}
label.toggle.active {
    background: linear-gradient(to right, #209dfc, #5cdbd1);
}
label.toggle.active .dot {
    left: 18px;
}

.checkbox {
    display: flex;
    width: 324px;
    align-items: center;
    justify-content: center;
}
.checkbox p {
    padding-left: 146px;
    padding-top: 5px;
    font-size: 14px;
    color: rgb(255, 255, 255);
}
#check {
    display: none;
}
.line {
    margin: 32px 100px;
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-image: initial;
    border-top: 1px solid rgb(255, 255, 255);
    width: 80%;
}

.custom-accordion {
    display: flex;
    gap: 10px;
    font-family: "Montserrat", sans-serif;
    max-width: 600px;
    margin: 20px auto;
    background-color: transparent;
}

.custom-accordion-item {
    width: 35%;
    height: 100px;
    background-color: transparent;
    margin-bottom: 1px;
}

.custom-accordion-header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-accordion-header button {
    border: none;
    background-color: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.custom-accordion-header button img {
    max-width: 100%;
    height: auto;
}

.custom-accordion-body {
    height: 0px;
    overflow: hidden;
    transition: height 0.3s ease-out;
    color: white;
}
.see-less {
    color: rgb(161, 161, 161);
    width: fit-content;
    margin: auto;
    transition: 0.1s all ease-in-out;
}
.see-less:hover {
    color: white;
}

#home-banner img{
    width: 400px;
    padding-top: 120px;
}
#home-banner .d-flex{
    gap: 100px;
}

.leftSideBar {
    z-index: 50;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 240px;
    background: url(../image/bg-doodle1.png);
    background-color: #22272f;
    border-right: 1px solid #ddd;
    display: flex;
    color: white;
    flex-direction: column;
}
.cross{
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    filter: invert(1);
}

.fixed-header {
    position: fixed;
    width: 240px;
    z-index: 1;
    padding-bottom: 10px;
}

.menu-list {
    padding-left: 0;
    margin-top: 100px; /* Space for the fixed header */
    overflow-y: auto;
    flex-grow: 1;
    padding-top: 20px;
}

.menu-list li {
    padding: 10px 15px;
    display: flex;
    align-items: center;
    cursor: default; /* Menu items are non-interactive */
    color:#70809a;
    font-weight: bold;
}
.menu-list::-webkit-scrollbar {
    width: 8px;
}

.menu-list::-webkit-scrollbar-track {
    background: #22272f;
    border-radius: 10px; /* Rounded corners */
}

.menu-list::-webkit-scrollbar-thumb {
    background-color: #22272f; 
    border-radius: 10px; 
}

.menu-list::-webkit-scrollbar-thumb:hover {
    background-color: #888888; /* Darker gray on hover */
}

/* Firefox scrollbar styles */
.menu-list {
    scrollbar-width: thin; /* Thin scrollbar */
    scrollbar-color: #22272f #22272f; /* Thumb and track colors */
}

/* Internet Explorer & Edge scrollbar styles */
.menu-list {
    -ms-overflow-style: none; /* IE and Edge scrollbar */
}

.topbar  {
    font-size: 24px;
    top: 0;
    position: absolute;
    left: 240px;
    width: calc(100vw - 240px);
    justify-content: center;
    height: 50px;
    padding: 10px;
    box-shadow: 10px 2px 5px rgba(0, 0, 0, 0.5);
}
.content{
    position: absolute;
    left: 240px;
    top: 50px;
    width: calc(100% - 240px);
    padding: 20px;
    background: rgb(235, 255, 255);
    min-height: calc(100vh - 50px);
    
}
.hamburger{
    filter: invert(1);
    width: 30px;
    height: 30px;
    display: none;
}
.content .content-container{
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px;
    background: white;

}
.onboarding-container{
    width: 100%;
    border-style: solid;
    border-color: rgba(92, 221, 212, 1.0);
    border-top-width: 5px;
    border-right-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 5px;
    border-radius: 21px;
}
#grad1 {
    background-color:  #000;
    background-image: url(../image/bg-doodle.png);
    padding: 0px 50px;
}

#msform {
    text-align: center;
    position: relative;
    margin-top: 20px;
}

#msform fieldset .form-card {
    background: #1f242c;
    background-image: url(../image/bg-doodle.png);
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;

    position: relative;
}
.onboarding-form{
    width: 100%;
    height: 100%;
    background: white;
    border-style: solid;
    border-color: rgba(34, 159, 251, 1.0);
    border-top-width: 8px;
    border-right-width: 8px;
    border-bottom-width: 8px;
    border-left-width: 8px;
    border-radius: 50px;
    color: black;
    padding: 15px;
}
.onboarding{
    border-style: solid;
    border-color: rgba(92, 221, 212, 1.0);
    border-top-width: 5px;
    border-right-width: 5px;
    border-bottom-width: 5px;
    border-left-width: 5px;
    border-radius: 21px;
}
#msform fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;

    position: relative;
}

#msform fieldset:not(:first-of-type) {
    display: none;
}

#msform fieldset .form-card {
    text-align: left;
    color: #9E9E9E;
}

#msform input, #msform textarea {
    padding: 0px 8px 4px 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 16px;
    letter-spacing: 1px;
}

#msform input:focus, #msform textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: none;
    font-weight: bold;
    border-bottom: 2px solid skyblue;
    outline-width: 0;
}

#msform .btn{
    width:fit-content;
    border-radius: 2px;
    padding:0.375rem 0.75rem  ;
    font-family: "Benedic", sans-serif;
    color: black;
}


.form-container{
    width: 100%;
    
}
#msform .action-button-previous {
    width: 100px;
    background: #616161;
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 5px;
    margin: 10px 5px;
}

#msform .action-button-previous:hover, #msform .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #616161;
}

select.list-dt {
    border: none;
    outline: 0;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px 3px 5px;
    margin: 2px;
}

select.list-dt:focus {
    border-bottom: 2px solid skyblue;
}

.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative;
}

.fs-title {
    font-size: 25px;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left;
}

#progressbar {
    display: flex;
    justify-content: space-between; /* Distribute space between items */
    flex-shrink: 0;
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey;
    padding: 15px;
    width: 100%;
}

#progressbar::-webkit-scrollbar {
    display: none;
}

#progressbar .active {
    color: #000000;
}

#progressbar li {
    list-style-type: none;
    font-size: 15px;
    min-width: 137px;
    flex-grow: 1; /* Allow each item to grow to fill the remaining space */
    text-align: center; /* Center text for better readability */
    position: relative;
}


.photo-box{
    background: #ffffff;
    padding: 10px 0px;
    width: 93%;
}

.id-box{    
    background: white;
    width: 100%;
    padding: 10px;

}

.info-block{
    background: #cacaca;
    height: 23px;
    width: 100%;
    border-radius: 5px;
}

.info-line{
    background: #cacaca;
    height: 8px;
    width: 100%;
    border-radius: 5px;
}

.id-info-placeholder{
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

#photoPreview, #idCardPreview {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensures the image fits within the container without cropping */
}

.photo-box, .id-box {
    height: 279px;
}


.info-div{
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.onboarding-form #progressbar li {
    width: 25%;
} 

#progressbar #account:before {
    content: "\f023";
}

#progressbar #personal:before {
    content: "\f007";
}

#progressbar #payment:before ,#progressbar #li-billing:before,#progressbar #li-onboarding:before,#progressbar #li-agreement:before,#progressbar #li-welcome:before,#progressbar #li-tnc:before
    ,#progressbar #li-portal:before,#progressbar #li-facial::before,#progressbar #li-orientation-call:before,#progressbar #li-password:before {
    content: "\f09d";
}

#progressbar #confirm:before {
    content: "\f00c";
}

#progressbar li:before {
    width: 50px;
    height: 50px;
    display: block;
    font-size: 18px;
    /* color: #ffffff; */
    background-image: url('../../../asset/frontend/image/logos/uncheck.png') ;
    background-size: cover; /* Ensure the image covers the whole element */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    /* border-radius: 50%; */
    margin: 0 auto 10px auto;
    line-height: 50px; /* Center any text vertically if needed */
    padding: 0; /* Remove padding to avoid altering the size */
}


#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1;
}

#progressbar li.active:before {
    background-image: url('../../../asset/frontend/image/logos/check.png');
}
#progressbar li.active:after{
    background: skyblue;

}



.radio-group {
    position: relative;
    margin-bottom: 25px;
}

.radio {
    display:inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: lightblue;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor:pointer;
    margin: 8px 2px; 
}

.radio:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3);
}

.radio.selected {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1);
}

.fit-image{
    width: 100%;
    object-fit: cover;
}
.onboarding-container .active{
    background-color: #1ABC9C !important;
}
#orientation-call-content iframe html body{
    overflow: hidden;
}

.aligned-img {
    width: 100%; /* Ensures full width */
    height: 250px; /* Set consistent height */
    object-fit: cover; /* Ensures images maintain proportions */
}


@media (width: 1280px) {
    .slide h1 {
        font-size: 1.8rem;
    }
    .slide p {
        font-size: 1rem;
    }
}
@media (max-width: 1024px) {
    body {
        overflow-x: hidden;
    }
    nav {
        background-color: #191919;
    }
    .p-l-10 {
        padding-left: 10px;
        padding-top: 30px;
    }
    .input-cont {
        right: 0%;
        width: 90vw;
    }
}
@media (max-width:1000px){

    #home-banner .d-flex{
        flex-direction: column;
        gap: 10px;
    }
    #home-banner img{
        width: 250px;
        padding-top: 0px;
    }
    .container{
        text-align: center;
    }
    .container .col-md-9{
        width: 100%;
    }
    .container .col-md-9 h1{
        margin-bottom: 8px;
    }
    .container .col-md-9 a{
        width: 220px;
        margin-bottom: 5px;
    }
}
@media (max-width: 915px) {
    .slide .col-md-9 {
        width: 80%;
    }
    .card {
        height: 500px;
    }
}
@media (max-width: 768px) {
    
    .checkbox {
        justify-content: normal;
    }
    .checkbox p {
        padding-left: 46px;
    }
    .login-container {
        width: 90%;
    }
    .inputs {
        flex-direction: column;
        align-items: normal;
        gap: 0px;
    }
    .custom-col {
        flex: 0 0 100%;
        min-width: 50%;
    }
    .row {
        justify-content: center;
    }
    .about-sect-img {
        height: 100%;
    }
    .about-cont p {
        display: none;
    }
    .about-cont h2 {
        font-size: 1rem;
    }
    .about-cont a {
        font-size: 0.6rem;
        width: 90%;
    }

    .slide .col-md-9 {
        width: 100%;
    }
    .slide h1 {
        font-size: 2rem;
    }
    .slide p {
        font-size: 1rem;
    }
    .section-bg-image {
        width: 102vw;
    }
    .slider-container {
        width: 102vw;
    }
    header {
        width: 102vw;
    }

    .leftSideBar{
        transform: translateX(-250px);
    }
    .topbar{
        width: 100%;
        left: 0;
        height: 100px;
    }
    .content{
        left: 0;
        width: 100%;
        top: 100px;
    }
    .pricing-header{
        width: 100%;
    }
    .hamburger{
        display: block;
    }
    .cross{
        display: block;
        z-index: 100;
    }
}
@media (width: 1024px) and (height: 600px) {
    body {
        width: 230vw;
    }
}
@media (max-width: 376px) {
    .slide h1 {
        font-size: 1.5rem;
    }
    .slide p {
        font-size: 0.8rem;
    }
}
