/* CSS VERSION 1.0 */
/* 14 Oct  2025 */

:root {
    --blue: #264766;
    --light-blue: #95C3EC;;
    --grey: #454545;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-family: "Jost", sans-serif;
    font-weight: 300;
    color: #fff;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--blue);
}

h1 {
    font-size: 1.7rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 2.5rem;
    /* font-weight: 300; */
    text-transform: uppercase;
}

h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--grey);
}

h5 {
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

strong {
    font-weight: 900;
}

input {
    transition: 0.3s ease-in-out;
}/* GENERAL STYLES V.1 */


html {
    scroll-behavior: smooth;
}


section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}


img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

p {
    line-height: 1.7rem;
    font-weight: 200;
    font-size: 1.1rem;
}

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

a:hover {
    text-decoration: none;
}


li {
    list-style: none;
    font-size: 1.1rem;
}


.hidden {
    display: none !important;
}
.uppercase {
    text-transform: uppercase;
}

.text-white {
    color: #fff;
}

.no-padding {
    padding: 0;
}

.no-margin {
    margin: 0;
}

.no-margin-bottom {
    margin-bottom: 0;
}

.button-center {
    margin: 0 auto;
}


/* Margins ---------------------------- */
.margin-top-xs {
    margin-top: 20px;
}

.margin-top-sm {
    margin-top: 40px;
}

.margin-top-md {
    margin-top: 80px;
}

.margin-top-lg {
    margin-top: 120px;
}

.margin-top-xl {
    margin-top: 160px;
}

.margin-bottom-xs {
    margin-bottom: 20px;
}

.margin-bottom-sm {
    margin-bottom: 40px;
}

.margin-bottom-md {
    margin-bottom: 80px;
}

.margin-bottom-lg {
    margin-bottom: 120px;
}

/* Padding ---------------------------- */
.padding-top-xs {
    padding-top: 20px;
}

.padding-top-sm {
    padding-top: 40px;
}

.padding-top-md {
    padding-top: 80px;
}

.padding-top-lg {
    padding-top: 120px;
}

.padding-top-xl {
    padding-top: 160px;
}

.padding-bottom-xs {
    padding-bottom: 20px;
}

.padding-bottom-sm {
    padding-bottom: 40px;
}

.padding-bottom-md {
    padding-bottom: 80px;
}

.padding-bottom-lg {
    padding-bottom: 120px;
}

.padding-sides-md {
    padding: 0 5%;
}

/* ============================================= */
/* SECTION GENERAL
/* ============================================= */


.mobile {
    display: none;
}

.desktop {
    display: block;
}

.container {
    max-width: 1200px;
}

.section-title {
    margin-top: 30px;
    margin-bottom: 40px;
}

.container-narrow {
    max-width: 900px;
    /* margin: 0 auto; */
}

.container-small {
    max-width: 500px;
    /* margin: 0 auto; */
}

.text-narrow {
    max-width: 700px;
}

.section-orange {
    background-color: var(--orange);   
    color: #fff;
}

.page-title {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
}

.section-title {
    text-align: center;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
}


/* ============================================= */
/*  SECTION NAV
/* ============================================= */
.navbar {
    padding-inline: 5%;
    z-index: 1000;
}

.navbar-nav {
    justify-content: end;
    width: 100%;

    & li {
        padding-inline: 10px;
    }

    & li {
        position: relative;
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }

    & li::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 1px;
        background-color: #fff;
        transition: 0.3s ease-in-out;
    }

    & li:hover::after {
        width: 100%;
    }
    
}

.navbar-brand {
    max-width: 200px;
}   

/* TOGGLER */
.navbar-toggler {
    position: relative;
    border-radius: 5px;
    border: none;
    /* padding: 0.5rem; */
    cursor: pointer;
  }

  .navbar-toggler:focus {
    box-shadow: none !important;
  }
  
  
  .navbar-toggler-icon {
    display: inline-block;
    width: 80px;
    aspect-ratio: 1;
    vertical-align: middle;
    position: relative;
    background: none;
  }
  
  .toggler-line {
    display: inline;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background: #fff; 
    transition: all 0.3s ease;
  }
  
  #line-1 { top: 20%; }
  #line-2 { top: 50%; }
  #line-3 { top: 80%; }
  
  /* Active state when toggled */
  .navbar-toggler.clicked #line-1 {
    transform: translateX(-50%) translateY(11px) rotate(45deg);
    transform-origin: center;
  }
  
  .navbar-toggler.clicked #line-2 {
    opacity: 0; 
  }
  
  .navbar-toggler.clicked #line-3 {
    transform: translateX(-50%) translateY(-11px) rotate(-45deg);
    transform-origin: center;
  }
  s

/* ============================================= */
/* SECTION CTAs */
/* ============================================= */

.cta-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 20px 0;
    z-index: 300;
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
    min-width: 250px;
    max-width: 450px;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: 0.3s ease-in-out;
}

.cta-outline {
    background-color: transparent;
    color: #fff;    
    border: 1px solid #fff;
    transition: 0.3s ease-in-out;
    &:hover {
        background-color: #fff;
        color: var(--blue);
        letter-spacing: 0.1rem;
    }
}

/* ============================================= */
/*  SECTION FOOTER
/* ============================================= */


footer {
    display: flex;
    justify-content: center;
    position: relative;
    padding: 20px 8% 5px 8%;
    color: #fff;
    margin-top: -5%;
    background-color: var(--blue);
    z-index: 100;
}

.footer-content {
    position: relative;
    z-index: 100;
}

.footer-main {
    margin-bottom: 20px;

    & .col-md-4 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    & ul {
        margin-bottom: -10px !important;
    }
}

.footer-logo {
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.footer-menu .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-details {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 20px;
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.2rem;
}

.footer-menu {
    margin-bottom: 20px;
}

.copyright p {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 0;
}

.footer-image {
    position: absolute;
    bottom: 30px;
    left: 90%;
    width: 100%;
    max-width: 250px;
    margin: 0 0 0 0;
}


/* ===================================================== */
/* ===================================================== */
/* SECTION MEDIA QUERIES  */
/* ===================================================== */
/* ===================================================== */

@media (max-width: 768px) {
    .navbar .navbar-nav {
        background: #fff;
        padding-top: 20px;
        padding-bottom: 20px;
        /* max-width: 300px; */
        box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.1);
        & li {
            color: var(--blue);
            text-align: center;
        }

        & li::after {
            background-color: var(--blue);
        }
        & li:hover::after {
            width: 80px;
        }

        & li a {
            text-align: center;
        }
    }
    .navbar-collapse {
        display: flex;
        justify-content: center;
        align-items: end;
        flex-direction: column;
        & .me-auto {
            margin: unset !important;
        }
    }
    .footer-main {
    
        & .col-md-4 {
           margin-bottom: 20px;
        }

        & p {
            text-align: center;
        }
    }
}   