:root {
    --theme-primary-color: #ff6633;
    --theme-secondary-color: #f93;
    --yellow: #ffcc33;
    --blue: #336699;
    --seagreen: #33cc99;
    --lightblue: #3399cc;
    --lightpink: #ff99ff;
    --brown: #cc6633;
    --pink: #cc3366;
    --skyblue: #33cccc;
    --chartreuse: #d7e02c;
    --junglegreen: #5ec7b2;
    --purple: #842753;
    --red: #c82828;
}

::selection {
    color: #ffffff;
    background-color: #ff663341;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Khaadi';
    overflow: hidden;
    box-sizing: border-box;
}

.theme-primary-color {
    background-color: var(--theme-primary-color);
}

.theme-secondary-color {
    background-color: var(--theme-secondary-color);
}

.bg-red {
    background-color: var(--red);
}

.bg-purple {
    background-color: var(--purple);
}

.bg-junglegreen {
    background-color: var(--junglegreen);
}

.bg-chartreuse {
    background-color: var(--chartreuse);
}

.bg-skyblue {
    background-color: var(--skyblue);
}

.bg-pink {
    background-color: var(--pink);
}

.bg-brown {
    background-color: var(--brown);
}

.bg-lightpink {
    background-color: var(--lightpink);
}

.bg-lightblue {
    background-color: var(--lightblue);
}

.bg-yellow {
    background-color: var(--yellow);
}

.bg-blue {
    background-color: var(--blue);
}

.bg-seagreen {
    background-color: var(--seagreen);
}

.main-logo {
    display: inline-block;
    width: 40%;
}

.main {
    position: relative;
    height: 100vh;
}

.all-screens:before {
    content: '';
    background-image: url('../images/d-khaadi-bg-left.png');
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: contain;
    position: absolute;
    left: 0;
    bottom: 0 !important;
    height: 100vh;
    width: 100%;
    z-index: -999;
}

.all-screens:after {
    content: '';
    background-image: url('../images/d-khaadi-bg-right.png');
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    position: absolute;
    right: 0;
    bottom: 0 !important;
    height: 100vh;
    width: 100%;
    z-index: -999;
}

.screens-bg {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.screens-bg .main-logo {
    display: inline-block;
    width: 40%;
}

.main-header {
    padding: 36px 0 45px 0;
    height: 108px;
}

.main-header .navigation {
    margin: 0;
    padding: 0;
    float: right;
}

.main-header .navigation li {
    list-style: none;
    display: inline-block;
    padding: 0 30px;
}

.main-header .navigation li a {
    color: black;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    font-weight: 600;
    background-image: linear-gradient(to right, #ff6633, #ff6633 50%, #000 50%);
    background-size: 200% 100%;
    background-position: -100%;
    display: inline-block;
    padding: 0px 0 5px 0;
    position: relative;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease-in-out;
}

.main-header .navigation li a:before {
    content: "";
    background: #ff6633;
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 0;
    height: 2px;
    transition: all 0.3s ease-in-out;
}

.main-header .navigation li a:hover {
    background-position: 0;
}

.main-header .navigation li a:hover::before {
    width: 100%;
}

.cus-mt-1 {
    margin: 50px 0 0 0;
}

.cus-mt-2 {
    margin: 0px 0 0 0;
}

.content-box h1 {
    font-size: 45px;
    line-height: 45px;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.content-box .highlighted {
    font-weight: 800 !important;
}

.content-box i,
.content-box .highlighted i {
    font-weight: 400 !important;
}

.content-box .single-btn {
    text-align: center;
    margin: 50px 0 0 0;
}

.content-box .single-btn a {
    color: #000000;
    padding: 18px 45px;
    display: inline-block;
    margin: 0px 0 0 0;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    font-size: 18px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
}

.content-box .single-btn a:hover {
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    color: var(--theme-primary-color);
    border: 1px solid var(--theme-primary-color);
    box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -webkit-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -moz-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
}

.vid-sec {
    /* height: calc(100% - 185px);
    display: flex;
    justify-content: center;
    align-items: center; */
}
.vid-sec iframe {
    width: 100%;
    height: 350px;
}

/* Steps CSS start */

#steps_sec {
    position: absolute;
    left: 50%;
    bottom: 13%;
    transform: translate(-50%, -50%);
}

.steps-sec {
    margin: 20px 0 0 0;
}

.steps {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    overflow-x: auto;
    position: relative;
}

.steps .step:first-child {
    margin-left: auto
}

.steps .step:last-child {
    margin-right: auto
}

.step:first-of-type .step-circle::before {
    display: none
}

.step:last-of-type .step-content {
    padding-right: 0
}

.step-content a {
    text-decoration: none;
}

.step-content {
    box-sizing: content-box;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: .5rem;
    padding-right: 1rem;
    padding-right: 1rem;
    width: 10rem;
    min-width: 10rem;
    max-width: 10rem;
}

.step:first-child::before {
    content: '';
    width: 15px;
    height: 15px;
    border-radius: 100%;
    position: absolute;
    background-color: transparent;
    border: 0px solid transparent;
    top: 12px;
    margin-left: -16px;
    z-index: 999999;
}

.step-circle {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    color: #ffffff;
    border: 2px solid #ff6633;
    border-radius: 100%;
    padding: 14px;
    font-size: 18px;
    line-height: 18px;
    font-weight: 800;
    color: #ffffff;
    background-color: var(--theme-primary-color);
    border-color: transparent;
}

.step-circle::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: -2px;
    height: 2px;
    transform: translate(-100%, -50%);
    color: var(--theme-primary-color);
    background-color: currentColor;
    width: calc(10.5rem + 1rem - 2.4rem);
}

/* active */
.step-active .step-circle {
    color: var(--theme-primary-color);
    background-color: transparent;
    border-color: var(--theme-primary-color);
}

.steps::-webkit-scrollbar {
    display: none;
}

.scrolling::-webkit-scrollbar {
    height: 3px;
    display: block;
}

.scrolling::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.scrolling::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: var(--colorgreen) !important;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

/* scrollar css */
/* Steps CSS end */
/* verticle buttons one start */
.verticle-btns-list-one {
    margin: 20px 0 0 0;
    display: block;
}

.verticle-btns-list-one a {
    color: #ffffff;
    padding: 24px 24px;
    display: block;
    margin: 0 auto 18px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    font-size: 18px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    width: 40%;
    text-align: center;
    border: 1px solid transparent;
}

.verticle-btns-list-one a:hover {
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -webkit-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -moz-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
}

.verticle-btns-list-one a:nth-child(1):hover {
    color: var(--lightblue);
    border: 1px solid var(--lightblue);
}

.verticle-btns-list-one a:nth-child(2):hover {
    color: var(--lightpink);
    border: 1px solid var(--lightpink);
}

.verticle-btns-list-one a:nth-child(3):hover {
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

/* verticle buttons one end */
/* verticle buttons two start */
.verticle-btns-list-two {
    margin: 20px 0 0 0;
    display: block;
}

.verticle-btns-list-two a {
    color: #ffffff;
    padding: 24px 24px;
    display: block;
    margin: 0 auto 18px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    font-size: 18px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    width: 40%;
    text-align: center;
    border: 1px solid transparent;
}

.verticle-btns-list-two a:hover {
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -webkit-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -moz-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
}

.verticle-btns-list-two a:nth-child(1):hover {
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

.verticle-btns-list-two a:nth-child(2):hover {
    color: var(--blue);
    border: 1px solid var(--blue);
}

.verticle-btns-list-two a:nth-child(3):hover {
    color: var(--seagreen);
    border: 1px solid var(--seagreen);
}

/* verticle buttons two end */
/* horizontal buttons one start */
.horizontal-btns-list-one {
    margin: 50px 0 0 0;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

.horizontal-btns-list-one a {
    color: #ffffff;
    padding: 24px 24px;
    display: block;
    margin: 0 auto 18px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    font-size: 18px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    width: 47%;
    text-align: center;
    border: 1px solid transparent;
}

.horizontal-btns-list-one a:hover {
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -webkit-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -moz-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
}

.horizontal-btns-list-one a:nth-child(1):hover {
    color: var(--brown);
    border: 1px solid var(--brown);
}

.horizontal-btns-list-one a:nth-child(2):hover {
    color: var(--pink);
    border: 1px solid var(--pink);
}

.horizontal-btns-list-one a:nth-child(3):hover {
    color: var(--skyblue);
    border: 1px solid var(--skyblue);
}

.horizontal-btns-list-one a:nth-child(4):hover {
    color: var(--yellow);
    border: 1px solid var(--yellow);
}

/* horizontal buttons one end */
/* horizontal buttons two start */
.horizontal-btns-list-two {
    margin: 50px 0 0 0;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
}

.horizontal-btns-list-two a {
    color: #ffffff;
    padding: 24px 24px;
    display: block;
    margin: 0 auto 18px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    font-size: 18px;
    line-height: 18px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    width: 47%;
    text-align: center;
    border: 1px solid transparent;
}

.horizontal-btns-list-two a:hover {
    background-color: transparent;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -webkit-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -moz-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
}

.horizontal-btns-list-two a:nth-child(1):hover {
    color: var(--chartreuse);
    border: 1px solid var(--chartreuse);
}

.horizontal-btns-list-two a:nth-child(2):hover {
    color: var(--junglegreen);
    border: 1px solid var(--junglegreen);
}

.horizontal-btns-list-two a:nth-child(3):hover {
    color: var(--purple);
    border: 1px solid var(--purple);
}

.horizontal-btns-list-two a:nth-child(4):hover {
    color: var(--red);
    border: 1px solid var(--red);
}

/* horizontal buttons two end */

.finish {
    margin: 25px auto 0;
    width: calc(100% - 395px);
}

.finish label:nth-child(1) {
    text-align: center;
    margin: 0 auto;
    display: table;
    font-size: 24px;
    line-height: 24px;
    width: calc(100% - 100px);
}

.finish .email {
    padding: 18px;
    border-radius: 16px;
    margin: 6px 0 0 0;
    font-size: 20px;
    line-height: 20px;
}

.finish .email:focus {
    color: #000000;
    background-color: #fff;
    border-color: var(--theme-primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.20rem #ff66331a;
}

.finish .form-check {
    margin: 0 auto;
    display: table;
}

.finish .chbox {
    font-size: 18px;
    line-height: 41px;
}

/* .finish .chbox.form-check-input {
    margin-top: 0.6em;
} */

.finish #chk_check {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.finish #chk_check:focus {
    border-color: var(--theme-primary-color);
    outline: 0;
    box-shadow: 0 0 0 0.20rem #ff66331a;
}

.finish #chk_check:checked {
    background-color: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
}

.finish .btn {
    color: #fff;
    background-color: var(--theme-primary-color);
    border-color: var(--theme-primary-color);
    margin: 0 auto;
    display: table;
    padding: 16px 36px;
    font-size: 18px;
    line-height: 18px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.finish .btn:hover {
    color: var(--theme-primary-color);
    background-color: transparent;
    border-color: var(--theme-primary-color);
    box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -webkit-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
    -moz-box-shadow: 0px 0px 27px -4px rgb(199 199 199 / 58%);
}

/* products selection css start */

.loader {
    display: flex;
    justify-content: center;
    align-items: center;
}

.right-selection h5 {
    font-size: 25px;
    line-height: 25px;
    font-weight: 800;
    margin: 0 0 6px 0;
}

.right-selection .list-wrap {
    border: 1px solid var(--theme-primary-color);
    border-radius: 28px;
    -webkit-border-radius: 28px;
    -moz-border-radius: 28px;
    -ms-border-radius: 28px;
    -o-border-radius: 28px;
    padding: 10px 10px;
}

.right-selection .ul-list {
    height: 140px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 0 0px;
    list-style: none;
    margin: 8px 0 0 0;
}

.right-selection .ul-list::-webkit-scrollbar {
    width: 6px;
    height: 4px;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.right-selection .ul-list::-webkit-scrollbar-track {
    background: transparent;
}

.right-selection .ul-list::-webkit-scrollbar-thumb {
    background-color: #d8d8d8;
    border: 0px solid transparent;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.right-selection .ul-list li {
    border-bottom: 1px solid #464646;
    padding: 6px 0 0px 0;
    margin: 0 12px 0 0;
}

.right-selection .ul-list li:last-child {
    border-bottom: 1px solid transparent;
}

.right-selection .ul-list li a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    line-height: 16px;
}

.left-product #image-text img {
    float: right;
    width: 50%;
    display: none;
}

.right-selection .list-wrap .select-txt span {
    background-color: #d8d8d8;
    display: none;
    border-radius: 20px;
    padding: 8px 8px;
    font-size: 16px;
    line-height: 16px;
    font-weight: 800;
}

#image-text img.active,
.select-txt span.active {
    display: block !important;
}

footer {
    text-align: center;
    padding: 36px 0 0 0;
    margin: 0;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translate(-50%, 0%);
}

footer p {
    font-size: 14px;
    line-height: 14px;
    margin: 0;
    font-weight: 400;
}

/* products selection css end */
@media (min-width: 1700px) {
    .main-header {
        padding: 36px 0 60px 0;
    }

    .screens-bg .main-logo {
        width: auto;
    }

    .main-header .main-logo {
        width: auto;
    }

    .steps-sec {
        margin: 60px 0 0 0;
    }

    .cus-mt-2 {
        margin: 30px 0 0 0;
    }

    .main-header .navigation li a {
        font-size: 16px;
        line-height: 16px;
    }

    .step-content {
        width: 15rem;
        min-width: 15rem;
        max-width: 15rem;
    }

    .step-circle::before {
        width: calc(14.5rem + 1rem - 2.4rem);
    }

    .step-circle {
        width: 3.0rem;
        height: 3.0rem;
        padding: 14px;
        font-size: 22px;
        line-height: 22px;
    }

    .content-box .single-btn a {
        padding: 35px 85px;
        font-size: 24px;
        line-height: 24px;
    }

    .verticle-btns-list-one,
    .verticle-btns-list-two {
        margin: 50px 0 0 0;
    }

    .verticle-btns-list-one a,
    .verticle-btns-list-two a {
        padding: 40px 85px;
        margin: 0 auto 25px;
        font-size: 22px;
        line-height: 22px;
        width: 50%;
    }

    .horizontal-btns-list-one a,
    .horizontal-btns-list-two a {
        padding: 40px 85px;
        margin: 0 auto 25px;
        font-size: 22px;
        line-height: 22px;
        width: 47%;
    }

    .right-selection .ul-list {
        height: 155px;
        margin: 16px 0 0 0;
    }

    .left-product #image-text img {
        width: 60%;
    }

    .right-selection .ul-list li a {
        font-size: 20px;
        line-height: 20px;
    }

    .right-selection h5 {
        font-size: 35px;
        line-height: 35px;
        margin: 0 0 12px 0;
    }

    .right-selection .list-wrap .select-txt span {
        padding: 12px 12px;
        font-size: 20px;
        line-height: 20px;
    }

    .content-box .single-btn a {
        padding: 25px 55px;
        font-size: 18px;
        line-height: 18px;
    }

    .cus-mt-1 {
        margin: 120px 0 0 0;
    }

    .finish {
        margin: 60px auto 0;
        width: calc(100% - 500px);
    }

    .finish .btn {
        padding: 18px 50px;
        font-size: 22px;
        line-height: 22px;
    }

    .vid-sec iframe {
        height: 500px;
    }

    .content-box h1 {
        font-size: 80px;
        line-height: 80px;
    }

    footer {
        bottom: 50px;
    }
}

/* media queries start */
@media (min-width:991px) and (max-width:1024px) {
    #steps_sec {
        bottom: 30%;
    }

    .all-screens:before {
        background-image: url('../images/t-khaadi-bg-left-1024x1366.png');
    }

    .all-screens:after {
        background-image: url('../images/t-khaadi-bg-right-1024x1366.png');
    }

    .content-box .col-12.col-lg-6.col-md-8 {
        width: 70%;
    }

    .main-logo {
        display: inline-block;
        width: 55% !important;
    }

    .main-header .container {
        max-width: 725px;
    }

    .main-header .container .row .col-6.col-lg-8 {
        width: 70%;
    }

    .main-header .navigation li {
        padding: 0 6px;
    }

    .main-header .navigation li a {
        font-size: 14px;
        line-height: 14px;
    }

    .main-header .container .row .col-6.col-lg-4 {
        width: 30%;
    }

    .vid-sec .col-12.col-lg-9 {
        width: 75%;
    }

    .vid-sec iframe {
        height: 850px;
    }

    .content-box h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .content-box .single-btn a {
        padding: 28px 75px;
        font-size: 18px;
        line-height: 18px;
    }

    .verticle-btns-list-one a,
    .verticle-btns-list-two a,
    .horizontal-btns-list-one a,
    .horizontal-btns-list-two a {
        padding: 40px 40px;
        margin: 0 auto 22px;
        font-size: 18px;
        line-height: 18px;
        width: 47%;
    }

    .step-content {
        width: 8rem;
        min-width: 8rem;
        max-width: 8rem;
    }

    .step-circle::before {
        width: calc(8.5rem + 1rem - 2.4rem);
    }

    .left-product #image-text img {
        float: none;
        width: 60%;
        margin: 0 auto 22px;
    }

    .right-selection h5 {
        text-align: center;
    }

    .finish {
        margin: 60px auto 0;
        width: 63%;
    }

    footer {
        bottom: 295px;
        width: 33%;
    }
}

@media only screen and (min-device-width: 1024px) and (max-device-width: 1366px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    #steps_sec {
        bottom: 25%;
    }

    .screens-bg .main-logo {
        width: 45%;
    }

    .main-header .main-logo {
        width: 40%;
    }

    .content-box h1 {
        font-size: 70px;
        line-height: 70px;
    }

    .content-box .single-btn a {
        padding: 28px 70px;
        font-size: 18px;
        line-height: 18px;
    }

    .verticle-btns-list-one a,
    .verticle-btns-list-two a,
    .horizontal-btns-list-one a,
    .horizontal-btns-list-two a {
        padding: 28px 40px;
        font-size: 18px;
        line-height: 18px;
    }

    .step-content {
        width: 11rem;
        min-width: 11rem;
        max-width: 11rem;
    }

    .step-circle::before {
        width: calc(12.5rem + 1rem - 3.4rem);
    }

    .finish {
        width: 52%;
    }

    footer {
        bottom: 14%;
    }
}

@media (min-width:820px) and (max-width:821px) {
    .screens-bg .main-logo {
        width: 65%;
    }

    .main-logo {
        width: 60%;
    }

    .main-header .container .row {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .main-header .container .row .col-6.col-lg-4 {
        width: 38%;
    }

    .main-header .container .row .col-6.col-lg-8 {
        width: 62%;
    }

    .main-header .navigation li {
        padding: 0 18px;
    }

    .main-header .navigation li a {
        font-size: 13px;
        line-height: 13px;
    }

    .content-sec .col-12.col-lg-9,
    .vid-sec .col-12.col-lg-9,
    .getstart-sec .col-12.col-lg-9 {
        width: 80%;
    }

    .getstart-sec,
    .content-sec {
        height: calc(100% - 185px);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content-sec,
    .vid-sec,
    .getstart-sec {
        margin-top: 36px;
    }

    .verticle-btns-list-one a,
    .verticle-btns-list-two a {
        padding: 24px 24px;
        font-size: 14px;
        line-height: 14px;
        width: 50%;
    }

    .horizontal-btns-list-one a,
    .horizontal-btns-list-two a {
        font-size: 14px;
        line-height: 14px;
        width: 45%;
    }

    .left-product #image-text img {
        float: none;
        width: 55%;
        margin: 0 auto 22px;
    }

    .finish {
        width: calc(100% - 110px);
    }

    #steps_sec {
        bottom: 28%;
    }

    .step-content {
        width: 6rem;
        min-width: 6rem;
        max-width: 6rem;
    }

    .step-circle::before {
        width: calc(6.5rem + 1rem - 2.4rem);
    }

    .all-screens:before {
        background-image: url('../images/t-khaadi-bg-left-768x1024.png');
        background-size: 45%;
    }

    .all-screens:after {
        background-image: url('../images/t-khaadi-bg-right-768x1024.png');
        background-size: 55%;
    }

    footer {
        bottom: 20%;
    }
}

@media (min-width:820px) and (max-width:821px) {
    .content-sec {
        height: calc(100% - 385px) !important;
    }
}

@media (min-width:1024px) and (max-width:1024px) {
    .content-sec {
        height: calc(100% - 385px) !important;
    }
}

@media (min-width:1668px) and (max-width:1668px) and (orientation: portrait) {
    .content-sec {
        height: calc(100% - 385px) !important;
    }
    .screens-bg .main-logo {
        width: 65%;
    }

    .main-logo {
        width: 60%;
    }

    .main-header .container .row {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .main-header .container .row .col-6.col-lg-4 {
        width: 38%;
    }

    .main-header .container .row .col-6.col-lg-8 {
        width: 62%;
    }

    .main-header .navigation li {
        padding: 0 18px;
    }

    .main-header .navigation li a {
        font-size: 13px;
        line-height: 13px;
    }

    .content-sec .col-12.col-lg-9,
    .vid-sec .col-12.col-lg-9,
    .getstart-sec .col-12.col-lg-9 {
        width: 80%;
    }

    .getstart-sec,
    .content-sec {
        height: calc(100% - 185px);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content-sec,
    .vid-sec,
    .getstart-sec {
        margin-top: 36px;
    }

    .verticle-btns-list-one a,
    .verticle-btns-list-two a {
        padding: 24px 24px;
        font-size: 14px;
        line-height: 14px;
        width: 50%;
    }

    .horizontal-btns-list-one a,
    .horizontal-btns-list-two a {
        font-size: 14px;
        line-height: 14px;
        width: 45%;
    }

    .left-product #image-text img {
        float: none;
        width: 55%;
        margin: 0 auto 22px;
    }

    .finish {
        width: calc(100% - 110px);
    }

    #steps_sec {
        bottom: 28%;
    }

    .step-content {
        width: 6rem;
        min-width: 6rem;
        max-width: 6rem;
    }

    .step-circle::before {
        width: calc(6.5rem + 1rem - 2.4rem);
    }

    .all-screens:before {
        background-image: url('../images/t-khaadi-bg-left-768x1024.png');
        background-size: 45%;
    }

    .all-screens:after {
        background-image: url('../images/t-khaadi-bg-right-768x1024.png');
        background-size: 55%;
    }

    footer {
        bottom: 20%;
    }
}

@media (min-width:930px) and (max-width:931px) {

    .content-sec {
        height: calc(100% - 385px) !important;
    }
    .screens-bg .main-logo {
        width: 65%;
    }

    .main-logo {
        width: 60%;
    }

    .main-header .container .row {
        margin-right: 1.5rem;
        margin-left: 1.5rem;
    }

    .main-header .container .row .col-6.col-lg-4 {
        width: 38%;
    }

    .main-header .container .row .col-6.col-lg-8 {
        width: 62%;
    }

    .main-header .navigation li {
        padding: 0 18px;
    }

    .main-header .navigation li a {
        font-size: 13px;
        line-height: 13px;
    }

    .content-sec .col-12.col-lg-9,
    .vid-sec .col-12.col-lg-9,
    .getstart-sec .col-12.col-lg-9 {
        width: 80%;
    }

    .getstart-sec,
    .content-sec {
        height: calc(100% - 185px);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content-sec,
    .vid-sec,
    .getstart-sec {
        margin-top: 36px;
    }

    .verticle-btns-list-one a,
    .verticle-btns-list-two a {
        padding: 24px 24px;
        font-size: 14px;
        line-height: 14px;
        width: 50%;
    }

    .horizontal-btns-list-one a,
    .horizontal-btns-list-two a {
        font-size: 14px;
        line-height: 14px;
        width: 45%;
    }

    .left-product #image-text img {
        float: none;
        width: 55%;
        margin: 0 auto 22px;
    }

    .finish {
        width: calc(100% - 110px);
    }

    #steps_sec {
        bottom: 28%;
    }

    .step-content {
        width: 6rem;
        min-width: 6rem;
        max-width: 6rem;
    }

    .step-circle::before {
        width: calc(6.5rem + 1rem - 2.4rem);
    }

    .all-screens:before {
        background-image: url('../images/t-khaadi-bg-left-768x1024.png');
        background-size: 45%;
    }

    .all-screens:after {
        background-image: url('../images/t-khaadi-bg-right-768x1024.png');
        background-size: 55%;
    }

    footer {
        bottom: 20%;
    }
}


@media only screen and (min-device-width: 820px) and (max-device-width: 1180px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    .content-box h1 {
        font-size: 62px;
        line-height: 62px;
    }

    .content-box .single-btn a {
        padding: 26px 50px;
        font-size: 18px;
        line-height: 18px;
    }

    .verticle-btns-list-one a,
    .verticle-btns-list-two a,
    .horizontal-btns-list-one a,
    .horizontal-btns-list-two a {
        padding: 24px 24px;
        font-size: 16px;
        line-height: 16px;
    }

    .step-circle::before {
        width: calc(9.5rem + 1rem - 3.4rem);
    }

    .step-content {
        width: 8rem;
        min-width: 8rem;
        max-width: 8rem;
    }

    .content-box .single-btn a {
        padding: 18px 56px;
        font-size: 18px;
        line-height: 18px;
        margin: 16px 0 0 0;
    }

    .finish {
        width: 65%;
    }

    footer {
        bottom: 14%;
    }
}

@media (min-width:767px) and (max-width:768px) {
    .all-screens:before {
        background-image: url('../images/t-khaadi-bg-left-768x1024.png');
    }

    .all-screens:after {
        background-image: url('../images/t-khaadi-bg-right-768x1024.png');
    }

    .main-header .container {
        max-width: 594px;
    }

    .main-logo {
        display: inline-block;
        width: 70% !important;
    }

    .main-header .container .row .col-6.col-lg-8 {
        width: 70%;
    }

    .main-header .navigation li {
        padding: 0 6px;
    }

    .main-header .navigation li a {
        font-size: 12px;
        line-height: 12px;
    }

    .screens-bg {
        height: 100vh;
    }

    .main-header .container .row .col-6.col-lg-4 {
        width: 30%;
    }

    .vid-sec .col-12.col-lg-9 {
        width: 75%;
    }

    .vid-sec iframe {
        height: 600px;
    }

    .content-box h1 {
        font-size: 40px;
        line-height: 40px;
        padding: 0 36px;
    }

    .content-box .single-btn a {
        padding: 20px 60px;
        font-size: 16px;
        line-height: 16px;
    }

    .verticle-btns-list-one a,
    .verticle-btns-list-two a {
        padding: 28px 40px;
        font-size: 16px;
        line-height: 16px;
        width: 44%;
    }

    .horizontal-btns-list-one,
    .horizontal-btns-list-two {
        flex-flow: column;
        /* margin: 20px 0 0 0; */
    }

    .horizontal-btns-list-one a,
    .horizontal-btns-list-two a {
        padding: 28px 40px;
        margin: 0 auto 16px;
        font-size: 16px;
        line-height: 16px;
    }

    #steps_sec {
        bottom: 20%;
    }

    .steps {
        margin: 0 0 35px 0;
    }

    .step-content {
        width: 6rem;
        min-width: 6rem;
        max-width: 6rem;
    }

    .step-circle::before {
        width: calc(6.5rem + 1rem - 2.4rem);
    }

    .left-product #image-text img {
        float: none;
        width: 30%;
        margin: 0 auto 22px;
    }

    .right-selection h5 {
        font-size: 30px;
        line-height: 30px;
        text-align: center;
    }

    .right-selection .list-wrap .select-txt span {
        border-radius: 20px;
        padding: 6px 6px;
        font-size: 16px;
        line-height: 16px;
    }

    .right-selection .ul-list li a {
        font-size: 16px;
        line-height: 16px;
    }

    .right-selection .ul-list {
        height: 135px;
    }

    .finish {
        width: 63%;
    }

    footer {
        padding: 12px 0 0 0;
        margin: 0;
        bottom: 160px;
        width: 44%;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 2) and (orientation: landscape) {
    .content-box .col-12.col-lg-6.col-md-8 {
        width: 50%;
    }

    .main-header {
        padding: 36px 0 30px 0;
    }

    .main-logo {
        width: 65%;
    }

    .main-header .container {
        max-width: 850px;
    }

    .main-header .navigation li {
        padding: 0 20px;
    }

    .screens-bg .main-logo {
        width: 50%;
    }

    .vid-sec iframe {
        height: 400px;
    }

    .content-box h1 {
        font-size: 50px;
        line-height: 50px;
    }

    .content-box .single-btn {
        margin: 30px 0 0 0;
    }

    .content-box .single-btn a {
        padding: 28px 50px;
    }

    .verticle-btns-list-one,
    .verticle-btns-list-two,
    .horizontal-btns-list-one,
    .horizontal-btns-list-two {
        margin: 20px 0 0 0;
    }

    .verticle-btns-list-one a,
    .verticle-btns-list-two a {
        padding: 28px 14px;
        margin: 0 auto 16px;
        font-size: 18px;
        line-height: 18px;
        width: 55%;
    }

    .horizontal-btns-list-one a,
    .horizontal-btns-list-two a {
        padding: 28px 14px;
        width: 46%;
    }

    .step-circle::before {
        width: calc(6.5rem + 1rem - 2.4rem);
    }

    .step-content {
        width: 6rem;
        min-width: 6rem;
        max-width: 6rem;
    }

    #steps_sec {
        bottom: 20%;
    }

    .steps-sec {
        margin: 20px 0 0 0;
    }

    .left-product #image-text img {
        width: 50%;
    }

    .right-selection .ul-list {
        height: 100px;
        margin: 12px 0 0 0;
    }

    .right-selection .list-wrap .select-txt span {
        padding: 8px 8px;
        font-size: 16px;
        line-height: 16px;
    }

    .right-selection .ul-list li a {
        font-size: 16px;
        line-height: 16px;
    }

    .content-box .single-btn .next {
        padding: 16px 70px;
    }

    .finish {
        margin: 20px auto 0;
        width: 65%;
    }
    footer {
        bottom:8%;
    }
}

@media (min-device-width: 1023px) and (max-device-width: 1024px) and (orientation: landscape) {
    .all-screens:before {
        background-image: url(../images/t-khaadi-bg-left-1024x1366.png);
        background-size: auto 768px;
        background-position: top left;
    }

    .all-screens:after {
        background-image: url(../images/t-khaadi-bg-right-1024x1366.png);
        background-size: auto 768px;
    }
}



.video-container {
    /* width is set as 100% here. any width can be specified as per requirement */
    width: 100%;
    padding-top: 56.25%;
    height: 0px;
    position: relative;
}

.video-js {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}


@media only screen and (min-device-width: 768px) and (max-device-width: 768px) and (orientation: landscape) {
    .content-sec {
        height: calc(100% - 285px);
    }
}



@media (max-width:767px) {
    header {padding-top: 50px;}
    header .col-6.col-lg-4 {width: 100%; text-align: center;}
    header .col-6.col-lg-8 {width: 100%;}
    .main-header .navigation {padding-top: 25px; float: none; margin: 0 auto; width: 91%;}
    .main-header .navigation li {padding: 0 12px;}
    .main-header .navigation li a {font-size: 13px; line-height: 13px;font-family: 'Khaadi';}

    .screens-bg .main-logo {width: 70%;}

    .vid-sec {display: flex; justify-content: center; align-items: center; height: calc(100% - 110px); text-align: center;}
    .getstart-sec, .content-sec {height: calc(100% - 110px) !important;}

    .verticle-btns-list-one a, .verticle-btns-list-two a {width: 80%;}

    .step-content {width: 2rem; min-width: 2rem; max-width: 2rem;}
    .step-circle::before {width: calc(2.5rem + 1rem - 2.4rem);}

    .content-box h1 {font-size: 35px; line-height: 35px;}

    .left-product #image-text img {width: 35%; float: none; margin:0 auto;}
    .right-selection h5 {text-align: center;}
    .right-selection h5 {font-size: 18px; line-height: 18px;}
    .right-selection .ul-list {height: 100px;}

    .finish {margin: 25px auto;width: calc(100% - 20px);}
    .finish .form-check {display: flex;}
    .finish #chk_check {width: 25px; height: 25px; margin-right: 10px;}
    .finish .chbox {font-size: 15px; line-height: 33px;}
    footer {bottom: 30px; left: 0%; right: 0; transform: translate(-0%, 0%); width: 85%; margin: 0 auto;}

    .all-screens:before {background-size: 30%;}
    .all-screens:after {background-size: 30%; transform: scaleY(-1);}
}