/* Default styles - small devices (Mobile, screen width < 768px) */

/*--------------------------------------------------------------
** Typography
--------------------------------------------------------------*/

body {
    color: var(--black);
    /*inter*/
    /*font-family: 'Inter', sans-serif;*/
    /*manrope*/
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
}


h1 {
    font-size: 2.375rem;
    font-weight: 900;
}

h2 {
    margin-bottom: 0.7rem;
}

main h2 {
    padding-top: 1rem;
    margin-bottom: .875rem;
}

h3 {
    margin-bottom: 0.5rem;
    padding-top: 10px;
}



main p, main ul {
    margin-bottom: 1.4rem;
}

a {
    color: var(--navy);
}


.all-arrow a {
    text-decoration: none;
}


.main-home, .main-landing {
    padding: 0;
}

hr {
    border-bottom: 3px solid var(--bs-light);
    opacity: 1;
}


/*--------------------------------------------------------------
** Navigation
--------------------------------------------------------------*/

.logo-top {
    height: 100px;
    display: flex;
    align-items: center;
}

    .logo-top img {
        height: 60px;
    }


.nes-logo-top {
    padding: 0.7rem;
    padding-right: 0;
}

/* Main Navigation */
#main-nav {
    /*background-color: var(--light);*/
}

    #main-nav .nav-item {
        padding: 0.5rem 0.75rem;
    }

    #main-nav .nav-link {
        color: var(--dark);
        white-space: nowrap;
        font-size: 1.125rem;
    }

nav a {
    font-weight: 400;
    transition: 0.3s ease-in-out;
}

nav .breadcrumb a {
    text-decoration: none;
}

#main-nav .current {
    /*background-color: var(--sky);*/
}

    #main-nav .current a {
        border-bottom: 3px solid var(--navy);
        /*color: var(--dark);*/
        color: var(--navy);
        font-weight: 500;
        margin-bottom: 0.5rem;
        padding-bottom: calc(0.5rem - 3px);
    }

#main-nav .nav-item {
    font-size: 1rem;
}

/* Burger menu toggle */

.animated-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

    .animated-icon span {
        display: block;
        position: absolute;
        height: 3px;
        width: 100%;
        border-radius: 9px;
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        -o-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .animated-icon span {
        background: var(--navy);
    }

        .animated-icon span:nth-child(1) {
            top: 0px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        .animated-icon span:nth-child(2) {
            top: 10px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

        .animated-icon span:nth-child(3) {
            top: 20px;
            -webkit-transform-origin: left center;
            -moz-transform-origin: left center;
            -o-transform-origin: left center;
            transform-origin: left center;
        }

    .animated-icon.open span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 0px;
        left: 8px;
    }

    .animated-icon.open span:nth-child(2) {
        width: 0%;
        opacity: 0;
    }

    .animated-icon.open span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 21px;
        left: 8px;
    }

/*Skip to content*/
#skiptocontent a {
    padding: 8px;
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    top: -50px;
    left: 0px;
    color: #fff;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    border-bottom-right-radius: var(--border-radius);
    background: var(--navy);
    -webkit-transition: top 1s ease-out;
    transition: top 1s ease-out;
    z-index: 100;
}

    #skiptocontent a:focus {
        position: absolute;
        left: 0px;
        top: 0px;
        outline: 0;
        -webkit-transition: top .1s ease-in;
        transition: top .1s ease-in;
        z-index: 999999;
    }

/*Back to top */
#back-to-top {
    display: inline-block;
    background: var(--navy);
    border-radiu: var(--border-radius);
    width: 60px;
    height: 60px;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 30px;
    transition: background-color .3s, opacity .5s, visibility .5s;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

    #back-to-top::after {
        content: "\f077";
        font-family: "Font Awesome 6 Pro";
        font-weight: normal;
        font-style: normal;
        font-size: 2em;
        line-height: 58px;
        color: #fff;
    }

    #back-to-top:hover {
        cursor: pointer;
        background-color: var(--mid);
    }

    #back-to-top:active {
        background-color: var(--mid);
    }

    #back-to-top.show {
        opacity: 1;
        visibility: visible;
    }


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header-home {
    /*background-color: var(--navy);*/
    background: rgb(18,31,59);
background: -moz-linear-gradient(37deg, rgba(18,31,59,1) 0%, rgba(0,67,128,1) 100%);
background: -webkit-linear-gradient(37deg, rgba(18,31,59,1) 0%, rgba(0,67,128,1) 100%);
background: linear-gradient(37deg, rgba(18,31,59,1) 0%, rgba(0,67,128,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#121f3b",endColorstr="#004380",GradientType=1);
height: 100%;
}



.header-col {
    background-color: var(--navy-90);
    border-radius: var(--border-radius);
    z-index: 999;
}

#header-home {
  position: relative;
}

#header-home::after {
  content: "";
  /*background: url("/media/cxvhh5vy/home-banner.png");*/
  background: url("/media/vftkgq31/banner-compressed-1.png");
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    /*background-blend-mode: luminosity;*/
  opacity: 0.3;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: 0;   
}

.highlight-svg {
    position: absolute;
}

header .lead {
    opacity: .8;
}
#header-mob {
    background: rgb(18,31,59);
background: -moz-linear-gradient(37deg, rgba(18,31,59,1) 0%, rgba(0,67,128,1) 100%);
background: -webkit-linear-gradient(37deg, rgba(18,31,59,1) 0%, rgba(0,67,128,1) 100%);
background: linear-gradient(37deg, rgba(18,31,59,1) 0%, rgba(0,67,128,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#121f3b",endColorstr="#004380",GradientType=1);
height: 100%;
}
#header-mob .header-mob {
    color: #ffffff;
    font-size: 1.75rem;
}

header h1 {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
}

.home-banner{
    float: right;
    width: 50%;
    z-index: -1;
}

/*--------------------------------------------------------------
# Inner Header
--------------------------------------------------------------*/

#header-inner {
    background-color: var(--light);
    color: var(--navy);
    /*background-blend-mode: luminosity;*/
   
    /*background-image: url("/media/qj5im1dk/inner-1-01.png");*/
   
    /* background-image: url("/media/rpwhazat/inner-3-01.png");*/
    
    
    /*background-image: url("/media/pkincrej/inner-2-01.png");*/
    /*background-position: center;*/
    /*background-repeat: no-repeat; */
    /*background-size: cover;*/
    
}

    #header-inner .container {
        padding-top: 45px;
        padding-bottom: 45px;
    }

/*Breadcrumbs*/
.breadcrumb a {
    /*color: #ffffff;*/
    text-decoration: none;
}

    .breadcrumb a:hover {
        text-decoration: underline;
    }

.breadcrumb-item {
    /*font-size: 0.813rem;*/
    font-size: 1rem;
}

.breadcrumb .active {
    /*opacity: .85;*/
}

.breadcrumb-item.active {
    color: var(--mid);
}
/*Will only show last 2 breadcrumb items on small devices*/
.breadcrumb-item:not(:nth-last-of-type(-n+2)) {
    display: none;
}

.breadcrumb-item:nth-last-of-type(n+2) {
    padding-left: 0;
}

    .breadcrumb-item:nth-last-of-type(n+2)::before {
        display: none;
    }

/*--------------------------------------------------------------
# Landing cards
--------------------------------------------------------------*/
.landing-cards .row .col .card {
    text-decoration: none;
}

.landing-cards .row .col .card {
    border: none;
    box-shadow: var(--boxShadow);
    transition: 0.3s ease-in-out;
}

    .landing-cards .row .col .card:hover {
        background-color: var(--navy);
    }

        .landing-cards .row .col .card:hover h2, .landing-cards .row .col .card:hover p {
            color: #ffffff;
        }

.landing-cards .card-body p:nth-of-type(1) {
    color: var(--mid);
    font-weight: 500;
}

.landing-cards .card-body h2 {
    font-size: 1.65rem;
}
/*.landing-cards .card-title {*/
/*    min-height: 134px;*/
/*}*/

/*Quick links */
.quick-links {
    background-color: var(--light);
}

    .quick-links i {
        font-size: 2.5rem;
    }

    .quick-links .card:hover i:before {
        color: #ffffff;
    }
/*--------------------------------------------------------------
# News
--------------------------------------------------------------*/

.news-date {
    margin-top: 0.875rem;
    margin-bottom: 1rem;
}

#news .card-title {
    padding-top: 0;
}

.all-news {
    margin-top: 20px;
}

.article-side {
    /*border-radius: var(--borderRadius);*/
    /*box-shadow: var(--boxShadowDefault);*/
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    overflow: hidden;
}

.side-menu .news-date {
    color: var(--mid);
}

.side-menu img {
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    width: 100%;
    object-fit: cover;
    height: auto;
}


/*Paging*/

#paging a {
    color: #ffffff;
}

    #paging a:hover {
        color: var(--navy);
    }

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
.btn {
    font-weight: 500;
}

    .btn.btn-primary {
        background-color: var(--navy);
        border: 2px solid var(--navy);
        padding: 0.75rem;
    }

        .btn.btn-primary:hover {
            background-color: #ffffff;
            color: var(--navy);
        }

    .btn.btn-outline-primary {
        background-color: #ffffff;
        color: var(--navy);
        border: 2px solid var(--navy);
        padding: 0.75rem;
    }

        .btn.btn-outline-primary:hover {
            background-color: var(--navy);
            color: #ffffff;
        }
/*--------------------------------------------------------------
# Contact us 
--------------------------------------------------------------*/

/*Contact form */



/*#contact-form .form-signin {*/
/*  width: 100%;*/
/*  max-width: 420px;*/
/*  padding: 15px;*/
/*  margin: auto;*/
/*}*/

#contact-form .form-label-group {
    position: relative;
    margin-bottom: 1rem;
}

    #contact-form .form-label-group input,
    #contact-form .form-label-group label,
    #contact-form .form-label-group textarea {
        height: 3.5rem;
        /* padding: .75rem; */
    }

    #contact-form .form-label-group label {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        margin-bottom: 0; /* Override default `<label>` margin */
        line-height: 1.5;
        color: #495057;
        pointer-events: none;
        cursor: text; /* Match the input under the label */
        border: 1px solid transparent;
        border-radius: .25rem;
        transition: all .1s ease-in-out;
    }

    #contact-form .form-label-group input::-webkit-input-placeholder, #contact-form .form-label-group textarea::-webkit-input-placeholder {
        color: transparent;
    }

    #contact-form .form-label-group input::-moz-placeholder, #contact-form .form-label-group textarea::-moz-placeholder {
        color: transparent;
    }

    #contact-form .form-label-group input:-ms-input-placeholder, #contact-form .form-label-group textarea:-ms-input-placeholder {
        color: transparent;
    }

    #contact-form .form-label-group input::-ms-input-placeholder, #contact-form .form-label-group textarea::-ms-input-placeholder {
        color: transparent;
    }

    #contact-form .form-label-group input::placeholder, #contact-form .form-label-group textarea::placeholder {
        color: transparent;
    }

    #contact-form .form-label-group input:not(:-moz-placeholder-shown), #contact-form .form-label-group textarea:not(:-moz-placeholder-shown) {
        padding-top: 1.75rem;
        padding-bottom: .5rem;
    }

    #contact-form .form-label-group input:not(:-ms-input-placeholder), #contact-form .form-label-group textarea:not(:-ms-input-placeholder) {
        padding-top: 1.75rem;
        padding-bottom: .5rem;
    }

    #contact-form .form-label-group input:not(:placeholder-shown), #contact-form .form-label-group textarea:not(:placeholder-shown) {
        padding-top: 1.75rem;
        padding-bottom: .5rem;
    }

    #contact-form .form-label-group input:not(:-moz-placeholder-shown) ~ label, #contact-form .form-label-group textarea:not(:-moz-placeholder-shown) ~ label {
        padding-top: .25rem;
        padding-bottom: .5rem;
        font-size: 12px;
        color: #777;
    }

    #contact-form .form-label-group input:not(:-ms-input-placeholder) ~ label, #contact-form .form-label-group textarea:not(:-ms-input-placeholder) ~ label {
        padding-top: .25rem;
        padding-bottom: .5rem;
        font-size: 12px;
        color: #777;
    }

    #contact-form .form-label-group input:not(:placeholder-shown) ~ label, #contact-form .form-label-group textarea:not(:placeholder-shown) ~ label {
        padding-top: .25rem;
        padding-bottom: .5rem;
        font-size: 12px;
        color: #777;
    }

/* Fallback for Edge
-------------------------------------------------- */
@supports (-ms-ime-align: auto) {
    #contact-form .form-label-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

        #contact-form .form-label-group label {
            position: static;
        }

        #contact-form .form-label-group input::-ms-input-placeholder, .form-label-group textarea::-ms-input-placeholder {
            color: #777;
        }
}


/* .form-container {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
} */

#contact-form .form-container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    min-height: 100vh;
    /* background-color: #f5f5f5; */
    /* flex-direction: column;s */
    overflow: scroll;
}

#contact-form .form-control {
    border: none;
    border-radius: 0;
    border-bottom: 2px solid #ADADAD;
    padding-left: 0;
    font-size: 1.5rem;
    color: #121417;
    /* padding-top: 2rem; */
    transition: 0.2s;
}

    #contact-form .form-control:focus {
        border-color: var(--navy);
        border-width: 3px;
        box-shadow: none;
        /*padding-top: 1rem;*/
    }

#contact-form label {
    font-size: 1.5rem;
}

#contact-form textarea {
    resize: none;
}


#contact-form .form-dark {
    background: transparent;
    color: #ffffff;
}

    #contact-form .form-dark:focus {
        background: transparent;
        color: #ffffff;
    }

#contact-form .form-label-group label {
    color: #6c757d;
}

#contact-form .text-muted {
    color: #ffffff !important;
}

/* #btn-contact:focus, #btn-contact:active {
    background-color: #121417;
    border-color: #f49d00;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.075) inset, 0px 0px 8px #f49d00;
    color:#f49d00;

} */

#contact-form input:-internal-autofill-selected {
    background-color: #121417 !important;
}

#contact-form input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, select:-webkit-autofill, select:-webkit-autofill:hover, select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--dark);
    -webkit-box-shadow: 0 0 0px 1000px #ffffff inset;
    transition: background-color 5000s ease-in-out 0s;
}


.contact-form-wrapper {
    background-color: #ffffff;
    box-shadow: var(--boxShadow);
}

#contact-form .form-label-group:last-of-type {
    margin-bottom: 0;
}
/*#contact-form .form-captcha {*/

/*}*/



 /* - - - - - - - - - - - - - - - - - - - - -
                  Tables
  - - - - - - - - - - - - - - - - - - - - - */

  .innerContent table {
    border: none;
    margin-bottom: 30px; }
    .innerContent table tbody tr:first-child {
      font-weight: 700;
      border-bottom: 2px solid rgba(29, 29, 29, 0.3); }
      .innerContent table tbody tr:first-child td {
        padding: 10px 0; }
    .innerContent table tbody tr td {
      padding: 10px 0;
      border-bottom: 1px solid rgba(29, 29, 29, 0.3); vertical-align:top;}
  .innerContent .leftHandNav p {
    font-size: 1.125rem;
    font-weight: 700;
    padding: 0 8px 8px 8px;
    margin: 0; }
    .innerContent .leftHandNav p a {
      color: #122B45; }
      .innerContent .leftHandNav p a:hover {
        color: #0556AD; }
  .innerContent .leftHandNav ul li {
    font-size: 1.0625rem; }
    .innerContent .leftHandNav ul li a {
      display: block;
      padding: 8px;
      color: #1D1D1D; }
      .innerContent .leftHandNav ul li a:hover {
        color: #0556AD;
        text-decoration: underline; }
      .innerContent .leftHandNav ul li a.active {
        background: #FAF4DA;
        color: #1D1D1D; }
        .innerContent .leftHandNav ul li a.active:hover {
          color: "Open Sans", sans-serif !important;
          text-decoration: none;
          cursor: default; }
  .innerContent .leftHandNav .level-4 {
    padding-left: 10px; }
  .innerContent .rightHandNav p {
    font-size: 1.125rem;
    font-weight: 700;
    padding: 10px 0;
    margin: 0; }
    .innerContent .rightHandNav p a {
      color: #1D1D1D; }
      .innerContent .rightHandNav p a:hover {
        color: #0556AD;
        text-decoration: underline; }
  .innerContent .rightHandNav ul {
    border-left: 5px solid #FAF4DA; }
    .innerContent .rightHandNav ul li {
      font-size: 1.0625rem; }
      .innerContent .rightHandNav ul li a {
        display: block;
        color: #1D1D1D;
        padding: 8px 12px; }
        .innerContent .rightHandNav ul li a:hover {
          color: #0556AD;
          text-decoration: underline; }
        .innerContent .rightHandNav ul li a.active {
          font-weight: 600; }
          .innerContent .rightHandNav ul li a.active:hover {
            color: #1D1D1D;
            text-decoration: none;
            cursor: default; }
    .innerContent .rightHandNav ul ul {
      margin-left: 10px;
      border-left: none; }


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
    background-color: var(--navy-dark);
    padding-top: 4rem;
}


    footer a {
        font-size: 1rem;
        text-decoration: none;
        font-weight: 400;
        color: var(--light);
    }

        footer a:hover {
            text-decoration: underline;
        }

.footer-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--light);
}

footer ul li {
    margin-bottom: 10px;
    padding-left: 2.3rem;
    text-indent: -1.1rem;
}

footer .fa-chevron-right {
    color: #ffffff;
    padding-right: 0.2rem;
}

.shfooter .collapse {
    display: inherit;
}

.shfooter i::before {
    color: var(--light);
}

.sub-footer .container {
    border-top: 1px solid var(--light);
    padding-top: 1rem;
}

.resize {
    text-align: center;
}

.resize {
    margin-top: 3rem;
    font-size: 1.25rem;
}

/* Social footer  */
footer .fa-brands {
    width: 7%;
}

footer .fab:before {
    font-size: 1.1rem;
}

.social-footer ul li a:hover i {
    /*color: var(--links); */
    animation: icons-rise 0.3s linear forwards;
}

@keyframes icons-rise {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translate(2.5px, -2.5px);
    }
}

.social-footer a:hover {
    text-decoration: none;
}

    .social-footer a:hover span {
        text-decoration: underline;
    }

@keyframes arrow-right {
    from {
        transform: translateX(0px);
    }

    to {
        transform: translateX(3px);
    }
}



footer hr:not([size]) {
    height: 1px;
    color: var(--pigeon);
    opacity: .8;
}

footer ul li {
    padding-left: 0;
    text-indent: 0;
}

footer ul {
    padding: 20px 10px 10px 10px;
}

footer .fa-chevron-right {
    display: none;
}

.footer-title {
    margin-bottom: 0;
}

.shfooter ul {
    margin-bottom: 0;
}

.shfooter .collapse {
    display: none;
}

    .shfooter .collapse.show {
        display: block;
    }

.shfooter .title .fa-angle-up,
.shfooter .title[aria-expanded=true] .fa-angle-down {
    display: none;
}

.shfooter .title[aria-expanded=true] .fa-angle-up {
    display: block;
}

.shfooter .navbar-toggler {
    display: inline-block;
    padding: 0;
}

/* NES logo footer  */
footer .nes-logo {
    text-align: center;
}

footer .nes-logo-top {
    width: 68px;
}

.sub-footer p {
    color: var(--light);
    font-size: 14px;
}

.sub-footer .container {
    padding: 1rem;
}
