  /* Start CSS Reset */
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,p,a,blockquote,th,td { 
	margin:0;
	padding:0;
	box-sizing: border-box;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,img { 
	border: 0;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}
/* Start Core CSS */
html {
	scroll-behavior: smooth;
    scroll-padding-top: 30px;
}
:root {
	--gray_l: #f5f5f5;
	--gray_m: #dbdbdb;
	--gray_xm: #a1a1a1;
	--gray_d: #3d3d3d;
	--black: #333;
	--yellow_l: #ffe69b;
	--yellow_xl: #f6df96;
	--yellow_m: #e5d08d;
	--yellow_d: #f5c63a;
	--yellow_xd: #ffc108;
	--red_l: #ce1b21;
	--red_d: #a82d30;
	--red_xd: #a3292c;
	--red_xxd: #940a0d;
    --fehs900: #700f3a;
    --fehs300: #b17c93;
    --fehs100: #d4b7c3;
    --faens900: #af7510;
    --faens300: #eec987;
    --faens100: #f6e1bc;
    --fcml900: #00568a;
    --fcml300: #74a3c0;
    --fcml100: #b2ccdc;
    --fhsvm900: #415813;
    --fhsvm300: #97a37d;
    --fhsvm100: #c5ccb7;

}
body {
	background-color: #fff;
	font-family: "Segoe UI";
	font-family: 'Poppins', sans-serif;                                              
	color: var(--gray_d);
    position: relative;
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-in-out;
    opacity: 1;
    z-index: 101;
  }
  
  .overlay.hidden {
    display: none;
    opacity: 0;
    pointer-events: none;
  }
.overlay_inner {
    display: grid;
    max-width: 480px;
    text-align: center;
    background-color: #fff;
    position: relative;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 25px;
    overflow: hidden;
}
.overlay_inner .close {
    max-width: 24px;
    position: absolute;
    top: 20px;
    right: 20px;
    transition: opacity 500ms;
    opacity: .6;
    cursor: pointer;
}
.overlay_inner .close:hover {
    opacity: 1;
}
.overlay .left {
    padding: 30px 15%;
}
.overlay .left h1 {
    margin: 30px 0 20px;
    font-size: 28px;
    line-height: 1.2;
}
.overlay .left h1, .overlay .left p b {
    color: var(--red_l);
}
.overlay .left p b {
    font-weight: 600;
}
.alumniLinks {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 16px;
}
.socials {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 0px 0 20px;
}
#alumni .socials {
    gap: 14px;
    justify-content: flex-start;
    margin: 0;
}
.socials a {
    text-decoration: none;
    max-height: 30px;
}
.socials img {
    max-width: 40px;
    transition: transform 600ms;
}
#alumni .socials img {
    max-width: 30px;
}
.socials img:hover {
	transform: rotate(360deg);
}
.overlay .right {
    max-height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hideMe {
	display: none !important;
}
.hideSmall {
	display: none;
}
.unavailable {
    cursor: no-drop !important;
    background-color: var(--gray_l) !important;
    color: var(--gray_d) !important;
    border: 1px solid var(--gray_m);
}
.unavailable span {
    background-color: var(--gray_xm) !important;
    color: var(--gray_l) !important;
    border-color: var(--gray_xm) !important;
}
.wrapper {
	margin: 0 auto;
	width: 95%;
}
.inner {
	padding: 40px;
	margin-top: 20px;
    /* box-shadow: 0 2px 5px #ddd; */
    border-radius: 8px;
}
.inner.hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0rem;
    isolation: isolate;
    width: 100%;
    align-items: center;
    margin-top: 0;
    padding: 0;
    /*border-left: 4px solid var(--red_l);
    border-right: 4px solid var(--yellow_d);
	border-radius: 0;*/
}
.hero div {
    width: 77%;
    padding-left: 10%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 9;
}
.hero div, .hero img {
    grid-column: 1/-1;
    grid-row: 1/-1;
    min-width: 100%;
}
.hero p {
    color: var(--red_l);
    font-size: 15px;
    letter-spacing: 1.6px;
    padding-bottom: 0;
    text-shadow: 0px 4px 10px #CE9D3D;
    text-shadow: 1px 1px 2px #ffffff9e;
    line-height: 1;
    font-weight: 600;
}
.hero h1 {
    color: var(--red_l);
    text-shadow: 0 0px 10px #fff6;
    color: #fff;
    text-shadow: 0px 4px 10px #CE9D3D;
    text-shadow: 0px 4px 10px #5e430d;
    font-size: 30px;
    font-weight: normal;
    line-height: 0.9;
}
.hero b {
    display: block;
	font-weight: 600;
}
.hero .btn {
    margin-top: 0;
}
.inner.dark {
    background-color: var(--gray_d);
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-evenly;
    padding: 16px 10px 16px;
    max-width: 90%;
    margin: -32px auto -10px;
    z-index: 9;
    position: relative;
    box-shadow: 0 8px 16px #5c5c5c, 0 -1px 2px #fff5;
    border-radius: 16px;
}
.inner.yellow {
	background-color: var(--yellow_l);
    box-shadow: 2px 2px 8px 2px #e9e9e9;
    border-radius: 20px;
}
.inner.gray {
    background-color: #fbfbfb;
    box-shadow: 2px 2px 8px 2px #e9e9e9;
    border-radius: 20px;
}
.inner.menu {
    margin-top: 0;
    position: sticky;
    top: 0;
    z-index: 99;
    border-radius: 0;
    background: #fff8;
    backdrop-filter: blur(4px);
    padding: 6px 6px 2px;
    box-shadow: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}
.menu a {
	color: var(--red_l); 
	text-decoration: none;
	border-bottom: 3px solid #0000;
	transition: all 500ms;
    padding: 12px 0;
    font-size: 13px;
}
.menu a:hover {
	border-bottom: 3px solid var(--red_l);
}
.menu .logo {
    margin-right: auto;
    margin-bottom: 9px;
    padding: 0;
    transition: transform 600ms;
    max-height: 45px;
}
.menu .logo img {
	max-width: 45px;
}
.menu .logo:hover {
	border-bottom: 3px solid #0000;
	transform: rotate(360deg);
}
h1 {
    font-weight: 400;
    padding-bottom: 10px;
    font-size: 24px;
    line-height: 1;
    text-align: center;
    margin-bottom: 8px;
}
h1 b {
	font-weight: 600;
}
.dark h3 {
	color: #fff;
	font-size: 24px;
	font-weight: normal;
	text-align: center;
}
.dark span {
	color: var(--yellow_d);
	font-size: 15px;
	display: block;
    margin-top: -8px;
    line-height: 1;
}
p {
	padding: 5px 0 15px;
}
p a, li a {
    color: var(--red_d);
    text-decoration: none;
    display: inline-block;
    border-bottom: 2px solid transparent;
    line-height: 1.3;
    transition: border 500ms;
}
p a:hover, li a:hover {
    border-color: var(--red_l);
}
.btn {
    text-decoration: none;
    color: #fff;
    background: var(--red_l);
    padding: 4px 4px 4px 16px;
    margin-top: 0;
    display: inline-block;
    border-radius: 4px;
    overflow: hidden;
}
.btn:hover {
    background: var(--red_xd);
}
.btn span {
    background: var(--red_xd);
    height: 100%;
    padding: 4px 8px 5px;
    display: inline-block;
    float: right;
    margin: -4px -4px -4px 12px;
    border-left: 1px solid var(--red_xxd);
}
.smallbig, .bigsmall {
    display: block;
}
.small {
	display: none;
}
#congrats img {
    /*max-width: 180px;*/
    border: 4px solid #d3d3d3;
    margin-bottom: 8px;
    box-shadow: 2px 2px 8px 1px #b7b7b7;
    border: 0;
    border-radius: 20px;
}
#congrats p {
    position: relative;
}
#congrats .small p {
    padding: 2px 0;
    text-align: center;
    font-size: 14px;
}
#congrats .small b {
    display: block;
    font-weight: 600;
    margin-top: -4px;
    color: var(--red_l);
}
#congrats p:first-child::before, #congrats p:last-child::after {
    content: open-quote;
    font-size: 300px;
    font-family: serif;
    position: absolute;
    color: #665f4721;
    top: -45px;
    left: -12px;
}
#congrats p:last-child::after {
    content: close-quote;
    top: -100px;
    left: auto;
    right: -25px;
}
.venues {
    margin-top: 12px;
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fill, 260px);
    gap: 24px;
    isolation: isolate;
}
.venues2 {
    margin-top: 24px;
}
.card {
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 0 4px #0004;
}
.card p {
    padding-bottom: 5px;    
    line-height: 1.2;
}
.card .btn {
    margin: 6px 12px 12px;
    display: block;
    text-align: center;
}
.top {
    display: grid;
    position: relative;
    z-index: 9;
    justify-items: center;
    align-items: center;
}
.top h3, .top img {
    grid-column: 1/-1;
    grid-row: 1/-1;
}
.top h3 {
    color: var(--yellow_xd);
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    text-shadow: 0 0px 6px #0009;
    background: #0005;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.top h3 span {
    display: block;
    margin-top: -27px;
    font-size: 30px;
}
.info {
    padding: 12px 8px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 104px;
}
.info h3 {
    font-weight: 600;
    line-height: 1;
    padding: 4px 0;
}
.info p {
    font-size: 14px;
}
.venue {
    margin: -2px auto 6px;
}
.time {
    background-color: var(--gray_l);
    border-radius: 16px;
    display: inline-block;
    padding: 4px 15px 4px 30px;
    position: relative;
    border: 1px solid var(--gray_m);
}
.clock {
    color: var(--gray_xm);
    font-size: 17px !important;
    line-height: 1;
    position: absolute;
    left: 8px;
    top: 4px;
}
.dot {
    display: inline-block;
    background-color: var(--gray_xm);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    margin: 0px 6px 3px;
}
.line {
    display: block !important;
    background-color: var(--black);
    width: 2px;
    padding: 7% 0 0 0;
}
.note {
    margin-top: 16px;
    color: var(--red_d);
    text-align: center;
}
.note b {
    font-weight: 600;
}
.faculties {
    margin: 16px 12px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 260px;
}
.faculty {
    border: 2px solid #e7e7e7;
    border-radius: 8px;
}
.faculty h4 {
    font-weight: 600;
    background: #fff;
    display: block;
    width: fit-content;
    text-align: center;
    margin: -14px auto -2px;
    padding: 0 6px;
    font-size: 13px;
    max-width: 75%;
    line-height: 1.1;
}
.faculty p {
    background-color: var(--gray_l);
    border-radius: 30px;
    padding: 4px 8px 4px;
    border: 1px solid var(--gray_m);
    font-size: 12px;
}
.faculty div {
    padding: 10px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.fehs h4, .fehs p {
    color: var(--fehs900);
}
.fehs {
    border-color: var(--fehs300);
}
.fehs p {
    border-color: var(--fehs300);
    background-color: var(--fehs100);
}
/* -------------------------------- */
.fcml h4, .fcml p {
    color: var(--fcml900);
}
.fcml {
    border-color: var(--fcml300);
}
.fcml p {
    border-color: var(--fcml300);
    background-color: var(--fcml100);
}
/* -------------------------------- */
.faens h4, .faens p {
    color: var(--faens900);
}
.faens {
    border-color: var(--faens300);
}
.faens p {
    border-color: var(--faens300);
    background-color: var(--faens100);
}
/* -------------------------------- */
.fhsvm h4, .fhsvm p {
    color: var(--fhsvm900);
}
.fhsvm {
    border-color: var(--fhsvm300);
}
.fhsvm p {
    border-color: var(--fhsvm300);
    background-color: var(--fhsvm100);
}
/* .fhsvm div {
    min-height: 305px;
}
.fehs div {
    min-height: 320px;
}
.fcml2 div {
    min-height: 320px;
} */
.div {
    min-height: 230px;
}
.fehs img, .fcml2 img, .faens img, .fhsvm img  {
    opacity: 0.4;
    background-color: #d4b7c387;
    max-height: 188px;
}
.faens img {
    background-color: #b0761178;
    max-height: 67px;
}
.fcml2 img {
    background-color: #b2ccdc;
    max-height: 228px;
}
.fehs img {
    background-color: #d4b7c387;
    max-height: 285px;
    margin-bottom: 22px;
}
.fhsvm img {
    background-color: #4158137a;
    max-height: 118px;
}
/* -------------------------------- */
/* .venues2 {
    margin-top: 24px;
    display: block;
}
.venues2 .card {
    display: grid;
    grid-template-columns: 1fr 2fr 4fr;
} */
ul {
    list-style: none;
    padding: 5px 0 15px;
}
li {
    padding-left: 8px;
    padding-bottom: 12px;
    display: flex;
    align-items: baseline;
}
li:before {
    content: "\A";
    border-radius: 50%;
    background: transparent;
    display: inline-block;
    margin: 0 24px -1px 0;
    border: 3px solid var(--red_d);
    padding: 4px;
}
.tickets {
    /*display: grid;
    justify-content: center;
    grid-template-columns: 1fr 1fr;*/
    gap: 20px 15px;
    display: flex;
    flex-wrap: wrap;
}
.ticket {
    border: 3px solid #efefef;
    border-radius: 12px;
    padding: 11px;
    background: #efefef;
    max-width: 206px;
}
.ticket .email-ellipsis {
    display: inline-block;
    max-width: 180px; /* Adjust this to fit your design */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
/*.ticket:last-child {
    border-color: transparent;
}*/
.getPlace {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
}
.ticket p {
    padding: 5px 0 0px;
    font-size: 13px;
}
#fees .small img, #alumni .small img {
    border-radius: 8px;
}
.inner.footer {
    text-align: center;
    padding-top: 0;
    padding-bottom: 44px;
}
.inner.footer a {
    color: var(--red_l);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    padding-bottom: 12px;
}
.inner.footer a:hover {
    border-bottom: 3px solid var(--red_l);
}
@media only screen and (min-width: 480px) {    
    .menu a {
        font-size: 13px;
        font-weight: 600;
    }
}
@media only screen and (min-width: 600px) {
	.wrapper {
		width: 80%;
	}
    .inner.menu {
        gap: 24px;
    }
    .hero div {
        width: 66%;
        padding-left: 5%;
    }
    .hero p {
        font-size: 15px;
    }
    .hero h1 {
        font-size: 28px;
        line-height: 1.2;
    }
    h1 {
        font-size: 32px;
    }
    .smallbig, .bigsmall {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 20px;
    }
    .bigsmall {
        grid-template-columns: 1fr 110px;
        gap: 20px;
    }   
    .small {
        display:block;
    }
    .small img {
        margin-top: 8px;
    }
}
@media only screen and (min-width: 800px) {
    .inner.dark {
        width: 70%;
        padding: 16px 10px 16px;
        margin: -72px auto 24px;
    }
    .dark h3 {
        font-size: 40px;
    }
    .dark span {
        font-size: 18px;
        margin-top: -10px;
        padding-bottom: 6px;
    }

}
@media only screen and (min-width: 970px) {
	.wrapper {
		width: 960px;
	}
    .hideSmall {
        display: block;
    }
    .hero h1 {
        font-size: 60px;
        line-height: 1;
        padding-top: 6px;
    }
    .hero p {
        font-size: 22px;
    }
    #congrats p:first-child::before, #congrats p:last-child::after {
        font-size: 600px;
        top: -145px;
        left: -35px;
    }
    #congrats p:last-child::after {
        top: -243px;
        left: auto;
    }
    .smallbig, .bigsmall {
        grid-template-columns: 200px 1fr;
        gap: 40px;
    }
    .bigsmall {
        grid-template-columns: 1fr 200px;
    }
    .tickets {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }
}
@media only screen and (min-width: 1400px) {
	.wrapper {
		width: 1200px;
	}
}

@media only screen and (max-width: 670px) {    
    .home, .congrats {
        display: none;
    }    
    .ticket {
        max-width: 100%;
    }
    p.getDate {
        display: flex;
        flex-direction: column;
    }
}
@media only screen and (max-width: 360px) {    
    .logo, .home, .congrats {
        display: none;
    }
}