﻿html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 5px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}
.row-bg-white {
    background: #FFFFFF;
}
.row-bg-mediumblue {
    background: #90E0EF;
}
.row-bg-lightblue {
    background: #CAF0F8;
}
    .row-bg-mediumblue .card, .row-bg-lightblue .card {
        background: rgba(255,255,255,.92);
    }

.text-justify {
    text-align: justify;
    text-justify: inter-word; 
    hyphens: auto; 
    overflow-wrap: break-word;
}
.footer .footer-block {
    padding-top: .25rem;
}

.footer .footer-title {
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .2px;
    opacity: .95;
}

.footer .footer-text,
.footer .footer-text p {
    margin-bottom: .35rem;
    
}

.footer .footer-link {
    color: rgba(255,255,255,.92);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,.25);
    padding-bottom: 1px;
    transition: border-color .15s ease, opacity .15s ease;
}

    .footer .footer-link:hover {
        opacity: 1;
        border-bottom-color: rgba(255,255,255,.55);
    }

/* Social buttons */
.footer .footer-social {
    display: flex;
    gap: .6rem;
    align-items: center;
}

.footer .social-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    color: #fff;
    text-decoration: none;
    transition: transform .15s ease, background-color .15s ease, border-color .15s ease;
}

    .footer .social-btn i {
        font-size: 1.05rem;
        line-height: 1;
    }

    .footer .social-btn:hover {
        transform: translateY(-1px);
        background: rgba(255,255,255,.18);
        border-color: rgba(255,255,255,.28);
    }

    .footer .social-btn:focus-visible {
        outline: 3px solid rgba(255,255,255,.35);
        outline-offset: 2px;
    }


.topbar .nav-link,
.topbar .nav-item {
    padding-top: .15rem !important;
    padding-bottom: .15rem !important;
    line-height: 1.1;
}

.topbar .btn.btn-sm {
    padding-top: .15rem;
    padding-bottom: .15rem;
    padding-left: .5rem;
    padding-right: .5rem;
    line-height: 1.1;
}

.topbar i {
    line-height: 1; 
}

.mainbar {
    --bs-navbar-padding-y: .25rem; /* default .5rem  */
   /* background: #023E8A;*/
    background: linear-gradient( 180deg, 0%, #022B63 100% );
}

    .mainbar .nav-link {
        padding-top: .35rem; /* nav-link  */
        padding-bottom: .35rem;
        line-height: 1.1;
    }

   
    .mainbar .navbar-brand img {
        height: 32px !important; 
    }
.font-roboto {
    font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.font-arsenal {
    font-family: 'Arsenal', 'Roboto', system-ui, sans-serif;
}
.nav-hero-left {
    /*background: #023E8A;*/
    background: #02387d;
    ;
    padding: 2rem;
    overflow: hidden;
}

.nav-hero-title {
    margin: 0 0 .75rem 0;
    line-height: 1.05;
    font-weight: 800;
    font-size: clamp(1.6rem, 2.2vw + .6rem, 3rem);
}

.nav-hero-sub {
    margin: 0;
    line-height: 1.15;
    font-weight: 600;
    opacity: .95;
    font-size: clamp(1.05rem, 1.2vw + .5rem, 2rem);
}

.nav-country {
    color: #EAF2FF;
}

    .nav-country:hover,
    .nav-country.active {
        color: #FFD166; 
    }

@media (min-width: 992px) {
    .sticky-lg-top {
        top: 110px;
        z-index: 1;
    }

#cookieSettings {
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    font-size: 18px;
}

    .gear-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.3s, background-color 0.3s, color 0.3s;
        color: #6b6b6b; 
        background-color: #f5f5f5;
        position: fixed;
        bottom: 1rem; 
        left: 1rem; 
        z-index: 1060;
        width: 48px;
        height: 48px;
    }

    .gear-btn:hover {
        transform: rotate(20deg) scale(1.1);
        background-color: #e0e0e0;
        color: #333;
    }

    .gear-btn:active {
        transform: rotate(-10deg) scale(0.95);
    }





