:root {
    --dark-purple: rgba(44, 39, 66, 1);
    --light-purple: rgba(74, 65, 111, 1);
    --lighter-purple: rgba(111, 99, 168, 1);
    --light-grey: rgba(167, 167, 167, 1);
    --lighter-grey: rgba(190, 190, 190, 0.71);
    --transparent-grey: rgba(151, 151, 151, 0.4);
}

/* ::selection {
    background-color: grey;
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: var(--dark-purple);
}

::-webkit-scrollbar-thumb {
    width: 6px;
    height: 10px;
    background-color: var(--lighter-purple);
} */

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

.fs-7 {
    font-size: .90rem;
}

/* Header Section - Starts */

#header-container {
    width: 80%;
    z-index: 10;
}

#header-container nav {
    background-color: var(--transparent-grey);
    backdrop-filter: blur(10px);
    position: relative;
}

#header-container nav .header-title > span:first-child {
    padding: 0 .2rem;
    background-color: var(--dark-purple);
    color: white;
    font-size: 20px;
}

#header-container nav .header-title > div > span:first-child {
    color: white;
    font-size: 20px;
}

#header-container nav .header-title > div > span:last-child {
    color: rgba(177, 159, 255, 1);
    font-size: 20px;
}

#header-container nav .header-main > a, #header-container nav > #sidebar a {
    text-decoration: none;
    color: white;
}

#header-container nav > #sidebar a {
    color: white;
}

#sidebar {
    width: 75%;
    height: 100vh;
    background-color: rgba(151, 151, 151, .9);
    top: -20px;
    right: -10px;
}

/* Header Section - Ends */

/* Main Section  - Starts*/

#mainContainer {
    padding: 9rem 7rem 10rem;
    background-image: linear-gradient(var(--dark-purple) 54%, var(--lighter-purple))
}

#mainContainer #heroContainer #heroContent #hero-content-1 span {
    padding: 3px 14px;
    font-size: 10px;
    background-color: rgba(225, 234, 238, 1);
    color: rgba(44, 39, 66, 1);
}

#hero-content-2 {
    width: 60%;
    font-size: 34px;
    line-height: 1.3;
}

#hero-content-2 span {
    color: rgba(177, 159, 255, 1);
}

#hero-content-3 div {
    width: 75%;
    text-align: left;
    line-height: 1.1;
    font-size: 14px;
    color: rgba(200, 200, 200, 1);
}

#hero-content-4 {
    font-size: 14px;
}

#hero-content-4 button {
    transition: all ease-in-out .2s;
}

#hero-content-4 button:hover {
    box-shadow: 0 0 10px rgba(255,255,255,.8);
    background-color: rgb(37, 31, 62) !important;
}

#heroImage img {
    width: 380px;
    height: auto;
    transition: transform ease-in-out .5s;
}

#heroImage img:hover {
    transform: scale(1.20)
}

#heroVideo #videoContent {
    padding: 3rem;
    font-size: 24px;
    color: rgba(74, 74, 74, 1);
}

#heroVideo video {
    width: 600px;
    height: auto;
    box-shadow: 0 4px 4px rgba(0,0,0,.2);
    z-index: 1;
    transition: box-shadow ease-in-out .3s;
}

#heroVideo video:hover {
    box-shadow: 0 0 20px rgba(0,0,0,.8);
}

#buildContainer {
    margin: 25rem 0 0 !important;
    padding: 5rem 9rem;
    background-color: rgba(25, 25, 25, 1);
    color: white;
}

#buildContainer #buildImage img {
    transition: box-shadow ease-in-out .3s;
}

#buildContainer #buildImage img:hover {
    box-shadow: 0 0 20px rgba(255,255,255,.2);
}

#buildContainer #buildContent {
    width: 75%;
}

#buildContainer #buildContent #build-content-1 {
    width: 100%;
    font-size: 34px;
    line-height: 1.1;
    text-align: left;
}

#buildContainer #buildContent #build-content-2 {
    font-size: 14px;
}

#stepsContainer {
    margin: 6rem 0 0;
}

#stepsContainer #stepsHeader {
    color: rgba(110, 110, 110, 1);
    font-size: 34px;
}

#stepsContainer #stepsContent {
    width: 80%;
    background-color: rgba(234, 234, 234, 1);
}

#stepsContainer #stepsContent .cardContainer .cardNumber{
    color: rgba(171, 162, 255, 1);
    font-size: 34px;
    transition: color ease-in-out .2s;
}

#stepsContainer #stepsContent .cardContainer:hover .cardNumber{
    color: var(--light-purple);
}

#stepsContainer #stepsContent .cardContainer .cardHeader{
    font-size: 18px;
}

#stepsContainer #stepsContent .cardContainer .cardContent{
    font-size: 14px;
    color: rgba(113, 113, 113, 1);
}

#whyChooseContainer {
    margin: 8rem 0 0;
}

#whyChooseContainer #whyChooseMainContent {
    width: 75%;
}

#whyChooseContainer #whyChooseHeader {
    width: 75%;
}

#whyChooseContainer #whyChooseHeader .why-choose-header {
    font-size: 34px;
    color: rgba(110, 110, 110, 1);
}

#whyChooseContainer #whyChooseContent > div {
    padding: 1rem 0 5rem; 
}

#whyChooseContainer #whyChooseContent {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    height: 350px;
}

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

#whyChooseContainer button {
    font-size: 15px;
    background-color: white;
    border: 1px solid black;
    color: black;
    white-space: nowrap;
}

#whyChooseContainer button.active {
    background-color: black;
    color: white;
}

#whyChooseContainer .whyChooseItem {
    width: 80%;
}

#whyChooseContainer .whyChooseItem .itemContent .itemHeader {
    color: rgba(120, 111, 202, 1);
    font-size: 15px;
}

#whyChooseContainer .whyChooseItem .itemContent .itemContent1 {
    width: 80%;
    font-size: 20px;
    line-height: 1.1;
}

#whyChooseContainer .whyChooseItem .itemContent .itemContent2 {
    width: 80%;
    font-size: 16px;
    color: rgba(110, 110, 110, 1);
    line-height: 1.1;
}

#whyChooseContainer .imgContainer {
    width: 45%;
    aspect-ratio: 4 / 3;
    flex-shrink: 0;
    overflow: hidden;
    transition: box-shadow ease-in-out .2s, width ease-in-out .2s, border-radius ease-in-out .2s;
}

#whyChooseContainer .imgContainer:hover {
    box-shadow: 1px 1px 15px rgba(0, 0, 0, .2);
    /* transform: scale(1.10); */
    width: 50%;
    border-radius: 4px;
}

#whyChooseContainer .imgContainer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#controlContainer {
    margin: 8rem 0 0;
}

#controlContainer #controlContent {
    width: 80%;
    background-color: rgba(44, 39, 66, 1);
}

#controlContainer #controlContent #control-content-1 {
    width: 90%;
    font-size: 34px;
    color: white;
}

#controlContainer #controlContent #control-content-2 {
    width: 50%;
    color: rgba(191, 191, 191, 1);
}

#controlContainer button {
    transition: all ease-in-out .2s;
}

#controlContainer button:hover {
    box-shadow: 0 0 10px rgba(255,255,255,.8);
    background-color: rgb(37, 31, 62) !important;
}


/* Main Section - Ends */

/* Footer Section - Starts */


#footerContainer {
    margin: 6rem 0 0;
    background-color: rgba(228, 228, 228, 1);
}

#footerContainer #footerContent {
    width: 80%;
}

#footer-card-1 #footerHeading > span {
    background-color: rgba(44, 39, 66, 1);
    color: white;
    font-size: 24px;
}

#footer-card-1 #footerHeading > div span {
    font-size: 24px;
    height: 100%;
}

#footer-card-1 #footerContent {
    font-size: 13px;
    color: rgba(63, 61, 61, 1);
    line-height: 1.1;
}

#footer-card-1 .footerHeading {
    font-size: 15px;
}

#footer-card-1 .footerContent {
    font-size: 14px;
    color: rgba(119, 119, 119, 1);
}

#footer-card-1 .footerContent div {
    cursor: default;
    transition: all ease-in-out .3s;
}

#footer-card-1 .footerContent div:hover {
    font-size: 14px;
    color: var(--light-purple);
}

#footer-card-2 .footer-card-2-content {
    font-size: 12px;
    width: 100%;
}

#footerContainer #footer-card-2 > div:last-child {
    white-space: nowrap;
}


/* Footer Section - Ends */

/* Responsive - Starts */

@media (max-width: 1199px) {
    #footerContainer #footerContent {
        width: 90%;
    }

    #footerContainer #footer-card-1 {
        width: 100%;
    }

    #footerContainer #footer-card-2 {
        width: 60%;
    }

    #footerContainer #footer-card-2 > div {
        width: 100%;
    }

    #footer-card-2 .footer-card-2-content {
        width: auto;
    }
}

@media (max-width: 1024px) {
    #mainContainer {
        padding: 9rem 5rem 10rem;
    }

    #hero-content-2 {
        width: 100%;
    }

    #hero-content-3 div {
        width: 100%;
    }

    #buildContainer {
        margin: 22rem 0 0 !important;
        padding: 5rem 4rem;
    }

    #buildContainer #buildContent {
        width: 100%;
    }

    #buildContainer #buildContent #build-content-1 {
        width: 100%;
    }

    #stepsContainer #stepsContent {
        width: 85%;
    }
    
    #controlContainer #controlContent #control-content-2 {
        width: 80%;
    }

    #whyChooseContainer #whyChooseHeader {
        width: 80%;
    }
    
    #whyChooseContainer button {
        font-size: 12px;
    }

    #whyChooseContainer #whyChooseMainContent {
        width: 90%;
    }

    #whyChooseContainer #whyChooseHeader .why-choose-header {
        font-size: 24px;
    }
}

@media (max-width:767px) {
    #mainContainer {
        padding: 7rem 2rem;
    }

    #header-container {
        width: 96%;
    }

    #heroImage img {
        width: 380px;
        height: auto;
    }

    #heroVideo video {
        width: 380px;
    }

    #heroVideo #videoContent {
        padding: 1rem .8rem;
        font-size: 18px;
    }

    #buildContainer {
        margin: 16rem 0 0 !important;
        padding: 5rem 2rem;
    }

    #buildContainer #buildContent #build-content-1 {
        text-align: center;
        font-size: 24px;
    }

    #buildContainer #buildContent #build-content-2 {
        width: 70%;
    }

    #buildImage img {
        width: 380px;
        height: auto;
    }

    #stepsContainer #stepsContent {
        width: 90%;
    }

    #stepsContainer #stepsHeader{
        font-size: 24px;
    }

    #stepsContainer #stepsContent .cardContainer .cardNumber{
        font-size: 24px;
    }

    #stepsContainer #stepsContent .cardContainer .cardHeader{
        font-size: 16px;
    }

    #stepsContainer #stepsContent .cardContainer .cardContent{
        font-size: 12px;
    }

    #whyChooseContainer #whyChooseHeader {
        width: 90%;
    }

    #whyChooseContainer .imgContainer {
        width: 50%;
    }

    #whyChooseContainer .whyChooseItem .itemContent .itemHeader {
        font-size: 12px;
    }

    #whyChooseContainer .whyChooseItem .itemContent .itemContent1 {
        width: 100%;
        font-size: 18px;
    }

    #whyChooseContainer .whyChooseItem .itemContent .itemContent2 {
        width: 100%;
        font-size: 14px;
    }
    
    #controlContainer #controlContent #control-content-1 {
        width: 100%;
        font-size: 24px;
        line-height: 1.1;
    }

    #controlContainer #controlContent #control-content-2 {
        width: 80%;
        font-size: 12px;
    }

    #footerContainer #footer-card-2 {
        width: 100%;
    }

    #footerContainer #footer-card-2 > div:last-child {
        white-space: wrap;
    }
}

@media (max-width: 576px) {
    #whyChooseContainer .imgContainer {
        width: 80%;
    }

    #whyChooseContainer .imgContainer:hover {
        width: 100%;
    }

    #heroImage img:hover {
        transform: scale(1.10)
    }
}

@media (max-width:425px) {
    #mainContainer {
        padding: 7rem 2rem 5rem;
    }
    
    #heroImage img {
        width: 280px;
        height: auto;
    }

    #heroVideo video {
        width: 280px;
    }

    #heroVideo #videoContent {
        padding: .8rem .2rem;
        font-size: 14px;
    }

    #buildContainer {
        margin: 12rem 0 0 !important;
    }
    
    #buildContainer #buildContent #build-content-2 {
        width: 100%;
    }

    #buildImage img {
        width: 280px;
        height: auto;
    }

    #stepsContainer {
        margin: 4rem 0 0;
    }

    #whyChooseContainer #whyChooseHeader {
        width: 100%;
    }

    #whyChooseContainer button {
        font-size: 10px;
    }
}