

@font-face {
    font-display: swap;
    font-family: "Poppins";
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: "Poppins";
    font-weight: 500;
    font-style: normal;
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
}

@font-face {
    font-display: swap;
    font-family: "Poppins";
    font-weight: 600;
    font-style: normal;
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
}

:root {
    --color-lilac: #7752fe;
    --color-navy-blue: #190482; 
    --color-light-purple: #f1edff;
}

*, body, html {
    font-family: "Poppins", sans-serif;
    margin: 0;
    box-sizing: border-box;
    font-weight: 400;
    text-wrap: wrap;
}

body, html {
    font-size: 1rem;
}

a {
    color: initial;
    text-decoration: none;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

img, iframe {
    width: 100%;
}

.fs-4r {
    font-size: 4rem;
}

.text-lilac {
    color: var(--color-lilac) !important;
}

.text-navy-blue {
    color: var(--color-navy-blue) !important;
}

.btn-lilac {
    padding: 0.7rem 1.5rem;
    background-color: var(--color-lilac);
    color: #ffffff;
}

.btn-lilac:hover, .btn-lilac:focus, .btn-lilac:active {
    padding: 0.7rem 1.5rem;
    background-color: #8466f1 !important;
    color: #ffffff !important;
}

.bg-light-purple {
    background-color: var(--color-light-purple);
}

.title {
    font-size: 3rem;
}


a.nav-link {
    color: rgba(255, 255, 255, 0.7) !important;
}

a.nav-link:hover {
    color: #ffffff !important;
}

footer li a:hover {
    color: var(--color-lilac) !important;
}

.parallax {
    background-image: url('../images/header-faculty-1600.webp');
    background-attachment: fixed;
    height: 60vh;
    background-size: cover;
    background-position: center;
}

.parallax::before {
    position: absolute;
    content: "";
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000;
    opacity: 0.1;
}

.parallax-two {
    background-image: url('../images/bg_footer.webp') !important;
}

.hero-title {
    font-size: 5rem !important;
}

.hero-subtitle {
    font-size: 4.5rem !important;
}

.hero-subtitle-two {
    font-size: 3.5rem !important;
}

.nav-fixed, .nav-static > nav {
    background: #0f1014;
    top: 0;
    animation: bottom 0.3s ease;
}

.nav-fixed, .nav-static > .nav-fixed {
    position: fixed !important;
}

.nav-static > nav {
    position: relative !important;
}

.content-sup {
    border-radius: 3rem;
    margin-top: -10rem;
    position: relative;
}

.accordion-button:not(.collapsed) {
    background-color: var(--color-light-purple) !important;
}

.contain-youtube {
    display: block; 
    margin: 20px auto; 
    width: 100%; 
    max-width: 600px;  
}
.player { 
    border-radius: 5px;
    display: block; 
    width: 100%; 
    height: 100%; 
    padding-bottom: 56.25%; 
    overflow: hidden; 
    position: relative; 
    cursor: hand; 
    cursor: pointer; 
}
img.imagen-preview { 
    display: block; 
    left: 0; 
    bottom: 0;
    margin: auto; 
    max-width: 100%; 
    width: 100%; 
    position: absolute; 
    right: 0; 
    top: 0; 
    height: auto 
}
div.youtube-play { 
    height: 64px; 
    width: 64px; 
    left: 50%; 
    top: 50%; 
    margin-left: -36px; 
    margin-top: -36px;
    opacity:0.7;
    position: absolute; 
    background:   url("https://cdn2.iconfinder.com/data/icons/social-icons-color/512/youtube-64.png") no-repeat; 
}

div.youtube-play:hover{
    opacity:1; 
}

#youtube-iframe { 
    width: 100%; 
    height: 100%; 
    position: absolute; 
    top: 0; 
    left: 0; 
}

.accordion-button:focus {
    z-index: 1 !important;
}

@media screen and (max-height: 690px) {
    .parallax {
        height: 100vh;
    }
}

@media screen and (max-width: 1500px) {
    .content-sup {
        margin-top: -15rem;
    }
}

@media screen and (max-width: 991px) {
    .list-program > div:not(:last-child) .card {
        border: none !important;
        border-bottom: 1px solid #787878 !important;
        border-radius: 0;
    }
    
    .hero-section {
        height: 50vh !important;
    }

    .hero-section.parallax {
        background-attachment: local;
    }

    .parallax-two {
        background-image: url('../images/bg_footer-900.webp') !important;
        height: auto;
    }

    .content-sup {
        margin-top: 0;
        border-radius: 0;
    }
}

@media screen and (max-width: 767px) {
    .list-highlights img {
        height: auto;
    }
}

@media screen and (max-width: 800px) {
    .hero-title {
        font-size: 3rem !important;
    }
    
    .hero-subtitle {
        font-size: 2.5rem !important;
    }

    .hero-subtitle-two {
        font-size: 2rem !important;
    }

    .hero-image, footer .img-footer {
        width: 100% !important;
        height: auto;
    }

    .title {
        font-size: 2rem;
    }
}

@media screen and (max-width: 425px) {
    .fs-4r {
        font-size: 3rem;
    }
}

/* Keyframes */
@keyframes bottom {
    from {
        opacity: 0;
        transform: translateY(-1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}