@import "https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap";
@font-face {
  font-family: "Gotham Book";
  src: url("../fonts/Gotham-Book.woff2") format("woff2"),
    url("../fonts/Gotham-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham Medium";
  src: url("../fonts/GothamMedium.woff2") format("woff2"),
    url("../fonts/GothamMedium.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --primaryColor: #ff4f1e;
  --secondary: #0c2b7a;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --textColor: #222222;
  --grayColor: #555555;
  --borderColor: #c4c4c4;
  --headingFont: "Gotham Book";
  --headingMedium: "Gotham Medium";
  --fontFamily: "Roboto", sans-serif;
  --fontBold: 700;
  --fontSemiBold: 600;
  --fontMedium: 500;
  --fontRegular: 400;
  --fontLight: 300;
}
.container {
  margin-left: auto;
  margin-right: auto;
  width: 94%;
  max-width: 1750px;
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 480px) {
  .container {
    width: 90%;
  }
}
@media (min-width: 768px) {
  .container {
    width: 740px;
  }
}
@media (min-width: 1000px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1100px) {
  .container {
    width: 1080px;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1260px;
  }
}
@media (min-width: 1540px) {
  .container {
    width: 1570px;
  }
}
@media (min-width: 1800px) {
  .container {
    width: 1750px;
  }
}
body {
  font-family: var(--fontFamily);
  font-weight: var(--fontRegular);
  background-color: var(--whiteColor);
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: var(--textColor);
}
*::-webkit-scrollbar {
  width: 8px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: #f1f1f1;
}
*::-webkit-scrollbar-thumb {
  background-color: var(--textColor);
  border-radius: 10px;
  border: 2px solid var(--whiteColor);
}
*::-webkit-scrollbar-thumb:hover {
  background-color: var(--textColor);
}
.text-center {
  text-align: center;
}
.d-flex {
  display: flex;
}
.d-block {
  display: block;
}
.d-none {
  display: none;
}
.fBold {
  font-weight: var(--fontBold);
}
.fMedium {
  font-weight: var(--fontMedium);
}
.fLight {
  font-weight: var(--fontLight);
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
}
.w-100 {
  width: 100%;
}
*,
::after,
::before {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.associationText {
  font-weight: 500;
  font-size: 20px;
  line-height: 150%;
  color: var(--grayColor);
  font-weight: var(--fontMedium);
  font-family: var(--fontFamily);
}
.headingDark {
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontRegular);
  font-family: var(--headingFont);
}
.headingDark span {
  color: var(--primaryColor);
  background: url(../images/svg_image/line.svg) no-repeat bottom left;
  background-size: contain;
}
.formBox {
  position: absolute;
  top: 200px;
  right: 5%;
  max-width: 350px;
  width: 100%;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #eee;
  overflow: hidden;
  scroll-margin-top: 140px;
}
.formBox .tit {
  font-size: 20px;
  color: #ff4f1e;
  text-align: center;
  font-weight: 600;
  padding: 1rem 1rem 0.5rem 1rem;
}
.headingLight {
  font-size: 48px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontRegular);
  font-family: var(--headingFont);
}
.headingLight span {
  color: var(--primaryColor);
}
.secondaryHeading {
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontRegular);
  font-family: var(--headingFont);
  text-align: center;
  margin-bottom: 30px;
}
.subTitle {
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0.3em;
  color: var(--blackColor);
  font-weight: var(--fontRegular);
  font-family: var(--headingFont);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}
.subTitle span {
  color: var(--primaryColor);
}
.primaryBtn {
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--textColor);
  font-weight: var(--fontSemiBold);
  font-family: var(--fontFamily);
  border: 2px solid var(--primaryColor);
  border-radius: 30px 0 30px 0;
  padding: 18.5px 15px 18.5px 68px;
  text-decoration: none;
  background-image: url(../images/gif/arrow.gif),
    url(../images/svg_image/leaf.svg);
  background-repeat: no-repeat;
  background-size: 26px 26px, 44px 44px;
  background-position: left 17px center, left 8px center;
  transition: all 0.4s ease-in;
  display: inline-block;
}
.primaryBtn:hover {
  background-position: right 17px center, right 8px center;
  padding: 18.5px 68px 18.5px 15px;
}
.slideCustomArrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 30px;
}
.slideCustomArrow .custom-prev {
  background: url(../images/svg/left_Arrow.svg) no-repeat center,
    rgba(0, 0, 0, 0);
  background-size: contain;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 0;
  transition: all ease 0.4s;
  cursor: pointer;
}
.slideCustomArrow .custom-prev:hover {
  background: url(../images/svg/left_Arrow_hover.svg) no-repeat center,
    rgba(0, 0, 0, 0);
  background-size: contain;
}
.slideCustomArrow .custom-next {
  background: url(../images/svg/right_Arrow.svg) no-repeat center,
    rgba(0, 0, 0, 0);
  background-size: contain;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 0;
  transition: all ease 0.4s;
  cursor: pointer;
}
.slideCustomArrow .custom-next:hover {
  background: url(../images/svg/right_Arrow_hover.svg) no-repeat center,
    rgba(0, 0, 0, 0);
  background-size: contain;
}
p {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontLight);
  font-family: var(--fontFamily);
  margin-bottom: 20px;
}
header {
  background-color: #fff;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.0705882353);
  position: relative;
  transition: 0.4s ease all;
}
header .container {
  display: flex;
  align-items: center;
}
header .logo {
  display: inline-block;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 69px;
}
header .logo img {
  width: auto;
  height: 100%;
}
header .primaryBtn {
  margin: 11px 0 11px;
}
header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
header .topMenu {
  list-style: none;
  padding: 0;
  margin: 0 2rem 0 0;
  display: flex;
  gap: 30px;
  align-items: center;
}
header .topMenu li a {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontMedium);
  font-family: var(--fontFamily);
  text-decoration: none;
}
header .topMenu li a.active {
  color: var(--primaryColor);
}
.heroBannerSection {
  background: url(../images/homeBanner.webp) no-repeat left bottom;
  background-size: cover;
}
.heroContainer {
  background: url(../images/homeObject.webp) no-repeat bottom right 140px;
  background-size: 57% auto;
}
.heroLeftSide {
  padding: 77px 0 105px;
  max-width: 38.6%;
}
.heroLeftSide p {
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--grayColor);
  font-weight: var(--fontMedium);
  font-family: var(--fontFamily);
  margin-bottom: 16px;
}
.heroLeftSide h1 {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--primaryColor);
  font-weight: var(--fontMedium);
  font-family: var(--fontFamily);
  margin-top: 16px;
}
.heroLeftSide h1 span {
  font-size: 72px;
  line-height: 82px;
  letter-spacing: 0;
  color: var(--primaryColor);
  font-weight: var(--fontBold);
  font-family: var(--fontFamily);
  text-transform: uppercase;
  text-shadow: 1px 1px 2px hsla(0, 0%, 100%, 0.4),
    -1px -1px 2px hsla(0, 0%, 100%, 0.4), 0px 2px 2px rgba(0, 0, 0, 0.4);
  display: block;
}
.heroLeftSide .quateBlockMain {
  background-color: #fff;
  border: 1px solid #c3c3c3;
  box-shadow: 0px 10px 14px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 50px;
  padding: 10px;
  max-width: calc(100% - 28px);
  margin-top: 20px;
}
.heroLeftSide .quateBlock {
  display: flex;
  border-radius: 50px;
  align-items: center;
  background-color: lab(58.92 64.63 62.17/0.1);
}
.heroLeftSide .quateBlock .quate1 {
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  color: #333;
  font-weight: var(--fontSemiBold);
  font-family: var(--fontFamily);
  padding: 1px 8px 1px 17px;
  width: 40%;
  position: relative;
}
.heroLeftSide .quateBlock .quate1::before {
  content: "";
  position: absolute;
  background-image: url(../images/svg_image/polygon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.heroLeftSide .quateBlock .quate1 span {
  font-size: 22px;
  line-height: 150%;
  letter-spacing: 0;
  color: #333;
  font-weight: var(--fontSemiBold);
  font-family: var(--fontFamily);
  display: inline-block;
  white-space: nowrap;
}
.heroLeftSide .quateBlock .quate2 {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontMedium);
  font-family: var(--fontFamily);
  text-align: center;
  background-color: var(--primaryColor);
  border-radius: 50px;
  padding: 9px 27.5px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}
.heroLeftSide .quateBlock .quate2 span {
  font-weight: var(--fontBold);
  font-size: 23px;
  display: inline-block;
}
.heroLeftSide .dateCalender {
  margin-top: 80px;
  background-color: var(--primaryColor);
  border-radius: 30px 0 30px 0;
  padding: 6px;
  display: inline-block;
}
.heroLeftSide .dateCalender .dateInner {
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 30px 0 30px 0;
  background: url(../images/gif/calender.svg) no-repeat left 14px top 7px,
    url(../images/svg_image/rectangle.svg) no-repeat left -2px top;
  background-size: 54px 54px, auto 100%;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontMedium);
  font-family: var(--fontFamily);
  text-align: center;
  padding: 17px 19px 17px 102px;
}
.heroLeftSide .bannerObject,
.heroLeftSide .primaryMbBottom {
  display: none;
}
.aboutUsSection {
  background: url(../images/aboutUsBanner.webp) no-repeat top right;
  background-size: cover;
  padding: 100px 0 80px;
}
.aboutUsSection h2 span {
  display: inline-block;
}
.aboutUsSection .upperContainer {
  width: 100%;
  display: flex;
  gap: 17px;
  margin-bottom: 43px;
}
.aboutUsSection .upperContainer .upperLeft {
  width: 66.27%;
}
.aboutUsSection .upperContainer .upperLeft h2 {
  margin-bottom: 35px;
}
.aboutUsSection .upperContainer .upperLeft p {
  margin-bottom: 16px;
}
.aboutUsSection .upperContainer .upperLeft h4 {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontMedium);
  font-family: var(--fontFamily);
  margin-bottom: 9px;
}
.aboutUsSection .upperContainer .upperLeft .themeFlexContainer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  border: 1px solid #c9c9c9;
  border-radius: 20px 0 20px 0;
  overflow: hidden;
}
.aboutUsSection .upperContainer .upperLeft .themeFlexContainer > div {
  padding: 20px 10px 20px 18px;
  border-right: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  background-color: var(--whiteColor);
  font-weight: var(--fontRegular);
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
}
.aboutUsSection
  .upperContainer
  .upperLeft
  .themeFlexContainer
  > div:nth-child(4n) {
  border-right: none;
}
.aboutUsSection
  .upperContainer
  .upperLeft
  .themeFlexContainer
  > div:nth-child(n + 5) {
  border-bottom: none;
}
.aboutUsSection
  .upperContainer
  .upperLeft
  .themeFlexContainer
  > div:nth-child(1),
.aboutUsSection
  .upperContainer
  .upperLeft
  .themeFlexContainer
  > div:nth-child(6),
.aboutUsSection
  .upperContainer
  .upperLeft
  .themeFlexContainer
  > div:nth-child(3),
.aboutUsSection
  .upperContainer
  .upperLeft
  .themeFlexContainer
  > div:nth-child(8) {
  background-color: #fffbfa;
}
.aboutUsSection
  .upperContainer
  .upperLeft
  .themeFlexContainer
  > div:nth-child(2),
.aboutUsSection
  .upperContainer
  .upperLeft
  .themeFlexContainer
  > div:nth-child(5),
.aboutUsSection
  .upperContainer
  .upperLeft
  .themeFlexContainer
  > div:nth-child(4),
.aboutUsSection
  .upperContainer
  .upperLeft
  .themeFlexContainer
  > div:nth-child(7) {
  background-color: #f4f9ff;
}
.aboutUsSection .upperContainer .upperRight {
  width: 35.52%;
}
.aboutUsSection .upperContainer .upperRight img {
  width: 100%;
}
.aboutUsSection .lowerContainer .globalInstituteFlex {
  display: flex;
  gap: 19.83px;
  width: 66.39%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.aboutUsSection .lowerContainer .globalInstituteFlex > div {
  flex: 1;
}
.aboutUsSection .lowerContainer .globalInstituteFlex > div img {
  width: 100%;
}
.aboutUsSection .lowerContainer .globalInstituteFlex > div p {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
  text-align: center;
  margin: 12px 0 0;
  color: var(--blackColor);
}
.aboutUsSection .lowerContainer p {
  color: var(--blackColor);
  font-size: 20px;
}
.instituteSection {
  background: url(../images/instituteBanner.webp) no-repeat top right;
  background-size: cover;
  max-height: 800px;
  padding: 100px 0 112px;
  width: 100%;
}
.instituteSection .leftSide {
  width: 49.53%;
}
.instituteSection .leftSide .tabMenu {
  display: flex;
  gap: 10px;
  padding: 10px;
  border: 1px solid #b7b7b7;
  background: hsla(0, 0%, 100%, 0.1019607843);
  backdrop-filter: blur(40px);
  list-style: none;
  border-radius: 40px;
  margin-bottom: 70px;
}
.instituteSection .leftSide .tabMenu li {
  width: calc(50% - 5px);
  padding: 3px 40px;
  background: hsla(0, 0%, 100%, 0.1019607843);
  backdrop-filter: blur(40px);
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
  text-align: center;
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.instituteSection .leftSide .tabMenu li:hover,
.instituteSection .leftSide .tabMenu li.active {
  background-color: var(--whiteColor);
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
}
.instituteSection .leftSide p {
  color: var(--whiteColor);
}
.instituteSection .leftSide ul.featureList {
  display: flex;
  gap: 60px 42px;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 30px;
}
.instituteSection .leftSide ul.featureList li {
  width: calc(50% - 75px);
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
  padding-left: 76px;
  position: relative;
}
.instituteSection .leftSide ul.featureList li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0px;
  width: 60px;
  height: 60px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.instituteSection .leftSide ul.featureList li:nth-child(1)::before {
  background-image: url("../images/svg_image/instituteIcon-1.svg");
}
.instituteSection .leftSide ul.featureList li:nth-child(2)::before {
  background-image: url("../images/svg_image/instituteIcon-2.svg");
}
.instituteSection .leftSide ul.featureList li:nth-child(3)::before {
  background-image: url("../images/svg_image/instituteIcon-3.svg");
}
.instituteSection .leftSide ul.featureList li:nth-child(4)::before {
  background-image: url("../images/svg_image/instituteIcon-4.svg");
}
.participateSection {
  background: url(../images/participateSection.webp) no-repeat top center;
  background-size: cover;
  padding: 100px 0 104px;
}
.participateSection h2 {
  text-align: center;
}
.participateSection h2 span {
  display: inline-block;
}
.participateSection .participateContainer {
  width: 82.79%;
  margin: 30px auto 0;
  background: url(../images/participate.webp) no-repeat top 89px center;
  background-size: 41.29% auto;
}
.participateSection .participateContainer .rowFlex {
  display: flex;
  width: 100%;
  margin-bottom: 56px;
}
.participateSection .participateContainer .rowFlex .column {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontLight);
  font-family: var(--fontFamily);
  text-align: center;
  width: 486px;
}
.participateSection .participateContainer .rowFlex .column:first-child {
  text-align: right;
}
.participateSection .participateContainer .rowFlex .column:last-child {
  text-align: left;
}
.participateSection .participateContainer .rowFlex:first-child {
  justify-content: center;
  margin-bottom: 46px;
}
.participateSection .participateContainer .rowFlex:first-child .column {
  text-align: center;
}
.participateSection .participateContainer .rowFlex.rowAround {
  justify-content: space-around;
}
.participateSection
  .participateContainer
  .rowFlex.rowAround
  .column:first-child {
  margin-right: 15%;
}
.participateSection
  .participateContainer
  .rowFlex.rowAround
  .column:last-child {
  margin-left: 15%;
}
.participateSection .participateContainer .rowFlex.rowBetween {
  justify-content: space-between;
}
.participateSection
  .participateContainer
  .rowFlex.rowBetween
  .column:first-child {
  margin-right: 22%;
}
.participateSection
  .participateContainer
  .rowFlex.rowBetween
  .column:last-child {
  margin-left: 22%;
}
.participateSection .participateContainer .rowFlex.rowBottom {
  justify-content: space-evenly;
}
.participateSection
  .participateContainer
  .rowFlex:nth-child(5n)
  .column:first-child {
  transform: translateX(-40px);
}
.participateSection
  .participateContainer
  .rowFlex:nth-child(5n)
  .column:last-child {
  transform: translateX(40px);
}
.participateSection .participateContainerMb {
  display: none;
}
.participateSection .participateSlider .slide {
  text-align: center;
}
.participateSection .participateSlider .slick-prev,
.participateSection .participateSlider .slick-next {
  display: none !important;
}
.participateSection .imgForSlider {
  width: 266px;
  max-width: 80%;
  margin: 0 auto;
  position: relative;
}
.participateSection .imgForSlider img {
  width: 100%;
}
.participateSection .custom-arrows .custom-prev,
.participateSection .custom-arrows .custom-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  z-index: 999;
}
.participateSection .custom-arrows .custom-prev {
  background: url(../images/svg_image/arrows-2.svg) no-repeat center center;
  background-size: contain;
  right: -55px;
}
.participateSection .custom-arrows .custom-next {
  background: url(../images/svg_image/arrows-1.svg) no-repeat center center;
  background-size: contain;
  left: -55px;
}
.prizesSection {
  background: url(../images/Prizes.webp) no-repeat top center;
  background-size: cover;
  padding: 267px 0 100px;
}
.prizesSection .prizeContainer {
  display: flex;
  gap: 16px;
  width: 83.13%;
  margin: 0 auto;
}
.prizesSection .prizeBlock {
  width: calc(50% - 8px);
  background: url(../images/scale-1.webp) no-repeat bottom center,
    url(../images/confetti.gif) no-repeat center top,
    radial-gradient(50% 50% at 50% 50%, #3363da 0%, #0c2b79 100%);
  background-size: cover;
  border-radius: 30px 0 30px 0;
  padding: 37px 20px 238px;
}
.prizesSection .prizeBlock p {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontRegular);
  font-family: var(--headingFont);
  text-align: center;
  margin-bottom: 39px;
}
.prizesSection .prizeBlock p span {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontMedium);
  font-family: var(--headingMedium);
}
.prizesSection .prizeInner {
  display: flex;
  gap: 47px;
  justify-content: center;
}
.prizesSection .prizeInner span {
  display: block;
  text-align: center;
}
.prizesSection .prizeInner span:first-child {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontBold);
  font-family: var(--fontFamily);
  margin-bottom: 3px;
}
.prizesSection .prizeInner span:last-child {
  font-size: 28px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontBold);
  font-family: var(--fontFamily);
}
.prizesSection .prizeInner .first {
  transform: translateY(56px);
}
.prizesSection .prizeInner .third {
  transform: translateY(110px);
}
.prizesSection p {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontLight);
  font-family: var(--fontFamily);
  margin-bottom: 40px;
}
.prizesSection .primaryBtn {
  margin-top: 40px;
}
.abstractSection {
  padding: 100px 0;
  background-color: var(--whiteColor);
}
.abstractSection .abstractContainer {
  display: flex;
  gap: 16px;
  align-items: center;
}
.abstractBlock {
  width: calc(25% - 12px);
  padding: 50px 20px 10px;
  margin-top: 2.5rem;
  color: var(--blackColor);
  text-align: center;
  border: 1px solid #161f47;
  background-color: #e6e6e6;
  border-radius: 30px 0 30px 0;
  display: flex;
  flex-direction: column;
  justify-content: top;
  height: 280px;
}
.abstractBlock h4 {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
  margin-bottom: 6px;
}
.abstractBlock p {
  font-size: 16px;
  line-height: 170%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontLight);
  font-family: var(--fontFamily);
  text-align: center;
  margin-bottom: 12px;
}
.cstmFlexTable {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 12px;
  overflow: hidden;
}
.cstmFlexTable .cstmFlexRow {
  display: flex;
  border-bottom: 1px solid hsla(0, 0%, 100%, 0.2);
}
.cstmFlexTable .cstmFlexRow:last-child {
  border-bottom: none;
}
.cstmFlexTable .cstmFlexRow:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0);
}
.cstmFlexTable .cstmFlexRow:nth-child(even) {
  background: hsla(0, 0%, 100%, 0.1019607843);
}
.cstmFlexTable .cstmFlexRow .cstmFlexCell {
  flex: 1;
  padding: 19px 20px 19px;
  align-items: center;
  border-right: 1px solid hsla(0, 0%, 100%, 0.2);
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontLight);
  font-family: var(--fontFamily);
}
.cstmFlexTable .cstmFlexRow .cstmFlexCell:first-child {
  white-space: nowrap;
  width: 33.14%;
  min-width: 31.14%;
  max-width: 34.14%;
}
.cstmFlexTable .cstmFlexRow .cstmFlexCell:last-child {
  border-right: none;
}
.cstmFlexTable .cstmFlexRow.cstmHeader {
  background-color: var(--whiteColor);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.cstmFlexTable .cstmFlexRow.cstmHeader .cstmFlexCell {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--secondary);
  font-weight: var(--fontMedium);
  font-family: var(--fontFamily);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  padding: 9px 20px;
}
.cstmFlexTable .cstmFlexRow.cstmHeader .cstmFlexCell:first-child {
  display: flex;
  align-items: center;
}
.deadSection {
  background: radial-gradient(50% 50% at 50% 50%, #3363da 0%, #0c2b79 100%);
  padding: 100px 0;
}
.deadSection h5 {
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontRegular);
  font-family: var(--headingFont);
  margin-bottom: 30px;
}
.deadSection .deadLeft {
  width: 41.1%;
}
.deadSection .deadLeft .cstmFlexTable .cstmFlexCell {
  flex: unset;
}
.deadSection .deadLeft .cstmFlexTable .cstmFlexCell:first-child {
  white-space: nowrap;
  width: 60.19%;
  min-width: 58.19%;
  max-width: 62.19%;
}
.deadSection .deadRight {
  width: 57.96%;
}
.deadSection .container {
  display: flex;
  gap: 16px;
}
.deadSection .bootomText {
  display: flex;
  gap: 30px;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontMedium);
  font-family: var(--fontFamily);
  margin-top: 17px;
}
.deadSection .bootomText ul {
  display: flex;
  flex-grow: 1;
  justify-content: space-between;
}
.deadSection .bootomText ul li {
  width: calc(50% - 16px);
}
.deadSection .smallText {
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontLight);
  font-family: var(--fontFamily);
  margin-top: 10px;
}
.conferenceSection {
  background: url(../images/conferenceImg.webp) no-repeat right bottom;
  background-size: 30.2% auto;
  padding: 100px 0 122px;
}
.conferenceSection .conferenceLeft {
  width: 66.33%;
}
.conferenceSection ul {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 42px;
  margin-top: 30px;
}
.conferenceSection ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 160px;
  max-width: 166px;
}
.conferenceSection ul li .img {
  background-color: var(--whiteColor);
  box-shadow: 0px 14px 46px 0px rgba(0, 0, 0, 0.1490196078);
  border: 1px solid #efecec;
  border-radius: 20px 0 20px 0;
  margin-bottom: 30px;
  padding: 24px;
  max-width: 120px;

}

.conferenceSection ul li .img img {
  height: 72px;
  width: auto;
     transform-origin: center;
  animation: img-wobble 2s ease-in-out infinite;
  will-change: transform;
  backface-visibility: hidden;
}
/* optional: stagger so all images don't wobble in sync */
.conferenceSection ul li:nth-child(odd) .img img{ animation-delay: .2s; }
.conferenceSection ul li:nth-child(3n) .img   img{ animation-delay: .4s; }

@keyframes img-wobble {
  0%   { transform: translate(0, 0) rotate(0deg); }
  20%  { transform: translate(-1px, 1px) rotate(-0.6deg); }
  40%  { transform: translate(1px, -1px) rotate(0.6deg); }
  60%  { transform: translate(-1px, 0.5px) rotate(-0.4deg); }
  80%  { transform: translate(1px, 1px) rotate(0.4deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

/* accessibility: turn off for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .conferenceSection ul li .img img{ animation: none; }
}
.conferenceSection ul li span {
  text-align: center;
  display: block;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
}
.conferenceSection p {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
}
.conferenceSection .mbConfObject {
  display: none;
}
.workshopSection {
  background: url(../images/workshopImg2.webp) no-repeat bottom center;
  background-size: cover;
  padding: 100px 0 100px;
  color: var(--whiteColor);
}
.workshopSection .upperSection,
.workshopSection .lowerSection {
  display: flex;
}
.workshopSection p {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
}
.workshopSection .workShpLeft {
  width: 49.53%;
}
.workshopSection .workShpLeft .headingLight {
  margin-bottom: 20px;
}
.workshopSection .workShpLeft ul {
  max-width: 82.98%;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 40px;
}
.workshopSection .workShpLeft ul li {
  background: linear-gradient(90deg, #3363da 0%, rgba(12, 43, 121, 0) 100%);
  border-radius: 12px 0 0 12px;
  padding: 12px 12px 12px 74px;
  margin-bottom: 24px;
  position: relative;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
}
.workshopSection .workShpLeft ul li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.workshopSection .workShpLeft ul li:nth-child(1)::before {
  background-image: url("../images/svg_image/list-1.svg");
}
.workshopSection .workShpLeft ul li:nth-child(2)::before {
  background-image: url("../images/svg_image/list-2.svg");
}
.workshopSection .workShpLeft ul li:nth-child(3)::before {
  background-image: url("../images/svg_image/list-3.svg");
}
.workshopSection .workShpLeft ul li:nth-child(4)::before {
  background-image: url("../images/svg_image/list-4.svg");
}
.workshopSection .workShpRight {
  width: 41.1%;
  height: 412px;
  margin-left: auto;
  border-radius: 30px 0 30px 0;
  overflow: hidden;
  border: 1px solid hsla(0, 0%, 100%, 0.5);
}
.workshopSection .workLowRight {
  width: 49.53%;
  margin-left: auto;
  margin-top: 245px;
}
.workshopSection .workshopMb {
  display: none;
}
.workshopSection .workshopMb img {
  width: 100%;
}
.workshopSection .designation {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
  margin-bottom: 20px;
}
.workshopSection .description {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontLight);
  font-family: var(--fontFamily);
  margin-bottom: 40px;
}
.workshopSection .socialLink {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 33px;
}
.workshopSection .socialLink li img {
  height: 80px;
  width: auto;
}
.buzzSection {
  background: url(../images/buzzImg.webp) no-repeat top center;
  background-size: 100% 537px;
  padding: 100px 0 0;
  color: var(--blackColor);
  text-align: center;
  position: relative;
}
.buzzSection h2 {
  margin-bottom: 20px;
}
.buzzSection p {
  font-size: 24px;
}
.connectBlock {
  width: 100%;
  margin: 40px auto 78px;
  display: flex;
  gap: 81px;
  justify-content: center;
  align-items: center;
}
.connectBlock p {
  font-size: 40px;
  line-height: 170%;
  letter-spacing: 0;
  color: var(--primaryColor);
  font-weight: var(--fontBold);
  font-family: var(--fontFamily);
  text-transform: uppercase;
  margin-bottom: 0;
  text-align: left;
}
.connectBlock p span {
  font-weight: var(--fontBold);
}
.connectBlock ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
}
.connectBlock ul li img {
  width: 101.48px;
  height: auto;
}
.hashTabBlock {
  background: radial-gradient(50% 50% at 50% 50%, #3363da 0%, #0c2b79 100%);
  width: 49.76%;
  margin: 0 auto;
  padding: 20px;
  border-radius: 51.5px;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontLight);
  font-family: var(--fontFamily);
  display: flex;
  justify-content: center;
  align-items: center;
}
.hashTabBlock span {
  font-size: 42px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontMedium);
  font-family: var(--fontFamily);
  margin-left: 14px;
  display: inline-block;
}
.campusSection {
  background: url(../images/bottomImg.webp) no-repeat top center, #161f47;
  background-size: 100% auto;
  margin-top: -51.5px;
  padding: 131.5px 0 192px;
  color: var(--blackColor);
}
.campusSection h2 {
  margin-bottom: 40px;
}
.campusSection .bottomText {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontLight);
  font-family: var(--fontFamily);
  margin-top: 14px;
  margin-bottom: 0;
  text-align: center;
}
.campusSection .primaryBtn {
  margin: 40px auto 0;
}
.campusContainer {
  display: flex;
  gap: 16px;
}
.campusContainer .campusBlock {
  width: calc(33% - 16px);
  border-top: 1px solid rgba(0, 0, 0, 0.5568627451);
  border-right: 1px solid rgba(0, 0, 0, 0.6039215686);
  border-bottom: none;
  border-left: 1px solid rgba(0, 0, 0, 0.4784313725);
  border-radius: 30px 0 30px 0;
  padding: 25px 20px 25px 20px;
  color: var(--blackColor);
  background-repeat: no-repeat;
  background-position: top 10px right 10px;
  background-color: hsla(0, 0%, 100%, 0.1019607843);
  background-size: 120px 120px;
  backdrop-filter: blur(40px);
}
.campusContainer .campusBlock:nth-child(1) {
  background-image: url("../images/svg_image/bg_svg-1.svg");
}
.campusContainer .campusBlock:nth-child(2) {
  background-image: url("../images/svg_image/bg_svg-2.svg");
}
.campusContainer .campusBlock:nth-child(3) {
  background-image: url("../images/svg_image/bg_svg-3.svg");
}
.campusContainer .campusBlock:nth-child(4) {
  background-image: url("../images/svg_image/bg_svg-4.svg");
}
.campusContainer .campusBlock::before {
  content: "";
  position: absolute;
  height: 50%;
  width: calc(100% + 2px);
  bottom: 0;
  left: -1px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(119, 116, 116, 0.3960784314);
  border-right: 1px solid rgba(233, 231, 231, 0.1098039216);
  border-top: 0;
  border-radius: 0 0 30px 0;
}
.campusContainer .campusBlock::after {
  content: "";
  position: absolute;
  height: 50%;
  width: 50%;
  top: 0;
  left: -1px;
  border-top: 1px solid rgba(253, 250, 250, 0.4745098039);
  border-left: 1px solid rgba(119, 116, 116, 0.3960784314);
  border-right: 1px solid rgba(233, 231, 231, 0.4039215686);
  border-radius: 30px 0 0 0;
}
.campusContainer .campusBlock .title {
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontMedium);
  font-family: var(--headingMedium);
  margin-bottom: 14px;
}
.campusContainer .campusBlock span {
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontRegular);
  font-family: var(--headingFont);
}
.campusContainer .campusBlock ul {
  padding: 0 0 0 20px;
}
.campusContainer .campusBlock ul li {
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0;
  color: var(--blackColor);
  font-weight: var(--fontRegular);
  font-family: var(--headingFont);
  padding: 8px 0;
}
.campusContainer .campusBlock ul li span {
  font-family: var(--headingMedium);
}
.downContainer {
  margin-top: 338px;
}
.bottomLogo {
  display: inline-block;
  margin-bottom: 80px;
}
.bottomLogo img {
  height: 140px;
  width: auto;
}
.queryText {
  text-align: center;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontSemiBold);
  font-family: var(--fontFamily);
  margin-bottom: 20px;
}
.infoContainer {
  display: flex;
  gap: 16px;
}
.infoContainer .infoBlock {
  width: calc(25% - 12px);
  padding: 10px 20px 10px 120px;
  position: relative;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
}
.infoContainer .infoBlock span {
  display: block;
}
.infoContainer .infoBlock::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../images/svg_image/user.svg) no-repeat top left;
  background-size: contain;
  width: 80px;
  height: 80px;
}
footer {
  /* background-color: var(--blackColor); */
  padding: 20px 0 19px;
  text-align: center;
}
footer p {
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0;
  color: var(--whiteColor);
  font-weight: var(--fontRegular);
  font-family: var(--fontFamily);
  margin-bottom: 0;
}
@media (max-width: 1800px) {
  .primaryBtn {
    font-size: 18px;
  }
  .headingDark {
    font-size: 44px;
  }
  .headingLight {
    font-size: 44px;
  }
  .secondaryHeading {
    font-size: 28px;
  }
  .subTitle {
    font-size: 18px;
  }
  p {
    font-size: 16px;
  }
  header .logo {
    height: 65px;
  }
  header .primaryBtn {
    margin: 10px 0 10px;
  }
  .heroLeftSide {
    padding: 70px 0 90px;
    max-width: 39.6%;
  }
  .heroLeftSide p {
    font-size: 30px;
  }
  .heroLeftSide h1 {
    font-size: 22px;
  }
  .heroLeftSide h1 span {
    font-size: 68px;
  }
  .heroLeftSide .quateBlockMain {
    padding: 8px;
    margin-top: 32px;
  }
  .heroLeftSide .quateBlock .quate1 {
    font-size: 18px;
    position: relative;
  }
  .heroLeftSide .quateBlock .quate1 span {
    font-size: 20px;
  }
  .heroLeftSide .quateBlock .quate2 {
    font-size: 18px;
    padding: 8px 25.5px;
  }
  .heroLeftSide .quateBlock .quate2 span {
    font-weight: var(--fontBold);
    font-size: 20px;
    display: inline-block;
  }
  .heroLeftSide .dateCalender {
    margin-top: 90px;
  }
  .heroLeftSide .dateCalender .dateInner {
    font-size: 22px;
  }
  .aboutUsSection {
    padding: 90px 0 90px;
  }
  .aboutUsSection .upperContainer {
    margin-bottom: 38px;
  }
  .aboutUsSection .upperContainer .upperLeft {
    width: 66.27%;
  }
  .aboutUsSection .upperContainer .upperLeft h2 {
    margin-bottom: 30px;
  }
  .aboutUsSection .upperContainer .upperLeft p {
    margin-bottom: 15px;
  }
  .aboutUsSection .upperContainer .upperLeft h4 {
    font-size: 22px;
  }
  .aboutUsSection .upperContainer .upperLeft .themeFlexContainer > div {
    font-size: 16px;
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex {
    display: flex;
    gap: 17.83px;
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex > div p {
    font-size: 16px;
  }
  .aboutUsSection .lowerContainer p {
    font-size: 16px;
  }
  .instituteSection {
    padding: 90px 0 92px;
  }
  .instituteSection .leftSide .tabMenu li {
    font-size: 16px;
  }
  .instituteSection .leftSide p {
    color: var(--whiteColor);
  }
  .instituteSection .leftSide ul.featureList li {
    font-size: 16px;
  }
  .instituteSection .leftSide ul.featureList li::before {
    width: 56px;
    height: 56px;
  }
  .participateSection {
    padding: 90px 0 94px;
  }
  .participateSection .participateContainer {
    margin: 28px auto 0;
  }
  .participateSection .participateContainer .rowFlex .column {
    font-size: 16px;
    width: 460px;
  }
  .participateSection .participateContainer .rowFlex:first-child {
    justify-content: center;
    margin-bottom: 46px;
  }
  .participateSection
    .participateContainer
    .rowFlex:nth-child(5n)
    .column:first-child {
    transform: translateX(-36px);
  }
  .participateSection
    .participateContainer
    .rowFlex:nth-child(5n)
    .column:last-child {
    transform: translateX(36px);
  }
  .prizesSection {
    padding: 247px 0 90px;
  }
  .prizesSection .prizeContainer {
    display: flex;
    gap: 14px;
  }
  .prizesSection .prizeBlock {
    padding: 37px 20px 238px;
  }
  .prizesSection .prizeBlock p {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .prizesSection .prizeBlock p span {
    font-size: 22px;
  }
  .prizesSection .prizeInner {
    display: flex;
    gap: 47px;
  }
  .prizesSection .prizeInner span:first-child {
    font-size: 18px;
  }
  .prizesSection .prizeInner span:last-child {
    font-size: 26px;
  }
  .prizesSection .prizeInner .first {
    transform: translateY(52px);
  }
  .prizesSection .prizeInner .third {
    transform: translateY(108px);
  }
  .prizesSection p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .prizesSection .primaryBtn {
    margin-top: 38px;
  }
  .abstractSection {
    padding: 90px 0;
  }
  .abstractSection .abstractContainer {
    display: flex;
    gap: 14px;
  }
  .abstractBlock {
    padding: 50px 34px 38px;
    height: 300px;
  }
  .abstractBlock h4 {
    font-size: 22px;
  }
  .abstractBlock p {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell {
    font-size: 18px;
  }
  .cstmFlexTable .cstmFlexRow.cstmHeader .cstmFlexCell {
    font-size: 18px;
    padding: 7px 18px;
  }
  .deadSection {
    padding: 90px 0;
  }
  .deadSection h5 {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .deadSection .container {
    display: flex;
    gap: 14px;
  }
  .deadSection .bootomText {
    font-size: 18px;
    margin-top: 15px;
  }
  .deadSection .smallText {
    font-size: 15px;
  }
  .conferenceSection {
    padding: 90px 0 112px;
  }
  .conferenceSection ul {
    display: flex;
    gap: 40px;
    margin-bottom: 36px;
    margin-top: 26px;
  }
  .conferenceSection ul li {
    min-width: 156px;
    max-width: 160px;
  }
  .conferenceSection ul li .img {
    margin-bottom: 28px;
    padding: 22px;
    max-width: 110px;
  }
  .conferenceSection ul li .img img {
    height: 68px;
  }
  .conferenceSection ul li span {
    font-size: 18px;
  }
  .conferenceSection p {
    font-size: 16px;
  }
  .workshopSection {
    padding: 90px 0 90px;
  }
  .workshopSection p {
    font-size: 18px;
  }
  .workshopSection .workShpLeft ul li {
    margin-bottom: 22px;
    font-size: 22px;
  }
  .workshopSection .workShpRight {
    height: 400px;
  }
  .workshopSection .workLowRight {
    margin-top: 225px;
  }
  .workshopSection .designation {
    font-size: 18px;
    margin-bottom: 18px;
  }
  .workshopSection .description {
    font-size: 18px;
    margin-bottom: 36px;
  }
  .workshopSection .socialLink {
    display: flex;
    gap: 30px;
  }
  .workshopSection .socialLink li img {
    height: 72px;
  }
  .buzzSection {
    background-size: 100% 485px;
    padding: 90px 0 0;
  }
  .buzzSection p {
    font-size: 22px;
  }
  .connectBlock {
    margin: 32px auto 70px;
    display: flex;
    gap: 76px;
  }
  .connectBlock p {
    font-size: 36px;
  }
  .connectBlock ul {
    display: flex;
    gap: 36px;
  }
  .connectBlock ul li img {
    width: 90.48px;
    height: auto;
  }
  .hashTabBlock {
    font-size: 22px;
  }
  .hashTabBlock span {
    font-size: 36px;
  }
  .campusSection {
    padding: 98.5px 0 172px;
  }
  .campusSection h2 {
    margin-bottom: 36px;
  }
  .campusSection .bottomText {
    font-size: 22px;
  }
  .campusSection .primaryBtn {
    margin: 28px auto 0;
  }
  .campusContainer {
    display: flex;
    gap: 14px;
  }
  .campusContainer .campusBlock {
    padding: 22px 18px 22px 18px;
    background-size: 100px 100px;
  }
  .campusContainer .campusBlock .title {
    font-size: 20px;
  }
  .campusContainer .campusBlock span {
    font-size: 18px;
  }
  .campusContainer .campusBlock ul li {
    font-size: 18px;
    padding: 6px 0;
  }
  .downContainer {
    margin-top: 318px;
  }
  .bottomLogo {
    margin-bottom: 70px;
  }
  .bottomLogo img {
    height: 130px;
  }
  .queryText {
    font-size: 18px;
  }
  .infoContainer {
    display: flex;
    gap: 14px;
  }
  .infoContainer .infoBlock {
    font-size: 18px;
    padding: 10px 20px 10px 100px;
  }
  .infoContainer .infoBlock::before {
    width: 70px;
    height: 70px;
  }
  footer p {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    color: var(--whiteColor);
    font-weight: var(--fontRegular);
    font-family: var(--fontFamily);
    margin-bottom: 0;
  }
}
@media (max-width: 1540px) {
  .formBox {
    top: 77px;
    right: 5%;
    max-width: 330px;
  }
  .formBox .tit {
    font-size: 20px;
    margin-bottom: -38px;
  }
  .primaryBtn {
    font-size: 16px;
    background-size: 24px 24px, 40px 40px;
    border-radius: 24px 0 24px 0;
    background-position: left 16px center, left 8px center;
  }
  .headingDark {
    font-size: 40px;
  }
  .headingLight {
    font-size: 40px;
  }
  .secondaryHeading {
    font-size: 24px;
  }
  .subTitle {
    font-size: 16px;
  }
  p {
    font-size: 16px;
  }
  header .logo {
    height: 60px;
  }
  header .primaryBtn {
    margin: 10px 0 10px;
  }
  .heroContainer {
    background: url(../images/homeObject.webp) no-repeat bottom right 120px;
    background-size: 57% auto;
  }
  .heroLeftSide {
    padding: 55px 0 80px;
    max-width: 45.6%;
  }
  .heroLeftSide p {
    font-size: 28px;
  }
  .heroLeftSide h1 {
    font-size: 20px;
  }
  .heroLeftSide h1 span {
    font-size: 64px;
  }
  .heroLeftSide .quateBlockMain {
    padding: 8px;
    margin-top: 24px;
  }
  .heroLeftSide .quateBlock .quate1 {
    font-size: 16px;
    position: relative;
  }
  .heroLeftSide .quateBlock .quate1 span {
    font-size: 18px;
  }
  .heroLeftSide .quateBlock .quate2 {
    font-size: 16px;
    padding: 8px 25.5px;
  }
  .heroLeftSide .quateBlock .quate2 span {
    font-weight: var(--fontBold);
    font-size: 18px;
    display: inline-block;
  }
  .heroLeftSide .dateCalender {
    margin-top: 70px;
  }
  .heroLeftSide .dateCalender .dateInner {
    font-size: 22px;
  }
  .aboutUsSection {
    padding: 80px 0 80px;
  }
  .aboutUsSection .upperContainer {
    margin-bottom: 38px;
  }
  .aboutUsSection .upperContainer .upperLeft {
    width: 66.27%;
  }
  .aboutUsSection .upperContainer .upperLeft h2 {
    margin-bottom: 30px;
  }
  .aboutUsSection .upperContainer .upperLeft p {
    margin-bottom: 15px;
  }
  .aboutUsSection .upperContainer .upperLeft h4 {
    font-size: 22px;
  }
  .aboutUsSection .upperContainer .upperLeft .themeFlexContainer > div {
    font-size: 16px;
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex {
    display: flex;
    gap: 17.83px;
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex > div p {
    font-size: 16px;
  }
  .aboutUsSection .lowerContainer p {
    font-size: 18px;
  }
  .instituteSection {
    background: url(../images/instituteBanner.webp) no-repeat center right -200px;
    padding: 80px 0 82px;
  }
  .instituteSection .leftSide .tabMenu {
    margin-bottom: 50px;
  }
  .instituteSection .leftSide .tabMenu li {
    font-size: 16px;
  }
  .instituteSection .leftSide p {
    color: var(--whiteColor);
  }
  .instituteSection .leftSide ul.featureList li {
    width: calc(50% - 55px);
    font-size: 16px;
  }
  .instituteSection .leftSide ul.featureList li::before {
    width: 56px;
    height: 56px;
  }
  .participateSection {
    padding: 80px 0 84px;
  }
  .participateSection .participateContainer {
    width: 100%;
    margin: 24px auto 0;
  }
  .prizesSection {
    padding: 227px 0 80px;
  }
  .prizesSection .prizeContainer {
    display: flex;
    gap: 14px;
  }
  .prizesSection .prizeBlock {
    padding: 37px 20px 238px;
  }
  .prizesSection .prizeBlock p {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .prizesSection .prizeBlock p span {
    font-size: 22px;
  }
  .prizesSection .prizeInner {
    display: flex;
    gap: 47px;
  }
  .prizesSection .prizeInner span:first-child {
    font-size: 18px;
  }
  .prizesSection .prizeInner span:last-child {
    font-size: 26px;
  }
  .prizesSection .prizeInner .first {
    transform: translateY(52px);
  }
  .prizesSection .prizeInner .third {
    transform: translateY(108px);
  }
  .prizesSection p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .prizesSection .primaryBtn {
    margin-top: 38px;
  }
  .abstractSection {
    padding: 80px 0;
  }
  .abstractSection .abstractContainer {
    display: flex;
    gap: 14px;
  }
  .abstractBlock {
    padding: 50px 34px 38px;
    height: 320px;
  }
  .abstractBlock h4 {
    font-size: 20px;
  }
  .abstractBlock p {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell {
    font-size: 16px;
  }
  .cstmFlexTable .cstmFlexRow.cstmHeader .cstmFlexCell {
    font-size: 16px;
    padding: 7px 18px;
  }
  .deadSection {
    padding: 80px 0;
  }
  .deadSection h5 {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .deadSection .container {
    display: flex;
    gap: 14px;
  }
  .deadSection .bootomText {
    font-size: 18px;
    margin-top: 15px;
  }
  .deadSection .smallText {
    font-size: 15px;
  }
  .conferenceSection {
    padding: 80px 0 92px;
  }
  .conferenceSection ul {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
    margin-top: 26px;
  }
  .conferenceSection ul li {
    min-width: 136px;
    max-width: 140px;
  }
  .conferenceSection ul li .img {
    margin-bottom: 24px;
    padding: 22px;
    max-width: 100px;
  }
  .conferenceSection ul li .img img {
    height: 50px;
  }
  .conferenceSection ul li span {
    font-size: 16px;
  }
  .conferenceSection p {
    font-size: 16px;
  }
  .workshopSection {
    padding: 80px 0 80px;
  }
  .workshopSection p {
    font-size: 16px;
  }
  .workshopSection .workShpLeft ul li {
    margin-bottom: 22px;
    font-size: 20px;
  }
  .workshopSection .workShpRight {
    height: 320px;
  }
  .workshopSection .workLowRight {
    margin-top: 205px;
  }
  .workshopSection .designation {
    font-size: 16px;
    margin-bottom: 18px;
  }
  .workshopSection .description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .workshopSection .socialLink {
    display: flex;
    gap: 24px;
  }
  .workshopSection .socialLink li img {
    height: 68px;
  }
  .buzzSection {
    background-size: 100% 425px;
    padding: 90px 0 0;
  }
  .buzzSection p {
    font-size: 20px;
  }
  .connectBlock {
    margin: 24px auto 60px;
    display: flex;
    gap: 70px;
  }
  .connectBlock p {
    font-size: 30px;
  }
  .connectBlock ul {
    display: flex;
    gap: 30px;
  }
  .connectBlock ul li img {
    width: 80.48px;
    height: auto;
  }
  .hashTabBlock {
    font-size: 20px;
  }
  .hashTabBlock span {
    font-size: 30px;
  }
  .campusSection {
    padding: 88.5px 0 122px;
  }
  .campusSection h2 {
    margin-bottom: 36px;
  }
  .campusSection .bottomText {
    font-size: 20px;
  }
  .campusSection .primaryBtn {
    margin: 20px auto 0;
  }
  .campusContainer {
    display: flex;
    gap: 14px;
  }
  .campusContainer .campusBlock {
    padding: 22px 18px 22px 18px;
    background-size: 80px 80px;
  }
  .campusContainer .campusBlock .title {
    font-size: 18px;
  }
  .campusContainer .campusBlock span {
    font-size: 16px;
  }
  .campusContainer .campusBlock ul li {
    font-size: 16px;
    padding: 4px 0;
  }
  .downContainer {
    margin-top: 290px;
  }
  .bottomLogo {
    margin-bottom: 50px;
  }
  .bottomLogo img {
    height: 120px;
  }
  .queryText {
    font-size: 16px;
  }
  .infoContainer {
    display: flex;
    gap: 14px;
  }
  .infoContainer .infoBlock {
    font-size: 16px;
    padding: 10px 20px 10px 80px;
  }
  .infoContainer .infoBlock::before {
    width: 60px;
    height: 60px;
  }
  footer p {
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    color: var(--whiteColor);
    font-weight: var(--fontRegular);
    font-family: var(--fontFamily);
    margin-bottom: 0;
  }
}
@media (max-width: 1280px) {
  header .topMenu {
    gap: 16px;
    margin-right: 20px;
  }
  header .topMenu li a {
    font-size: 16px;
  }
  .associationText {
    font-size: 16px;
  }
  .formBox {
    top: 100px;
    right: 2.5%;
    max-width: 300px;
  }
  .formBox .tit {
    font-size: 18px;
  }
  .primaryBtn {
    font-size: 14px;
    background-size: 20px 20px, 34px 34px;
    border-radius: 22px 0 22px 0;
    padding: 14.5px 15px 14.5px 54px;
    background-position: left 14px center, left 5px center;
  }
  .headingDark {
    font-size: 32px;
  }
  .headingLight {
    font-size: 32px;
  }
  .secondaryHeading {
    font-size: 21px;
  }
  .subTitle {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  header .logo {
    height: 50px;
  }
  header .primaryBtn {
    margin: 8px 0 8px;
  }
  .heroContainer {
    background: url(../images/homeObject.webp) no-repeat bottom right 80px;
    background-size: 57% auto;
  }
  .heroLeftSide {
    padding: 45px 0 60px;
    max-width: 48.6%;
  }
  .heroLeftSide p {
    font-size: 24px;
  }
  .heroLeftSide h1 {
    font-size: 20px;
    margin-top: 24px;
  }
  .heroLeftSide h1 span {
    font-size: 60px;
  }
  .heroLeftSide .quateBlockMain {
    padding: 8px;
    margin-top: 20px;
  }
  .heroLeftSide .quateBlock .quate1 {
    font-size: 14px;
    position: relative;
  }
  .heroLeftSide .quateBlock .quate1 span {
    font-size: 16px;
  }
  .heroLeftSide .quateBlock .quate2 {
    font-size: 14px;
    padding: 8px 18.5px;
  }
  .heroLeftSide .quateBlock .quate2 span {
    font-weight: var(--fontBold);
    font-size: 16px;
    display: inline-block;
  }
  .heroLeftSide .dateCalender {
    margin-top: 50px;
  }
  .heroLeftSide .dateCalender .dateInner {
    font-size: 20px;
    background-size: 48px 48px, auto 100%;
    padding: 15px 19px 15px 92px;
  }
  .aboutUsSection {
    padding: 70px 0 70px;
  }
  .aboutUsSection .upperContainer {
    margin-bottom: 32px;
  }
  .aboutUsSection .upperContainer .upperLeft {
    width: 66.27%;
  }
  .aboutUsSection .upperContainer .upperLeft h2 {
    margin-bottom: 20px;
  }
  .aboutUsSection .upperContainer .upperLeft p {
    margin-bottom: 12px;
  }
  .aboutUsSection .upperContainer .upperLeft h4 {
    font-size: 20px;
  }
  .aboutUsSection .upperContainer .upperLeft .themeFlexContainer > div {
    font-size: 14px;
    padding: 12px 10px 12px 12px;
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex {
    display: flex;
    gap: 17.83px;
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex > div p {
    font-size: 14px;
  }
  .aboutUsSection .lowerContainer p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .instituteSection {
    padding: 0px 0 0px;
    max-width: unset;
  }
  .instituteSection .leftSide {
    background-color: rgba(22, 31, 71, 0.39);
    padding: 60px 0 60px;
  }
  .instituteSection .leftSide .tabMenu {
    margin-bottom: 40px;
  }
  .instituteSection .leftSide .tabMenu li {
    font-size: 14px;
    padding: 3px 30px;
  }
  .instituteSection .leftSide p {
    color: var(--whiteColor);
  }
  .instituteSection .leftSide ul.featureList li {
    width: calc(50% - 25px);
    font-size: 14px;
    padding-left: 60px;
  }
  .instituteSection .leftSide ul.featureList li::before {
    width: 48px;
    height: 48px;
  }
  .participateSection {
    padding: 60px 0 64px;
  }
  .participateSection .participateContainer {
    background-size: 33.29% auto;
    margin: 24px auto 0;
  }
  .participateSection .participateContainer .rowFlex {
    margin-bottom: 50px;
  }
  .participateSection .participateContainer .rowFlex .column {
    font-size: 12px;
    width: 400px;
  }
  .participateSection .participateContainer .rowFlex:first-child {
    justify-content: center;
    margin-bottom: 40px;
  }
  .participateSection
    .participateContainer
    .rowFlex:nth-child(5n)
    .column:first-child {
    transform: translateX(-36px);
  }
  .participateSection
    .participateContainer
    .rowFlex:nth-child(5n)
    .column:last-child {
    transform: translateX(36px);
  }
  .prizesSection {
    padding: 227px 0 80px;
  }
  .prizesSection .prizeContainer {
    display: flex;
    gap: 14px;
  }
  .prizesSection .prizeBlock {
    padding: 28px 20px 180px;
  }
  .prizesSection .prizeBlock p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .prizesSection .prizeBlock p span {
    font-size: 18px;
  }
  .prizesSection .prizeInner {
    display: flex;
    gap: 47px;
  }
  .prizesSection .prizeInner span:first-child {
    font-size: 16px;
  }
  .prizesSection .prizeInner span:last-child {
    font-size: 22px;
  }
  .prizesSection .prizeInner .first {
    transform: translateY(46px);
  }
  .prizesSection .prizeInner .third {
    transform: translateY(90px);
  }
  .prizesSection p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .prizesSection .primaryBtn {
    margin-top: 32px;
  }
  .abstractSection {
    padding: 60px 0;
  }
  .abstractSection .abstractContainer {
    display: flex;
    gap: 10px;
  }
  .abstractBlock {
    padding: 50px 34px 38px;
    height: 280px;
  }
  .abstractBlock h4 {
    font-size: 16px;
  }
  .abstractBlock p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell {
    font-size: 12px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell:first-child {
    white-space: nowrap;
    width: 40.14%;
    min-width: 39.14%;
    max-width: 42.14%;
  }
  .cstmFlexTable .cstmFlexRow.cstmHeader .cstmFlexCell {
    font-size: 12px;
    padding: 7px 16px;
  }
  .deadSection {
    padding: 60px 0;
  }
  .deadSection h5 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .deadSection .deadLeft {
    width: 41.1%;
  }
  .deadSection .deadLeft .cstmFlexTable .cstmFlexCell {
    flex: unset;
  }
  .deadSection .deadLeft .cstmFlexTable .cstmFlexCell:first-child {
    white-space: nowrap;
    width: 60.19%;
    min-width: 58.19%;
    max-width: 62.19%;
  }
  .deadSection .container {
    display: flex;
    gap: 14px;
  }
  .deadSection .bootomText {
    font-size: 14px;
    margin-top: 15px;
  }
  .deadSection .smallText {
    font-size: 12px;
  }
  .conferenceSection {
    padding: 60px 0 72px;
  }
  .conferenceSection ul {
    display: flex;
    gap: 30px;
    margin-bottom: 36px;
    margin-top: 26px;
  }
  .conferenceSection ul li {
    min-width: 116px;
    max-width: 120px;
  }
  .conferenceSection ul li .img {
    margin-bottom: 20px;
    padding: 16px;
  }
  .conferenceSection ul li .img img {
    height: 40px;
  }
  .conferenceSection ul li span {
    font-size: 12px;
  }
  .conferenceSection p {
    font-size: 14px;
  }
  .workshopSection {
    padding: 80px 0 80px;
  }
  .workshopSection p {
    font-size: 14px;
  }
  .workshopSection .workShpLeft ul li {
    margin-bottom: 22px;
    font-size: 18px;
    padding-left: 60px;
  }
  .workshopSection .workShpLeft ul li::before {
    width: 24px;
    height: 24px;
  }
  .workshopSection .workShpRight {
    height: 300px;
  }
  .workshopSection .workLowRight {
    margin-top: 170px;
  }
  .workshopSection .designation {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .workshopSection .description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .workshopSection .socialLink {
    display: flex;
    gap: 20px;
  }
  .workshopSection .socialLink li img {
    height: 54px;
  }
  .buzzSection {
    background-size: 100% 356px;
    padding: 70px 0 0;
  }
  .buzzSection p {
    font-size: 16px;
  }
  .connectBlock {
    margin: 18px auto 40px;
    display: flex;
    gap: 50px;
  }
  .connectBlock p {
    font-size: 28px;
  }
  .connectBlock ul {
    display: flex;
    gap: 24px;
  }
  .connectBlock ul li img {
    width: 64.48px;
    height: auto;
  }
  .hashTabBlock {
    font-size: 18px;
  }
  .hashTabBlock span {
    font-size: 26px;
  }
  .campusSection {
    padding: 68.5px 0 102px;
    margin-top: -40px;
  }
  .campusSection h2 {
    margin-bottom: 24px;
  }
  .campusSection .bottomText {
    font-size: 18px;
  }
  .campusSection .primaryBtn {
    margin: 20px auto 0;
  }
  .campusContainer {
    display: flex;
    gap: 10px;
  }
  .campusContainer .campusBlock {
    padding: 22px 18px 22px 18px;
    background-size: 60px 60px;
  }
  .campusContainer .campusBlock .title {
    font-size: 16px;
  }
  .campusContainer .campusBlock span {
    font-size: 14px;
  }
  .campusContainer .campusBlock ul li {
    font-size: 14px;
    padding: 4px 0;
  }
  .downContainer {
    margin-top: 240px;
  }
  .bottomLogo {
    margin-bottom: 40px;
  }
  .bottomLogo img {
    height: 90px;
  }
  .queryText {
    font-size: 16px;
  }
  .infoContainer {
    display: flex;
    gap: 14px;
  }
  .infoContainer .infoBlock {
    font-size: 14px;
    padding: 10px 20px 10px 70px;
  }
  .infoContainer .infoBlock::before {
    width: 50px;
    height: 50px;
  }
  footer p {
    font-size: 14px;
  }
}
@media (max-width: 1100px) {
  .headingDark {
    font-size: 28px;
  }
  .headingLight {
    font-size: 28px;
  }
  .secondaryHeading {
    font-size: 18px;
  }
  .subTitle {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  header .logo {
    height: 45px;
    gap: 10px;
  }
  header .topMenu li a {
    font-size: 14px;
  }
  header .primaryBtn {
    margin: 8px 0 8px;
  }
  .heroContainer {
    background: url(../images/homeObject.webp) no-repeat bottom right 30px;
    background-size: 57% auto;
  }
  .heroLeftSide {
    padding: 45px 0 60px;
    max-width: 52.6%;
  }
  .heroLeftSide p {
    font-size: 24px;
  }
  .heroLeftSide h1 {
    font-size: 18px;
    margin-top: 20px;
  }
  .heroLeftSide h1 span {
    font-size: 56px;
  }
  .heroLeftSide .quateBlockMain {
    padding: 8px;
    margin-top: 20px;
  }
  .heroLeftSide .quateBlock .quate1 {
    font-size: 14px;
    position: relative;
  }
  .heroLeftSide .quateBlock .quate1 span {
    font-size: 16px;
  }
  .heroLeftSide .quateBlock .quate2 {
    font-size: 14px;
    padding: 8px 18.5px;
  }
  .heroLeftSide .quateBlock .quate2 span {
    font-weight: var(--fontBold);
    font-size: 16px;
    display: inline-block;
  }
  .heroLeftSide .dateCalender {
    margin-top: 40px;
  }
  .heroLeftSide .dateCalender .dateInner {
    font-size: 18px;
    background-size: 48px 48px, auto 100%;
    padding: 15px 19px 15px 92px;
  }
  .aboutUsSection {
    padding: 70px 0 70px;
  }
  .aboutUsSection .upperContainer {
    margin-bottom: 32px;
  }
  .aboutUsSection .upperContainer .upperLeft {
    width: 66.27%;
  }
  .aboutUsSection .upperContainer .upperLeft h2 {
    margin-bottom: 20px;
  }
  .aboutUsSection .upperContainer .upperLeft p {
    margin-bottom: 12px;
  }
  .aboutUsSection .upperContainer .upperLeft h4 {
    font-size: 20px;
  }
  .aboutUsSection .upperContainer .upperLeft .themeFlexContainer > div {
    font-size: 14px;
    padding: 12px 10px 12px 12px;
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex {
    width: 100%;
    display: flex;
    gap: 17.83px;
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex > div p {
    font-size: 14px;
  }
  .aboutUsSection .lowerContainer p {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .instituteSection {
    background: url(../images/instituteBanner.webp) no-repeat center right -100px;
    background-size: cover;
  }
  .instituteSection .leftSide {
    width: 65%;
  }
  .instituteSection .leftSide .tabMenu {
    margin-bottom: 36px;
  }
  .instituteSection .leftSide .tabMenu li {
    font-size: 14px;
    padding: 3px 10px;
  }
  .instituteSection .leftSide p {
    color: var(--whiteColor);
  }
  .instituteSection .leftSide ul.featureList {
    display: flex;
    gap: 20px 22px;
  }
  .instituteSection .leftSide ul.featureList li {
    font-size: 14px;
    padding-left: 42px;
    width: calc(50% - 22px);
  }
  .instituteSection .leftSide ul.featureList li::before {
    width: 36px;
    height: 36px;
  }
  .participateSection {
    padding: 60px 0 64px;
  }
  .participateSection .participateContainer {
    margin: 24px auto 0;
  }
  .participateSection .participateContainer .rowFlex {
    margin-bottom: 50px;
  }
  .participateSection .participateContainer .rowFlex .column {
    font-size: 12px;
    width: 400px;
  }
  .participateSection .participateContainer .rowFlex:first-child {
    justify-content: center;
    margin-bottom: 40px;
  }
  .participateSection
    .participateContainer
    .rowFlex:nth-child(5n)
    .column:first-child {
    transform: translateX(-36px);
  }
  .participateSection
    .participateContainer
    .rowFlex:nth-child(5n)
    .column:last-child {
    transform: translateX(36px);
  }
  .prizesSection {
    padding: 227px 0 80px;
  }
  .prizesSection .prizeContainer {
    display: flex;
    gap: 14px;
  }
  .prizesSection .prizeBlock {
    padding: 28px 20px 180px;
  }
  .prizesSection .prizeBlock p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .prizesSection .prizeBlock p span {
    font-size: 18px;
  }
  .prizesSection .prizeInner {
    display: flex;
    gap: 47px;
  }
  .prizesSection .prizeInner span:first-child {
    font-size: 16px;
  }
  .prizesSection .prizeInner span:last-child {
    font-size: 22px;
  }
  .prizesSection .prizeInner .first {
    transform: translateY(46px);
  }
  .prizesSection .prizeInner .third {
    transform: translateY(90px);
  }
  .prizesSection p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .prizesSection .primaryBtn {
    margin-top: 32px;
  }
  .abstractSection {
    padding: 60px 0;
  }
  .abstractSection .abstractContainer {
    display: flex;
    gap: 10px;
  }
  .abstractBlock {
    padding: 50px 34px 38px;
    height: 280px;
  }
  .abstractBlock h4 {
    font-size: 16px;
  }
  .abstractBlock p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell {
    font-size: 12px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell:first-child {
    white-space: nowrap;
    width: 40.14%;
    min-width: 39.14%;
    max-width: 42.14%;
  }
  .cstmFlexTable .cstmFlexRow.cstmHeader .cstmFlexCell {
    font-size: 12px;
    padding: 7px 16px;
  }
  .deadSection {
    padding: 60px 0;
  }
  .deadSection h5 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .deadSection .deadLeft {
    width: 41.1%;
  }
  .deadSection .deadLeft .cstmFlexTable .cstmFlexCell {
    flex: unset;
  }
  .deadSection .deadLeft .cstmFlexTable .cstmFlexCell:first-child {
    white-space: nowrap;
    width: 60.19%;
    min-width: 58.19%;
    max-width: 62.19%;
  }
  .deadSection .container {
    display: flex;
    gap: 14px;
  }
  .deadSection .bootomText {
    font-size: 14px;
    margin-top: 15px;
  }
  .deadSection .smallText {
    font-size: 12px;
  }
  .conferenceSection {
    padding: 40px 0 52px;
  }
  .conferenceSection ul {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
  .conferenceSection ul li {
    min-width: 96px;
    max-width: 101px;
  }
  .conferenceSection ul li .img {
    margin-bottom: 20px;
    padding: 16px;
  }
  .conferenceSection ul li .img img {
    height: 30px;
  }
  .conferenceSection ul li span {
    font-size: 12px;
  }
  .conferenceSection p {
    font-size: 14px;
  }
  .workshopSection {
    padding: 60px 0 60px;
  }
  .workshopSection p {
    font-size: 14px;
  }
  .workshopSection .workShpLeft ul li {
    margin-bottom: 22px;
    font-size: 18px;
    padding-left: 60px;
  }
  .workshopSection .workShpLeft ul li::before {
    width: 24px;
    height: 24px;
  }
  .workshopSection .workShpRight {
    height: 280px;
  }
  .workshopSection .workLowRight {
    margin-top: 170px;
  }
  .workshopSection .designation {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .workshopSection .description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .workshopSection .socialLink {
    display: flex;
    gap: 20px;
  }
  .workshopSection .socialLink li img {
    height: 54px;
  }
  .buzzSection {
    background-size: 100% 410px;
    padding: 70px 0 0;
  }
  .buzzSection p {
    font-size: 16px;
  }
  .connectBlock {
    margin: 18px auto 40px;
    display: flex;
    gap: 50px;
  }
  .connectBlock p {
    font-size: 28px;
  }
  .connectBlock ul {
    display: flex;
    gap: 24px;
  }
  .connectBlock ul li img {
    width: 64.48px;
    height: auto;
  }
  .hashTabBlock {
    font-size: 18px;
  }
  .hashTabBlock span {
    font-size: 26px;
  }
  .campusSection {
    padding: 68.5px 0 102px;
    margin-top: -40px;
  }
  .campusSection h2 {
    margin-bottom: 24px;
  }
  .campusSection .bottomText {
    font-size: 18px;
  }
  .campusSection .primaryBtn {
    margin: 20px auto 0;
  }
  .campusContainer {
    display: flex;
    gap: 10px;
  }
  .campusContainer .campusBlock {
    padding: 16px 12px 16px 12px;
    background-size: 40px 40px;
  }
  .campusContainer .campusBlock .title {
    font-size: 16px;
  }
  .campusContainer .campusBlock span {
    font-size: 14px;
  }
  .campusContainer .campusBlock ul li {
    font-size: 14px;
    padding: 4px 0;
  }
  .downContainer {
    margin-top: 240px;
  }
  .bottomLogo {
    margin-bottom: 40px;
  }
  .bottomLogo img {
    height: 90px;
  }
  .queryText {
    font-size: 16px;
  }
  .infoContainer {
    display: flex;
    gap: 14px;
  }
  .infoContainer .infoBlock {
    font-size: 14px;
    padding: 10px 20px 10px 70px;
  }
  .infoContainer .infoBlock::before {
    width: 50px;
    height: 50px;
  }
  footer p {
    font-size: 14px;
  }
}
@media (max-width: 1000px) {
  .formBox {
    position: relative;
    top: auto;
    right: auto;
    max-width: 360px;
    margin: 30px auto 30px;
  }
  .formBox .tit {
    font-size: 18px;
  }
  .headingDark {
    font-size: 24px;
  }
  .headingLight {
    font-size: 24px;
  }
  .secondaryHeading {
    font-size: 16px;
  }
  .subTitle {
    font-size: 14px;
  }
  p {
    font-size: 14px;
  }
  header .logo {
    height: 48px;
  }
  header .topMenu {
    display: none;
  }
  .heroContainer {
    background: url(../images/homeObject.webp) no-repeat bottom right -60px;
    background-size: 62% auto;
  }
  .heroLeftSide {
    padding: 25px 0 20px;
    max-width: 68.6%;
  }
  .heroLeftSide p {
    font-size: 14px;
  }
  .heroLeftSide h1 {
    font-size: 18px;
    margin-top: 20px;
  }
  .heroLeftSide h1 span {
    font-size: 36px;
    line-height: 150%;
  }
  .heroLeftSide .quateBlockMain {
    padding: 8px;
    margin-top: 20px;
  }
  .heroLeftSide .quateBlock .quate1 {
    font-size: 12px;
    position: relative;
  }
  .heroLeftSide .quateBlock .quate1 span {
    font-size: 14px;
  }
  .heroLeftSide .quateBlock .quate2 {
    font-size: 12px;
    padding: 8px 18.5px;
  }
  .heroLeftSide .quateBlock .quate2 span {
    font-weight: var(--fontBold);
    font-size: 14px;
    display: inline-block;
  }
  .heroLeftSide .dateCalender {
    margin-top: 20px;
  }
  .heroLeftSide .dateCalender .dateInner {
    font-size: 16px;
    background-size: 48px 48px, auto 100%;
    padding: 15px 19px 15px 92px;
  }
  .aboutUsSection {
    padding: 50px 0 50px;
  }
  .aboutUsSection .upperContainer .upperLeft .themeFlexContainer {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
  }
  .aboutUsSection .upperContainer .upperLeft .themeFlexContainer > div {
    font-size: 14px;
  }
  .aboutUsSection
    .upperContainer
    .upperLeft
    .themeFlexContainer
    > div:nth-child(n + 5) {
    border-bottom: 1px solid #c9c9c9;
  }
  .aboutUsSection
    .upperContainer
    .upperLeft
    .themeFlexContainer
    > div:nth-last-child(-n + 2) {
    border-bottom: none;
  }
  .aboutUsSection
    .upperContainer
    .upperLeft
    .themeFlexContainer
    > div:nth-child(2n) {
    border-right: none;
  }
  .aboutUsSection
    .upperContainer
    .upperLeft
    .themeFlexContainer
    > div:nth-child(1),
  .aboutUsSection
    .upperContainer
    .upperLeft
    .themeFlexContainer
    > div:nth-child(4),
  .aboutUsSection
    .upperContainer
    .upperLeft
    .themeFlexContainer
    > div:nth-child(5),
  .aboutUsSection
    .upperContainer
    .upperLeft
    .themeFlexContainer
    > div:nth-child(8) {
    background-color: #fffbfa;
  }
  .aboutUsSection
    .upperContainer
    .upperLeft
    .themeFlexContainer
    > div:nth-child(2),
  .aboutUsSection
    .upperContainer
    .upperLeft
    .themeFlexContainer
    > div:nth-child(3),
  .aboutUsSection
    .upperContainer
    .upperLeft
    .themeFlexContainer
    > div:nth-child(6),
  .aboutUsSection
    .upperContainer
    .upperLeft
    .themeFlexContainer
    > div:nth-child(7) {
    background-color: #f4f9ff;
  }
  .instituteSection {
    background: url(../images/instituteBanner.webp) no-repeat center right -320px;
    background-size: cover;
  }
  .instituteSection .leftSide {
    padding: 40px 0 42px;
    width: 72%;
  }
  .instituteSection .leftSide .tabMenu {
    margin-bottom: 30px;
  }
  .instituteSection .leftSide .tabMenu li {
    font-size: 14px;
    padding: 3px 5px;
  }
  .instituteSection .leftSide p {
    color: var(--whiteColor);
  }
  .instituteSection .leftSide ul.featureList {
    display: flex;
    gap: 20px 10px;
  }
  .instituteSection .leftSide ul.featureList li {
    font-size: 14px;
    padding-left: 42px;
    width: calc(50% - 12px);
  }
  .instituteSection .leftSide ul.featureList li::before {
    width: 36px;
    height: 36px;
  }
  .participateSection {
    padding: 60px 0 64px;
  }
  .participateSection .participateContainer {
    margin: 24px auto 0;
  }
  .participateSection .participateContainer .rowFlex {
    margin-bottom: 30px;
  }
  .participateSection .participateContainer .rowFlex .column {
    font-size: 12px;
    width: 380px;
  }
  .participateSection .participateContainer .rowFlex:first-child {
    justify-content: center;
    margin-bottom: 20px;
  }
  .participateSection
    .participateContainer
    .rowFlex:nth-child(5n)
    .column:first-child {
    transform: translateX(0px);
  }
  .participateSection
    .participateContainer
    .rowFlex:nth-child(5n)
    .column:last-child {
    transform: translateX(0px);
  }
  .prizesSection {
    padding: 227px 0 80px;
  }
  .prizesSection .prizeContainer {
    width: 100%;
    display: flex;
    gap: 14px;
  }
  .prizesSection .prizeBlock {
    padding: 28px 20px 180px;
  }
  .prizesSection .prizeBlock p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .prizesSection .prizeBlock p span {
    font-size: 18px;
  }
  .prizesSection .prizeInner {
    display: flex;
    gap: 47px;
  }
  .prizesSection .prizeInner span:first-child {
    font-size: 16px;
  }
  .prizesSection .prizeInner span:last-child {
    font-size: 22px;
  }
  .prizesSection .prizeInner .first {
    transform: translateY(46px);
  }
  .prizesSection .prizeInner .third {
    transform: translateY(90px);
  }
  .prizesSection p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .prizesSection .primaryBtn {
    margin-top: 32px;
  }
  .abstractSection {
    padding: 60px 0;
  }
  .abstractSection .abstractContainer {
    display: unset;
  }
  .abstractSection .abstractContainer .slick-slide {
    padding-right: 1rem;
  }
  .abstractBlock {
    padding: 30px 34px 38px;
    height: 280px;
    display: flex !important;
    align-items: center;
  }
  .abstractBlock h4 {
    font-size: 16px;
  }
  .abstractBlock p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell {
    font-size: 12px;
    padding: 14px 10px 14px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell:first-child {
    white-space: nowrap;
    width: 40.14%;
    min-width: 39.14%;
    max-width: 42.14%;
  }
  .cstmFlexTable .cstmFlexRow.cstmHeader .cstmFlexCell {
    font-size: 12px;
    padding: 7px 16px;
  }
  .deadSection {
    padding: 60px 0;
  }
  .deadSection h5 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .deadSection .deadLeft {
    width: 41.1%;
  }
  .deadSection .deadLeft .cstmFlexTable .cstmFlexCell {
    flex: unset;
  }
  .deadSection .deadLeft .cstmFlexTable .cstmFlexCell:first-child {
    white-space: nowrap;
    width: 60.19%;
    min-width: 58.19%;
    max-width: 62.19%;
  }
  .deadSection .container {
    display: flex;
    gap: 14px;
  }
  .deadSection .bootomText {
    font-size: 14px;
    margin-top: 15px;
  }
  .deadSection .smallText {
    font-size: 12px;
  }
  .conferenceSection {
    padding: 40px 0 52px;
  }
  .conferenceSection ul {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
  .conferenceSection ul li {
    min-width: 96px;
    max-width: 101px;
  }
  .conferenceSection ul li .img {
    margin-bottom: 20px;
    padding: 16px;
  }
  .conferenceSection ul li .img img {
    height: 30px;
  }
  .conferenceSection ul li span {
    font-size: 12px;
  }
  .conferenceSection p {
    font-size: 14px;
  }
  .workshopSection {
    padding: 60px 0 60px;
  }
  .workshopSection p {
    font-size: 14px;
  }
  .workshopSection .workShpLeft ul li {
    margin-bottom: 15px;
    font-size: 14px;
    padding-left: 60px;
  }
  .workshopSection .workShpLeft ul li::before {
    width: 24px;
    height: 24px;
  }
  .workshopSection .workShpRight {
    height: 240px;
  }
  .workshopSection .workLowRight {
    margin-top: 100px;
  }
  .workshopSection .designation {
    font-size: 14px;
    margin-bottom: 14px;
  }
  .workshopSection .description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .workshopSection .socialLink {
    display: flex;
    gap: 20px;
  }
  .workshopSection .socialLink li img {
    height: 54px;
  }
  .buzzSection {
    background-size: 100% 375px;
    padding: 70px 0 0;
  }
  .buzzSection p {
    font-size: 16px;
  }
  .connectBlock {
    margin: 14px auto 30px;
    display: flex;
    gap: 50px;
  }
  .connectBlock p {
    font-size: 28px;
  }
  .connectBlock ul {
    display: flex;
    gap: 24px;
  }
  .connectBlock ul li img {
    width: 64.48px;
    height: auto;
  }
  .hashTabBlock {
    font-size: 18px;
    width: 58.76%;
  }
  .hashTabBlock span {
    font-size: 26px;
  }
  .campusSection {
    background: url(../images/bottomImgMb.webp) no-repeat top center, #161f47;
    background-size: 100% 700px;
    padding: 68.5px 0 102px;
    margin-top: -40px;
  }
  .campusSection h2 {
    margin-bottom: 24px;
  }
  .campusSection .bottomText {
    font-size: 18px;
  }
  .campusSection .primaryBtn {
    margin: 20px auto 0;
  }
  .campusContainer {
    display: flex;
    gap: 10px;
  }
  .campusContainer .slick-slide {
    padding: 0 1rem;
  }
  .campusContainer .campusBlock {
    padding: 16px 12px 16px 12px;
    background-size: 40px 40px;
  }
  .campusContainer .campusBlock .title {
    font-size: 16px;
  }
  .campusContainer .campusBlock span {
    font-size: 14px;
  }
  .campusContainer .campusBlock ul li {
    font-size: 14px;
    padding: 4px 0;
  }
  .downContainer {
    margin-top: 240px;
  }
  .bottomLogo {
    margin-bottom: 40px;
  }
  .bottomLogo img {
    height: 90px;
  }
  .queryText {
    font-size: 16px;
  }
  .infoContainer {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .infoContainer .infoBlock {
    width: calc(50% - 14px);
    font-size: 14px;
    padding: 10px 20px 10px 70px;
  }
  .infoContainer .infoBlock::before {
    width: 50px;
    height: 50px;
  }
  footer p {
    font-size: 14px;
  }
}
@media screen and (max-width: 990px) {
  .associationText {
    font-size: 14px;
    width: 60%;
  }
}
@media (max-width: 768px) {
  .headingDark {
    font-size: 28px;
  }
  .associationText {
    width: 100%;
    text-align: center;
  }
  .headingLight {
    font-size: 28px;
  }
  .secondaryHeading {
    font-size: 20px;
  }
  .subTitle {
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0.3em;
    color: var(--blackColor);
    font-weight: var(--fontRegular);
    font-family: var(--headingFont);
    margin-bottom: 8px;
  }
  p {
    font-size: 14px;
  }
  header .container {
    justify-content: center;
  }
  header .logo {
    height: 64px;
    margin: 7px 0px 8px;
    margin-right: unset;
  }
  header .primaryBtn {
    display: none;
  }
  .heroBannerSection {
    background: url(../images/homeBannerMb.webp) no-repeat center right;
    background-size: cover;
    position: relative;
  }
  .heroContainer {
    background: none;
  }
  .heroLeftSide {
    padding: 14px 0 0;
    max-width: 100%;
    text-align: center;
  }
  .heroLeftSide p {
    font-size: 16px;
    text-align: center;
  }
  .heroLeftSide h1 {
    font-size: 20px;
    margin-top: 12px;
    text-align: center;
  }
  .heroLeftSide h1 span {
    font-size: 42px;
  }
  .heroLeftSide .quateBlockMain {
    padding: 0px;
    margin-top: 12px;
    border: none;
    margin: 20px auto 0;
    background-color: unset;
    box-shadow: unset;
    max-width: 100%;
  }
  .heroLeftSide .quateBlock {
    flex-direction: column;
    background-color: unset;
  }
  .heroLeftSide .quateBlock .quate1 {
    font-size: 14px;
    position: relative;
    width: auto;
    background-color: rgba(255, 79, 30, 0.1);
    border-radius: 20px 20px 0 0;
    padding: 10px 30px 8px 30px;
    border: 1px solid #c3c3c3;
    border-bottom: 0;
  }
  .heroLeftSide .quateBlock .quate1 span {
    font-size: 14px;
  }
  .heroLeftSide .quateBlock .quate1::before {
    display: none;
  }
  .heroLeftSide .quateBlock .quate2 {
    font-size: 14px;
    padding: 8px 10.5px;
    width: 100%;
  }
  .heroLeftSide .quateBlock .quate2 span {
    font-weight: var(--fontBold);
    font-size: 18px;
    display: block;
  }
  .heroLeftSide .dateCalender {
    margin-top: 12px;
    margin-bottom: 8px;
    padding: 3px;
    border-radius: 16.87px 0 16.87px 0;
  }
  .heroLeftSide .dateCalender .dateInner {
    font-size: 16px;
    background: url(../images/gif/calender.gif) no-repeat left 11.25px top
        7.31px,
      url(../images/svg_image/rectangle_mb.svg) no-repeat left -2px top;
    background-size: 30.37px 30.37px, 54px 100%;
    padding: 8.49px 19px 8.64px 64px;
    border-radius: 16.87px 0 16.87px 0;
  }
  .heroLeftSide .bannerObject {
    display: block;
    bottom: -4px;
    position: relative;
  }
  .heroLeftSide .bannerObject img {
    width: 100%;
  }
  .heroLeftSide .primaryMbBottom {
    z-index: 99;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--whiteColor);
    font-weight: var(--fontSemiBold);
    font-family: var(--fontFamily);
    background-color: var(--primaryColor);
    border: 2px solid var(--primaryColor);
    border-radius: 0;
    padding: 0px 5px 0px 5px;
    text-decoration: none;
    transition: all 0.4s ease-in;
    display: block;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
  }
  .heroLeftSide .primaryMbBottom span {
    background-image: url(../images/svg_image/arrow.svg),
      url(../images/svg_image/leafMb.svg);
    background-repeat: no-repeat;
    background-size: 26px 26px, 44px 44px;
    background-position: left 17px center, left 8px center;
    display: inline-block;
    padding: 18.5px 20px 18.5px 68px;
  }
  .aboutUsSection {
    background: url(../images/aboutUsBanner_mb.webp) no-repeat right top;
    background-size: cover;
    padding: 50px 0 50px;
  }
  .aboutUsSection .upperContainer {
    flex-direction: column;
  }
  .aboutUsSection .upperContainer .upperLeft,
  .aboutUsSection .upperContainer .upperRight {
    width: 100%;
  }
  .aboutUsSection .upperContainer .upperLeft h4,
  .aboutUsSection .upperContainer .upperRight h4 {
    font-size: 18px;
  }
  .aboutUsSection .upperContainer .upperLeft .themeFlexContainer > div,
  .aboutUsSection .upperContainer .upperRight .themeFlexContainer > div {
    font-size: 14px;
  }
  .aboutUsSection .upperContainer .upperRight {
    margin-top: 54.09px;
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex > div {
    flex: unset;
    width: calc(50% - 8px);
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex > div img {
    width: 100%;
  }
  .aboutUsSection .lowerContainer .globalInstituteFlex > div p {
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
    color: var(--blackColor);
    font-weight: var(--fontRegular);
    font-family: var(--fontFamily);
    text-align: center;
    margin: 12px 0 0;
    color: var(--blackColor);
  }
  .aboutUsSection .lowerContainer p {
    font-size: 14px;
  }
  .instituteSection {
    padding: 20px 0 380px;
    background: url(../images/instituteBannerN.webp) no-repeat center bottom,
      #161f47;
    background-size: auto 369px;
    max-height: unset;
  }
  .instituteSection .leftSide {
    width: 100%;
  }
  .instituteSection .leftSide .tabMenu {
    margin-bottom: 30px;
    padding: 3px;
  }
  .instituteSection .leftSide .tabMenu li {
    font-size: 14px;
    padding: 3px 5px;
  }
  .instituteSection .leftSide p {
    color: var(--whiteColor);
  }
  .instituteSection .leftSide ul.featureList {
    display: flex;
    gap: 20px 10px;
  }
  .instituteSection .leftSide ul.featureList li {
    font-size: 14px;
    padding: 62px 0 0;
    width: calc(50% - 12px);
  }
  .instituteSection .leftSide ul.featureList li::before {
    width: 50px;
    height: 50px;
  }
  .participateSection {
    padding: 60px 0 60.13px;
  }
  .participateSection .headingDark {
    margin-bottom: 20px;
  }
  .participateSection .headingDark span {
    display: block;
    background-image: none;
  }
  .participateSection .participateContainer {
    display: none;
  }
  .participateSection .participateContainerMb {
    display: block;
  }
  .participateSection .participateContainerMb .participateSlider .slide {
    max-width: 80%;
    margin: 0 auto;
  }
  .participateSection .custom-arrows .custom-prev,
  .participateSection .custom-arrows .custom-next {
    width: 32px;
    height: 32px;
  }
  .participateSection .custom-arrows .custom-prev {
    right: -45px;
  }
  .participateSection .custom-arrows .custom-next {
    left: -45px;
  }
  .prizesSection {
    padding: 145px 0 60px;
    background: url(../images/PrizesMb.webp) no-repeat top right;
    background-size: cover;
  }
  .prizesSection .prizeContainer {
    width: 100%;
    display: flex;
    gap: 0px;
    flex-direction: column;
  }
  .prizesSection .prizeBlock {
    width: 100%;
    padding: 28px 20px 230px;
    margin-bottom: 17.11px;
  }
  .prizesSection .prizeBlock p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .prizesSection .prizeBlock p span {
    font-size: 18px;
  }
  .prizesSection .prizeInner {
    display: flex;
    gap: 47px;
  }
  .prizesSection .prizeInner span:first-child {
    font-size: 16px;
  }
  .prizesSection .prizeInner span:last-child {
    font-size: 22px;
  }
  .prizesSection .prizeInner .first {
    transform: translateY(46px);
  }
  .prizesSection .prizeInner .third {
    transform: translateY(90px);
  }
  .prizesSection p {
    font-size: 16px;
    margin-bottom: 15px;
  }
  .prizesSection .primaryBtn {
    margin-top: 10px;
  }
  .abstractSection {
    padding: 60px 0;
  }
  .abstractSection .abstractContainer {
    display: unset;
  }
  .abstractBlock {
    padding: 50px 34px 38px;
    height: 250px;
    display: flex !important;
    align-items: center;
  }
  .abstractBlock h4 {
    font-size: 16px;
  }
  .abstractBlock p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell {
    font-size: 12px;
    padding: 14px 10px 14px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell:first-child {
    white-space: nowrap;
    width: 40.14%;
    min-width: 39.14%;
    max-width: 42.14%;
  }
  .cstmFlexTable .cstmFlexRow.cstmHeader .cstmFlexCell {
    font-size: 12px;
    padding: 7px 16px;
  }
  .deadSection {
    padding: 60px 0;
  }
  .deadSection h5 {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .deadSection .deadLeft {
    width: 100%;
  }
  .deadSection .deadLeft .cstmFlexTable .cstmFlexCell {
    flex: unset;
  }
  .deadSection .deadLeft .cstmFlexTable .cstmFlexCell:first-child {
    white-space: nowrap;
    width: 60.19%;
    min-width: 58.19%;
    max-width: 62.19%;
  }
  .deadSection .deadRight {
    width: 100%;
    overflow: auto;
  }
  .deadSection .deadRight .cstmFlexTable {
    width: 800px;
  }
  .deadSection .container {
    display: flex;
    gap: 14px;
    flex-direction: column;
  }
  .deadSection .bootomText {
    font-size: 14px;
    margin-top: 15px;
  }
  .deadSection .smallText {
    font-size: 12px;
  }
  .conferenceSection {
    background: url(../images/conferenceImgMbBac.webp) no-repeat center bottom;
    background-size: cover;
    padding: 60px 0 0;
  }
  .conferenceSection .conferenceLeft {
    width: 100%;
  }
  .conferenceSection .subTitle {
    font-size: 14px;
    line-height: 170%;
    letter-spacing: 0.3em;
    color: var(--blackColor);
    font-weight: var(--fontRegular);
    font-family: var(--headingFont);
    display: block;
    text-align: center;
    width: 70%;
    margin: 0 auto 20px;
  }
  .conferenceSection h2 {
    text-align: center;
  }
  .conferenceSection ul {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .conferenceSection ul li {
    min-width: unset;
    max-width: unset;
    width: calc(33% - 10px);
  }
  .conferenceSection ul li .img {
    margin-bottom: 20px;
    padding: 12px;
  }
  .conferenceSection ul li .img img {
    height: 36px;
  }
  .conferenceSection ul li span {
    font-size: 14px;
  }
  .conferenceSection p {
    font-size: 14px;
  }
  .conferenceSection .mbConfObject {
    display: block;
    margin-top: 24px;
  }
  .conferenceSection .mbConfObject img {
    width: 100%;
  }
  .workshopSection {
    background: #161f47;
    padding: 60px 0 0%;
  }
  .workshopSection p {
    font-size: 14px;
  }
  .workshopSection .upperSection,
  .workshopSection .lowerSection {
    display: flex;
    flex-direction: column;
  }
  .workshopSection .workShpLeft {
    width: 100%;
  }
  .workshopSection .workShpLeft ul li {
    margin-bottom: 15px;
    font-size: 14px;
    padding-left: 60px;
  }
  .workshopSection .workShpLeft ul li::before {
    width: 24px;
    height: 24px;
  }
  .workshopSection .workShpRight {
    width: 100%;
    height: 230px;
  }
  .workshopSection .workLowRight {
    width: 100%;
    margin-top: 31.5px;
  }
  .workshopSection .headingLight {
    margin-bottom: 20px;
  }
  .workshopSection .designation {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .workshopSection .description {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .workshopSection .socialLink {
    display: flex;
    gap: 20px;
  }
  .workshopSection .socialLink li img {
    height: 54px;
  }
  .workshopSection .workshopMb {
    display: block;
  }
  .buzzSection {
    background-size: 100% 430px;
    padding: 60px 0 0;
  }
  .buzzSection p {
    font-size: 16px;
  }
  .connectBlock {
    margin: 14px auto 30px;
    display: flex;
    gap: 0px;
    flex-direction: column;
  }
  .connectBlock p {
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0;
    color: var(--textColor);
    font-weight: var(--fontLight);
    font-family: var(--fontFamily);
    text-transform: unset;
    margin-bottom: 20px;
    text-align: center;
  }
  .connectBlock p span {
    font-weight: var(--fontLight);
    display: unset;
  }
  .connectBlock ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 33.5px;
  }
  .connectBlock ul li img {
    width: 60px;
    height: auto;
  }
  .hashTabBlock {
    font-size: 14px;
    width: 100%;
  }
  .hashTabBlock span {
    font-size: 20px;
  }
  .campusSection {
    background: url(../images/bottomImgMb.webp) no-repeat top center, #161f47;
    background-size: 100% 800px;
    padding: 100px 0 102px;
    margin-top: -40px;
  }
  .campusSection h2 {
    text-align: left;
    max-width: 60%;
    margin-bottom: 24px;
  }
  .campusSection .bottomText {
    font-size: 18px;
  }
  .campusSection .primaryBtn {
    margin: 20px auto 0;
  }
  .campusContainer {
    display: flex;
    gap: 10px;
  }
  .campusContainer .campusBlock {
    padding: 16px 12px 16px 12px;
    background-size: 40px 40px;
  }
  .campusContainer .campusBlock .title {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .campusContainer .campusBlock span {
    font-size: 14px;
  }
  .campusContainer .campusBlock ul li {
    font-size: 14px;
    padding: 4px 0;
  }
  .downContainer {
    margin-top: 240px;
  }
  .bottomLogo {
    margin-bottom: 40px;
  }
  .bottomLogo img {
    height: 90px;
  }
  .queryText {
    font-size: 16px;
  }
  footer {
    margin-bottom: 50px;
  }
  footer p {
    font-size: 14px;
  }
}
@media screen and (max-width: 600px) {
  header .logo {
    height: 50px;
  }
}
@media (max-width: 480px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  .headingDark {
    font-size: 24px;
  }
  .headingLight {
    font-size: 24px;
  }
  .secondaryHeading {
    font-size: 16px;
  }
  .primaryBtn {
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: var(--textColor);
    font-weight: var(--fontSemiBold);
    font-family: var(--fontFamily);
    border: 2px solid var(--primaryColor);
    border-radius: 22px 0 22px 0;
    padding: 14px 34.1px 14px 68.9px;
    text-decoration: none;
    background-image: url(../images/gif/arrow.gif),
      url(../images/svg_image/leaf.svg);
    background-repeat: no-repeat;
    background-size: 26px 26px, 32px 32px;
    background-position: left 28.17px center, left 25.17px center;
    transition: all 0.4s ease-in;
    display: inline-block;
  }
  .primaryBtn:hover {
    background-position: right 28.17px center, right 25.17px center;
    padding: 14px 68.9px 14px 34.1px;
  }
  header .logo {
    height: 40px;
  }
  .instituteSection {
    background: url(../images/instituteBannerN.webp) no-repeat center bottom,
      #161f47;
    background-size: auto 369px;
  }
  .instituteSection .leftSide {
    background-color: rgba(0, 0, 0, 0);
  }
  .instituteSection .leftSide .tabMenu li {
    font-size: 11px;
    width: 50%;
  }
  .participateSection .participateContainerMb .participateSlider .slide {
    max-width: 100%;
    margin: 0 auto;
  }
  .participateSection .custom-arrows .custom-prev,
  .participateSection .custom-arrows .custom-next {
    width: 32px;
    height: 32px;
  }
  .participateSection .custom-arrows .custom-prev {
    right: -45px;
  }
  .participateSection .custom-arrows .custom-next {
    left: -45px;
  }
  .prizesSection .prizeBlock {
    width: 100%;
    padding: 28px 20px 180px;
    margin-bottom: 17.11px;
  }
  .prizesSection .prizeBlock p {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .prizesSection .prizeBlock p span {
    font-size: 18px;
  }
  .prizesSection .prizeInner {
    display: flex;
    gap: 20px;
  }
  .conferenceSection .conferenceLeft {
    width: 100%;
  }
  .conferenceSection .subTitle {
    width: 85%;
  }
  .conferenceSection h2 {
    text-align: center;
  }
  .conferenceSection ul {
    display: flex;
    gap: 5px;
    margin-bottom: 30px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .conferenceSection ul li {
    min-width: unset;
    max-width: unset;
    width: calc(33% - 10px);
  }
  .conferenceSection ul li .img {
    margin-bottom: 20px;
    padding: 12px;
  }
  .conferenceSection ul li .img img {
    height: 36px;
  }
  .conferenceSection ul li span {
    font-size: 14px;
  }
  .conferenceSection p {
    font-size: 14px;
  }
  .buzzSection {
    background-size: 100% 430px;
  }
  .campusSection {
    background: url(../images/bottomImgMb.webp) no-repeat top center, #161f47;
    background-size: 100% 800px;
    padding: 100px 0 102px;
    margin-top: -40px;
  }
  .campusSection h2 {
    text-align: left;
    max-width: 80%;
    margin-bottom: 24px;
  }
  .campusSection .bottomText {
    font-size: 18px;
  }
  .campusSection .primaryBtn {
    margin: 20px auto 0;
  }
  .infoContainer {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .infoContainer .infoBlock {
    width: calc(50% - 14px);
    font-size: 14px;
    padding: 70px 20px 10px 0px;
    text-align: center;
  }
  .infoContainer .infoBlock::before {
    width: 50px;
    height: 50px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 0px) {
  .instituteSection .leftSide .tabMenu li {
    font-size: 9px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell {
    font-size: 10px;
    padding: 14px 10px 14px;
  }
  .cstmFlexTable .cstmFlexRow .cstmFlexCell:first-child {
    white-space: nowrap;
    width: 30.14%;
    min-width: 29.14%;
    max-width: 32.14%;
  }
  .cstmFlexTable .cstmFlexRow.cstmHeader .cstmFlexCell {
    font-size: 12px;
    padding: 7px 16px;
  }
  .connectBlock ul li img {
    width: 50px;
    height: auto;
  }
  .campusSection h2 {
    max-width: 100%;
  }
} /*# sourceMappingURL=style.min.css.map */
@media screen and (max-width: 400px) {
  header .logo {
    height: 37px;
  }
}
div#tab1default {
    /* display: block ! important; */
}

