/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Global */
* {
	box-sizing: border-box;
	margin: 0;
    padding: 0;
}

@font-face {
    font-family:'Antonio';
    src: url('https://kasperdebruyne.be/fonts/Antonio-Light.ttf') format('truetype');  
    font-weight:lighter;
    font-style:normal; 
}
@font-face {
    font-family:'Antonio';
    src: url('https://kasperdebruyne.be/fonts/Antonio-Regular.ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
}
@font-face {
    font-family:'Antonio';
    src: url('https://kasperdebruyne.be/fonts/Antonio-Bold.ttf') format('truetype');
    font-weight:bold;
    font-style:normal;
}
html {
    padding:0;
    margin:0;
}
body {
    font-family: 'Antonio';
    margin:0;
    overflow:hidden;
    color:white;
}
nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items:center;
    padding: 0px 35px;
    height: 75px;
    z-index:1;
    position:absolute;
    left:0;
    right:0;
}
button {
    border:none;
    border-radius:20px; 
    cursor:pointer;
}
button:focus {
    outline:none;
}
ul {
    padding-left:0px;
}
ul {
    display:inline-block;
    list-style-type: none;
}
main {
    overflow:hidden;
    position: relative;
    width: 100%;
    height: 100vh;
}
canvas {
    position: absolute;
    height:100vh;
    width:100vw;
    top: 0;
    left: 0;
    z-index: -1;
}
.preloader {
    position:absolute;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background:rgba(100, 98, 100, 1);
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:center;
}
#preloader-logo {
    width:75px;
}
svg {
    visibility:hidden;
}
.bot {
    z-index:0;
}
.top {
    z-index:2; 
}
.menu {
    position: absolute;
    width: 300px;
    background: rgba(100, 98, 100, 1);
    top: 0;
    left: 0;
    bottom: 0;
    min-height: 100vh;
    transform: translateX(-100%);
    z-index: -1;
}
.menu-links {
    margin: 80px 30px 0;
}
.menu-links > li > a {
    text-decoration:none;
    color:white;
    display: block;
    margin:15px 5px;
}
.page-title {
    display:inline-block;
    margin:16px 0px;
    width: 40%;
    text-align:center;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%);
    font-size:28px;
}
.menu-btn, .search-btn {
    display: inline-block;
    height: 40px;
    width: 40px;
    background: white;
    padding:0;
    position:relative;
    overflow:hidden;      
}
.search-container {
    position: relative;
    max-width:100%;
}
.search-input {
    border: none;
    border-radius: 20px;
    height: 40px;
    width: 40px;
    font-size: 0px;
    background: #ffffff;
    padding:0;
    max-width: 100%;
    text-indent: 15px;
}
.search-input:focus {
    outline:none;
}
::placeholder {
    color:rgba(100, 98, 100, 0.85);
    font-family:'Antonio';
    transform: translate3d(0,2px,0px);
}
::-webkit-input-placeholder {
    transform: translate3d(0,2px,0px);
}
.search-btn {
    position:absolute;
    top: 0px;
    right:0px;
    margin:0;
 }
.menu-btn:before,.menu-btn:after {
    position:absolute;
    content:"";
    height:2px;
    background:black;
    top:calc(50% - 3.5px);
    left:calc(50% - 10px);
    width:20px;
}
.menu-btn:after {
    top:calc(50% + 2px);
}
.search-btn:before,.search-btn:after {
    position:absolute;
    content:"";
    background:black;
}
.search-btn:before {
    width:10px;
    height:10px;
    border:2px solid black;
    background:white;
    z-index:1;
    border-radius:50%;
    top:12px;
    right:14px;
}
.search-btn:after {
    height:2px;
    width:15px;
    transform:rotate(45deg);
    top:22px;
    right:11px;
    z-index:0;
}
.align-left,.align-right {
    display: flex;
    align-items: center;
    width:30%;
}
.align-right {
    justify-content:flex-end;
}
/* SLIDER */
.slide-title {
    display:inline-block;
    font-size:160px;
    margin: 0px;
    letter-spacing:-2px;
    color:transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: white;
    position:relative;
    overflow:hidden;
}
.slide-title:before {
    position: absolute;
    content: attr(data-text);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: white;
    clip-path: inset(80% 0 0 0);
    transition: 0.55s clip-path cubic-bezier(0.45, 0.05, 0.55, 0.95); 
}
.slide-title.active:before {
    clip-path: inset(10% 0 0 0);  
    transition: 0.425s clip-path cubic-bezier(0.45, 0.05, 0.55, 0.95) 0.425s; 
  
}  
.slider-controls {
    width: 40%;
    text-align:center;
    position: absolute;
    transform: translate(-50%);
    left: 50%;    
}
.slider-next-btn, .slider-prev-btn {
    width: 40px;
    height: 40px;
    background:rgba(255,255,255,0.35);
    background:rgba(100, 98, 100, 0.85);
    border: none;
    margin: 0 25px;
    position: relative;
    padding: 0;
}
.slider-prev-btn {
    margin-left:0px;
}
.slider-next-btn {
    margin-right: 0px;
}
.slider-next-btn:before,.slider-prev-btn:before,
.slider-next-btn:after,.slider-prev-btn:after {
    position:absolute;
    content:"";
    height:2px;
    background:white;
    width:12px;
    border-radius:2px;
    left:calc(50% - 5px);
}
.slider-next-btn:before {
    transform:rotate(45deg);
    top:calc(50% - 4px);
}
.slider-next-btn:after{
    transform:rotate(-45deg);
    top:calc(50% + 3px);
}
.slider-prev-btn:before {
    transform:rotate(45deg);
    top:calc(50% + 3px);
    left:calc(50% - 7px);
}
.slider-prev-btn:after {
    transform:rotate(135deg);
    top:calc(50% - 4px);
    left:calc(50% - 7px);
}
.slide-progress-bar {
    height:2px;
    width:150px;
    background:rgba(255,255,255,0.5);
    display:inline-block;
    position:relative;
    overflow:hidden;
}
.slide-progress-bar:after {
    content:"";
    position:absolute;
    top:0;
    left:0;
    height:100%;
    width:100%;
    background:white;
    transform:translateX(-100%);
}
.slide-indicator {
    font-size:24px;
    margin-left:15px;
    color:rgba(255,255,255,0.5);
}
.slide-indicator-container {
    height: 24px;
    overflow: hidden;
    line-height: 24px;
}
.slide-indicator:nth-child(1) {
    margin: 0px 0px 0px 0px;
    margin-right: 15px;
    color: white;
    display: block;
}
.slide-indicator>li {
    display: block;
    margin: 0;
}
.bottom-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.align-left.bot {
    padding-left:35px;
}
.btn-container {
    display: flex;
    align-items: center;
    background: white;
    color: black;
    padding: 15px 35px;
}
.route-text {
    margin-right:100px;
    font-weight:lighter;
    letter-spacing:-1.5px;
}
.route-btn {
    width:40px;
    height:40px;
    background:white;
    border:1px solid lightgrey;
    position:relative;
}
.route-btn:before {
    position:absolute;
    content:"";
    width:100px;
    height:2px;
    background:black;
    top:50%;
    right:28px;
}
.route-btn:after {
    position: absolute;
    content: "";
    top: calc(50% - 4px);
    border-style: solid;
    border-color: transparent transparent transparent black;
    border-width: 5px 5px 5px 6px;
    left: calc(50% - 2px);
}
.slide {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}
.slide:first-child {
    transform:translateX(0%)
}
.slide:nth-child(2) {
    transform: translateX(100%);
}
.slide:nth-child(3) {
    transform: translateX(200%);
}
.slide:nth-child(4) {
    transform: translateX(300%);
}
.slide-description-list {
    position: absolute;
    overflow-y: hidden;
    height: 23px;
    line-height: 23px;
    left: 50%;
    top: 60%;
    transform: translate(-50%,-50%);
    text-align:center;
}
.slide-description {
    position:relative;
    display:block;
    margin:0;
    padding-left:20px;
    font-size:16px;
}
.slide-description:before {
    position:absolute;
    content:"";
    top:1px;
    left:-25px;
    width:12px;
    height:12px;
    border-radius:50% 50% 50% 0;
    border:2px solid white;
    transform:rotate(-45deg);
}
.slide-description:after {
    position:absolute;
    content:"";
    top:6px;
    left:-20px;
    width:2px;
    height:2px;
    border:2px solid white;
    border-radius:50%;
}
.slide-description:before {
    left: 13px;
}
.slide-description:after {
    left: 18px;
}

li.slide-description:nth-child(3):before {
    left: 0px;
}
li.slide-description:nth-child(3):after {
    left: 5px;
}
li.slide-description:nth-child(4):before {
    left: 42px;
}
li.slide-description:nth-child(4):after {
    left: 47px;
}
.slider {
    height: 100vh;
    text-align: center;
    position: relative;
    z-index: -1;
    will-change:transform;
}
.slider-inner {
    height: 100%;
    width: 100%;
    position: relative;
}
.slider img {
    position:absolute;
    top:0;
    left:0;
    z-index:-10;
    opacity:0;
}
/* MEDIA QUERIES */
@media screen and (max-width:1600px) {
    .slide-title {
        font-size:120px;
    }
    .slide-description-list {
        margin: 0;
    }
}
@media screen and (max-width:1190px) {
    .route-text {
        margin-right:15px;
    }
    .route-btn:before {
        display:none;
    }
    .slide-title {
        font-size:100px;
    }
    .slide-description-list {
        top:58%;
    }
}
@media screen and (max-width:990px) {
    .slide-title {
        font-size:80px;
    }
    .slide-description-list {
        top:57%;
    }
}
@media screen and (max-width:800px) {
    .nav-links,.social-links {
        display:none;
    }
    .slide-title {
        font-size:60px;
    }
    .route-text {
        font-size: 20px;
    }
}
@media screen and (max-width:768px) {
    .route-text {
        font-size: 18px;
    }
    .slider-prev-btn {
        margin-right:15px;
    }
    .slider-next-btn {
        margin-left:15px;
    }
    .slide-description-list {
        top:56%;
    }
}
@media screen and (max-width:560px) {
    .btn-container {
        padding: 5px 20px;
    }
    .route-text {
        font-size: 16px;
    }
    .slide-progress-bar {
        width: 50px;
    }
    .slide-title {
        font-size:40px;
        letter-spacing:0px;
        -webkit-text-stroke-width:1px;
    }
}
@media screen and (max-width:420px) {
    .slide-progress-bar {
        display:none;
    }
    .slide-indicator {
        display:none;
    }
    .route-text {
        display:none;
    }
    .slide-description-list {
        top:55%;
    }
    .slide-description {
        font-size:14px;
    }
    .search-container {
        max-width:none;
    }
    li.slide-description:nth-child(4):before {
        left: 37px;
    }
    li.slide-description:nth-child(4):after {
        left: 42px;
    }
}
@media screen and (max-width:360px) {
    .slide-description-list {
        top:55%;
    }
    .slide-description {
        display:none;
    }
}

/* media query for cp iframe preview */
@media screen and (max-height:456px) {
  .slide-description-list {
    top:62%
  }
}






/* Added 02-05-25 for Officers section */
section {
	background: #cc0000;
	background: linear-gradient(180deg, #cc0000 0%, #fff 100%);
	padding: 40px 0 0;
}

section .container-fluid > .title {
	align-items: center;
	display: flex;
	justify-content: center;
}

section .container-fluid > .title p {
	color: #fff;
	content: "\2B51";
	font-size: 35px;
	margin: 0 20px;
	position: relative;
	top: -20px;
}

/* Text */
section h2 {
	color: #fff;
	font-family: "Inter", serif;
	font-size: 16px;
	letter-spacing: 5px;
	margin: 0 0 10px;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

section h1 {
	color: #fff;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 80px;
	font-weight: bold;
	line-height: 75px;
	margin: 0 0 50px;
	padding: 0;
	text-align: center;
	text-transform: uppercase;
}

section p.info-sm,
section p.info-lrg {
	color: #fff;
	font-family: "Inter", serif;
	font-size: 16px;
	margin: -40px 20px 22px;
	text-align: center;
}

/* Media */
@media (max-width: 1118px) {
	section p.info-lrg {
		display: none;
	}
}

@media (min-width: 1119px) {
	section p.info-sm {
		display: none;
	}
}

img.size-full {
	height: auto;
	max-width: 1200px;
	width: 100%;
}

/* Board */
.board {
	position: relative;
}

.board .wrap {
	display: flex;
	position: relative;
	z-index: 1;
}

.board .item {
	background: var(--profile-img) no-repeat center 8px / cover;
	flex-grow: 1;
	height: 500px;
	margin: 0 5px;
	position: relative;
	transition: 0.5s;
}

.board .item:hover {
    flex-grow: 1.6;
}

/* Ribbon */
.ribbon {
	height: 112px;
	left: -10px;
	overflow: hidden;
	position: absolute;
	top: 0;
	width: 112px;
}

.ribbon div {
	background: rgb(0,33,77);
	background: radial-gradient(circle, rgba(0,33,77,1) 0%, rgba(91,132,196,1) 0%, rgba(0,33,77,1) 75%);
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
	color: #eef2f9;
	display: block;
	font-family: "Inter", serif;
	font-size: 12px;
	font-weight: 700;
	left: -35px;
	padding: 5px 0;
	position: absolute;
	text-align: center;
	text-transform: uppercase;
	top: 25px;
	transform: rotate(-45deg);
	width: 162px;
}

.ribbon span {
	font-size: 16px;
}

.ribbon::before,
.ribbon::after {
	border: 5px solid #2C599D;
	border-left-color: transparent;
	border-top-color: transparent;
	content: "";
	display: block;
	position: absolute;
	z-index: -1;
}

.ribbon::before {
	right: 0;
	top: 0;
}

.ribbon::after {
	bottom: 0;
	left: 0;
}

.board .info {
	background: #fff;
	background: linear-gradient(180deg, #000 0%, transparent 0%, #000 99%);
	bottom: 0;
	left: 0;
	padding: 15px;
	position: absolute;
	width: 100%;
}

.board h5 {
	color: #fff;
	font-size: 1.25em;
	font-weight: bold;
    margin-bottom: 5px;
	position: relative;
	text-align: center;
}

.board p {
    font-size: 1em;
    color: #ff0000;
	margin: 0;
	padding: 0;
	text-align: center;
}

.board .info > .title {
	align-items: center;
	display: flex;
	justify-content: center;
}

.board .info > .title div:nth-child(1),
.board .info > .title div:nth-child(3) {
	color: #fff;
	font-size: 1.5em;
	padding-bottom: 10px;
	text-align: center;
}

.board .info > .title div:nth-child(2) {
	margin: 0 5px;
	width: 150px;
}

/* Media */
@media (max-width: 1200px) {
	.board {
		overflow-x: auto;
		padding-bottom: 10px;
    }
	.board::-webkit-scrollbar {
		background: #111;
		height: 7px;
		width: 10px;
    }
	.board::-webkit-scrollbar-thumb {
		background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.55, #fff), color-stop(0.86, #fff));
		border-radius: 10px;
    }
	.board::-webkit-scrollbar-track {
		background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.55, #444), color-stop(0.86, #444));
        border-radius: 30px;
    }
	.board .wrap {
		width: 1100px;
    }
    .board .item {
		height: 500px;
    }
}

/* Media */
@media (max-width: 992px) {
	.board .wrap {
		width: 1000px;
    }
	.board .item {
		height: 350px;
    }
	.board .item:hover {
		flex-grow: 1.5;
    }
}

/* Media */
@media (max-width: 768px) {
	.board .item {
		height: 300px;
	}
}