body, html {
    margin: 0;
    padding: 0;
    font-family: "Montserrat";
}

:root {
    --main-color: #AD002D;
    --second-color: #626262;
}

@font-face {
    font-family: "Nll";
    src: url('../fonts/Nll.otf');
}

.text-secondary {
    color: var(--second-color) !important;
}

.text-primary {
    color: var(--main-color) !important;
}

.btn-primary {
    background-color: var(--main-color) !important;
    border: 0 !important;
}

.display-15 {
    font-size: 2.4rem;
}

#header{
    border-bottom: 1px solid #7d878a;
    position: relative;
    z-index: 100;
    transition: all 0.5s ease 0s;
    color: #fff;
}

#header:not(.scrolled) .logo-fixed{
    display: none;
}

#header.scrolled{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
    transition: all 0.2s ease 0s;
    animation: .95s ease 0s normal forwards 1 running headerAnimate;
    color: black;
    border: 0;
}

#header.scrolled .logo-white{
    display: none;
}

body.scrolled{
    padding-top: 85px;
}

@keyframes headerAnimate {
    0% {
        margin-top: -150px
    }

    100% {
        margin-top: -1px
    }
}
/* General Navbar Styling */
.navbar {
    height: 65px;
}

.navbar .logo img {
    width: 200px;
}

.navbar-nav > li {
    position: relative;
    display: flex;
    align-items: center;
}

.navbar-nav > li > a, .navbar-nav > li > span {
    display: block;
    color: inherit;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 10px;
    text-decoration: none;
    position: relative;
    text-transform: uppercase;
}

.navbar-nav > li > a:hover, .navbar-nav > li > span:hover {
    color: var(--main-color);
}

/* Dropdown Menu Styling */
@media screen and (min-width: 768px) {
    .navbar-nav > li:hover > .dropdown {
        display: block;
    }
}

/* Dropdown Menu Styling */
.navbar-nav > li > .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    background-color: #fff;
    border-radius: 5px;
    color: black;
    list-style: none;
    padding: 10px 5px;
    min-width: 200px;
   
    
}

.navbar-nav > li > .dropdown > li > a {
    display: block;
    text-decoration: none;
    color: black;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 12px;
}

.navbar-nav > li > .dropdown > li > a:hover {
    color: var(--main-color);
}

#navbar > li > .dropdown > li > a:hover {
    color: var(--main-color);
}

#navbar li .dropdown {
    white-space: nowrap;
}


#navbarmobile .dropdown {
    display: none;
}

#navbarmobile .dropdown.open {
    display: block;
}

#navbarmobile .chevron-mobile {
    float: right;
    margin-right: 10px;
    transition: transform 0.35s ease;
}



.navbar-nav li a i {
    font-size: 12px;
}

.page-hero-section{
    margin-top: -86px;
    padding: 190px 0 100px;
    width: 100%;
    background-image: url('/src/images/slider-hero-home-02.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.page-hero-section:before{
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: #142F43;
    opacity: 0.7;
}

.page-hero-section h1{
    font-size: 23px;
    font-weight: 600;
    color: #fff;
    margin: 0;
    position: relative;
    max-width: 100%;
}

.page-hero-section h1:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 5px;
    width: 100px;
    background: var(--main-color);
    border-radius: 50px;
}

.btn-alliances{
    background-color: var(--main-color);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.btn-alliances:hover{
    color: #fff;
    background-color: #690303;
}

.btn-sites {
    position: relative;
    display: inline-block;
    overflow: hidden;
    vertical-align: middle;
    font-size: 14px !important;
    color: #fff !important;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    padding: 15px 32px !important;
    text-transform: uppercase;
    z-index: 1;
    transition: all 500ms ease;
    background-color: var(--main-color);
    letter-spacing: 1.6px;
    border: none;
}

.btn-sites:hover {
    color: #fff;
}

.btn-sites:hover:before {
    top: -40%;
}

.btn-sites:before {
    transition-duration: 800ms;
    position: absolute;
    width: 200%;
    height: 200%;
    content: "";
    top: 110%;
    left: 50%;
    background-color: var(--second-color);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    border-radius: 50%;
    z-index: -1;
}

.page-section{
    padding: 50px 0;
}

#our-values{
    margin-bottom: -100px;
}

.p-heading {
    font-weight: 600;
    font-size: 24px;
    position: relative;
    margin-bottom: 35px;
}

.p-heading:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    height: 5px;
    width: 100px;
    background: var(--main-color);
    border-radius: 50px;
}

#toggle-nav {
    display: none;
}

.page-heading{
    color: var(--main-color);
    font-size: 25px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
}

@media screen and (max-width: 992px) {
    #toggle-nav {
        display: block;
    }
    #navbarmobile{
        position: fixed;
        right: 0;
        top: 84px;
        width: 40%;
        height: 100vh;
        background-color: #fff;
        padding-top: 20px;
        border-left: 1px solid #00000014;
    }
    #navbarmobile:not(.show){
        display: none !important;
    }
    #navbarmobile > li{
        padding-left: 20px;
        display: block;
        border-bottom: 1px solid #00000036;
    }
    #navbarmobile > li > span{
        text-shadow: none !important;
        color: #212121 !important;
        font-size: 14px !important;
        cursor: pointer;
    }
    #navbarmobile .dropdown {
        width: 100%;
        left: -100%;
        top: 0 !important;
    }
    #navbarmobile .dropdown.open {
        display: block !important;
        
    }
}

@media screen and (max-width: 992px) {
    #navbarmobile{
        width: 70%;
    }
    #navbarmobile .dropdown {
        position: static !important;
    }
    #navbarmobile .dropdown.open {
        display: block !important;
    }
    .breadcrumb {
        margin-top: 30px;
    }
    .page-heading, .p-heading{      
        font-size: 18px;
    }
}

@media screen and (max-width: 576px) {
    .navbar .logo img {
        width: 150px;
    }
    #navbarmobile{
        width: 100%;
        margin-right: 15px;
    }
}

#navbarmobile > li > span > .chevron-mobile {
    float: right;
    margin-right: 10px;
}

#navbarmobile {
    position: fixed;
    right: 0;
    top: 84px;
    width: 70%;
    height: 100vh;
    background-color: #fff;
    padding-top: 20px;
    border-left: 1px solid #00000014;
    display: none; /* Hidden by default */
    z-index: 100;
}

#navbarmobile.show {
    display: block; /* Show when toggled */
}

#navbarmobile > li {
    padding-left: 20px;
    display: block;
    border-bottom: 1px solid #00000036;
    position: relative;
}

#navbarmobile > li > span {
    text-shadow: none !important;
    color: #212121 !important;
    font-size: 14px !important;
    cursor: pointer;
}

#navbarmobile .dropdown {
    display: none;
    padding-left: 20px;
    position: relative;
}

#navbarmobile .dropdown.open {
    display: block;
    left: 100%;
}

#navbarmobile .chevron-mobile {
    float: right;
    margin-right: 10px;
    transition: transform 0.35s ease;
}

#navbarmobile .chevron-mobile.open {
    transform: rotate(-90deg);
}


.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb a{
    color: #fff !important;
    padding: 0 10px;
    font-weight: 600;
    letter-spacing: 2px;
}

.breadcrumb ul li:after {
    content: "";
    width: 9px;
    height: 9px;
    background-color: var(--main-color);
    margin: 0px 1px 0 2px;
    display: inline-block;
    border-radius: 2px;
}

.breadcrumb ul li:last-child a {
    color: var(--main-color) !important;
}

.breadcrumb ul li:last-child:after {
    content: none
}

.read-more{
    color: #575a7b;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
}



.president-name {
    font-size: 16px;
    color: var(--second-color);
}

.president-name span{
    font-weight: 600;
    color: var(--main-color);
}

.history-image-hover {
    transition: all .3s ease-out;
    position: relative;
}

.history-image-hover:hover{
    transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
}

.history-image {
    width: 100%;
    border-radius: 10px;
   
    object-fit: cover;
    object-position: top;
}

.couvernance-image-hover {
    transition: all .3s ease-out;
    position: relative;
}

.couvernance-image-hover:hover{
    transform: translate(0, -10px);
    -webkit-transform: translate(0, -10px);
}

.couvernance-image {
    width: 200px;
    border-radius: 10px;
    height: 450px;
    object-fit: cover;
    object-position: top;
}

footer{
    background-color: var(--main-color);
}
.footer-logo{
    width: 100%;
    max-width: 200px;
}
.footer-logo img{
    width: 100%;
}
.footer-bar{
    padding: 20px 0;
    border-top: 1px solid #ffffff33;
    margin-top: 50px;
}
.footer-title {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
}
.footer-list {
    padding: 0;
    list-style: none;
    margin-top: 15px;
}
.footer-list li {
    margin-bottom: 10px;
}
.footer-list a {
    color: #fff;
    font-size: 15px;
}
.footer-menu {
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}
.footer-menu li {
    display: inline-block;
}
.footer-menu li a {
    color: #ffffff;
}
.footer-menu li:not(.last):after {
    content: '|';
    margin: 0 15px;
    top: 0;
    margin-top: -2px;
    color: rgba(255, 255, 255, 0.5);
    height: auto;
    width: auto;
}

