/*
01 - Fonts Style
<<<<======================================================>>>>*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;0,700;0,900;1,400&display=swap");
/*
02 - Variable Style
<<<<======================================================>>>>*/
/*
03 - Global Style
<<<<======================================================>>>>*/
body {
  font-size: 17px;
  font-family: "Roboto", sans-serif;
  color: #4a4c59;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

a {
  transition: all ease 0.5s;
  text-decoration: none;
  color: #4a4c59;
}
a:hover {
  text-decoration: none;
  color: #f55e1a;
}
a:focus {
  text-decoration: none;
}

button {
  outline: 0 !important;
  box-shadow: none;
  border: none;
  padding: 0;
}
button:focus {
  box-shadow: none;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: #1d213e;
  font-weight: 700;
}

p {
  font-size: 17px;
  margin-bottom: 15px;
  line-height: 1.8;
}
p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-76 {
  padding-bottom: 76px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-30 {
  margin-bottom: 30px;
}

.container-fluid {
  max-width: 1780px;
  padding-left: 30px;
  padding-right: 30px;
}

/*
10 - Main Btn Style
<<<<======================================================>>>>*/
.main-btn {
  display: inline-block;
  position: relative;
  /* background-color: #f55e1a; */
  box-shadow: rgb(49 54 144 / 27%) 0px -25px 18px -14px inset, rgb(63 81 181 / 34%) 0px 1px 2px, rgb(27 45 147 / 49%) 0px 2px 4px, rgb(63 77 157 / 20%) 0px 4px 8px, rgb(133 145 209 / 12%) 0px 8px 16px, rgb(77 94 185 / 8%) 0px 16px 32px;
    background-color: #3666b3;
    color: white;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  padding: 18px 30px;
  transition: all ease 0.5s;
  border-radius: 50px;
}
.main-btn::before, .main-btn::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  background: #1d213e;
  right: 0;
  top: 0;
  transition-delay: 0.2s;
  /* border-radius: 4px; */
  border-radius: 50px;
}
.main-btn::after {
  right: auto;
  left: 0;
  top: auto;
  bottom: 0;
  transition-delay: 0.6s;
}
.main-btn span {
  display: block;
}
.main-btn span::before, .main-btn span::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  background: #1d213e;
  transition-delay: 0s;
  left: 0;
  top: 0;
  border-radius: 4px;
}
.main-btn span::after {
  transition-delay: 0.4s;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.main-btn.sub-btn {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 400;
}
.main-btn:hover {
  color: #ffffff;
}
.main-btn:hover::before {
  width: 100%;
  transition-delay: 0.4s;
}
.main-btn:hover::after {
  width: 100%;
  transition-delay: 0s;
}
.main-btn:hover span::before {
  height: 100%;
  transition-delay: 0.6s;
}
.main-btn:hover span::after {
  height: 100%;
  transition-delay: 0.2s;
}

/*
12 - Hover Style
<<<<======================================================>>>>*/
.hover-style {
  position: relative;
  transition: all ease 0.5s;
  z-index: 1;
}
.hover-style::before, .hover-style::after {
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  transition: all 0.2s linear;
  /* background: #f55e1a; */
  background: #48a5d6;
  right: 0;
  top: 0;
  transition-delay: 0.2s;
  border-radius: 4px;
  z-index: -1;
}
.hover-style::after {
  right: auto;
  left: 0;
  top: auto;
  bottom: 0;
  transition-delay: 0.6s;
}
.hover-style .inner-border {
  display: block;
}
.hover-style .inner-border::before, .hover-style .inner-border::after {
  content: "";
  width: 2px;
  height: 0;
  position: absolute;
  transition: all 0.2s linear;
  /* background: #f55e1a; */
  background: #48a5d6;
  transition-delay: 0s;
  left: 0;
  top: 0;
  border-radius: 4px;
  z-index: -1;
}
.hover-style .inner-border::after {
  transition-delay: 0.4s;
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
}
.hover-style:hover::before {
  width: 100%;
  transition-delay: 0.4s;
}
.hover-style:hover::after {
  width: 100%;
  transition-delay: 0s;
}
.hover-style:hover .inner-border::before {
  height: 100%;
  transition-delay: 0.6s;
}
.hover-style:hover .inner-border::after {
  height: 100%;
  transition-delay: 0.2s;
}

/*
13 - Main Section Title Style
<<<<======================================================>>>>*/
.main-section-title {
  text-align: center;
  max-width: 960px;
  margin: -5px auto 50px;
}
.main-section-title .up-title {
  font-size: 18px;
  background: #f55e1a;
  background: linear-gradient(to right, #f55e1a 0%, #0000ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0px;
  padding: 5px;
}
.main-section-title h1 {
  font-size: 100px;
  background: #f55e1a;
  background: linear-gradient(to right, #f55e1a 0%, #0000ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
  display: inline-block;
  margin-bottom: 10px;
  line-height: 1;
}
.main-section-title h2 {
  font-size: 50px;
  margin-bottom: 15px;
}
.main-section-title h2 span {
  background: #f55e1a;
  background: linear-gradient(to right, #f55e1a 0%, #0000ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-section-title h2:last-child {
  margin-bottom: 0;
}
.main-section-title p {
  max-width: 700px;
  margin: auto;
}
.main-section-title.w-860 {
  max-width: 860px;
}
.main-section-title.w-760 {
  max-width: 760px;
}
.main-section-title .ltr-rtl-btn {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-top: 50px;
}
.main-section-title .ltr-rtl-btn li {
  display: inline-block;
  margin-right: 30px;
}
.main-section-title .ltr-rtl-btn li:last-child {
  margin-right: 0;
}

/*
05 - Navbar Style
<<<<======================================================>>>>*/
.navbar {
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}
.navbar.sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
}
.navbar .navbar-nav .nav-item .nav-link {
  font-size: 17px;
  padding: 15px 25px;
  font-weight: 500;
  transition: all ease 0.5s;
}
.navbar .navbar-nav .nav-item .nav-link.active {
  /* color: #f55e1a; */
  color: #cd470b;
}
.navbar .navbar-nav .nav-item .nav-link:hover {
  /* color: #f55e1a; */
  color: #c33c00;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
/*
05 - Banner Style
<<<<======================================================>>>>*/
.banner-section {
  background-image: url(../../assets/images/section-bg-1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* height: 100vh; */
}

.banner-content {
  text-align: center;
  /* max-width: 960px; */
  margin: auto;
}
.banner-content h1 {
  font-size: 70px;
  margin-bottom: 20px;
}
.banner-content p {
  text-align: left;
  font-size: 15px;
  margin-bottom: 20px;
}
.banner-content .features-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 50px;
}
.banner-content .features-list li {
  display: inline-block;
  margin-right: 30px;
  cursor: pointer;
}
.banner-content .features-list li:last-child {
  margin-right: 0;
}
.banner-content .features-list li img {
  border-radius: 100px;
  border: 4px solid #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

/*
05 - Design Style
<<<<======================================================>>>>*/
.single-design {
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border-radius: 8px;
  transition: all ease 0.5s;
  margin-bottom: 24px;
}
.single-design h1 {
  font-size: 60px;
  line-height: 1;
  background: #f55e1a;
  background: linear-gradient(to right, #f55e1a 0%, #0000ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 900;
}
.single-design span {
  font-size: 20px;
  display: block;
  font-weight: 500;
}
.single-design:hover {
  transform: translateY(-5px);
}

/*
05 - Category Style
<<<<======================================================>>>>*/
.category-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.category-section.bg-1 {
  background-image: url(../../assets/images/section-bg-2.png);
}

.main-category-item {
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  transition: all ease 0.5s;
  margin-bottom: 50px;
}
.main-category-item img {
  border-radius: 7px 7px 0 0;
  transition: all ease 0.5s;
}
.main-category-item h3 {
  font-size: 22px;
  margin-bottom: 0;
  padding: 15px 30px;
  border-radius: 0 0 10px 10px;
  transition: all ease 0.5s;
  background-color: rgba(245, 94, 26, 0.2);
}
.main-category-item:hover {
  transform: translateY(-5px);
}
.main-category-item:hover h3 {
  background-color: #f55e1a;
  color: #ffffff;
}

/*
05 - Responsive Style
<<<<======================================================>>>>*/
.responsive-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.responsive-section.bg-1 {
  background-image: url(../../assets/images/section-bg-3.png);
}

/*
05 - Features Style
<<<<======================================================>>>>*/
.main-features-item {
  background-color: #ffffff;
  box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
  padding: 10px;
  text-align: center;
  border-radius: 24px;
  transition: all ease 0.5s;
  margin-bottom: 24px;
      border: solid 2px #50817a38;
      margin-top: 0px;
    padding-top: 7px;
    padding-left: 15px;
    padding-right: 15px;

    /* border: solid 2px;
    border-image-slice: 100%;
    border-image-source: none;
    border-image-source: linear-gradient(to bottom right,#cdad68,#ec8f57);
    border-image-slice: 5; */
      
}
.main-features-item img {
  background-color: #fff6f6;
  border-radius: 50px;
  /* margin-bottom: 20px; */
}
.main-features-item h3 {
  font-size: 18px;
  margin-bottom: 0;
}
.main-features-item:hover {
  transform: translateY(-5px);
}

/*
05 - Purchase Style
<<<<======================================================>>>>*/
.purchase-section {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 200px;
}
.purchase-section.bg-1 {
  background-image: url(../../assets/images/section-bg-4.png);
}

.purchase-content {
  max-width: 960px;
  margin: auto;
  text-align: center;
}
.purchase-content h2 {
  font-size: 60px;
  margin-bottom: 50px;
}

/* Max width 767px */
@media only screen and (max-width: 767px) {
  .ptb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pt-100 {
    padding-top: 60px;
  }
  .pb-100 {
    padding-bottom: 60px;
  }
  .pb-70 {
    padding-bottom: 30px;
  }
  .pb-76 {
    padding-bottom: 36px;
  }
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 540px;
  }
  .banner-section {
    height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .banner-content h1 {
    font-size: 30px;
  }
  .banner-content p {
    font-size: 18px;
  }
  .banner-content .features-list {
    margin-bottom: 30px;
  }
  .banner-content .features-list li {
    margin-right: 18px;
  }
  .main-section-title {
    margin-bottom: 30px;
  }
  .main-section-title .up-title {
    font-size: 16px;
  }
  .main-section-title h1 {
    font-size: 50px;
  }
  .main-section-title h2 {
    font-size: 28px;
  }
  .main-section-title .ltr-rtl-btn {
    margin-top: 25px;
  }
  .single-design h1 {
    font-size: 40px;
  }
  .single-design span {
    font-size: 18px;
  }
  .main-category-item h3 {
    font-size: 20px;
  }
  .purchase-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .purchase-content h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .main-btn {
    padding: 15px 16px;
    font-size: 14px;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .ptb-100 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .pt-100 {
    padding-top: 60px;
  }
  .pb-100 {
    padding-bottom: 60px;
  }
  .pb-70 {
    padding-bottom: 30px;
  }
  .pb-76 {
    padding-bottom: 36px;
  }
  .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 720px;
  }
  .banner-section {
    height: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .banner-content h1 {
    font-size: 40px;
  }
  .banner-content p {
    font-size: 18px;
  }
  .banner-content .features-list {
    margin-bottom: 30px;
  }
  .banner-content .features-list li {
    margin-right: 18px;
  }
  .main-section-title {
    margin-bottom: 30px;
  }
  .main-section-title .up-title {
    font-size: 16px;
  }
  .main-section-title h1 {
    font-size: 60px;
  }
  .main-section-title h2 {
    font-size: 35px;
  }
  .main-section-title .ltr-rtl-btn {
    margin-top: 25px;
  }
  .single-design h1 {
    font-size: 50px;
  }
  .single-design span {
    font-size: 18px;
  }
  .main-category-item h3 {
    font-size: 20px;
  }
  .purchase-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .purchase-content h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .main-btn {
    padding: 15px 16px;
    font-size: 14px;
  }
}
/* Mobile and iPad Navbar */
@media only screen and (max-width: 991px) {
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar .navbar-nav {
    padding-top: 20px;
    text-align: center;
  }
  .navbar .navbar-nav .nav-item .nav-link {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    font-size: 15px;
  }
  .navbar .others-option {
    padding-bottom: 20px;
    text-align: center;
  }
}



.text_left{
  text-align: left;
}
.f_13{
  font-size: 13px;
}


.f_15{
  font-size: 16px;
    font-weight: 100;
}

.f15{
  font-size: 15px;
}


/*Custom Btn*/

  :root {
         --bg: #3C465C;
         --primary: #78FFCD;
         --solid: #fff;
         /* --btn-w: 12em; */
         --btn-w: 24em;
         --dot-w: calc(var(--btn-w)*.2);

         --btn-w2: 80em;
         --dot-w2: calc(var(--btn-w2)*.2);
         --tr-X: calc(var(--btn-w) - var(--dot-w));
         }
         .custombtn {
         position: relative;
         margin: 0 auto;
         width: var(--btn-w);
         color: #0f207e;
         border: 1px solid #7084eb;
         border-radius: 5em;
         /*text-transform: uppercase;*/
         text-align: center;
         font-size: 14px !important;
         font-weight: 600;
         line-height: 2.8em;
         cursor: pointer;
         background-color: white; 
         /* box-shadow: rgba(0,0,0,.2) 0 5px 30px; 
             box-shadow: rgb(49 54 144 / 22%) 0px -25px 18px -14px inset, rgb(63 81 181 / 3%) 0px 1px 2px, rgb(27 45 147 / 0%) 0px 2px 4px, rgb(63 77 157 / 9%) 0px 4px 8px, rgb(133 145 209 / 12%) 0px 8px 16px, rgb(77 94 185 / 12%) 0px 16px 32px; */
         }
         .dot {
         content: '';
         position: absolute;
         top: 0;
         width: var(--dot-w);
         height: 100%;
         border-radius: 100%;
         transition: all 300ms ease;
         display: none;

         }
         .dot:after {
         content: '';
         position: absolute;
         left: calc(50% - 0.4em);
         top: -0.4em;
         height: 0.8em;
         width: 0.8em;
         background: #3F51B5;
         border-radius: 1em;
         border: 0.25em solid #d8ddf9;
         box-shadow: 0 0 0.7em #fff, 0 0 2em var(--primary);
         }
         .custombtn:hover .dot,
         .custombtn:focus .dot {
         animation: atom 2s infinite linear;
         display: block;
         }
         @keyframes atom {
         0% {transform: translateX(0) rotate(0);}
         30%{transform: translateX(var(--tr-X)) rotate(0);}
         50% {transform: translateX(var(--tr-X)) rotate(180deg);}
         80% {transform: translateX(0) rotate(180deg);}
         100% {transform: translateX(0) rotate(360deg);}
         }



         /* New admit card btn */

         .custombtn2 {
          position: relative;
          margin: 0 auto;
          width: var(--btn-w2);
          color: white;
          border: 1px solid #7084eb;
          border-radius: 5em;
          /*text-transform: uppercase;*/
          text-align: center;
          font-size: 14px !important;
          font-weight: 600;
          line-height: 2.8em;
          cursor: pointer;
          /* background-color: white;  */
          background-color: #198754;
          box-shadow: rgba(0,0,0,.2) 0 5px 30px; 
              box-shadow: rgb(49 54 144 / 22%) 0px -25px 18px -14px inset, rgb(63 81 181 / 3%) 0px 1px 2px, rgb(27 45 147 / 0%) 0px 2px 4px, rgb(63 77 157 / 9%) 0px 4px 8px, rgb(133 145 209 / 12%) 0px 8px 16px, rgb(77 94 185 / 12%) 0px 16px 32px;
          }
          .dot2 {
          content: '';
          position: absolute;
          top: 0;
          width: var(--dot-w2);
          height: 100%;
          border-radius: 100%;
          transition: all 300ms ease;
          display: none;
 
          }
          .dot2:after {
          content: '';
          position: absolute;
          left: calc(50% - 0.4em);
          top: -0.4em;
          height: 0.8em;
          width: 0.8em;
          background: #3F51B5;
          border-radius: 1em;
          border: 0.25em solid #d8ddf9;
          box-shadow: 0 0 0.7em #fff, 0 0 2em var(--primary);
          }
          .custombtn2:hover .dot2,
          .custombtn2:focus .dot2 {
          animation: atom 2s infinite linear;
          display: block;
          }
          @keyframes atom {
          0% {transform: translateX(0) rotate(0);}
          30%{transform: translateX(var(--tr-X)) rotate(0);}
          50% {transform: translateX(var(--tr-X)) rotate(180deg);}
          80% {transform: translateX(0) rotate(180deg);}
          100% {transform: translateX(0) rotate(360deg);}
          }
/* New admit card btn */



  /* New admit card btn */

  .custombtn3 {
    position: relative;
    margin: 0 auto;
    width: var(--btn-w2);
    color: white;
    border: 1px solid #167eb4;
    border-radius: 5em;
    /*text-transform: uppercase;*/
    text-align: center;
    font-size: 14px !important;
    font-weight: 600;
    line-height: 2.8em;
    cursor: pointer;
    /* background-color: white;  */
    background-color: #167eb4;
    box-shadow: rgba(0,0,0,.2) 0 5px 30px; 
        box-shadow: rgb(49 54 144 / 22%) 0px -25px 18px -14px inset, rgb(63 81 181 / 3%) 0px 1px 2px, rgb(27 45 147 / 0%) 0px 2px 4px, rgb(63 77 157 / 9%) 0px 4px 8px, rgb(133 145 209 / 12%) 0px 8px 16px, rgb(77 94 185 / 12%) 0px 16px 32px;
    }
    .dot3 {
    content: '';
    position: absolute;
    top: 0;
    width: var(--dot-w2);
    height: 100%;
    border-radius: 100%;
    transition: all 300ms ease;
    display: none;

    }
    .dot3:after {
    content: '';
    position: absolute;
    left: calc(50% - 0.4em);
    top: -0.4em;
    height: 0.8em;
    width: 0.8em;
    background: #3F51B5;
    border-radius: 1em;
    border: 0.25em solid #d8ddf9;
    box-shadow: 0 0 0.7em #fff, 0 0 2em var(--primary);
    }
    .custombtn3:hover .dot3,
    .custombtn3:focus .dot3 {
    animation: atom 2s infinite linear;
    display: block;
    }
    @keyframes atom {
    0% {transform: translateX(0) rotate(0);}
    30%{transform: translateX(var(--tr-X)) rotate(0);}
    50% {transform: translateX(var(--tr-X)) rotate(180deg);}
    80% {transform: translateX(0) rotate(180deg);}
    100% {transform: translateX(0) rotate(360deg);}
    }
/* New admit card btn */
         
          .text_scrol{
         border-radius: 0px;
         /* background-color: #b7e7ff;
         border: solid 1px #1a9de1; */
             color: #0e0e3e;
             background-color: #fdd281;
    border: solid 1px #bf9549;
         font-size: 15px;
         padding: 3px;
         }

         .list-group-item{
          border: dotted 1px #bbbbbb;
         }
         .custom_call{
          width: 100%;
          border: 1px solid #7084eb;
          box-shadow: rgb(49 54 144 / 22%) 0px -25px 18px -14px inset, rgb(63 81 181 / 3%) 0px 1px 2px, rgb(27 45 147 / 0%) 0px 2px 4px, rgb(63 77 157 / 9%) 0px 4px 8px, rgb(133 145 209 / 12%) 0px 8px 16px, rgb(77 94 185 / 12%) 0px 16px 32px;
          border-radius: 5em;
          font-size: 14px !important;
          font-weight: 600;
          line-height: 2.8em;
          cursor: pointer;
          background-color: white;
         }

         .city-updates ul {
          width: 100%;
          border: 1px solid #b9b7b79e;
          float: left;
          background: #fff;
          border-radius: 3px;
          overflow: hidden;
          border: 1px solid #e8e8e8;
          box-shadow: 0 5px 15px rgb(0 0 0 / 7%);
          list-style: none;
          padding: 0px 20px;
          margin: 0px;
          background: #fff;
      }
      .city-updates li.more-news {
        padding: 0px;
        margin: 0 -20px;
        height: 59px;
    }
    .city-updates ul li {
      border-bottom: 1px solid #e8e8e8;
      padding: 19px 0;
  }


  /* Events */
/*  
  .calendar {
    min-width: 350px;
    max-width: 50%;
    margin: 1em auto;
    padding: 1em;
    background: #EEE;
    font-family: arial, helvetica, san-serif;
    box-shadow: 0 0 0.1em rgba(0, 0, 0, 0.5);
    border-radius: 0.2em;
  } */
  /* .calendar:last-child {
    border-top: 6px solid red;
  } */
  .calendar h1 {
    margin: 0 0 0.4em;
    font-weight: bold;
  }
  .calendar .event {
    color: #333;
    display: block;
    padding: 0.2em;
    transition: all 0.25s ease;
    margin-bottom: 0.5em;
    border: dotted 1px rgb(202, 202, 202);
  }
  .calendar .event:hover {
    /* background: #d5d5d5; */
    background: #eff0fb;
    text-decoration: none;
    color: black;
  }
  .calendar .event_icon {
    width: 3em;
    float: left;
    margin-right: 0.75em;
  }
  .calendar .event_month, .calendar .event_day {
    text-align: center;
  }
  .calendar .event_month {
    padding: 0.1em;
    margin-bottom: 0.15em;
    /* background: #C00000; */
    /* background: #3F51B5; */
    background: #0c6985;
    font-size: 0.75em;
    color: white;
    border-top-left-radius: 0.3em;
    border-top-right-radius: 0.3em;
  }
  .calendar .event_day {
    border: 1px solid #999;
    background: white;
    color: black;
    font-size: 15px;
    font-weight: bold;
    border-bottom-left-radius: 0.1em;
    border-bottom-right-radius: 0.1em;
    display: grid;
  }
  .calendar .event_title {
    font-size: 15px;
    height: 3em;
    display: table-cell;
    vertical-align: middle;
    font-weight: bold;
  }
  .calendar .btn {
    margin-top: 0.5em;
    width: 100%;
    font-size: 1.5em;
  }

  
  

  


  #load{
    width:100%;
    height:100%;
    position:fixed;
    z-index:9999;
    /* background: url(https://i.gifer.com/origin/34/34338d26023e5515f6cc8969aa027bca_w200.gif) no-repeat center center rgb(0 0 0 / 96%); */
    /* background: url(../images/loader.gif) no-repeat center center rgb(241 242 243); */
    background: url(../images/NFSU_logo.png) no-repeat center center rgb(241 242 243);
}

.dropdown-menu{
  min-width: 13rem;
}



@media screen and (max-width: 991px){
  .mobile_fixed{
    position: fixed;
    background-color: white;
    padding: 5px;
    z-index: 999;
    bottom: 0;
    width: 104%;
    left: 0;
  }
}


@media screen and (max-width: 767px){
  .mobile_fixed{
    position: fixed;
    background-color: white;
    padding: 5px;
    z-index: 999;
    bottom: 0;
    width: 104%;
    left: 0;
  }
}

  @media screen and (max-width: 575px){
    .mobile_fixed{
      position: fixed;
      background-color: white;
      padding: 5px;
      z-index: 999;
      bottom: 0;
      width: 104%;
      left: 0;
    }
  }


  /* custom box */
  .uniBox {
    display: block;
    border: 2px solid #ddb55e;
    padding: 5px 8px;
    border-radius: 14px;
    color: #282c6f;
    font-weight: 600;
}
.uniBox .folding-angle {
  border-width: 15px;
}
.folding-angle {
  border-color: #ffffff #ffffff #ddb55e #ddb55e;
  border-radius: 0 0 0 6px;
  border-style: solid;
  position: absolute;
  top: 96px;
  right: 19px;
  border-width: 0;
  width: 0;
  height: 0;
  background: #002147;
  transition: border-width .20s ease-in;
}

.uniBox img {
  background: #ddb55e;
  width: 40px;
  height: 40px;
  font-size: 23px;
  text-align: center;
  float: left;
  line-height: 51px;
  border-radius: 10px;
  margin-right: 12px;
  padding: 5px;
}

.uniBox span {
  display: flex;
  height: 40px;
  align-items: center;
  line-height: 20px;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .7px;
}
.Info{
  display: flex;

}
.colors{
  background-color: #e8e8e8;
padding-top: 10px;
padding-bottom: 12px;
font-size: 10px;

}
.desig{
  width: 82%;
  font-size: 12px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 3px;
  font-weight: 900;
  border: 1px solid #032049;
  color: #032049;
  transition-duration: 0.4s;}
.desig1:hover{
  background-color: #032049;
  color: white;

}
.new{
  border-radius: 10px;
  font-size: 16px;
  transition-duration: 0.4s;
}
.new_1:hover{
  background-color: #8b0d0d;
  color: white;
}

table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

td, th {
  border: 1px solid #afb4b9;
  text-align: left;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  color: brown;
}

tr:nth-child(even) {
  background-color:#ededed;
}