body, html {
    min-width: 1000px;
    height: 100%;
    margin: 0;
    font-family: 'Exo';
    font-family: Helvetica Neue,Helvetica,Arial,sans-serif; 
    scroll-behavior: smooth;
}

.section:nth-child(odd) {
    background-color: white;
}

.section:nth-child(even) {
    background-color: #F9F9F9;
}

.welcome-section {
    padding: 0.5% 10% 0.5% 10%;
    width: 100%;
    height: 88vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-position: top center; 
    background-size: cover;
    background-repeat: no-repeat;
}

#welcome-video {
    box-shadow: 0 0 3px rgba(0, 0, 0, .25);
    opacity: .7;
    transition: .85s;
}

#welcome-video:hover {
    box-shadow: 0 0 12px rgba(0, 0, 0, .6);
    opacity: 1;
    border-radius: 0;
    transform: scale(1.25);
}

.video-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.video-section h1 {
    color: white;
    text-shadow: 0 0 8px rgba(0, 0, 0, .35);
}

.video-section div:first-child {
    width: 55%;
    text-align: left;
}

.video-section div:last-child {
    width: 45%;
}

.video-section h1 {
    margin-top: 0;
    margin-bottom: 4.5%;
    font-weight: bold;
    font-size: 260%;
}

.video-section hr {
    margin-left: 22.5%;
    width: 55%;
    height: 0;
    border-radius: .4em;
    margin-bottom: 5.5%;
    border: 1px solid white;
    opacity: .75;
}

iframe,
img.index-test {
    width: 95%;
    min-width: 480px;
    height: 24vw;
    min-height: 270px;
    border-radius: .4em;
}

.intro-section {
    width: 100%;
    padding: 0 10% 0 10%;
    padding: 3% 10% 3% 10%;
    background-color: var(--mainbgcolor);
}

.inner-section {
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}

.updates {
    width: 100%;
    margin-top: 2.25vh;
    display: flex;
    flex-direction: row;
}

.updates-article {
    width: 32%;
    margin-right: 2%;
    display: flex;
    flex-direction: column;
    opacity: .83;
    cursor: pointer;
    transition: .25s;
}

.updates-article:last-child {
    margin-right: 0;
}

.updates-article:hover {
    opacity: 1;
}

.updates-article img {
    width: 100%;
    border-radius: .4em;
    margin-bottom: 1.8vh;
}

.updates-article-description {
    text-align: justify;
    display: -webkit-box;
    -webkit-line-clamp: 7; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
}

.updates-article-description::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3.5em; 
  background: linear-gradient(to bottom, rgba(255, 255, 255, .2), white 100%);
}

.updates-article span {
    font-size: 105%;
}

.services-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-content: space-between;
}

.service {
    width: 100%;
    background-color: var(--mainbgcolor);
    padding: 1.5%;
    border-radius: .4em;
    flex: 1 1 0;
    position: relative;
    box-shadow: 0 0 3px rgba(0, 0, 0, .25);
}

.service:nth-child(2) {
    margin-left: 5%;
    margin-right: 5%;
}

.service a {
    border: 0;
    padding: 3% 2%;
    background-color: var(--maincolor);
    color: white;
    text-decoration: none;
    box-shadow: 0 0 3px rgba(0, 0, 0, .25);
    border-radius: .4em;
    display: block;
    width: 90%;
    text-align: center;
    opacity: .8;
    position: absolute;
    bottom: 4%;
    left: 5%;
    cursor: pointer;
    transition: .2s;
}

.service a:hover {
    opacity: 1;
}

.wider {
     padding: 8.5% 0;
     text-shadow: 0 0 10px rgb(180, 180, 180);
    color: var(--maincolor);
    font-size: 200%;
    text-align: center;
}
