@media screen and (min-width: 1400px) {
    #main:not(:only-child) {
        width:calc(100% - 300px - 50px)
    }
}

body {
	padding-bottom: 60px;
}

.homeHeader {
    font-size: 400%;
    font-weight: 300;
    text-align: center;
}

.course-short{
    font-family: Cambria, Georgia, serif;
    padding-bottom: 1%;
}

.course-details{
    
}

.applygrey{
    background-color: #e9ecef;    
}
.footer {
	color: white;
	background-color: #151718;
	text-align: center;
}

.container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px;
}

.subscribe-form {
	margin-right: auto;
}

.block-label {
	display: block;
	margin-bottom: 5px;
}

.input-container {
	display: flex;
	text-align: right;
	margin-bottom: 5px;
	margin: 1%;
}

.input-container input[type="email"] {
	width: 330px;
	margin-right: 10px;
}

.input-container button {
	width: 120px;
	background-color: #ff5c35;
}

.footer-text {
	text-align: right;
    font-size: x-large;
    font-weight: bold;
    margin-top: 10px;
    margin-bottom: 5px;
}

.article-header {
    font-size: 200%;
    font-weight: bold;
    text-align: center;
}
.article-subheader {
	font-size: 150%;
    font-weight: bold;
}
pre {
	margin-bottom: -25px;
}
.bullet-header {
    font-size: 110%;
    font-weight: bold;
}

.is-valid{
	border-width: medium;
    border-color: #28a745;
    padding-right: 3.375rem;
    background-repeat: no-repeat;
    background-position: center right calc(3.375rem / 4);
    background-size: calc(3.375rem / 2) calc(3.375rem / 2);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

.is-invalid{
	border-width: medium;
    border-color: #dc3545;
    padding-right: 3.375rem;
    background-repeat: no-repeat;
    background-position: center right calc(3.375rem / 4);
    background-size: calc(3.375rem / 2) calc(3.375rem / 2);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23d9534f' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
}

.text-limit {
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Adjust line clamp based on content */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 6em; /* Adjust based on font-size and line-height */
}