@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&display=swap');
/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    min-height: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

body {
    -webkit-font-smoothing: antialiased;
}

#navbar {
    color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10%;
    z-index: 10;
    font-weight: 600;
    height: 60px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    transition: 0.2s;
    /*background-image: linear-gradient(to bottom right, rgb(10, 12, 20), rgb(17, 21, 45));*/
    background-color: rgba(17, 21, 45, 0.7);
}

#navbar.expanded {
    height: 100px;
    background-color: rgba(0, 0, 0, 0);
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
    height: 100%;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.2s ease-out;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links li {
    display: flex;
    align-items: center;
    height: 100%;
}

a:hover .hover-blue {
    fill: #0072B1;
    transition: 0.2s;
}

a:hover .move-left {
    transform: translateX(5px);
}

.move-left {
    transform: translateX(0);
}

.menu-logo {
    height: auto;
    width: 25px;
    max-width: 20%;
    display: none;
    z-index: 2;
}

.menu-logo img {
    height: auto;
    width: 20px;
    max-width: 80%;
    cursor: pointer;
}

.logo {
}

.logo a {
    line-height: 0.8;
}

#home {
    min-height: 700px;
    height: 80vh;
}

#team {
    min-height: 500px;
    height: 60vh;
}

h1 {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 700;
}

h2 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}

h3 {
    font-size: 28px;
    line-height: 1.3;
    font-weight: 400;
}

h4 {
    font-size: 26px;
    line-height: 1.3;
    font-weight: 300;
}

.title {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 500;
}

.stretch {
    letter-spacing: 4px;
}

p {
    font-size: 19px;
    line-height: 1.1;
}

.hero-caption {
    font-size: 25px;
    width: 70%;
}

.padding-40-responsive {
    padding-bottom: 40px !important;
}

.point-title, .profile-title {
    /*font-size: 30px;*/
    /*line-height: 1.1;*/
    font-weight: 600;
    margin: 0.5em 0;
    margin-bottom: 20px;
}

.point-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-body-container {
    text-align: start;
    width: 60%;
    height: 100%;
}

.image-overlay {
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 1;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 8% 10%;
}

.image-overlay-thin {
    position: relative;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 1;
    justify-content: center;
    align-items: center;
    display: flex;
    width: 100%;
    height: 100%;
    padding: 4% 10%;
}

.contact-responsive {
    display: flex;
}

@media only screen and (max-width: 1068px) {
    #home {
        min-height: 600px;
    }

    #team {
        min-height: 400px;
    }

    h1 {
        font-size: 36px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 25px;
    }

    h4 {
        font-size: 23px;
    }

    p {
        font-size: 18px;
    }

    .title {
        font-size: 46px;
    }

    .hero-subtitle {
        font-size: 40px;
    }

    .stretch {
        letter-spacing: 3.5px;
    }

    .hero-caption {
        font-size: 22px;
    }

    .section-body-container {
        width: 80%;
    }

    .point-title {
        display: block;
    }
}

@media only screen and (max-width: 833px) {
    .nav-links {
        position: absolute;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: rgba(0, 0, 0, 0.9);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.5s ease;
    }

    .nav-links li {
        display: block;
        height: auto;
    }

    .menu-logo {
        display: flex;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .point-title, .profile-title {
        margin: 0.4em 0;
    }

    .contact-responsive {
        display: block;
    }
}

@media only screen and (max-width: 734px) {
    #home {
        min-height: 400px;
    }

    #team {
        min-height: 300px;
    }

    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 24px;
    }

    h4 {
        font-size: 22px;
    }

    .title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 35px;
    }

    .stretch {
        letter-spacing: 2.5px;
    }

    p {
        font-size: 16px;
    }

    .hero-caption {
        font-size: 19px;
        width: 100%;
    }

    .image-overlay {
        padding: 60px 10%;
    }

    .point-title, .profile-title {
        margin: 0.3em 0;
    }

    .image-overlay-thin {
        padding: 8% 10%;
    }
}

.flex {
    display: flex;
}

.flex-responsive {
    display: flex;
}

.w-100 {
    width: 100% !important;
}

.w-70 {
    width: 70%;
}

.space-evenly {
    justify-content: space-evenly;
}

.space-between {
    justify-content: space-between;
}

.h-100 {
    height: 100%;
}

/* Fullscreen section styling */
.fullscreen {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.content {
    text-align: center;
    color: #fff;
}

#section1 .content {
    z-index: 1;
}

/* Video section styling */
.video-section {
    position: relative;
    overflow: hidden;
    min-height: calc(75vh);
}

#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 101%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.bg-img-hero {
    background-image: url("assets/stadium.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}

.video-overlay {
    padding: 20px 8%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 40px 10%;
}

#contact img {
    width: 50px;
    height: auto;
    padding-bottom: 10px !important;
}

.bg-dark-blue {
    /*background-color: rgba(0,24,41,0.1);*/
    background-image: linear-gradient(rgba(0, 24, 41, 0.7), rgba(0, 24, 41, 0.4) 15%, rgba(0, 24, 41, 0.1) 100%);
}

.bg-gradient-left-dark-blue {
    background-image: linear-gradient(90deg, rgba(0, 24, 41, 1) 0%, rgba(0, 24, 41, 1) 45%, rgba(74, 123, 163, 0.4));
}

.bg-gradient-right-dark-blue {
    background-image: linear-gradient(90deg, rgba(74, 123, 163, 0.3), rgba(0, 24, 41, 1) 55%, rgba(0, 24, 41, 1) 100%);
}

.bg-gradient-right-green {
    background-image: linear-gradient(90deg, rgba(0, 24, 41, 0), rgba(0, 24, 41, 1) 55%, rgba(0, 24, 41, 1) 100%);
}

.text-white {
    color: white;
}


.section-image-split {
    width: 100%;
    height: 100%;
}

.strategy-image {
    background-image: url("assets/strategy.webp"), url("assets/strategy.jpg");
    background-size: cover;
    background-position: center;
}

.cooperate-image {
    background-image: url("assets/stadium-top.webp"), url("assets/stadium-top.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
}


.video-overlay h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.video-overlay p {
    font-size: 1.5rem;
}

.site-mobile-header {
    flex-grow: 1;
    display: flex;
    flex-flow: row wrap;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-grow: 1;
}

.container-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
}


#navbar .logo {
    color: rgba(38, 38, 38);
    font-weight: bold;
    height: 100%;
}

.logo a {
    height: 100%;
    margin: 0;
    padding: 0;
}

.expanded .logo img {
    height: 40px;
    width: auto;
    transition: 0.3s;
}

.logo img {
    height: 30px;
    width: auto;
    transition: 0.3s;
}

.flex-column {
    flex-direction: column;
}

.flex-column > * {
    padding-bottom: 20px;
}


.section-body-content {
    padding: 20px 5%;
    width: 100%;
    height: 100%;
}

.section-body-content-no-padding-x {
    padding: 20px 1%;
    width: 100%;
    height: 100%;
}


@media screen and (max-width: 734px) {
    .video-overlay h1 {
        font-size: 2.5rem;
    }

    .video-overlay p {
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 734px) {
    .video-overlay h1 {
        font-size: 2.5rem;
    }

    .video-overlay p {
        font-size: 1.2rem;
    }
}

.section-body {
    margin-left: 10vw;
    margin-right: 10vw;
}

section {
    justify-content: center;
    display: flex;
}


.section-title {
    margin-bottom: 1rem;
}

.h4 {
    font-size: 25px;
    line-height: 35px;
    font-weight: 300;
}

.eyebrow {
    text-transform: uppercase;
    font-weight: 900;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1.9px;
    padding-bottom: 5px;
}

.overlay {
    width: 100%;
    height: 100%;
    position: absolute;
}

.half-fill {
    width: 50%;
    height: 100%;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;

}

.blur-light {
    background-color: rgba(255, 255, 255, 0.3);
}

.blur-dark {
    background-color: rgba(38, 38, 38, 0.3);
}

.blur-dark, .blur-light {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

footer {
    padding: 30px 10%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-grow: 1;
    font-size: 15px;
}

footer div {
    /*padding-bottom: 20px;*/
}

footer div:last-child {
    /*padding-bottom: 0;*/
}

.width-10 {
    min-width: 10vw;
}

.vertical-title {
    transform: rotate(90deg);
}

.mt-0 {
    margin-top: 0;
}

.line-light, .line-dark {
    min-height: 1px;
    width: 0%;
    transition: width 1s ease-in-out;
}

.line-light {
    background-color: rgb(255, 255, 255);
    min-height: 1px;
    width: 100%;
}

.line-dark {
    background-color: rgb(38, 38, 38);
    min-height: 1px;
    width: 100%;
}

.bg-dark-gradient {
    background-image: linear-gradient(to bottom right, rgb(10, 12, 20), rgb(17, 21, 45));
    color: #fff;
}

.point {
    margin-bottom: 40px;
    align-items: center;
    gap: 40px;
    width: 100%;
    display: flex;
}

.point img {
    width: auto;
    height: 70px;
}

.profile-card {
    width: calc(300px);
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    visibility: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s ease-out;
}

.profile-image {
    border-radius: 100%;
    width: 200px;
    height: 200px;
    background-position: center;
    background-size: cover;
    margin-bottom: 30px;
}

.profile-name h2 {
    margin-bottom: 3px;
    /*font-size: 35px;*/
}

.profile-section h4 {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 7px;
}

.profile-text div {
    margin-bottom: 23px;
}

.profile-text p {
    font-size: 17px;
    text-align: justify;
}

.pi-v {
    background-image: url("assets/team-v.png");
}

.pi-d {
    background-image: url("assets/team-d.png");
}

.pi-l {
    background-image: url("assets/team-l.png");
}

.headshot-name {
    display: block;
}

.profile-cards-view {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
}

.pt-30-20-10 {
    padding-top: 30px;
}

@media screen and (max-width: 1200px) {
    .profile-card {
        width: 250px;
    }

    .profile-image {
        width: 150px;
        height: 150px;
        margin-bottom: 20px;
    }

    .pt-30-20-10 {
        padding-top: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .profile-image {
        margin-bottom: 20px;
    }

    .profile-card {
        width: 60%;
        margin-bottom: 50px;
    }

    .profile-cards-view {
        display: block;
        width: 100%;
        height: 100%;
        justify-content: space-between;
    }

    .profile-text div {
        margin-bottom: 19px;
    }

    .profile-title {
        margin-bottom: 15px;
    }

    .padding-40-responsive {
        padding-bottom: 20px !important;
    }
}

@media screen and (max-width: 734px) {
    .profile-card {
        width: 100%;
        margin-bottom: 50px;
    }

    .pt-30-20-10 {
        padding-top: 10px;
    }
}

.point-image, .point-title, .point-text, .bullet {
    visibility: hidden;
    opacity: 0;
    transform: translateX(-30px);
    transition: 0.4s ease-out;
    letter-spacing: 1.1px;
}

.point-text {
    text-align: justify;
}

.text-justify {
    text-align: justify;
}

.point-image img {
    filter: invert(100%);
}

.point:last-of-type {
    margin-bottom: 0;
}

.small-point {
    display: flex;
    margin-bottom: 40px;
    width: 80%;
}

.small-point:last-of-type {
    margin-bottom: 0;
}

.bullet {
    display: flex;
    align-items: start;
    padding-right: 10px;
    padding-top: 9px;
}

.bg-light {
    background-color: rgb(236, 236, 236);
    color: rgb(38, 38, 38);
}

.bg-white {
    background-color: rgb(255, 255, 255);
    color: rgb(38, 38, 38);
}

a {
    text-decoration: none;
    text-underline: none;
    color: inherit;
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 600;
}

.contact-name {
    display: flex;
    align-items: center;
}

.contact-name div:first-child {
    margin-right: 10px;
}

.profile-image-v {
    width: 100%;
    height: 200px;
    background-image: url("assets/team-v.png");
    background-position: center;
    background-size: cover;
    position: relative;
}

.profile-image-d {
    width: 100%;
    height: 200px;
    background-image: url("assets/team-d.png");
    background-position: center;
    background-size: cover;
    position: relative;
}

.profile-image-l {
    width: 100%;
    height: 200px;
    background-image: url("assets/team-l.png");
    background-position: center;
    background-size: cover;
    position: relative;
}

.background-image {
    background-image: url("assets/bg-2.webp");
    background-position: center;
    background-size: cover;
    position: relative;
    min-height: calc(50vh);
}


.justify-centre {
    justify-content: center;
}

.justify-start {
    justify-content: start;
}

.justify-end {
    justify-content: end;
}

.text-start {
    text-align: start;
}

.align-centre {
    align-items: center;
}

.align-end {
    align-items: end;
}

.overlay-container {
    width: 100%;
    max-width: 1400px;
    height: 100%;
    display: flex;
    align-items: center;
}

.px-0 {
    padding-bottom: 0;
    padding-top: 0;
}


.footer-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
}

.profiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 30px;
}

.bi {
    display: none;
    width: 30px;
    height: 30px;
    transition: 0.3s;
}

.bi-small {
    width: 25px;
    height: 25px;
}


.bi.show {
    display: block;
}

@media screen and (max-width: 1400px) {
    .section-body-container {
        /*width: 70%;*/
    }
}

.expanded.light-invert img {
    filter: invert(100%);
    transition: 0.2s;
}

.expanded.light-invert a, .expanded.light-invert svg {
    color: #000 !important;
    fill: #000;
    transition: 0.2s;
}

.expanded.light-invert .active a {
    color: #fff !important;
    transition: 0.2s;
}

@media screen and (max-width: 1024px) {

}

@media screen and (max-width: 734px) {
    .video-overlay h1 {
        font-size: 2.5rem;
    }

    .video-overlay p {
        font-size: 1.2rem;
    }

    .section-body-content {
        padding: 20px 5%;
    }

    #contact img {
        width: 40px;
        height: auto;
    }
}

@media screen and (max-width: 734px) {


    .bg-gradient-left-dark-blue {
        background-image: linear-gradient(90deg, rgba(0, 24, 41, 1) 0%, rgba(0, 24, 41, 0.9) 55%, rgba(0, 24, 41, 0.5));
    }

    .bg-gradient-right-green {
        background-image: linear-gradient(90deg, rgba(0, 24, 41, 1) 0%, rgba(0, 24, 41, 0.9) 55%, rgba(0, 24, 41, 0.5));
    }

    .justify-end {
        justify-content: start;
    }

    .section-body-container {
        width: 100%;
    }

    @supports (height: 100dvh) {
        .nav-links {
            height: 100dvh;
        }
    }

    .point {
        display: block;
    }

    .point, .small-point {
        width: 100%;
    }

    .point img {
        width: auto;
        height: 50px;
    }

    .flex-responsive {
        display: block;
    }

    .footer-content div {
        margin-bottom: 15px;
    }

    .flex-responsive div:last-child {
        margin-bottom: 0;
    }

    .h4 {
        font-size: 20px;
        line-height: 30px;
    }
}


.spacer {
    min-height: 10px;
}

.p-l-20 {
    padding-left: 40px;
}

.m-0 {
    margin: 0 !important;
}

.text-blue {
    color: #0072B1;
}

.hover-underline {
    text-underline: none;
    transition: 0.3s;
}

.hover-underline:hover {
    text-decoration: underline 1px solid;
    transition: 0.3s;
}

.flex-grow {
    flex-grow: 1;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel {
    display: flex;
    transition: none; /* No snap transition */
    animation: scroll-carousel linear infinite; /* Continuous animation */
}

.carousel-item {
    flex: 0 0 auto;
    width: 15%; /* Adjust width based on the number of items */
    display: flex;
    justify-content: center;
    align-items: center;
    filter: saturate(0);
    transition: 0.2s;
}

.carousel-item:hover {
    filter: saturate(100%);
    transition: 0.2s;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-240%);
    }
}

@media screen and (max-width: 1024px) {

    .carousel-item {
        width: 100px;
    }

    @keyframes scroll-carousel {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-410%);
        }
    }
}

.carousel-item img {
    width: auto; /* Size of the icon */
    height: 50px;
}

/* Define a keyframe for continuous scrolling */


.visible {
    opacity: 1;
    transform: none;
    visibility: visible;
}

.hover-underline-animation {
    display: inline-block;
    position: relative;
}

.hover-underline-animation:after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fff;
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.hover-underline-animation:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.expanded.light-invert .hover-underline-animation:after {
    background-color: #000000;
}

.bi-white {
    fill: #fff !important;
}

.pt-30 {
    padding-top: 30px;
}
