body {
    margin: 0px;
    font-family: sans-serif;
}

a {
    text-decoration: none;
}

h2 {
    color: #27527C;
}

.menu {
    display: flex;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    z-index: 1;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.menu a {
    font-size: 25px;
    padding-right: 26px;
    font-weight: 100;
    color: #27527C;
}

.menu a:hover {
    text-shadow: 0.6px 0px 0px #27527C;
}

nav {
    padding-top: 20px;
    padding-right: 20px;
}

.logo {
    width: 190px;
    padding-top: 7px;
    padding-bottom: 3px;
    padding-left: 15px;
}

.background-video {
    position: relative;
    overflow: hidden;
}

.background-video video {
    position: absolute;
    height: 590px;
    width: 100%;  
    top: 0;
    left: 0;
    object-fit: cover; 
    z-index: -1; 
}

#motive {
    width: 100%;
    height: 590px;
}

#pageHeading {
    font-size: 160px;
    color: white;
    font-weight: bold;
    margin: 0px;
    margin-left: -15px;
    padding-top: 83px;
    text-align: left;
}

.content {
    padding: 10px;
    padding-left: 200px;
    padding-right: 200px;
}

#contentHeading {
    font-size: 37px;
    color: #27527C;
    font-weight: bold;
    padding-left: 15px;
    padding-top: 40px;
}

.hero-button {
    font-size: 20px;
    border: 5px solid #ffffff;
    color: #27527C;
    border-radius: 15px;
    padding-right: 10px;
    padding-left: 10px;
    margin-bottom: 70px;
    text-align: center;
    border: 5px solid transparent; 
    animation: pulsate-border 5s infinite;
}

.hero-button:hover {
    border: 5px solid #27527C;
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

.hero-button h2 {
    font-style: normal;
}

@keyframes pulsate-border {
    0% {
        border-color: transparent;
    }
    25% {
        border-color: #27527C; 
    }
    50% {
        border-color: #27527C;
    }
    75% {
        border-color: #27527C;
    }
    100% {
        border-color: transparent;
    }
}

.content-container {
    display: flex;
    padding-left: 15px;
    font-size: 18px;
}

.content-box {
    display: flex;
    padding-top: 30px;
}

.content-box img {
    width: 95px;
    height: 100%;
    padding-right: 25px;
    padding-top: 6px;
}

table {
    font-weight: 300;
    justify-content: center;
    align-items: center;
    padding-left: 15px;
}

.content-table {
    padding-bottom: 40px;
}

.content-table h2 {
    padding-left: 15px;
    font-size: 27px;
    font-weight: 500;
}

tbody {
    font-size: 18px;
    text-align: left;
}

.content-table table td {
    font-weight: 500;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-right: 80px;
}

.map {
    margin-left: 300px;
    margin-top: 10px;
    color: #27527C;
}

.map h2 {
    font-size: 27px;
    font-weight: 500;
}

.map iframe {
    width: 600px;
}

.content a {
    color: #27527C;
    font-style: italic;
}
.hr1 {
    border-radius: 20px;
}

.hr2 {
    border-radius: 20px;
}

footer {
    margin: 0px;
    background-color: #ECEFF1;
}

.footerHeading {
    border: 5px solid rgb(255, 255, 255);
    color: #27527C;
    border-radius: 15px;
    padding-right: 10px;
    padding-left: 10px;
}

.footerHeading:hover {
    border: 5px solid #27527C;
    text-decoration: underline;
    text-decoration-thickness: 3px;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5px;
    margin-left: 40px;
    margin-right: 40px;
}
  
.footer-container > div {
    flex: 1;
    text-align: center;
}

.footer-content {
    text-align: left;
    padding-left: 40px;
    color: #27527C;
    line-height: 1.25;
}

.footer-content a {
    color: #27527C;
    font-style: italic;
}

.footer-content a:hover {
    font-weight: bold;
}