@import "global.css";

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: normal;
   	font-family: 'Montserrat', sans-serif;
}

h1 {
    font-size: clamp(2rem, 7vw, 3.4rem);
    margin-bottom: 0.4em;
}

h2 {
    font-size: clamp(1.5rem, 5vw, 1.8rem);
}

h3 {
    font-size: 1.2rem;
}

p {
    line-height: 1.5em;
    margin: 14px 0;
}


#header-right-area #badge-version {
    white-space:nowrap;
    padding: 10px 16px;
    background-color: #E9F9F2;
    font-size: 12px;
    font-weight: 600;
    color: #119D89;
    border-radius: 6.25rem;
    border: 1px solid #119D89;
}

#banner {
    width: 100%;
    height: 360px;
    color: #f9f9f9;

    background: #119d89;
    background: linear-gradient(135deg, rgba(15,77,116,1) 0%, rgba(31,129,190,1) 33%, rgba(17,157,137,1) 65%, rgba(20,132,117,1) 100%);
}

#banner p {
    font-size: clamp(1rem, 3vw, 1.2rem);
}

.banner-content {
    max-width: 1800px;
    margin: 0 auto;
    
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    text-align: center;
    padding: 10px;

    height: 100%;
}

.banner-content h1 {
	margin: 0;
}

.content {
    max-width: 1280px;
    width: 100%;
    
    margin: 0 auto;
    padding: 60px 20px;
    
    display: flex;
    flex-flow: column nowrap;
    gap: 15px;
}

.grid {
    display: grid;
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    min-width: 250px;
    height: 300px;

    display: flex;
    flex-direction: column;
    position: relative;

    border-radius: 12px;
    background: #fff;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.card-header {
    width: 100%;
    height: 80px;

    border-radius: 12px 12px 0px 0px;
    background-color: #119D89;
    color: #FFF;

    padding: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.card-header h2 {
    padding: 0;
    margin: 0;
}

.card-body {
    height: 100%;
    padding: 24px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card a {
    font-weight: 600;
    cursor: pointer;
    display: block;
    color: rgb(50, 50, 159);
    text-decoration: none;
}

.card a:hover {
    transition: all 200ms;
    color: rgb(104, 104, 207);
}

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

    #nav-header {
        flex-grow: 0;
    }

    #nav-header nav {
        display: none;
    }

}