@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.9.1/font/bootstrap-icons.css");

:root {
  --theme-clr: #23223e;
  --theme-clr1: #4a48cb;
  --theme-pink: #e84c95;
  --theme-blue: #0070b8;
  --theme-green: #c1fe72;
  --theme-dark: #0b0b29;

  --blue-clr: #014acd;
  --lite-clr: #0085d2;
  --bs-white: #ffffff;
  --grad-red: linear-gradient(45deg, #ff9800, #f52213);
  --grad-orange: linear-gradient(45deg, #f52213, #ff9800);
  --grad-yellow: linear-gradient(45deg, #ffc107, #ff9800);
  --grad-green: linear-gradient(45deg, #4caf50, #cddc39);
  --grad-blue: linear-gradient(45deg, #23223e, #00bcd4);
  --grad-purple: linear-gradient(45deg, #6f42c1, #d63384);
  --grad-site: linear-gradient(45deg, #4a48cb, #23223e);
  --grad-logo: linear-gradient(45deg, #0070b8, #e84c95);
}

.color-blue {
  color: var(--theme-blue);
}

.color-pink {
  color: var(--theme-pink);
}

.color-primary {
  color: var(--theme-clr);
}

.color-secondary {
  color: var(--theme-clr1);
}

.color-green {
  color: var(--theme-green);
}

.text-justify {
  text-align: justify;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* color: var(--bs-gray-600); */
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.2px;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  /* background-image: url(../img/background0.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  background: var(--grad-site);
  min-height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

body::before {
  position: absolute;
  content: '';
  inset: 0;
  z-index: -1;
  background-image: url(../img/body__bg1.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.5;
}

body::after {
  position: absolute;
  content: '';
  inset: 0;
  z-index: -1;
  background: var(--grad-site);
  opacity: 0.9;
}

body video {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  object-fit: cover;
  z-index: -2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.btn {
  border-radius: 0.255rem;
}

.btn.btn-theme1 {
  background: var(--clr3);
  color: #fff;
  font-size: 12px;
}

.btn.btn-theme2 {
  background: var(--theme-dark);
  color: #fff;
  font-size: 12px;
}

.btn.btn-theme-dark {
  background: var(--theme-dark);
  color: #fff;
}

.btn.btn-theme1:hover,
.btn.btn-theme2:hover {
  background: var(--theme-dark);
  color: #fff;
}

.btn.btn-theme-dark:hover {
  background: var(--clr3);
  color: var(--theme-dark);
}

.df-heading {
  color: var(--theme-clr);
}

.df-heading span {
  font-weight: 300;
  color: var(--bs-gray-500);
}

.list-items li {
  display: flex;
  margin-bottom: 0.5rem;
}

.list-items li:last-child {
  margin-bottom: 0;
}

.list-items li span {
  margin-left: 0.5rem;
}

/* NAV */

nav.navbar {
  background: var(--grad-logo);
}

.nav-link {
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  padding: 1rem 1.2rem !important;
}

.active .nav-link {
  background: var(--clr3);
}

.active .nav-link,
.nav-link:hover {
  color: var(--bs-white);
  background: var(--theme-clr);
}

ul.dropdown-menu {
  padding: 0;
  border: none;
  background: var(--theme-clr1);
  overflow: hidden;
  border-radius: 0;
}

.dropdown-item {
  color: #fff;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 11%);
}

/*FOOTER*/

footer {
  /* position: fixed; */
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: rgb(0 0 0 / 90%);
  padding: 0.5rem 0;
  color: rgb(255 255 255 /50%);
  font-size: 14px;
  margin-top: auto;
}

footer a {
  color: var(--bs-light);
}

.footer {
  background-color: var(--theme-dark1);
  color: #fff;
}

.address-list li {
  display: flex;
  color: var(--bs-gray-400);
  padding: 0.5rem 0;
}

.address-list li i {
  margin-right: 0.5rem;
  color: rgb(255 255 255 / 35%);
}

.footer a {
  color: #fff;
}

.quick-links li {
  padding: 0.3rem 0;
}

ul.social-links {
  display: flex;
  gap: 0.255rem;
  margin-bottom: auto;
  justify-content: center;
  flex-wrap: wrap;
}

ul.social-links li a {
  display: block;
  background: rgb(255 255 255 / 9%);
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: #fff;
  transition: 0.3s;
}

ul.social-links li a:hover {
  color: var(--theme-dark1);
  background-color: #fff;
}

.footer iframe {
  border-radius: 0.355rem;
}

/*HEADER*/

.site-title h1 {
  font-size: 32px;
  line-height: 42px;
  color: var(--theme-dark);
}

.site-title h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 400;
  color: var(--theme-dark);
}

ul.date-time li {
  display: flex;
  color: var(--theme-dark);
  align-items: center;
}

ul.date-time li i {
  font-size: 16px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  color: var(--theme-dark);
  background: var(--theme-clr1);
  text-align: center;
  margin-right: 0.8rem;
  border-radius: 0.255rem;
}

.theme {
  color: var(--theme-dark);
  background-color: var(--theme-clr);
  font-size: 22px;
  line-height: 32px;
  padding: 10px 0;
  font-family: cursive;
  border-radius: 0.255rem;
}

/*GIRD-CONTAINER*/

.gird-container {
  display: grid;
  /* grid-template: repeat(3, auto)/ repeat(6, 20%); */
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1rem;
  margin: 1rem 0;
  overflow: hidden;
}

.gird-box {
  padding: 1rem;
  border-radius: 0.255rem;
}

.header {
  grid-column: span 3;
  padding: 0;
  color: var(--theme-dark);
}

.home-speakers {
  padding: 0;
  grid-row: span 3;
  border-radius: 0.255rem;
}

.home-about {
  color: #fff;
  grid-column: span 3;
  background-color: var(--lite-clr);
}

.box-4 {
  color: var(--theme-dark);
  background-image: url(../img/clock-bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: var(--theme-clr1);
}

.contact {
  color: #fff;
  background-color: var(--blue-clr);
  background-color: var(--theme-blue);
  border-radius: 0.5rem;
}

.contact a {
  color: #fff;
}

.box-7 {
  background-color: #fbc531;
}

.box-8 {
  background-color: #fbc531;
}

.box-9 {
  background-color: #fbc531;
}

.home-about h2 {
  font-size: 24px;
  font-weight: 400;
}

.home-about h2 span {
  color: var(--theme-clr1);
  font-weight: 600;
}

.profile-img {
  width: 80px;
  height: 80px;
  overflow: hidden;
  margin: 0 auto 0.5rem;
  border-radius: 50%;
}

.home-speakers {
  text-align: center;
}

.home-speakers li {
  border-bottom: 1px solid var(--bs-gray-200);
  margin-bottom: 1.8rem;
  padding-bottom: 1rem;
}

.home-speakers li:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.home-speakers li h4 {
  font-size: 16px;
  color: var(--theme-clr);
  margin-bottom: 0.255rem;
}

.home-speakers li p {
  font-size: 14px;
  line-height: 22px;
}

.banner {
  grid-column: span 3;
  padding: 0;
}

.banner img {
  border-radius: 1rem;
}

a.registernow {
  display: block;
  font-size: 16px;
  color: #fff;
  background-color: var(--clr3);
  padding: 1rem;
  border-radius: 0.255rem;
}

a.registernow i {
  font-size: 32px;
}

a.registernow b {
  display: block;
  margin-top: 1rem;
}

/*quick-links*/
.quick-links {
  border-radius: 0.255rem;
  overflow: hidden;
  border: 1px solid var(--bs-gray-200);
}

.quick-links li {
  margin: 0;
  padding: 0;
  border: none;
  text-align: left;
}

.quick-links li a {
  display: flex;
  margin: 0;
  color: var(--theme-dark);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  overflow: hidden;
  border-bottom: 1px solid var(--bs-gray-200);
  text-transform: uppercase;
  background: #fff;
  transition: 0.3s;
}

.quick-links li:last-child a {
  border: none;
}

.quick-links li a:hover {
  background-color: var(--bs-gray-100);
}

.quick-links li .icon {
  color: var(--theme-dark);
  width: 60px;
  text-align: center;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  border-right: 1px dashed var(--bs-gray-200);
}

.quick-links li:nth-child(1) a b,
.quick-links li:nth-child(1) a .icon {
  color: #686de0;
}

.quick-links li:nth-child(2) a b,
.quick-links li:nth-child(2) a .icon {
  color: #f0932b;
}

.quick-links li:nth-child(3) a b,
.quick-links li:nth-child(3) a .icon {
  color: #eb4d4b;
}

.quick-links li:nth-child(4) a b,
.quick-links li:nth-child(4) a .icon {
  color: #6ab04c;
}

.quick-links li:nth-child(5) a b,
.quick-links li:nth-child(5) a .icon {
  color: #22a6b3;
}

.quick-links li a p {
  margin: 0;
  padding: 0.8rem 0.8rem;
  color: var(--theme-dark);
}

/*  */

.faculty {
  text-align: center;
  padding: 10px 0;
}

.faculty img {
  width: 100px;
  border-radius: 50%;
  outline: 2px solid var(--lite-clr);
  outline-offset: 3px;
  margin-bottom: 7px;
}

.faculty h5 {
  margin-bottom: 6px;
  color: var(--theme-pink);
}

.list {
  list-style-type: disc;
  margin-left: 1rem;
}

/* inner title */

.inner-title {
  padding: 2rem 0;
  background: #d8d8d8;
  text-align: center;
}

.sc_py {
  padding: 50px 0;
}

.inner_page {
  background: #ffff;
}

/* MESSAGE  */

.message h2 span {
  color: var(--blue-clr);
}

.message {
  text-align: justify;
}

/* BLINK */

.blink {
  animation: blink 1s infinite;
}

@keyframes blink {

  0%,
  50% {
    background-color: var(--theme-pink);
    color: #fff;
  }

  51%,
  100% {
    background-color: var(--theme-blue);
    color: #fff;
  }
}

/* 
.sub_title {
  text-align: center;
  margin: 25px 0;
}

.sub_title h2 {
  margin-bottom: 0;
  display: inline-block;
  background: #d8d8d8;
  padding: 5px 50px;
  border-radius: 50px;
} */

.faculty span {
  background: #2f3ecd;
  padding: 2px 10px;
  border-radius: 10px;
  color: #ffffff;
  margin-top: 10px;
}

.contact1 {
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  text-align: center;
  padding: 20px 0;
}

.contact1 p {
  margin-bottom: 0;
}


/*  */

.title {
  font-size: 4rem;
  font-weight: 800;
  font-family: "Noto Serif JP", serif;
  line-height: 1;
}

.sub_title {
  font-size: 2rem;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  line-height: 1;
}

.welcome {
  padding: 1rem;
  /* background: rgba(255, 255, 255, 0.2); */
  background: rgba(11, 11, 41, 0.5);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  border-radius: 10px;
}

.member-slider-cs .faculty{
  color: #ffffff;
}
.member-slider-cs .faculty h5{
  margin-top: 5px;
}