@keyframes shine {
  from {
    opacity: 0;
    left: 0%;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    left: 100%;
  }
}
.science-banner {
  position: relative;
  color: white;
  overflow: hidden;
  height: calc(100vh - var(--headerheight));
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: var(--headerheight);
}
@media only screen and (max-width: 991px) {
  .science-banner {
    height: calc(80vh - var(--headerheight));
  }
}
.science-banner::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(118, 73, 200, 0.95) 0%, rgba(187, 164, 228, 0.5) 62.98%, rgba(255, 255, 255, 0) 100%);
}
@media only screen and (max-width: 768px) {
  .science-banner::before {
    background: linear-gradient(180deg, rgba(118, 73, 200, 0.92) 0%, rgba(187, 164, 228, 0.6) 100%);
  }
}
.science-banner video, .science-banner img:not(.btn > img, .media > img) {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
}
.science-banner .grid {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 100%;
  max-width: var(--container);
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding-top: 45px;
}
@media only screen and (max-width: 991px) {
  .science-banner .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.science-banner .grid .bg-content {
  width: 100%;
  max-width: 490px;
}
@media only screen and (max-width: 991px) {
  .science-banner .grid .bg-content {
    max-width: 100%;
  }
}
.science-banner .grid .bg-content h1 {
  text-transform: capitalize;
  color: var(--white);
  width: 100%;
  max-width: 100%;
  font-size: 48px;
}
@media only screen and (max-width: 991px) {
  .science-banner .grid .bg-content h1 {
    font-size: 35px;
  }
}
.science-banner .grid .bg-content p {
  text-transform: capitalize;
  color: var(--white);
  width: 100%;
  max-width: 450px;
  margin: 24px 0 35px;
}
@media only screen and (max-width: 540px) {
  .science-banner .grid .bg-content p {
    margin: 16px 0 24px;
  }
}
.science-banner .grid .bg-content .btn-group {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media only screen and (max-width: 540px) {
  .science-banner .grid .bg-content .btn-group {
    gap: 12px;
    flex-wrap: wrap;
  }
}
.science-banner .grid .bg-content .btn-group .btn-primary {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
}
.science-banner .grid .bg-content .btn-group .btn-primary:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.science-banner .grid .bg-content .btn-group .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}
.science-banner .grid .bg-content .btn-group .btn-secondary:hover {
  border-color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .science-banner .grid .bg-content .btn-group .btn {
    flex: 1 1 auto;
    justify-content: center;
  }
}
.science-banner .grid .media {
  display: flex;
  align-items: flex-end;
  margin-left: auto;
  margin-top: auto;
}

.science-secA {
  padding: 70px 0;
  background: linear-gradient(270deg, #FFFFFF 0%, #EEE8F8 100%);
}
@media only screen and (max-width: 1024px) {
  .science-secA {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .science-secA {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .science-secA {
    padding: 30px 0;
  }
}
.science-secA .heading {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .science-secA .heading {
    margin-bottom: 24px;
  }
}
.science-secA .steps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
  gap: 85px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .science-secA .steps-nav {
    gap: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .science-secA .steps-nav {
    gap: 30px;
    margin-bottom: 36px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secA .steps-nav {
    gap: 20px;
    margin-bottom: 28px;
  }
}
.science-secA .steps-nav .step-line {
  border: 1px dashed var(--primary);
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 100%;
}
.science-secA .steps-nav .step-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.science-secA .steps-nav .step-item:last-child .step-line {
  display: none;
}
.science-secA .steps-nav .step-item .step-dot {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgb(207, 207, 207);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
@media only screen and (max-width: 768px) {
  .science-secA .steps-nav .step-item .step-dot {
    width: 48px;
    height: 48px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secA .steps-nav .step-item .step-dot {
    width: 38px;
    height: 38px;
  }
}
.science-secA .steps-nav .step-item .step-dot span {
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s ease;
}
.science-secA .steps-nav .step-item .step-line {
  width: 100px;
  height: 0;
  border-top: 2px solid #c9bce8;
  transition: border-color 0.3s ease;
}
@media only screen and (max-width: 991px) {
  .science-secA .steps-nav .step-item .step-line {
    width: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .science-secA .steps-nav .step-item .step-line {
    width: 35px;
  }
}
.science-secA .steps-nav .step-item.active .step-dot {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(var(--primary-rgb), 0.15);
}
.science-secA .steps-nav .step-item.active .step-dot span {
  color: #fff;
}
.science-secA .steps-nav .step-item.done .step-dot {
  background: var(--primary);
  border-color: var(--primary);
}
.science-secA .steps-nav .step-item.done .step-dot span {
  color: #fff;
}
.science-secA .steps-nav .step-item.done .step-line {
  border-color: var(--primary);
}
.science-secA .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .science-secA .grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.science-secA .imgSlider {
  width: 100%;
  padding: 30px 0;
}
@media only screen and (max-width: 540px) {
  .science-secA .imgSlider {
    padding: 25px 0;
  }
}
.science-secA .imgSlider .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.science-secA .imgSlider .swiper-wrapper .swiper-slide .media {
  position: relative;
  border: 20px solid var(--primary);
  overflow: hidden;
  border-radius: 50%;
  width: 380px;
  height: 380px;
  margin: 0 auto;
  flex-shrink: 0;
  animation: Spouse 2s linear infinite alternate;
}
@keyframes Spouse {
  0% {
    outline: 15px solid rgb(226, 216, 245);
    @media only screen and (max-width: 540px) {
      .science-secA .imgSlider .swiper-wrapper .swiper-slide .media {
        outline: 1px solid rgb(226, 216, 245);
      }
    }
  }
  100% {
    outline: 30px solid rgb(226, 216, 245);
    @media only screen and (max-width: 540px) {
      .science-secA .imgSlider .swiper-wrapper .swiper-slide .media {
        outline: 3px solid rgb(226, 216, 245);
      }
    }
  }
}
@media only screen and (max-width: 1280px) {
  .science-secA .imgSlider .swiper-wrapper .swiper-slide .media {
    width: 340px;
    height: 340px;
  }
}
@media only screen and (max-width: 1199px) {
  .science-secA .imgSlider .swiper-wrapper .swiper-slide .media {
    width: 300px;
    height: 300px;
  }
}
@media only screen and (max-width: 991px) {
  .science-secA .imgSlider .swiper-wrapper .swiper-slide .media {
    width: 280px;
    height: 280px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secA .imgSlider .swiper-wrapper .swiper-slide .media {
    width: 220px;
    height: 220px;
    border-width: 12px;
  }
}
.science-secA .imgSlider .swiper-wrapper .swiper-slide .media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.science-secA .textSlider {
  width: 100%;
  height: 290px;
}
.science-secA .textSlider .swiper-wrapper .swiper-slide {
  height: auto;
  box-sizing: border-box;
}
.science-secA .textSlider .swiper-wrapper .swiper-slide .content {
  padding-left: 20px;
  width: 100%;
  max-width: 450px;
}
@media only screen and (max-width: 991px) {
  .science-secA .textSlider .swiper-wrapper .swiper-slide .content {
    text-align: center;
    padding-left: 0;
  }
}
.science-secA .textSlider .swiper-wrapper .swiper-slide .content h6 {
  margin-bottom: 24px;
  color: var(--primary);
  font-weight: 600;
}
@media only screen and (max-width: 540px) {
  .science-secA .textSlider .swiper-wrapper .swiper-slide .content h6 {
    margin-bottom: 16px;
  }
}
.science-secA .textSlider .swiper-wrapper .swiper-slide .content p {
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 15px;
}

.science-secB {
  padding: 70px 0;
}
@media only screen and (max-width: 1024px) {
  .science-secB {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .science-secB {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .science-secB {
    padding: 30px 0;
  }
}
.science-secB .heading {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 4rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .science-secB .heading {
    margin-bottom: 2.5rem;
    max-width: 590px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secB .heading {
    margin-bottom: 2rem;
  }
}
.science-secB .heading p {
  color: var(--text);
  margin: 15px 0 20px;
}
.science-secB .grid-wrap .header {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .science-secB .grid-wrap .header {
    display: none;
  }
}
.science-secB .grid-wrap .header h6 {
  color: var(--primary);
}
.science-secB .grid-wrap .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  padding: 20px 0;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .science-secB .grid-wrap .grid {
    gap: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .science-secB .grid-wrap .grid {
    gap: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .science-secB .grid-wrap .grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 0;
    border-radius: 10px;
    margin-bottom: 12px;
  }
}
.science-secB .grid-wrap .grid:nth-child(odd) {
  background: rgb(251, 250, 254);
}
.science-secB .grid-wrap .grid:nth-child(even) {
  background: var(--white);
}
.science-secB .grid-wrap .grid .content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
@media only screen and (max-width: 768px) {
  .science-secB .grid-wrap .grid .content {
    gap: 14px;
  }
}
.science-secB .grid-wrap .grid .content .icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 540px) {
  .science-secB .grid-wrap .grid .content .icon {
    width: 34px;
    height: 34px;
  }
}
.science-secB .grid-wrap .grid .content .icon img {
  width: 100%;
}
.science-secB .grid-wrap .grid .content p {
  color: var(--text);
}
.science-secB .grid-wrap .grid .benifits {
  gap: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 768px) {
  .science-secB .grid-wrap .grid .benifits {
    order: -1;
    align-items: center;
    margin-right: auto;
    flex-direction: row;
    margin-bottom: 20px;
  }
}
.science-secB .grid-wrap .grid .benifits .icon {
  width: 80px;
  height: 80px;
  background: rgb(241, 237, 249);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (max-width: 540px) {
  .science-secB .grid-wrap .grid .benifits .icon {
    width: 64px;
    height: 64px;
  }
}
.science-secB .grid-wrap .grid .benifits .icon img {
  width: 40px;
  height: 40px;
}
@media only screen and (max-width: 540px) {
  .science-secB .grid-wrap .grid .benifits .icon img {
    width: 32px;
    height: 32px;
  }
}
.science-secB .grid-wrap .grid .benifits p {
  font-weight: 600;
  color: var(--primary);
  width: 130px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .science-secB .grid-wrap .grid .benifits p {
    width: 100%;
  }
}

.science-secC {
  padding: 70px 0;
}
@media only screen and (max-width: 1024px) {
  .science-secC {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .science-secC {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .science-secC {
    padding: 30px 0;
  }
}
.science-secC .heading {
  width: 100%;
  max-width: 684px;
  margin: 0 auto 40px;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .science-secC .heading {
    margin-bottom: 24px;
  }
}
.science-secC .swiper-wrap {
  background: var(--gradient-a);
  border-radius: 10px;
  padding: 45px 60px;
}
@media only screen and (max-width: 768px) {
  .science-secC .swiper-wrap {
    padding: 35px 40px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secC .swiper-wrap {
    padding: 25px 30px;
  }
}
.science-secC .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 65px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .science-secC .grid {
    gap: 35px;
  }
}
@media only screen and (max-width: 768px) {
  .science-secC .grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.science-secC .swiper.concertSliderImg {
  border-radius: 12px;
  overflow: hidden;
}
.science-secC .swiper.concertSliderImg .media {
  border-radius: 12px;
  overflow: hidden;
}
.science-secC .swiper.concertSliderImg .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.science-secC .swiper.concertSliderText {
  width: 100%;
}
.science-secC .swiper.concertSliderText .btns {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media only screen and (max-width: 991px) {
  .science-secC .swiper.concertSliderText .btns {
    display: none;
  }
}
.science-secC .swiper.concertSliderText .btns button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.science-secC .swiper.concertSliderText .btns button img {
  width: 12px;
  height: 12px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.science-secC .swiper.concertSliderText .btns button.concertSliderText-prev img {
  transform: rotate(180deg);
}
.science-secC .swiper.concertSliderText .btns button:hover {
  background: white;
}
.science-secC .swiper.concertSliderText .btns button:hover img {
  filter: brightness(0) saturate(100%) invert(36%) sepia(28%) saturate(1697%) hue-rotate(231deg) brightness(94%) contrast(92%);
}
.science-secC .swiper.concertSliderText .btns button.swiper-button-disabled {
  opacity: 0.35;
  cursor: no-drop;
}
.science-secC .swiper.concertSliderText .content {
  width: 100%;
  max-width: 450px;
}
.science-secC .swiper.concertSliderText .content h5 {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
  font-size: 24px;
}
.science-secC .swiper.concertSliderText .content p {
  color: rgba(255, 255, 255, 0.85);
}

.science-secD {
  padding: 70px 0;
  background: var(--gray-sec);
}
@media only screen and (max-width: 1024px) {
  .science-secD {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .science-secD {
    padding: 40px 0;
  }
}
.science-secD .heading {
  width: 100%;
  max-width: 624px;
  margin: 0 auto 50px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .science-secD .heading {
    margin-bottom: 36px;
    max-width: 500px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secD .heading {
    margin-bottom: 24px;
    max-width: 324px;
  }
}
.science-secD .compare-wrapper {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: stretch;
}
@media only screen and (max-width: 1024px) {
  .science-secD .compare-wrapper {
    grid-template-columns: 1fr 60px 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .science-secD .compare-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.science-secD .compare-col {
  padding: 36px 100px;
}
@media only screen and (max-width: 1280px) {
  .science-secD .compare-col {
    padding: 36px 60px;
  }
}
@media only screen and (max-width: 1024px) {
  .science-secD .compare-col {
    padding: 30px 40px;
  }
}
@media only screen and (max-width: 768px) {
  .science-secD .compare-col {
    padding: 24px 20px;
    border-radius: 10px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secD .compare-col {
    padding: 20px 16px;
  }
}
.science-secD .compare-col h4 {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 28px;
  padding-bottom: 14px;
}
@media only screen and (max-width: 540px) {
  .science-secD .compare-col h4 {
    margin-bottom: 10px;
  }
}
.science-secD .compare-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media only screen and (max-width: 768px) {
  .science-secD .compare-col ul {
    gap: 18px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secD .compare-col ul {
    gap: 14px;
  }
}
.science-secD .compare-col ul li {
  color: var(--text);
}
.science-secD .compare-col ul li strong {
  color: var(--text);
  font-weight: 700;
}
.science-secD .compare-col--right h4 {
  color: var(--primary);
}
.science-secD .compare-col--right ul li strong {
  color: var(--primary);
}
.science-secD .compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .science-secD .compare-divider {
    display: none;
  }
}
.science-secD .compare-divider::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: var(--primary);
}
.science-secD .compare-divider span {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--secondary);
  color: var(--white);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(108, 67, 211, 0.3);
}

.science-secE {
  padding: 70px 0;
}
@media only screen and (max-width: 1024px) {
  .science-secE {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .science-secE {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .science-secE {
    padding: 30px 0;
  }
}
.science-secE .heading {
  width: 100%;
  margin: 0 auto 40px;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .science-secE .heading {
    margin-bottom: 24px;
    max-width: 320px;
  }
}
.science-secE .tab-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 110px;
  border-bottom: 1px solid rgb(226, 226, 226);
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1024px) {
  .science-secE .tab-nav {
    gap: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .science-secE .tab-nav {
    gap: 50px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secE .tab-nav {
    gap: 12px;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .science-secE .tab-nav::-webkit-scrollbar {
    display: none;
  }
}
.science-secE .tab-nav li {
  position: relative;
  padding: 24px 0;
  cursor: pointer;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .science-secE .tab-nav li {
    padding: 18px 0;
  }
}
@media only screen and (max-width: 540px) {
  .science-secE .tab-nav li {
    padding: 14px 16px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}
.science-secE .tab-nav li::after {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  opacity: 0;
  transform: scaleX(0);
  transition: 0.3s;
}
.science-secE .tab-nav li.active {
  color: var(--primary);
}
.science-secE .tab-nav li.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.science-secE .tab-nav-content .tabs {
  display: none;
  grid-template-columns: 380px 1fr;
  gap: 125px;
  align-items: center;
}
@media only screen and (max-width: 1280px) {
  .science-secE .tab-nav-content .tabs {
    gap: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .science-secE .tab-nav-content .tabs {
    grid-template-columns: 300px 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .science-secE .tab-nav-content .tabs {
    grid-template-columns: 260px 1fr;
    gap: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .science-secE .tab-nav-content .tabs {
    grid-template-columns: 1fr;
  }
}
.science-secE .tab-nav-content .tabs.active {
  display: grid;
}
.science-secE .tab-nav-content .tabs .media {
  position: relative;
  border: 20px solid var(--primary);
  overflow: hidden;
  border-radius: 50%;
  width: 380px;
  height: 380px;
  margin: 0 auto;
  flex-shrink: 0;
  animation: Spouse 2s linear infinite alternate;
}
@keyframes Spouse {
  0% {
    outline: 15px solid rgb(226, 216, 245);
  }
  100% {
    outline: 30px solid rgb(226, 216, 245);
  }
}
@media only screen and (max-width: 1199px) {
  .science-secE .tab-nav-content .tabs .media {
    width: 300px;
    height: 300px;
  }
}
@media only screen and (max-width: 991px) {
  .science-secE .tab-nav-content .tabs .media {
    width: 260px;
    height: 260px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secE .tab-nav-content .tabs .media {
    width: 220px;
    height: 220px;
    border-width: 12px;
  }
}
.science-secE .tab-nav-content .tabs .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.science-secE .tab-nav-content .tabs .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 585px;
}
@media only screen and (max-width: 1280px) {
  .science-secE .tab-nav-content .tabs .content-wrapper {
    width: 100%;
  }
}
@media only screen and (max-width: 540px) {
  .science-secE .tab-nav-content .tabs .content-wrapper {
    gap: 20px;
  }
}
.science-secE .tab-nav-content .tabs .content-wrapper .content h6 {
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.science-secE .tab-nav-content .tabs .content-wrapper .content p {
  color: var(--text);
}

.science-secF {
  padding: 70px 0;
  position: relative;
  background: linear-gradient(0deg, #7649C8 0%, #3A2462 100%);
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .science-secF {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .science-secF {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .science-secF {
    padding: 30px 0;
  }
}
.science-secF > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}
.science-secF .container {
  position: relative;
  z-index: 1;
  max-width: 100%;
}
.science-secF .content-wrapper .heading {
  text-align: center;
  width: 100%;
  max-width: 450px;
  margin: 0 auto 3rem;
}
@media only screen and (max-width: 540px) {
  .science-secF .content-wrapper .heading {
    margin-bottom: 2rem;
  }
}
.science-secF .content-wrapper .heading h3 {
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.science-secF .swiper-wrap {
  position: relative;
}
.science-secF .swiper-wrap .centerSlider {
  padding: 20px 0 50px;
}
@media only screen and (max-width: 540px) {
  .science-secF .swiper-wrap .centerSlider {
    padding: 16px 0 40px;
  }
}
.science-secF .swiper-wrap .centerSlider .swiper-slide {
  opacity: 0.5;
  transform: scale(0.88);
  transition: opacity 0.4s, transform 0.4s;
  pointer-events: none;
}
.science-secF .swiper-wrap .centerSlider .swiper-slide.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.science-secF .swiper-wrap .centerSlider .swiper-slide .card {
  background: var(--white);
  border-radius: 16px;
  padding: 34px;
}
.science-secF .swiper-wrap .centerSlider .swiper-slide .card h6 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.science-secF .swiper-wrap .centerSlider .swiper-slide .card p {
  color: var(--text);
}
.science-secF .swiper-wrap .swiper-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 700px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}
@media only screen and (max-width: 991px) {
  .science-secF .swiper-wrap .swiper-group {
    display: none;
  }
}
.science-secF .swiper-wrap .swiper-group button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
@media only screen and (max-width: 540px) {
  .science-secF .swiper-wrap .swiper-group button {
    width: 36px;
    height: 36px;
  }
}
.science-secF .swiper-wrap .swiper-group button:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
}
.science-secF .swiper-wrap .swiper-group button svg {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 540px) {
  .science-secF .swiper-wrap .swiper-group button svg {
    width: 20px;
    height: 20px;
  }
}
.science-secF .swiper-wrap .swiper-group button svg path {
  fill: var(--white);
}
.science-secF .swiper-wrap .swiper-group button.centerSlider-prev svg {
  transform: rotate(90deg);
}
.science-secF .swiper-wrap .swiper-group button.centerSlider-next svg {
  transform: rotate(-90deg);
}

.science-secG {
  padding: 70px 0 0;
  background: var(--gray);
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .science-secG {
    padding: 50px 0 0;
  }
}
@media only screen and (max-width: 768px) {
  .science-secG {
    padding: 40px 0 0;
  }
}
.science-secG::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  border: 50px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}
.science-secG .heading {
  width: 100%;
  max-width: 575px;
  margin: 0 auto 4rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .science-secG .heading {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 540px) {
  .science-secG .heading {
    margin-bottom: 2rem;
  }
}
.science-secG .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}
@media only screen and (max-width: 1366px) {
  .science-secG .grid {
    gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .science-secG .grid {
    grid-template-columns: 100%;
  }
}
.science-secG .grid .media {
  width: 450px;
  height: 450px;
  margin: auto 0 0;
  position: relative;
}
@media only screen and (max-width: 1280px) {
  .science-secG .grid .media {
    width: 380px;
    height: 380px;
  }
}
@media only screen and (max-width: 1024px) {
  .science-secG .grid .media {
    width: 320px;
    height: 320px;
  }
}
@media only screen and (max-width: 991px) {
  .science-secG .grid .media {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    order: 2;
  }
}
@media only screen and (max-width: 540px) {
  .science-secG .grid .media {
    width: 260px;
    height: 260px;
  }
}
@media only screen and (max-width: 375px) {
  .science-secG .grid .media {
    width: 220px;
    height: 220px;
  }
}
.science-secG .grid .media img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 3;
  position: relative;
}
.science-secG .grid .content {
  padding-bottom: 70px;
  z-index: 3;
}
@media only screen and (max-width: 991px) {
  .science-secG .grid .content {
    padding-bottom: 40px;
    text-align: center;
  }
}
@media only screen and (max-width: 540px) {
  .science-secG .grid .content {
    padding-bottom: 30px;
  }
}
.science-secG .grid .content h3 {
  color: var(--primary);
}
.science-secG .grid .content h6 {
  margin: 20px 0 10px;
  color: var(--primary);
}
@media only screen and (max-width: 540px) {
  .science-secG .grid .content h6 {
    margin: 14px 0 8px;
  }
}
.science-secG .grid .content .para {
  height: 204px;
  overflow: auto;
  padding-right: 35px;
}
@media only screen and (max-width: 768px) {
  .science-secG .grid .content .para {
    height: 180px;
    padding-right: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secG .grid .content .para {
    height: auto;
    max-height: 200px;
    padding-right: 12px;
  }
}
.science-secG .grid .content .para::-webkit-scrollbar {
  width: 4px;
  background: #cecece;
}
.science-secG .grid .content .para::-webkit-scrollbar-track {
  box-shadow: none;
}
.science-secG .grid .content .para::-webkit-scrollbar-thumb {
  background-color: var(--white);
}
.science-secG .grid .content .para::-webkit-scrollbar-thumb {
  background: var(--primary) !important;
}
.science-secG .grid .content .para::-webkit-scrollbar-thumb:hover {
  background: var(--bgcolor);
}
.science-secG .grid .content .para p:not(:last-child) {
  margin-bottom: 15px;
}

.science-secH {
  padding: 70px 0;
}
@media only screen and (max-width: 1024px) {
  .science-secH {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .science-secH {
    padding: 40px 0;
  }
}
.science-secH .heading {
  width: 100%;
  max-width: 475px;
  margin: 0 auto 3rem;
  text-align: center;
}
@media only screen and (max-width: 540px) {
  .science-secH .heading {
    margin-bottom: 2rem;
  }
}
.science-secH .accordion-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
@media only screen and (max-width: 991px) {
  .science-secH .accordion-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 540px) {
  .science-secH .accordion-wrapper {
    grid-template-columns: 1fr;
  }
}
.science-secH .accordion-wrapper .accordion-item {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media only screen and (max-width: 768px) {
  .science-secH .accordion-wrapper .accordion-item {
    min-height: 140px;
    padding: 20px 16px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secH .accordion-wrapper .accordion-item {
    min-height: 110px;
    padding: 16px 14px;
  }
}
.science-secH .accordion-wrapper .accordion-item.active {
  background: var(--gray-sec);
}
.science-secH .accordion-wrapper .accordion-item.active .accordion-header h4 {
  color: var(--primary);
  font-weight: 600;
}
.science-secH .accordion-wrapper .accordion-item.active .accordion-content {
  display: block;
}
.science-secH .accordion-wrapper .accordion-item .accordion-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}
@media only screen and (max-width: 540px) {
  .science-secH .accordion-wrapper .accordion-item .accordion-header {
    gap: 12px;
  }
}
.science-secH .accordion-wrapper .accordion-item .accordion-header h4 {
  font-weight: 600;
  color: rgb(181, 181, 181);
  line-height: 1.4;
  margin: 0;
  font-size: 16px;
  transition: color 0.3s ease;
}
.science-secH .accordion-wrapper .accordion-item .accordion-header .accordion-icon {
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  color: rgb(181, 181, 181);
  flex-shrink: 0;
  align-self: flex-end;
  line-height: 1;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 540px) {
  .science-secH .accordion-wrapper .accordion-item .accordion-header .accordion-icon {
    width: 24px;
    height: 24px;
  }
}
.science-secH .accordion-wrapper .accordion-item .accordion-content {
  display: none;
  margin-top: 12px;
}
.science-secH .accordion-wrapper .accordion-item .accordion-content p {
  color: var(--text);
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
}

.science-secI {
  padding: 100px 0;
  background: linear-gradient(180deg, #7649C8 0%, #3A2462 100%);
}
@media only screen and (max-width: 1024px) {
  .science-secI {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 768px) {
  .science-secI {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 540px) {
  .science-secI {
    padding: 40px 0;
  }
}
.science-secI .heading {
  width: 100%;
  max-width: 500px;
  margin: 0 auto 6rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .science-secI .heading {
    margin-bottom: 4rem;
  }
}
@media only screen and (max-width: 540px) {
  .science-secI .heading {
    margin-bottom: 3rem;
  }
}
.science-secI .heading h3 {
  color: var(--white);
  margin: 0;
}
.science-secI .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
@media only screen and (max-width: 1024px) {
  .science-secI .grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .science-secI .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media only screen and (max-width: 768px) {
  .science-secI .grid {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 540px) {
  .science-secI .grid {
    gap: 20px;
  }
}
.science-secI .grid .item {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .science-secI .grid .item::after {
    display: none;
  }
}
@media only screen and (max-width: 540px) {
  .science-secI .grid .item {
    padding: 0 50px;
  }
}
.science-secI .grid .item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  width: 1px;
  height: 130px;
  background: rgba(255, 255, 255, 0.15);
}
.science-secI .grid .item .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 540px) {
  .science-secI .grid .item .icon {
    width: 70px;
    height: 70px;
    margin-bottom: 14px;
  }
}
.science-secI .grid .item .icon img {
  width: 45px;
  height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 540px) {
  .science-secI .grid .item .icon img {
    width: 36px;
    height: 36px;
  }
}
.science-secI .grid .item h6 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}
.science-secI .grid .item p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  font-size: 14px;
}

.science-secJ {
  padding: 70px 0;
}
@media only screen and (max-width: 1024px) {
  .science-secJ {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 768px) {
  .science-secJ {
    padding: 40px 0;
  }
}
@media only screen and (max-width: 540px) {
  .science-secJ {
    padding: 30px 0;
  }
}
.science-secJ .heading {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 4rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .science-secJ .heading {
    margin-bottom: 2.5rem;
  }
}
@media only screen and (max-width: 540px) {
  .science-secJ .heading {
    margin-bottom: 2rem;
  }
}
.science-secJ .grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
@media only screen and (max-width: 991px) {
  .science-secJ .grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secJ .grid {
    gap: 24px;
  }
}
.science-secJ .grid .media {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  box-shadow: 0px 6.13px 25.38px 0px rgba(100, 100, 111, 0.2);
  background: var(--white);
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 540px) {
  .science-secJ .grid .media {
    width: 260px;
    height: 260px;
  }
}
@media only screen and (max-width: 375px) {
  .science-secJ .grid .media {
    width: 220px;
    height: 220px;
  }
}
.science-secJ .grid .media img {
  width: 200px;
  height: 220px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media only screen and (max-width: 540px) {
  .science-secJ .grid .media img {
    width: 150px;
    height: 165px;
  }
}
.science-secJ .grid .item-content {
  width: 100%;
  max-width: 520px;
}
@media only screen and (max-width: 991px) {
  .science-secJ .grid .item-content {
    max-width: 100%;
  }
}
.science-secJ .grid .item-content h6 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 24px;
}
@media only screen and (max-width: 540px) {
  .science-secJ .grid .item-content h6 {
    margin-bottom: 16px;
  }
}
.science-secJ .grid .item-content p {
  color: var(--text);
}
.science-secJ .grid .item-content p:not(:last-child) {
  margin-bottom: 24px;
}
@media only screen and (max-width: 540px) {
  .science-secJ .grid .item-content p:not(:last-child) {
    margin-bottom: 16px;
  }
}
.science-secJ .grid .item-content .btn-group {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .science-secJ .grid .item-content .btn-group {
    margin-top: 28px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secJ .grid .item-content .btn-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 540px) {
  .science-secJ .grid .item-content .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
}/*# sourceMappingURL=science.css.map */