/* global */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* main box styling */

.demoMain {
    background: url("./bg_demo.png");
    background-size: 100% 70vh;
    /* height: 100vh; */
    height: fit-content;
    background-repeat: no-repeat;
}


/* left column */

.leftDemo {
    text-align: center;
}


/* columns both */

.columnC {
    float: left;
    width: 50%;
    height: auto;
}


/* two column layout */

.rowC:after {
    content: "";
    display: table;
    clear: both;
}


/* demo heading tag "demo" */

.headingDemo span {
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    line-height: 81px;
    letter-spacing: 0em;
    text-align: left;
}


/* demo heading tag "lets have" */

.headingDemo {
    color: #475677;
    padding: 2.5rem;
    text-align: center;
    font-family: Poppins;
    font-size: 3rem;
    font-style: normal;
    font-weight: 300;
    line-height: 81px;
    letter-spacing: 0em;
    text-align: left;
}


/* main image  */

.demoImageDiv {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem;
}

.demoImage {
    max-width: 400px;
    /* padding-bottom: 5rem; */
    /* background: #EBFDFD; */
}


/* input box wrapper */

.InputBoxParent {
    padding: 0rem 5rem;
}

.inputBoxDemo {
    height: 3rem;
    width: 20rem;
    border-radius: 0px;
    background: #DCFAF7;
    border: none;
    outline: none;
}

.inputBoxDemo::placeholder {
    font-family: Segoe UI;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    padding: 20px;
    line-height: 25px;
    letter-spacing: 0em;
    text-align: left;
}

.selectBox {
    border: none;
    outline: none;
    margin-top: 1rem;
    height: 3rem;
    width: 20rem;
    border-radius: 0px;
    background: #ffffff;
}

.selectBox {
    font-family: Segoe UI;
    font-style: normal;
    font-weight: normal;
    font-family: "Poppins";
    font-size: 1rem;
    line-height: 25px;
    color: rgba(100, 112, 122, 0.8);
    padding-left: 1rem;
}

.selectBox option {
    color: rgba(100, 112, 122, 0.8) !important;
}


/* demo box content */

.demoContentHead {
    margin-left: 4rem;
    font-family: "Poppins";
    font-style: normal;
    font-weight: 600;
    font-size: 38px;
    line-height: 57px;
    color: #475677;
}


/* content demo video three videos */

.demoContent {
    padding: 1rem;
    /* margin: 3rem 1rem; */
    margin-right: 0rem;
    display: flex;
    width: 100%;
    overflow: scroll;
    overflow-y: hidden;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.demoContent::-webkit-scrollbar {
    overflow: hidden;
}


/* content box */

.singleContentBox {
    height: max-content;
    width: 300px;
    border-radius: 15px;
    margin: 0.5rem 1rem;
    border: 1px solid #47567736;
}

.singleContentBox img {
    width: 100%;
    height: 200px;
}

.singleContentBox h4 {
    padding: 12px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 700;
    font-size: 1rem;
    line-height: 34px;
    color: #475677;
}

.singleContentBox div {
    display: flex;
    justify-content: space-between;
    clear: both;
    padding-bottom: 0.3rem;
}

.singleContentBox p {
    font-family: Segoe UI;
    font-style: normal;
    font-weight: normal;
    font-size: 0.8rem;
    line-height: 25px;
    text-align: left;
    padding: 10px;
}

.singleContentBox p:nth-child(1) {
    text-align: center;
    color: #FFBE58;
    margin-left: 0.5rem;
}

.singleContentBox p:last-child {
    color: #828CA2;
    text-align: right;
    margin-left: 3rem;
}

@media screen and (max-width: 600px) {
    .demoMain {
        background: #EBFDFD;
        background-size: 100% 100vh;
        /* height: 100vh; */
        height: fit-content;
        background-repeat: no-repeat;
    }
    .inputBoxDemo {
        width: 15rem;
    }
    .selectBox {
        width: 15rem;
    }
    .singleContentBox {
        width: 12rem;
    }
    .demoContentHead {
        font-size: 1.5rem;
        margin: 0;
        margin-left: 4rem;
    }
    .hide_in_mobile {
        display: none !important;
    }
}

@media screen and (max-width: 800px) {
    /* 2 column layout */
    .columnC {
        width: 100%;
    }
    /* for make it center */
    .InputBoxParent {
        display: flex;
        justify-content: center;
    }
    .headingDemo {
        padding: 3rem;
        font-size: 2rem;
        text-align: center;
    }
    .demoImage {
        padding-top: 2rem;
        width: 100vw;
    }
    .singleContentBox {
        width: 15rem;
    }
}
