* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
}

body {
    font-family: 'Manrope';
    font-weight: normal;
    color: black;
    text-transform: capitalize;
}

:root {
    --lite-primary-clr: #4841ad;
    --primary-clr: #383387;
    --dark-primary-clr: #201d50;
    --secondry-color: #CACBCC;
    --font-color: #75787B;
}

.main-hero {
    display: block;
}

.deskto-view {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
}


.deskto-view .desktop-ctn {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    column-gap: 20px;
}

.deskto-view .desktop-ctn h1 {
    font-size: 16px;
}

.main-hero {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.common-section {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    padding: 8vh 0;
}

.common-padding {
    padding: 0 5%;
    box-sizing: border-box;
}

.font-normal {
    font-weight: 400;
}


.font-medium {
    font-weight: 500;
}


.font-bold {
    font-weight: bold;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;

}

.d-none {
    display: none !important;
}

.overflow-hidden {
    overflow: hidden;
}

.btn-bx {
    width: 100%;
    display: block;
    text-align: center;
    margin-top: 30px;
    font-weight: bold;
    row-gap: 20px;
}

.common-btn {
    position: relative;
    width: 100%;
    line-height: 2.3;
    padding: 0px 20px;
    box-sizing: border-box;
    border: none;
    font-size: 1rem;
    text-transform: capitalize;
    cursor: auto;
    transition: all .5s ease;
    border-radius: 30px;
    background: var(--secondry-color);
    color: var(--font-color);
    font-family: 'Manrope';
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.common-btn.default {
    background: transparent;
    font-size: 0.85rem;
}

.common-btn.active {
    background: var(--primary-clr);
    color: #ffffff;
}

.text-center {
    text-align: center !important;
}


/* button:disabled,
button[disabled] {
    opacity: 0.5;
} */

/* ////////////// header style /////////// */
.header {
    width: 250px;
}

.header .logo-bx {
    width: 100%;
}

.header .logo-bx img {
    width: 100%;
    display: block;
}

.your-videos,
.right-bx {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
}


/* /////////////////// home banner ///////////// */
.home-banner {
    position: relative;
    width: 100%;
}

.home-banner img {
    display: block;
    width: 100%;
}

.heading-bx {
    margin: 20px auto;
}

.heading-bx h1 {
    font-size: 1rem;
}

.heading-bx p {
    color: var(--font-color);
    font-size: 0.85rem;
}

.form-group {
    position: relative;
    width: 100%;
    background: transparent;

    border-radius: 5px;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.form-group label {
    position: absolute;
    z-index: 1;
    left: 10px;
    top: -0.7rem;
    font-size: 0.8rem;
    background: #fff;
    color: var(--font-color);
}

.form-group .input-field {
    position: relative;
    width: 100%;
    display: block;
    font-size: 0.9rem;
    line-height: 2.8;
    outline: none;
    border-radius: 5px;
    padding: 0px 10px;
    border: 1px solid var(--secondry-color);
    box-sizing: border-box;
    background: transparent;
}

.form-group .input-field:visited {
    outline: none;
    border: none;
}

.form-group .input-field:focus {
    border: 1px solid black;
}

.video-bx {
    position: relative;
    width: 80%;
    margin: 0px auto;
    border-radius: 5px;
    overflow: hidden;
}

.video-bx video {
    display: block;
    width: 100%;
}

.video-overlaye {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    padding: 0 10%;
    box-sizing: border-box;
}

.video-overlaye p:last-child {
    font-size: 0.65rem;
}



.step-bar-sec {
    position: relative;
    width: 100%;
    margin-top: 20px;
}

.step-bar-sec .grid-step {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    justify-content: center;
}

.step-bar-sec .grid-step .step-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-bar-sec .grid-step .step-item::after {
    content: '';
    position: absolute;
    top: 28%;
    transform: translateY(-50%);
    left: 50%;
    width: inherit;
    height: 2px;
    background-color: #E9F2FB;
    z-index: -1;

}

.step-bar-sec .grid-step .step-item.complete::after {
    background-color: #E2F9EB;
}

.step-bar-sec .grid-step .step-item:last-child:after {
    opacity: 0;
}

.step-bar-sec .grid-step .step-item .box {
    position: relative;
    width: 7vw;
    height: 7vw;
    border-radius: 50%;
    background-color: #E9F2FB;
    color: #959595;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.65rem;
}

.step-bar-sec .grid-step .step-item p {
    font-size: 0.6rem;
    color: #959595;
}

.step-bar-sec .grid-step .step-item.active .box {
    background: #6EA7E2;
    color: #fff;
}

.step-bar-sec .grid-step .step-item .box .complete-bx {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #E2F9EB;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 2%;
    box-sizing: border-box;
}


.select-product-bx {
    position: relative;
    width: 100%;
}


.select-product-bx .expaind-bx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.select-product-bx .expaind-bx h3 {
    font-size: 0.8rem;
}

.select-product-bx .expaind-bx p {
    font-size: 0.7rem;
    color: var(--font-color);
}

.select-product-bx .expaind-bx .arrow-bx {
    width: 15px;
}

.select-product-bx .expaind-bx .arrow-bx.rorate {
    transform: rotate(-180deg);
}


.select-product-bx .expaind-bx .arrow-bx img {
    display: block;
    width: 100%;
}

.select-product-bx .select-grid {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: 17% 17% 17% 17% 17%;
    justify-content: space-between;
    gap: 10px;
    height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-bottom: 20px;
}

.select-product-bx .select-grid.opend {
    height: auto;
}

.select-product-bx .select-grid .select-item {
    position: relative;
    width: 100%;
    padding: 2%;
    box-sizing: border-box;
}

.select-product-bx .select-grid .select-item img {
    display: block;
    width: 100%;

}

.select-product-bx .select-grid .select-item .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.589);
    z-index: 22;
    display: flex;
    justify-content: end;
    align-items: end;
    padding: 1%;
    box-sizing: border-box;
}

.select-product-bx .select-grid .select-item .overlay img {
    width: 30%;
}

.form-details-sec form {
    margin-top: 25px;
}

.upload-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2.5%;
    margin-bottom: 15px;
    border: 1px solid var(--secondry-color);
}

.upload-icon img {
    display: block;
    width: 100%;
}


.videos-container {
    position: relative;
    width: 100%;
    max-height: 65vh;
    overflow: hidden;
    overflow-y: auto;
    padding-bottom: 30px;
    box-sizing: border-box;
}

.video-grid {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2%;
}

.video-grid .video-item {
    position: relative;
    width: 48%;
    margin-bottom: 10px;
}

.video-grid .video-item video {
    display: block;
    width: 100%;
}

.download-video-btn {
    position: absolute;
    display: block;
    width: 100%;
    bottom: 0;
    left: 0;
    font-size: 0.75rem;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}


/* //////////// model sectiion style ////////// */
.model-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 1112;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease
}

.model-visiable {
    visibility: visible !important;
    opacity: 1 !important;
}

.model-view .model-view-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 15px;
    padding-top: 20px;
    width: 80%;
    max-height: 80%;
    box-sizing: border-box;
    border-radius: 5px;
}

.close-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 15px;
}

.close-btn img {
    width: 100%;
    display: block;
}