:root {
    --main-caseStudyHL-color: #02e3fb;

    --main-fontFamily: "Arial Rounded MT Bold";
    --main-sectionHeadingFontFamily: "Cormorant Garamond", serif;
    --main-forground-color: white;
    --main-backgroundWhite-color: white;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    font-family: var(--main-fontFamily) !important ;
}

main {
    flex: 1 0 auto;
}

h1.title,
.footer-copyright a {
    font-family: "Architects Daughter", cursive;
    text-transform: uppercase;
    font-weight: 900;
}

.h1Element {
    position: absolute;
    width: 100%;
    margin: auto;
    top: 40%;
    margin-left: 5%;
}

/* start welcome animation */

body.welcome {
    background: #040404d9;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
}
/* 
.welcome .splash {
    height: 0px;
    padding: 0px;
    border: 130em solid black;
    position: fixed;
    left: 50%;
    top: 100%;
    display: block;
    box-sizing: initial;
    overflow: hidden;

    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: puff 0.5s 1.8s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards, borderRadius 0.2s 2.3s linear forwards,
        hide 2s 2.3s ease-in-out forwards;
} */

.fadeIn {
    opacity: 0;
    /* animation-delay: 80s; */
    animation: moveIn 2s 3.1s ease forwards, hide1 2s 6s ease-in-out forwards;
}
.fadeIn2 {
    opacity: 0;
    /* animation-delay: 80s; */
    animation: moveIn 2s 6.1s ease forwards;
}
.logoImg {
    opacity: 0;
    z-index: 1;
    animation: moveIn 2.2s 1.8s ease forwards;
}
.welcome #welcome {
    background: var(--main-blue-color);
    width: 56px;
    height: 56px;
    position: absolute;
    left: 50%;
    top: 50%;
    overflow: hidden;
    opacity: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    animation: init 0.5s 0.2s cubic-bezier(0.55, 0.055, 0.675, 0.19) forwards,
        moveDown 1s 0.8s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards,
        moveUp 1s 1.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards,
        materia 0.5s 2.7s cubic-bezier(0.86, 0, 0.07, 1) forwards, hide 2s 2.9s ease forwards;
}

/* moveIn */
.welcome header,
.welcome a.btn {
    opacity: 0;
    animation: moveIn 2s 3.1s ease forwards;
}

@keyframes init {
    0% {
        width: 0px;
        height: 0px;
    }

    100% {
        width: 56px;
        height: 56px;
        margin-top: 0px;
        opacity: 1;
    }
}

@keyframes puff {
    0% {
        top: 100%;
        height: 0px;
        padding: 0px;
    }

    50% {
        top: 50%;
        height: 100%;
        padding: 0px 100%;
    }

    100% {
        top: 50%;
        height: 100%;
        padding: 0px 100%;
        left: 2%;
    }
}

@keyframes borderRadius {
    0% {
        border-radius: 50%;
    }

    100% {
        border-radius: 0px;
    }
}

@keyframes moveDown {
    0% {
        top: 50%;
    }

    50% {
        top: 40%;
    }

    100% {
        top: 100%;
    }
}

@keyframes moveUp {
    0% {
        background: #f77e7e;
        top: 100%;
    }

    50% {
        top: 40%;
    }

    100% {
        top: 50%;
        background: var(--main-blue-color);
    }
}

@keyframes materia {
    0% {
        background: var(--main-blue-color);
    }

    50% {
        background: var(--main-blue-color);
        top: 26px;
    }

    100% {
        background: var(--main-blue-color);
        width: 100%;
        height: 64px;
        border-radius: 0px;
        top: 26px;
    }
}

@keyframes moveIn {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}

@keyframes hide {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}
@keyframes hide1 {
    0% {
        opacity: 1;
        height: 100vh;
    }

    100% {
        opacity: 0;
        height: 0vh;
    }
}

.main {
    margin-left: 160px; /* Same as the width of the sidenav */
    font-size: 28px; /* Increased text to enable scrolling */
    padding: 0px 10px;
}

@media screen and (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }
    .sidenav a {
        font-size: 18px;
    }
}

.fontStyleMainTagline {
    color: var(--main-forground-color);
    font-size: xxx-large;
    font-family: var(--main-sectionHeadingFontFamily);
    width: 50%;
    text-align: center;
    font-weight: bolder;
    top: 30%;
    left: 25%;
    position: absolute;
    margin: auto;
}

.mainEntryDiv {
    height: 100vh;
    width: 100%;
    background-color: #060606d1;
    background-image: url("Img/mainbg.jpeg");
    background-size: cover;
    background-blend-mode: color;
    position: fixed;
    overflow: hidden;
}

/* Add a black background color to the top navigation */
.topnav {
    background-color: #cbdbf2;
    overflow: hidden;
    width: 100vw;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: right;
    color: black;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
    background-color: transparent;
    color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
    background-color: var(--main-backgroundred-color);
    color: var(--main-forground-color);
}

.display {
    display: block;
}
.hide {
    display: none;
}

.tagStyle {
    width: 16%;
    background-color: var(--main-blue-color);
    color: var(--main-forground-color);
    font-weight: bolder;
    padding: 1%;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.descriptionPara {
    padding-left: 2%;
    margin-top: 3%;
    font-weight: bolder;
    font-size: larger;
}

.hideOverLay {
    display: none;
}

.formEle {
    padding: 3%;
    background-color: #d6d4d4 !important;
    border-radius: 5px;
    /* margin: 2%; */
    width: 100%;
}

.caseStudyStyle {
    background-color: #8c8989;
    margin-top: 2%;
    height: 90%;
}

.caseStudyHL {
    color: var(--main-caseStudyHL-color) !important;
    cursor: pointer;
    padding-left: 5px;
}

.descriptionParaHome {
    font-family: "Cormorant Garamond", serif;
    font-size: xxx-large;
    text-align: center;
    color: var(--main-lightRed-color);
    font-weight: 900;
    margin-top: 5%;
}

.descriptionParaMainHome {
    padding-left: 2%;
    margin-left: 5%;
    margin-right: 5%;
    color: var(--main-forground-color);
    font-size: large;
    text-align: justify;
}

.btnClass {
    background-color: var(--main-blue-color) !important;
}

.fontColor {
    color: var(--main-lightRed-color);
}
.sectionHeading {
    color: var(--main-forground-color);
    background-color: var(--main-sectionBG-color);
    font-family: var(--main-fontFamily);
    font-weight: 900;
    height: 100%;
}

/* Footer */

footer {
    background-color: var(--main-blue-color);
}
.container-fluid1 {
    display: flex;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
    font-size: 0.875rem;
    color: var(--main-forground-color);
    flex-direction: row;
    -webkit-box-pack: justify;
    align-items: center;
}

.container-ul {
    display: flex;
    margin: 0;
    padding: 2% 0%;
    list-style-type: none;
    width: 100%;
    justify-content: flex-end;
}

.container-ul li a {
    color: var(--main-forground-color);
}

.caseStudyPU {
    height: 98%;
    overflow-y: scroll;
    overflow-x: hidden;
    /* background-color: var(--main-backgroundWhite-color); */
    background-color: #11100fd9;
}

.caseStudyPU p {
    color: white;
}

.caseStudyPU li {
    color: white;
}
.homeP {
    width: 100%;
    color: var(--main-forground-color);
}
.overlaySplashStyle {
    font-family: sans-serif;
    font-size: 20px;
    color: var(--main-forground-color);
}

.homeScreenDetails {
    height: 98%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #fffefe61;
    background-size: cover;
    background-blend-mode: color;
}

.homescreenDetailsRow {
    padding: 2%;
    padding-left: 0;
    padding-top: 2%;
    padding-bottom: 0%;
    height: auto;
    background-color: #000000cc;
    min-height: 100%;
}

#overLayHome {
    width: 100%;
}

.overlayStyle {
    background-color: #000000ad;
    padding: 2%;
    position: fixed;
    z-index: 100;
    height: 100vh;
    width: 100%;
}

.footerLinks{
    width: 100%;
    display: flex;
    justify-content: center;
}