@font-face {
    font-family: 'Lexend1';
    src: url('../font/Lexend.woff2'.woff2) format('woff2');
  }

@font-face {
    font-family: 'KC Obra Letra';
    src: url('../font/subset-KCObraLetraBold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Lexend';
    src: url('../font/subset-Lexend-Regular.woff2') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Playfair';
    src: url('../font/PlayfairDisplay-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Benedict';
    src: url('../font/Benedict\ Regular.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Garamond'; /* Name of the font */
    src: url('../font/EBGaramond08-Regular.woff') format('woff'); /* Path to the font file */
    font-weight: normal; /* Specify the font weight */
    font-style: normal; /* Specify the font style */
    font-display: swap; /* Optional: Fallback text display while font loads */
}
@font-face {
  font-family: 'Montserrat'; /* Name of the font */
  src: url('../font/monserrat/Montserrat-Regular.woff') format('woff2'); /* Path to the font file */
  font-weight: normal; /* Specify the font weight */
  font-style: normal; /* Specify the font style */
  font-display: swap; /* Optional: Fallback text display while font loads */
}

@font-face {
    font-family: 'Roboto'; /* Name of the font */
    src: url('../font/Roboto-Regular.woff2') format('woff2'); /* Path to the font file */
    font-weight: normal; /* Specify the font weight */
    font-style: normal; /* Specify the font style */
    font-display: swap; /* Optional: Fallback text display while font loads */
}

/* Set height for parent elements */
html, body {
    margin: 0; /* Remove default margins */
    padding: 0; /* Remove default padding */
    box-sizing: border-box;
    font-family: 'Lexend1';
}

body {
    font-family: 'KC Obra Letra', sans-serif;
    display: flex;
    flex-direction: column; /* Align elements vertically */
}
/* Opportunities Section Styling */
.section-container {
    width: 80%;
    margin: 50px auto;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Section Title */
.section-title {
    text-align: center;
    background: linear-gradient(90deg, #6a5acd, #8a2be2);
    color: #fff;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.section-title h1 {
    margin: 0;
    font-size: 2.5em;
    letter-spacing: 1px;
}

/* Content Section */
.section-content {
    padding: 20px;
    line-height: 1.8;
    background: #f9f9f9;
    border-radius: 0 0 12px 12px;
}

.opportunity {
    margin-bottom: 30px;
    padding: 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.opportunity h2 {
    font-size: 1.8em;
    color: #6a5acd;
    margin-bottom: 10px;
    border-bottom: 2px solid #8a2be2;
    padding-bottom: 5px;
}

.opportunity h3 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.opportunity p, 
.opportunity ul li {
    font-size: 1em;
    color: #333;
    margin-bottom: 10px;
}

.opportunity ul {
    padding-left: 20px;
    list-style: disc;
}

.opportunity a {
    color: #6a5acd;
    font-weight: bold;
    text-decoration: none;
    border-bottom: 1px dashed #6a5acd;
    transition: color 0.3s ease, border-bottom 0.3s ease;
}

.opportunity a:hover {
    color: #8a2be2;
    border-bottom: 1px solid #8a2be2;
}


/* Scroll-to-top button styles */
#scrollTop {
    position: fixed;
    right: 20px;
    bottom: 50px;
    display: none; /* Initially hidden */
    z-index: 9999; /* Ensure it's above other elements */
}

#scrollTop a img {
    width: 50px; /* Adjust the width of the image */
    height: 50px; /* Adjust the height of the image */
    border-radius: 50%; /* Optional: make it circular */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease; /* Add animation on hover */
}

#scrollTop a img:hover {
    transform: translateY(-5px) scale(1.1); /* Slight hover animation */
}
