* {
    box-sizing: border-box;
}


body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
    margin: 0;
    padding: 0;
    font-family: "Helvetica", sans-serif;
}


article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
    display: block;
}


address, caption, cite, code, dfn, em, strong, th, var {
    font-style: normal;
}



b, strong {
    font-weight: bold;
}


div {
    display: block;
}


h1, h2, h3, h4, h5, h6 {
    font-size: 100%;
}


h1 {
    display: block;
    font-size: 2em;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}


h2 {
    display: block;
    font-size: 1.5em;
    margin-block-start: 0.83em;
    margin-block-end: 0.83em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
}


li {
    list-style-type: none;
}


a:link, a:visited {
    text-decoration: none;
    color: #1a1a1a;
}


body {
    font-family: 'MS PGothic', Sans-Serif;
    font-size: 10px;
    line-height: 1.7;
    background-color: #f2f2f2;
    min-width: 320px;	
    overflow-y: scroll;
    overflow-x: hidden;
    color: #1a1a1a;
}

	
#wrap {
    min-height: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
    overflow: hidden;
    padding-top: 60px;
}


header {
    position: fixed;
    height: 60px;
    top: 0px;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff;
    border-bottom-color: rgba(0,0,0,0.1);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 0px 0px;
}


nav {
    height: 60px;
    font-size: 1.8em;
}


.nav-bar {
    margin: 0 15px 0 15px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    position: relative;
}


.nav-links {
    display: flex;
    justify-content: flex-start; /* or 'space-between' depending on your design needs */
    align-items: center;
    position: relative;
    left: 0%;
    width: 100%;
}


.nav-link a {
    display: inline-block;
    color: #1a1a1a;
    padding: 5px 8px;
    margin: 0 15px; /* Adjust the margin as necessary */
    text-decoration: none;
    font-size: 0.9em;
    border-radius: 3px;
    letter-spacing: 0.05em;
    transition: background-color 0.3s, color 0.3s;
    font-family: 'MS PGothic', Sans-Serif;
}


.nav-link a:hover {
    color: #fff;
    background-color: rgba(0, 86, 210, 0.6);
}


.nav-link a:active {
    color: #fff;
    background-color: rgba(0, 86, 210, 0.8);
    transition: background-color 0.1s;
    transform: scale(0.95);
}


#logo {
    position: absolute;
    right: 0%;
    align-items: center;
    display: flex;
    justify-content: flex-end;
    font-family: 'Calibre-Bold', "MS PGothic", sans-serif;
    font-weight: bold;
    letter-spacing: 0.2em;
    min-width: 400px;
}


#logo-text-long {
    display: inline-block;
    color: #1a1a1a;
    padding: 0px 10px;
    text-decoration: none;
    font-size: 0.5em;
    opacity: 1;
    transition: opacity 2s ease-out;
}


#logo-text-short {
    display: none;
    opacity: 0.5;
}


#logo a:hover {
}


#contents-wrap {
    overflow-y: scroll;
    min-height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #f2f2f2;
}


#contents {
    width: 100%;
    height: 100%;
    position: relative;
    padding-bottom: 100px;
    background-color: #f2f2f2;
}


#course-gallery {
    position: relative;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: 50px 10px;
    margin: 0;
}


.entry {
    overflow: hidden;
    flex: 0 1 31.333%;
    width: 31.333%;
    height: auto;
    object-fit: cover;
    margin: 1% 1% 0 1%;
}


.entry a {
     margin: 10px;
}


.entry .thumb-wrap {
     position: relative;
     z-index: 1;
     margin: 0px 5px;
}


.entry .thumb-wrap .thumb {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    transition: transform 0.5s, box-shadow 0.5s ease;
}


.entry .thumb-wrap .thumb:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgb(0 0 0 / 0.1);
    opacity: 0.7;
}


.entry .thumb-wrap .meta {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    border-radius: 10px;
    background-color: rgba(0, 50, 140, 1);
    opacity: 0;
    color: white;
    padding: 5% 5%;
    transition: opacity 0.5s ease;
}


.entry .thumb-wrap .meta strong {
   font-size: 2em;
}


.entry .thumb-wrap .meta p {
   font-size: 1.8em;
}


.entry .thumb-wrap .meta:hover {
    opacity: 0.8;
}


.entry .thumb-wrap .meta:active {
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    transition: transform 0.1s ease;
    background-color: rgba(0, 86, 210, 0.5);
    opacity: 1;
}


.thumb-wrap:active {
    transition: transform 0.2s ease;
    transform: scale(0.95);
}


.thumb img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


img, object, embed {
    vertical-align: top;
}


img {
    border: 0;
}

#coming-soon {
    height: 50%;
    width: 50%;	
}


footer #copyright {
    font-family: 'Calibre-Regular', "MS PGothic", sans-serif;
    letter-spacing: 0.15em;
    font-size: 1.2em;
    padding: 20px 0 10px;
    text-align: center;
    letter-spacing: 0.05em;
}


@media only screen and (max-width: 800px) {
header {
    margin: 0;
}

#logo {
    letter-spacing: 0.2em;
}

#logo-text-long {
    display: none;
    opacity: 0;
 }


#logo-text-short {
    display: inline-block;
    color: #1a1a1a;
    padding: 0px 10px;
    text-decoration: none;
    font-size: 0.5em;
    opacity: 1;
 }
}


@media only screen and (max-width: 900px) {
.entry {  
    flex: 0 1 47%;
    width: 47%;
    height: auto;
 }
}



@media only screen and (max-width: 450px) {
.entry {  
    flex: 1 1 94%;
    width: 94%;
    height: auto;
 }

.meta {  
    opacity: 0;
 }

.hidden-small {
    display: none;
 }
}

@media only screen and (max-width: 800px) {
footer #copyright {
    letter-spacing: 0.05em;
    font-size: 1em;
 }
}


#top {
    text-align: center;
    font-size: 2em;
    font-family: 'Helvetica', Sans-Serif;
    letter-spacing: 0.05em;
}


.columns {
  -webkit-column-count: 2;
  -moz-column-count: 2;
  column-count: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  marging: 80px auto;
}

.columns-one-presenter {
  marging: 80px auto;
}


.single-columns {
  -webkit-column-count: 1;
  -moz-column-count: 1;
  column-count: 1;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
  marging: 80px auto;
}


.column {
    text-align: center;
    padding: 40px 20px;
    font-size: 1.4em;
    text-align: left;
    font-family: 'Helvetica', sans-serif;
    background-color: white;
    border-radius: 10px;
    margin: 40px 20px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

.single-column {
    display: block;
    text-align: center;
    width: 80%;
    padding: 10px 30px 40px 40px;
    font-size: 1.4em;
    text-align: left;
    font-family: 'Helvetica', sans-serif;
    background-color: white;
    border-radius: 10px;
    margin: 20px auto;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
}

#presenter-section {
    font-family: 'Helvetica', sans-serif;
    background-color: #8a8a8a;
    border-radius: 0px;
    color: white;
    text-align: center;
    padding-top: 30px;
}


#presenter-columns {
    text-align: center;
    padding: 0 10px;
    font-size: 1.2em;
    text-align: justify;     
}


.presenter-column {
    text-align: left;
    padding: 20px;
    font-size: 1.2em;
    text-align: justify;
    font-family: 'Helvetica', sans-serif;
    background-color: rgba(0, 86, 210, 0.5);
    border-radius: 5px;
    margin: 0px 0 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.presenter-column .presenter-name {
    font-size: 1.2em;
}

.presenter-column-1 .presenter-name {
    font-size: 1.2em;
}

.presenter-qualifications {
    align-items: center;
    font-size: 0.9em;
    margin: 0 auto;
}

.presenter-qualification .break {
    display: none;
}

@media (max-width: 1200px) { /* Adjust based on your needs */
    .presenter-qualification .break {
        display: inline-block;
        width: 100%;
        height: 0;
    }
}


.container-start-second-column {
  break-before: column;
}

#top {
    text-align: left;
    margin: 20px 25px;
}


#top #course-name {
    marging: 0;
    padding: 0;
}


#top #short-description {
    marging-bottom: 20px;
    padding: 0;
    font-size: 0.9em;

}

#top #location {
    marging-top: 20px;
    padding-top: 20px;
    font-size: 0.9em;
}


#top #address-location {
    font-size: 0.7em;
}


.course-heading {
    text-align: center;
}


.course-description {
    font-size: 1.2em;
    text-align: justify;
}

.sub-heading {
    font-weight: normal;
}


.description-list {
    text-align: justify;
}

.description-list li {
    list-style-type:disc;
}


.register-btn {
    display: block;
    width: 200px;
    margin: 20px 25px;
    padding: 10px;
    text-align: center;
    background-color: rgba(0, 86, 210, 1);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.8em;
    letter-spacing: 0.05em;
    font-family: 'Helvetica', sans-serif;
    transition: background-color 0.3s, color 0.3s;
    font-weight: bold;
    box-shadow: 0 3px 10px rgb(0 0 0 / 0.2);
    transition: transform 0.5s, box-shadow 0.5s ease;
}


.register-btn:hover {
    color: #fff;
    background-color: rgba(0, 40, 100, 1);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.1);
}


.register-btn:active {
    transform: scale(0.95);
}


.read-more-btn {
    display: block;
    width: 120px;
    margin: 20px auto;
    padding: 7px 5px 5px 5px;
    text-align: center;
    background-color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9em;
    letter-spacing: 0.05em;
    font-family: 'Helvetica', sans-serif;
    transition: background-color 0.2s, color 0.2s;
}


.read-more-btn:hover {
    color: #fff;
    background-color: rgba(0, 86, 210, 0.6);
}


.read-more-btn:active {
    transform: scale(0.95);
}


#in-partnership {
    width: 100%;
    background-color: white;
    background-image: linear-gradient(white 75%, #f2f2f2);
    font-size: 2em;
    text-align: justify;
    font-family: 'Helvetica', sans-serif;
    padding: 40px 0 80px 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


@media only screen and (max-width: 910px) {
.columns {
   -webkit-column-count: 1;
   -moz-column-count: 1;
   column-count: 1;
}

.column {
    display: block;
    width: 80%;
    padding: 10px 30px 40px 40px;
    margin: 20px auto; 
}

.container-start-second-column {
    break-before: auto;
 }
}


#contact-container {
    width: 100%;
    padding: 100px 30px 200px 30px;
    background-color: white;
}

#contact-container h2 {
   text-align: center;

}


.instructor-profile-pic {
    border-radius: 50%;
    margin: 0 auto;
}


#form-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-even;
}

#google-form {
    margin: 20px auto;
}