/* Fonts code to be added here */

/* End of fonts */

/** color codes
    #272727
    #2a559e
    #868280 
**/

/* Global Code */
html{
    box-sizing: border-box;
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body{
    width: 100dvw;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
    font-weight: 400;
    font-family: "Montserrat", Helvetica, Arial, sans-serif;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

/* header css to be added in this space */
.header {
    width: 100%;
    height: 100dvh;
    background-image: url(/assets/LAUNCH-website-cover-003-copy.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
}


.navbar {
    width: 100%;
    text-align: center;
    position: relative;
    padding-top: 8rem;
}

#menu-bar {
    display: none;
}

.hide {
    display: none;
}

.show {
    display: none;
}

.logo {
    /* width: 80px; */
    cursor: pointer;
    object-fit: contain;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.logo h1 {
    color: #fff;
    font-size: 5rem;
}

.logoImg {
    padding-right: 2rem;
}

.banner {
    display: none;
}

.navList {
    list-style: none;
    float: left;
    /* margin: 0; */
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    padding: 1.5rem 0;
    background-color: #282727;
}

.navItem {
    padding: 0 1rem;
}

.navLink {
    text-decoration: none;
    color: #2a559e;
    font-size: 2rem;
}

.navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 1s;
    z-index: 10000;
}

.navbar.sticky .logo {
    padding-left: 2rem;
}

.navbar.sticky .logoImg {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.navbar.sticky .banner {
    display: initial;
}

.navbar.sticky .herobanner {
    display: none;
}

.navbar.sticky .logo h1 {
    display: none;
}

.navbar.sticky .navList {
    width: 50%;
    background-color: transparent;
    margin: .5rem;
}

.navbar.sticky .navLink {
    color: #282727
}


.hero {
    width: 100%;
    height: 70dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heroHeading {
    font-size: 4rem;
    color: #fff;
}

.heroParagraph {
    width: 60%;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.8;
    text-align: center;
}

.ctaHero {
    padding: 3rem 0;
    background-color: transparent;
    border: none;
}

.ctaHeroLink {
    padding: 1rem 3rem;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(to right, rgba(43,148,229,1) 0%,rgba(30,87,153,1) 100%);
    border-radius: 20px;
    /* box-shadow: 2px 5px 10px #7075dd; */
    font-size: 2.5rem;
}
/* end of header css */

main {
    width: 100%;
    min-height: 80dvh;
    padding: 0;
}

.aboutUsSection {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 4rem 0;
    row-gap: 4rem;
}

.aboutUs-Col1 {
    width: 45%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 3rem;
}

.aboutUs-Col2 {
    width: 45%;
}

.aboutUs-colTab {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.aboutUs-Col2-tabs {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    position: sticky;
    top: 250px;
}

.tab {
    width: 100%;
    padding: 1rem 2rem;
    border: 1px solid #000;
    border-radius: 10px;
    font-size: 2rem;
    box-shadow: 1px 5px 10px #000;
}

.active {
    background: linear-gradient(to right, rgba(43,148,229,1) 0%,rgba(30,87,153,1) 100%);
    color: #fff;
    box-shadow: 7px 7px 20px #000;
    z-index: 1;
}

.hideContent {
    display: none;
}

.aboutUs-Col2-heading {
    font-size: 4rem;
}

.aboutUs-Col2-paragraph {
    font-size: 2rem;
    line-height: 1.4;
}

.aboutUs-Col2-paragraph li {
    padding: 1rem 0;
}
/* end of about section */

/* start of service section */
.serviceSection {
    background-color: #282727;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    column-gap: 5%;
    padding: 4rem 5rem 10rem 5rem;
    row-gap: 10rem;
    min-height: 800px;
    /* color: #eee; */
}

.serviceSectionHeading {
    width: 100%;
    font-size: 4rem;
    text-align: center;
    margin-bottom: -5rem;
    color: #fff;
}

.serviceBlock {
   width: 300px;
    height: 400px;
    position: relative;
}

.card {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: all 0.5s ease;
}

.card:hover {
    transform: rotateY(180deg);
}

.serviceBlockFront {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    padding: 2rem;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border: 1px solid #000;
    box-shadow: 1px 10px 20px #000;
    background-color: #eee;
    transform: translateX(-40px);
}

.serviceBlockBack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 2rem;
    background-color: #eee;
    border: 1px solid #000;
    box-shadow: 1px 10px 20px #000;
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform: rotateY(180deg);
    overflow-y: scroll;
}

.serviceHeading {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 0;
    color: #2a559e;
}

.serviceInfo,
.serviceInfo-list {
    font-size: 2rem;
    line-height: 1.4;
    text-align: center;
}

.serviceInfo-list {
    text-align: left;
}

.serviceInfo-list li {
    padding: .5rem 0;
    font-size: 1.8rem;
}

.readmore {
    width: 80%;
    font-size: 4rem;
    text-align: right;
}
/* end of service section */

/* .filler {
    background-image: url(/LauchpadBusinessAdvisory/assets/Launchpad-filler-banner.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    min-height: 100px;
} */

.fillerImg {
    width: 100dvw;
    height: 400px;
    object-fit: cover;
}

/* start of contact section */
.contactSection {
    background-color: #313131;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding-bottom: 5rem;
}

.contactSectionHeading {
    width: 100%;
    text-align: center;
    font-size: 4rem;
    color: #fff;
}

.formBlock,
.contactBlock {
    width: 45%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form {
    background-color: #eee;
    border-radius: 10px;
    border: 1px solid #000;
    box-shadow: 2px 5px 10px #000;
    width: 80%;
    padding-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 2rem;
}

.formHeading {
    font-size: 3rem;
    color: #2a559e;
}

.form-input {
    width: 70%;
    font-size: 2rem;
    padding: 1rem;
}

.submitCTA {
    width: 50%;
    background: linear-gradient(to right, rgba(43,148,229,1) 0%,rgba(30,87,153,1) 100%);
    padding: 1rem 0;
    border-radius: 10px;
    box-shadow: 5px 5px 10px #000;
    color: #fff;
}

.contactRow {
    background-color: #eee;
    width: 70%;
    margin: 3rem 0;
    padding: 4rem 3rem;
    border-radius: 10px;
    border: 1px solid #000;
    box-shadow: 2px 5px 10px #000;
}

.row {
    display: flex;
    align-items: center;
    column-gap: 10%;
}

.contactRowLink {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #000;
    font-size: 2rem;
}

.contactRowIcon {
    padding-right: 1rem;
}

.contactRowHeading {
    margin-top: 0;
    font-size: 2rem;
    color: #2a559e;
}
/* end of contact section */

/* footer css to be added in this space */
.footer {
    background-color: #191616;
}

.footer-info {
    color: #fff;
    width: 100%;
}

.rightAlign {
    text-align: right;
}

.footer-list {
    width: 50%;
    list-style: none;
    float: left;
    padding: 0;
}

.footer-list-item {
    padding: 1rem 0;
}

.footer-list-link {
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.contact-icon {
    padding-right: 1rem;
}

.footer-row2 {
    background-color: #191616;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 4rem;
}

.socialBlock {
    width: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 20%;
}

.vitaLink {
    color: rgba(255, 119, 0, 0.712);
    text-decoration: none;
}
/* end of footer css */

@media (1701px < width) {
    .navbar {
        height: 400px;
        padding-top: 8rem;
    }

    .logo h1 {
        font-size: 10rem;
    }

    .navbar.sticky {
        height: 70px;
    }
}

/* responsive1 */
@media (max-width:1700px) {
    .serviceSection {
        column-gap: 6%;
    }
}

/* responsive4 */
@media (max-width:1249px) {
    .logo h1 {
        font-size: 4rem;
    }

    .serviceSection {
        column-gap: 2%;
    }

    .serviceBlock {
        width: 300px;
        height: 400px;
     }

    .serviceHeading {
        font-size: 2.5rem;
    }

    .serviceInfo,
    .serviceInfo-list {
        font-size: 1.8rem;
    }
}

/* responsive5 */
@media (max-width: 1024px) {
    .header {
        width: 100%;
        height: 60dvh;
    }

    .navbar {
        padding-top: 6rem;
    }

    .aboutUsSection {
        flex-direction: column;
        align-items: center;
    }

    .aboutUs-Col1 {
        width: 90%;
        padding-top: 0;
    }
    
    .aboutUs-Col2 {
        width: 90%;
    }

    .aboutUs-colTab {
        width: 90%;
    }
    
    .aboutUs-Col2-tabs {
        width: 100%;
        flex-direction: row;
    }
    
    .tab {
        width: 20%;
    }

    .serviceSection {
        column-gap: 5%;
        padding: 4rem 1rem 10rem 1rem;
    }
}

/* responsive6 */
@media (max-width:911px) {
    .header {
        width: 100%;
        height: 100dvh;
    }

    .logo h1 {
        width: 70%;
    }

    .serviceSection {
        column-gap: 2%;
    }
    
    .formBlock,
    .contactBlock {
        width: 90%;
    }
    
    .contactRow {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .row {
        justify-content: center;
        column-gap: 80%;
    }
}

/* responsive7 */
@media (max-width:768px) {
    .logo h1 {
        font-size: 3rem;
        width: 50%;
    }

    .aboutUs-colTab {
        width: 95%;
    }

    .tab {
        width: 24%;
    }

    .heroHeading {
        font-size: 3rem;
        text-align: center;
    }

    .serviceSection {
        column-gap: 5%;
    }

    .serviceBlock {
        width: 500px;
    }
}

/* responsive8 */
@media (max-width:639px) {
    .navbar {
        padding-top: 4rem;
    }

    .show {
        display: initial;
        padding-right: 4rem;
    }

    .navbar.sticky .navList {
        display: none;
    }

    #menu-bar:checked ~ .navList {
        width: 100%;
        display: initial;
        position: absolute;
        background-color: #eee;
        top: 45px;
        right: 0;
    }

    .navbar.sticky .navItem {
        padding: 1rem 0;
    }

    .serviceBlock {
        width: 300px;
        height: 400px;
    }


}

/* responsive9 */
@media (max-width:430px) {
    .header {
        height: 100dvh;
        padding: .5rem;
    }
    
    .logo h1 {
        font-size: 2.5rem;
    }

    .navLink {
        font-size: 1.4rem;
        text-shadow: .05px .05px .5px #fff;
    }

    .hero {
        height: 70svh;
    }
    
    .heroHeading {
        font-size: 2rem;
    }
    
    .heroParagraph {
        width: 80%;
        font-size: 1.6rem;
    }

    .aboutUs-Col1-video {
        width: 420px;
        height: 170px;
    }

    .aboutUs-Col2-heading {
        font-size: 3rem;
        text-align: center;
    }

    .aboutUs-Col2-paragraph {
        width: 100%;
        text-align: center;
        font-size: 1.4rem;
    }

    .list {
        width: 90%;
        float: left;
        text-align: left;
    }

    .aboutUs-Col2-tabs {
        width: 90%;
        flex-direction: column;
    }

    .tab {
        width: 80%;
    }

    .serviceSectionHeading {
        font-size: 3rem;
    }
    
    .serviceBlock {
        width: 220px;
        height: 400px;
        padding-left: 2rem;
    }

    .serviceHeading {
        font-size: 2.5rem;
    }

    .serviceInfo,
    .serviceInfo-list li {
        font-size: 1.4rem;
    }

    .contactSectionHeading {
        font-size: 3rem;
    }

    .contactSection {
        padding-bottom: 1rem;
    }

    .formBlock,
    .contactBlock {
        width: 100%;
    }

    .form {
        width: 100%;
    }

    .formHeading {
        font-size: 2.5rem;
    }

    .contactRow {
        width: 80%;
    }

    .footer-row2 {
        flex-direction: column;
        row-gap: 2rem;
    }

    .footer-info {
        font-size: 1.2rem;
        text-align: center;
    }

    .rightAlign {
        text-align: center;
    }
}