:root {
  --cream: #FCF5EF;
  --lightOrange: #FEA735;
  --orange: #FE7235;
  --lightblue: #00C3FF;
  --blue: #0077FF;
}

* {
  margin: 0;
  text-decoration: none !important;    
}

body {
  padding-top: 2%;
  height: auto;
}

/* Layout */  
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

:target:before {
  content: "";
  display: block;
  height: 100px;
  margin: -100px 0 0;
}

.navbar p, .dropdown p {
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.dropdown p {
  margin-bottom: 0px;
  color: #0000008C;
}

.nav-item p {
  cursor: pointer;
  animation: all 0.5s ;
  border-radius: 20px;
}

.nav-item p::first-letter {
  text-transform: capitalize;
  border-radius: 20px;
}
.nav-item p:hover {
  color:#0077FF !important;
  /*border: 2px solid #0077FF;*/
}
.nav-link {
  font-size: var(--bs-nav-link-font-size) !important;
  font-weight: var(--bs-nav-link-font-weight) !important;
  color: var(--bs-nav-link-color) !important;
}

.landing-page-container {
  position: absolute;
  z-index: 8000;
  background-color: #0000008a;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-container {
  width: 65vw;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2%;
  background-color: white;
}

.item-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
}

.item-content img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.item-detail {
  padding: 3%;
  display: flex;  
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* width */
.desc-detail::-webkit-scrollbar {
  width: 10px;
}

/* Track */
.desc-detail::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
 
/* Handle */
.desc-detail::-webkit-scrollbar-thumb {
  background: #888; 
}

/* Handle on hover */
.desc-detail::-webkit-scrollbar-thumb:hover {
  background: #555; 
}

section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.btn {
    cursor: pointer;
}
.btnlogin{
  --bs-btn-padding-x: 0.75rem;
  --bs-btn-padding-y: 0.375rem;
  --bs-btn-font-size: 1rem;
  --bs-btn-font-weight: 400;
  --bs-btn-line-height: 1.5;
  --bs-btn-color: #212529;
  --bs-btn-bg: transparent;
  --bs-btn-border-width: 1px;
  --bs-btn-border-color: transparent;
  --bs-btn-border-radius: 0.375rem;
  --bs-btn-hover-border-color: transparent;
  --bs-btn-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),0 1px 1px rgba(0, 0, 0, 0.075);
  --bs-btn-disabled-opacity: 0.65;
  --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(var(--bs-btn-focus-shadow-rgb), .5);
  display: inline-block;
  padding: var(--bs-btn-padding-y) var(--bs-btn-padding-x);
  font-family: var(--bs-btn-font-family);
  font-size: var(--bs-btn-font-size);
  font-weight: var(--bs-btn-font-weight);
  line-height: var(--bs-btn-line-height);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: var(--bs-btn-border-radius);
  background-color: var(--bs-btn-bg);
  transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  cursor: pointer;
  background:#0077FF !important;
  border: 2px solid #0077FF!important;
  color:white !important;
}
.btnlogin:hover{
 color:rgba(0, 0, 0, 0.55) !important;
  background: white !important;
}
.btn:hover{
  background: #0077FF !important;
  color: white !important;
}
/* Container holding the image and the text */
.container {
    position: relative;
    text-align: center;
    color: white;
}

.bg-img {
    display: block;
    width: 100%;
}

/* Zoom */
#zoom {
  transition: transform .2s; /* Animation */
}

#zoom:hover {
  transform: scale(1.1);
}

.item1 {
  grid-area: picture;
}

.item2 {
  grid-area: word;
  margin-left: 350px;
}

.item3 {
  grid-area: button;
  margin-left: 350px;
}

.item2 > div {
  font-family: 'News Cycle', sans-serif;
  font-size: 64px;
  line-height: 1.2;
  color: #0077FF;
  margin-left: 20%;
}

.item3 > button {
  padding: 8px 20px;
  color: #0077FF;
  font-size: 16px;
  background-color: white;
  border: 2px solid #0077FF;
  border-radius: 50px;
  transition: all 0.3s ease 0s;
  margin-left: 20%;
}

.grid-container {
  width: 92%;
  margin-left: 50px;
  display: grid;
  grid-template-areas:
    'picture word'
    'picture button';
  gap: 10px;
  padding: 10px;
}

.grid-container > div {
  background-color: rgba(255, 255, 255, 0.8);
  text-align: left;
  font-size: 30px;
}

.sec1{
  margin: 1rem 0rem 0rem 0rem;
}

.sec1-img {
  width: 50%;
  position: absolute;
}

#fade-down {
  opacity: 0;
  animation: fadeDown 1s; 
  animation-fill-mode: forwards;
}

#fade-right {
  opacity: 0;
  animation: fadeRight 1s; 
  animation-fill-mode: forwards;
}

#fade-left {
  opacity: 0;
  animation: fadeLeft 1s; 
  animation-fill-mode: forwards;
}
.fade-left {
  opacity: 0;
  animation: fadeLeft 1s;
  animation-fill-mode: forwards;
}
@keyframes fadeDown {
	from {
    opacity: 0;
		transform: translate3d(0, -30%, 0);
	}
	to {
    opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeRight {
	from {
    opacity: 0;
		transform: translate3d(-30%, 0, 0);
	}
	to {
    opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes fadeLeft {
	from {
    opacity: 0;
		transform: translate3d(30%, 0, 0);
	}
	to {
    opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

/* Section 2 */
.about {
  background-color: #FCF5EF;
  padding: 2%;
}

.about-title {
  font-family: 'News Cycle', sans-serif;
  font-size: 52px;
  color: #f36122;
  margin-left: 5%;
}

.about-content {
  padding-top: 1%;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  color: #f36122;
  margin-left: 5%;
}

.about-container {
  display: grid;
  grid-template-columns: 50% 50%;
}

.about-container > div {
  font-size: 30px;
  padding: 0 30px;
}

#p-top {
  padding-top: 200px;
}

.yellowBox, .orangeBox {
  font-family: 'Kalam', cursive;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  width: 85%;
  color: white;
}

.yellowBox {
  margin-top: 11%;
  height: 180px;
  background-color: #ffac14;
}

.orangeBox {
  height: 200px;
  background-color: #ff7c24;
}

.yellowBox > p , .orangeBox > p {
  font-size: 22px;
  margin-top: 20px;
  padding: 0% 10%;
}

/* Section 3 */
.sec3 {
  padding: 2%;
}

.sec3-title {
  width: 100%;
  font-family: 'News Cycle', sans-serif;
  font-size: 52px;
  color: #0077FF;
  margin-left: 2.5%;
}

.hl {
  border-bottom: 3px solid #0077FF;
  margin-left: 2.5%;
  width: 100%;
}

.sec3-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
  justify-content: center;
}

.sec3-item {
  color: black;
  text-align: center;
  line-height: 35px;
  border: none;
  background: none;
}

.sec3-item > img {
  padding: 25px;
  width: 250px; 
  height: 250px;
}

/* Mobile Phone */
@media only screen and (max-width: 768px) {
  html, body {
      max-width: 100%;
      overflow-x: hidden;
  }

  .sec1 {
    margin-top: 12%;
    padding-bottom: 0;
  }

  .sec1-img {
    margin-top: 50px;
    width: 65%;
  }

  .grid-container {
    align-items: center;
    justify-content: center;
    margin-left: 0;
  }

  .item2 {
    margin-left: 0;
    margin-top: 140px;
  }

  .item2 > div {
    margin-left: 0;
    font-size: 52px;
    text-align: center;
  }

  .item2 > button {
    margin-left: 0;
    text-align: center;
  }
  .text-justify{
    text-align:justify;
  }
  .grid-container {
    grid-template-areas:
      'picture'
      'picture'
      'word'
      'button';
  }

  .item3 {
    margin-left: 0;
  }

  .about {
    background-color: #FCF5EF;
    padding: 3%;
  }

  .about-container {
    grid-template-columns: auto;
  }

  .about-container > div {
    font-size: 30px;
    padding: 50px 30px;
  }

  .yellowBox, .orangeBox {
    width: 320px;
    margin-top: 10%;
  }
  
  .yellowBox > p , .orangeBox > p {
    text-align: center;
    font-size: 22px;
    margin-top: 20px;
  }

  #p-top {
    padding-top: 0;
  }

  .sec3-title {
    padding: 3%;
  }

  .sec3-container {
    grid-template-columns: auto;
  }

  #section3 grid-item:nth-child(1) {order: 1;}
  #section3 grid-item:nth-child(5) {order: 2;}
  #section3 grid-item:nth-child(2) {order: 3;}
  #section3 grid-item:nth-child(6) {order: 4;}
  #section3 grid-item:nth-child(3) {order: 5;}
  #section3 grid-item:nth-child(7) {order: 6;}
  #section3 grid-item:nth-child(4) {order: 7;}
  #section3 grid-item:nth-child(8) {order: 8;}

  #position {
    font-size: 16px;
    top: -25%;
  }

}

.title {
  color: black;
  padding: 0 5px;
  background: linear-gradient(to bottom, transparent 50%, #ffe1ba 50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}

.page-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap ;
}

.item-container {
  width: calc(100% * (1/5) - 4vw);
  margin: 1rem 2.5vw;
}

.item-container a {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.6s;
}

.item-container a:hover {
  transform: translateY(-10px);
}

.item-container img {
  max-width: 100%;
  height: 75%;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
  flex: 3;
}

.item-container p {
  margin-bottom: 0rem;
  flex: 1;
  font-size: 1.5vw;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: black;
}

.item-section {
  overflow: hidden;
  margin: 0;
}

.item-list-container {
  width: 100%;
  height: 80%;
  padding: 2% 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100vw;
  /*height: 100vh;*/
}

.wrapper {
  display: flex;
  height: 100%;
  padding-bottom: 1%;
}

.cat-container {
  flex: 2;
  display: flex;
  flex-direction: column;
  padding: 2rem 1.2rem;
}

.title {
  text-align: center;
  margin-bottom: 0.4rem;
  color: black;
  padding: 0 5px;
  background: linear-gradient(to bottom, transparent 50%, #ffe1ba 50%);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}

.title::first-letter {
  text-transform: capitalize;
}

.cat-container h4 {
  font-size: 1.8rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}

.cat-list {
  padding: 0;
}

.cat-list li {
  text-align: left;
  cursor: pointer;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1.2rem;
  font-weight: bolder;
  line-height: 2rem;
  padding: 0.2rem 0.5rem;
  list-style: none;
  letter-spacing: 1px;
}

.cat-list a {
  color: black;
}

.cat-list li:hover {
  color: black;
  background-color: #ffeace;
}

.cat-name.active {
  border: #ffeace solid 0.1rem !important;
  background-color: #ffeace;
}

.main-container::-webkit-scrollbar {
  display: none;
}

.main-container {
  width: 100%;
  height: 100%;
  font-family: 'Titillium Web', sans-serif;
  overflow-y: auto !important;
  overflow-x: hidden;
  flex: 8;
  padding: 1rem;
}

.row {
  width: auto;
  padding: 0;
}

.col-4 {
  width: auto;
  max-height: 100% !important;
}

.col-4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.col-8 {
  padding: 2% !important;
  font-family: 'Montserrat', sans-serif;
}

.col-8 h1 {
  font-size: 1.8vw;
  font-weight: 900;
}

.col-8 h2 {
  font-size: 2vw;
  font-weight: 900;
}

.col-8 p {
  font-size: 1.2vw;
  margin-bottom: 1.2rem;
}

.item-list-cat {
  display: flex;
  direction: row;
}

.item-list-cat p {
  padding: 0.5% 1%;
  font-size: 1vw;
  margin-right: 1rem;
  background-color: #ffe1ba;
  border-radius: 15px;
}

.social-media a {
  color: black;
  padding: 0.2rem;
}

.read-more {
  float: right;
  font-size: 1.2vw;
  border-radius: 100px;
  padding: 5px 10px;
  border-color: transparent;
  background-color: #ffe1ba;
  color: black;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

.read-more:hover {
  background-color: white;
  border-color: black;
}

a {
  text-decoration: none;
}

.item4 { 
  grid-area: logo; 
  padding-right: 80px;
}
.item5 { grid-area: about;
}
.item6 { grid-area: join; }

.footer-container {
  font-family: 'Montserrat', sans-serif;
  display: grid;
  grid-template-areas:
  'logo about'
  'logo join';
  padding: 3% 5% 2% 10%;
  background-color:#FCF5EF;
}

.footer-container > div > img {
  width: 150px;
}

.desc-detail {
  overflow-y: auto;
}

/* Mobile Phone */
@media only screen and (max-width: 768px) {
  html, body {
      max-width: 100%;
      overflow-x: hidden;
  }

  .footer-container {
      grid-template-areas:
      'logo'
      'logo'
      'about'
      'join';
  }

  .main-container {
    margin-top: 5px;
  }

  .row {
    flex-direction: column;
    width: none;
    padding: none;
  }

  .cat-list li {
    font-size: 0.8rem;
  }

  .col-4 {
    width: 100% !important;
    padding: 0 0 5% 0;
  }

  .col-8 {
    width: 100% !important;
  }

  .col-8 h1 {
    font-size: 3vw;
  }

  .col-8 p {
    font-size: 2.5vw;
    margin-bottom: 1.2rem;
}

  .wrapper {
    flex-direction: column;
  }

  .mb-3 {
    padding: 5%;
  }

  .read-more {
    font-size: 2.5vw;
  }

  .cat-container {
    overflow-y: hidden;
    overflow-x: auto;
    margin-top: 5px;
  }

  .cat-list li{
    display: inline;
  }
}
/* For WebKit-based browsers (Chrome, Safari) */
.scroll_nav::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
.scroll_nav::-webkit-scrollbar-thumb {
  background-color: #0077ff;
  border-radius: 6px;
}

/* For Firefox */
.scroll_nav {
  scrollbar-width: thin;
}

.scroll_nav::-webkit-scrollbar-thumb {
  background-color: #0077ff;
  border-radius: 6px;
}
.scroll_nav::-webkit-scrollbar-track {
  background-color: aliceblue;
  width:8px;
}

 /************ index Css ************/
.slideshow .slide .text {
  max-width: 500px;
}
.slideshow .slide .image{
  object-fit: contain;
}
.icon h1{
  white-space:nowrap;
  margin:30px;
}
.slideshow .pagination {
  bottom: 20px;
  left: 40px;
}
.slideshow{
  width:103%;
}
.testimonial_section {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /*background: #0055b5;*/
  /*color:white;*/
}
@media screen and (max-width: 780px)  {
  .testimonial_section{
    margin:1rem !important;
  }
}
@media screen and (max-width: 650px) {
  #player{
    width: 400px;
  }
}
/*************** Video Style ***************/
/*************** Video Style ************/

iframe {
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
/* HTML: <div class="loader"></div> */
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 40px;
  aspect-ratio: 1;
  --c: linear-gradient(#000 0 0);
  --r1: radial-gradient(farthest-side at bottom,#000 93%,#0000);
  --r2: radial-gradient(farthest-side at top   ,#000 93%,#0000);
  background:
          var(--c) ,var(--r1),var(--r2),
          var(--c) ,var(--r1),var(--r2),
          var(--c) ,var(--r1),var(--r2);
  background-repeat: no-repeat;
  animation: l2 1s infinite alternate;
  z-index: 2000;
  display: none !important;
}
@keyframes l2 {
  0%,25% {
    background-size: 8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
    background-position: 0 50%,0 calc(50% - 2px),0 calc(50% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
  }
  50% {
    background-size: 8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
    background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(50% - 2px),50% calc(50% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
  }
  75% {
    background-size: 8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px,8px 0,8px 4px,8px 4px;
    background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(50% - 2px),100% calc(50% + 2px);
  }
  95%,100% {
    background-size: 8px 100%,8px 4px, 8px 4px,8px 100%,8px 4px,8px 4px,8px 100%,8px 4px,8px 4px;
    background-position: 0 50%,0 calc(0% - 2px),0 calc(100% + 2px),50% 50%,50% calc(0% - 2px),50% calc(100% + 2px),100% 50%,100% calc(0% - 2px),100% calc(100% + 2px);
  }
}