@import url("flexnav.css");
@import url("leftnav_styles.css");

:root {
    --ak-primary-color: #3c2313;
    --ak-primaryLight-color: #4a2e1c;
    --ak-secondary-color: #c49a6c;
    --ak-secondaryLight-color: #bc9c2f;
    --ak-gold-color: #f6f4e3;
    --ak-goldLight-color: #e4dcad;
    --ak-black-color: #000000;
    --ak-white-color: #FFFFFF;
    --ak-lightgray-color: rgba(0, 0, 0, 0.6);
    --ak-gray-color: #75787b;
    --ak-ash-color: #e2e2e2;
    --ak-ashgray-color: #f7f8fa;
    --ak-blue-color: #0072C6;
    --ak-blueDark-color: #010066;
    --ak-purpal-color: #CC66CC;
    --ak-Cgreen-color: #66CCCC;
    --ak-purpalLight-color: #FFCCFF;
    --ak-brown-color: #660000;
    --ak-green-color: #99FF99;
    --ak-red-color: #CC0000;
    --ak-secondaryDark-color: #ed7a32;
    --ak-transparent-black-2: rgba(0, 0, 0, 0.02);
    --ak-transparent-black-5: rgba(0, 0, 0, 0.05);
    --ak-transparent-black-10: rgba(0, 0, 0, 0.10);
    --ak-transparent-black-15: rgba(0, 0, 0, 0.15);
    --ak-transparent-black-25: rgba(0, 0, 0, 0.25);
    --ak-transparent-black-50: rgba(0, 0, 0, 0.50);
    --ak-transparent-black-60: rgba(0, 0, 0, 0.60);
    --ak-transparent-black-65: rgba(0, 0, 0, 0.65);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

[dir="rtl"] {
    text-align: right;
}

[dir="ltr"] {
    text-align: left;
}

body {
    font-feature-settings: "liga", "kern";
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--ak-gold-color);
}

body,
a,
button,
.btn-brand,
.header-icon-box,
.header-icon-box .header-icon {
    -webkit-transition: all 400ms ease, outline 0ms;
    -moz-transition: all 400ms ease, outline 0ms;
    -ms-transition: all 400ms ease, outline 0ms;
    -o-transition: all 400ms ease, outline 0ms;
    transition: all 400ms ease, outline 0ms;
}

a {
    color: var(--ak-primary-color);
    text-decoration: none;
}

a:hover {
    color: var(--ak-black-color);
    text-decoration: none;
}

ul,
ol {
    padding: 0;
}

input:active,
input:hover {
    outline: 0;
    box-shadow: none;
}

#mainContentSection {
    min-height: 50vh;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden !important;
    transform: translateZ(0) scale(1, 1) !important;
}

#mainContentSection .ms-webpart-cell-vertical,
#mainContentSection .ms-webpart-chrome-vertical,
#mainContentSection .ms-webpart-zone,
#mainContentSection div.ms-webpart-cell-vertical-inline-table {
    display: block;
}

#mainContentSection .ms-webpartzone-cell {
    margin: 0 auto;
}

h1 {
    font-size: 2.44rem;
}

h2 {
    font-size: 1.88rem;
}

h3 {
    font-size: 1.66rem;
}

h4 {
    font-size: 1.22rem;
}

.text-bold {
    font-weight: bold !important;
}

.brand-color {
    color: var(--ak-primary-color) !important;
}

/* scrollbar styles */
/* width */
main ::-webkit-scrollbar,
header ::-webkit-scrollbar {
    width: 6px;
}

/* Track */
main ::-webkit-scrollbar-track,
header ::-webkit-scrollbar-track {
    border-radius: 6px;
    background: var(--ak-ash-color);
}

/* Handle */
main ::-webkit-scrollbar-thumb,
header ::-webkit-scrollbar-thumb {
    background: var(--ak-secondary-color);
    border-radius: 6px;
}

/* Handle on hover */
main ::-webkit-scrollbar-thumb:hover,
header ::-webkit-scrollbar-thumb:hover {
    background: var(--ak-secondary-color);
}

/* Default styles */
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
}

.border-radius-0 {
    border-radius: 0px !important;
}

.col-container {
    display: flex;
    flex-direction: column;
}

.col-container .card {
    flex: 1;
    position: relative;
}

.form-control,
.form-select,
.form-check-input {
    border-radius: 0px;
    border: 1px solid var(--ak-secondary-color);

}

.form-control:focus,
.form-select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid var(--ak-secondary-color);
}

.btn-search {
    background: var(--ak-secondary-color);
    color: var(--ak-white-color);
    display: inline-block;
    border: 1px solid var(--ak-secondary-color);
    padding: 0.4rem 0.8rem;
}

.btn-search:hover {
    color: var(--ak-white-color);
    background: var(--ak-primary-color);
}

.btn-brnd {
    background: var(--ak-secondary-color);
    color: var(--ak-white-color);
    display: inline-block;
    border: 1px solid var(--ak-secondary-color);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
}

.btn-brnd:hover {
    background-color: var(--ak-primary-color);
}

.btn-primary {
    background: var(--ak-primary-color);
    color: var(--ak-white-color);
    display: inline-block;
    border: 1px solid var(--ak-primary-color);
    padding: 0.4rem 0.8rem;
    cursor: pointer;
}

.btn-primary:hover {
    border: 1px solid var(--ak-secondary-color);
    background-color: var(--ak-secondary-color);
}

/* Header */
.header {
    background: transparent url("../img/header_bg.png");
    padding: 0.5rem 0.25rem;
}

.logo {
    margin: 0;
}

.logo img {
    max-height: 4rem;
}

.searchBox {
    display: flex;
    align-items: center;
}

/* menu */
.menu {
    background-color: var(--ak-primary-color);
    width: 100%;
    position: relative;
    z-index: 999;
}

.flexnav li a:hover {
    border-bottom-color: var(--ak-secondary-color);
}

/* main */
.sidebar .card {
    border: 0;
    border-radius: 0;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.sidebar .card .card-body {
    padding: 0.4rem 0.6rem;
}

.sidebar h2 {
    font-weight: normal;
    font-size: 1.1rem;
    color: var(--ak-white-color);
}

.safety {
    background-color: rgb(1, 0, 102);
}

.classes {
    background-color: #09afbe;
}

.sidebar ul,
.sidebar ul li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar ::marker {
    display: none;
}

.sidebar li a.list-link,
.sidebar li a.list-link:active {
    font-size: 0.875rem;
    font-weight: normal;
    color: var(--ak-white-color);
    display: block;
    background-image: url(../img/arrow_1.png);
    background-repeat: no-repeat;
    background-position: left 3px;
    padding-left: 1rem;
    text-decoration: none;
}

.sidebar .card-btn {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    color: var(--ak-white-color);
    background-color: #0200a5;
    margin-top: 0.5rem;
}

.classes .card-btn {
    background-color: #078c98;
}


#carouselHeroBanner .active.carousel-item-end,
#carouselHeroBanner .active.carousel-item-start {
    transition-duration: 600ms;
    transition-delay: 600ms;
}

#carouselHeroBanner .carousel-item-next,
#carouselHeroBanner .carousel-item-prev {
    transition-duration: 600ms;
    transition-delay: 0;
}

/* Footer */
.footer_top {
    background-color: var(--ak-secondary-color);
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 1rem;
    height: 1px;
}

.footer_bottom {
    text-align: center;
    font-size: 11px;
    font-weight: normal;
    color: var(--ak-secondary-color);
    text-decoration: none;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.footer_content {
    width: 100%;
    text-align: center;
}

a.footer-link:link,
a.footer-link:visited {
    font-size: 12px;
    font-weight: normal;
    color: var(--ak-secondary-color);
    text-decoration: none;
    background-image: url(../img/bolit_1.png);
    background-position: left 5px;
    background-repeat: no-repeat;
    padding-left: 0.5rem;
    padding-right: 1.5rem;
}

a.footer-link:hover {
    color: var(--ak-primary-color);
}


/*07-04-2024*/

.communityNews {
    padding: 0 0 3rem 0;
}

.titleBox {
    background: var(--ak-primary-color);
    padding: 0.8rem;
}

.titleBox h3 {
    color: var(--ak-white-color);
    font-size: 1rem;
    font-weight: normal;
    margin: 0;

}

.newCard {
    margin-top: 2rem;
}

.newCard h4 {
    color: var(--ak-secondaryLight-color);
    margin: 0 0.5rem;
    font-size: 0.875rem;
    font-weight: normal;
}
.communityNews .newCard h4 {
    margin: 0;
}
.newCard p {
    font-size: 0.8rem;
}

.newsDate {
    color: var(--ak-secondary-color);
    font-size: 0.7rem;
}

.newCard .btn-brnd {
    font-size: 0.875rem;
    padding: 0.2rem 0.5rem;
}

.PagesBreadcrumb {
    margin: 1rem 0;
    font-size: 0.833rem;
}

.PagesBreadcrumb .breadcrumb-item.active,
.breadcrumb-item.active::before {
    color: var(--ak-secondary-color);
}

.PagesBreadcrumb .breadcrumb-item a {
    font-size: 0.833rem;
}

.sidebarManu {
    background: var(--ak-primary-color);
}

.sidebarManu ul {
    list-style: none;
    padding: 0;
}

.sidebarManu ul a {
    color: var(--ak-white-color);
    padding: 0.5rem;
    border-bottom: 1px solid var(--ak-goldLight-color);
    width: 100%;
    display: inline-block;
    font-size: 0.833rem;
}

.sidebarManu ul a:hover,
.sidebarManu ul a.active {
    background: var(--ak-goldLight-color);
    color: var(--ak-primary-color);
    cursor: pointer;
}

.sidebarManu .dropdown-menu {
    position: relative !important;
    transform: unset !important;
    border-radius: 0;
    border: none;
    background-color: var(--ak-primaryLight-color);
}

.sidebarManu .dropdown-toggle::after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    top: 7px;
    right: 15px;
    border: none;
}

.infoBoxTitle {
    color: var(--ak-primary-color);
    font-size: 1.5rem;
}
.infoBoxTitle h2 {
    font-size: 1.5rem;
    font-weight: 500;
}

.infoBox {
    border: none;
    border-top: 4px solid var(--ak-primary-color);
    border-radius: 0;

}

.infoBox h5 {
    font-size: 1rem;
    color: var(--ak-primary-color);
}

.num-list {
    list-style: auto;
    padding-left: 2.5rem;
    margin: 1rem 0;
}

.infoBox .actonWraper {
    justify-content: space-between;
    align-content: center;
    display: flex;
    background: var(--ak-white-color);
    border-top: 1px dashed var(--ak-secondaryLight-color);
    padding: 1rem 1rem;
    margin-top: 2rem;
}

.infoBox .actonWraper a,
.infoBox .actonWraper .btn-primary {
    font-size: 0.8rem;
}

.attachments-files h5 {
    font-size: 1rem;
    color: var(--ak-secondary-color);
    font-weight: normal;
}

.attachments-files p {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
}

.attachments-files a:hover {
    color: var(--ak-secondary-color);
}

.attachments-files p i {
    margin: 0 0.3rem;
}

.sidebar .empaty {
    min-height: 10rem;
    background-color: var(--ak-white-color);
}

.sidebar .newsletter {
    background-color: var(--ak-primary-color);
}

.sidebar .akc-newsletter a {
    background-repeat: no-repeat;
    background-position-y: center;
    padding-left: 3rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.875rem;
    font-weight: normal;
    color: var(--ak-white-color);
    text-decoration: none;
    display: block;
}

.sidebar .newsletter a {
    background-image: url(../img/newslatter_icon.png);
}

.sidebar .akc-insta {
    background-color: var(--ak-secondaryDark-color);
}

.sidebar .akc-insta a {
    background-image: url(../img/akc_insta.png);
}

.sidebar .akc-newsletter .card-body {
    background-color: transparent;
    padding: 0;
}

.faqs-wraper a,
.infoWraper a {
    color: var(--ak-blue-color);
    /*    font-weight: 600;*/
}

.faqs-wraper h5,
.infoWraper h5 {
    margin-top: 2rem;
    font-size: 1.1rem;
}

.faqs-wraper p,
.infoWraper p {
    font-size: 0.8rem;
}

.infoWraper ul li {
    font-size: 0.8rem;
}

.faqs-wraper h5:first-child {
    margin-top: 0rem;
}

.paging-section .page-link {
    border-color: var(--ak-primary-color);
    color: var(--ak-primary-color);
    cursor: pointer;
}

.paging-section .active .page-link {
    background-color: var(--ak-primary-color);
    border-color: var(--ak-primary-color);
    color: var(--ak-white-color);
}

.pagination {
    justify-content: end;
}

.infoBox ul {
    padding-left: 1rem;
}

.services-wraper .card {
    margin-bottom: 1.5rem;

}

.services-wraper .card-body {
    background-color: var(--ak-ash-color);
    padding: 0.3rem;
    text-align: center;
}

.services-wraper .card-body img {
    /*   border-radius: 1rem;*/
    height: 12rem;
    object-fit: cover;
    margin-bottom: 0.5rem;
}

.services-wraper .card-body p {
    font-size: 1rem;
    color: var(--ak-black-color);
    font-weight: normal;
    margin-bottom: 0;
}

.services-modal .modal-title {
    color: var(--ak-transparent-black-65);
    font-weight: 500;
    margin-top: 0;
    font-size: 1.2rem;
}

.services-modal h6 {
    font-size: 1.1rem;
}

.services-modal h6,
.services-modal p {
    color: var(--ak-gray-color);
    font-weight: normal;
}

.attachments-files a {
    color: var(--ak-black-color);
}

.classCard .card-body {
    padding: 0;
    border: none;
    text-align: center;
}

.classCard .card-body img {
    height: 15rem;

}

.classCard .card-body p {
    margin-top: 1rem;
    color: var(--ak-secondary-color);
}

.memosListing {
    list-style: none;
    padding-left: 0 !important;
    margin: 0;
}

.memosListing li {
    border-bottom: 1px dashed var(--ak-secondary-color);
    padding: 0.5rem 0;
}

.memosListing a {
    font-size: 0.8rem;
    cursor: pointer;
}

.memosListing a:hover {
    text-decoration: underline;
    color: var(--ak-secondary-color);

}

.memosListing img {
    margin: 0 0.3rem;
}

.safetyTips {
    background-color: var(--ak-blueDark-color);
    padding: 0;
}

.safetyTips .card-body,
.safetyTips .card {
    padding: 0;
    background-color: transparent;
}

.safetyTips {
    padding: 1rem;
}

.safetyTips h3 {
    color: var(--ak-white-color);
}

.safetyTips h4 {
    color: var(--ak-white-color);
    text-align: center;
    font-weight: normal;
    font-size: 1.5rem;
    margin: 2rem 0;
}

.safetyTips .infoBox {
    border-color: var(--ak-white-color);
}

.mainSafetSection .subTitle {
    font-size: 1.125rem;
}

.safetyTips .card-body {
    display: flex;
    justify-content: center;
    flex-direction: column;
    height: 100%;
}


.safetyTips .card-body .owl-nav {
    text-align: end;
    color: var(--ak-white-color);
}

.safetyTips .owl-nav button,
.news-carousel .owl-nav button {
    margin: 0 0.5rem;
}

.news-carousel .owl-nav {
    text-align: end;
}

.GalleryAlbums .card-body .card {
    margin-bottom: 1.5rem;
}

.GalleryAlbums .card-body .card-body {
    padding: 0.25rem;
    border: 1px solid var(--ak-gray-color);
}

.GalleryAlbums .card-body a p {
    color: var(--ak-blue-color);
    font-size: 0.875rem;
    text-align: center;
}

.GalleryAlbums .card-body a:hover p {
    text-decoration: underline;
}

.GalleryAlbums .card-body img,
.GalleryPhoto .main-img {
    height: 15rem;
    object-fit: cover;
    width: 100%;
    margin-bottom: 0.5rem;
}

.legends {
    margin-top: 2rem;
}

.legends h3 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.legends p {
    margin-bottom: 1rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
}

.legends p span {
    width: 1rem;
    height: 1rem;
    margin: 0.3rem;
    display: inline-block;
}

.legends .col-lg-4:nth-child(1) span {
    background-color: var(--ak-secondary-color);
}

.legends .col-lg-4:nth-child(2) span {
    background-color: var(--ak-purpal-color);
}

.legends .col-lg-4:nth-child(3) span {
    background-color: var(--ak-Cgreen-color);
}

.legends .col-lg-4:nth-child(4) span {
    background-color: var(--ak-purpalLight-color);
}

.legends .col-lg-4:nth-child(5) span {
    background-color: var(--ak-brown-color);
}

.legends .col-lg-4:nth-child(6) span {
    background-color: var(--ak-green-color);
}

.legends .col-lg-4:nth-child(7) span {
    background-color: var(--ak-red-color);
}

.legends .col-lg-4:nth-child(8) span {
    background-color: var(--ak-blueDark-color);
}

.legends .col-lg-4:nth-child(9) span {
    background-color: var(--ak-primaryLight-color);
}

.GalleryPhoto p {
    text-align: center;
    font-size: 0.875rem;
}

.contact-us h6 {
    font-weight: normal;
    text-decoration: underline;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.contact-us p {
    font-size: 0.8rem;
}

.sitemap ul {
    list-style: none;
    padding-left: 20px;
}

.sitemap .accordion-button::after {
    content: '';
    position: absolute;
    background-image: url(../img/WebResource1.png);

    width: 1.25rem;
    height: 1.25rem;
    background-size: cover;
    left: -24px;
}

.sitemap .accordion-button:not(.collapsed)::after {
    background-image: url(../img/WebResource.png);
}

.sitemap .accordion-button,
.sitemap li a {
    color: var(--ak-blue-color);
    font-size: 0.875rem;
}

/*calander css*/
.jalendar .jalendar-container .jalendar-pages>.header {
    background: none;
}

.jalendar {
    width: 100%;
}

.jalendar .jalendar-container .jalendar-pages>.header h1 {
    color: var(--ak-primary-color);
    text-shadow: none;
    font-size: 1.1rem;
    margin: 12px 0px 0 0;
}

.jalendar .jalendar-container .jalendar-pages>.header .nxt-m,
.jalendar .jalendar-container .jalendar-pages>.header .prv-m {
    color: var(--ak-primary-color);
}

.jalendar .jalendar-container .jalendar-pages>.header h2 {
    color: var(--ak-primary-color);
    font-size: 1rem;
}

.jalendar .jalendar-container .jalendar-pages .days .day,
.jalendar .jalendar-container .jalendar-pages .days .day.this-month span {
    color: var(--ak-primary-color);
}

.jalendar .jalendar-container .jalendar-pages>.header .day-names {
    margin-top: 2rem;
}

.jalendar .jalendar-container .jalendar-pages>.header .prv-m {
    left: unset;
    margin: 0 -28px;
}

.jalendar .jalendar-container .jalendar-pages>.header .nxt-m {
    right: unset;
    margin: 0 20px;
}

.jalendar .have-event span {
    background-color: var(--ak-primary-color);
    color: var(--ak-white-color) !important;
}

.jalendar .jalendar-container .jalendar-pages .add-event .events .events-list .event-single a {
    color: var(--ak-black-color);
}

.jalendar .jalendar-container .jalendar-pages .add-event .events .events-list h4 {
    color: var(--ak-secondary-color);
    font-size: 1rem;
    font-weight: normal;
}

.jalendar .jalendar-container .jalendar-pages .add-event .events .events-list i {
    color: var(--ak-secondary-color);
}

.jalendar .jalendar-container .jalendar-pages .add-event .events .events-list .event-single a:before {
    background-color: var(--ak-brown-color);
}

.jalendar .jalendar-container .jalendar-pages .add-event .close-button {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1.5rem;
    width: 13rem;
    margin: auto;
    background: var(--ak-primary-color);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    margin-top: 1rem;
    font-weight: normal;
}

.jalendar .jalendar-container .jalendar-pages .add-event .close-button:hover {
    background-color: var(--ak-secondary-color);
}

.searchResult {
    margin-bottom: 1rem;
}

.searchResult p {
    margin-bottom: 0rem;
}

/* Media Queries */
@media all and (min-width: 576px) {}

@media all and (min-width: 768px) {}

@media all and (min-width: 992px) {
    .flexnav.max-height-none {
        max-height: none;
    }

    .flexnav>li:last-child {
        width: 100px !important;
    }

    .flexnav>li {
        white-space: nowrap;
        width: 9% !important;
    }
}

@media all and (min-width: 1024px) {}

@media all and (min-width: 1200px) {}

@media screen and (max-width: 1359px) and (min-width: 1199px) {}

@media all and (min-width: 1200px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1140px;
    }
}

@media all and (min-width: 1440px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1380px;
    }
}

@media all and (min-width: 1600px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1480px;
    }
}

@media all and (min-width: 1920px) {
    html {
        font-size: 18px;
    }

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 1600px;
    }
}

@media all and (max-width: 1199px) {}

@media all and (max-width: 1023px) {}

@media all and (max-width: 991px) {
    .sidebarManu {
        display: none;
    }

    .jalendar .jalendar-container .jalendar-pages {
        padding: 0;
    }
}

@media all and (max-width:767px) {}

@media all and (max-width: 575px) {}




/*# sourceMappingURL=styles.css.map */