* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}
html {
    scroll-behavior: smooth;
}
body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main {
    margin-top: 65px;
}
#homevideo video {
	border-right: 3px solid white;
	border-left: 3px solid white;
}
section {
    margin-bottom: 50px;
}
h1 {
    font-size: 32px;
    font-weight: 900;
	font-family: 'Inter', sans-serif;
    color: #3ca5e2;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 20px;
}
h4 {
	font-family: 'Inter', sans-serif;
}
#aboutus, #contact, #partners, #newsreel, #benefits, #gallery {
    transform: translateY(-75px);
} 

@media(max-width: 540px){
    h1 {
        font-size: 24px;
    }
}
.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid lightgray;
    height: 65px;
    display: flex;
    align-items: center;
    background-color: white;
    z-index: 9;
}
.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.top-bar .right {
    display: flex;
    align-items: center;
}
.top-bar .langchange {
    margin-left: 30px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 5px 10px;
    border: 1px solid #3ca5e2;
    text-decoration: none;
    color: #3b3b3b;
    font-weight: 700;
    border-radius: 5px;
}
.top-bar ul {
    display: flex;
    align-items: center;
    margin-bottom: 0;
}
.top-bar ul li {
    margin: 0 10px;
    list-style: none;
}
.top-bar li a {
    font-size: 14px;
    text-decoration: none;
    color: #3b3b3b;
    font-weight: 700;
}
.top-bar li a:hover {
    color: #3ca5e2;
}
.top-bar .left img {
    width: 200px;
    height: auto;
}
/* hamburger styles*/
.hamburger {
    width:30px;
	height:25px;
	position:relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#wrapper {
    min-width: 100px;
    min-height: 65px;
    background-color: transparent;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 450px){
    #wrapper {
        min-width: 70px;
    }
}

.line {
	position: absolute;
	height: 4px;
	width:100%;
	background:#3ca5e2;
	transition: all cubic-bezier(0.26, 0.1, 0.27, 1.55) 0.35s;
}
.top {
	top:20%;
}
.middle {
	top:48%;
}
.bottom {
    align-self: flex-start;
    width: 100%;
	top:76%;
}

.icon.close .top {
	transform:rotate(45deg);
	top:48%;
}

.icon.close .middle, .icon.close .bottom {
    width: 100%;
	transform:rotate(-45deg);
	top:48%;
}

.close {
    opacity: 1 !important;
}
/* End hamburger styles*/

@media(max-width: 996px){
    #wrapper {
        display: flex;
    }
    nav {
        display: none;
        position: fixed;
        top: 65px;
        left: 0;
        background-color: #e0f3ff;
        width: 100%;
        padding: 50px;
    }
    .top-bar ul {
        flex-direction: column;
        align-items: flex-start;
    }
    .top-bar ul li {
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid white;
    }
    .top-bar ul li:first-child {
        border-top: 1px solid white;
    }
    .top-bar ul a {
        color: #025788;
    }
}

/* About Us */
.aboutus {
    text-align: center;
}
.aboutus .aboutus-full-content {
    display: none;
}
.aboutus .read-more {
    display: block;
    padding: 5px 10px;
    font-weight: 700;
    border: 2px solid #3ca5e2;
    width: max-content;
    margin: 10px auto;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 7.5px;
    color: #025788;
    text-decoration: none;
}

/* Benefits */
.benefits {
    background-color: #3ca5e2;
    padding: 30px 0;
}
.benefits h1, .benefits p {
    color: white;
}
.benefits .benefits-grid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 15px;
    margin-top: 30px;
}
.benefits .benefit .content {
    display: none;
}
.benefits .benefit .title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    border: 1px solid white;
    color: white;
    font-size: 22px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    border-radius: 7.5px;
    transition: 300ms;
    width: 100%;
    height: 100%;
}
.benefits .benefit .title:hover, .benefits .benefit .title.active {
    background-color: white;
    color: #3ca5e2;
}
.benefits .benefit-content{
    margin-top: 25px;
}
@media(max-width: 768px){
    .benefits .benefits-grid{
        grid-template-columns: 1fr 1fr;
    }
    .benefits .benefit .title  {
        font-size: 18px;
        padding: 20px;
    }
}
@media(max-width: 340px){
    .benefits .benefits-grid{
        grid-template-columns: 1fr;
    }
}

/* Gallery */
.gallery ul {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
.gallery h4 {
	text-align: center;
	margin-bottom: 30px;
}
.gallery ul li {
    margin: 0 15px;
    list-style: none;
}
.gallery ul a {
    text-decoration: none;
    color: black;
    font-weight: 600;
    position: relative;
}
.gallery ul a:hover, .gallery ul a.active {
    color: #3ca5e2;
}
.gallery ul a.active::after {
    content: "";
    width: 100%;
    height: 4px;
    background-color: #3ca5e2;
    position: absolute;
    bottom: -10px;
    left: 0;
}
.gallery .image-grid {
    display: none;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
    animation: fadeInUp 500ms;
}
.gallery .image-grid.show {
    display: grid;
}
.gallery .image-grid img {
    width: 100%;
    height: 100%;
    max-height: 120px;
    object-fit: cover;
}
@media(max-width: 996px){
    .gallery .image-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .gallery ul li {
        margin: 0 10px;
    }
}
@media(max-width: 768px){
    .gallery .image-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
	.gallery ul {
		flex-direction: column;
	}
	.gallery ul li {
		margin-bottom: 10px;
	}
}
@media(max-width: 540px){

    .gallery ul a {
        font-size: 14px;
    }
    .gallery .image-grid img {
        max-height: 90px;
    }
}
@media(max-width: 420px){
    .gallery ul a {
        font-size: 12px;
    }
    .gallery .image-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media(max-width: 340px){
    .gallery ul a {
        font-size: 10px;
    }
}
.uk-lightbox-toolbar {
    background: rgb(0, 0, 0, 90%);
}
.uk-lightbox-toolbar p {
	margin-bottom: 5px;
}
.uk-h6,  h6 {
	margin: 0;
}
/* Stay up to date */
.newsletter {
    background-color: lightgray;
    padding: 30px 0;
}
.newsletter h1 {
    color: black;
}
.newsletter .content {
    display: flex;
}

.newsletter .content form{
    width: 80%;
}
.newsletter input {
    padding: 5px 10px;
    border: none;
    background-color: white;
	margin-top: 5px;
	width: 100%;
}
.newsletter p {
	margin: 0 0;
}
.newsletter h4 {
	line-height: 1.75;
}
.newsletter span {
	margin: 0;
}
.newsletter label {
    font-size: 14px;
}
.newsletter button, .newsletter input[type="submit"] {
    padding: 7.5px 15px;
    background-color: #3ca5e2;
    color: white;
    border: none;
	font-size: 14px;
    width: max-content;
    border-radius: 5px;
    transition: 300ms;
}
.newsletter button:hover {
    background-color: #025788;
}


/* Newsreel */
.newsreel .splide {
    margin: 0 auto;
}
.newscard {
    width: auto;
    height: 400px;
    position: relative;
}
.newsreel .newscard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.newsreel .newscard .content {
    visibility: hidden;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: #3ca5e2;
    padding: 0 30px;
    max-height: 0;
    height: 100%;
    overflow: hidden;
    transition: 500ms;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    cursor: pointer;
}
.newsreel .newscard .content p {
    margin-bottom: 0;
    color: white;
}
.newscard:hover .content {
    max-height: 100%;
    visibility: visible;
    padding: 30px;
}

/* Partners */
.partners .splide {
    width: 70%;
    margin: 0 auto;
}
.partners img {
    max-width: 200px;
}
.partners .splide__arrows {
    display: none;
}
@media(max-width: 996px){
    .partners .splide {
        width: 100%;
    }
}
@media(max-width: 768px){
    .partners img {
        max-width: 120px;
    }
}

/* Contact */
.contact {
    background-color: #1E2832;
    padding: 30px 0;
}
.contact h1, .contact p, .contact h4 {
    color: white;
}
.contact .content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.contact h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
}
.contact p {
    font-size: 14px;
    margin-bottom: 0;
}
@media(max-width: 768px){
    .contact .content {
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .contact .content div {
        margin-bottom: 25px;
    }
}

footer{
    margin-top: auto;
}
.quotes {
    background-color: #9EAAB6;
    padding: 50px 0;
}
.quotes figure {
    margin-bottom: 0;
    text-align: center;
}
.quotes blockquote {
    font-size: 18px;
    margin-bottom: 5px;
}
.quotes figcaption {
    font-size: 14px;
    font-weight: 700;
}
.quotes figcaption::after {
    content: " -";
}
.quotes figcaption::before {
    content: "- ";
}
.quotes .splide__arrows, footer .quotes .splide__pagination {
	display: none;
}
.splide__pagination {
	transform: translateY(30px)
}
footer .footer a {
    font-size: 12px;
    color: black;
    text-decoration: none;
    padding: 30px 0;
    display: flex;
    align-items: center;
}
.page-title {
    padding: 30px 0;
    border-bottom: 1px solid lightgray;
}