@charset "utf-8";

/* Load Google fonts*/
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Display:wght@300;400;500;600;700;800;900&display=swap');

/* Load FontAwesome */
@import url("../fonts/font-awesome/css/all.min.css");

:root {
    --bs-primary: #293666;
    --bs-primary-rgb: 41, 54, 102;
    --bs-secondary: #fcb940;
    --bs-secondary-rgb: 252, 185, 64;
    --bs-tertiary: #ec1c24;
    --bs-tertiary-rgb: 236, 28, 36;
    --bs-accent: #f05a28;
    --bs-accent-rgb: 240, 90, 40;
    --bs-light-rgb: 238, 241, 250;
}

body {
    font-family: "Red Hat Display", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #333;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.text-secondary {
    color: var(--bs-secondary) !important;
}

.text-tertiary {
    color: var(--bs-tertiary) !important;
}

.text-accent {
    color: var(--bs-accent) !important;
}

.bg-secondary {
    background-color: var(--bs-secondary) !important;
}

.bg-tertiary {
    background-color: var(--bs-tertiary);
}

.bg-accent {
    background-color: var(--bs-accent);
}

.btn-primary {
    background: var(--bs-primary);
    font-weight: bold;
    text-decoration: none;
    padding: 11px 30px;
    min-width: 120px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    border: 0;
}

    .btn-primary:hover {
        background-color: var(--bs-accent) !important;
    }

.btn-secondary {
    background-color: var(--bs-secondary);
    border: 0;
    color: var(--bs-primary) !important;
}

    .btn-secondary:hover {
        background-color: #fcb940 !important;
    }

.btn-outline-primary {
    border-color: var(--bs-primary);
    color: var(--bs-primary);
}

    .btn-outline-primary:hover {
        background-color: var(--bs-primary) !important;
    }

.nav-link {
    color: var(--bs-primary);
    font-weight: bold;
}

    .nav-link:hover {
        color: var(--bs-accent);
    }

.nav-tabs .nav-link.active {
    background-color: var(--bs-accent);
    color: #fff;
}

header {
    position: absolute;
    width: 100%;
    left: 0;
    height: 90px;
    z-index: 1001;
}

    header ul li a.active {
        color: var(--bs-secondary);
    }

#topbar {
    background: var(--bs-primary);
}

    #topbar a {
        color: #fff;
    }

        #topbar a:hover {
            color: var(--bs-secondary);
        }

    #topbar .nav li {
        padding: 0 .5rem;
        border-right: 1px solid rgba(255, 255, 255, .1);
        border-left: 1px solid rgba(255, 255, 255, .1);
    }

    #topbar .nav .nav-link {
        font-weight: normal;
        font-size: 13px;
    }

        #topbar .nav .nav-link i {
            font-size: 16px;
        }

.logo {
    height: 80px;
}

#hero,
#hero .carousel-item {
    height: calc(100vh - 36px);
    padding: 0;
}

    #hero .carousel-item::before {
        content: '';
        width: 100%;
        height: 100%;
        position: absolute;
        background: var(--bs-primary);
        background: linear-gradient(300deg, rgba(252, 185, 64, 0.50) 0%, rgba(41, 54, 102, 0.75) 50%);
    }

    #hero .carousel-item .carousel-caption {
        top: 50%;
        transform: translateY(-50%);
    }

.carousel-control-next,
.carousel-control-prev {
    width: 5%;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    height: 1.5rem;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--bs-secondary);
    opacity: 1;
}

.carousel-indicators .active {
    background-color: var(--bs-accent);
}

.main-menu li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

    .main-menu li a:hover,
    .main-menu li a:active,
    .main-menu li a:focus {
        color: var(--bs-secondary);
    }

.main-menu li::after {
    float: right;
    position: relative;
    font-family: "FontAwesome";
    content: "\f111";
    font-size: 6px;
    margin-top: -24px;
    margin-right: -4px;
    color: var(--bs-secondary);
}

.main-menu li:last-child::after {
    display: none;
}

section {
    padding: 90px 0;
}

.page-header {
    padding: 150px 0;
    position: relative;
}

    .page-header::before {
        content: '';
        margin-top: -150px;
        width: 100%;
        height: 100%;
        position: absolute;
        background: var(--bs-primary);
        background: linear-gradient(300deg, rgba(252, 185, 64, 0.50) 0%, rgba(41, 54, 102, 0.75) 50%);
    }

.isolation {
    isolation: isolate;
}

.mt-n1 {
    margin-top: -10rem;
}

.breadcrumbs {
    padding: 1rem;
    background-color: var(--bs-secondary);
}

.breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-item a {
    color: var(--bs-tertiary);
    text-decoration: none;
}

    .breadcrumb-item a:hover {
        text-decoration: underline;
    }

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--bs-primary);
    opacity: .5;
}

.breadcrumb-item.active {
    color: var(--bs-primary);
}

.small-border {
    width: 50px;
    height: 3px;
    background: var(--bs-primary);
    border-left: none;
    border-right: none;
    display: block;
    margin: 0 auto;
    margin-bottom: 30px;
    margin-top: 30px;
}

    .small-border.sm-left {
        margin-left: 0;
    }

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--bs-primary);
    transform: all 2s ease-in;
}

    .sticky .main-menu li a {
        color: #fff;
    }

        .sticky .main-menu li a.active {
            color: var(--bs-secondary);
        }

    .sticky button {
        color: #fff;
        outline: none;
    }

/* .sticky + .content {
    padding-top: 60px;
  } */


#back-to-top {
    background: #ffffff;
    color: var(--bs-primary);
    position: fixed;
    bottom: -40px;
    right: 20px;
    z-index: 1020;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    border: 0;
    border-radius: 100%;
    -moz-border-radius: 100%;
    -webkit-border-radius: 100%;
    text-decoration: none;
    transition: opacity 0.2s ease-out;
    outline: none;
    opacity: 0;
    border: solid 1px #bbb;
    padding-top: 4px;
    transition: .7s;
}

    #back-to-top:hover {
        color: #000000;
    }

    #back-to-top.show, .show {
        bottom: 20px;
        opacity: 1;
    }

    #back-to-top.hide, .hide {
        bottom: -40px;
    }

/* #back-to-top:before {
    font-family: "Font Awesome 6 Free";
    font-size: 18px;
    content: "\f077";
    color: #222;
    position: relative;
} */


.nvm .card {
    padding: 50px;
    background: #fff;
    position: relative;
    overflow: hidden !important;
    border: 0;
    border-radius: 0;
}

    .nvm .card:hover {
        color: #fff;
        background: var(--bs-primary);
        transition: all .8s ease;
    }

    .nvm .card i {
        text-align: center;
        font-size: 28px;
        color: var(--bs-primary);
        padding: 14px 0;
        width: 60px;
    }

    .nvm .card .card-body {
        padding: 1rem 0 0;
    }

        .nvm .card .card-body h4 {
            padding-bottom: 1rem;
        }

        .nvm .card .card-body p {
            margin-bottom: 0;
        }

    .nvm .card .ico-bg {
        position: absolute;
        font-size: 240px;
        background: none;
        width: auto;
        height: auto;
        color: rgba(255, 255, 255, .1);
        right: 0;
        top: 30%;
    }

    .nvm .card:hover .ico-bg {
        transform: rotate(15deg);
        scale: 1.2;
        transition: all 3s ease;
    }


.amo .card-footer {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    font-weight: 600;
}

    .amo .card-footer span {
        font-weight: normal;
    }


.mask {
    width: 100%;
    position: relative;
    overflow: hidden !important;
    display: inline-block;
}

    .mask img {
        width: 100%;
        height: 100%;
    }

    .mask .cover {
        display: table;
        position: absolute;
        z-index: 100;
        width: 100%;
        height: 70px;
        padding: 25px;
        background: var(--bs-primary);
        bottom: 0px;
        top: 100%;
        margin-top: -70px;
        transition: all .5s ease-in-out;
    }

        .mask .cover .c-inner {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

    .mask.light .cover {
        background: #ffffff;
    }

    .mask .cover h3 {
        font-size: 18px;
        color: #fff;
        line-height: 1em;
        padding-left: 30px;
        margin-bottom: 30px;
    }

    .mask.light .cover h3 {
        color: #000000;
    }

    .mask .cover p {
        color: #ffffff;
        padding-right: 25px;
    }

    .mask.light .cover p {
        color: #777777;
    }

    .mask:hover .cover {
        height: 100%;
        top: 0;
        margin-top: -0px;
        background: rgba(35, 37, 42, .8);
    }

        .mask:hover .cover p {
            opacity: 1;
        }

        .mask:hover .cover p {
            padding-top: 0px;
        }

        .mask:hover .cover h3 i {
            color: var(--bs-secondary);
        }

    .mask .cover h3 span {
        margin-left: 20px;
    }

    .mask .cover h3 i {
        font-size: 32px;
        position: absolute;
        left: 30px;
        margin-top: -8px;
    }

    .mask.s1 .cover {
        top: 0;
        padding: 30px;
        text-align: center;
        background: rgba(0, 0, 0, .0);
    }

        .mask.s1 .cover .desc {
            opacity: 0;
        }

    .mask.s1:hover .cover {
        background: rgba(0, 0, 0, .8);
    }

        .mask.s1:hover .cover .desc {
            opacity: 1;
        }

    .mask.s1 h3 {
        font-size: 24px;
    }

    .mask .cover a {
        display: block;
        padding: 5px 10px;
        width: 100%;
        text-align: center;
    }

    .mask .s-gradient img {
        -webkit-filter: grayscale(100%);
        -moz-filter: grayscale(100%);
        -o-filter: grayscale(100%);
        -ms-filter: grayscale(100%);
        filter: grayscale(100%);
    }

    .mask .s-gradient {
        position: relative;
    }

        .mask .s-gradient .gradient-fx {
            position: absolute;
            background: #333;
            width: 100%;
            height: 100%;
            z-index: 1;
            background: -moz-linear-gradient(left, rgba(var(--primary-color-rgb), .75) 0%, rgba(var(--primary-color-rgb), .2) 100%);
            background: -webkit-linear-gradient(left, rgba(var(--primary-color-rgb), .75) 0%, rgba(var(--primary-color-rgb), .2) 100%);
            background: linear-gradient(to right, rgba(var(--primary-color-rgb), .75) 0%, rgba(var(--primary-color-rgb), .2) 100%);
        }

.cover a.btn-link:hover {
    color: #fff;
}

footer a,
footer nav li a {
    color: #fff;
}

    footer a:hover,
    footer nav li a {
        color: var(--bs-secondary);
    }

.footer-last {
    border-top: solid 1px rgba(255, 255, 255, .1);
    margin-top: 1rem;
    padding: 20px 0 20px 0;
}

.logo-footer {
    margin-bottom: 1rem;
    filter: brightness(10);
    transition: all ease .3s;
}

    .logo-footer:hover {
        filter: brightness(1);
    }


.annual-congress a {
    text-decoration: none;
    color: currentColor;
}

.annual-congress .card {
    overflow: hidden;
}

    .annual-congress .card img {
        transform: scale(1);
        transition: all ease-in-out .2s;
    }

    .annual-congress .card:hover img {
        transform: scale(1.1);
        transform-origin: bottom;
    }

aside h4 {
    color: var(--bs-primary);
    font-weight: 500;
}

aside .small-border {
    height: 2px;
    width: 30px;
    margin: 0px 0 20px 0;
    display: block;
}

.news .card-header {
    background-color: unset;
    border-bottom: 0;
}

.news h5.card-title {
    line-height: 1.5;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 1rem 0 0;
    /* white-space: nowrap; */
    /* text-overflow: ellipsis; */
}

.news p.card-text {
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    /* white-space: nowrap; */
    /* text-overflow: ellipsis; */
}

.day-photos img,
.day-photos video {
    border-radius: .5rem;
    transition: all ease-in-out .3s;
}

    .day-photos img:hover {
        scale: 1.03;
    }

.contact-details a {
    color: var(--bs-primary);
}

    .contact-details a:hover {
        color: var(--bs-accent);
    }

.section-page-links {
    padding: 2rem 0;
    position: sticky;
    top: 58px;
    z-index: 1020;
}

.page-links .list-group-item.active {
    background-color: var(--bs-accent);
    border: 0;
    border-radius: 0;
}

section {
    scroll-margin-top: 100px;
}

@media only screen and (max-width: 992px) {
    header {
        background: #fff;
        position: relative;
        height: auto;
    }

    .main-menu li a {
        color: var(--bs-primary);
    }

    .footer-menu li a {
        color: #FFF;
    }

    #hero,
    #hero .carousel-item {
        height: auto;
    }

    .page-header {
        padding: 0;
    }

        .page-header::before {
            margin-top: 0;
        }
}

/*custom styles start*/

div.pager a {
    display: inline-block;
    text-decoration: none;
    margin: auto 2px;
    color: black;
    background-color: var(--primary);
    border-radius: 5px;
    border: 1px solid var(--primary);
    padding: 5px 10px;
    font-size: 14px;
    transition: all 0.15s ease-in-out;
}

div.pager span span {
    display: inline-block;
    text-decoration: none;
    margin: auto 2px;
    color: var(--primary);
    background-color: black;
    border-radius: 5px;
    border: 1px solid var(--primary);
    padding: 5px 10px;
    font-size: 14px;
    transition: all 0.15s ease-in-out;
}

.first {
    color: var(--primary);
}

.last {
    color: var(--primary);
}

div.pager span span.current {
    color: white;
    font-weight: bold;
}


.footer-menu li a {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
}

    .footer-menu li a:hover,
    .footer-menu li a:active,
    .footer-menu li a:focus {
        color: var(--bs-secondary);
    }

.footer-menu li::after {
    float: right;
    position: relative;
    font-family: "FontAwesome";
    content: "\f111";
    font-size: 6px;
    margin-top: -24px;
    margin-right: -4px;
    color: var(--bs-secondary);
}

.footer-menu li:last-child::after {
    display: none;
}

.htmlcontrol {
    padding: 0px !important;
}


.bar {
    text-align: center;
    padding: 10px 30px;
    min-height: 80px; /* set it at will according to your message's length in small devices */
    z-index: 999999999;
    background-color: #DE3163;
    /*position: fixed;*/
    top: 0;
}

.barBgRed {
    background-color: #DE3163;
}

.barBgBlue {
    background-color: #004185;
}

.barBgGreen {
    background-color: #619876;
}

.bartext {
    position: relative;
    color: #fff !important;
}

    .bartext a {
        color: #fff !important;
        text-decoration: underline !important;
    }

        .bartext a:hover {
            color: #f8f8f8 !important;
            text-decoration: none !important;
        }

    .bartext p {
        margin-bottom: 0;
    }

#ok {
    float: right;
    margin-right: 10px;
    font-size: 25px;
    top: 15px;
    position: absolute !important;
    right: 0px;
}

    #ok a {
        color: #fff;
        text-decoration: none;
    }

/*custom styles end*/

/* custom negative margins start */

.mt-n5 {
    margin-top: -12.5rem !important;
}

.mt-n4 {
    margin-top: -10rem !important;
}

.mt-n3 {
    margin-top: -7.5rem !important;
}

.mt-n2 {
    margin-top: -5rem !important;
}

.mt-n1 {
    margin-top: -2.5rem !important;
}

.mb-n5 {
    margin-bottom: -12.5rem !important;
}

.mb-n4 {
    margin-bottom: -10rem !important;
}

.mb-n3 {
    margin-bottom: -7.5rem !important;
}

.mb-n2 {
    margin-bottom: -5rem !important;
}

.mb-n1 {
    margin-bottom: -2.5rem !important;
}
/* custom negative margins end */
