* {
  margin: 0;
  padding: 0;
}

.headerBg {
  background-image: url("images/header-bg.jpg");
  background-size: cover;
  position: relative;
}
.abstract-left {
  position: absolute;
  left: 0;
  top: 0;
}
.abstract-right {
  position: absolute;
  right: 0;
  top: 0;
}
.mainHeader {
  padding-top: 40px;
}

.nav-item {
  padding-inline: 20px !important;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 500;
  font-family: "Poppins", serif;
}
.nav-item:hover > .nav-link {
  color: #e12d87 !important;
}
.nav-item .nav-link {
  color: #ffffff;
}
.star {
  transition: transform 0.2s ease;
}
.navbar-nav:hover span img {
  animation: starRotate 2s linear infinite;
}
@keyframes starRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.drssbTitle {
  font-family: "Ubuntu", serif;
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  padding-top: 50px;
  padding-bottom: 40px;
}
.date {
  margin-bottom: 60px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Poppins", serif;
  color: #f9bd00;
}
.buttonFlex {
  display: flex;
  margin-top: 30px;
  margin-bottom: 50px;
}
.abstractFlex {
  display: flex;
  margin-top: 30px;
}

.regBtn,
.abstractBtn {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}
.regBtn {
  background-color: #f9bd00;
  padding: 15px 30px;
  border-radius: 20px 50px 20px 50px;
  cursor: pointer;
  opacity: 0; /* Start hidden */
  transform: translateX(-100%); /* Start position: off-screen to the left */
  animation: slide-in 1s ease-out forwards;
  animation-delay: 0.5s; /* Optional delay before the animation starts */
}
@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.whiteArrow,
.pinkArrow {
  transition: all ease-in-out 0.3s;
}
.regBtn:hover > .whiteArrow {
  transform: rotate(135deg);
}
.regBtn p {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", serif;
  color: #000000;
  margin-right: 15px;
}
.abstractBtn {
  background-color: #ffffff;
  padding: 15px 30px;
  border-radius: 20px 50px 20px 50px;
  margin-left: 30px;
  cursor: pointer;
  opacity: 0; /* Start hidden */
  transform: translateX(-100%); /* Start position: off-screen to the left */
  animation: slideBtn 1s ease-out forwards;
  animation-delay: 1s; /* Optional delay before the animation starts */
}
.abstractBookCont {
  margin-bottom: 50px !important;
}
.abstractGuideBtn {
  display: flex;
  border: 1px solid #ffffff;
  padding: 15px 30px;
  border-radius: 20px 50px 20px 50px;
  cursor: pointer;
  opacity: 0; /* Start hidden */
  transform: translateX(-100%); /* Start position: off-screen to the left */
  animation: slideBtn 1s ease-out forwards;
  animation-delay: 1s; /* Optional delay before the animation starts */
  width: 370px;
}
@keyframes slideBtn {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.abstractBtn:hover > .pinkArrow {
  transform: rotate(135deg);
}
.abstractBtn p {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", serif;
  color: #000000;
  margin-right: 15px;
}
.abstractGuideBtn:hover > .pinkArrow {
  transform: rotate(135deg);
}
.abstractGuideBtn p {
  margin-bottom: 0px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", serif;
  color: #ffffff;
  margin-right: 15px;
}
.locationIcon {
  animation: upDown 1s ease-in-out;
  animation-delay: 3s;
}
@keyframes upDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.timeIcon {
  animation: timeupDown 1s ease-in-out;
  animation-delay: 4s;
}
@keyframes timeupDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.drssbImg {
  opacity: 0; /* Start invisible */
  transform: scale(1.1); /* Slight zoom */
  animation: hero-fade-in 3s ease-out forwards;
}

@keyframes hero-fade-in {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.venuContainer {
  margin-top: 40px;
}
.venuDetail {
  display: flex;
  align-items: center;
}
.time {
  display: flex;
  align-items: center;
}
.venuDetail p {
  color: #1e1f36;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0px;
  margin-left: 10px;
  font-family: "Ubuntu", serif;
}
.time p {
  color: #1e1f36;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0px;
  margin-left: 10px;
  font-family: "Ubuntu", serif;
}
.address p {
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", serif;
  color: #222222;
  margin-top: 20px;
  line-height: 1.8rem;
}
.timeDetail p {
  font-size: 16px;
  font-weight: 700;
  font-family: "Poppins", serif;
  color: #222222;
  margin-top: 20px;
  line-height: 1.8rem;
}
.heroContainer {
  margin-block: 50px;
}
.kolkata-outline,
.drssbImg,
.tricard {
  width: 100%;
}

.messageContainer h4 {
  font-family: "Ubuntu", serif;
  font-size: 24px;
  font-weight: 700;
  color: #1e1f36;
  margin-bottom: 30px;
}
.messageContainer p {
  font-family: "Poppins", serif;
  font-size: 16px;
  color: #222222;
  line-height: 28px;
}
.categoryMain {
  position: relative;
  background-color: #f3f3f3;
  padding-block: 60px;
  padding-inline: 100px;
}
.kolkataImg {
  position: absolute;
  bottom: 0;
}
.categoryRegBtn {
  width: 60%;
}
.cateRegContainer {
  margin-top: 80px;
  margin-left: 100px;
}
.cateRegContainer p {
  font-family: "Poppins", serif;
  font-size: 16px;
  color: #222222;
}
.cateRegContainer h4 {
  font-family: "Ubuntu", serif;
  font-size: 40px;
  font-weight: 700;
  color: #1e1f36;
  margin-bottom: 20px;
}
.categoryRegBtn p {
  color: #000;
}
.triContainer {
  position: relative;
  z-index: 111;
}
.triText {
  position: absolute;
  top: 38%;
  left: 25%;
  color: #ffffff;
  text-align: center;
}
.triTextTwo {
  position: absolute;
  top: 28%;
  left: 25%;
  color: #ffffff;
  text-align: center;
}
.triText p {
  font-family: "Poppins", serif;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0px;
}
.inr {
  font-family: "Poppins", serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}
.amount {
  display: inline;
  font-family: "Poppins", serif;
  font-size: 45px !important;
  font-weight: 700;
  color: #ffffff;
}
.triTextTwo p {
  font-family: "Poppins", serif;
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 0px;
}
.triTextTwo .pgStudent {
  font-family: "Poppins", serif;
  font-size: 14px;
  font-weight: 300;
  color: #ffffff;
}
.inr sup {
  top: -2.5em;
}
.whereContainer {
  padding-block: 40px;
}
.where {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
  left: -160px;
  position: relative;
}
.where h4 {
  font-family: "Ubuntu", serif;
  font-size: 40px;
  font-weight: 700;
  color: #1e1f36;
  margin-bottom: 0;
  margin-left: 15px;
}
.venuAddress {
  font-family: "Poppins", serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8rem;
  margin-top: 15px;
  margin-left: 20px;
}
.timing {
  font-family: "Poppins", serif;
  font-size: 20px;
  font-weight: 700;
  color: #222222;
  margin-top: 30px;
}
.timingContainer {
  margin-top: 150px;
}
.footerMain {
  background-color: #1e1f36;
  padding-block: 50px;
}
.footerMain h4 {
  text-align: center;
  color: #ffffff;
  font-family: "Ubuntu", serif;
  font-size: 40px;
  font-weight: 700;
}
.footerMain p {
  text-align: center;
  color: #ffffff;
  font-family: "Poppins", serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 30px;
}
.heroImgContainer {
  position: absolute;
  right: 10px;
  bottom: 0;
  /* max-width: 550px; */
  height: auto;
  margin: 0 auto;
}
.endDetails p {
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin-top: 40px;
  padding-left: 8px;
  margin-bottom: 45px;
}
.endDetails {
  border-left: 3px solid #e12d87;
}

.headerMain {
  position: relative;
}
.kolkataMain {
  position: absolute;
  bottom: 0;
}
.heroImgMain {
  margin-bottom: 100px;
  z-index: 111;
}
.speakersContainer {
  padding: 0px 50px;
}
.speakersContainer h4 {
  text-align: center;
  color: #1e1f36;
  font-family: "Ubuntu", serif;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
}
.speakerCard {
  background-color: #f4f4f4;
  border-radius: 16px;
  padding: 20px 0;
  border-bottom: 4px solid #e12d87;
}
.speakerNameCont p {
  background-color: #e12d87;
  padding: 16px 42px 16px 16px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  display: inline-block;
  color: #ffffff;
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 700;
}
.speakerDetails {
  font-family: "Poppins", serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  padding: 30px;
  margin-bottom: 0px;
}
.rowContainer {
  margin-bottom: 40px;
}
a {
  text-decoration: none;
}

.footerMain a {
  color: rgb(175, 255, 255);
}

@media (max-width: 1400px) {
  .nav-item {
    padding-inline: 10px !important;
    color: #000000 !important;
    font-size: 16px;
    font-weight: 700;
    font-family: "Poppins", serif;
  }
  .venue-img,
  .drssbImg {
    width: 80%;
  }
  .speakerDetails {
    font-family: "Poppins", serif;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    padding: 10px;
    margin-bottom: 0px;
  }
  .kolkataMain {
    position: absolute;
    bottom: -65px;
  }
  .speakersContainer h4 {
    text-align: center;
    color: #1e1f36;
    font-family: "Ubuntu", serif;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 40px;
    margin-top: 30px;
  }
  .speakerLak {
    margin-bottom: 15px !important;
  }
  .speakerPravan {
    margin-bottom: 15px !important;
  }
  .pravanDetail {
    margin-bottom: 40px !important;
  }
  .speakerRashima {
    margin-bottom: 25px !important;
  }
}

@media (max-width: 600px) {
  .timingContainer {
    margin-top: 20px;
  }
  .cateRegContainer {
    margin-left: 0px;
    margin-top: 0px;
  }
  .categoryRegBtn {
    width: 65%;
    margin-bottom: 20px;
    /* margin-left: 60px; */
  }
  .venue-img,
  .drssbImg {
    width: 90%;
  }
  .venuImgContainer {
    text-align: center !important;
  }
  .heroContainer {
    margin-top: 20px;
  }
  .drssbTitle {
    font-family: "Ubuntu", serif;
    font-size: 28px;
    font-weight: 700;
    padding-top: 0px;
    padding-bottom: 10px;
  }
  .buttonFlex {
    display: block;
    margin-top: 20px;
    width: 70%;
    margin-bottom: 20px;
  }
  .abstractBookCont {
    margin-bottom: 0px !important;
  }
  /* .abstractBtn {
    border: 1px solid #e12d87;
    border-radius: 50px;
    padding: 15px 18px;
    margin-top: 10px;
    margin-left: 0;
  } */
  .deadlines {
    border: 1px solid #1e1f36;
    padding: 10px 30px;
    margin-block: 10px;
    margin-inline: 10px;
  }
  .mobilemessageContainer {
    position: relative;
    overflow: hidden;
    max-height: 520px;
    transition: max-height 0.5s ease-in-out;
    padding-block: 10px !important;
  }
  .abstractBtn {
    background-color: #ffffff;
    padding: 15px 30px;
    border-radius: 20px 50px 20px 50px;
    margin-left: 0px;
    cursor: pointer;
    opacity: 0;
    transform: translateX(-100%);
    animation: slideBtn 1s ease-out forwards;
    animation-delay: 1s;
    margin-top: 15px;
  }
  .venuDetail {
    display: flex;
  }
  .time {
    display: flex;
    margin-left: 10px;
  }
  .messageContainer h4 {
    font-family: "Ubuntu", serif;
    font-size: 20px;
    font-weight: 700;
    color: #1e1f36;
    margin-bottom: 30px;
  }
  .cateRegContainer p {
    text-align: center;
  }
  .cateRegContainer h4 {
    font-family: "Ubuntu", serif;
    font-size: 28px;
    font-weight: 700;
    color: #1e1f36;
    margin-bottom: 20px;
    text-align: center;
  }
  .location-img {
    width: 55%;
  }
  .where {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    justify-content: center;
    left: -118px;
    position: relative;
}
  .where h4 {
    font-family: "Ubuntu", serif;
    font-size: 28px;
    font-weight: 700;
    color: #1e1f36;
    margin-bottom: 0;
    margin-left: 0px;
  }
  .timing {
    text-align: center;
  }
  .footerMain h4 {
    font-size: 28px;
  }
  .footerMain p {
    text-align: center;
    color: #ffffff;
    font-family: "Poppins", serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 30px;
  }
  .timeDetail p {
    font-size: 18px;
    font-weight: 700;
    font-family: "Poppins", serif;
    color: #222222;
    margin-top: 20px;
    line-height: 1.8rem;
    padding-inline: 15px;
  }
  .messageContainer {
    padding-block: 20px;
  }
  .categoryMain {
    background-color: #f3f3f3;
    padding-block: 20px;
  }
  .venuAddress {
    font-family: "Poppins", serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8rem;
    margin-top: 15px;
    margin-left: 20px;
    /* text-align: center; */
  }
  .kolkataMain {
    position: absolute;
    bottom: 33px;
  }
  .speakersContainer {
    padding: 0px 10px;
  }
  .speakersContainer h4 {
    margin-top: 20px;
    font-size: 24px;
  }
  .speakerImg img{
    width: 70%;
  }
  .speakers p {
    font-family: "Poppins", serif;
    font-size: 16px;
    line-height: 25px;
    margin-top: 12px;
}
  .speakerCard {
    margin-bottom: 30px;
  }
  .rowContainer {
    margin-bottom: 0px;
  }
  span img {
    display: none;
  }
  .triContainer {
    position: relative;
    margin: 0 auto;
    left: 10%;
  }
  .tricard {
    width: 80%;
    margin: 0 auto;
  }
  .triText {
    position: absolute;
    top: 35%;
    left: 18%;
    color: #ffffff;
    text-align: center;
  }
  .triContainer {
    position: relative;
    margin: 0 auto;
    left: 0%;
  }
  .tricard {
    width: 80%;
    margin: 0 auto;
  }
  .triTextTwo {
    position: absolute;
    top: 22%;
    left: 15%;
    color: #ffffff;
    text-align: center;
  }
  .whereContainer {
    padding-block: 20px;
  }
  .amount {
    font-size: 40px !important;
  }
  .logos {
    width: 58%;
  }
  .whiteArrow,
  .pinkArrow {
    transition: all ease-in-out 0.3s;
    display: none;
  }
  .regBtn p {
    margin-right: 0px;
  }
  .abstractFlex {
    display: block;
    margin-top: 20px;
    width: 90%;
  }
  .ociLogo {
    width: 30% !important;
    /* margin-top: 20px; */
  }
  .ociImgCont {
    padding: 10px 10px;
    text-align: center;
  }
  .triImages {
    width: 100%;
  }
  .categoryMain {
    position: relative;
    background-color: #f3f3f3;
    padding-block: 20px;
    padding-inline: 20px;
  }
  .abstract-left img {
    display: none;
  }
  .abstract-right img {
    display: none;
  }
  .navbar-toggler {
    background-color: white;
  }
  .logos {
    width: 80%;
  }
  .mainHeader {
    padding-top: 10px;
    height: 750px;
  }
  .date {
    margin-bottom: 20px;
  }
  .abstractGuideBtn {
    display: flex;
    justify-content: center;
  }
}

.read-more-btn {
  display: inline-block;
  /* margin-top: 10px; */
  padding: 0px 12px;
  /* background-color: #940ddc; */
  color: #940ddc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  font-weight: 700;
  font-family: "Poppins", serif;
}

.read-more-btn:hover {
  color: #e12d87;
}

.read-less-btn {
  display: inline-block;
  /* margin-top: 10px; */
  padding: 0px 0px;
  /* background-color: #940ddc; */
  color: #940ddc;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  font-weight: 700;
  font-family: "Poppins", serif;
}

.firstPara {
  display: inline;
  margin-bottom: 20px !important;
}

.messageContainer {
  padding-block: 50px;
  padding-inline: 100px;
}

.mobilemessageContainer {
  position: relative;
  overflow: hidden;
  max-height: 520px;
  transition: max-height 0.5s ease-in-out;
  padding-block: 50px;
}

.mobilemessageContainer::after {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
  display: block;
}

.mobilemessageContainer.expanded {
  max-height: 1500px;
}

.mobilemessageContainer.expanded::after {
  display: none;
}

.venuAddress a {
  text-decoration: underline;
  color: #000000;
}

.ociImgCont {
  padding: 0px 20px;
}

.ociLogo {
  width: 90px;
}

.deadlines {
  border: 1px solid #1e1f36;
  padding: 10px 30px;
}
.deadlines p {
  font-family: "Ubuntu", serif;
  text-align: center;
  margin-bottom: 0;
  font-size: 20px;
}
.speakers {
  text-align: center;
  
}
.speakers p{
  font-family: "Poppins", serif;
  font-size: 16px;
  line-height: 25px;
  margin-top: 30px;
}
.inHouse {
  margin-top: 40px;
  margin-bottom: 50px;
}
.workshopTitle {
  font-family: "Ubuntu", serif;
}
.workshopDetail {
  font-family: "Poppins", serif;
  margin-top: 30px;
  line-height: 30px;
}
.workshopDetail .point li{
  font-family: "Poppins", serif;
  line-height: 30px;
  font-size: 20px;
}
