﻿/*UCLA Colors*/
:root {
    --uclalightergold: #FFE500;
    --uclagold: #FFD100;
    --ucladarkergold: #FFBF0F;
    --uclalightestblue: #DAEBFE;
    --uclablue: #2774AE;
    --ucladarkerblue: #005587;
    --ucladarkestblue: #003B5C;
    --uclapurple: #8237FF;
    --greyfive: #F2F2F2;
    --greyeight: #EBEBEB;
    --greyten: #E5E5E5;
    --greyforty: #999;
    --greysixty: #666;
    --greyeighty: #333;
}

html {
    scroll-behavior: smooth;
}

/*FOR DEBUGGING ONLY*/
/** {
    background: #000 !important;
    color: #0f0 !important;
    outline: solid #f00 1px !important;
}*/

#header {
   position:absolute;
   top:0;
   width:100%; 
}

#homepageBannerWrap {
/*    position: absolute;
    z-index: -1;*/
    margin-top: -6.2vw;
    width: 100%;
    background-color: black;
}

.programBannerWrap {
    position: absolute;
    z-index: -1;
    width: 100%;
    margin-top: -6vw;
}

@media screen and (max-width:975px) {
    #programBannerWrap {
        display: none;
    }
}

#homepageVideo {
    height: auto;
    width: 100%;
    object-fit: fill;
}


.homePageRow p {
    padding-top: 8px;
}

.homePageListImage {
    margin-bottom: 20px;
}

#logo {
    max-width: 350px;
}

#homepageTitle {
    max-width: 75%;
    position: absolute;
    bottom: 15vw;
}

    #homepageTitle h3 {
        font-size: calc(1rem + 1.5vw);
        line-height: 5rem;
        color: white;
        text-align: center;
        font-weight: 100
    }

    #homepageTitle span {
        font-weight: bold;
        font-size: calc(2.5rem + 1.5vw)
    }

@media screen and (max-width:700px) {
    #homepageBannerWrap {
        margin-top: 17vw;
    }
}

@media screen and (max-width:975px) {

    #homepageTitle h3 {
        font-size: calc(2vw);
        line-height: 2.5rem;
    }

    #homepageTitle span {
        font-size: 1.7rem;
    }

    #mainscroll {
        display: none;
    }
}

@media screen and (min-width:976px) and (max-width:1200px) {
    #homepageTitle {
        bottom: 10vw;
    }

        #homepageTitle h3 {
            font-size: calc(2vw);
        }
}

@media screen and (min-width:1500px) {
    #homepageTitle {
        bottom: 20vw;
    }
}


.scroll:hover {
    text-decoration: underline;
    text-decoration-color: white;
}

#tagline {
    margin: 5vw 6vw 2vw 6vw;
    font-size: 1.5rem;
    font-weight: normal;
    line-height: 2;
    text-align: center;
}

@media only screen and (min-width: 1024px) {
    #tagline {
        padding-top: 15px;
    }
}

@media only screen and (max-width: 768px) {
    #logo {
        max-width: 200px;
    }
}

.skewtitle {
    padding: 4px 10px;
    transform: skew(-10deg);
    -o-transform: skew(-10deg);
    -moz-transform: skew(-10deg);
    -webkit-transform: skew(-10deg);
    background: var(--uclagold);
    width: fit-content;
    font-size: 2rem;
    padding: 12px;
}

.center {
    display: flex;
    justify-content: center;
}

.breadcrumb {
    margin-left: 16vw;
    margin-top: 15px;
    color: var(--greysixty);
    width: fit-content;
}

    .breadcrumb a {
        color: var(--greysixty);
    }

        .breadcrumb a:hover {
            color: var(--uclablue);
        }


/*Photo Grid*/

.photogrid {
    margin-left: -20px;
    margin-top: -150px;
    margin-bottom: 15px
}

.photogridtitle {
    float: right;
    margin-right: 45px;
}

@media screen and (max-width:800px) {
    .photogrid {
        margin-left: 0px;
        margin-top: 20px;
    }
}

@media screen and (max-width:800px) {
    .photogridtitle {
        float: none;
        margin-right: auto;
    }
}

.photorow {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
    justify-content: flex-start;
    margin-top: 35px;
    margin-left: -15px;
}

/* Create four equal columns that sits next to each other */
.photocolumn {
    display: flex;
    flex-wrap: wrap;
    max-width: 20%;
    padding: 0 4px;
    align-items: center;
    justify-content: center;
    margin: 0px 15px;
}

    .photocolumn img {
        vertical-align: middle;
        width: 100%;
        box-shadow: 0px 0px 5px 1px #888888;
    }


#faculty2 {
    margin-top: 50px;
}

/*Styling for responsive diagonal grid*/
#faculty4 {
    margin-top: -50px;
}

#faculty5 {
    margin-top: -45px;
}

@media screen and (max-width:800px) {
    .photorow {
        justify-content: center;
        margin-top: 0px;
        margin-left: 0px
    }

    #faculty2 {
        margin-top: 0px;
    }

    #faculty4 {
        margin-top: 0px;
    }

    #faculty5 {
        margin-top: 45px;
    }
}

/*Photo overlay*/
.overlaycontainer {
    position: relative;
    margin-top: 25px;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #008CBA;
}

.overlaycontainer:hover .overlay {
    opacity: 0.8;
}

.overlaytext a {
    color: white;
    font-size: medium;
    position: absolute;
    padding-bottom: 5px;
    top: 65%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    width: 73%;
}

    .overlaytext a:after {
        content: '\27F6';
        color: inherit;
        position: absolute;
        font-size: inherit;
        padding-left: 5px;
        transition: padding 0.3s;
        font-size: 18px;
    }

    .overlaytext a:hover {
        color: white;
    }

        .overlaytext a:hover::after {
            padding-left: 10px;
        }

/*Overlay slide up*/

.slidecontainer {
    position: relative;
    width: 90%;
}

.slideoverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: url('/masterpages/RussianFlagship/img/graphic_element_lens_flare.png') no-repeat;
    background-size: cover;
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .5s ease;
    opacity: 0.8;
}

.slidecontainer:hover .slideoverlay {
    height: 100%;
}

.slidetext {
    width: 90%;
    color: white;
    font-size: 15px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .photocolumn {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }

        .photocolumn h3 {
            padding-right: 0px !important;
        }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .photocolumn {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }

        .photocolumn h3 {
            padding-right: 0px;
        }
}

/*Nav bar*/
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    padding-bottom: 20px;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0,0,0,0));
}

.topnav {
    margin-top: 20px;
}

    .topnav .nav-menu {
        margin-top: 20px;
        margin-bottom: -10px;
        padding-right: 50px;
        margin-right: 175px;
    }

.topnavLink {
    margin-right: 25px
}

    .topnavLink a {
        color: var(--ucladarkerblue)
    }

        .topnavLink a:hover {
            color: var(--ucladarkergold);
            text-decoration: underline;
            text-decoration-color: var(--ucladarkergold);
        }


.hamburger {
    display: none;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-menu {
    display: none;
}

.nav-item {
    margin-left: 1.5rem;
}

.main-nav-item {
    margin-left: 3rem;
}

    .main-nav-item.active .nav-link {
        color: var(--uclagold);
        text-decoration: underline;
        text-decoration-color: var(--uclagold);
    }


.nav-link {
    font-size: 18px;
    color: white;
}

    .nav-link:hover {
        text-decoration: underline;
        text-decoration-color: var(--uclagold);
        color: var(--uclagold);
    }

    .nav-link:focus, active {
        color: var(--uclagold);
        text-decoration: underline;
        text-decoration-color: var(--uclagold);
    }


.secondary-nav-item {
    margin-left: 3rem;
}

.secondary-nav-link {
    font-size: 16px;
    color: white;
    background-color: #FFD100;
    padding: 17px 20px;
    box-shadow: 4px -4px #ffb81c;
}

    .secondary-nav-link:hover {
        color: white;
        background-color: var(--uclablue);
        box-shadow: 3px -3px var(--ucladarkerblue);
        transition: 0.5s ease;
    }


@media only screen and (max-width: 975px) {
    .nav-menu {
        display: none;
    }

        .nav-menu .active {
            display: none;
        }

    .mobile-nav-menu {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        left: -120%;
        top: 5rem;
        flex-direction: column;
        background: linear-gradient(to bottom, var(--uclablue) 0%,var(--uclablue) 50%, var(--ucladarkerblue) 50%,var(--ucladarkerblue) 75%,var(--uclablue) 75%,var(--uclablue) 100%);
        width: 70%;
        border-radius: 10px;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

        .mobile-nav-menu.active {
            left: -10px;
            z-index: 1;
        }

    .nav-item {
        margin: 10px 0;
    }

    .hamburger {
        display: block;
        cursor: pointer;
        z-index: 2;
    }

        .hamburger.active .bar:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .hamburger.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
}

.facultyProfile {
    width: 220px;
    height: 220px;
}

#news {
    margin-top: -38px;
    margin-left: 25px;
    margin-bottom: 10px;
}

#home-news {
    margin-right: 10px;
}

    #home-news span, #home-useful span {
        white-space: normal;
    }

    #home-news .list-content, #home-useful .list-content {
        padding-left: 5px;
    }

    #home-news .list-title, #home-useful .list-title {
        font-size: 15px;
        line-height: 20px;
    }

    #home-news a:hover, #home-useful a:hover {
        color: #2e92cf;
    }


    #home-news .listview-outlook div:last-child, #home-useful .listview-outlook div:last-child {
        border: none;
    }

.newsList {
    margin-left: 25px;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .newsList .odd, .newsList .even {
        margin-top: 10px;
    }

    .newsList a {
        color: var(--ucladarkerblue);
    }

        .newsList a:hover {
            color: #2e92cf;
            text-decoration: underline;
        }

.dash {
    border-top: 2px solid #FFD100;
    width: 50px;
    margin-top: -10px;
}

/*Home Page Title Animation */
.bottomdash {
    border-bottom: 2px solid #FFD100;
    width: 50px;
    margin-top: -10px;
}

.readmorebtn {
    color: #2774AE;
    padding: 7px;
    border: 1px solid #2774AE;
}

.moleculebackground {
    background-position: 300px 0px;
    background-color: transparent;
    background-image: url('/masterpages/RussianFlagship/img/2molecules3ptcolor.svg');
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.greybackground {
    margin-left: 50px;
    padding: 20px;
    background: linear-gradient( 75deg, white 40%, var(--greyeight) 65%);
}

@media screen and (max-width: 800px) {
    .moleculebackground {
        background: none;
    }
}

.studentprofile {
    margin: 0px 20px;
    max-width: 450px;
}

    .studentprofile img {
        margin-bottom: 15px;
        box-shadow: 0px 0px 5px 1px #888888;
    }

    .studentprofile p {
        color: var(--ucladarkerblue);
        margin-top: 5px;
        font-size: 14px;
    }

    .studentprofile:hover p {
        color: var(--uclapurple);
    }

    .studentprofile:hover a {
        color: var(--uclapurple);
        text-decoration: none;
    }

#ctl00_MainContentPlaceholder_studentlist_StoryListUpdatePanel {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

@media screen and (max-width:768px) {
    #ctl00_MainContentPlaceholder_studentlist_StoryListUpdatePanel {
        flex-direction: column;
    }
}

#ctl00_MainContentPlaceholder_staffarticles_StoryListUpdatePanel {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

@media screen and (max-width:768px) {
    #ctl00_MainContentPlaceholder_staffarticles_StoryListUpdatePanel {
        flex-direction: column;
    }
}



.staffprofile {
    margin: 0px 15px;
    width: 188px;
}

    .staffprofile a {
        display: flex;
        justify-content: center;
        color: white;
        font-size: 20px;
    }

    .staffprofile p {
        display: flex;
        justify-content: center;
        color: white;
        text-align: center;
        font-size: small;
        padding-bottom: 0px;
        font-size: 14px;
    }

    .staffprofile:hover a {
        color: var(--ucladarkergold);
        text-decoration: none;
    }

    .staffprofile:hover .stafftitle {
        color: var(--ucladarkergold);
    }

.staffImage {
    border-radius: 50%;
    margin-bottom: 10px;
    max-height: 180px;
}

.staffTitleLink {
    margin: auto;
}

#ctl00_MainContentPlaceholder_stafflist_StoryListUpdatePanel {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin-left: 3rem;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 15px;
}

@media screen and (max-width:768px) {
    #ctl00_MainContentPlaceholder_stafflist_StoryListUpdatePanel {
        flex-direction: column;
    }
}

.bluemoleculebackground {
    background: url('/masterpages/RussianFlagship/img/graphic_element_lens_flare.png') no-repeat;
    background-color: var(--uclablue);

    background-size: cover;
    padding-bottom: 75px;
    padding-top: 75px;
    margin-bottom: 100px;
}

.readbtn {
    position: absolute;
    bottom: 22px;
    margin-left: -30px;
}

@media screen and (max-width:950px) {
    .readbtn {
        position: relative;
        margin-left: 45px;
        margin-top: 15px;
    }
}

.homePageTitleLink {
    font-size: 20px;
    max-width: 350px;
    display: block;
}

    .homePageTitleLink:hover {
        text-decoration: underline var(--uclablue);
    }

.bluegradient {
    margin-top: 100px;
    padding: 125px 20px;
    background-image: linear-gradient(to right, var(--uclalightestblue) 0%, var(--uclablue) 50%, var(--ucladarkerblue) 100%);
}

/*Event List Styling*/

.eventcenter {
    display: flex;
    justify-content: center;
}

@media screen and (max-width:786px) {
    .eventcenter {
        flex-direction: column;
    }
}

.calendarButton {
    margin-top: 15px;
}

.homePageDateTime {
    color: var(--ucladarkergold);
    font-size: 20px;
}

.eventicon {
    max-width: 20px;
    height: 22px;
    margin-right: 10px;
}

.viewbtn {
    margin: 10px auto;
    margin-bottom: 35px;
}

/*@media screen and (max-width:950px) {
    .viewbtn {
        margin: 20px 20px;
    }
}*/

#ctl00_MainContentPlaceholder_AnnounceNav_StoryListUpdatePanel {
    padding: 20px;
}

.eventCalendar {
    max-width: 250px;
}

/* MailChimp Form Embed Code - Classic - 12/17/2015 v10.7 */
#mc_embed_signup form {
    display: block;
    position: relative;
    text-align: left;
    padding: 10px 0 10px 3%
}

#mc_embed_signup h2 {
    font-weight: bold;
    padding: 0;
    margin: 15px 0;
    font-size: 1.4em;
    color: white;
}

#mc_embed_signup input {
    border: 1px solid #ABB0B2;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: white;
    background-color: var(--ucladarkestblue);
}

    #mc_embed_signup input[type=checkbox] {
        -webkit-appearance: checkbox;
    }

    #mc_embed_signup input[type=radio] {
        -webkit-appearance: radio;
    }

    #mc_embed_signup input:focus {
        border-color: #333;
    }

#mc_embed_signup .button {
    clear: both;
    background-color: var(--uclagold);
    border: 0 none;
    border-radius: 4px;
    transition: all 0.23s ease-in-out 0s;
    color: black;
    cursor: pointer;
    display: inline-block;
    font-size: 15px;
    font-weight: normal;
    height: 32px;
    line-height: 32px;
    padding: 0 22px;
    text-align: center;
    text-decoration: none;
    vertical-align: bottom;
    white-space: nowrap;
    width: auto;
    margin-bottom: 45px;
}

    #mc_embed_signup .button:hover {
        background-color: var(--ucladarkergold);
    }

#mc_embed_signup .small-meta {
    font-size: 11px;
}

#mc_embed_signup .nowrap {
    white-space: nowrap;
}

#mc_embed_signup .mc-field-group {
    clear: left;
    position: relative;
    width: 19%;
    padding-bottom: 3%;
    min-height: 50px;
    display: inline-block;
    margin: 5px;
}

#mc_embed_signup .size1of2 {
    clear: none;
    float: left;
    display: inline-block;
    width: 46%;
    margin-right: 4%;
}

* html #mc_embed_signup .size1of2 {
    margin-right: 2%; /* Fix for IE6 double margins. */
}

#mc_embed_signup .mc-field-group label {
    display: block;
    margin-bottom: 3px;
    color: white;
}

#mc_embed_signup .mc-field-group input {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-indent: 2%;
}

#mc_embed_signup .mc-field-group select {
    display: inline-block;
    width: 99%;
    padding: 5px 0;
    margin-bottom: 2px;
}

#mc_embed_signup .datefield, #mc_embed_signup .phonefield-us {
    padding: 5px 0;
}

    #mc_embed_signup .datefield input, #mc_embed_signup .phonefield-us input {
        display: inline;
        width: 60px;
        margin: 0 2px;
        letter-spacing: 1px;
        text-align: center;
        padding: 5px 0 2px 0;
    }

    #mc_embed_signup .phonefield-us .phonearea input, #mc_embed_signup .phonefield-us .phonedetail1 input {
        width: 40px;
    }

    #mc_embed_signup .datefield .monthfield input, #mc_embed_signup .datefield .dayfield input {
        width: 30px;
    }

    #mc_embed_signup .datefield label, #mc_embed_signup .phonefield-us label {
        display: none;
    }

#mc_embed_signup .indicates-required {
    text-align: right;
    font-size: 11px;
    margin-right: 4%;
    color: white;
}

#mc_embed_signup .asterisk {
    color: #e85c41;
    font-size: 150%;
    font-weight: normal;
    position: relative;
    top: 5px;
}

#mc_embed_signup .clear {
    clear: both;
}

#mc_embed_signup .mc-field-group.input-group ul {
    margin: 0;
    padding: 10px 0;
    list-style: none;
}

    #mc_embed_signup .mc-field-group.input-group ul li {
        display: block;
        padding: 3px 0;
        margin: 0;
    }

#mc_embed_signup .mc-field-group.input-group label {
    display: inline;
}

#mc_embed_signup .mc-field-group.input-group input {
    display: inline;
    width: auto;
    border: none;
}

#mc_embed_signup div#mce-responses {
    float: left;
    top: -1.4em;
    padding: 0em .5em 0em .5em;
    overflow: hidden;
    width: 90%;
    margin: 0 5%;
    clear: both;
}

#mc_embed_signup div.response {
    margin: 1em 0;
    padding: 1em .5em .5em 0;
    font-weight: bold;
    float: left;
    top: -1.5em;
    z-index: 1;
    width: 80%;
}

#mc_embed_signup #mce-error-response {
    display: none;
}

#mc_embed_signup #mce-success-response {
    color: #529214;
    display: none;
}

#mc_embed_signup label.error {
    display: block;
    float: none;
    width: auto;
    margin-left: 1.05em;
    text-align: left;
    padding: .5em 0;
}

#mc-embedded-subscribe {
    clear: both;
    width: auto;
    display: block;
    margin: 1em 0 1em 5%;
}

#mc_embed_signup #num-subscribers {
    font-size: 1.1em;
}

    #mc_embed_signup #num-subscribers span {
        padding: .5em;
        border: 1px solid #ccc;
        margin-right: .5em;
        font-weight: bold;
    }

#mc_embed_signup #mc-embedded-subscribe-form div.mce_inline_error {
    display: inline-block;
    margin: 2px 0 1em 0;
    padding: 5px 10px;
    background-color: rgba(255,255,255,0.85);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: normal;
    z-index: 1;
    color: #e85c41;
}

#mc_embed_signup #mc-embedded-subscribe-form input.mce_inline_error {
    border: 2px solid #e85c41;
}

/*The Program page styling*/
.programNav {
    background-color: var(--uclablue);
}

.program-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px !important;
    margin-left: 275px;
    list-style-type: none;
    width: 60%;
    max-width: 900px;
    margin-top: -15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media only screen and (min-width:1500px) {
    .program-nav-bar {
        margin-left: 325px;
    }
}

@media screen and (max-width:1200px) {
    .program-nav-bar {
        margin-left: 200px;
        width: 80%;
    }
}

@media only screen and (max-width: 975px) {
    .program-nav-bar {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-top: 5px;
        padding-bottom: 5px;
        flex-direction: column;
    }
}

.program-nav-link {
    font-size: 16px;
    color: white;
    font-weight: bold;
}

    .program-nav-link.active {
        color: var(--uclagold);
        text-decoration: underline;
        text-decoration-color: var(--uclagold);
    }

    .program-nav-link:hover {
        color: var(--uclagold);
        text-decoration: underline;
    }

.programTitle {
    margin-top: 28vw;
    margin-left: 16vw;
    margin-bottom: 20px;
    padding: 25px 15px;
    background-color: var(--ucladarkergold);
    width: 350px;
}

    .programTitle h1 {
        font-family: Times New Roman;
        font-size: 25px;
        color: white;
        padding-bottom: 0px
    }

.studentlifeTitle {
    margin-top: 30vw;
    margin-left: 16vw;
    padding: 25px 15px;
    background-color: var(--ucladarkergold);
    width: 350px;
}

    .studentlifeTitle h1 {
        font-family: Times New Roman;
        font-size: 25px;
        color: white;
        padding-bottom: 0px
    }

.podcastTitleLink {
    margin-bottom: 15px;
}

.podcastImg {
    max-width: 30px;
    margin-right: 10px;
}

.description {
    color: var(--uclablue);
    margin-right: auto;
    margin-left: auto;
    max-width: 75%;
    margin-top: 50px;
    margin-bottom: 50px;
    font-size: 1.3rem;
    line-height: 2;
    text-align: center;
}

/*Admissions page styling*/
.admissionsNav {
    background-color: var(--uclablue);
}

.admissions-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0px !important;
    margin-left: 425px;
    list-style-type: none;
    width: fit-content;
    margin-top: -15px;
    padding-top: 10px;
    padding-bottom: 10px;
}

@media only screen and (max-width: 975px) {
    .admissions-nav-bar {
        width: 100%;
        margin-right: auto;
        margin-left: auto;
        padding-top: 5px;
        padding-bottom: 5px;
        flex-direction: column;
    }
}

@media only screen and (min-width:1500px) {
    .admissions-nav-bar {
        margin-left: 470px;
    }
}

.admissions-nav-link {
    font-size: 16px;
    color: white;
    margin-right: 20px;
    font-weight: bold;
}

    .admissions-nav-link.active {
        color: var(--uclagold);
        text-decoration: underline;
        text-decoration-color: var(--uclagold);
    }

    .admissions-nav-link:hover {
        color: var(--uclagold);
        text-decoration: underline;
    }


/*About Page Styling*/

.aboutTitle {
    color: #2774ae;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
    width: fit-content;
}

.aboutText {
    font-size: 20px;
    line-height: 1.5;
    color: var(--greyeighty);
    margin-right: auto;
    margin-left: auto;
    margin-top: 25px;
    width: 80%
}

/*Styling for Internships page*/
.alink {
    color: var(--uclablue) !important;
}

    .alink:hover {
        text-decoration: underline;
    }

.internText {
    font-size: 16px;
    line-height: 1.2;
    width: 90%;
}

.internLink {
    justify-content: center;
    width: 80%;
    margin-bottom: 10px;
    margin-left: 20px;
    margin-top: 25px;
}

/*Styling for DisplayPerson*/
.bottomborder {
    border-bottom: rgba(0, 0, 0, 0.12) 2px solid;
    padding-bottom: 20px;
    margin-bottom: 20px;
    clear: both;
    display: block;
    float: left;
    width: 100%;
}

.curriculumList li {
    font-size: 1.1rem;
}




/*Accordion*/
.container {
    width: 90%;
    max-width: 600px;
    margin: 50px auto;
}

button.accordion {
    width: 100%;
    background-color: white;
    border: none;
    outline: none;
    text-align: left;
    padding: 15px 20px;
    font-size: 18px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s linear;
}

    button.accordion:before {
        content: '+';
        font-size: 25px;
        display: inline-block;
        margin-right: 15px;
        color: var(--uclagold);
    }

    button.accordion.is-open:before {
        content: '-';
        font-size: 35px;
        display: inline-block;
        margin-right: 15px;
        color: var(--uclagold);
    }

    button.accordion:hover,
    button.accordion.is-open {
        background-color: white;
    }

.accordion-content {
    display: inherit;
    background-color: #eef3f9ff;
    border-left: 1px solid whitesmoke;
    border-right: 1px solid whitesmoke;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-in-out;
    margin-left: 50px;
}

#applyVideo {
    max-width: 800px;
    margin: 0 auto;
}

.imageBanner {
    position: relative;
    z-index: -1;
    margin-top: -7vw;
    width: 100%;
}

.imageBannerTitle {
    position: relative;
    margin-left: 16vw;
    padding: 25px 15px;
    background-color: var(--ucladarkergold);
    width: 350px;
    margin-top: -50px;
}

    .imageBannerTitle h1 {
        font-family: Times New Roman;
        font-size: 27px;
        color: white;
        padding-bottom: 0px;
    }

@media screen and (max-width:975px) {
    .imageBanner {
        position: static;
        margin-top: 0px;
    }

    .imageBannerTitle {
        margin-left: auto;
        margin-right: auto;
    }
}

li {
    color: var(--greyeighty);
}

.applybtn {
    background-color: var(--uclagold);
    border: none;
}

    .applybtn a {
        color: white;
    }

.grey3colbackground {
    background: linear-gradient( 90deg, white 30%, #EFF3F7 30%,#EFF3F7 95%, white 95%,white 100%);
    background-position-x: -50px;
    padding-top: 30px;
    padding-bottom: 50px;
    margin-top: 50px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1176px;
}

.grey2colbackground {
    background: linear-gradient( 90deg, white 45%, #EFF3F7 10%);
    background-position-x: -50px;
    padding-top: 50px;
    padding-bottom: 50px;
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1176px;
}

.greycolbackground {
    background: linear-gradient(to right, white 0, white 60%, #EFF3F7 60%, #EFF3F7 67%, white 67%, white 100%);
    padding-top: 100px;
    padding-bottom: 50px;
    margin-top: 100px;
    margin-right: auto;
    margin-left: auto;
    max-width: 1176px;
}

.greycol {
    margin-left: 75px;
}

    .greycol p {
        width: 80%;
    }

@media screen and (max-width:975px) {
    .greycol {
        margin-left: 0px;
        margin-top: 25px;
        text-align: center;
    }

        .greycol p {
            width: 100%;
        }

    #culutralengageimg {
        margin-top: 75px;
        margin-left: -50px;
    }
}

.grey2col {
    margin-left: 100px;
}

@media screen and (max-width:975px) {
    .grey2col {
        margin-left: 0px;
        margin-top: 25px
    }
}


/*Paging*/
.digg-pages {
    font: 83%/1.4 arial, helvetica, sans-serif !important;
    margin: 1em 0 !important;
    clear: left !important;
    font-size: 85% !important;
    border: none;
}

    .digg-pages a, .digg-pages span {
        color: #003366 !important;
        padding: 0.2em 0.5em !important;
        margin-right: 0.1em !important;
        border: 1px solid #fff !important;
        background: #fff !important;
    }

    .digg-pages .current {
        border: 1px solid #2E6AB1 !important;
        font-weight: bold !important;
        background: #2E6AB1 !important;
        color: #fff !important;
    }

    .digg-pages a {
        border: 1px solid #9AAFE5 !important;
        text-decoration: none !important;
        margin: 2px;
    }

        .digg-pages a:hover {
            border-color: #2E6AB1 !important;
        }

        .digg-pages a.nextprev {
            font-weight: bold !important;
        }

    .digg-pages span.nextprev {
        border: 1px solid #ddd !important;
        color: #999 !important;
    }

    .digg-pages .nextprev-next {
        float: right !important;
    }

    .digg-pages table, .digg-pages td, .digg-pages tr {
        border: none !important;
    }

.paging-link-margin {
    margin: 5px 0px;
    display: inline-block;
}

#ctl00_MainContentPlaceholder_internshipStories_StoryListUpdatePanel {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

@media screen and (max-width:975px) {
    #ctl00_MainContentPlaceholder_internshipStories_StoryListUpdatePanel {
        flex-direction: column;
    }
}


/*gallery styling*/

#ctl00_MainContentPlaceholder_photoGallery_PageTable {
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.imageGallery {
    margin-bottom: 15px;
    padding-right: 10px;
}

@media screen and (max-width:975px) {
    #ctl00_MainContentPlaceholder_photoGallery_StoryListUpdatePanel {
        margin-right: auto;
        margin-left: auto;
        width: fit-content;
    }

    #ctl00_MainContentPlaceholder_photoGallery_PageTable {
        display: block;
    }
}

#ctl00_MainContentPlaceholder_photoGallery_TotalRowsLiteral {
    display: none;
}


#ctl00_MainContentPlaceholder_photoGallery_pagedropdown {
    display: none;
}

/*News Page Styling*/

.news-article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    grid-auto-flow: row;
    flex-grow: 1;
    grid-row-gap: calc(.9375rem*2);
    justify-content: center;
    justify-items: center;
    margin-bottom: 1.5rem;
}

.news-article-cell {
    padding-left: .9375rem;
    padding-right: .9375rem;
}

    .news-article-cell > .card {
        height: 100%;
    }

.news-article-cell {
    width: 320px;
}

.news-article-card-link {
    display: block;
    height: 100%;
}

.news-article-card {
    transition: box-shadow 0.3s;
    height: 100%;
}

.news-article-card .article-subtitle {
    color: var(--greysixty);
}

.news-article-card-link:hover {
    text-decoration: none !important;
}

.news-article-card-link:hover .article-title {
    text-decoration: underline;
}

.news-article-card:hover {
    box-shadow: 0px 0px 10px 2px #888888;
}

.news-article-paging {
    margin-bottom: 1.5rem;
    padding-left: 0.975rem;
    padding-right: 0.975rem;
}

    .news-article-paging .columns:first-child span {
        display: block;
        padding-top: calc(0.3em + 1px);
    }

    .news-article-paging .page, .news-article-paging .current {
        padding: 0.2em 0.5em;
        border: 1px solid var(--uclablue);
        display: inline-block;
    }

        .news-article-paging .current:hover {
            color: white;
            text-decoration: none;
        }

    .news-article-paging .page {
        box-sizing: border-box;
    }

        .news-article-paging .page:hover {
            border: 1px solid var(--uclagold);
            color: var(--uclagold);
        }

        .news-article-paging .current, .news-article-paging .page:active {
            background-color: var(--uclagold);
            border-color: var(--uclagold);
            color: white;
        }

    .news-article-paging label {
        display: inline-block;
    }

/* Display article styling */
.article {
    display: grid;
    grid-template-columns: 1fr 10rem;
    max-width: 62.5rem;
    margin: auto;
}


@media (max-width: 1100px) {
    .article {
        grid-template-columns: unset;
        grid-template-rows: 1fr auto;
    }

    .sharing-tools {
        margin-top: 0.5rem;
    }
}

.article__body {
    max-width: 100%;
    width: 100%;
}

.article-figure {
    display: inline-grid;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    margin: auto;
    margin-bottom: 1rem;
}

.article-figure__caption {
    width: 0;
    min-width: 100%;
    padding: 0.5rem;
    color: gray;
    text-align: center;
}

/* Royal Slider */

.royalSlider {
    width: 100%;
    max-width: 600px;
}

.royalSlider::after {
    content: "";
    display: table;
    clear: both;
}

/*.rsSlide figure {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.rsSlide img {
    margin: 0;
    min-height: 0;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.rsSlide figcaption {
    margin: 0.5rem;
    text-align: center;
}

.rsDefaultInv .rsBullets {
    padding: 0.5rem 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.rsDefaultInv .rsBullet {
    padding: 0.5rem;
    cursor: pointer;
}*/

.rsDefaultInv .rsBullet {
    padding: 0.5rem;
    cursor: pointer;
}

.rsNav.rsBullets {
    background-color: #EEE;
    padding: .5rem;
}

.rsGCaption {
    margin-right: 6px;
}

.royalSlider img {
    object-fit: contain;
}