* {
    box-sizing: border-box; 
    margin: 0px;
    padding: 0px;
 }
 
 html {
     scroll-behavior: smooth;
 }

body {
    background-color: #6ccbf1;
    /* background-image: url("/img/Homepage_BG.jpg"); */
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom center;
    background-size: cover;
    color: #0c244a;
    /* color: #3b3b3b; */
}





/* For desktop: */
@media only screen and (min-width: 992px) {

nav {
    position: fixed;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    height: auto;
    padding: 15px;
    background-color: #a3e7ff;
    box-shadow: 0px 5px 5px rgba(0,0,0,0.4);
    z-index: 1000;
}

nav a {
    text-decoration: none;
    color: #16507d;
    /* color: #082f4d; */
	font-family: Noteworthy;
    padding: 5px 8px;
    border-radius: 10px;
    margin-right: 10px;
    transition: all .25s;
    font-size: 30px;
}

nav a:hover {
    background-color: rgba(0, 81, 133, 0.5);;
    color: #a3e7ff;
}

nav .active {
    background-color: rgba(250, 250, 250, 1);
    color: #005185;
}

section {
    max-width: 1920px;
    max-height: 1080px;
    width: 100%;
    height: auto;
    background-color: rgba(250, 250, 250, 1);
    font-family: jaf-domus, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    padding: 25px;
}

p {
    margin: 15px 0px;
}

h1 {
    font-family: "jaf-domus", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 55px;
    /* color: #0d2448; */
    color: #16507d;
    margin: 0px;
    text-align: center;
}

h2 {
    font-family: "jaf-domus", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 35px;
    /* color: #0d2448; */
    color: #1f427a;
    margin: 0px;
    text-align: center;
}

#intro {
    text-align: center;
}

.caseStudyGrid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
}

.caseStudyContent {
    width: 45%;
    height: auto;
    margin: 5px;
    border-radius: 25px;
    text-align: center;
    /* background-color: rebeccapurple; */
}

.caseStudyContent img {
    width: 45%;
    height: auto;
}

.AboutDesc {
    width: 75%;
    height: auto;
    margin: 0 auto;
}

.caseStudyLiveProject {
    width: 50%;
    height: auto;
    background-color: #a3e7ff;
    border-radius: 25px;
    padding: 10px;
    margin: 0 auto;
}

.caseStudyLiveProject a:link {
    /* background-color: rgba(0, 81, 133, 0.5); */
    color: #0c244a;
    text-decoration: none;
}

.caseStudyLiveProject a:active{
    /* background-color: rgba(0, 81, 133, 0.5); */
    color: #0c244a;
    text-decoration: none;
}

.caseStudyLiveProject a:visited {
    /* background-color: rgba(0, 81, 133, 0.5); */
    color: #0c244a;
    text-decoration: none;
}

.caseStudyLiveProject a:hover {
    color: #000;
}

#ARdemo {
    width: 45%;
    height: auto;
    margin: 5px;
    border-radius: 25px;
    text-align: center;
    /* background-color: rebeccapurple; */
}

#ARdemo img {
    width: 45%;
    height: auto;
}

#caseStudyProcess {
    text-align: center;
}

#caseStudyProcess img {
    width: 35%;
    height: auto;
}

#case100W {
    text-align: center;
}

#case100W img {
    width: 100%;
    height: auto;
}

.caseStudyTools {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 25px auto;

}

.caseStudyTools img {
    width: 15%;
    height: auto;
    margin: 5px;
}

} /* Closing for desktop query - DO NOT DELETE */
