@-webkit-keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@-webkit-keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

@keyframes slideRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}

html {
  font-size: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a,
button {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  border: none;
  outline: none;
  background: 0 0;
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  a,
  button {
    cursor: default !important;
    border: none;
    outline: none;
  }
}

img,
video {
  display: block;

  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.container {
  max-width: 90rem;
  width: 100%;
  height: auto;
  /*padding: 0 2rem;*/
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .container {
    /*padding: 0 1rem;*/
    margin: 0 auto;
  }
}

.logo-align {
  margin: auto;
}

.brand {
  font-family: inherit;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: inherit;
  color: #e91e63;
  border: none;
  outline: none;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
}

.brand-text:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.logo-sec {
  height: 140px;
}

.brand-text {
  text-align: center;
  padding-top: 10px;
  transition: 0.5s ease;
}

.logo_txt {
  margin: 0px;
  padding: 0px;
}

.logo_txt li {
  list-style: none;
  display: inline-block;
}

.logo_img > img {
  width: 73px;
  display: inline !important;
}

.pagetitle {
  /*background: url(../images/titlebg.jpg) center top / 100% 100% no-repeat black;*/
  background-image: url(../images/titlebg.jpg);
  background-size: 100% 100%;
  margin-bottom: 40px;
}

/*
.pagetitle {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}*/

.pagetitle:before {
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: absolute;
  background-color: rgba(0, 33, 71, 0.9);
}

@media only screen and (min-width: 320px) and (max-width: 767px) {
  .logo-sec {
    height: auto;
  }

  .brand-text:hover {
    transform: scale(1);
    transition: 0.5s;
  }

  .logo_txt li {
    list-style: none;
    display: inline-block;
    width: 100%;
    padding: 8px;
  }

  .logo_line {
    font-size: 16px !important;
  }

  .logo_title {
    font-size: 10px !important;
  }

  .footerBox h4 {
    font-size: 14px !important;
  }

  .footerBox ul li a {
    font-size: 12px !important;
  }
}
@media only screen and (max-width: 992px) {
  .logo-sec {
    height: auto;
  }

  .brand-text:hover {
    transform: scale(1);
    transition: 0.5s;
  }

  .logo_txt li {
    list-style: none;
    display: inline-block;
    width: 100%;
    padding: 8px;
  }

  .logo_line {
    font-size: 16px !important;
  }

  .logo_title {
    font-size: 10px !important;
  }

  .footerBox h4 {
    font-size: 14px !important;
  }

  .footerBox ul li a {
    font-size: 12px !important;
  }
}

@supports ((position: -webkit-sticky) or (position: sticky)) {
  .sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.logo_line {
  border-top: 4px double #660000;
  border-bottom: 2px solid #660000;
  font-size: 22px;
  color: #660000;
  padding: 5px 0;
  font-weight: bold;
  /*
    border-top: 2px solid #006D1B;
    border-bottom: 2px solid #006D1B;
    font-size: 25px;
    color: #035D1A;
    padding: 5px 0;
    font-weight: bold;
    */
}

.logo_img {
  margin: auto;
}

.logo_title {
  color: #000;
  font-size: 18px;
  text-align: center;
}
.header1,
.main-header {
  background: url("../images/header-bg.png");
}
/*
.header1, .main-header{
  background: url(../images/header-bg.png);
}*/

.header {
  /*position: fixed;*/
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  /*padding: 1rem 0;*/
  margin: 0 auto;
  z-index: 999;
  border: none;
  outline: none;
  background: #660000;
  -webkit-box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header .wrapper {
  /*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center*/
}

.header-item-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 17%;
  flex: 0 0 17%;
}

.header-item-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66%;
  flex: 0 0 66%;
}

.header-item-right {
  /*display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 17%;
	flex: 0 0 17%;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end*/
}

.header-item-right .menu-icon {
  font-size: 1.35rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1rem;
  margin-left: 1rem;
  border: none;
  outline: none;
  color: #121212;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .menu > ul > li {
  display: inline-block;
  line-height: 3.125rem;
  /*margin-left: 1.5rem*/
}

.header .menu > ul > li > a {
  position: relative;
  padding: 8px 9px 7px 9px !important;
  font-family: inherit;
  font-size: 13px;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.25;
  border: none;
  outline: none;
  color: #fff;
  /*text-transform: capitalize;*/
  text-transform: uppercase;
  font-weight: bold;
  text-rendering: optimizeLegibility;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.headerc .menu > ul > li > a {
  /*text-transform: capitalize !important;*/
}

.header .menu > ul > li .menu-subs {
  position: absolute;
  /*width: 100%;
	height: auto;*/
  margin-top: 1.75rem;
  padding: 1rem 2rem;
  border: none;
  outline: none;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  border-radius: 0.25rem;
  border-top: 3px solid #004283;
  background: #fafafa;
  -webkit-box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header .menu > ul > li .menu-subs > ul > li {
  line-height: 2;
}

.header .menu > ul > li .menu-subs > ul > li > a {
  display: inline-block;

  line-height: 1.25;
  padding: 3px 20px;
  border: none;
  outline: none;
  color: #121212;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .menu-column-1 {
  /*min-width: 16rem;
	max-width: 20rem*/
}

.header .menu > ul > li .menu-subs.menu-mega {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li {
  display: block;
  line-height: 2;
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
  display: inline-block;

  line-height: 1.25;
  padding: 3px 20px;
  border: none;
  outline: none;
  color: #121212;
  text-transform: capitalize;
  text-rendering: optimizeLegibility;
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs.menu-column-4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*max-width: 68rem;*/
  width: 80%;
  padding: 1.25rem 1rem;
}

.header .menu > ul > li .menu-subs.menu-column-5 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*max-width: 68rem;*/
  width: 80%;
  padding: 1.25rem 1rem;
}

.header .menu > ul > li .menu-subs.menu-column-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*max-width: 68rem;*/
  width: 50%;
  padding: 1.25rem 1rem;
}

.header .menu > ul > li .menu-subs.menu-column-3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /*max-width: 68rem;*/
  width: 60%;
  padding: 1.25rem 1rem;
}

.header .menu > ul > li .tab-pane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* max-width: 68rem; */
  width: 100%;
  padding: 1.25rem 1rem;
}

@media only screen and (min-width: 993px) {
  .header .menu > ul > li .menu-subs.menu-column-5 > .list-item {
    /*-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	margin-left: 30px;
	flex: 0 0 25%;*/
    padding: 0 1rem;
    width: 20%;
  }

  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
    /*-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	margin-left: 30px;
	flex: 0 0 25%;*/
    padding: 0 1rem;
    width: 25%;
  }

  .header .menu > ul > li .menu-subs.menu-column-3 > .list-item {
    /*-webkit-box-flex: 0;
	-ms-flex: 0 0 25%;
	margin-left: 30px;
	flex: 0 0 25%;*/
    padding: 0 1rem;
    width: 33%;
  }
}

.header .menu > ul > li .menu-subs.menu-column-3 > .list-item .title {
  font-family: inherit;
  line-height: 1;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #004283;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs.menu-column-2 > .list-item .title {
  font-family: inherit;
  line-height: 1;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #004283;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item .title {
  font-family: inherit;

  line-height: 1;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #004283;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header
  .menu
  > ul
  > li
  .menu-subs.menu-column-4
  > .list-item.text-center
  .title {
  text-align: center;
}

.header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.header .menu > ul > li .menu-subs.menu-column-5 > .list-item .title {
  font-family: inherit;

  line-height: 1;
  padding: 0.75rem 0;
  border: none;
  outline: none;
  color: #004283;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  text-rendering: optimizeLegibility;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header
  .menu
  > ul
  > li
  .menu-subs.menu-column-5
  > .list-item.text-center
  .title {
  text-align: center;
}

.header .menu > ul > li .menu-subs.menu-column-5 > .list-item img.responsive {
  max-width: 100%;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: middle;
}

.header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a:hover,
.header .menu > ul > li .menu-subs > ul > li:hover,
.header .menu > ul > li .menu-subs > ul > li > a:hover {
  text-decoration: none;
  color: #fff;
  /* background-color: #f5f5f5; */
  background-color: #660000;
  width: 100%;
}

.header-item-right a:hover,
.header .menu > ul > li:hover > a {
  color: #000;
}
.menu .menu-section > li:hover {
  /* padding: 0 10px 0 10px; */
  color: #000;
  background: #fff;
}

@media only screen and (min-width: 993px) {
  .header .menu > ul > li.menu-item-has-children:hover .menu-subs {
    margin-top: 0rem;
    opacity: 1;
    visibility: visible;
  }
}

.menu-mobile-header,
.menu-mobile-trigger {
  display: none;
}

@media only screen and (max-width: 992px) {
  .header-item-center {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .header-item-left,
  .header-item-right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .wrapper {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .header .menu-mobile-trigger {
    position: relative;
    display: block;
    cursor: pointer;
    width: 1.75rem;
    height: 1rem;
    border: none;
    outline: none;
    margin-left: 1.25rem;
    background: 0 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.35s ease-in-out;
    -o-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }

  .header .menu-mobile-trigger span {
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    left: 0;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 0.25rem;
    background: #fff;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
  }

  .header .menu-mobile-trigger span:nth-child(1) {
    top: 0;
  }

  .header .menu-mobile-trigger span:nth-child(2),
  .header .menu-mobile-trigger span:nth-child(3) {
    top: 0.5rem;
  }

  .header .menu-mobile-trigger span:nth-child(4) {
    top: 1rem;
  }

  .header-item-right {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 10px 0 10px 0;
  }

  .header .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 21rem;
    height: 100%;
    z-index: 1099;
    overflow: hidden;
    background: #660000;
    -webkit-transform: translate(-100%);
    -ms-transform: translate(-100%);
    transform: translate(-100%);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .header .menu.active {
    -webkit-transform: translate(0%);
    -ms-transform: translate(0%);
    transform: translate(0%);
  }

  .header .menu > ul > li {
    display: block;
    line-height: 1;
    margin: 0;
  }

  .header .menu > ul > li > a {
    display: block;
    line-height: 3.125rem;
    height: 3.125rem;
    padding: 0 3.125rem 0 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .header .menu > ul > li > a i.ion {
    position: absolute;
    font-size: 1.25rem;
    line-height: 3.125rem;
    top: 0;
    right: 0;
    width: 3.125rem;
    height: 3.125rem;
    text-align: center;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  .header .menu .menu-mobile-header {
    position: relative;
    position: -webkit-sticky;
    position: sticky;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    top: 0;
    height: 3.125rem;
    z-index: 501;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: #fafafa;
  }

  .header .menu .menu-mobile-header .menu-mobile-arrow {
    display: none;
    font-size: 1.25rem;
    line-height: 3.125rem;
    width: 3.125rem;
    height: 3.125rem;
    cursor: pointer;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    color: #121212;
    text-align: center;
  }

  .header .menu .menu-mobile-header.active .menu-mobile-arrow {
    display: block;
  }

  .header .menu .menu-mobile-header .menu-mobile-title {
    font-family: inherit;
    color: #004283;
    font-size: 15px;
    font-weight: bold;
    text-transform: uppercase;
    line-height: inherit;
    text-rendering: optimizeLegibility;
  }

  .header .menu .menu-mobile-header .menu-mobile-close {
    font-size: 2.25rem;
    line-height: 3.125rem;
    cursor: pointer;
    width: 3.125rem;
    height: 3.125rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    color: #121212;
    text-align: center;
  }

  .header .menu .menu-section {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .header .menu > ul > li .menu-subs {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .header .menu > ul > li .menu-subs.menu-mega {
    position: absolute;
    display: none;
    top: 0;
    left: 0;
    max-width: none;
    min-width: auto;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 1rem;
    padding-top: 4rem;
    opacity: 1;
    overflow-y: auto;
    visibility: visible;
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .header .menu > ul > li .menu-subs.active {
    display: block;
  }

  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 0;
  }

  .header .menu > ul > li .menu-subs.menu-column-4 > .list-item img.responsive {
    margin-top: 0;
  }

  .header
    .menu
    > ul
    > li
    .menu-subs.menu-column-4
    > .list-item.text-center
    .title {
    margin-bottom: 1.25rem;
  }

  .header
    .menu
    > ul
    > li
    .menu-subs.menu-column-4
    > .list-item.text-center:last-child
    .title {
    margin-bottom: 0;
  }

  .header .menu > ul > li .menu-subs > ul > li > a {
    display: block;
  }

  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul {
    margin-bottom: 1rem;
  }

  .header .menu > ul > li .menu-subs.menu-mega > .list-item > ul > li > a {
    display: block;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1098;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.55);
    -webkit-transition: all 0.5s ease-in-out;
    -o-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }
}

.main {
  display: block;
  width: 100%;
  min-height: 100vh;
  background-image: url(https://source.unsplash.com/pkhBlvTLyog/1920x1280);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.circle-main {
  padding: 1rem;
  margin-top: 3rem;
  margin-bottom: 1rem;

  @media (max-width: 600px) {
    margin-top: 0rem !important;
  }

  .circle-inner {
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    @media (max-width: 830px) {
      gap: 0.3rem;
      justify-content: center;
    }

    @media (max-width: 600px) {
      gap: 0.3rem;
      justify-content: center;
    }

    a {
      text-decoration: none;
      color: #000;
      text-align: center;
      display: block;
      background: #fff;
      border-radius: 10px;
      padding: 5px;
      /*   height: 130px;*/
      width: 9%;
      /*width: 140px;*/

      &:hover {
        background: #660000;
        border-radius: 10px;
        color: #fff;
        transition: 0.3s;
      }

      @media (max-width: 600px) {
        width: 100px;
        height: 100px;
      }

      @media (max-width: 360px) {
        width: 140px;
        height: 140px;
      }

      img {
        height: 70px;
        width: 70px;
        border-radius: 50%;
        padding: 5px;
        object-fit: cover;
        /* filter: brightness(100%) contrast(100%) saturate(92%) blur(0) hue-rotate(271deg); */

        &:hover {
          /* animation: circle .4s; */
          /* transform: translateY(-10px);
            transition: .3s; */
        }

        @media (max-width: 600px) {
          height: 58px;
          width: 58px;
        }

        @media (max-width: 360px) {
          height: 70px;
          width: 70px;
        }
      }

      h6 {
        margin-top: 10px;
        font-size: 13px;
        font-weight: 700;

        @media (max-width: 600px) {
          font-size: 0.5rem;
        }

        @media (max-width: 360px) {
          font-size: 0.7rem;
        }
      }
    }
  }
}

@keyframes circle {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(20deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

/* ----------------------------------------------------------------
	Owl Carousel CSS
-----------------------------------------------------------------*/

.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel {
  display: none;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  z-index: 1;
  width: 100%;
  touch-action: manipulation;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage::after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  display: block;
  min-height: 100px;
  background: no-repeat center center;
}

.owl-carousel .owl-refresh .owl-item {
  display: none;
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.slider-element .owl-carousel .owl-item img {
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-nav .owl-prev,
.owl-nav .owl-next,
.owl-dot,
.owl-dots button {
  cursor: pointer;
  cursor: hand;
  padding: 0;
  border: 0;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.mega-menu-content .owl-carousel.owl-hidden {
  opacity: 1;
}

.owl-carousel.owl-refresh .owl-item {
  display: none;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.no-js .owl-carousel {
  display: block;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #111;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 64px;
  width: 64px;
  left: 50%;
  top: 50%;
  margin-left: -32px;
  margin-top: -32px;
  background: url("images/icons/play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/* Owl Carousel - Controls
-----------------------------------------------------------------*/

.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}

/* Owl Carousel - Controls - Arrows
-----------------------------------------------------------------*/

.owl-carousel .owl-nav [class*="owl-"] {
  position: absolute;
  top: 50%;
  margin-top: -18px;
  left: -36px;
  zoom: 1;
  width: 36px;
  height: 36px;
  line-height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #666;
  background-color: #fff;
  font-size: 18px;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.owl-carousel.with-carousel-dots .owl-nav [class*="owl-"] {
  margin-top: -38px;
}

.slider-element .owl-nav [class*="owl-"],
.owl-carousel-full .owl-nav [class*="owl-"] {
  margin-top: -30px;
  left: 0 !important;
  height: 60px;
  line-height: 60px;
  border: none;
  color: #eee;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 28px;
  border-radius: 0 3px 3px 0;
}

.owl-carousel-full .with-carousel-dots .owl-nav [class*="owl-"] {
  margin-top: -50px;
}

.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: -36px;
}

.slider-element .owl-nav .owl-next,
.owl-carousel-full .owl-nav .owl-next {
  left: auto !important;
  right: 0 !important;
  border-radius: 3px 0 0 3px;
}

.owl-carousel:hover .owl-nav [class*="owl-"] {
  opacity: 1;
  left: -18px;
}

.owl-carousel:hover .owl-nav .owl-next {
  left: auto;
  right: -18px;
}

.owl-carousel .owl-nav [class*="owl-"]:hover {
  background-color: #1abc9c !important;
  color: #fff !important;
  text-decoration: none;
}

.owl-carousel .owl-nav .disabled {
  display: none !important;
}

/* Owl Carousel - Controls - Dots
-----------------------------------------------------------------*/

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  width: 8px;
  height: 8px;
  margin: 30px 4px 0 4px;
  opacity: 0.5;
  border-radius: 50%;
  background-color: #1abc9c;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.owl-carousel .owl-dots .owl-dot.active,
.owl-carousel .owl-dots .owl-dot:hover {
  opacity: 1;
}

/* Owl Carousel - Controls - Dots - Positions
-----------------------------------------------------------------*/
.owl-carousel[class*="owl-nav-pos-"],
.owl-carousel[class*="owl-dots-pos-"] .owl-carousel[class*="owl-img-pos-"] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
}

.owl-carousel.owl-nav-pos-1 .owl-nav,
.owl-carousel.owl-dots-pos-1 .owl-dots,
.owl-carousel.owl-content-pos-1 .owl-stage-outer {
  order: 1;
}

.owl-carousel.owl-nav-pos-2 .owl-nav,
.owl-carousel.owl-dots-pos-2 .owl-dots,
.owl-carousel.owl-content-pos-2 .owl-stage-outer {
  order: 2;
  margin: 20px 0;
}

.owl-carousel.owl-nav-pos-3 .owl-nav,
.owl-carousel.owl-dots-pos-3 .owl-dots,
.owl-carousel.owl-content-pos-3 .owl-stage-outer {
  order: 3;
}

.owl-carousel.owl-dots-pos-2 .owl-dots .owl-dot,
.owl-carousel.owl-dots-pos-3 .owl-dots .owl-dot {
  margin-top: 0;
}

.owl-carousel.owl-nav-pos-left .owl-nav,
.owl-carousel.owl-nav-pos-right .owl-nav,
.owl-carousel.owl-dots-pos-left .owl-dots,
.owl-carousel.owl-dots-pos-right .owl-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
}

.owl-carousel.owl-dots-pos-left .owl-dots,
.owl-carousel.owl-nav-pos-left .owl-nav {
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.owl-carousel.owl-dots-pos-right .owl-dots,
.owl-carousel.owl-nav-pos-right .owl-nav {
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.owl-carousel.with-carousel-dots.owl-dots-pos-top .owl-nav [class*="owl-"] {
  margin-top: 0;
}

/* Owl Carousel - Controls - Dots - Sizes
-----------------------------------------------------------------*/
.owl-carousel {
  --owl-nav-sizes: 36px;
  --owl-dots-gutters: 4px;
  --owl-dots-sizes: 8px;
  --owl-nav-bg: var(--themecolor, #1abc9c);
  --owl-nav-margin: calc(var(--owl-nav-sizes) / -2);
  --owl-nav-with-dots: calc(
    var(--owl-nav-margin) - calc(calc(30px + var(--owl-dots-sizes)) / 2)
  );
}

.owl-carousel.owl-dots-size-sm {
  --owl-dots-sizes: 4px;
  --owl-dots-gutters: 2px;
}

.owl-carousel.owl-dots-size-lg {
  --owl-dots-sizes: 12px;
  --owl-dots-gutters: 5px;
}

.owl-carousel.owl-dots-size-xl {
  --owl-dots-sizes: 16px;
  --owl-dots-gutters: 6px;
}

.owl-carousel .owl-dots .owl-dot {
  width: var(--owl-dots-sizes);
  height: var(--owl-dots-sizes);
  background-color: var(--owl-nav-bg);
  margin-left: var(--owl-dots-gutters);
  margin-right: var(--owl-dots-gutters);
  transition: all 0.3s;
}

.owl-carousel.owl-nav-hover-fixed[class*="owl-nav-pos-"] .owl-nav .disabled {
  display: inline-block !important;
  pointer-events: none;
  opacity: 0.4 !important;
}

/* Owl Carousel - Controls - Dots - Border
-----------------------------------------------------------------*/
.owl-carousel.owl-dots-border .owl-dots .owl-dot:not(.active) {
  opacity: 1;
  background-color: transparent;
  border: 1px solid var(--owl-nav-bg);
}

.owl-carousel.owl-dots-border .owl-dots .owl-dot.active {
  border-color: transparent;
}

/* Owl Carousel - Controls - Dots - square
-----------------------------------------------------------------*/
.owl-carousel.owl-dots-square .owl-dots .owl-dot {
  border-radius: 0;
  --owl-dots-sizes: 10px;
}

/* Owl Carousel - Controls - Dots - square
-----------------------------------------------------------------*/
.owl-carousel.owl-dots-rounded .owl-dots .owl-dot {
  --owl-dots-sizes: 10px;
  border-radius: 2px;
}

/* Owl Carousel - Controls - Dots - Dashed
-----------------------------------------------------------------*/
.owl-carousel.owl-dots-dashed .owl-dots .owl-dot {
  --owl-dots-sizes: 16px;
  opacity: 0.4;
  height: 4px;
  border-radius: 4px;
}

.owl-carousel.owl-dots-dashed .owl-dots .owl-dot.active {
  --owl-dots-sizes: 32px;
  opacity: 1;
}

/* Owl Carousel - Controls - Dots - Numbers
-----------------------------------------------------------------*/
.owl-carousel.owl-dots-number .owl-dots {
  --owl-dots-sizes: 28px;
  counter-reset: dots;
  --owl-nav-bg: #fff;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot {
  position: relative;
  width: auto;
  opacity: 0.3;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot.active {
  opacity: 1;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot:before {
  display: inline-block;
  counter-increment: dots;
  content: counter(dots, decimal-leading-zero);
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot span {
  position: relative;
  display: inline-block;
  width: 0px;
  height: 2px;
  background-color: #666;
  top: -5px;
  margin-left: 5px;
  transition: width 0.4s ease-in-out;
}

.owl-carousel.owl-dots-number .owl-dots .owl-dot.active span {
  width: 30px;
}

/* Owl Carousel - Controls - Arrows - Sizes
-----------------------------------------------------------------*/

.owl-carousel .owl-nav [class*="owl-"] {
  left: calc(-1 * var(--owl-nav-sizes));
  width: var(--owl-nav-sizes);
  height: var(--owl-nav-sizes);
  line-height: calc(calc(-1 * var(--owl-nav-sizes)) - 4px);
  font-size: calc(var(--owl-nav-sizes) / 2);
  margin-top: var(--owl-nav-margin);
}

.owl-carousel.with-carousel-dots .owl-nav [class*="owl-"] {
  margin-top: var(--owl-nav-with-dots);
}

.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: calc(-1 * var(--owl-nav-sizes));
}

.slider-element .owl-nav .owl-next,
.owl-carousel-full .owl-nav .owl-next {
  left: auto !important;
  right: 0 !important;
}

.owl-carousel.owl-nav-hover-fixed .owl-nav [class*="owl-"],
.owl-carousel:hover .owl-nav [class*="owl-"] {
  opacity: 1;
  left: calc(calc(-1 * var(--owl-nav-sizes)) / 2);
}

.owl-carousel.owl-nav-hover-fixed .owl-nav .owl-next,
.owl-carousel:hover .owl-nav .owl-next {
  left: auto;
  right: calc(calc(-1 * var(--owl-nav-sizes)) / 2);
}

.owl-carousel .owl-nav [class*="owl-"]:hover {
  background-color: var(--owl-nav-bg) !important;
}

.slider-element .owl-nav [class*="owl-"],
.owl-carousel-full .owl-nav [class*="owl-"] {
  margin-top: -30px;
  height: calc(var(--owl-nav-sizes) * 1.6666666667);
  line-height: calc(var(--owl-nav-sizes) * 1.6666666667);
  font-size: calc(calc(var(--owl-nav-sizes) * 1.6666666667) / 2);
}

.owl-carousel-full .with-carousel-dots .owl-nav [class*="owl-"] {
  margin-top: calc(calc(calc(var(--owl-nav-sizes) * 1.6666666667) / -2)) -
    calc(calc(30px + var(--owl-dots-sizes)) / 2);
}

.owl-carousel.owl-nav-hover-fixed[class*="owl-nav-pos-"]
  .owl-nav
  [class*="owl-"] {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  margin: 0;
}

.owl-carousel.owl-nav-hover-fixed[class*="owl-nav-pos-"] .owl-nav .owl-prev {
  margin-right: 5px;
}

.owl-carousel.owl-nav-hover-fixed[class*="owl-nav-pos-"] .owl-nav .owl-next {
  margin-left: 5px;
}

.owl-carousel.owl-nav-text .owl-nav [class*="owl-"] {
  width: auto;
  height: auto;
  line-height: 1.5;
  font-size: 0.925rem;
  border-radius: 3px;
  padding: 4px 8px;
}

.owl-carousel.owl-nav-text .owl-nav [class*="owl-"] i {
  position: relative;
  top: 1px;
}

.imp-websites img {
  border: solid 1px #ccc;
  padding: 5px;
}

.imp-websites a {
  display: block;
  margin: 5px 0 10px;
}

.my-heading {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  /* color: var(--main-color); */
}

.part-ccsu {
  padding-top: 3rem;
  height: 250px;
  width: 100%;
  position: relative;
}

.part-ccsu .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: url(../assests/images/1.jpg);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* opacity: 0.4; */
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.part-ccsu .main-box {
  position: relative;
  top: 20%;
  overflow-x: scroll;
  scrollbar-width: none;
}

.part-ccsu .main-box .boxes {
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
  padding-bottom: 10px;
  width: calc(210px * 6);
}

.part-ccsu .main-box .boxes .box {
  height: 150px;
  width: 190px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  flex-direction: column;
  color: var(--main-color);
  box-shadow: 0 0 5px grey;
  padding: 10px;
}

.part-ccsu .main-box .boxes .box img {
  height: 50px;
}

.part-ccsu .main-box .boxes .box .down {
  margin-top: 10px;
  height: 80px;
  text-align: center;
}

.part-ccsu .main-box .boxes .box .down h1 {
  font-size: 30px;
  font-weight: bold;
  margin: 0;
  padding: 0;
}

.part-ccsu .main-box .boxes .box .down p {
  font-size: 16px;
  font-weight: 400;
  line-height: 15px;
  margin: 0;
  padding: 0;
}

.part-mrs {
  background-color: #000;

  background-image: url(../images/usefullink-bg.png);
  background-position: center;
  background-size: cover;
}

.welcome {
  padding-left: 80px;
}

.counterwrap {
  padding: 40px 0 20px;
}

.counterwrap ul,
.program {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.counterwrap ul li {
  width: 25%;
  padding: 0 10px;
}

.counterwrap ul li .count-box {
  padding: 0 0 15px;
  text-align: center;
}

.count-box .coount-icon {
  width: 108px;
  display: block;
  margin: 0 auto;
  padding: 15px;
  border: 1px dashed #808080;
  border-radius: 50%;
  box-sizing: border-box;
  box-shadow: 4px 4px 1px rgba(0, 0, 0, 0.14);
}

.counterwrap ul li .count-box img,
.featured-services .icon-box .icon img {
  max-width: 100%;
}

.counterwrap ul li .count-box .figure {
  font-size: 2.1em;
  display: block;
  font-weight: 700;
  color: #fff;
}

.counterwrap ul li .count-box .text {
  padding: 0;
  margin: 0;
  font-size: 1.1em;
  color: #fff;
}

.count-box .coount-icon:hover {
  border-color: #fff;
  filter: contrast(0%) brightness(200%);
}

@media only screen and (max-width: 767px) {
  .welcome {
    padding-left: 0 !important;
  }

  .counterwrap ul li .count-box .figure {
    font-size: 1.5em !important;
  }

  .counterwrap ul li .count-box .text {
    font-size: 1em;
  }

  .counterwrap ul li {
    width: 50% !important;
  }

  .title {
    font-size: 22px;
  }

  .sliderimg {
    height: auto !important;
  }

  .Mentors {
    margin-top: 10px !important;
    font-size: 11px !important;
  }

  .tech_dept {
    font-size: 14px !important;
  }

  .dep-box ul li a {
    font-size: 11px !important;
  }

  .kk-bold {
    font-weight: bold !important;
    font-size: 11px !important;
  }

  .right_text > a {
    font-size: 11px !important;
  }

  .nav > li > a {
    font-size: 11px !important;
  }

  .fa-calendar-alt {
    font-size: 14px !important;
  }

  .meta {
    font-size: 11px !important;
  }

  .footer {
    margin-top: 0px !important;
  }
}

.footer {
  margin-top: 0px !important;
}

.display {
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}

.display li {
  list-style: none;
  width: 100%;
  box-sizing: border-box;
  padding: 0 0 8px 0;
}

.HOVER {
  --width: 100%;
  --time: 0.7s;
  position: relative;
  display: block;
  width: 100%;
  padding: 3.2px 0;
  text-align: left;
  color: #004283;
  font-weight: 700;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(236, 236, 236, 1) 100%
  );
}

.HOVER text {
  min-height: 30px;
  font-size: 0.99em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 4px;
  position: absolute;
  margin-top: 15px;
}

.HOVER i {
  padding: 10px;
}

.HOVER:hover,
.fas:hover {
  background: #660000;
  color: #fff;
  transition: 0.3s;
}

[class^="icon-"] {
  display: block;
}
.text-white {
  color: white !important;
}
.card {
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  /* padding: 1px 10px;*/
  /*margin: 10px 0px;*/
  /*background-color: #e7e7e7;*/
  /*height: 350px;*/
  overflow-y: auto;
}

.section-content h5 {
  line-height: 1.55 !important;
  background: #660000 !important;
}

.section-content .list-group {
  padding-left: 0;
  margin-bottom: 5px !important;
}

.list-group {
  margin-left: 10px;
  margin-right: 10px;
}

.section-content small {
  padding: 5px !important;
  font-weight: 700;
}

.list-group > li {
  color: white !important;
  padding: 10px 15px !important;
  background-color: #004283 !important;
}
/* Desktop */
.menu-mobile-trigger {
  display: none;
}

/* Mobile & Tablet */
@media (max-width: 991.98px) {
  .menu-mobile-trigger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-mobile-trigger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
  }

  .header-item-center {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9999;
  }

  .header-item-center.active {
    left: 0;
  }

  .menu-section {
    flex-direction: column;
    padding: 20px;
  }

  .menu-section > li {
    width: 100%;
  }

  .menu-section > li > a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    color: #222;
  }

  .menu-subs {
    display: none;
    position: static;
    width: 100%;
    box-shadow: none;
    padding-left: 15px;
  }

  .menu-item-has-children.active > .menu-subs {
    display: block;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1098;
  }

  .overlay.active {
    display: block;
  }
}
