*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    transition: all 0.5s ease-in-out;
}


/*Containers*/
.outer-container{
    width: 100vh;
    height: 100vw;
    transform: rotate(-90deg) translateX(-100vh);
    transform-origin: top left;
    overflow-x: hidden;
    overflow-y: scroll;
    position: absolute;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* Internet Explorer 10+ */
    
}
::-webkit-scrollbar{
    display: none; /* Safari and Chrome */
}
.slide{
    width: 100vw;
    height: 100vh;
}
.container{
    display: flex;
    flex-direction: row;
    width: 500vw;
    transform: rotate(90deg) translateY(-100vh);
    transform-origin: top left;
}

/*Header and Nav*/
header{
    position: fixed;
    top: 0;
    width: 100%;
    height: 125px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(0,0,0,0));
    z-index: 10;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
}
nav .logo{
    color: white;
    font-family: Arial, sans-serif;
    font-size: 24px;
}
nav .logo a{
    text-decoration: none;
    color: white;
}
nav ul{
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 40px 5%;
}
nav ul li a{
    text-decoration: none;
    color: white;
    font-family: Arial, sans-serif;
    font-size: 18px;
}

/*Landing*/
.landing{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 1%;
}
.landing p{
    color: black;
    font-family: Arial, sans-serif;
    font-size: 36px;
    text-align: right;
}
.landing a.cta{
    width: 150px;
    height: 50px;
    cursor: pointer;
    align-self: flex-end;
    margin: 20px 0;
    border: none;
    border-radius: 10px;
    background-color: rgb(77, 77, 77);
    color: white;
    font-family: Arial, sans-serif;
    font-size: 18px;
    text-align: center;
    line-height: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.landing a.cta:hover{
    background-color: rgb(100, 100, 100);
    transform: scale(1.05);
}

/*Testimonials*/
.testimonials{
    display: flex;
    padding: 1%;
}
.testimonials .left, .testimonials .right{
    width: 50%;
}
.testimonials .inner-container{
    display: flex;
    flex-direction: column;
}
.testimonials .left .inner-container{
    justify-content: center;
    align-items: center;
}
.testimonials .left .inner-container .image{
    width: 80%;
    height: calc(100vh - 150px);
    background-color: rgb(77, 77, 77);
    color: white;
    font-family: Arial, sans-serif;
    font-size: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.testimonials .right .inner-container{
    height: calc(100vh - 150px);
    display: flex;
    justify-content: center;
}
.testimonials .right .inner-container h2{
    font-family: Arial, sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}
.testimonials .right .inner-container p{
    font-family: Arial, sans-serif;
    font-size: 18px;
    line-height: 1.5;
}

/*FAQ*/
.faq{
    display: flex;
    padding: 1%;
}
.faq h2{
    font-family: Arial, sans-serif;
    font-size: 48px;
    text-align: center;
    width: 100%;
    align-self: center;
}
.faq .inner-container{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    padding-top: 100px;
    align-self: center;
}
.faq .accordion-item{
    border: 1px solid rgb(200, 200, 200);
    border-radius: 5px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq .accordion-item-header{
    background-color: rgb(200, 200, 200);
    padding: 15px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 18px;
}
.faq .accordion-item-header.active{
    transition: max-height 0.3s ease-out 0.5s;
    border-bottom: none;
}
.faq .accordion-item-body{
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: white;
    border-top: 1px solid rgb(200, 200, 200);
}
.faq .accordion-item-body-content{
    padding: 15px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/*Submission Form*/
.submission-form{
    display: flex;
}
.submission-form h2{
    font-family: Arial, sans-serif;
    font-size: 48px;
    text-align: center;
    width: 100%;
    align-self: center;
}
.submission-form .inner-container{
    display: flex;
    flex-direction: column;
    padding-right: 4.5%;
    gap: 10px;
    width: 100%;
    justify-content: center;
}
.form-group {
    margin-bottom: 15px;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #000000;
    z-index: 1000;
}
label{
    display: block;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
    font-size: 16px;
}
input[type="text"],
input[type="number"],
input[type="url"],
input[type="email"],
select {
    width: 100%;
    padding: 8px;
    border: 1px solid #000000;
    box-sizing: border-box;
    border-radius: 10px;
}
.radio-group, .checkbox-group {
    margin-top: 5px;
}
.radio-group label, .checkbox-group label {
    font-weight: normal;
    display: inline;
    margin-left: 5px;
}
.error {
    color: rgb(114, 114, 114);
    font-size: 0.9em;
    margin-top: 5px;
}

.button-wrapper{
    display: flex;
    width: calc(100% - 20px);
    margin-left: 20px;
    justify-content: flex-end;
    z-index: 1001;
}
button {
    background-color: rgb(77, 77, 77);
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    float: right;
    padding: 15px 20px;
    transition: all 0.3s ease-in-out;
}
.pressSubmit:hover {
    background-color: rgb(150, 150, 150); 
    transform: scale(1.05);
}
.required:after {
    content: " *";
    color: rgb(85, 85, 85);
}
.group1, .group2, .group3{
    display: flex;
    gap: 10px;
}
.group1 .form-group{
    width: 100%;
}
.group1 .form-group.middleInitial{
    flex: 0 0 20%;
}
.group2 .form-group.degree-program{
    flex: 1;
}
.group3 .form-group.enrollment-status{
    align-self: center;
}

/*Recent Folios*/
.recent-folios{
    display: flex;
}
.recent-folios .inner-container{
    display: flex;
    flex-direction: column;
    width: 75%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.recent-folios h2{
    font-family: Arial, sans-serif;
    font-size: 48px;
    text-align: center;
    width: 100%;
    align-self: center;
}
footer{
    background-color: rgba(0,0,0,1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25%;
    color: white;
}