* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
  
body {
    font-family: Arial, Helvetica, sans-serif;
}
  
a {
    text-decoration: none;
}
  
li {
    list-style: none;
}

.link-txt {
    -webkit-transition: color 500ms ease;
    transition: color 500ms ease;
    color: #000;
    text-decoration: none;
}

#mainBody {
    display:flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100svh;
}
#mainBody > footer {
    margin-top: auto;
}

.content {
    text-align: left;
    padding-left:5%;
    padding-right:5%;
    line-height:35px;
}

.content li {
    list-style:circle;
    margin-left: 5%;
}

.content-col-l {
    width: 60%;
    float:left;
    padding-right: 5%;

}

.content-col-r {
    width: 40%;
    float:left;
    padding-left: 5%;
}

.content-col-r img {
    width: 500px;
    height: 800px;
}

.about-col-l {
    width: 60%;
    float:left;
    padding-right: 5%;
}

.about-col-r {
    width: 40%;
    float:left;
    padding-left: 5%;
}

.about-col-r img {
    width: 500px;
}

.content:after {
    content: "";
    clear: both;
    display: table;
}

/* NAVBAR STYLING STARTS */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #fff;
    color: #000;
}
  
/* LOGO */
.logo {
    font-size: 32px;
}

.logo img { 
    width:300px;
    height:150px;
}
  
/* NAVBAR MENU */
.menu {
    display: flex;
    gap: 1em;
    font-size: 18px;
}
  
.menu li:hover {
    background-color: #290400;
    border-radius: 5px;
    transition: 0.3s ease;
    color: #fff;
}
  
.menu li {
    padding: 5px 14px;
}

.menu li a {
    color: #000;
}

.menu li:hover a {
    color: #fff;
}
  
/* DROPDOWN MENU */
.services {
    position: relative; 
}
  
.dropdown {
    background-color: rgb(1, 139, 139);
    padding: 1em 0;
    position: absolute; /*WITH RESPECT TO PARENT*/
    display: none;
    border-radius: 8px;
    top: 35px;
}
  
.dropdown li + li {
    margin-top: 10px;
}
  
.dropdown li {
    padding: 0.5em 1em;
    width: 8em;
    text-align: center;
}
  
.dropdown li:hover {
    background-color: #4c9e9e;
}
  
.services:hover .dropdown {
    display: block;
}

/* RESPONSIVE NAVBAR MENU STARTS */

/* CHECKBOX HACK */

input[type=checkbox] {
    display: none;
} 
  
/* HAMBURGER MENU */
.hamburger {
    display: none;
    font-size: 4.5rem;
    user-select: none;
}
  
/* APPLYING MEDIA QUERIES */
@media (max-device-width: 768px),(max-width:768px) {
    .menu {
        display:none;
        position: absolute;
        background-color:#f0eee1;
        right: 0;
        left: 70%;
        z-index:2;
        text-align: center;
        padding: 16px 0;
    }
  
    .menu li:hover {
        display: inline-block;
        background-color:#ff8001;
        transition: 0.3s ease;
    }
  
    .menu li + li {
        margin-top: 12px;
    }
  
    input[type=checkbox]:checked ~ .menu {
        display: block;
    }
  
    .hamburger {
        display: block;
    }
  
    .dropdown {
        left: 50%;
        top: 30px;
        transform: translateX(35%);
    }
  
    .dropdown li:hover {
        background-color: #4c9e9e;
    }
}

/* Large picture and button */
.mainPicture {
    text-align: center;
    position: relative;
}

.mainPicture img {
    width: 100%;
    height: calc(100vh - 140px); /* Adjust the value to leave space for the navbar and other elements */
    /*object-fit: cover;*/
}

.mainPicture .text {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    white-space: nowrap; /* Display the text in a single line without wrapping */
    padding: 10px; /* Add padding */
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #777568;
    -webkit-text-fill-color: #f0eee1;
}

.mainPicture .text p {
    margin: 0;
    line-height: 1.2;
    font-size: 3.5rem; /* Adjust the font size value as per your desired size */
}

/* Footer Information */
.footer {
    display: flex;
    padding-left: 5%;
    padding-top:10px;
    border-top: 5px solid #ff8001;
    width:100%;
}

.footer-col-l {
    width: 60%;
}

.footer-col-r {
    width: 40%;
}

.footer-name {
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 28px;
    font-weight: 700;
}

.footer-contact-info {
    margin-top: 5px;
}

.footer-contact-info-b {
    position: relative;
}

.footer-contact-info-title {
    left: 10%;
    top: 0%;
    right: auto;
    bottom: auto;
    width: 300px; 
    text-align: left;
}

.member-list {
    padding: 3rem;
}

.member-line {
    margin-bottom: 1rem;
    display:flex;
    justify-content: space-between;
    align-items:center;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.3rem;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid #a2a2a2;
    font-size:1.2rem;
}

.member-line p {
    font-size: 1rem;
    color: #111;
}

.member-line:hover {
    box-shadow:  0 0 0.8rem rgba(0,0,0,0.3);
}

.member {
    display:flex;
    justify-content: left;
    align-items: center;
    width:45%;
}

.member-name {
    font-size: 1.1rem;
    color: #111;
}

.member-profile img {
    width: 130px;
}

.member .member-details {
    margin-left: 1.5rem;
    line-height: 1.5;
}

.member-btn {
    filter: invert(8%) sepia(100%) saturate(6370%) hue-rotate(247deg) brightness(114%) contrast(145%);
    /* use https://codepen.io/sosuke/pen/Pjoqqp to get the color filter */
}

.member-column-rep {
    justify-content: space-between;
    align-items:center;
    display:flex;
    font-size: 1.2rem;
    width:15%;
}

.member-column {
    justify-content: space-between;
    align-items:center;
    display:flex;
    font-size: 1.2rem;
    width:18%;
}

.member-column-links {
    justify-content: space-between;
    align-items:center;
    display:flex;
    width:10%;
}

.member-column-links span {
    padding-left:1rem;
}

@media (max-device-width: 768px),(max-width:768px) {
    .member-column {
        display:none;
    }
    .member-column-rep {
        display:none;
    }
    .member {
        width:75%;
    }
    .member-column-links {
        width:20%;
    }
}

.council-row {
    display:flex;
    flex-wrap:wrap;
}

.council-col {
    width:25%;
    margin-top: 2rem;
    padding-right: 1.5rem;
    padding-left: 1.5rem;
}

.council-member {
    display:flex;
}

.council-member-profile img {
    border-radius: 100%;
    width: 100px;
    height: 100px;
}

.council-member-details {
    margin-left: 1.5rem;
    line-height: 1.5;
    align-items:center;
    display:flex;
}

.council-member-details img {
    max-width:100%;
}

.council-member-name {
    font-size:1.2rem;
    font-weight: bold;
}

.council-member-title {
    font-size:1rem;
}

.council-member-company {
    font-size:1rem;
    display:none;
}

@media (max-device-width: 768px),(max-width:768px) {
    .council-col{
        width:50%;
    }
}