@font-face {
    font-family: Poppins;
    src: url(./assets/product/fonts/Poppins-Bold.ttf);
}

@font-face {
    font-family: PoppinsLight;
    src: url(./assets/product/fonts/Poppins-Light.ttf);
}

@font-face {
    font-family: PoppinsMedium;
    src: url(./assets/product/fonts/Poppins-Medium.ttf);
}

@-webkit-keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-20px);
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }
}

@keyframes float {
    0% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }

    50% {
        box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
        transform: translatey(-20px);
    }

    100% {
        box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
        transform: translatey(0px);
    }
}

 

/* introduction page */

.introduction-section {
    position: relative;
    width: 100%;
    height: 100vh;
    background: url('../../assets/product/images/intro.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
}

.text-area {
    position: absolute;
    top: 0;
    left: 0;
    padding: 5vh 3vw;
    color: white;
    z-index: 3;
}

.text-area p {
    font-size: 3vh;
    margin: 1vh 0 0;
    padding: 0;
}

.content-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    width: 50%;
    height: 100%;
    padding: 5vh 3vw;
    box-sizing: border-box;
}

.content-container, .content-container2 {
    z-index: 2;
    color: white;
    padding: 2vh 3vw;
    width: 100%;
    max-width: 90%;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    text-align: left;
    box-sizing: border-box;
    margin-bottom: 1.5vh;
}

.content-container p{
    font-size: 2.6vh;
    line-height: 1.3;
    margin-bottom: 1.3vh;
    color: white;
    font-family: poppins;
}
.content-container2 p{
    font-size: 2.6vh;
    line-height: 1.3;
    margin-bottom: 1.3vh;
    color: white;
    font-family: poppins;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .introduction-section {
        flex-direction: column;
        justify-content: flex-end;
        padding-bottom: 7vh;
    }

    .content-area {
        width: 100%;
        padding: 2vh 4vw;
    }

    .content-container, .content-container2 {
        padding: 2vh 4vw;
        max-width: 90vw;
    }

    .content-container p{
        font-size: 2.6vh;
    }
     .content-container2 p{
        font-size: 2.6vh;
    }
}

@media (max-width: 768px) {
    .introduction-section {
        flex-direction: column;
        padding-bottom: 10vh;
    }

    .content-area {
        width: 100%;
        padding: 2vh 5vw;
    }

    .content-container, .content-container2 {
        padding: 2vh 5vw;
        max-width: 95vw;
    }

    .content-container p{
        font-size: 2.2vh;
    }
    .content-container2 p{
        font-size: 2.2vh;
    }
    .text-area {
        position: static;
        width: 100%;
        text-align: center;
    }

    .text-area h1, .text-area p {
        font-size: 4vh;
    }
}

@media (max-width: 480px) {
    .introduction-section {
        flex-direction: column;
        padding-bottom: 12vh;
    }

    .content-area {
        width: 100%;
        padding: 4vh 6vw;
    }

    .content-container, .content-container2 {
        padding: 2vh 6vw;
        max-width: 100vw;
    }

    .content-container p{
        font-size: 2vh;
    }
    .content-container2 p{
        font-size: 2vh;
    }

    .text-area h1 {
        font-size: 3.5vh;
    }

    .text-area p {
        font-size: 2.5vh;
    }
}






  /* Retail industry chart */

  .chart-container {
    padding: 50px;
    text-align: center;
}

.chart-container h1 {
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.icon-container {
    position: relative;
    padding: 20px;
}

.icon-container img {
    width: 6vw;
}

.icon-container p {
    margin-top: 2vh;
    font-size: 1.2rem;
    color:white;
    font-family: poppins;
    font-weight:500;
}

.dotted-line {
    border-left: 2px dotted #fff;
    height: 100px;
    margin: 0 auto;
    width: 2px;
}

.dotted-line-1 {
    position: relative;
    border-left: 2px dotted #fff;
    height: 150px;
    margin: 0 auto;
    width: 2px;
}

.dotted-line-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 2px;
    border-top: 2px dotted #fff;
}

.dotted-line-4 {
    position: relative;
    border-left: 2px dotted #fff;
    height: 150px;
    margin: 0 auto;
    width: 2px;
}

.dotted-line-4::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 2px;
    border-top: 2px dotted #fff;
}

.shift-up-1 {
    margin-top: -50px;
}

.shift-up-4 {
    margin-top: -50px;
}

.icon-bottom {
    margin-top: 10px;
}

@media (max-width: 600px) {
    .dotted-line-4::before {
        display: none;
    }

    .dotted-line-1::before {
        display: none;
    }

    .icon-container img {
        width: 40vw;
    }
}

   















/* features */


.classification-title {
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: capitalize;
    margin-top: 20px;
}

.gender-highlight {
    background-color: rgba(76, 76, 76, 1);
    border-radius: 2vh;
    line-height: 1.2;
    padding: 1vh 2vh;
    display: inline-block;
}

.classification-highlight {
    display: inline-block;
    padding-left: 1vh;
}

/* Media Queries for Responsive Design */
@media (min-width: 1200px) {
    .classification-title {
        font-size: 5vh;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .classification-title {
        font-size: 4.5vh;
    }
}

@media (max-width: 767px) {
    .classification-title {
        font-size: 4vh;
    }
}

@media (max-width: 576px) {
    .classification-title {
        font-size: 3.5vh;
        text-align: center; /* Center-align text for small screens */
    }

    .gender-highlight {
        line-height: normal;
        padding: 1vh 1.5vh;
    }
}

.classification-section {
    padding: 30px;
    width: 90%;
    margin: 0 auto;
}

.classification-text {
    font-size: 1.3rem;
    margin-top: 23px;
}

.classification-row {
    display: flex;
    align-items: start;
}

.classification-image {
    position: relative;
    width: 100%;
    height: auto;
}

.classification-image img {
    width: 100%;
    height: auto;
    margin-top: 30px;
}




  /* table */

  .pricing-section {
    text-align: center;
    border-radius: 2vh;
    width: 60%;
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    padding-bottom: 5vh;
}

.pricing-section h1 {
    font-size: 3.5vmax;
    font-family: Poppins;
    letter-spacing: 1px;
    font-weight: 800;
    text-transform: capitalize;
    margin-top: 2vh;
}

.pricing-section h2 {
    font-size: 2.2vw;
    font-family: Poppins;
    color: white;
    margin-top: 5vh;
}

.pricing-table {
    width: 95%;
    background-color: black;
    color: white;
    border-radius: 2vh;
    padding: 1.5vh;
    margin: 0 auto;
}

.pricing-header, .pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5vh 0;
}

.pricing-header {
    font-weight: bold;
    background-color: #000;
    padding: 2vh 0;
    border-radius: 2vh;
}

.feature-title, .feature {
    flex: 1;
    text-align: left;
    padding-left: 1.5vh;
    font-size: 1.2vw;
}

.plan-title {
    flex: 1;
    background-color: #4d4d4d;
    padding: 1.5vh;
    border-radius: 2vh;
    color: #fff;
    margin: 0 0.5vh;
    font-size: 1.8vw;
    font-family: Poppins;
}

.cost {
    font-weight: bold;
    background-color: #4d4d4d;
    border-radius: 2vh;
    color: white;
    padding: 1vh 1.5vh;
    font-size: 1.8vw;
    margin: 0 0.5vh;
}

.checkmark-wrapper {
    flex: 1;
    font-size: 1.8vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark-background {
    background-color: rgb(30, 31, 31);
    border-radius: 50%;
    padding: 0.4vw;
    width: 3.5vw;
    height: 3.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkmark {
    color: white;
    font-size: 1.4vw;
    line-height: 1;
}

.plan-version {
    flex: 1;
    font-size: 2.2vw;
    margin: 0 0.5vh;
    font-family: Poppins;
    color: white;
    font-weight: 300;
}

hr {
    border: 0;
    height: 1px;
    background-color: white;
    margin: 0;
}

.footer-separator {
    height: 6vh; /* Adjust height if necessary */
    color:black;
}

.footer-text {
    text-align: Right;
    font-size: 1.2vw;
    font-family: PoppinsLight;
    color: white;
    margin-top: 3vh; /* Margin top for separation from the table */
    margin-right: 5vw;
}

/* General styles for larger screens */
@media (min-width: 769px) {
    .pricing-table {
        width:80%;
    }

    .pricing-section h2 {
        font-size: 2.2vw;
    }

    .feature-title{
        font-size: 2.2vw;
    }

    .feature{
        font-size: 1.2vw;
    }
    .plan-title, .cost {
        font-size: 1.8vw;
    }

    .checkmark {
        font-size: 1.4vw;
    }

    .plan-version {
        font-size: 2.2vw;
    }

    .footer-text {
        font-size: 1.2vw;
    }
}

/* Styles for smaller screens */
@media (max-width: 768px) {
    .pricing-table {
        width:85%;
    }

    .pricing-section h1 {
        font-size: 5vmax;
    }

    .pricing-section h2 {
        font-size: 3.8vw;
    }

    .feature-title {
        font-size: 4.2vw;
    }
    .feature{
        font-size: 0.8rem;
    }
    .plan-title, .cost {
        font-size: 3.8vw;
    }

    .checkmark {
        font-size: 3.0vw;
    }

    .plan-version {
        font-size: 3.8vw;
    }

    .footer-text {
        font-size: 2.8vw;
        margin-top: 6vh; /* Increased top margin for smaller screens */
    }
}


/* General styles */
.responsive-heading {
    font-family: PoppinsLight, sans-serif;
    letter-spacing: 1px;
    font-weight: 400;
    text-transform: none;
    margin-top: 4vh;
    text-align: center;
    color: #fff;
}

.responsive-highlight {
    font-family: Poppins, sans-serif;
    font-weight: 800;
    border-radius: 1rem; /* Rounded corners */
    background-color: rgba(76, 76, 76, 1);
    padding: 0.5rem 1rem; /* Adjusted padding for better readability */
    /* margin-left: 0.5rem; Spacing between text and highlight */
    display: inline-block; /* Prevents highlight from wrapping */
}

/* Styles for larger screens */
@media (min-width: 769px) {
    .responsive-heading {
        font-size: 2.5vmax; /* Responsive font size */
    }

    .responsive-highlight {
        padding: 0.5rem 1rem; /* Consistent padding */
        /* margin-left: 0.5rem; Consistent margin */
    }
}

/* Styles for medium screens */
@media (max-width: 768px) and (min-width: 481px) {
    .responsive-heading {
        font-size: 4vw; /* Adjust font size for medium screens */
        margin-top: 3vh; /* Adjust top margin for spacing */
    }

    .responsive-highlight {
        padding: 0.6rem 1.2rem; /* Adjusted padding */
        /* margin-left: 0.6rem; Adjusted margin */
    }
}

/* Styles for smaller screens */
@media (max-width: 480px) {
    .responsive-heading {
        font-size: 5vw; /* Adjust font size for small screens */
        margin-top: 2vh; /* Adjust top margin for spacing */
    }

    .responsive-highlight {
        padding: 0.8rem 1.6rem; /* Adjusted padding */
        /* margin-left: 0.8rem; Adjusted margin */
    }
}








/* Youtube video */
.video-container {
    width: 80%;
    margin: 0 auto; /* Center horizontally */
    padding-top: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

/* Make sure iframe takes full width and height of its container */
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube{
    width:90%;
}


@media screen and (max-width: 768px) {
    .video-container {
        width: 90%; /* Adjust width for smaller screens */
    }
}


@media (min-width: 769px) {
    .video-container {
        width: 90%; /* Adjust width for smaller screens */
    }
}

/* Styles for medium screens */
@media (max-width: 768px) and (min-width: 481px) {
    .video-container {
        width: 90%; /* Adjust width for smaller screens */
    }
}






/* Custom List Styling */
.custom-list {
    /*list-style: none;  Remove default numbering */
    padding-left: 0;
    counter-reset: list-counter; /* Reset counter */
}

.custom-list li::marker {
	font-size: 1.5rem;
	color:white;
}

.custom-list li {
    position: relative;
    counter-increment: list-counter; /* Increment counter */
    margin-bottom: 15px;
    color: white;
}

/* Styling for nested lists */
.custom-list li ul {
    list-style: none; /* Remove default disc bullets */
    padding-left: 25px; /* Ensure space for bullets */
}

/* Adjust bullet point alignment for nested list items */
.custom-list li ul li {
    position: relative;
    color: white; /* Text color */
    padding-left: 25px; /* Space for custom bullet */
    margin-bottom: 10px; /* Margin for spacing */
    line-height: 1.5; /* Adjust line height if necessary */
}

.custom-list li ul li::before {
    content: ''; /* Empty content for custom bullet */
    position: absolute;
    left: 0; /* Align bullet with the text */
    top: 0; /* Align bullet with the top of the text */
    width: 10px; /* Bullet size */
    height: 10px; /* Bullet size */
    background-color: black; /* Black fill for bullet */
    border: 2px solid white; /* White border around bullet */
    border-radius: 50%; /* Make it circular */
    margin-top: 1vh;
}

.lead-custom-paragraph{
    color:white;
    font-family: Poppins;
    font-size: 2vmax;
    font-weight: 400;
}

.DashboardOverviewTitle{
	font-size:4rem !important;
}

.DashboardOverviewPoints{
	font-size:2rem !important;
}

.DashboardOverviewText{
	font-size:1.4rem !important;
}

.mx-auto{
	width:70% !important;
}

/* On screens that are 600px or less, set the background color to olive */
@media screen and (max-width: 600px) {
.XsensBetaProTitle{
	font-size:1.5rem !important;
}
.XsensBetaProText{
	font-size:1.3rem !important;
}
.description{
	font-size:1.5rem;
	margin-bottom: 20% !important;
	line-height: normal !important;
}

.DashboardOverviewTitle{
	font-size:2rem !important;
}

.DashboardOverviewPoints{
	font-size:1.3rem !important;
}

.DashboardOverviewText{
	font-size:1rem !important;
}

.mx-auto{
	width:90% !important;
}

.custom-list li::marker {
	font-size: 1.2rem;
	color:white;
}
}