@font-face {
    font-family: ProximaNova;
    font-display: swap;
    src: url(./fonts/proximanova_regular.ttf) format("truetype"),
        url(./fonts/proximanova_regular.otf) format("opentype");
    font-weight:400
}

@font-face {
    font-family: ProximaNova;
    font-display: swap;
    src: url(./fonts/proximanova_extrabold.otf) format("truetype"),
        url(./fonts/proximanova_extrabold.otf) format("opentype");
    font-weight:900
}

html {
    font-family: sans-serif;
    line-height: 1.15;
}

body {
    background-color: #ffffff;
    
}

p {
    font-size: 1.125rem;
    line-height: 2rem;
    margin: 0;
    font-family: ProximaNova, sans-serif;
    font-weight: 400;
    text-align: justify;
}

/* Navbar stuff */

header {
    z-index: 1100;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.tt-level2 {
    margin-top: -0.5rem;
    width: 100%;
    height: 64px;
    background-image: linear-gradient(135deg, rgb(228, 6, 126) 0px, rgb(52, 43, 96)100%);
    background-attachment: scroll;
    box-shadow: rgba(0, 0, 0, 0.1) 3px 2px 8px 0px;
}

.tt-level2-brand {
    z-index: 1;
    position: relative;
    top: 50%;
    padding: 1.5rem;
    transform: translateY(-50%);
    opacity: 1;
    transition: all .2s;
}

.tt-new-btn--no-style {
    border: none;
    background: none;
    appearance: none;
    padding: 0;
    text-decoration: none;
}

.tt-logo {
    display: block;
}

.tt-logo--white {
    color: #ffffff;
}

.tt-logo--sm {
    width: 4rem;
    height: 2.4rem;
}

.tt-logo__svg {
    fill: currentColor;
}

/* Body container */

.content {
    padding: 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex-direction: row;
}

.col {
    padding: 10px;
    flex: 1;
}

.col-1 { flex: 0 0 8.33%; }  
.col-2 { flex: 0 0 16.66%; } 
.col-3 { flex: 0 0 25%; }    
.col-4 { flex: 0 0 33.33%; } 
.col-6 { flex: 0 0 50%; }    
.col-12 { flex: 0 0 100%; } 

@media (max-width: 768px) {
  .col { flex: 0 0 100%; }
}

.overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.overlay a {
    color: #e6007e; /* Magenta color */
    text-decoration: none;
    font-size: 24px;
    display: block;
    margin-top: 5px;
}

/* Text */

.subtitle {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 96%;
    margin: 0;
    hyphens: auto;
    font-family: ProximaNova, sans-serif;
    color: #e4067e;
}

/* Image */

.faculty {
    position: relative;
    width: 220px;
    height: 220px;
    overflow: hidden;
}

.faculty img {
    object-fit: cover;
    width: 220px;
    height: 220px;
    filter: grayscale(100%);
    transition: all .3s ease;
    
}

.faculty:hover img {
    object-fit: cover;
    filter: grayscale(0%);
    transform: scale(1.2);
}

.ago {
    object-fit: cover;
    filter: grayscale(100%);
}

.t-btn--primary {
    font-size: 1.125rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    border: 4px solid #e4067e;
    line-height: 1.25rem;
    background-color: #e4067e;
    transition: all .3s ease;
    display: inline-block;
    text-decoration: none;
    padding: calc(1.1rem - 4px) calc(2.3125rem - 4px) calc(1.4rem - 4px);
    border-radius: 60px;
}