/* Variables for Light mode and Dark mode */
html {
  --theme-clr: #ea1b25;
  --bg-clr: #ebf5fc;
  --bg-sec-clr: #fff;
  --hover-blue: #1569c7;
  --link-clr: darkorange;
  --txt-clr: #222831;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: normal;
}

.text-center{
  text-align: center;
}

.mt10{
  margin-top:10px;
}

/* End Variables Declaration */
/* Footer Menu*/
.footerMenu {
  position: fixed;
  bottom: 0;
  left: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  text-align: center;
  width: 100vw;
  background-color: var(--bg-sec-clr);
  padding: 15px 0;
  z-index: 10000;
}

.footerMenu .menuGroup {
  position: relative;
}

.footerMenu .menuGroup i {
  font-size: 1.2em;
  color: var(--txt-clr);
  cursor: pointer;
}

.footerMenu .menuGroup span {
  position: absolute;
  font-size: 0.5em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -1.3em;
  text-align: center;
  white-space: nowrap;
  color: var(--txt-clr);
  cursor: pointer;
}

.footerMenu .menuGroup:hover {
  color: var(--hover-blue);
}

.footerMenu .menuGroup:hover span {
  color: var(--hover-blue);
}

.footerMenu .menuGroup.active i,
.footerMenu .menuGroup.active span {
  color: var(--hover-blue);
}

/* End Footer Menu */
/* Popup Menus */
.popupMenus {
  position: fixed;
  pointer-events: none;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999999;
  opacity: 0;
  -webkit-transition: 0.4s all ease;
  transition: 0.4s all ease;
}

.popupMenus > div {
  position: relative;
  display: none;
  margin: 60% 5vw 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: var(--bg-sec-clr);
  padding: 0 0 15px;
  border-radius: 10px;
}

.popupMenus > div .closePopup {
  position: absolute;
  color: #fff;
  background-color: var(--theme-clr);
  height: 30px;
  width: 30px;
  border-radius: 50%;
  padding: 15px;
  top: -15px;
  right: -15px;
  border: 3px solid #fff;
  text-align: center;
  cursor: pointer;
}

.popupMenus > div .closePopup i {
  -webkit-transform: translate(-50%, -75%);
          transform: translate(-50%, -75%);
}

.popupMenus > div .popupHeading {
  background-color: var(--theme-clr);
  padding: 5px;
  width: 100%;
  text-align: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.popupMenus > div .popupHeading h3 {
  color: #fff;
  font-weight: normal;
  font-size: 16px;
}

.popupMenus > div .popupBody {
  margin: 0 15px;
  padding: 15px 0 0;
}

.popupMenus.popupVisible {
  opacity: 1;
  pointer-events: all;
}

/* End Popup Menus */
/* Login Popup */
.otpSection,
.otpSectionContact {
  display: none;
}

.otpSection.active,
.otpSectionContact.active {
  display: block;
}

/* End Login Popup */
/* Responsive mode for Desktop */
@media only screen and (min-width: 992px) {
  .footerMenu {
    display: none;
  }
  .popupMenus > div {
    margin: 10vh 23vw;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

/* End responsive mode */
/* Loader */
.loader {
  position: fixed;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  z-index: 10000000;
  background-color: #fff;
  pointer-events: all;
  opacity: 1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
}

.loader .logoCont {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loader .logoCont .logo {
  height: 100px;
  width: 100px;
  margin: auto;
  -webkit-animation: zoom 1s infinite alternate;
          animation: zoom 1s infinite alternate;
}

.loader.hide {
  opacity: 0;
  pointer-events: none;
}

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes zoom {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

/* End Loader */
.offers .owl-carousel div {
  margin: 0 5px;
}

.offers .owl-carousel div:first-child {
  margin-left: 0 !important;
}

.offers .owl-carousel div:last-child {
  margin-right: 0 !important;
}

.offers .owl-carousel div img {
  border-radius: 8px;
  width: 100%;
}


.contact .contactInfo > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

 .contact .contactInfo > div i {
  width: 20px;
  margin-right: 0.8em;
}

.contact .contactInfo > div a {
  color: #000;
  text-decoration: none;
}

.contact .contactInfo > div a:hover {
  color: var(--hover-blue);
}

.contact .contactInfo > div:not(:first-child) {
  margin-top: 1em;
}

.contact .contactInfo .socialIcons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/*date 17 june 2021*/

.osahan-right-navbar a{
  font-weight: bold;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
}

.sidebar .nav-item .nav-link {
  font-size: 20px;
}

.channels-title{
  height: 45px;
}

/* .video-card-body{
  height: 120px;
} */

.channels-title a{
  font-style: 15px;
  text-transform: capitalize;
  color: #00007C;
}

.s20 {
  font-size: 20px;
}
.s16 {
  font-size: 16px;
}
.bold{
  font-weight: bold;
}
.mb-10{
  margin-bottom: 10px;
}
p{
  color: #00007C;
}
