/* latin-ext */
@font-face {
  font-family: "Poppins-Regular";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins-new/Poppins-Regular.ttf");
}
/* latin-ext */
@font-face {
  font-family: "Poppins-Medium";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/poppins-new/Poppins-Medium.ttf");
}
/* latin-ext */
@font-face {
  font-family: "Poppins-Semibold";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/poppins-new/Poppins-SemiBold.ttf");
}
/* latin-ext */
@font-face {
  font-family: "Poppins-Bold";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/poppins-new/Poppins-Bold.ttf");
}
/* latin-ext */
@font-face {
  font-family: "Poppins-ExtraBold";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/poppins-new/Poppins-ExtraBold.ttf");
}
/* latin-ext */
@font-face {
  font-family: "Poppins-Black";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/poppins-new/Poppins-Black.ttf");
}
/* latin-ext */
@font-face {
  font-family: "Yeseva One";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Yeseva_One/YesevaOne-Regular.ttf");
}
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/material-icon.woff2) format("woff2");
}
body {
  font-family: Poppins-Regular;
  font-size: 14px;
  line-height: normal;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  position: relative;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

figure {
  margin: 0px;
}

h1, h2, h3, h4, h5, h6, ul, li, p {
  margin: 0;
  padding: 0;
}

.poppins-regular {
  font-family: Poppins-Regular;
}

.poppins-medium {
  font-family: Poppins-Medium;
}

.poppins-semibold {
  font-family: Poppins-Semibold;
}

.poppins-bold {
  font-family: Poppins-Bold;
}

.poppins-extraBold {
  font-family: Poppins-ExtraBold;
}

.poppins-black {
  font-family: Poppins-Black;
}

.yeseva-one-regular {
  font-family: Yeseva One;
}

.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 18px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

.onlyforDesk {
  display: block;
}

.mt-45 {
  margin-top: 45px;
}

.mt-80 {
  margin-top: 80px;
}
@media screen and (max-width: 991px) {
  .mt-80 {
    margin-top: 72px;
  }
}

.pe-0-desktop {
  padding-right: 0px;
}
@media screen and (max-width: 767px) {
  .pe-0-desktop {
    padding-right: 12px;
  }
}

.ps-0-desktop {
  padding-left: 0px;
}
@media screen and (max-width: 767px) {
  .ps-0-desktop {
    padding-left: 12px;
  }
}

.title, .title-white {
  font-size: 36px;
  line-height: 40px;
  color: #090D3C;
  font-family: Yeseva One;
}
@media screen and (max-width: 991px) {
  .title, .title-white {
    font-size: 24px;
    line-height: 32px;
  }
}
@media screen and (max-width: 767px) {
  .title, .title-white {
    font-size: 20px;
    line-height: 24px;
  }
}
@media screen and (max-width: 390px) {
  .title, .title-white {
    font-size: 18px;
    line-height: 22px;
  }
}
.title.w-75, .w-75.title-white {
  width: 75%;
}

.para {
  font-size: 16px;
  line-height: 22px;
  color: #2F2F2F;
  font-family: Poppins-Regular;
}
.para.white {
  color: #ffffff;
}
@media screen and (max-width: 991px) {
  .para {
    font-size: 14px;
    line-height: 18px;
  }
}

.title-white {
  color: #ffffff;
}
.title-white.bannerTitle {
  font-size: 42px;
  line-height: 52px;
}
@media screen and (max-width: 991px) {
  .title-white.bannerTitle {
    font-size: 24px;
    line-height: 32px;
  }
}

.titleWarpper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .titleWarpper {
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .titleWarpper .viewallBtn {
    display: none;
  }
}

.viewallBtn {
  border: 1px solid #35468B;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 16px;
  line-height: 24px;
  color: #35468B;
  font-family: Poppins-Semibold;
  display: inline-block;
  position: relative;
  z-index: 9;
  transition: 0.3s all ease;
}
.viewallBtn:hover {
  background-color: #35468B;
  color: #ffffff;
}
.viewallBtn.white {
  border-color: #ffffff;
  color: #ffffff;
}
.viewallBtn.white:hover {
  background-color: #ffffff;
  color: #35468B;
}
.viewallBtn.blue {
  border-color: #35468B;
  color: #35468B;
}
.viewallBtn.blue:hover {
  background-color: #ffffff;
  color: #35468B;
}
@media screen and (max-width: 768px) {
  .viewallBtn {
    padding: 4px 8px;
    font-size: 12px;
    line-height: 18px;
    color: #090D3C;
    font-family: Poppins-Regular;
  }
}

.primary-btn, .secodary-btn {
  padding: 12px 24px;
  font-size: 18px;
  line-height: 22px;
  color: #35468B;
  font-family: Poppins-Semibold;
  border: 0px;
  outline: none;
  border-radius: 50px;
  min-width: 157px;
  text-align: center;
  display: inline-block;
  transition: 0.3s all ease;
}
@media screen and (max-width: 991px) {
  .primary-btn, .secodary-btn {
    font-size: 16px;
    line-height: 24px;
    padding: 8px 16px;
    min-width: 132px;
  }
}
@media screen and (max-width: 767px) {
  .primary-btn, .secodary-btn {
    font-size: 14px;
    line-height: 20px;
  }
}
.primary-btn:hover, .secodary-btn:hover {
  background-color: #00A7E5;
  color: #ffffff;
}
.primary-btn.blue, .blue.secodary-btn {
  background-color: #35468B;
  color: #ffffff;
}
.primary-btn.blue:hover, .blue.secodary-btn:hover {
  background-color: #00A7E5;
}
.primary-btn.small, .small.secodary-btn {
  min-width: auto;
  font-size: 16px;
  line-height: 24px;
  padding: 8px 25px;
  font-family: Poppins-Regular;
}
@media screen and (max-width: 1199px) {
  .primary-btn.small, .small.secodary-btn {
    padding: 4px 16px;
  }
}
@media screen and (max-width: 991px) {
  .primary-btn.small, .small.secodary-btn {
    padding: 8px 25px;
    width: auto;
  }
}
.primary-btn.small.width-auto, .small.width-auto.secodary-btn {
  width: auto;
}
.primary-btn .icon, .secodary-btn .icon {
  margin-left: 6px;
}
.primary-btn .icon img, .secodary-btn .icon img {
  width: 15px;
  height: 15px;
}
.primary-btn .download-icon, .secodary-btn .download-icon {
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(234deg) brightness(102%) contrast(100%);
}
.primary-btn.white, .white.secodary-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.primary-btn.white:hover, .white.secodary-btn:hover {
  background-color: #00A7E5;
  color: #ffffff;
  border-color: #00A7E5;
  transition: 0.3s all ease;
}

.secodary-btn.blue {
  background-color: transparent;
  border: 1px solid #35468B;
  color: #35468B;
}
.secodary-btn.blue:hover {
  background-color: #35468B;
  color: #ffffff;
}
.secodary-btn.blue:hover img {
  filter: brightness(0) saturate(100%) invert(95%) sepia(100%) saturate(10%) hue-rotate(257deg) brightness(104%) contrast(100%);
}
.secodary-btn.blue img {
  filter: brightness(0) saturate(100%) invert(23%) sepia(75%) saturate(786%) hue-rotate(197deg) brightness(93%) contrast(90%);
}
.secodary-btn.small {
  min-width: auto;
  font-size: 14px;
  line-height: 21px;
  font-family: Poppins-Regular;
  padding: 8px 25px;
}
.secodary-btn.small.width-auto {
  width: auto;
}

@media screen and (max-width: 767px) {
  .pdf-container .secodary-btn.small {
    font-size: 12px;
    line-height: 16px;
    padding: 7px 12px 7px 12px;
    min-height: 30px;
    min-width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .pdf-container .secodary-btn.small img {
    width: 12px;
  }
}

.text-only-btn {
  padding: 8px 24px;
  background-color: transparent;
  border: none;
  font-size: 16px;
  line-height: 24px;
  color: #35468B;
  font-family: Poppins-Regular;
  transition: 0.3s all ease;
}
@media screen and (max-width: 767px) {
  .text-only-btn {
    padding: 6px 16px;
    font-size: 14px;
    line-height: 20px;
  }
}
.text-only-btn:hover {
  color: #00A7E5;
  transition: 0.3s all ease;
}
.text-only-btn.lightBlue {
  color: #00A7E5;
}
.text-only-btn.lightBlue:hover {
  color: #35468B;
}
.text-only-btn.semibold {
  font-family: Poppins-Semibold;
}

@media screen and (max-width: 767px) {
  .text-right-Mobile {
    display: flex;
    justify-content: end;
    align-items: center;
    width: 100%;
    margin-top: 20px;
  }
}

.plainBtn {
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  font-family: Poppins-Regular;
  background-color: transparent;
  border: none;
  box-shadow: none;
}
.plainBtn .icon {
  margin-left: 4px;
}

.socailBtnMobile {
  display: none;
  padding-top: 20px;
}
@media screen and (max-width: 991px) {
  .socailBtnMobile {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;
  }
}

.clear-all-btn {
  background-color: transparent;
  border: none;
  padding: 0px;
  font-size: 13px;
  line-height: 24px;
  color: #00A7E5;
  font-family: Poppins-Regular;
  text-transform: uppercase;
}

.readMoreBtn {
  font-size: 16px;
  line-height: 20px;
  color: #00A7E5;
  font-family: Poppins-Regular;
  display: inline-block;
  transition: 0.3s all ease;
}
.readMoreBtn::after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #00A7E5;
  display: block;
  transition: 0.3s all ease;
}
.readMoreBtn:hover::after {
  width: 100%;
}
.readMoreBtn.white {
  font-size: 12px;
  line-height: 18px;
  color: #ffffff;
  font-family: Poppins-Regular;
}
.readMoreBtn.white::after {
  background-color: #ffffff;
}
.readMoreBtn.font-medium {
  font-family: Poppins-Medium;
}
.readMoreBtn .DownloadIcon {
  margin-right: 8px;
  filter: brightness(0) saturate(100%) invert(48%) sepia(60%) saturate(1768%) hue-rotate(162deg) brightness(95%) contrast(101%);
}
@media screen and (max-width: 1024px) {
  .readMoreBtn {
    font-size: 14px;
    line-height: 20px;
    color: #00A7E5;
    font-family: Poppins-Regular;
  }
}
@media screen and (max-width: 1024px) {
  .readMoreBtn {
    font-size: 12px;
    line-height: 20px;
  }
}

.registerNow {
  background-color: #ffffff;
  border-radius: 80px;
  padding: 11px 23px;
  display: inline-block;
  font-size: 18px;
  line-height: 27px;
  color: #090D3C;
  font-family: Poppins-Semibold;
  transition: 0.3s all ease;
}
.registerNow:hover {
  background-color: #00A7E5;
  color: #ffffff;
}

.registerNowText {
  background-color: transparent;
  border: 0px;
  padding: 0px;
  display: inline-block;
  font-size: 14px;
  line-height: 20px;
  color: #00A7E5;
  font-family: Poppins-Regular;
}

.flex-main {
  display: flex;
  justify-content: center;
  align-items: center;
}

.onlyforMobile {
  display: none;
}
@media only screen and (max-width: 767px) {
  .onlyforMobile {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .mt-4-mobile {
    margin-top: 24px;
  }
}

@media only screen and (max-width: 767px) {
  .onlyforDesk {
    display: none;
  }
}
::-moz-placeholder {
  font-size: 14px;
  line-height: 20px;
  color: #7F7F7F;
  font-family: Poppins-Regular;
}
::placeholder {
  font-size: 14px;
  line-height: 20px;
  color: #7F7F7F;
  font-family: Poppins-Regular;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0px 20px;
  }
}

.form-label {
  font-size: 14px;
  line-height: 21px;
  color: #696969;
  font-family: Poppins-Regular;
  padding-bottom: 4px;
  margin-bottom: 0px;
}
@media screen and (max-width: 767px) {
  .form-label {
    font-size: 12px;
    line-height: 18px;
  }
}

.sizeText {
  font-size: 12px;
  line-height: 16px;
  color: #646464;
  font-family: Poppins-Regular;
  padding-left: 8px;
}

.value-text {
  font-size: 14px;
  line-height: 21px;
  color: #717171;
  font-family: Poppins-Semibold;
  display: block;
  padding-top: 6px;
}
@media screen and (max-width: 767px) {
  .value-text {
    font-size: 12px;
    line-height: 18px;
  }
}

.form-control, .form-select {
  font-size: 14px;
  line-height: 21px;
  color: #696969;
  font-family: Poppins-Regular;
  border-radius: 80px;
  border: 1px solid #C4C4C4;
  min-height: 36px;
}
.form-control::-moz-placeholder, .form-select::-moz-placeholder {
  font-size: 12px;
  line-height: 18px;
  color: #BEBEBE;
  font-family: Poppins-Regular;
}
.form-control::placeholder, .form-select::placeholder {
  font-size: 12px;
  line-height: 18px;
  color: #BEBEBE;
  font-family: Poppins-Regular;
}
.form-control:disabled, .form-select:disabled {
  background-color: #F1F3F6;
  background-color: #DADFE6;
  border-color: #C4C4C4;
}

.error {
  border-color: #FF4838;
}

.errorMsg {
  font-size: 10px;
  line-height: 14px;
  color: #FF4838;
  font-family: Poppins-Medium;
  padding-top: 8px;
  display: flex;
  justify-content: start;
  align-items: center;
}

.bannerInput {
  background: #fff;
  border-radius: 80px;
  margin-top: 46px;
  width: 440px;
}
@media screen and (max-width: 767px) {
  .bannerInput {
    width: 320px;
    max-width: 100%;
    margin-top: 20px;
  }
}
.bannerInput .form-control, .bannerInput .form-select {
  border: 0px;
  padding: 15px 22px;
}
@media screen and (max-width: 767px) {
  .bannerInput .form-control, .bannerInput .form-select {
    padding: 8px 16px;
  }
}
.bannerInput .icon-btn {
  background-color: transparent;
  border: none;
  padding: 0px 22px;
}
@media screen and (max-width: 767px) {
  .bannerInput .icon-btn {
    padding: 0px 16px;
  }
}
.bannerInput .icon-btn img {
  filter: brightness(0) saturate(100%) invert(27%) sepia(12%) saturate(3886%) hue-rotate(195deg) brightness(92%) contrast(91%);
  rotate: 180deg;
}

textarea.form-control, textarea.form-select {
  border-radius: 12px;
}

.form-select {
  font-size: 12px;
  line-height: 18px;
  color: #4F4F4F;
  font-family: Poppins-Regular;
}

.dropdownWrapper .form-select {
  padding: 8px 40px 8px 12px;
  font-size: 14px;
  line-height: 21px;
  color: #5B5D61;
  font-family: Poppins-Regular;
  min-width: 110px;
}
@media screen and (max-width: 767px) {
  .dropdownWrapper .form-select {
    font-size: 12px;
    line-height: 16px;
    padding: 7px 30px 7px 12px;
    min-height: 30px;
    min-width: 80px;
  }
}

.breadcrumb {
  margin-bottom: 16px;
}
.breadcrumb li {
  padding-right: 16px;
}
.breadcrumb li::after {
  content: ">";
  width: 9px;
  height: 4px;
  display: inline-block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  padding-left: 8px;
}
.breadcrumb li a {
  font-size: 14px;
  line-height: 21px;
  color: rgba(255, 255, 255, 0.6);
  font-family: Poppins-Regular;
}
@media screen and (max-width: 991px) {
  .breadcrumb li a {
    font-size: 12px;
    line-height: 18px;
  }
}
.breadcrumb li a:hover {
  color: #ffffff;
}
.breadcrumb li a:active {
  color: #ffffff;
}
.breadcrumb li:last-child::after {
  content: none;
}
.breadcrumb li:last-child a {
  color: #ffffff;
}
.breadcrumb.lightbg li::after {
  color: #7F7F7F;
}
.breadcrumb.lightbg li a {
  color: #7F7F7F;
}
.breadcrumb.lightbg li:last-child a {
  color: #35468B;
}
.breadcrumb.eventDetail {
  display: flex;
  flex-wrap: nowrap;
}
.breadcrumb.eventDetail li {
  position: relative;
  color: white;
}
.breadcrumb.eventDetail li::after {
  position: absolute;
  top: 3px;
  padding: 0px 4px;
}

.searchbar {
  position: relative;
}
.searchbar#navSearch {
  max-width: 137px;
  margin-left: 22px;
}
@media only screen and (max-width: 1200px) {
  .searchbar#navSearch {
    margin-left: 0px;
  }
}
@media only screen and (max-width: 991px) {
  .searchbar#navSearch {
    max-width: 100%;
    margin-left: 0px;
    display: none;
  }
}
.searchbar .input-search {
  border: 1px solid #DDDDDD;
  border-radius: 40px;
  padding: 10px 40px 10px 13px;
  font-size: 14px;
  line-height: 18px;
  color: #7F7F7F;
  font-family: Poppins-Medium;
  width: 100%;
}
.searchbar span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 13px;
  color: #35468B;
}

@media screen and (max-width: 991px) {
  .column-reverse-mobile {
    flex-direction: column-reverse;
  }
}

.outline-btn {
  font-size: 14px;
  line-height: 22px;
  color: #00A7E5;
  font-family: Poppins-Regular;
  transition: 0.3s all ease;
  border: none;
  background-color: transparent;
}
.outline-btn::after {
  content: "";
  width: 16px;
  height: 1px;
  background-color: #00A7E5;
  display: block;
  transition: 0.3s all ease;
}
.outline-btn:hover::after {
  width: 100%;
}

.red-color {
  color: #FF6868;
}

.pageNotiBox {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 13px;
  margin-bottom: 24px;
}
.pageNotiBox .styledUl li {
  font-size: 11px;
  line-height: 23px;
  color: #7F7F7F;
  font-family: Poppins-Medium;
  padding-bottom: 0px;
}

.styledUl li {
  list-style: none;
  margin-left: 0;
  padding-left: 20px;
  text-indent: -20px;
  padding-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
  color: #7F7F7F;
  font-family: Poppins-Regular;
}
@media screen and (max-width: 991px) {
  .styledUl li {
    font-size: 12px;
    line-height: 18px;
  }
}
.styledUl li::before {
  content: "";
  background: url("../images/icons/doubleArrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 13px;
  display: inline-block;
  padding-left: 10px;
  position: relative;
  top: 3px;
}

.collapseBtn {
  border: 1px solid #ffffff;
  padding: 12px 24px;
  border-radius: 80px;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-family: Poppins-Semibold;
  background-color: transparent;
}
.collapseBtn .Uparrow {
  margin-left: 8px;
}
.collapseBtn .Uparrow img {
  transform: rotate(180deg);
}
.collapseBtn[aria-expanded=true] .Uparrow img {
  transform: rotate(0deg);
}
.collapseBtn[aria-expanded=false] .Uparrow img {
  transform: rotate(180deg);
}
.collapseBtn:hover {
  color: #35468B;
  background-color: #ffffff;
}
.collapseBtn:hover .Uparrow {
  filter: brightness(0) saturate(100%) invert(21%) sepia(98%) saturate(723%) hue-rotate(201deg) brightness(94%) contrast(90%);
}

.galleryCard {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  margin: 0px 5px 10px 5px;
}
.galleryCard .cardImage {
  position: relative;
}
.galleryCard .cardImage img {
  height: 156px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 12px 12px 0px 0px;
}
.galleryCard .cardImage .feesType {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ffffff;
  border-radius: 20px;
  height: 21px;
  min-width: 114px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
  font-size: 10px;
  line-height: 14px;
  color: #00A7E5;
  font-family: Poppins-Bold;
}
.galleryCard .cardImage .cardType {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border-radius: 0px 10px 0px 0px;
  padding: 7px 13px;
  font-size: 12px;
  line-height: 18px;
  color: #203987;
  font-family: Poppins-Medium;
}
.galleryCard .cardImage .cardType img {
  width: auto;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0px;
}
.galleryCard .cardImage .EventTye {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #00A7E5;
  font-size: 10px;
  line-height: 24px;
  color: #ffffff;
  font-family: Poppins-Bold;
  border: 1px solid #ffffff;
  border-radius: 20px;
  padding: 0px 9px;
}
.galleryCard .cardContent {
  padding: 16px 20px 24px 20px;
  text-align: left;
}
.galleryCard .cardContent.event-content {
  padding: 8px 16px 16px 16px;
}
.galleryCard .cardContent.event-content .eventCardVenue {
  color: #2F2F2F;
  font-size: 12px;
  padding: 0px 0px 16px;
}
@media screen and (max-width: 1400px) {
  .galleryCard .cardContent.event-content .eventCardVenue {
    font-size: 10px;
  }
}
@media screen and (max-width: 1199px) {
  .galleryCard .cardContent.event-content .eventCardVenue {
    font-size: 12px;
  }
}
.galleryCard .cardContent.event-content .eventCardVenue img {
  filter: none;
  width: 14px;
  height: 14px;
}
.galleryCard .cardContent.event-content .eventCardVenue .border-center {
  margin: 0px 10px;
}
@media screen and (max-width: 1199px) {
  .galleryCard .cardContent.event-content .eventCardVenue .border-center {
    margin: 0 5px;
  }
}
.galleryCard .cardContent .cardTitle {
  font-size: 16px;
  line-height: 22px;
  color: #2F2F2F;
  font-family: Poppins-Bold;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  min-height: 44px;
}
.galleryCard .cardContent .venueDate {
  font-size: 12px;
  line-height: 20px;
  color: #35468B;
  font-family: Poppins-Semibold;
  padding-bottom: 4px;
}
.galleryCard .cardContent .para {
  font-size: 14px;
  line-height: 20px;
  color: #2F2F2F;
  font-family: Poppins-Regular;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 24px;
  min-height: 40px;
}
.galleryCard .cardContent .para.small {
  font-size: 12px;
  line-height: 18px;
  color: #7F7F7F;
  font-family: Poppins-Regular;
}
.galleryCard .cardContent .readMoreBtn {
  font-size: 14px;
  line-height: 20px;
  color: #00A7E5;
  font-family: Poppins-Regular;
}
.galleryCard .eventCardVenue {
  padding: 0px 0px 24px;
}
.galleryCard .eventCardVenue .VenueDate {
  display: flex;
  font-size: 12px;
  line-height: 16px;
  color: #2F2F2F;
  font-family: Poppins-Regular;
}
.galleryCard .eventCardVenue .VenueDate img {
  width: 14px;
  height: 14px;
  filter: none;
}
.galleryCard .eventCardVenue .VenueName {
  gap: 4px;
  font-size: 12px;
  line-height: 16px;
  color: #2F2F2F;
  font-family: Poppins-Regular;
}
.galleryCard .eventCardVenue .VenueName img {
  width: 14px;
  height: 14px;
  filter: none;
}
.galleryCard .eventCardVenue .VenueName .venueNameText {
  flex: 1 1 auto; /* allow text to grow/shrink and take remaining space */
  min-width: 0; /* REQUIRED for truncation inside flex */
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (max-width: 991px) {
  .gallerySliderWrapper .owl-nav, .eventSpeakerCarousel .owl-nav, .paperSlidecarousel .owl-nav {
    display: none;
  }
}
.gallerySliderWrapper .owl-nav .owl-prev, .eventSpeakerCarousel .owl-nav .owl-prev, .paperSlidecarousel .owl-nav .owl-prev, .gallerySliderWrapper .owl-nav .owl-next, .eventSpeakerCarousel .owl-nav .owl-next, .paperSlidecarousel .owl-nav .owl-next {
  background-color: #ffffff !important;
  border-radius: 50%;
  position: absolute;
  left: -25px;
  top: 40%;
  transform: translateY(-50%);
  border: 1px solid #00A7E5 !important;
  box-shadow: 0px 4px 12px 0px rgba(34, 34, 34, 0.12);
  width: 45px;
  height: 45px;
}
.gallerySliderWrapper .owl-nav .owl-prev img, .eventSpeakerCarousel .owl-nav .owl-prev img, .paperSlidecarousel .owl-nav .owl-prev img, .gallerySliderWrapper .owl-nav .owl-next img, .eventSpeakerCarousel .owl-nav .owl-next img, .paperSlidecarousel .owl-nav .owl-next img {
  filter: brightness(0) saturate(100%) invert(48%) sepia(89%) saturate(2734%) hue-rotate(165deg) brightness(98%) contrast(104%);
}
.gallerySliderWrapper .owl-nav .owl-prev.disabled, .eventSpeakerCarousel .owl-nav .owl-prev.disabled, .paperSlidecarousel .owl-nav .owl-prev.disabled, .gallerySliderWrapper .owl-nav .disabled.owl-next, .eventSpeakerCarousel .owl-nav .disabled.owl-next, .paperSlidecarousel .owl-nav .disabled.owl-next {
  opacity: 0;
  transition: 0.3s all ease;
}
.gallerySliderWrapper .owl-nav .owl-next, .eventSpeakerCarousel .owl-nav .owl-next, .paperSlidecarousel .owl-nav .owl-next {
  right: -25px;
  left: unset;
}
.gallerySliderWrapper .owl-dots, .eventSpeakerCarousel .owl-dots, .paperSlidecarousel .owl-dots {
  margin-top: 30px;
}
.gallerySliderWrapper .owl-dots .owl-dot span, .eventSpeakerCarousel .owl-dots .owl-dot span, .paperSlidecarousel .owl-dots .owl-dot span {
  height: 5px;
  width: 24px;
  background-color: #E9E9E9;
}
.gallerySliderWrapper .owl-dots .owl-dot.active span, .eventSpeakerCarousel .owl-dots .owl-dot.active span, .paperSlidecarousel .owl-dots .owl-dot.active span {
  background-color: #00A7E5;
}

.paperSlidecarousel .owl-nav .owl-next {
  top: 33%;
}
.paperSlidecarousel .owl-nav .owl-prev, .paperSlidecarousel .owl-nav .owl-next {
  top: 33%;
}

.eventSpeakerCarousel .eventSpeakercard {
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 20px;
}
.eventSpeakerCarousel .eventSpeakercard .eventSpeakerImage img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.eventSpeakerCarousel .eventSpeakercard .eventSpeakerContent .speakerName {
  font-size: 16px;
  line-height: 24px;
  color: #2F2F2F;
  font-family: Poppins-Semibold;
}
@media screen and (max-width: 767px) {
  .eventSpeakerCarousel .eventSpeakercard .eventSpeakerContent .speakerName {
    font-size: 14px;
    line-height: 20px;
  }
}
.eventSpeakerCarousel .eventSpeakercard .eventSpeakerContent .textSmall {
  font-size: 13px;
  line-height: 24px;
  color: #646464;
  font-family: Poppins-Regular;
}
@media screen and (max-width: 767px) {
  .eventSpeakerCarousel .eventSpeakercard .eventSpeakerContent .textSmall {
    font-size: 11px;
    line-height: 20px;
  }
}
.eventSpeakerCarousel .owl-nav .owl-next {
  top: 30%;
}
.eventSpeakerCarousel .owl-nav .owl-prev, .eventSpeakerCarousel .owl-nav .owl-next {
  top: 30%;
}

.resultFoundText {
  font-size: 18px;
  line-height: 27px;
  color: #2F2F2F;
  font-family: Poppins-Semibold;
  padding-top: 40px;
}

.reportSubTitle {
  font-size: 18px;
  line-height: 27px;
  color: #2F2F2F;
  font-family: Poppins-Medium;
  padding-bottom: 20px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  .reportSubTitle {
    font-size: 14px;
    line-height: 20px;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .reportSubTitle .authName {
    border-right: 0px;
  }
}
.reportSubTitle .authName:last-child {
  border-right: 0px;
}
.reportSubTitle .authName a {
  color: #2F2F2F;
  transition: 0.3s all ease;
}
.reportSubTitle .authName a:hover {
  color: #00A7E5;
  transition: 0.3s all ease;
}
.reportSubTitle .authName a:hover img {
  filter: grayscale(0);
  border-color: #00A7E5;
}
.reportSubTitle .authName a:focus {
  color: #00A7E5;
}
.reportSubTitle .authImage {
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .reportSubTitle .authImage {
    width: auto;
  }
}
.reportSubTitle .authImage img {
  width: 27px;
  height: 27px;
  box-shadow: 0px 0px 2.05px 0px rgba(0, 0, 0, 0.2509803922);
  border: 1px solid #ffffff;
  border-radius: 50%;
  filter: grayscale(1);
}
.reportSubTitle.reportSubTitleinner {
  gap: 16px;
}
.reportSubTitle.reportSubTitleinner .authImage img {
  margin-right: -10px;
}

.mt-6 {
  margin-top: 34px;
}

.EventVenueMain {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 991px) {
  .EventVenueMain {
    gap: 0px;
  }
}
@media screen and (max-width: 991px) {
  .EventVenueMain .VenueName {
    padding-bottom: 24px;
  }
}
.EventVenueMain .VenueName img {
  filter: brightness(0) saturate(100%) invert(98%) sepia(4%) saturate(131%) hue-rotate(250deg) brightness(115%) contrast(100%);
}

.eventCardVenue {
  display: flex;
  justify-content: start;
  align-items: center;
  font-size: 12px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.75);
  font-family: Poppins-Regular;
  padding-top: 20px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .eventCardVenue {
    font-size: 12px;
  }
}
@media screen and (max-width: 991px) {
  .eventCardVenue {
    flex-direction: column;
    align-items: start;
    padding-top: 16px;
  }
}
.eventCardVenue.width-auto .VenueDate {
  width: auto;
}
.eventCardVenue.width-auto .VenueName {
  width: auto;
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .eventCardVenue.width-auto .VenueName {
    max-width: 100%;
  }
}
.eventCardVenue.colorOption {
  color: #7F7F7F;
  padding-bottom: 30px;
  padding-top: 8px;
}
.eventCardVenue.colorOption .VenueDate {
  display: flex;
  justify-content: start;
  align-items: center;
}
.eventCardVenue.colorOption .VenueDate img {
  filter: none;
  width: 16px;
  height: 16px;
}
.eventCardVenue.colorOption .VenueName {
  display: flex;
  justify-content: start;
  align-items: center;
  width: auto;
}
.eventCardVenue.colorOption .VenueName img {
  filter: none;
  width: 16px;
  height: 16px;
}
.eventCardVenue .VenueDate {
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
}
@media screen and (max-width: 991px) {
  .eventCardVenue .VenueDate {
    padding-bottom: 12px;
    width: 100%;
  }
}
.eventCardVenue .VenueDate img {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}
@media screen and (max-width: 1199px) {
  .eventCardVenue .VenueDate img {
    margin-right: 2px;
  }
}
.eventCardVenue .border-center {
  border-left: 1px solid #AFAFAF;
  margin: 0px 15px;
  width: 1px;
}
@media screen and (max-width: 991px) {
  .eventCardVenue .border-center {
    display: none;
  }
}
.eventCardVenue .VenueName {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.eventCardVenue .VenueName img {
  margin-right: 4px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(248deg) brightness(106%) contrast(106%);
}
@media screen and (max-width: 1199px) {
  .eventCardVenue .VenueName img {
    margin-right: 2px;
  }
}

.reportsButtons {
  padding-top: 32px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 16px;
}
@media screen and (max-width: 991px) {
  .reportsButtons {
    padding-top: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 991px) {
  .reportsButtons.eventDetails {
    padding-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .reportsButtons.eventDetails {
    padding-top: 8px;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .reportsButtons.eventDetails .primary-btn, .reportsButtons.eventDetails .secodary-btn {
    width: 100%;
  }
}
.reportsButtons.sharepopup {
  padding: 0px;
  flex-direction: column;
}
.reportsButtons.sharepopup .text-with-icon-btn {
  width: 100%;
}
.reportsButtons .text-with-icon-btn {
  min-width: 130px;
  padding: 10px 20px;
  text-align: center;
  background-color: transparent;
  border: 1px solid #ffffff;
  border-radius: 70px;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-family: Poppins-Regular;
  transition: 0.3s all ease;
}
@media screen and (max-width: 767px) {
  .reportsButtons .text-with-icon-btn {
    font-size: 14px;
    line-height: 20px;
    min-width: 100px;
    padding: 8px 16px;
    height: 40px;
  }
}
.reportsButtons .text-with-icon-btn:hover {
  background-color: #00A7E5;
  transition: 0.3s all ease;
}
.reportsButtons .text-with-icon-btn.blue {
  border-color: #35468B;
  color: #35468B;
}
.reportsButtons .text-with-icon-btn.blue .icon img {
  filter: brightness(0) saturate(100%) invert(22%) sepia(82%) saturate(818%) hue-rotate(199deg) brightness(94%) contrast(88%);
}
.reportsButtons .text-with-icon-btn.blue:hover {
  color: #ffffff;
  border-color: #ffffff;
}
.reportsButtons .text-with-icon-btn.blue:hover .icon img {
  filter: none;
}
.reportsButtons .text-with-icon-btn .icon {
  margin-left: 7px;
}
.reportsButtons .dropdown-menu {
  width: 100%;
  padding: 10px 16px;
}
.reportsButtons .dropdown-menu .dropdown-item {
  font-size: 14px;
  line-height: 21px;
  color: #2F2F2F;
  font-family: Poppins-Medium;
  border-bottom: 1px solid #D1D7E0;
  padding: 4px 0px;
}

.applyNowCardWrapper.sticky {
  position: sticky;
  top: 90px;
  transition: 0.3s all ease;
}
@media screen and (max-width: 991px) {
  .applyNowCardWrapper.sticky {
    position: fixed;
    bottom: 0px;
    top: unset;
    left: 20px;
    right: 20px;
  }
}
.applyNowCardWrapper.sticky.bottom {
  position: absolute;
  top: 0px;
  transition: 0.3s all ease;
}
@media screen and (max-width: 991px) {
  .applyNowCardWrapper.sticky.bottom {
    position: relative;
    left: unset;
    right: unset;
  }
}
.applyNowCardWrapper .applyNowCard {
  background-color: #35468B;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 44px 33px;
  text-align: center;
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 991px) {
  .applyNowCardWrapper .applyNowCard {
    padding: 18px 20px;
    flex-direction: row;
    margin-top: 20px;
    margin-bottom: 20px;
    border-radius: 12px 12px 0px 0px;
  }
}
.applyNowCardWrapper .applyNowCard::before {
  content: "";
  background: url("../images/join-us/cardLeftVector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 81px;
  height: 107px;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  .applyNowCardWrapper .applyNowCard::before {
    width: 30px;
    height: 40px;
  }
}
.applyNowCardWrapper .applyNowCard::after {
  content: "";
  background: url("../images/join-us/cardrightVector.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  transform: translateY(-50%);
  top: 50%;
  width: 94px;
  height: 157px;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  .applyNowCardWrapper .applyNowCard::after {
    width: 30px;
    height: 70px;
  }
}
.applyNowCardWrapper .applyNowCard .cardHeading {
  font-size: 24px;
  line-height: 34px;
  color: #ffffff;
  font-family: Poppins-Semibold;
  padding-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .applyNowCardWrapper .applyNowCard .cardHeading {
    font-size: 14px;
    line-height: 18px;
    padding-bottom: 0px;
    text-align: left;
    margin-left: 16px;
  }
}
.applyNowCardWrapper .applyNowCard .cardText {
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  font-family: Poppins-Regular;
  padding-bottom: 32px;
}
@media screen and (max-width: 991px) {
  .applyNowCardWrapper .applyNowCard .cardText {
    padding: 0px 20px;
    font-size: 14px;
  }
}

.input-group .btn {
  border-radius: 50px 0px 0px 50px;
  border-color: #C4C4C4;
  font-size: 14px;
  line-height: 17px;
  color: #BEBEBE;
  font-family: Poppins-Regular;
}
.input-group .btn:disabled {
  color: #5B5D61;
  background-color: #DADFE6;
  opacity: 1;
}
.input-group.error .btn {
  border-color: #FF4838;
}
.input-group.error .form-control, .input-group.error .form-select {
  border-color: #FF4838;
}
.input-group .input-group-text {
  border-radius: 50px 0px 0px 50px;
  border-color: #C4C4C4;
  font-size: 14px;
  line-height: 17px;
  color: #BEBEBE;
  font-family: Poppins-Regular;
}

.color-red {
  color: #FF4646;
}

.form-check-label {
  font-size: 13px;
  line-height: 17px;
  color: #696969;
  font-family: Poppins-Regular;
}
.form-check-label b {
  color: #35468B;
  font-family: Poppins-Semibold;
}

.radioBtnWrapper {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 10px;
}
.radioBtnWrapper .form-check-input:checked {
  background-color: #00A7E5;
  border-color: #00A7E5;
}

.pt-42 {
  padding-top: 42px;
}
@media screen and (max-width: 991px) {
  .pt-42 {
    padding-top: 24px;
  }
}

.bottomFixedButtons {
  position: fixed;
  bottom: 20px;
  right: 10px;
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
.bottomFixedButtons .accessibilityBtn {
  background-color: #35468B;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2509803922);
  border-radius: 50%;
  padding: 8px;
  border: 0px;
  width: 65px;
  height: 65px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease;
}
.bottomFixedButtons .accessibilityBtn:hover {
  background-color: #00A7E5;
  transition: 0.3s all ease;
}
.bottomFixedButtons .accessibilityBtn img {
  width: 52px;
  height: 52px;
  max-width: 100%;
}
.bottomFixedButtons .backtoTopBtn {
  background-color: #ffffff;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.1215686275);
  border-radius: 50%;
  padding: 16px;
  border: 1px solid #00A7E5;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all ease;
}
.bottomFixedButtons .backtoTopBtn:hover {
  background-color: #00A7E5;
  transition: 0.3s all ease;
}
.bottomFixedButtons .backtoTopBtn:hover img {
  filter: brightness(0) saturate(100%) invert(98%) sepia(7%) saturate(84%) hue-rotate(254deg) brightness(118%) contrast(100%);
}
.bottomFixedButtons .backtoTopBtn img {
  width: 14px;
  height: 14px;
  max-width: 100%;
}

.externalLInkPopup {
  text-align: center;
}
.externalLInkPopup .modal-header {
  border-bottom: none;
  padding-bottom: 0px;
  border-radius: 4px;
}
.externalLInkPopup .modal-header .btn-close {
  color: #7F7F7F;
}
.externalLInkPopup .modal-body {
  padding-bottom: 40px;
}
.externalLInkPopup .modal-body .redirectIcon {
  margin-bottom: 12px;
}
.externalLInkPopup .modal-body .modelContent {
  font-size: 20px;
  line-height: 30px;
  color: #2F2F2F;
  font-family: Poppins-Medium;
  padding-bottom: 24px;
}
.externalLInkPopup .bottomLine {
  height: 6px;
  background-color: #E1E1E1;
  border-radius: 0px 0px 4px 4px;
  position: relative;
}
.externalLInkPopup .bottomLine .progressbar {
  width: 120px;
  background-color: #00A7E5;
  display: inline-block;
  height: 6px;
  position: absolute;
  left: 0;
  border-radius: 0px 0px 0px 4px;
}
.externalLInkPopup .bottomLine .progressbar.active {
  width: 100%;
  border-radius: 0px 0px 4px 4px;
}

.newsletterModal .modal-content {
  border: 1px solid #EAEAEA;
}
.newsletterModal .modal-content .modal-header {
  background-color: #F3FBFE;
  justify-content: center;
  padding: 24px;
}
.newsletterModal .modal-content .modal-header.disLikeHeader {
  justify-content: start;
}
.newsletterModal .modal-content .modal-header.disLikeHeader .textSmall {
  font-size: 14px;
  line-height: 26px;
  color: #4F4F4F;
  font-family: Poppins-Regular;
}
.newsletterModal .modal-content .modal-header .modal-title {
  font-size: 20px;
  line-height: 30px;
  color: #4F4F4F;
  font-family: Poppins-Bold;
}
@media screen and (max-width: 767px) {
  .newsletterModal .modal-content .modal-header .modal-title {
    font-size: 16px;
    line-height: 20px;
  }
}
.newsletterModal .modal-content .modal-header .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}
.newsletterModal .modal-content .modal-body .thankyouContent {
  text-align: center;
  padding: 20px;
}
.newsletterModal .modal-content .modal-body .thankyouContent .modal-subheading {
  font-size: 20px;
  line-height: 30px;
  color: #4F4F4F;
  font-family: Poppins-Bold;
  padding-bottom: 16px;
}
.newsletterModal .modal-content .modal-body .thankyouContent .modal-para {
  font-size: 16px;
  line-height: 24px;
  color: #4F4F4F;
  font-family: Poppins-Regular;
  padding-bottom: 41px;
}

.idManage {
  scroll-margin-top: 78px;
}

.mobileFilterbtn {
  position: absolute;
  right: 15px;
  top: -50px;
  z-index: 9;
}
.mobileFilterbtn .filterBtn {
  font-size: 16px;
  line-height: 22px;
  color: #7B7B7B;
  font-family: Poppins-Regular;
  border: 1px solid #DEDEDE;
  border-radius: 80px;
  background-color: #ffffff;
  padding: 6px 12px;
}
@media screen and (max-width: 767px) {
  .mobileFilterbtn .filterBtn {
    font-size: 14px;
    line-height: 20px;
    padding: 4px 8px;
  }
}
@media screen and (max-width: 767px) {
  .mobileFilterbtn .filterBtn img {
    width: 12px;
  }
}

.tosterMainWrapper {
  position: absolute;
  top: 14px;
  right: 14px;
}
.tosterMainWrapper .toast {
  border-radius: 4px;
  border-left: 4px solid #409A31;
  padding: 16px;
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 4px;
  box-shadow: 1px 1px 8px 2px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
}
.tosterMainWrapper .toast .toast-heading {
  font-size: 14px;
  line-height: 21px;
  color: #409A31;
  font-family: Poppins-Bold;
}
.tosterMainWrapper .toast .toast-para {
  font-size: 12px;
  line-height: 18px;
  color: #5B5D61;
  font-family: Poppins-Regular;
}
.tosterMainWrapper .toast .btn-close {
  width: 12px;
  height: 12px;
  font-size: 12px;
  color: #757E8B;
}

.paperWrapper .PaperCardMain .PaperCard {
  margin-bottom: 0px;
}
.paperWrapper .PaperCard {
  border: 1px solid #DDDDDD;
  border-radius: 12px;
  margin-bottom: 24px;
}
.paperWrapper .PaperCard .papaerNameWrapper {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 15px 20px;
  gap: 12px;
}
.paperWrapper .PaperCard .papaerNameWrapper figure {
  margin: 0;
}
.paperWrapper .PaperCard .papaerNameWrapper figure img {
  width: 30px;
  height: 40px;
}
.paperWrapper .PaperCard .papaerNameWrapper .paperName {
  font-size: 14px;
  line-height: 21px;
  color: #2F2F2F;
  font-family: Poppins-Semibold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.paperWrapper .PaperCard .paperContent {
  background-color: #F7F7F7;
  padding: 14px 20px 0px 20px;
  margin-bottom: 14px;
  border-top: 1px solid #DDDDDD;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.paperWrapper .PaperCard .paperContent .zipName {
  font-size: 16px;
  line-height: 24px;
  color: #2F2F2F;
  font-family: Poppins-Semibold;
}
.paperWrapper .PaperCard .paperContent .zipdate {
  font-size: 14px;
  line-height: 22px;
  color: #4F4F4F;
  font-family: Poppins-Regular;
}
.paperWrapper .PaperCard .paperContent .zipdate .paperSize {
  padding-left: 12px;
}
.paperWrapper .PaperCard .paperContent .zipdate .paperSize::before {
  content: "";
  background-color: #939393;
  width: 4px;
  height: 4px;
  display: inline-block;
  border-radius: 12px;
  margin-right: 12px;
  vertical-align: middle;
}

.paperSlidecarousel .owl-stage {
  padding-left: 0px !important;
}

.eventSpeakerCarousel .owl-stage {
  padding-left: 0px !important;
}

.subTitle {
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  font-family: Poppins-Semibold;
}

.noDataFoundWrapper {
  background-color: #F3FBFE;
  border-radius: 12px;
  padding: 88px;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 767px) {
  .noDataFoundWrapper {
    padding: 40px;
  }
}
.noDataFoundWrapper::before {
  background: url("../images/research/paperGraphicsLeft.svg") no-repeat;
  content: "";
  background-size: contain;
  width: 227px;
  height: 102px;
  position: absolute;
  top: 0;
  right: 0;
}
.noDataFoundWrapper::after {
  background: url("../images/research/paperGraphicsRight.svg") no-repeat;
  content: "";
  background-size: contain;
  width: 270px;
  height: 186px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.noDataFoundWrapper .nodataFoundImage {
  border: 1px solid #CAE4ED;
  padding: 24px;
  border-radius: 50%;
  width: 142px;
  height: 142px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .noDataFoundWrapper .nodataFoundImage {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .noDataFoundWrapper .nodataFoundImage img {
    width: 60px;
  }
}
.noDataFoundWrapper .nodataFoundText {
  font-size: 24px;
  line-height: 30px;
  color: #96989E;
  font-family: Poppins-Medium;
}
@media screen and (max-width: 767px) {
  .noDataFoundWrapper .nodataFoundText {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
  }
}
.noDataFoundWrapper.light {
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
}
.noDataFoundWrapper.light::before {
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(63%) hue-rotate(244deg) brightness(115%) contrast(100%);
  opacity: 12%;
}
.noDataFoundWrapper.light::after {
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(63%) hue-rotate(244deg) brightness(115%) contrast(100%);
  opacity: 12%;
}
.noDataFoundWrapper.light .nodataFoundImage {
  background-color: #FFFFFF;
}
.noDataFoundWrapper.light .nodataFoundText {
  color: #FFFFFF;
}

.previewFooter {
  box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.1215686275);
  padding: 20px;
  display: flex;
  justify-content: end;
  align-items: center;
}

.diagramWrapper {
  padding-left: 20px;
}
@media screen and (max-width: 991px) {
  .diagramWrapper {
    padding-left: 0px;
  }
}
.diagramWrapper .diaText {
  font-size: 14px;
  line-height: 24px;
  color: #7F7F7F;
  font-family: Poppins-Regular;
  text-align: justify;
  padding-top: 28px;
}

.border-left-new {
  border-left: 1px solid #CACACA;
}
@media screen and (max-width: 991px) {
  .border-left-new {
    border-left: 0px;
  }
}

.tableDataRight {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
.tableDataRight .userImage {
  width: 118px;
  height: 118px;
}
.tableDataRight .userImage img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
.tableDataRight .userSign {
  width: 118px;
  height: 42px;
  padding-top: 12px;
}
.tableDataRight .userSign img {
  width: 100%;
  height: 100%;
}

body.no-scroll {
  overflow: hidden;
}

header {
  position: fixed;
  top: 0px;
  z-index: 999;
  width: 100%;
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.12);
}
header .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 78px;
  padding: 0;
}
@media screen and (max-width: 1150px) {
  header .navbar {
    padding: 0px 0px;
  }
}
@media screen and (max-width: 991px) {
  header .navbar {
    padding: 10px 0px;
  }
}
header .navbar .logo-main {
  display: flex;
  justify-content: start;
  align-items: center;
}
header .navbar .logo-main .cafral-logo img {
  width: 175px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  header .navbar .logo-main .cafral-logo img {
    width: 120px;
  }
}
header .navbar .logo-main .logoCarousel {
  width: 100px;
  border-left: 1px solid #e3e3e3;
  margin: 0px 0px 0px 20px;
  padding-left: 20px;
}
header .navbar .logo-main .logoCarousel .item img {
  height: 48px;
  width: auto;
}
header .navbar .logo-main .logoCarousel .owl-dots {
  margin-top: 0px;
  padding: 0;
}
header .navbar .logo-main .logoCarousel .owl-dots .owl-dot span {
  height: 3px;
  width: 13px;
  background-color: #f0f0f0;
  margin: 0px 3px;
  padding: 0;
}
header .navbar .logo-main .logoCarousel .owl-dots .owl-dot.active span {
  background-color: #00A7E5;
}
header .navbar .navbar-menu {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 991px) {
  header .navbar .navbar-menu {
    flex-direction: row-reverse;
  }
}
header .navbar .navbar-menu .MenuWrapper.Inactive {
  display: none;
}
header .navbar .navbar-menu .MenuWrapper .mobile-menuIon .hamburgerMenu {
  display: none;
}
@media only screen and (max-width: 991px) {
  header .navbar .navbar-menu .MenuWrapper .mobile-menuIon .hamburgerMenu {
    display: block;
  }
}
header .navbar .navbar-menu .MenuWrapper .mobile-menuIon .close {
  display: none;
  width: 17px;
}
header .navbar .navbar-menu .MenuWrapper .menu-main {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 991px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main {
    position: fixed;
    background-color: rgb(255, 255, 255);
    right: 0px;
    z-index: 99;
    width: 100%;
    height: 100vh;
    top: 72px;
  }
}
header .navbar .navbar-menu .MenuWrapper .menu-main li {
  padding: 0px;
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover {
  list-style-type: none;
}
@media screen and (max-width: 991px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main .navHover {
    padding: 16px;
    border-bottom: 1px solid #f1f1f1;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover .aroowIcon {
  display: none;
  transition: 0.3s all ease;
}
@media screen and (max-width: 991px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main .navHover .aroowIcon {
    display: block;
  }
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover.active {
  padding-bottom: 0px;
  border-bottom: 0px;
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover.active.HoverWrapperInner a {
  color: #2F2F2F;
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover.active.HoverWrapperInner a:hover {
  color: #35468B;
}
@media screen and (max-width: 991px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main .navHover.active.HoverWrapperInner a:hover {
    border: none;
  }
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover.active.HoverWrapperInner a::after {
  content: none;
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover.active a {
  color: #00A7E5;
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover.active a::after {
  content: "";
  background: url("../images/icons/arrowhover.svg");
  background-size: contain;
  width: 30px;
  height: 20px;
  text-align: center;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
}
@media screen and (max-width: 1366px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main .navHover.active a::after {
    bottom: -10px;
  }
}
@media screen and (max-width: 991px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main .navHover.active a::after {
    content: none;
  }
}
@media screen and (max-width: 991px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main .navHover.active .aroowIcon {
    transform: rotate(180deg);
    transition: 0.3s all ease;
  }
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover a {
  padding: 26px 18px;
  font-size: 18px;
  line-height: 27px;
  color: #2F2F2F;
  font-family: Poppins-Regular;
  position: relative;
  display: flex;
  align-items: center;
  height: 78px;
}
@media only screen and (max-width: 1280px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main .navHover a {
    padding: 16px 12px;
  }
}
@media only screen and (max-width: 1199px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main .navHover a {
    font-size: 14px;
    line-height: 18px;
    padding: 16px 12px;
  }
}
@media only screen and (max-width: 991px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main .navHover a {
    padding: 0;
    height: auto;
    font-size: 16px;
    line-height: 22px;
    color: #000101;
  }
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover a.active {
  color: #00A7E5;
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover a:hover {
  color: #00A7E5;
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover a:hover::after {
  content: "";
  background: url("../images/icons/arrowhover.svg");
  background-size: contain;
  width: 30px;
  height: 20px;
  text-align: center;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  background-repeat: no-repeat;
  display: block;
  position: absolute;
}
@media screen and (max-width: 1366px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main .navHover a:hover::after {
    bottom: -10px;
  }
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover a:active {
  color: #00A7E5;
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover a:focus {
  color: #00A7E5;
}
header .navbar .navbar-menu .MenuWrapper .menu-main .navHover a:focus::after {
  content: none;
}
@media only screen and (max-width: 991px) {
  header .navbar .navbar-menu .MenuWrapper .menu-main {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  header .navbar .navbar-menu .searchbarWrapper {
    padding-right: 0px;
  }
}
@media screen and (max-width: 991px) {
  header .navbar .navbar-menu .searchbarWrapper {
    padding-right: 20px;
  }
}
header .navbar .navbar-menu .searchbarWrapper.active {
  padding-right: 0px;
}
header .navbar .navbar-menu .searchbarWrapper.active .SearchIconMain .searchIcon {
  display: none;
}
header .navbar .navbar-menu .searchbarWrapper.active .SearchIconMain .SearchClose {
  display: block;
  width: 14px;
}
header .navbar .navbar-menu .searchbarWrapper.active .searchbar {
  display: block;
  position: fixed;
  left: 0;
  width: 100%;
  padding: 20px;
  background-color: #fff;
  top: 72px;
  height: 100vh;
}
header .navbar .navbar-menu .searchbarWrapper.active .searchbar .searchbarInner {
  position: relative;
}
header .navbar .navbar-menu .searchbarWrapper.active .searchbar .searchbarInner .input-search {
  width: 100%;
}
header .navbar .navbar-menu .searchbarWrapper.active .searchbar .searchbarInner .input-search:focus-visible {
  outline: 1px solid #00A7E5;
}
header .navbar .navbar-menu .searchbarWrapper.active .searchbar .input-search {
  width: 100%;
}
header .navbar .navbar-menu .searchbarWrapper .SearchIconMain .searchIcon {
  display: none;
}
@media screen and (max-width: 991px) {
  header .navbar .navbar-menu .searchbarWrapper .SearchIconMain .searchIcon {
    display: block;
  }
}
header .navbar .navbar-menu .searchbarWrapper .SearchIconMain .SearchClose {
  display: none;
}
header .navbar .onclickSearch {
  position: absolute;
  top: 78px;
  width: 100%;
  z-index: 9;
}
header .navbar .menuHoverWrapper {
  position: absolute;
  top: 78px;
  left: 0;
  width: 100%;
  z-index: 9;
}
header .navbar .menuHoverWrapper.mobileActive {
  display: block !important;
  position: initial;
}
header .navbar .menuHoverWrapper.mobileActive .container {
  padding: 0px;
}
header .navbar .menuHoverWrapper.mobileActive .container .HoverWrapperInner.active {
  padding: 0px;
}
header .navbar .menuHoverWrapper.mobileActive .container .HoverWrapperInner .sectionInner a {
  color: #4F4F4F;
  padding: 0px 0px 12px 0px;
}
header .navbar .menuHoverWrapper .HoverWrapperInner {
  background-color: #E9F9FF;
  border-radius: 0px 0px 12px 12px;
  display: flex;
  justify-content: start;
  align-items: center;
  min-height: 320px;
  position: relative;
  z-index: 9999;
}
@media screen and (max-width: 991px) {
  header .navbar .menuHoverWrapper .HoverWrapperInner {
    min-height: auto;
  }
}
header .navbar .menuHoverWrapper .HoverWrapperInner.active {
  display: flex !important;
}
@media screen and (max-width: 1023px) {
  header .navbar .menuHoverWrapper .HoverWrapperInner.active {
    background: transparent;
    display: block !important;
    min-width: auto;
    width: auto;
  }
}
header .navbar .menuHoverWrapper .HoverWrapperInner::after {
  content: "";
  background: url("../images/icons/cafralStar-Blue.svg");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 406px;
  max-width: 100%;
  height: 264px;
  z-index: 0;
}
@media screen and (max-width: 991px) {
  header .navbar .menuHoverWrapper .HoverWrapperInner::after {
    content: none;
  }
}
header .navbar .menuHoverWrapper .HoverWrapperInner .leftsideHover {
  padding: 0px 22px;
  text-align: center;
  width: 350px;
  min-width: 350px;
  background-color: #CDF1FF;
  height: 100%;
  min-height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 0px 0px 0px 12px;
}
@media screen and (max-width: 1023px) {
  header .navbar .menuHoverWrapper .HoverWrapperInner .leftsideHover {
    display: none;
  }
}
header .navbar .menuHoverWrapper .HoverWrapperInner .leftsideHover .HoveSecImage {
  padding-bottom: 30px;
}
header .navbar .menuHoverWrapper .HoverWrapperInner .leftsideHover .HoveSecImage img {
  height: 50px;
}
header .navbar .menuHoverWrapper .HoverWrapperInner .leftsideHover .HoveSecTitle {
  font-size: 24px;
  line-height: 28px;
  color: #35468B;
  font-family: Yeseva One;
  padding-bottom: 14px;
}
header .navbar .menuHoverWrapper .HoverWrapperInner .leftsideHover .HoveSecpara {
  font-size: 14px;
  line-height: 22px;
  color: Poppins-Black;
  font-family: Poppins-Regular;
}
header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover {
  padding: 0px 62px;
  width: 100%;
  z-index: 99;
  position: relative;
}
@media screen and (max-width: 1400px) {
  header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover {
    padding: 0px 30px;
  }
}
@media screen and (max-width: 1023px) {
  header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover {
    padding: 0px;
  }
}
header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover .rightTitle {
  font-size: 20px;
  line-height: 22px;
  color: #35468B;
  font-family: Poppins-Bold;
  padding-bottom: 20px;
  border-bottom: 0.7px solid #bebebe;
  margin-bottom: 38px;
}
@media screen and (max-width: 991px) {
  header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover .rightTitle {
    display: none;
  }
}
header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover .sectionInner {
  padding: 0;
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 991px) {
  header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover .sectionInner {
    display: block;
    padding: 16px 16px 0px 16px;
  }
}
header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover .sectionInner li {
  list-style: none;
  width: 33%;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover .sectionInner li {
    width: 100%;
    margin-bottom: 0px;
    padding: 0px;
    border: 0px;
  }
}
header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover .sectionInner li a {
  font-size: 18px;
  line-height: 22px;
  color: #2F2F2F;
  font-family: Poppins-Regular;
  border-radius: 12px;
  padding: 10px 12px;
  transition: 0.3s all ease;
  border: 1px solid transparent;
  height: auto;
  display: inline-block;
}
header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover .sectionInner li a:hover {
  color: #35468B;
  border: 1px solid #35468B;
  border-radius: 12px;
  transition: 0.3s all ease;
}
@media screen and (max-width: 991px) {
  header .navbar .menuHoverWrapper .HoverWrapperInner .rightsideHover .sectionInner li a {
    font-size: 14px;
    line-height: 20px;
    color: #4F4F4F;
    font-family: Poppins-Regular;
    display: inline-block;
  }
}
header .navbar .onclickSearch {
  position: absolute;
  top: 77px;
  width: 100%;
  z-index: 99;
}
header .navbar .onclickSearch .mainSearch {
  background-color: #E9F9FF;
  border-radius: 0px 0px 12px 12px;
  width: 100%;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  min-height: 190px;
  position: relative;
  padding: 68px 66px 0px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.0588235294);
}
@media screen and (max-width: 991px) {
  header .navbar .onclickSearch .mainSearch {
    padding: 24px 24px 0px;
  }
}
header .navbar .onclickSearch .mainSearch .GlobalSearch {
  padding: 0px 0px 16px 0px;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .navbar .onclickSearch .mainSearch .GlobalSearch .input-search {
  font-size: 16px;
  line-height: 28px;
  color: rgb(9, 13, 59);
  font-family: Poppins-Regular;
  background-color: transparent;
  outline: none;
  border: none;
  width: 100%;
}
@media screen and (max-width: 991px) {
  header .navbar .onclickSearch .mainSearch .GlobalSearch .input-search {
    font-size: 16px;
    line-height: 22px;
    color: rgb(9, 13, 59);
    font-family: Poppins-Regular;
  }
}
header .navbar .onclickSearch .mainSearch .GlobalSearch .input-search::-moz-placeholder {
  font-size: 16px;
  line-height: 28px;
  color: rgba(9, 13, 59, 0.5);
  font-family: Poppins-Regular;
}
header .navbar .onclickSearch .mainSearch .GlobalSearch .input-search::placeholder {
  font-size: 16px;
  line-height: 28px;
  color: rgba(9, 13, 59, 0.5);
  font-family: Poppins-Regular;
}
@media screen and (max-width: 991px) {
  header .navbar .onclickSearch .mainSearch .GlobalSearch .input-search::-moz-placeholder {
    font-size: 16px;
    line-height: 22px;
    color: rgba(9, 13, 59, 0.5);
    font-family: Poppins-Regular;
  }
  header .navbar .onclickSearch .mainSearch .GlobalSearch .input-search::placeholder {
    font-size: 16px;
    line-height: 22px;
    color: rgba(9, 13, 59, 0.5);
    font-family: Poppins-Regular;
  }
}
header .navbar .onclickSearch .mainSearch .GlobalSearch .material-icons {
  color: #35468B;
  width: 24px;
  height: 24px;
  font-size: 24px;
  position: absolute;
  right: 11px;
}
header .navbar .onclickSearch .mainSearch .GlobalSearch .input-search {
  height: 50px;
  border: 1px solid;
  padding: 0 42px 0 20px;
  border-radius: 40px;
  background: #fff;
  border-color: #DEDEDE;
  margin-top: 0px;
}
header .navbar .onclickSearch .mainSearch .error1 {
  text-align: left;
  font-size: 14px;
  line-height: 22px;
  color: #FF4C4C;
  font-family: Poppins-Medium;
}
header .navbar .onclickSearch .mainSearch .SearchResult {
  width: 100%;
  padding: 16px 0px;
  display: flex;
  justify-content: start;
  align-items: start;
}
@media screen and (max-width: 991px) {
  header .navbar .onclickSearch .mainSearch .SearchResult {
    flex-direction: column;
    padding-top: 0;
  }
}
header .navbar .onclickSearch .mainSearch .SearchResult .recentPages {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 991px) {
  header .navbar .onclickSearch .mainSearch .SearchResult .recentPages {
    width: 100%;
  }
}
header .navbar .onclickSearch .mainSearch .SearchResult .recentPages .textheading {
  font-size: 16px;
  line-height: 22px;
  color: #35468B;
  font-family: Poppins-Bold;
  padding-bottom: 16px;
  max-width: 80%;
}
@media screen and (max-width: 991px) {
  header .navbar .onclickSearch .mainSearch .SearchResult .recentPages .textheading {
    font-size: 14px;
    max-width: 100%;
    padding-top: 16px;
  }
}
header .navbar .onclickSearch .mainSearch .SearchResult .recentPages::after {
  position: absolute;
  content: "";
  border-right: 1px solid #BEBEBE;
  height: 100%;
  top: 0;
  right: 45px;
  min-height: 178px;
}
@media only screen and (max-width: 992px) {
  header .navbar .onclickSearch .mainSearch .SearchResult .recentPages::after {
    content: unset;
  }
}
header .navbar .onclickSearch .mainSearch .SearchResult .recentPages:last-child::after {
  content: none;
}
header .navbar .onclickSearch .mainSearch .SearchResult .textheading img {
  margin-right: 10px;
}
header .navbar .onclickSearch .mainSearch .SearchResult .textheading .text-only-btn {
  padding: 0;
}
header .navbar .onclickSearch .mainSearch .SearchResult .resultText .result-text-large {
  font-size: 18px;
  line-height: 26px;
  color: #4F4F4F;
  font-family: Poppins-Regular;
  padding-bottom: 21px;
  max-width: 80%;
  width: 100%;
}
@media screen and (max-width: 991px) {
  header .navbar .onclickSearch .mainSearch .SearchResult .resultText .result-text-large {
    font-size: 14px;
    line-height: 22px;
    padding-bottom: 10px;
    max-width: 100%;
  }
}
header .navbar .onclickSearch .mainSearch .SearchResult .resultText .result-text-large a {
  color: #4F4F4F;
}
header .navbar .onclickSearch .mainSearch .SearchResult .resultText .result-text-large a:hover {
  color: #00A7E5;
  text-decoration: underline;
}
header .navbar .onclickSearch .mainSearch .SearchResult .resultText .result-text-large .link-redirection {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .navbar .onclickSearch .mainSearch .SearchResult .resultText .result-text-large .link-redirection img {
  cursor: pointer;
}
header .navbar .onclickSearch .mainSearch .SearchResult .resultText .result-text-large .link-redirection img:hover {
  filter: brightness(0) saturate(100%) invert(25%) sepia(11%) saturate(5641%) hue-rotate(199deg) brightness(96%) contrast(87%);
}
header .navbar .onclickSearch .mainSearch .searchCloseIcon {
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  header .navbar .onclickSearch .mainSearch .searchCloseIcon {
    display: none;
  }
}
header .navbar .onclickSearch .mainSearch .searchCloseIcon img {
  width: 20px;
  height: 20px;
  filter: brightness(0) saturate(100%) invert(63%) sepia(56%) saturate(17%) hue-rotate(319deg) brightness(95%) contrast(91%);
}/*# sourceMappingURL=navigation.css.map */