@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

:root {
  --clr-primary: #F4EA10;
  --clr-dark: #000;
  --clr-white: #fff;
  --clr-purple: #73358B;
  --clr-purple-gradient: linear-gradient(180deg, #73358B 20%, #340347 90%);
}

body {
  overflow-x: hidden;
  font-size: 14px;
  line-height: 1.5;
  background: var(--clr-dark);
  color: var(--clr-white);
}

a {
  transition: 0.3s ease-in-out;
  text-decoration: none;
  color: var(--clr-primary);
}

a:hover {
  text-decoration: none;
  color: var(--clr-primary);
  opacity: 0.8;
}

ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

img {
  max-width: 100%;
}

section {
  overflow: hidden;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1176px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* scroll bar */

.scrollbar-gradient::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.scrollbar-gradient::-webkit-scrollbar-thumb {
  background-color: #333;
  border-radius: 10px;
}

/* scroll bar end */

/* scroll top */

#scrollTop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--clr-primary);
  width: 34px;
  height: 34px;
  border-radius: 100%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 90;
  cursor: pointer;
  box-shadow: 0 3px 15px rgb(0 0 0 / 30%);
}

#scrollTop:hover {
  background-color: var(--clr-primary);
}

#scrollTop:after {
  content: "\e5ce";
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  color: var(--clr-dark);
}

#scrollTop.show {
  opacity: 1;
  visibility: visible;
}

/* scroll top end */

/* Button */

.ThemeBtn {
  border: 0;
  background: transparent;
  padding: 12px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 50px;
  background: var(--clr-purple-gradient);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--clr-white);
  transition: all 0.3s ease-in-out;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-iteration-count: 1;
}

.ThemeBtn:hover {
  animation-name: rubberBand;
  color: var(--clr-white);
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1, 0.9, 1);
  }

  40% {
    transform: scale3d(0.9, 1, 1);
  }

  50% {
    transform: scale3d(1, 0.9, 1);
  }

  65% {
    transform: scale3d(.9, 1, 1);
  }

  75% {
    transform: scale3d(1, .9, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

/* Button end */

.topBanner {
  position: relative;
}

.topBanner .topBg {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.verify-productInfo {
  padding: 50px 0 0;
  text-align: center;
}

.verify-productInfo .brandLogo {
  width: 200px;
  margin: 0 0 70px;
}

.verify-productInfo .title {
  margin: 0 0 40px;
  font-size: 80px;
  font-weight: bolder;
  color: var(--clr-primary);
}

.verify-inputBox {
  width: 100%;
  max-width: 570px;
  margin: auto;
  padding: 10px;
  position: relative;
}

.verify-inputBox:after,
.verify-inputBox:before {
  content: '';
  position: absolute;
  width: 150px;
  height: 70px;
  border-radius: 5px;
}

.verify-inputBox:after {
  background: linear-gradient(180deg, var(--clr-primary) 0%, rgba(244, 235, 16, 0) 100%);
  left: 0;
  top: 0;
}

.verify-inputBox:before {
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(244, 235, 16, 0) 0%, var(--clr-primary) 100%);
}

.verify-inputBox .inputBox {
  border: 3px solid var(--clr-purple);
  box-shadow: 0px 0px 80px rgba(100, 46, 124, 0.5);
  border-radius: 5px;
  position: relative;
  z-index: 1;
  background: rgb(255 255 255 / 90%) url(../img/product/pack_man_2.png) center no-repeat;
  background-blend-mode: overlay;
}

.verify-inputBox .inputBox .searchIcon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

.verify-inputBox .inputBox input {
  border: 0;
  min-height: 60px;
  width: 100%;
  padding: 5px 95px 5px 60px;
  outline: none;
  font-size: 18px;
  background: transparent;
}

.verify-inputBox .inputBox .verifyBtn {
  position: absolute;
  right: 15px;
  min-width: 68px;
  height: 60px;
  border: 0;
  background: var(--clr-primary);
  top: -20px;
  border-radius: 5px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
}

.verify-inputBox .inputBox .verifyBtn img {
  width: 32px;
}

.verify-inputBox .inputBox .verifyBtn:after {
  content: '';
  width: 0;
  height: 0;
  border-bottom: 15px solid var(--clr-primary);
  border-right: 10px solid transparent;
  position: absolute;
  top: 3px;
  right: -9px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.15));
}

.banner-mainBg {
  width: 100%;
  margin-top: -250px;
  pointer-events: none;
}

.aboutInfo-container {
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  padding: 115px 0;
}

.aboutInfo-container .wave-circleBg {
  position: absolute;
  right: 150px;
  z-index: -1;
  animation: rotate-animation 100s infinite linear;
}

.rotate-animation {
  animation: rotate-animation 10s infinite linear;
}

@keyframes rotate-animation {
  0% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.aboutInfo-container .aboutInfo {
  background: linear-gradient(180deg, var(--clr-purple) 0%, rgba(116, 54, 140, 0) 100%);
  border: 2px solid var(--clr-primary);
  border-radius: 20px;
  padding: 80px 50px 50px;
  position: relative;
  color: var(--clr-white);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutInfo-container .aboutInfo .pImg {
  position: absolute;
  width: 180px;
  top: 0;
  left: 0;
  opacity: 0.1;
  pointer-events: none;
  height: 100%;
  object-fit: contain;
}

.aboutInfo-container .aboutInfo p {
  font-size: 18px;
  line-height: 32px;
  margin: 0;
}

.aboutInfo-container .aboutInfo .labelImg {
  position: absolute;
  top: -31px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 500px;
}

.aboutInfo-container .aboutInfo h2 {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  line-height: 48px;
  text-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
  color: var(--clr-dark);
  font-weight: 600;
  white-space: nowrap;
}

.aboutInfo-container .aboutLogo {
  border: 2px solid var(--clr-primary);
  border-radius: 20px;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
}

.aboutInfo-container .aboutLogo img {
  width: 175px;
}

.followUs-sec {
  overflow: hidden;
  padding: 120px 0;
}

.followUs-tabContainer {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 50px;
  padding: 0 100px;
}

.followUs-tabContainer .back-box {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: -1;
  bottom: 70px;
}

.followUs-tabContainer .triangle-bg {
  position: absolute;
  top: -60px;
  right: -85px;
  z-index: -2;
  animation: rotate-animation 100s infinite linear;
}

#videoTabContent {
  display: flex;
  width: 280px;
  min-width: 280px;
  height: 560px;
  border: 5px solid var(--clr-primary);
  border-radius: 40px;
  position: relative;
  overflow: hidden;
  background: var(--clr-dark);
}

#videoTabContent:after {
  border-radius: 0 0 10px 10px;
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 130px;
  height: 20px;
  background: var(--clr-primary);
  transform: translateX(-50%);
}

#videoTabContent:before {
  border-radius: 10px;
  content: '';
  position: absolute;
  top: 3px;
  left: 50%;
  width: 90px;
  height: 10px;
  background: var(--clr-dark);
  transform: translateX(-50%);
  z-index: 2;
}

#videoTabContent .tab-pane {
  flex: 1;
}

#videoTabContent .tab-pane video,
#videoTabContent .tab-pane img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.TabInfo {
  display: inline-block;
  margin-bottom: 85px;
  width: calc(100% - 330px);
}

.horizontal-scrollblock {
  overflow-x: auto;
  padding-bottom: 10px;
}

.secInfo {
  margin: 0 0 30px;
}

.secInfo._center {
  text-align: center;
}

.secInfo h2 {
  font-size: 40px;
  font-weight: bold;
  color: var(--clr-primary);
  margin: 0 0 15px;
}

.secInfo h6 {
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 0 0 15px;
}

.secInfo h6:after {
  content: '';
  width: 50px;
  height: 1px;
  background: #fff;
}

.secInfo p {
  font-size: 16px;
  font-weight: 300;
  line-height: normal;
}

#videoTab {
  gap: 15px;
  border: 0;
  width: max-content;
}

#videoTab .nav-item {
  width: 190px;
  min-width: 190px;
}

#videoTab .nav-item .nav-link {
  width: 100%;
  padding: 10px;
  border: 1px solid rgba(246, 238, 39, 0.2);
  border-radius: 10px;
  background: transparent;
  margin: 0;
}

#videoTab .nav-item .nav-link .imgThumb {
  border-radius: 10px;
  overflow: hidden;
}

#videoTab .nav-item .nav-link .imgThumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

#videoTab .nav-item .nav-link.active {
  border-radius: 0;
}

#videoTab .nav-item .nav-link.active .snack {
  opacity: 1;
}

.snack-animation {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  padding: 10px 50px;
}

.snack-animation .snack {
  opacity: 0;
}

.snack-animation .snack:nth-child(1) {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 234, 16, 0) 0%, #F4EA10 23.44%, rgba(244, 234, 16, 0) 100%);
  animation: animate1 2s linear infinite;
}

@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

.snack-animation .snack:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(90deg, rgba(244, 234, 16, 0) 0%, #F4EA10 23.44%, rgba(244, 234, 16, 0) 100%);
  animation: animate2 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(100%);
  }
}

.snack-animation .snack:nth-child(3) {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(244, 234, 16, 0) 0%, #F4EA10 23.44%, rgba(244, 234, 16, 0) 100%);
  animation: animate3 2s linear infinite;
}

@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.snack-animation .snack:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(90deg, rgba(244, 234, 16, 0) 0%, #F4EA10 23.44%, rgba(244, 234, 16, 0) 100%);
  animation: animate4 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }

  100% {
    transform: translateY(-100%);
  }
}

footer {
  padding-top: 120px;
  background: url(../img/footer-wave.png) top no-repeat;
  color: var(--clr-dark);
  background-size: 100% 100%;
  position: relative;
  display: flex;
  justify-content: center;
}

footer:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  background: var(--clr-primary);
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}

@media (min-width: 1400px) {
  footer {
    padding-top: 150px;
  }
}

@media (min-width: 1600px) {
  footer {
    padding-top: 180px;
  }
}

@media (min-width: 1800px) {
  footer {
    padding-top: 200px;
  }
}

.fooLogo {
  position: absolute;
  bottom: 50px;
  width: 150px;
}

.fooNav h5 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 15px;
}

.fooNav a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--clr-dark);
  font-weight: 600;
  text-decoration: underline;
}

.fooNav a img {
  width: 24px;
  position: relative;
  top: 3px;
}

.fooNav-right {
  text-align: right;
}

.fooNav-right a {
  justify-content: flex-end;
}

.copyRight {
  padding: 15px 0;
  text-align: center;
  margin: 40px 0 0;
  position: relative;
}

.copyRight p {
  margin: 0;
}

.copyRight:before {
  content: '';
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

/* verify Modal  */

.modal {
  backdrop-filter: blur(5px);
}

.modal-dialog {
  padding: 0 10px;
}

.modal-content {
  border: 0;
  border-radius: 15px;
  overflow: hidden;
}

.modal-content .btn-close {
  width: 30px;
  height: 30px;
  opacity: 1 !important;
  border-radius: 100%;
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--clr-purple-gradient);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.modal-content .btn-close i {
  color: var(--clr-white);
  font-size: 18px;
}

.verifyInfo {
  padding: 40px;
  text-align: center;
  position: relative;
}

.verifyInfo .diamond-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  pointer-events: none;
}

.verifyInfo .IconBox {
  width: 130px;
  height: 130px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.verifyInfo .IconBox img {
  position: absolute;
  width: 100px;
  z-index: 2;
}

.verifyInfo .IconBox .verify-circle {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  animation: rotate-animation 10s infinite linear;
  z-index: 1;
}

.verifyInfo h2 {
  font-weight: 700;
  font-size: 28px;
  color: var(--clr-purple);
  text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.25);
  margin: 0 0 15px;
}

.verifyInfo h5 {
  font-weight: 600;
  font-size: 24px;
  color: var(--clr-dark);
  margin: 0 0 30px;
}

.verifyInput {
  position: relative;
  width: 100%;
}

.verifyInput input {
  min-height: 60px;
  border-radius: 50px;
  padding: 5px 25px;
  padding-right: 170px;
  border: 0;
  box-shadow: 0px 0px 80px rgba(115, 53, 139, 0.5);
}

.verifyInput input:focus {
  box-shadow: 0px 0px 80px rgba(115, 53, 139, 0.5);
}

.verifyInput .ThemeBtn {
  position: absolute;
  right: 5px;
  top: 5px;
}

.verifyInfo .ThemeBtn {
  min-width: 150px;
}


/* verify Modal end */


/* slider */

.flavors-container {
  position: relative;
}

.flavors-container:before,
.flavors-container:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.flavors-container:before {
  top: 0;
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
}

.flavors-container:after {
  bottom: 0;
  background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
}

.sliderItems {
  width: 100%;
  position: relative;
  /* transition: opacity 1s ease-out; */
  transition: all 0.5s ease-in-out;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

#slider-inneritems {
  height: 650px;
}

.ActiveSlider {
  opacity: 1;
  height: 100%;
  padding: 50px 95px;
}

.sliderItems .itemImg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}


.sliderItems .itemImg:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(134deg, rgba(27, 0, 20, 0.80) 0%, rgba(116, 54, 140, 0.80) 100%);
}

.sliderItems .itemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sliderItems .logo {
  width: 110px;
  margin: 0 0 75px;
}

.sliderItems .sliderItems-details {
  width: 100%;
  max-width: 600px;
}

#Navclick {
  display: flex;
  width: 100%;
  max-width: 500px;
  overflow-y: hidden;
  overflow-x: auto;
  position: absolute;
  left: 95px;
  bottom: 70px;
  padding: 20px;
}

.sliderThumbs {
  display: flex;
  gap: 10px;
  width: max-content;
}

.sliderThumbs li a {
  display: flex;
  border: 0;
  background: transparent;
  outline: none;
  padding: 0;
}

.sliderThumbs li a:after {
  content: '';
  position: absolute;
  width: 30px;
  height: 3px;
  border-radius: 20px;
  background: #fff;
  bottom: -10px;
  left: 18px;
  transition: all 0.3s ease-in-out;
  opacity: 0;
}


.sliderThumbs li a.active:after {
  opacity: 1;
}

.sliderThumbs li a img {
  width: 70px;
  min-width: 70px;
}

.sliderThumbs li {
  position: relative;
}

.rotate-circle {
  width: 700px;
  position: absolute;
  bottom: -470px;
  right: -470px;
  display: inline-flex;
  height: 700px;
  align-items: center;
  justify-content: center;
  transform: rotate(0deg);
  transition: 0.9s cubic-bezier(0.5, -0.5, 0.25, 1.15);
}

.rotate-circle li img {
  width: 100%;
}

.rotate-circle:after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: transparent;
  border-radius: 100%;
  z-index: -1;
}

.rotate-circle li {
  width: 200px;
  position: absolute;
}

.rotate-circle li:first-child {
  top: -130px;
  left: -100px;
  transform: rotate(-50deg);
}

.rotate-circle li:nth-child(2) {
  top: 200px;
  left: -230px;
  transform: rotate(-90deg);
}

.rotate-circle li:nth-child(3) {
  bottom: -130px;
  left: -100px;
  transform: rotate(-135deg);
}

.rotate-circle li:nth-child(4) {
  transform: rotate(-180deg);
  left: 250px;
  bottom: -270px;
}

.rotate-circle li:nth-child(5) {
  bottom: -130px;
  right: -100px;
  transform: rotate(130deg);
}

.rotate-circle li:nth-child(6) {
  top: 200px;
  right: -230px;
  transform: rotate(90deg);
}

.rotate-circle li:nth-child(7) {
  top: -130px;
  right: -100px;
  transform: rotate(45deg);
}

.rotate-circle li:nth-child(8) {
  top: -275px;
  left: 270px;
}


/* slider end */

/* scroll bar  */

.scrollbar-gradient::-webkit-scrollbar-track {
  background-color: var(--clr-white);
  border-radius: 10px;
}

.scrollbar-gradient::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: var(--clr-primary);
  border-radius: 10px;
}

.scrollbar-gradient::-webkit-scrollbar-thumb {
  background-color: var(--clr-primary);
}

/* scroll bar end */

.flavors-box {
  padding: 20px;
  text-align: center;
}

.flavoursThumb {
  text-align: center;
  margin: 0 0 15px;
}

.flavoursThumb img {
  width: 75%;
}

.flavors-box .title {
  font-size: 18px;
  font-weight: bold;
  color: var(--clr-primary);
  margin: 0 0 10px;
}

.flavors-box p {
  font-size: 16px;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.swiper-pagination {
  position: relative;
  margin-top: 30px;
}

.swiper-pagination .swiper-pagination-bullet {
  background: var(--clr-white);
  opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
  background: var(--clr-primary);
}


/* about page */

.infoCard {
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.infoCard:after {
  content: '';
  position: absolute;
  top: 25px;
  left: 35%;
  width: 130px;
  height: 130px;
  background: #333;
  border-radius: 100%;
  transform: translateX(-50%);
  z-index: -1;
}

.infoCard .CardIcon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  background: #333;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
}

.infoCard .CardIcon h6 {
  margin: 0;
  font-size: 20px;
}

.infoCard h2 {
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 400;
}

.infoCard p {
  margin: 0;
  font-weight: 300;
}

.OrangeCard .CardIcon {
  background: linear-gradient(180deg, rgba(235, 87, 87, 1) 0%, rgb(80, 1, 1) 100%);
}

.OrangeCard:after {
  background: rgba(235, 87, 87, 0.15);
}

.BlueCard .CardIcon {
  background: linear-gradient(180deg, rgba(22, 100, 250, 1) 0%, rgb(0, 21, 61) 100%);
}

.BlueCard:after {
  background: rgba(22, 102, 250, 0.15);
}

.GreenCard .CardIcon {
  background: linear-gradient(180deg, rgba(33, 150, 82, 1) 0%, rgb(0, 58, 24) 100%);
}

.GreenCard:after {
  background: rgba(33, 150, 82, 0.15);
}

.spacer {
  padding: 100px 0;
}

.TwoImg-box {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

.TwoImg-box img {
  width: calc(50% - 25px);
  border-radius: 10px;
}

.TwoImg-box img:first-child {
  margin-bottom: -100px;
}

.mediaSlider {
  padding: 50px;
  border: 2px solid var(--clr-primary);
  border-radius: 20px;
  background: linear-gradient(180deg, rgb(101 47 121) 0%, rgb(4 1 4) 100%);
}

.mediaSlider .swiper-slide img {
  border-radius: 15px;
}


.vertical-infoCardGrid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.vertical-infoCardGrid .infoCard {
  flex-direction: row;
  text-align: left;
  gap: 20px;
}

.vertical-infoCardGrid .infoCard h2 {
  font-size: 16px;
  margin: 0 0 10px;
}

.vertical-infoCardGrid .infoCard p {
  font-size: 14px;
}

.vertical-infoCardGrid .infoCard:after {
  top: 20px;
  left: 50px;
  width: 100px;
  height: 100px;
  transform: translateX(0%);
}

.vertical-infoCardGrid .CardIcon {
  margin: 0;
}
/* about page end */