
:root {
    --primaryColor: #123419;
    --accentColor: #41434c;
    --secondaryColor: #a6ce39;
    --linkColor: #f39c12;
    --bgColor: #f8f8f8;
    --roboto: 'Roboto', sans-serif;
    --thin: 100;
    --light: 300;
    --regular: 400;
    --medium: 500;
    --bold: 700;
    --base-fs: 15px;
}
html {
    height: 100%;
    width: 100%;
}
/* For desktop view */
@media (min-width: 992px) {
  .slide img {
    height: 400px;
  }
}
body {
    margin: 0;
    background-color: var(--bgColor);
    width: 100%;
    height: 1000px;
    line-height: 1.5;
    font-family: var(--roboto);
    font-size: var(--base-fs);
    font-weight: var(--regular);
    -webkit-font-smoothing: antialiased;
    color: var(--accentColor);
}
body::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: #ffffff;
}
body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
    background-color: #ffffff;
}
body::-webkit-scrollbar-thumb {
    border-radius: 2.5px;
    background-color: #6b6b6b;
}
.my-nav {
  background-color:#006497; /* Specify your desired background color */
}

.my-nav li a {
  color:#ffffff; /* Specify your desired text color */
}
ol, ul{list-style: none; margin: 0; padding: 0;}
a{text-decoration: none;}

.granite-gray-bg{background-image: linear-gradient(144deg,  rgb(0, 26, 46) 0%, rgb(0, 48, 85) 54%, rgb(0, 130, 170) 100%);}
.blue-gray-bg{background-color: #337585;}
.gray-bg{background: #ededed;}

.icon-orange{color: #e09912;}
.icon-fs-22{font-size: 22px;}
.top-strip ul li{color: #ffffff; font-size: 14px; font-weight: var(--regular); line-height: 15px;}

.navbar.fixed-top{box-shadow: 0 1px 0 0 rgb(0 0 0 / 10%); z-index: 3;}

.primary-nav .nav-item{ font-size: 14px;}

.mobile-nav{display: none;}
.mini-nav .dropdown-menu{min-width: -webkit-fill-available;}

.dropdown-menu {
  background-color: #002638; /* Background color */
  border: 1px solid rgba(0, 0, 0, 0.15); /* Border color */
  border-radius: 0.25rem; /* Border radius */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15); /* Box shadow */
  padding: 0.5rem 0; /* Padding */
}

/* Style for dropdown menu items */
.dropdown-item {

  color: #ffffff; /* Text color */
  display: block;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
  /* text-transform: lowercase; */
}
/* .dropdown-item::first-letter {
  text-transform: uppercase;
} */
.nav-item a {
  color: #ffffff; /* Your desired color */
}
.nav-item a:hover {
  color: #173ca3; /* Your desired color */
  
}

/* Hover effect for dropdown items */
.dropdown-item:hover, .dropdown-item:focus {
  color: #007bff; /* Text color on hover */
  text-decoration: none;
  background-color: #7db1ff; /* Background color on hover */
  
}

/* Style for dropdown submenu */
.dropdown-submenu {
  position: relative;
 
}

/* Style for submenu indicator */
.dropdown-submenu > .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

/* Style for submenu items */
.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  /* margin-left: 0.1rem; */
  border-radius: 0.25rem;

}

/* Style for nested submenu */
.dropdown-submenu:hover > .dropdown-menu {
  display: block;
}

/* Style for active submenu indicator */
.dropdown-submenu:focus > .dropdown-toggle::after,
.dropdown-submenu.show > .dropdown-toggle::after {
  border-top-color: transparent;
}

/* Style for active submenu items */
.dropdown-submenu:hover > .dropdown-toggle::after {
  border-left-color: #007bff;
}
.overlay {
    height: 100%;
    width: 100%;
    display: none;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0, 0.9);
}

.overlay-content {
    position: relative;
    top: 30%;
    width: 80%;
    text-align: center;
    margin-top: 30px;
    margin: auto;
}

.overlay .closebtn {
    position: absolute;
    top: 100px;
    right: 45px;
    font-size: 60px;
    cursor: pointer;
    color: white;
}

.overlay .closebtn:hover {
    color: #ccc;
}

.overlay input[type=text] {
    padding: 14px;
    font-size: 17px;
    border: none;
    float: left;
    width: 80%;
    background: white;
}

.overlay input[type=text]:hover {
    background: #f1f1f1;
}

.overlay button {
    float: left;
    width: 20%;
    padding: 15px;
    background: #ddd;
    font-size: 17px;
    border: none;
    cursor: pointer;
}

.overlay button:hover {
    background: #bbb;
}
.btn-light {
  --bs-btn-padding-y: 0.10rem;
  --bs-btn-padding-x: 0.3rem;
  --bs-btn-font-size: 0.500rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}
.btn-sm {
  --bs-btn-padding-y: 0.10rem;
  --bs-btn-padding-x: 0.3rem;
  --bs-btn-font-size: 0.500rem;
  --bs-btn-border-radius: var(--bs-border-radius-sm);
}

.banner{
    background: rgb(174,216,251);
    background: radial-gradient(circle, rgb(164, 207, 243) 0%, rgba(255,255,255,0) 100%);

    /* background: rgb(174,216,251);
    background: linear-gradient(90deg, rgba(174,216,251,1) 0%, rgba(255,255,255,0) 100%); */
}
.slider {
    position: relative;
    width: 100%;
  }
  
  .slide {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
  }
  
  .slide img {
    width: 50%;
  }
  
  .slide-content {
    width: 50%;
    
  }
  .slide-content .h2{
    margin-left: 20px;
  }
  
  .slide-content h2{text-transform: uppercase; font-size: 18px; font-weight: 700; color: #5F5F5F;}
  .slide-content p{font-size: 16px; font-weight: 400; margin-top: 15px; line-height: 22px;}
  .slick-arrow {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .slick-prev {
    left: 10px;
  }
  
  .slick-next {
    right: 10px;
  }
  
  .slick-dots {
    bottom: 20px;
  }

.flash-news{overflow: hidden;}
.breaking-news-title {
    background-color: #FFCA2C;
    color: #5F5F5F;
    display: block;
    height: 40px;
    width: auto;
    font-family: arial;
    font-size: 14px;
    font-weight: 600;
    position: absolute;
    top: 0px;
    left: 0;
    margin-top: 0px;
    padding: 10px;
    z-index: 3;
  }
  /* .breaking-news-title:before {
    content: "";
    position: absolute;
    display: block;
    width: 0px;
    height: 0px;
    top: 0;
    left: -12px;
    border-left: 12px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 33px solid #337585;
    background: #ffffff;
  } */
  .breaking-news-title:after {
    content: "";
    position: absolute;
    display: block;
    width: 0px;
    height: 0px;
    right: -12px;
    top: 0;
    border-right: 12px solid transparent;
    border-left: 0px solid transparent;
    border-top: 40px solid #FFCA2C;
  }



  .ticker-wrap {
    background-color: rgb(221, 238, 255);
    width: 100%;
    overflow: hidden;
    padding-left: 100%;
    box-sizing: content-box;
  }
  .ticker-wrap .ticker {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-name: ticker;
    animation-name: ticker;
    -webkit-animation-duration: 30s;
    animation-duration: 30s;
  }
  .ticker-wrap .ticker__item {
    display: inline-block;
    padding: .5rem 0;
    font-size: 16px;
    font-weight: 500; 
    color: #1290FA;
  }

  .ticker-wrap .ticker__item::after {
    font-family: "Font Awesome 6 Free";
    content: "\f0da";
    padding: 0 0.75rem;
    font-weight: 600;
    color: #337585;
}

.ticker-wrap .ticker__item:last-child::after {
    content: "";
    padding: 0 0.75rem;
}

  @-webkit-keyframes ticker {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
    }
    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }
  @keyframes ticker {
    0% {
      -webkit-transform: translate3d(0, 0, 0);
      transform: translate3d(0, 0, 0);
      visibility: visible;
    }
    100% {
      -webkit-transform: translate3d(-100%, 0, 0);
      transform: translate3d(-100%, 0, 0);
    }
  }



.about, .training-calendar, .general, .services{padding: 2rem 0;}

.custom-list-group .list-group-item.active{background-color: #337585; border-color: #337585; text-transform: uppercase; font-size: 14px;}

.li-icon::before{
    content: "\f0a9";
    font-family: "Font Awesome 6 Free";
    font-weight: 600;
    padding-right: 1rem;
    color: #337585;
}

.anchor-btn{background: #337585; text-transform: uppercase; color: #ffffff; font-size: 12px; padding:.5rem 1rem; display: inline-block; border-radius: 3px; font-weight: 600; letter-spacing: 1.5px;}
.anchor-btn-orange{background-color: #FFCA2C; color: var(--accentColor);}

.title-1{font-size: 24px;}
.title-1::after{
    content: "";
    background-color: #FFCA2C;
    height: 4px;
    width: 65px;
    display: block;
    margin: 0.5rem 0 1rem 0 ;
}

.text-blue{color: #1290FA;}
.about-content{padding-right: 2rem;}



.percent-card .card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.2);
  }
  
  .percent-card .card .percent {
    position: relative;
  }
  
  .percent-card .card svg {
    position: relative;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
  }
  
  .percent-card .card svg circle {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #f0f0f0;
    stroke-width: 10;
    stroke-linecap: round;
  }
  
  /* .percent-card .card svg circle:last-of-type {
    stroke-dasharray: 625px;
    stroke-dashoffset: calc(625px - (625px * var(--percent)) / 100);
    stroke: #3498db; 
  } */
  
  .percent-card .card .number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  
  .percent-card .card .number h3 {
    font-weight: 500;
    font-size: 3.5rem;
  }
  
  .percent-card .card .number h3 span {
    font-size: 2rem;
  }
  
  .percent-card .card .title h2 {
    margin: 25px 0 0;
    font-size: 14px;
    padding: 0 1rem;
    text-align: center;
  }
  .percent-card .card svg circle:last-of-type {
    stroke-dasharray: 625px;
    stroke-dashoffset: 625px;
}
/*   
  .percent-card .row .progress-holder:nth-child(1) svg circle:last-of-type {
    stroke: #f39c12;
  }
  
  .percent-card .row .progress-holder:nth-child(2) svg circle:last-of-type {
    stroke: #2ecc71;
  }

  .percent-card .row .progress-holder:nth-child(3) svg circle:last-of-type {
    stroke: #7b1ba0;
  } */

.general{background: #ededed;}
.general .card-img-top {
    width: 60%;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  .general .card {
    padding: 1em 0.5em;
    padding-bottom: 0;
    text-align: center;
    border-radius: 0;
    position: relative;
    overflow: hidden;
  }
  .general .card-body{padding: 1rem 0;}
  .general .card-title {
    font-weight: bold;
    font-size: 1em;
  }
  .general .card-text{margin: 0;}

  .tab-text a{display: inline-flex; width: 30px; height: 30px; justify-content: center;
    align-items: center;}
  .tab-text a i{color: var(--primaryColor); font-size: 18px;}
  .card-social:hover i{color: var(--linkColor);}


  .tab-text {
    position: absolute;
    left: 0;
    right: 0;
    background: var(--linkColor);
    width: 100%;
    bottom: -63px;
    padding: 1rem 0;
    opacity: 1;
    transition: all .3s ease-in-out
  }

.general .card:hover .tab-text{
    bottom: 0;
}

.about-categories{width: 100%;}
.about-categories li{background: #fff; margin-bottom: 3rem; border-radius: 5px;}
.about-categories li a{display: flex; align-items: center; padding: 1rem; color: var(--accentColor); font-weight: 700; }
.about-categories li a span{width: 60px; height: 60px; border-radius: 50%; background: #337585; display: flex;
    margin-right: 1rem;align-items: center;justify-content: center; position: relative; transition: all 0.3s ease-in-out;}
.about-categories li a h3{margin: 0; font-size: 20px; transition: all 0.3s ease-in-out;}    
.about-categories li a span i{color: #fff; font-size: 26px;}
.about-categories li a span::after{
    content: "";
    position: absolute;
    top: 0;
    right: -15px;
    bottom: 0;
    width: 3px;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(222,226,230,1) 35%, rgba(222,226,230,1) 50%, rgba(222,226,230,1) 65%, rgba(255,255,255,1) 100%);
    transform: scaleX(0);
    transform-origin: center right;
    transition: transform 0.3s ease-in-out;
}
.about-categories li a:hover span{background: var(--linkColor);}
.about-categories li a:hover span::after{transform: scaleX(1);}
.about-categories li a:hover h3{padding-left: 10px; color: var(--linkColor);}


.chart{margin: 4rem;}
.chart text{font-size: 10px; font-weight: 500; text-transform: uppercase;}

.services-carousel .slick-slide {
    padding: 10px;
}

.service-controls .slick-arrow{top: unset; transform: unset;}
.truncate-text {text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; line-height: 1.5; max-height: calc(3 * 1.5em); overflow: hidden;}

.slick-prev-btn, .slick-next-btn{font-size: 14px;font-weight: 500; color: var(--linkColor);}

.image-popup-vertical-fit{color: var(--linkColor);}

.programs{padding: 2rem 0;}
.programs h1{text-transform: uppercase; font-size: 20px; text-align: center; margin-bottom: 1rem;}
.programs p{margin-bottom: 3rem;}

.program-card{background: #fff; padding: .75rem; border: solid 1px rgba(0, 0, 0, 0.175); border-radius: 0.375rem; display: block;}
.program-card h3{font-size: 15px; text-transform: uppercase; margin-top: 1.2rem; text-align: center; transition: .2s linear; color: var(--accentColor);}
.program-card img{box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);}

.program-card img{transition: all 500ms ease;}
.program-card:hover img{-webkit-filter: grayscale(100%);filter: grayscale(100%);-webkit-transition: .2s linear;transition: .2s linear;}
.program-card:hover h3{color: var(--linkColor);}

.gallery{padding: 2rem 0;}
.gallery h2{width: fit-content; margin: 0 auto;}
.albums .slick-slide {
    padding: 10px;
}

.album-controls{margin-top: 1rem; text-align: center;}
.album-controls a{background: #525252; color: #fff; padding: .5rem .75rem;}
.album-controls a:hover{background: var(--linkColor);}

footer{padding: 2rem 0;}
.footer-head{text-transform: uppercase;font-size: 15px;font-weight: 600; border-left: solid 2px var(--primaryColor); padding-left: 15px;}



@media (max-width: 1199.98px)
{
    .desktop-nav{display: none;}
    .mobile-nav{display: block;}

    .custom-nav{
        background: #FFFFFF; 
        background-image: none; 
        border-radius: 0; 
        margin: 0; 
        flex-direction: row;
        flex-wrap: nowrap;
        box-shadow: 0px 3px 15px 0px rgb(0 0 0 / 10%);
        transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
        padding: 0;
        display: flex;
        margin-right: auto;
        margin-left: auto;       
        width: 100%;
    }

    .navbar-toggler {padding: 10px 0;border: 0;}
    .navbar-toggler:focus{box-shadow: none;}
    .navbar-toggler .toggler-icon {width: 30px;height: 2px;background-color: #222;display: block;margin: 5px 0;position: relative;-webkit-transition: all 0.3s ease-out 0s;transition: all 0.3s ease-out 0s;}
    .navbar-toggler.active .toggler-icon:nth-of-type(1) {-webkit-transform: rotate(45deg);transform: rotate(45deg);top: 7px;}
    .navbar-toggler.active .toggler-icon:nth-of-type(2) {opacity: 0;}
    .navbar-toggler.active .toggler-icon:nth-of-type(3) {-webkit-transform: rotate(135deg);transform: rotate(135deg);top: -7px;}
    .custom-nav .offcanvas {display: flex;width: 66.194%;}
    .offcanvas-body{padding: 0;}
    .navbar-expand-lg .navbar-nav .nav-link{padding: 10px 15px; border-bottom: solid 1px #ffffff; display:flex; align-items: center;}
    .navbar-expand-lg .navbar-nav .nav-link i{margin-left: auto; margin-right: 0.25rem;}

    .slide{padding: 10px; flex-direction: column-reverse;}
    .slide-content, .slide img{width: 100%;}
    .slide-content{text-align: center; margin: 15px 0;}
    .slide-content h2{font-size: 20px; font-weight: 700; margin-top: 1rem;}
    .slide-content p{font-size: 14px; line-height: 22px;}
    .about-content{padding-right: unset;}
    .percent-card .card {margin-top: 1.5rem;}
    .general .card{margin-bottom: 1.5rem;}
    .mmt-2{margin-top: 2rem;}
    .training-calendar{padding-top: 0;}
    .chart{margin: 0;}
    .chart text{font-size: 12px;}

    .about-categories{margin-top: 1rem;}
    .about-categories li{margin-bottom: 1rem;}
    .services-carousel .slick-slide {padding: 0;}
    .title-1::after {width: 35px;margin: 0.2rem auto 1rem auto;}
    .slick-prev-btn, .slick-next-btn{font-size: 12px;}

    .program-card{margin-bottom: 1.5rem;}
    .programs p{margin-bottom: 1rem;}
}
#news-box {
  max-height: 100%;
}
.number {
  font-weight: 300;
}