body {
    font-family: "Playfair Display";
    /* font-family: "Roboto Slab"; */
    /* font-family: "Archivo Black"; */
    /* font-family: "Outfit"; */
    /* font-family: "Roboto"; */
    margin: 0;
    padding: 0;
}

header {
    /* background-color: #f0f0f0; */
    display: flex;
    justify-content: space-between;
    /* Pushes title to the left, links to the right */
    align-items: center;
    /* Vertically centers the title and links */
    padding: 1rem;
    /* Adds some padding around the header content */
    background-color: #f0f0f0;
    /* Light background color for the header */
    /* Other common header styles */
    /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  Adds a subtle shadow */
    /* border-bottom: 1px solid #ddd;  Adds a border at the bottom */
}

a {
    text-decoration: none;
}

.min-mobile-screen-width {
    min-width: 350px;
}

.header-img {
    object-fit: cover;
    width: 100%;
    height: 600px;
    filter: grayscale(60%) blur(1px);
}

.header-title {
    font-size: 1.5rem;
    /* Makes the title larger */
    font-weight: bold;
    /* Makes the title bold */
    color: #333;
    /* Darker text color for the title */
    margin-right: 30px;
}

.header-links {
    display: flex;
    /* Makes the links container a flex container */
    list-style: none;
    /* Removes the default list style (dots, numbers) */
    margin: 0;
    /* Reset default margin */
    padding: 0;
    /* Reset default padding */
}

.header-links a {
    color: Black;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 17px;
    display: block;
    font-weight: bold;
}

main {
    margin-bottom: 30px;
}

footer {
    border-top: 1px solid #ccc;
    padding-top: 10px;
    text-align: center;
}

/*align horizontally*/
.box-h {
    display: flex;
    flex-direction: row;
}

.small-margin {
    margin: 18px;
}

/*align vertically*/
.box-v {
    display: flex;
    flex-direction: column;
}

.justify-center {
    justify-content: center;
}

.container {
    position: relative;
    text-align: center;
    color: #e8edee;
    line-height: 40px;
}

.overlay-text {
    position: absolute;
    top: 0px;
    left: 0px;
    max-width: 100%;
    height: 600px;
    /* font-weight: 900; */

    background-color: rgb(0 83 116 / 33%);
    /* padding: 20px; */
    /* margin: 10px; */

    /* border: #3b48537d;
    border-width: thin;
    border-style: solid; */
}

.overlay-text h2 {
    padding-top: 50px;
}

.overlay-text-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    line-height: 100px;
}

.overlay-header {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-weight: 150;
    font-style: normal;
    padding: 0;
    margin: 0;
    margin-bottom: 50px;

}

.flex-1 {
    flex: 1;
}

.flex-2 {
    flex: 2;
}

.flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.resource-box {
    max-width: 316px;
    position: relative;
    text-align: center;
    color: black;
}

.resource-box>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0;
}

.resource-box>img:hover {
    opacity: 1;
}

.resource-box:hover {
    color: white;
}

.resource-box:hover>img {
    opacity: 1;
}

.resource-box:hover>svg {
    color: white;
}


.resource-box>a {
    left: 0;
    position: absolute;
    color: inherit;
}

h2 {

    font-size: 120px;
    font-weight: bold;
    /* line-height: 133px;
    color: rgba(169, 126, 99, 0);
    */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #3bb9eec4;
    color: #3bb9eec4;

    font-optical-sizing: auto;
    font-style: normal;
}

@media only screen and (max-width: 600px) {
    h2 {

        font-size: 60px;
    }
}


/* Accordion */
.accordion {
    /* background-color: #eee; */
    background-color: #ebf9ff;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.active.accordion::after { 
    content: "\f077";
    font-family: 'FontAwesome';
    float: right;
}
.accordion::after { 
    content: "\f078";
    font-family: 'FontAwesome';
    float: right;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active,
.accordion:hover {
    background-color: #cef0ff;
}

/* Style the accordion panel. Note: hidden by default */
.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
    overflow: hidden;
    line-height: 30px;
}

.panel ul {
    list-style-type: none;
}

:hover .panel a {
    color: #545264;
}

.panel a:hover {
    color: #b7c1cd;
}

/*End Accordion*/

/*Quote Line*/
.quote-line {
    position: relative;
    width: 10px;
    height: inherit;
    border-left: 1px solid #29B6F2;
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 15px;
    margin-right: 10px;
}

.quote-line-rect {
    position: absolute;
    width: 3px;
    aspect-ratio: 1;
    border: 1px solid #29B6F2;
    background: #29B6F2;
}

.quote-line-top-left {
    top: -3px;
    left: -3px;
}

.quote-line-bottom-left {
    bottom: -3px;
    left: -3px;
}

/*End Quote Line*/


/*Hamburger Menu*/
#top-nav ul {
    list-style: none;
    padding: 0;
}

#top-nav ul li {
    display: inline;
    margin-right: 10px;
}

#h-nav {
    display: none
}

.menu-container {
    display: none;
}

@media only screen and (max-width: 600px) {
    #top-nav {
        display: none
    }

    header {
        justify-content: space-between;
    }


    .menu-container {
        display: inline-block;
        cursor: pointer;
    }

    .menu-bar1,
    .menu-bar2,
    .menu-bar3 {
        width: 35px;
        height: 5px;
        background-color: #333;
        margin: 6px 0;
        transition: 0.4s;
    }

    .menu-change .menu-bar1 {
        transform: translate(0, 11px) rotate(-45deg);
    }

    .menu-change .menu-bar2 {
        opacity: 0;
    }

    .menu-change .menu-bar3 {
        transform: translate(0, -11px) rotate(45deg);
    }

    #h-nav {
        display: none
    }

    #h-nav.menu-change {
        display: block !important
    }


    #h-nav a {
        color: Black;
        padding: 14px 16px;
        text-decoration: none;
        font-size: 17px;
        display: block;
    }
}

/*End Hamburger Menu*/