* {
    list-style: none;
    box-sizing:border-box;
}

html, body {
    height: 100%;
    background: white;
    background-size: cover;
    background-repeat: repeat;
}

/*Variables*/
:root {
    --primary-gradient: linear-gradient(to right, green, white);
    --secondary-gradient: linear-gradient(to right, yellow, gold);
    --School-Name-Font: "Cinzel", serif;
    --Heading-Font: "Arial", sans-serif;
    --Century-Gothic: "Century Gothic", sans-serif;
    --Montserrat: "Montserrat", sans-serif;
    --Roboto: "Roboto", sans-serif;
    --primary-shadow: 3px 4px 7px rgba(27, 27, 27, 0.534);
    --border-color: rgba(0, 0, 0, 329);
}

/* Header */

.header-top {
    background-color: white;
    width: 100%;
    display: inline-grid;
    overflow: auto;
}

.header-right {
    position: absolute;
    float: right;
    display: inline;
    overflow: hidden;
    top: 10px;
    right: 20px;
}

.right-nav {
    text-align: right;
    margin-top: 55px;
}

.right-nav a {
    font-family: var(--Heading-Font);
    text-decoration: none;
    font-size: 20px;
    padding: 20px;
    color: #00552b;
}

.right-nav a:hover {
    color: #574b0b;
    outline: 2px;
    outline-color: #00552b;
    text-decoration: underline;
    text-decoration-color: #00552b;
}



#today {
    padding: 10px;
    background-color: #00552b;
    font-family: var(--Heading-Font);
    height: 30px;
    position: relative;
    text-align: right;
    margin-bottom: 20px;
    width: 600px;
    float: right;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 100%);
}

#today p::before {
    content: "Today is ";
    color: white;
    margin-right: 20px;
}

#today p {
    letter-spacing: 3px;
    color: #ffd700;
    margin-top: -5px;
}
/* Logo of the School */

.logo-area {
    padding: 10px;
    vertical-align: center;
    width: 50%;
}

.logo-area img {
    width: 70px;
    height: auto;
    float: left;
    margin-left: 10px;
    margin-right: 20px;
    padding-top: 10px;
}


/* Name of the School */

.nav-banner a {
    text-decoration: none;
    font-family: var(--School-Name-Font);
    color: #00552b;
    font-weight: bold;
    font-size: 24px;
    line-height: 25px;
    padding-top: 12px;
    /* spaci; */
    vertical-align: center;
}

.nav-banner {
    margin-left: 100px;
    margin-top: 10px;
    width: 100%;
}

.nav-banner div {
    width: 50%;
}

.nav-banner p {
    font-family: var(--Roboto);
    font-style: bold;
    font-size: 15px;
    text-transform: uppercase;
}



.navbar .icon {
    display: none;
}

/* Main Navigation Menu */

.navbar {
    overflow: hidden;
    background-color: #00552b;
    font-family: var(--Heading-Font);
    height: auto;
}

.navbar a, .dropdown .dropbtn {
    float: left;
    font-size: 20px;
    height: 100%;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
}

/* Dropdown Menus */

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 20px;  
    text-align: center;
    border: none;
    outline: none;
    color: white;
    padding: 10px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
    width: 200px;
}

.navbar a:hover, .dropdown .dropbtn:hover {
    background-color: #ffd700;
    color: black;
}

a.active, .dropdown button.active {
    background-color: #ffd700;
    color: black;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    margin-top: 44px;
    font-family: var(--Heading-Font);
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    width: 100%;
    font-size: 20px;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Search the Web */

.search-web {
    float: right;
    margin-top: 0;
}

.search-web input[type=text] {
    padding: 6px;
    margin-top: 4px;
    font-size: 14px;
    border: solid 1px black;
    border-color: #00552b;
    height: 25px;
    width: 220px;
}

.search-web button {
    background-color: #00552b;
    color: white;
    padding: 5px;
    font-size: 10px;
}

.search-web {
    float: right;
    padding: 6px;
    border: none;
    margin-right: 24px;
    font-size: 10px;
}

/* Sticky Navigation Bar */

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
}

.sticky + .container {
    padding-top: 60px;
}

/* Footer */

footer {
    bottom: 0;
    /* position: sticky; */
}

footer .footer-top {
    background: #ffd700;
    padding: 10px;
    left: 0;
    bottom: 0;
    width: 100%;
}

footer .footer-bottom {
    background: #00552b;
    padding: 5px;
    bottom: 0;
    width: 100%;
}

.legal-links {
    background-color: #ffd700;
    width: 100%;
}

.legal-links a {
    opacity: 60%;
    color: black;
    display: inline;
    padding: 10px;
    font-family: var(--Heading-Font);
    font-size: 20px;
    text-decoration: none;
}

.legal-links a:hover {
    opacity: 100%;
}

.footer-links a {
    margin: 10px;
}

#scrollToTop {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007BFF;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.3s, transform 0.3s;
}

#scrollToTop:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100%);
    }
}

/* @media screen and (max-width: 800px) {
    .navbar a:not(:first-child), .dropdown .dropbtn, .search-web {
        display: none;
    }
    .navbar a.icon {
        float: right;
        display: block;
    }
}

@media screen and (max-width: 800px) {
    .navbar.responsive {position: relative;}
    .navbar.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .navbar.responsive a {
        float: none;
        display: block;
        text-align: center;
    }
    .navbar.responsive .dropdown {float: none;}
    .navbar.responsive .dropdown-content {
        position: relative;
        width: 70%;
    }
    .navbar.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: center;
    }
    .navbar.responsive .searchweb {
        position: relative;
        float: left;}
} */



/* Main Container */

div h3 {
    text-decoration: underline;
}

.container {
    min-height: 60%;
}

.container:not(.page-title) {
    padding: 10px;
	position: relative;
	max-width: 100%;
	margin: 5px auto;
	box-shadow: var(--primary-shadow);
	display: flex;
    height: auto;
    justify-content: top;
    align-items: top;
}

.container h1 {
    font-family: "Bookmark Old Style";
    text-transform: capitalize;
    text-transform: uppercase;
    font-size: 30px;
    text-align:center;
    margin-bottom: 20px;
}

/* Sidepane */

.sidepane {
    max-width: 25%;
    width: 25%;
    padding: 20px;
    margin-right: 5px;
}

.main-content {
    max-width: 100%;
    width: 70%;
    padding: 20px;
    margin: 18px;
    justify-content: center;
}



/* Panes */
.pane-title {
    background: #00552b;
    padding: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: Arial !important;
    color: white !important;
}

.pane-title a {
    font-family: var(--Roboto);
    font-weight: bold;
    font-size: 100%;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

.pane-title a:hover {
    color: #ffd700
}


.pane-content {
    background: white;
    padding: 10px;
    align-items: center;
    text-align: center;
    font-family: var(--Roboto);
}


.pane-content img:not(.thumbnail) {
    width: 100%;
}

.card {
    box-shadow: var(--primary-shadow);
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 20px;
}


hr {
    background-color: #00552b;
    height: 2px;
    border-radius: 200px;
}

/* President's Corner */

.president-corner blockquote p {
    font-family: var(--Roboto);
    font-style: italic;
    text-align: justify;
    font-size: 15px !important;
}

.president-corner h1 {
    font-family: "Century Gothic";
}

.president-corner h1 {
    font-size: 20px;
}

.president-corner h1 a {
    text-decoration: none;
    color: black;
}

.president-corner h1 a:hover {
    color: #00552b;
}

.president-corner p {
    font-size: 12px;
    margin: 3px;
}


.pane-button {
    background: #ffd700;
    color: black;
    padding: 10px;
    width: 100%;
    border: none;
    cursor: pointer;
}

.pane-button:hover {
    background: #00552b;
    color: white;
}

/* Featured Video */

#featured-video {
    position: relative;
    right: 1px;
    bottom: 0;
    width: 100%;
    height: auto;
}

.featured-video-description {
    position: relative;
    bottom: 0;
    color: black;
    width: 100%;
    padding: 20px;
    text-align: left;
}

.featured-video-description h2 {
    font-family: var(--Montserrat);
    font-weight: bold;
    font-size: 20px;
}

.featured-video-description p {
    font-family: var(--Roboto);
    font-size: 15px;
    text-align: justify;
}

/* Carousel / Slideshow */

/* Slideshow container */
.slideshow-container {
    max-width: 100%;
    position: relative;
    margin: auto;
  }

.mySlides img {
    height: 560px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 10px;
}
  
  /* Caption text */
  .text {
    float: left;
    color: #f2f2f2;
    font-size: 20px;
    padding: 10px;
    position: absolute;
    bottom: 2px;
    width: 100%;
    text-align: left;
    background-color: rgba(0,85,43);
    font-family: var(--Roboto);
    font-weight: bold;
    /* clip-path: polygon(0% 0%, 95% 0, 100% 50%, 95% 100%, 0% 100%); */
  }

  .text p {
    width: 80%;
    text-shadow: var(--primary-shadow);
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 20px;
  }
  
  /* Number text (1/3 etc) */
  .numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 10px;
    font-family: var(--Heading-Font);
    text-shadow: var(--primary-shadow);
  }

  #editCarousel {
    color: #f2f2f2;
    position: absolute;
    top: 10px;
    padding: 8px 12px;
  }

  /* "Read article" button */
  .slide-button {
    float: right;
    bottom: 32%;
    right: 21px;
    position: absolute;
    font-family: var(--Roboto);
    font-weight: bold;
    background-color: #ffd700;
    font-size: 10px;
    text-align: "center";
    text-decoration: none;
    padding: 10px;
    color: black;
    border-radius: 100px;
  }

  .slide-button:hover {
    background-color: #00552b;
    color: white;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    margin-bottom: 20px;
    background-color: #717171;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #00552b;
  }
  
  /* Fading animation */
  .fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1s;
    animation-name: fade;
    animation-duration: 1s;
  }
  
  @-webkit-keyframes fade {
    from {opacity: 1} 
    to {opacity: .4}
  }
  
  @keyframes fade {
    from {opacity: 1} 
    to {opacity: .4}
  }
  
  /* On smaller screens, decrease text size */
  /* @media only screen and (max-width: 300px) {
    .text {font-size: 11px}
  } */
  
  /* Quick Links */

  .dk-chip {
    display: inline-block;
    padding: 3px 32px;
    height: 230px;
    line-height: 35px;
    border-radius: 25px;
    background-color: #f1f1f1;
    outline-color:#00552b;
    outline-width: 1px;
    margin: 5px;
    overflow: hidden;
    cursor: pointer;
    width: 83%;
  }

  .dk-chip img {
    float: left;
    margin: 0 10px 0 -25px;
    height: auto;
    border-radius: 50%;
  }

  .dk-chip a, .dk-chip img {
    float: left;
  }

  .chip-container {
    width: auto;
    margin-bottom: 20px;
  }

  .chip {
    display: inline-block;
    padding: 3px 32px;
    height: 56px;
    font-size: 16px;
    line-height: 50px;
    border-radius: 25px;
    background-color: #f1f1f1;
    outline-color:#00552b;
    outline-width: 1px;
    margin: 5px;
    overflow: hidden;
    cursor: pointer;
  }

  .chip img {
    float: left;
    margin: 0 10px 0 -25px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
  }
  

  .chip a, .dk-chip a, .dk2-chip a {
    font-family: var(--Montserrat);
    font-weight: bold;
    color: #00552b;
    text-decoration: none;
  }

  .chip:hover, .dk-chip:hover, .dk2-chip:hover {
    box-shadow: var(--primary-shadow);
  }

  .dk2-chip a {
    margin-top: 10px;
  }

  .dk2-chip p {
    margin-top: 18px;
    line-height: 1;
    margin-left: 90px;
  }

  .dk2-chip img {
    float: left;
    margin: 22px 10px 0 -25px;
    height: 100px;
    width: 100px;
    border-radius: 50%;
  }


  .dk2-chip {
    display: inline-block;
    padding: 3px 32px;
    height: 160px;
    /* font-size: 12px; */
    line-height: 50px;
    border-radius: 25px;
    background-color: #f1f1f1;
    outline-color:#00552b;
    outline-width: 1px;
    margin: 5px;
    overflow: hidden;
    cursor: pointer;
    width: 40%;
  }

  /* Latest News and Updates */

  /* .latest-news-pane { 
    padding: 5px;
    display: inline-block;
  } */

  .thumbnail {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    width: 250px;
    height: 150px;
    object-fit: cover;
    cursor: pointer;
    float: left;
}


  .news-item-pane {
    width: 100%;
    /* border: 5px dotted #bbb; */
    margin: 10px;
    margin-right: 10px;
    max-width: 600px;
    height: 100%;
    position: relative;
    display: flex;
    cursor: pointer;
  }

  .news-item-pane h6 {
    position: relative;
    float: left;
    overflow: hidden;
    white-space: normal;
    text-overflow: ellipsis;
    /* margin-left: ; */
  }

  .news-item-pane h6 a {
    text-decoration: none;
    font-family: var(--Roboto);
    font-size: 12px;
    color: black;
  }

  .news-item-pane h6 a:hover {
    color: red;
  }

  .news-item-pane:hover {
    background-color: #00552b;
  }


  .news-description {
    font-family: "Century Gothic";
    font-size: 12px;    
    padding: 2px 16px;
    font-size: 10px;
    text-align: left;
  }

  .news-info {
    font-weight: bold;
  }

/* Upcoming Events */
.table-pane {
    font-family: var(--Montserrat);
    cursor: pointer;
}

.first-column {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    width: 20%;
    vertical-align: text-top;
}

.event-day {
    background-color: #00552b;
    color: white;
    padding: 5px;
}

.event-date {
    background-color: #ffd700;
    color: black;
    padding: 5px;
}

.second-column {
    text-align: left;
    width: 70%;
    padding-left: 10px;
    vertical-align: text-top;
}

.event-title {
    text-decoration: none;
    color:#00552b;
    font-weight: bold;
    font-size: 20px;
}

.event-time, .event-location {
    font-size: 15px;
}


.event-title:hover {
    color: red;
}

.table-pane tbody tr {
    margin: auto;
}

/* Lists */

ul {
    font-family: var(--Roboto);
    font-size: 20px;
    text-align: left;
    padding-left: 13px;
}

li a {
    text-decoration: none;
    color:#00552b;
}

li a:hover {
    color: red;
    font-weight: bold;
    margin-left: -3px;
}

li {
    margin: 10px;
}

ol li {
    list-style-type: decimal;
    
}

ul li {
    list-style-type: circle;
}

/* Lyrics of the Hymn */

.lyrics section p {
    text-align: center;
}

/* Buttons in Main Content */

.columns {
    display: flex;
}

.col {
    margin: 20px;
}

.col-button {
    background: none;
    border: none;
    padding: 10px;
    width: 100%;
    cursor: pointer;
    font-weight: bold;
    color:#00552b;
}

.col-button:hover {
    color: red;
}

/* Footer Contact Details */

.footer-contact-details {
    padding: 10px;
    font-size: 15px !important;
    display: contents;
}

.contact-info {
    font-weight: bold;
    margin-right: 20px;
    margin-top: -16px;
    margin-bottom: -21px;
    white-space: nowrap;
}

.contact-heading {
    font-family: var(--Montserrat);
    text-transform: uppercase;
    white-space: nowrap;
}

.contact-body {
    font-family: var(--Roboto);
    margin-left: 15px;
    margin-top: 0px;
    font-size: 18px !important;
}

.social-media a {
    font-size: 26px;
    padding-right: 10px;
    width: 130px;
}

.external-link-logos {
    padding: 5px;
}

.external-link-logos a:hover {
    box-shadow: var(--primary-shadow);
}

.footer-banner a {
    text-decoration: none;
    font-family: var(--School-Name-Font);
    color: #00552b;
    font-weight: bold;
    font-size: 24px;
    line-height: 25px;
    padding-top: 12px;
    /* spaci; */
    vertical-align: center;
}

.footer-banner {
    margin-left: 100px;
    margin-top: 10px;
    width: 300px;
}

.footer-banner div {
    width: 50%;
}

.footer-banner p {
    font-family: var(--Roboto);
    font-style: bold;
    font-size: 12px;
}




/* ABOUT */

.about-title {
    font-family: var(--Heading-Font);
}

.about-content h2 {
    font-family: var(--Heading-Font);
    font-size: 30px;
    color: #00552b;
}

.about-content p {
    font-family: var(--Roboto);
    font-size: 18px;
    text-align: justify;
}

#about-sidepane {
    font-family: var(--Roboto);
    font-size: 18px;
    margin-top: 0px;
}

#about-sidepane a {
    padding: 10px 6px 10px 19px;
    display: block;
    text-decoration: none;
    color:#00552b;
    margin-bottom: 10px;
}

/* .about-fact-item {
    font-style: italic;
} */

.filter-select select {
    font-family: var(--Roboto);
    padding: 10px;
    cursor: pointer;
    margin-right: 20px;
}

.filter-select select:hover {
    background-color: #00552b;
    color: white;
}

.main-table {
    font-family: var(--Roboto);
    border-color: #00552b;
}

.main-table th {
    background-color: #00552b;
    color: white;
}

.main-table tr td {
    padding: 5px;
    padding-right: 10px;
    vertical-align: middle;
}

.main-table tr td a {
    text-decoration: none;
}

.main-table tr td a:hover {
    color: red !important;
}


.about-content div table  {
    width: 100%;
}

.about-content div table tr  {
    width: 100%;
    padding: 10px;
}

a.sidenav-active {
    font-weight: bolder;
    background-color: #00552b;
    color: white !important;
    border-radius: 100px;
}

#about-sidepane a:hover:not(.sidenav-active) {
    background-color: #688576;
    border-radius: 100px;
    color: white;
}

/* Stripied Tables */
.main-table {
    border-collapse: collapse;
}

.main-table th, .main-table td {
    border: 1px solid #ddd;
    padding: 8px;
}
/* 
.main-table tr:nth-child(even) {
    background-color: #ccc;
} */

/* Snackbar (Popup Messages) */
.popup-message {
    visibility: hidden;
    min-width: 250px;
    margin-left: -124px;
    background-color: #ffd700;
    color: black;
    text-align: center;
    border-radius: 5px;
    padding: 16px;
    position: fixed;
    z-index: 1;
    left: 50%;
    bottom: 30px;
    font-size: 18px;
}

.popup-message.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
}

/* Thumbnail */
.heading-thumbnail {
    border-radius: 4px;
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
}

/* Pagination */


.pagination a {
    color: black;
    background-color: #ccc;
    float: left;
    right: 0;
    text-align: right;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    /* display: flex; */
}

.pagination {
    float: right;
    display: flex;
}

.pagination li a {
    font-size: 15px;
}

.pagination li {
    list-style: none;
}

.pagination .page-active {
    background-color: #00552b;
    color: white !important;
}

.pagination a:hover:not(.active) {
    background-color: #ffd700;
    color: black;
}

/* Row and Column Content */
.row-content {
    margin: 8px -16px;
}

/* .row-content,
.row-content > .column-content {
    padding: 8px;
} */

.column-content {
    float: left;
    width: 25%;
    padding: 10px;
}

.row-content:after {
    content: "";
    display: table;
    clear: both;
}

.img-thumbnail {
    background-color: white;
    padding: 10px;
    cursor: pointer;
    height: auto;
}

.img-thumbnail:hover {
    outline:#00552b;
}

.img-thumbnail h3{
    text-decoration: none;
    margin-top: 182px;
    text-overflow: ellipsis;
    text-align: center;
}

.img-thumbnail p, .w3-container p {
    overflow: hidden;
    -webkit-box-orient: vertical;
    text-align: justify;
    font-size: 18px;
}


.img-thumbnail img {
    width: 100%;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* @media screen and (max-width: 900px) {
    .column-content {
        width: 50%;
    }
}

@media screen and (max-width: 600px) {
    .column-content {
        width: 100%;
    } */
/* } */

/* The Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background-color: white;
    margin: auto;
    padding: 10px;
    width: 100%;
    max-width: 1652px;
    font-family: var(--Roboto);
    height: 600px;
}


.go-back {
    font-family: var(--Roboto);
    font-size: 12px !important;
    color: white !important;
    background-color: #00552b;
    padding: 10px;
}

.go-back:hover {
    background-color: #ffd700;
    cursor: pointer;
    color: black !important;
}

/* Close button */
.close {
    color: black;
    position:  absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover, .close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

img.demo {
    opacity: 0.6;
}

.active, .demo:hover {
    opacity: 1;
}

.gallery {
    margin-top: 10px;
    width: 100%;
    cursor: pointer;
    object-fit: cover;
    position: relative;
    vertical-align: middle;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),  0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.img-modal-container {
    justify-content: center;
    vertical-align: middle;
    width: 60%;
}

.img-modal-container img {
    min-width: 100%;
    height: 100%;
    max-height: 700px;
    text-align: center;
    object-fit:cover;
}

.img-description {
    width: 40%;
    height: auto;
    margin-left: 20px;
    padding: 20px;
    background-color: white;
}

.further-info {
    overflow: auto;
    height: 430px;
}

h3.img-caption {
    font-family: var(--Roboto);
    text-decoration: none;
    font-weight: normal;
    text-indent: 0.5in;
    text-align: justify;
    text-overflow: ellipsis;
}

.modal {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
}

.overlay {
    position: absolute;
    bottom: 0;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, 0.5);
    color: #f1f1f1;
    width: 100%;
    color: white;
    font-size: 15px;
    padding: 20px;
    text-align: center;
}

.img-thumbnail {
    font-family: var(--Roboto);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.modal-content {
    width: 90%;
}

.w3-container {
    font-size: 16px;
}

.w3-container a {
    font-weight: bold;
    color: #00552b;
    text-decoration: none;  
    font-size: 20px;
}

.w3-container a:hover {
    color: red;
    cursor: pointer;
}

.w3-container h3 {
    text-decoration: none;
}

.w3-container img {
    box-shadow: var(--primary-shadow);
    height: 100% !important;
}

.w3-container h2 {
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
    line-height: 1;

}

.w3-container h2 a {
    font-size: 20px;
    line-height: 1;
}

.w3-container h2 a:hover {
    color: red;
}

.w3-container p, .w3-container ol li {
    font-size: 20px;
    font-family: var(--Roboto);
}

.edit-section-btn-onwhite {
    color: #00552b;
    text-decoration: none;
}

.edit-section-btn-onwhite:hover {
    color: red;
}

.w3-responsive{display:block;overflow-x:auto}
.w3-container:after,.w3-container:before,.w3-panel:after,.w3-panel:before,.w3-row:after,.w3-row:before,.w3-row-padding:after,.w3-row-padding:before,
.w3-cell-row:before,.w3-cell-row:after,.w3-clear:after,.w3-clear:before,.w3-bar:before,.w3-bar:after{content:"";display:table;clear:both}
.w3-card-4,.w3-hover-shadow:hover{box-shadow:0 4px 10px 0 rgba(0,0,0,0.2),0 4px 20px 0 rgba(0,0,0,0.19)}
.w3-margin{margin:16px!important}.w3-margin-top{margin-top:16px!important}.w3-margin-bottom{margin-bottom:16px!important}
.w3-margin-left{margin-left:16px!important}.w3-margin-right{margin-right:16px!important}
.w3-white,.w3-hover-white:hover{color:#000!important;background-color:#fff!important}
.w3-responsive{display:block;overflow-x:auto}
.w3-container:after,.w3-container:before,.w3-panel:after,.w3-panel:before,.w3-row:after,.w3-row:before,.w3-row-padding:after,.w3-row-padding:before,
.w3-cell-row:before,.w3-cell-row:after,.w3-clear:after,.w3-clear:before,.w3-bar:before,.w3-bar:after{content:"";display:table;clear:both}
.w3-col,.w3-half,.w3-third,.w3-twothird,.w3-threequarter,.w3-quarter{float:left;width:100%}
.w3-col.s1{width:8.33333%}.w3-col.s2{width:16.66666%}.w3-col.s3{width:24.99999%}.w3-col.s4{width:33.33333%}
.w3-col.s5{width:41.66666%}.w3-col.s6{width:49.99999%}.w3-col.s7{width:58.33333%}.w3-col.s8{width:66.66666%}
.w3-col.s9{width:74.99999%}.w3-col.s10{width:83.33333%}.w3-col.s11{width:91.66666%}.w3-col.s12{width:99.99999%}
/* @media (min-width:601px){.w3-col.m1{width:8.33333%}.w3-col.m2{width:16.66666%}.w3-col.m3,.w3-quarter{width:24.99999%}.w3-col.m4,.w3-third{width:33.33333%} */
.w3-col.m5{width:41.66666%}.w3-col.m6,.w3-half{width:49.99999%}.w3-col.m7{width:58.33333%}.w3-col.m8,.w3-twothird{width:66.66666%}
.w3-col.m9,.w3-threequarter{width:74.99999%}.w3-col.m10{width:83.33333%}.w3-col.m11{width:91.66666%}.w3-col.m12{width:99.99999%}
/* @media (min-width:993px){.w3-col.l1{width:8.33333%}.w3-col.l2{width:16.66666%}.w3-col.l3{width:24.99999%}.w3-col.l4{width:33.33333%} */
.w3-col.l5{width:41.66666%}.w3-col.l6{width:49.99999%}.w3-col.l7{width:58.33333%}.w3-col.l8{width:66.66666%}
.w3-col.l9{width:74.99999%}.w3-col.l10{width:83.33333%}.w3-col.l11{width:91.66666%}.w3-col.l12{width:99.99999%}
h1{font-size:36px}h2{font-size:30px}h3{font-size:24px}h4{font-size:20px}h5{font-size:18px}h6{font-size:16px}.w3-serif{font-family:serif}
h1,h2,h3,h4,h5,h6{font-family:var(--Heading-Font),Arial,sans-serif;font-weight:bold;margin:10px 0}.w3-wide{letter-spacing:4px}
.w3-row-padding,.w3-row-padding>.w3-half,.w3-row-padding>.w3-third,.w3-row-padding>.w3-twothird,.w3-row-padding>.w3-threequarter,.w3-row-padding>.w3-quarter,.w3-row-padding>.w3-col{padding:0 8px}
.w3-container,.w3-panel{padding:0.01em 16px}.w3-panel{margin-top:16px;margin-bottom:16px}
.w3-padding-small{padding:4px 8px!important}.w3-padding{padding:8px 16px!important}.w3-padding-large{padding:12px 24px!important}
.w3-padding-16{padding-top:16px!important;padding-bottom:16px!important}.w3-padding-24{padding-top:24px!important;padding-bottom:24px!important}
.w3-padding-32{padding-top:32px!important;padding-bottom:32px!important}.w3-padding-48{padding-top:48px!important;padding-bottom:48px!important}
.w3-padding-64{padding-top:64px!important;padding-bottom:64px!important}
.w3-border-0{border:0!important}.w3-border{border:1px solid #ccc!important}
.w3-border-top{border-top:1px solid #ccc!important}.w3-border-bottom{border-bottom:1px solid #ccc!important}
.w3-border-left{border-left:1px solid #ccc!important}.w3-border-right{border-right:1px solid #ccc!important}
.w3-col.l8{width:66.66666%}
.w3-left-align{text-align:left!important}.w3-right-align{text-align:right!important}.w3-justify{text-align:justify!important}.w3-center{text-align:center!important}
.w3-col.l4{width:33.33333%}
.w3-black,.w3-hover-black:hover{color:#fff!important;background-color:#000!important}
.w3-ul.w3-hoverable li:hover{background-color:#ccc}
.w3-ul{list-style-type:none;padding:0;margin:0}.w3-ul li{padding:8px 16px;border-bottom:1px solid #ddd}.w3-ul li:last-child{border-bottom:none}
.w3-large{font-size:18px!important}


@media screen and (max-width: 1000px) {
    .container {
        display: block !important;
    }

    .sidepane {
        width: 100% !important;
        max-width: 100% !important;
        width: 100%;
    }

    .main-content {
        width: 90%;
        max-width: 100%;
        padding: 0;
    }

    .mySlides img {
      height: 300px;
    }

    .mySlides .text {
      font-size: 12px;
    }

    .dk-carousel {
      width: auto;
    }

    .columns {
      display: block !important;
    }

    .col {
      width: auto !important;
      margin-left: -2px;
    }

    footer {
      text-align: center;
    }

    .footer-top {
      display: block !important;
    }

    .footer-top .logo-area {
      display: none;
    }

    .footer-center, .footer-right {
      width: 100% !important;
      margin-left: 0 !important;
    }

    .footer-contact-details {
      display: block !important;
    }

    .legal-links {
      display: none;
    }

    .footer-contact-details .contact-info {
      margin: 10px;
    }
    
    .footer-bottom {
      display: block !important;
    }

    .footer-bottom div {
      width: 100%;
    }

    #amsc-copyright {
      text-align: center;
    }

    .header-right {
      display: none;
    }

    .logo-area {
      width: auto;
    }

    .nav-banner {
      width: auto;
    }

    .navbar a:not(:first-child), .dropdown .dropbtn {
      display: none;
    }

    .navbar a.icon {
      float: right;
      display: block;
    }

    .navbar a.icon {
      width: auto;
      height: auto;
    }

    .navbar.responsive {
      position: relative;
    }

    .navbar.responsive .icon {
      position: absolute;
      right: 0;
      top: 0;
    }

    .navbar.responsive a {
      float: none;
      display: block;
      text-align: center;
    }

    .navbar.responsive .dropdown {
      float: none;
    }

    .navbar.responsive .dropdown-content {
      position: relative;
    }

    .navbar.responsive .dropdown .dropbtn {
      display: block;
      width: 100%;
      text-align: center;
    }

    .about-content {
        display: block !important;
        width: auto;
    }
}