@media screen and (min-width:601px) {
    h1 {
        font-family: Montserrat, Arial, sans-serif;
        color: #58ce50;
        font-size: 50px;
        text-align: center;
    }
}
    
@media screen and (max-width:600px) {
    h1 {
        font-family: Montserrat, Arial, sans-serif;
        color: #58ce50;
        font-size: 30px;
        text-align: center;
    }
}

h2 {
	font-family: Montserrat, Arial, sans-serif;
	font-size: 17px;
	text-align: center;
}
    
h4 {
    font-family: Montserrat, Arial, sans-serif;
    color: #170303;
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    padding: 5px;
    margin: 5px;
}

/* The navigation menu */
.navbar {
	overflow: hidden;
	background-color: #58ce50;
	border-radius: 10px;
}

/* Navigation links */
.navbar a {
	float: left;
	font-size: 12px;
	color: black;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-family: Montserrat, Arial, sans-serif;
}

.image-container {
	position: relative;
	display: inline-block;
	width: 100%;
}

.image-container img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 10px;
}

.organisationText {
    width: auto;
    border: none;
    padding: none;
    font-family: Montserrat, Arial, sans-serif;
    text-align: center;
    font-size: 16px;
}

@media screen and (min-width:601px) {
	
    .welcomeText {
        background-color: none;
        width: auto;
        border: none;
        padding: none;
        margin: 20px 190px 20px 190px;
        font-family: Montserrat, Arial, sans-serif;
        text-align: center;
        font-size: 16px;
    }
}
    
@media screen and (max-width:600px) {
       
    .welcomeText {
        background-color: none;
        width: auto;
        border: none;
        padding: none;
        margin: 20px 20px 20px 20px;
        font-family: Montserrat, Arial, sans-serif;
        text-align: justify;
        font-size: 12px;
    }
}

@media screen and (min-width:601px) {
    .programLayout {
        display: flex;
        flex-direction: row;
        column-gap: 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }
}
    
@media screen and (max-width:600px) {
    .programLayout {
        display: flex;
        flex-direction: column;
        column-gap: 20px;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: flex-start;
    }
    .text1 {
        order:2;
    }
    .image1{
        order:1;
    }
}

.programWelcome {
	align-items: center;
}

.programArticleImage {
	width: 300px;
	border-radius: 10px;
}

.organisationArticleImage {
	width: 200px;
	border-radius: 100px;
}

@media screen and (min-width:601px) {
    .programBox {
        background-color: none;
        width: auto;
        border: none;
        padding: none;
        margin: 20px 20px 20px 20px;
    }
}
    
@media screen and (max-width:600px) {
    .programBox {
        background-color: none;
        width: auto;
        border: none;
        padding: none;
        margin: 20px 20px 20px 20px;
    }
}

@media screen and (min-width:601px) {
    .programBox2 {
        background-color: none;
        width: auto;
        border: none;
        padding: none;
        margin: 20px 90px 20px 90px;
    }
}
    
@media screen and (max-width:600px) {
    .programBox2 {
        background-color: none;
        width: auto;
        border: none;
        padding: none;
        margin: 20px 20px 20px 20px;
    }
}

@media screen and (min-width:601px) {
    .programBoxO {
        background-color: none;
        width: auto;
        border: none;
        padding: none;
        margin: 20px 150px 20px 150px;
    }
}
    
@media screen and (max-width:600px) {
    .programBoxO {
        background-color: none;
        width: auto;
        border: none;
        padding: none;
        margin: 20px 150px 20px 150px;
    }
}

.button.color1 {
    background-color: #58ce50;
    border-color: #58ce50;
}

a.button {
    margin-right: 3px;
}

.button {
    height: auto;
}

.button, .button:hover {
    color: #fff;
    text-decoration: none;
}

.button {
    font-family: Montserrat, Arial, sans-serif;
    font-size: .75rem;
    background-color: #03a9f4;
    border-radius: 5px;
    min-width: 7rem;
    padding: .55rem 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    line-height: 1.5rem;
    border: 2px solid #03a9f4;
    vertical-align: middle;
    margin-bottom: .75rem;
}

/* Notification */
.notification {
	overflow: hidden;
	background-color: #DEB887;
	border-radius: 10px;
}

/* Hero Section */
.hero {
    background: url("images/hero_initiation.png") no-repeat center center/cover;
    height: 105vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    text-align: center;
    padding: 20px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.cta-buttons a {
    font-family: Arial, sans-serif;
    margin: 20px 10px;
    padding: 15px 30px;
    background-color: #f0a500;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-buttons a:hover {
    background-color: #d07e00;
}

@media screen and (max-width:600px) {

}