/* @import url("https://fonts.googleapis.com/css2?family=Roboto:wght@800&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: 'Roboto', sans-serif; */
  font-family: "Roboto", sans-serif;
}

.nav-tabs::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

.nav-tabs::-webkit-scrollbar {
  width: 3px;
  background-color: #f5f5f5;
  height: 3px !important;
}

.nav-tabs::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: grey;
}

:root {
  --main-color: #14297a;
  --sec-color: #f3520d;
}

table tr td {
  text-align: center;
  vertical-align: middle;
}

.normal-button {
  padding: 4px 15px;
  /* border: 1px solid var(--main-color); */
  border: none;
  color: var(--main-color) !important;
  text-transform: uppercase;
  /* border-radius: 50px; */
  cursor: pointer;
  transition: 0.3s;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
  background: #fff;
  display: inline-block;

  &:hover {
    background: #14297a !important;
    color: #fff !important;
  }
}

.my-heading {
  font-family: "Roboto", sans-serif;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--main-color);
}

@media (max-width: 991px) {
  .my-heading {
    font-size: 20px;
  }

  .normal-button {
    padding: 2px 15px;
  }
}

.tabs {
  margin-top: 30px;
  display: flex;
  max-width: 100vw;
  overflow-x: scroll;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tabs a {
  margin-right: 30px;
  white-space: nowrap;
  text-transform: capitalize;
  background: transparent;
  padding: 5px 36px;
  font-size: 18px;
  font-weight: 600;
}

.tabs a:hover,
.tabs a.active {
  background-color: var(--main-color);
  color: #fff !important;
}

.slider-buttons {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-buttons .button {
  position: relative;
  height: 5px;
  width: 75px;
  border-radius: 5px;
  background-color: grey;
  margin-right: 20px;
}

.slider-buttons .button.active {
  background-color: var(--sec-color);
}

/* nav {
  position: relative;
  height: 600px;
  background-color: var(--main-color);
} */

.main {
  background-color: #fff;
}

.owners {
  display: flex;
  padding: 0;
  position: relative;
  width: 100%;

  @media (max-width: 600px) {
    padding: 10px !important;
  }
}

.owners .content {
  padding: 0 30px;
  @media (max-width: 1200px) {
    padding: 0 20px;
  }
  .my-heading {
    @media (max-width: 1200px) {
      font-size: 24px;
    }
  }
}

.owners .content p {
  font-size: 20px;
  font-weight: 400 !important;
  text-align: justify;
  line-height: 25px;
}

.owners .images {
  position: relative;
}

.owners .images .back-box {
  background: #f4c751;
  position: absolute;
  top: -3%;
  height: 100%;
  width: 100%;
  border-radius: 10px;
  z-index: 1;
}

.owners .images .owns {
  padding: 20px 40px;
  z-index: 2;
  position: relative;
  display: flex;
  justify-content: space-around;
}

.owners .images .owns .box {
  width: 30%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.owners .images .owns .box img {
  /* width: 100%; */
  border: 5px solid #fff;
  border-radius: 10px;
  height: 170px;
  object-fit: contain;
}

.owners .images .owns .box .middle {
  margin-top: 5px;
  height: 100px;
}

.owners .images .owns .box h1 {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  color: var(--sec-color);
}

.owners .images .owns .box p {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 400;
  text-align: center;
  color: #14297a;
  font-weight: 400 !important;
}
@media (max-width: 1200px) {
  .owners .images .owns .box h1 {
    font-size: 12px;
  }
  .owners .images .owns .box p {
    font-size: 10px;
  }
}

@media (max-width: 991px) {
  .owners {
    flex-direction: column;
  }

  .owners .content {
    padding: 0;
  }
  .owners .content p {
    font-size: 16px;
  }
  .owners .images .owns {
    flex-direction: column;
    padding: 0;
    margin-top: 50px;
  }

  .owners .images .owns .box {
    width: 100%;
    margin-bottom: 25px;
  }

  .owners .images .owns .box img {
    height: 400px;
  }

  .owners .images .owns .box .middle {
    height: 60px;
  }

  .owners .images .back-box {
    background-color: transparent;
  }
}

.notices {
  background-color: #fff;
  border-top: 3px solid #f4c751;
  column-gap: 20px;
}

.notices .notice {
  display: flex;
  column-gap: 20px;
  justify-content: space-between;
  margin-top: 25px;
}

.notices .notice .box {
  background-color: #f0f6fd;
  border-radius: 20px;
  padding: 0 20px 20px 20px;
  height: 400px;
  overflow: hidden;
  box-shadow: 2px 2px 6px 0px rgb(0 0 0 / 15%);
  hr {
    margin: 0;
    margin-top: 1rem;
  }
}

/* width */
.down::-webkit-scrollbar {
  width: 2px;
}

/* Track */
.down::-webkit-scrollbar-track {
  /* box-shadow: inset 0 0 5px #d9d9d9; */
  background: transparent;
  border-radius: 10px;
}

/* Handle */
.down::-webkit-scrollbar-thumb {
  background: #8d9093;
  border-radius: 10px;
}

/* Handle on hover */
.down::-webkit-scrollbar-thumb:hover {
  background: #14297a;
}

.notices .notice .top {
  display: flex;
  align-items: center;
  height: 50px;
  position: relative;
  z-index: 9;
  width: 100%;
  background: #f0f6fd;

  @media (max-width: 600px) {
    padding: 10px !important;
  }

  display: flex;
  align-items: center;
  justify-content: space-between;

  .left {
    background: #14297a;
    width: 50%;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
  }

  .right {
    background: #f4c751;
    width: 50%;
    padding: 5px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.notices .notice .top h1 {
  display: inline;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 0;
  color: #fff;
}

.notices .notice .down {
  overflow: scroll;
  overflow-x: hidden;
  /* animation: scrollAnimation 30s linear infinite; */
  height: calc(400px - 50px);

  @media (max-width: 600px) {
    padding: 10px !important;
  }
}

.notices .notice .down::-webkit-scrollbar {
  /* display: none !important; */
}

.notices .notice .down .single {
  border-bottom: 1px solid grey;
  padding: 20px 0;
}

.notices .notice .down .single:nth-last-child(1) {
  border-bottom: none;
}

.notices .notice .down a {
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 25px;
}

.notices .notice a.notify {
  font-size: 17px;
  font-weight: 400 !important;
  line-height: 25px;
  margin-bottom: 5px;
}

.notices .notice .down a span {
  margin-left: 10px;
  /* background: #14297a; */
  color: #14297a;
  border-radius: 50px;
  padding: 2px 12px;
  font-style: italic;
  font-size: 12px;
  font-weight: bold;
  text-transform: capitalize;
  /* box-shadow: 0 0 10px #14297aba; */
  border: 1px solid #db4e4e;
}

.notices .notice .down .date {
  color: #db4e4e;
  font-weight: 600 !important;
  font-size: 18px;
  line-height: 18px;
}

@media (max-width: 991px) {
  .notice {
    flex-direction: column;
    row-gap: 20px;
  }

  .notice h1 {
    font-size: 12px !important;
  }
}

.events {
  background-color: #eff5fd;
  height: 300px;
}

.events .calenders {
  display: flex;
  border-right: 2px dotted grey;
}

.events .calenders .col-lg-4 {
  padding: 20px;
  @media (max-width: 1200px) {
    padding: 10px;
  }
}

.events .box {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 10px;
  box-shadow: 0 2px 5px rgb(0 0 0 / 30%);
  height: 284px;
  @media (max-width: 1200px) {
    height: 325px;
  }
}

.events .box .top {
  background-color: var(--main-color);
  text-align: center;
  padding: 10px;
  box-shadow: 0 0 5px #000;

  position: relative;
  z-index: 9;
  width: 100%;
}

.events .box .top h1 {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 26px;
  color: #fff;
  margin-bottom: 0;
  text-transform: capitalize;
}

.events .box .middle {
  padding: 10px;
}

.events .box img {
  width: 100%;
  height: 150px;
  border-radius: 10px;

  /* @media(max-width:1200px){
    height:200px;
  } */
}

.events .box .content {
  text-align: center;
  padding: 0 20px;
}

.events .box .content h2 {
  color: var(--main-color);
  font-size: 15px;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  margin-bottom: 20px;
}

.events .box .content p {
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}

.events .imp-links {
  padding: 20px;
  @media (max-width: 1200px) {
    padding: 10px;
  }
}

/* .events .imp-links .content {
  height: calc(100% - 50px);
  overflow: scroll;
  padding-top: 20px;
  overflow-x: hidden;
} */

.events .imp-links .content {
  height: calc(100% - 50px);
  overflow: scroll;
  padding-top: 10px;
  overflow-x: hidden;
  /* animation: scrollAnimation 20s linear infinite; */
}

.events .imp-links .content:hover {
  animation: none;
}

@keyframes scrollAnimation {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(
      -100%
    );
  }
}

.events .imp-links .content::-webkit-scrollbar {
  display: none;
}
.events .imp-links .content {
  .accordion-item {
    border: none;
  }
  .accordion-body {
    padding: 10px !important;
    li {
      border-bottom: 1px solid grey;
      padding: 5px;
      a {
        font-size: 10px;
      }
    }
  }
}
.events .imp-links .content li,
.events .imp-links .content button {
  list-style: none !important;
  font-size: 14px;
  line-height: 15px;
  padding: 0;
  margin: 0;
  color: #14297a !important;
  border: none;
  outline: none;
  text-align: left;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  width: 100%;
  img {
    height: 20px;
    width: 20px;
    border-radius: 0 !important;
  }
}

.events .imp-links .content hr {
  margin: 7px 0;
}

@media (max-width: 991px) {
  .events {
    height: auto;
    background-color: #fff;
  }

  .events .box {
    height: auto !important;
    padding-bottom: 20px !important;
  }

  .events .calenders,
  .events .main-events {
    flex-direction: column;
    border: none;
  }
}

/* .program-offer {
  border-top: 3px solid var(--sec-color);
  position: relative;
} */
.program-offer {
  margin-top: 50px;
}
.program-offer .main {
  padding: 20px;
}

.program-offer .box {
  background-color: #d9d9d929;
  border-radius: 20px;
  box-shadow: 1px 1px 5px #00000069;
  padding: 50px;
  /* margin-top: 50px; */
}

.program-offer .box h1 {
  --bs-nav-tabs-border-width: 0 !important;
  margin-bottom: 25px;
}

.program-offer .box .big-section {
  background-color: #ffece3;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: 40px;
  display: flex;
}

.program-main .normal-button {
  margin-right: 10px;
  padding: 6px 28px;
}

.program-offer .box .big-section .image {
  height: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.program-offer .box .big-section img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: 30%;
}

.program-offer .box .big-section .content:nth-child(1) {
  border-right: 1px solid grey;
}

.program-offer .box .big-section .content .top {
  border-bottom: 1px solid grey;
  padding: 10px;
}

.program-offer .box .big-section .content .top h1 {
  text-transform: uppercase;
  font-size: 20px;
  display: inline;
  margin: 0 10px;
  font-weight: 600;
}

.program-offer .box .big-section .content .links {
  display: flex;
  flex-direction: column;
}

.program-offer .box .big-section .content .links a {
  display: block;
  position: relative;
  text-decoration: none;
  color: var(--sec-color);
  border-bottom: 1px solid grey;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 400;
}

.program-offer .box .big-section .content .text-col-change a {
  color: #000;
}

.new-button {
  background-color: #db4e4e;
  text-transform: uppercase;
  color: #fff;
  border-radius: 50px;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 991px) {
  .program-offer .big-section {
    height: auto !important;
    flex-direction: column;
  }

  .program-offer .for-doing {
    flex-direction: column;
  }

  .program-offer .box .big-section .content {
    border: 1px solid grey;
    margin: 10px 0;
  }

  .program-offer .box .big-section .content .top h1 {
    font-size: 16px;
  }
}

.part-ccsu {
  padding-top: 3rem;
  height: 250px;
  width: 100%;
  position: relative;

  @media (max-width: 991px) {
    padding-top: 10px !important ;
    margin-top: 10px !important;
  }
}

.part-ccsu .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: url("../images/1.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  /* opacity: 0.4; */
  z-index: -1;
}

.part-ccsu .overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #db944e;
  opacity: 0.7;
}

.part-ccsu .main-box {
  position: relative;
  top: 20%;
  overflow-x: scroll;
  scrollbar-width: none;

  @media (max-width: 600px) {
    padding: 10px 0px !important;
  }
}

.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);
  @media (max-width: 830px) {
    width: 100%;
  }
}

.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;
  @media (max-width: 991px) {
    width: 160px;
    padding-top: 10px !important;
  }
}

.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;
}

@media (max-width: 991px) {
  .part-ccsu {
    height: auto !important;
  }

  .part-ccsu .main-box {
    top: 0%;
  }

  .part-ccsu .overlay {
    display: none;
  }
  .part-ccsu .main-box .boxes {
    justify-content: center;
  }
}

.achievements {
  padding-top: 80px;
}

.achievements .certificates {
  display: flex;
  width: 100%;
  justify-content: center;
}

.achievements .certificates .box {
  height: 100%;
  padding: 20px;
}
.achievements .certificates .box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  box-shadow: 0px 9px 13.600000381469727px 0px #00000040;
}

@media (max-width: 991px) {
  .achievements .my-heading {
    padding-left: 0 !important;
    text-align: center;
  }
  .achievements .certificates {
    flex-direction: column;
  }
}

.facilities {
  /* height: 100%; */
}
.facilities .main-box {
  padding: 50px 0px;
  position: relative;
  /* height: 100%; */
}

.facilities .main-box .back {
  background-color: #d9d9d929;
  border-radius: 20px;
  box-shadow: 2px 2px 10px rgb(0 0 0 / 20%);
  /* height: 100%; */
  width: 100%;
  position: relative;
  padding: 30px;
}

.facilities .main-box .boxes {
  /* border: 2px solid red; */
  display: flex;
  column-gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.facilities .main-box .boxes .box {
  display: flex;
  column-gap: 20px;
  width: 290px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 4px 12.100000381469727px 0px #00000040;
  margin-bottom: 20px;
  margin-top: 10px;
}
.facilities .main-box .boxes .box img {
  width: 100%;
  height: 175px;
  object-fit: cover;
}
.facilities .main-box .boxes .box .content {
  padding: 10px 15px;
}
.facilities .main-box .boxes .box .content h1 {
  font-size: 20px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  padding: 0;
  margin: 0;
}
.facilities .main-box .boxes .box .content p {
  font-size: 14px;
  font-weight: 400;
  text-align: justify;
  padding: 0;
  margin: 0;
  margin-top: 5px;
}

@media (max-width: 991px) {
  .facilities .main-box {
    padding: 25px;
  }
  .facilities .main-box .boxes {
    justify-content: center;
  }
}

.social {
  background: url("../images/social-back.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  margin-top: 100px !important;

  @media (max-width: 600px) {
    margin-top: 50px !important;
  }
}
.social .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgb(0 37 133 / 91%);
  mix-blend-mode: multiply;
  z-index: 2;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}
.social .main-box {
  z-index: 3;
  position: relative;
  /* margin: 50px auto; */
}
.social .main-box h1 {
  color: #fff;
}
.social .main-box .boxes {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
}
.social .main-box .boxes .box {
  width: 32%;
  height: 400px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;

  @media (max-width: 830px) {
    width: 60% !important;
  }
  @media (max-width: 600px) {
    width: 100% !important;
  }
}
.social .main-box .boxes .box .top {
  background: #fff;
  border-bottom: 2px solid #14297a;
  height: 80px;
  padding: 10px;
  display: flex;
  position: relative;
}
.social .main-box .boxes .box .top .right {
  margin-left: 5px;
}
.social .main-box .boxes .box .top .right h2 {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-align: left;
  padding: 0;
  margin: 0;
}
.social .main-box .boxes .box .top .right p {
  /* font-family: "Roboto", sans-serif; */
  font-size: 11px;
  font-weight: 400;
  line-height: 14px;
  text-align: left;
  padding: 0;
  margin: 0;
}

.social .main-box .boxes .box .center-logo {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  top: -15px;
  height: 30px;
  transition:transform .4s;

  &:hover{
    transform: scale(1.3) translateX(-50%);
    border-radius: 5px;
  }
}
.social .main-box .boxes .box .down {
  margin-top: -10px;
}
.social .main-box .boxes .box .down img {
  width: 100%;
  height: 250px;
}

@media (max-width: 991px) {
  .social .my-heading {
    padding-left: 0 !important;
    text-align: center;
  }
}

.faq .main-box {
  padding: 50px 0px;
}
.faq .main-box .back {
  background: #f9f9f9;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 2px 2px 10px rgb(0 0 0 / 20%);
  align-items: flex-start;
}

/* .faq .main-box .back .box {
  padding: 50px 0;

} */

.faq .main-box .back .top {
}
.faq .main-box .back .top h1 {
  display: flex;
  margin-right: 10px;
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 21px;
  vertical-align: sub;
}
.faq .main-box .back .top p {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding: 0;
  margin: 15px 0;
  color: var(--main-color) !important;
}

.faq .questions {
  details div {
    padding: 5px 10px;
    padding-left: 3rem;
  }

  summary {
    list-style: none;
    padding: 0.75em 1em;
    cursor: pointer;
    position: relative;
    padding-left: calc(1.75rem + 0.75rem + 0.75rem);
    user-select: none;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    color: var(--main-color);
  }

  summary:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0.75rem;
    content: "";
    width: 20px;
    height: 20px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    background-image: url("../images/faq-plus.svg");
    background-position: center;
    background-size: cover;
  }
}
.faq .main-box .gallery {
  width: 100%;
}
.faq .main-box .gallery img {
  width: 100%;
}

@media (max-width: 991px) {
  .faq .main-box {
    padding: 0;
  }
  .faq .main-box .back {
    flex-direction: column;
  }
  .faq .main-box .top {
    padding: 20px 0;
    margin-bottom: 20px;
  }
  .faq .main-box .box {
    border-left: none !important;
    padding-left: 0 !important;
  }
}

.important-links .main-box .my-heading {
  padding-left: 50px;
}
.important-links .main-box .boxes {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
}
.important-links .main-box .boxes .box {
  background: #fff;
  border: 1px solid gray;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  width: 180px;
  height: 130px;
  box-shadow: 0px 4px 4px 0px #00000040;
}
.important-links .main-box .boxes .box img {
  width: 100%;
  mix-blend-mode: multiply;
}

@media (max-width: 991px) {
  .important-links .main-box .boxes .box {
    width: 200px;
    height: 125px;
    padding: 20px !important;
  }
  .important-links .main-box .my-heading {
    padding-left: 0;
    text-align: center;
  }
}

/* Important code for PDF Links cards*/
.global-card-parent {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  .global-card {
    height: 150px;
    width: 150px;
    background-color: #f0f6fd;
    transition: 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.24);
    i {
      color: #14297a;
    }
    a {
      display: flex;
      justify-content: space-around;
      height: 100%;
      align-items: center;
      flex-direction: column;
      text-decoration: none;
      color: #14297a !important;
      transition: 0.5s;
      p {
        font-size: 12px;
        text-align: center;
      }
    }
    p {
      font-size: 14px;
      text-align: center;
      color: #14297a;
    }
    .normal-button {
      padding: 2px 10px;
      font-size: 12px;
      height: auto !important;
    }
    &:hover {
      background-color: #14297a;
      box-shadow: 0 0 10px #000;

      a,
      i,
      p {
        color: #fff !important;
      }
      .normal-button {
        background-color: #14297a;
      }
    }
  }
  @media (max-width: 991px) {
    justify-content: center;
  }
}

.dropdown-menu .new-menu-try {
  display: flex;
  padding: 10px 30px 10px 0;
  @media (max-width: 991px) {
    flex-direction: column;
  }
}

.nav.nav-pills {
  row-gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: thin;
  padding: 10px;
}

/* insta widget */
/* .tb_app_container {
  margin-top: -38px;
} */

.bp-widget-widget {
  position: fixed;
  z-index: 99999999999;
  right: 12px !important;
}

.bp-web-widget-container .bp-widget-side {
  z-index: 99999999999;
}

@media (max-width: 600px) {
  .bp-widget-side {
    z-index: 9999999;
  }
}
