/* -- // Core */
body {
    user-select: none;
    margin: 0;
    color: white;
    background-color: black;
    font-family: 'Poppins', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

input, textarea, button, select {
    font-family: 'Poppins', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.pointer {
    cursor: pointer;
}

/* -- // Main Container */
.container {
    margin: 0;
    width: 100%;
    height: auto;
    background-color: black;
    position: relative;
    overflow: hidden;
}

/* background */ 
.background {
    width: 100%;
    height: 100%;
    background-color: grey;
    position: absolute;
}

/* wrap */ 
.wrap {
    position: relative;
    width: 100%;
    height: auto;
}

/* -- // Sitewide */
/* topbar */ 
.sitewide-topbar  {
    background-color: rgba(0,0,0,0);
    z-index: 10;
    position: absolute;
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
    padding-top: 1.3em;
    padding-bottom: 1em;
    background:  linear-gradient(to bottom, rgba(38, 38, 38, 81%) 0%, rgba(38, 38, 38, 0) 100%);
}

/* header */ 
.sitewide-header {
    width: 50%;
    text-align: left;
    padding-left: 2.67em;
    justify-content: left;
    align-items: center;
    margin: auto;
    display: flex;
    flex-direction: row;
}

.cs-1 {
    margin: 0;
    font-size: 23px;
}

.cs-2 {
    margin: 0;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 0.1em;
    padding-left: 0.05em;
}

.cs-btn {
    text-decoration: none;
    color: white;
}
 
/* navigation */ 
.sitewide-navigation {
    width: 50%;
    text-align: right;
    padding-right: 2.67em;
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
}

.cs-nav-1 {
    font-size: 19px;
    font-weight: 500;
    margin: 0;
    background-color: rgba(0,0,0,0);
    border: none;
    color: white;
}

/* footer */ 
.sitewide-footer {

}

/* -- // Wrap */
/* inner-wrap */
.inner-wrap {
    width: 100%;
    height: auto;
}

/* inner-wrap-content */ 
.inner-wrap-content {
    width: 100%;
    height: auto;
}

/* -- // Sections */
/* cover-section */
.index-cover-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.index-cover-image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.cover-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    background-color: rgba(132, 192, 212, 0);
    scroll-snap-align: start;
    padding-left: 5em;
}

#findText {
    display: flex;
    flex-direction: column;
    justify-content: left;
    text-align: left;
    width: 100%;
}

.findText1 {
    font-size: 75px;
    margin: 0;
    font-weight: 500;
}

#findText2 {
    font-size: 90px;
    margin: 0;
    margin-top: -0.35em;
    margin-bottom: 0.1em;
    font-weight: 800;
}

#findSearchArea {
    position: relative;
    width: 25em;
    height: auto;
    align-items: center;
    margin-top: 2.8em;
    margin-left: 0.5em;
    display: flex;
    flex-direction: column;
}

#findSearchLabel {
    width: 100%;
    text-align: left;
    padding-left: 0.1em;
    padding-bottom: 0.5em;
    position: relative;
}

#findSearchBox {
    background-color: white;
    width: 100%;
    height: 3em;
    position: relative;
    border-radius: 0.25em;
    display: flex;
    flex-direction: row;
    padding-left: 0.5em;
    padding-top: 0.4em;
    padding-bottom: 0.2em;
    box-shadow: 6px 7px 10px 2px rgba(99, 99, 99, 0.699);
}

#findSearchIcon {
    margin: 0;
    width: 10%;
    height: auto;
    font-size: 31px; 
    color: rgb(94, 87, 87);
}

#findSearchSchool {
    border: none;
    margin: 0;
    width: 85%;
    height: 90%;
    background-color: rgba(0,0,0,0);
    padding-left: 0.6em;
    font-size: 20px;
    font-weight: 550;
}

#findSearchSchool:focus {
    outline: none;
}