.Grid2 {
  width: 50rem;
  margin: 5rem auto;
}
.Grid2-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
}
.Grid2-row2 {
  display: flex;
    justify-content: space-evenly;
    margin-bottom: 2.5rem;
    flex-direction: row;
    align-items: stretch;
}
.Card2 {
  position: relative;
  flex: 0 1 15rem;
  background-color: #fff;
  padding-bottom: 5rem;
  transition: background-color 0.2s cubic-bezier(0.5, 0.3, 0.8, 0.06);
  color: #000;
}
.Card2-thumb {
  position: relative;
  width: 15rem;
  height: 10rem;
  perspective-origin: 50% 0%;
  perspective: 600px;
  z-index: 1;
}
.Card2-image,
.Card2-shadow {
  position: absolute;
  display: block;
  width: 15rem;
  height: 10rem;
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}
.Card2-shadow {
  opacity: 0.8;
}
.Card2-shadow:nth-child(1) {
  opacity: 0.6;
  background-color: #673ab7;
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1) 0.07s;
}
.Card2-shadow:nth-child(2) {
  opacity: 0.7;
  background-color: #3f51b5;
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1) 0.05s;
}
.Card2-shadow:nth-child(3) {
  background-color: #2196f3;
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1) 0.03s;
}
.Card2-image {
  position: relative;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #607d8b;
}
.Card2-image::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #3f51b5;
  content: '';
  opacity: 0;
  transition: opacity 0.1s;
}
.Card2-title,
.Card2-explore {
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 5rem;
  text-align: center;
  transition: all 0.2s cubic-bezier(0.5, 0.3, 0.8, 0.06);
}
.Card2-title span,
.Card2-explore span {
  padding: 0.5rem;
  flex: 1 1 auto;
  text-align: center;
}
.Card2-explore {
  opacity: 0;
  transform: translate(0, -1rem);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #673ab7;
}
.Card2-button {
  position: absolute;
  left: 50%;
  top: 5rem;
  padding: 0.5rem 1rem;
  background-color: #fff;
  border-radius: 2rem;
  border: 2px solid #3f51b5;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  transform: translate(-50%, 2rem);
  cursor: pointer;
  transition: all 0.2s;
  opacity: 0;
  outline: none;
  z-index: 4;
}
.Card2:hover,
.Card2--active {
  background-color: #f5f5f5;
  cursor: pointer;
}
.Card2:hover .Card2-thumb,
.Card2--active .Card2-thumb {
  z-index: 3;
}
.Card2:hover .Card2-title,
.Card2--active .Card2-title {
  opacity: 0;
}
.Card2:hover .Card2-explore,
.Card2--active .Card2-explore {
  opacity: 1;
  transform: translate(0, 1rem);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1) 0.1s;
}
.Card2:hover .Card2-image,
.Card2--active .Card2-image {
  transform: scale(1.05) translate(0, -1rem) rotateX(25deg);
}
.Card2:hover .Card2-image::before,
.Card2--active .Card2-image::before {
  opacity: 0.4;
}
.Card2:hover .Card2-shadow:nth-child(3),
.Card2--active .Card2-shadow:nth-child(3) {
  transform: scale(1.02) translate(0, -0.3rem) rotateX(15deg);
}
.Card2:hover .Card2-shadow:nth-child(2),
.Card2--active .Card2-shadow:nth-child(2) {
  transform: scale(0.9) translate(0, 1rem) rotateX(15deg);
}
.Card2:hover .Card2-shadow:nth-child(1),
.Card2--active .Card2-shadow:nth-child(1) {
  transform: scale(0.82) translate(0, 2.4rem) rotateX(5deg);
}
.Card2:hover .Card2-button,
.Card2--active .Card2-button {
  opacity: 1;
  color: #3f51b5;
  transform: translate(-50%, 0);
}
.Card2:hover .Card2-button:hover,
.Card2--active .Card2-button:hover {
  color: #fff;
  background-color: #3f51b5;
}
.Card2--active,
.Card2--active:hover {
  background: none;
}
.Card2--active .Card2-explore,
.Card2--active:hover .Card2-explore {
  opacity: 0;
  transform: translate(0, 3rem);
  transition: all 0.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.Card2--active .Card2-image,
.Card2--active:hover .Card2-image {
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transform: scale(1.05) translate(0, -2.5rem) rotateX(50deg);
}
.Card2--active .Card2-image::before,
.Card2--active:hover .Card2-image::before {
  opacity: 0.4;
}
.Card2--active .Card2-button,
.Card2--active:hover .Card2-button {
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.42, 0, 0.58, 1);
  transform: translate(-50%, -2rem) scale(1, 0.4);
}
.Grid2-row:nth-child(1) .Card2:nth-child(1).Card2--active .Card2-shadow:nth-child(3),
.Grid2-row:nth-child(1) .Card2:nth-child(1) .Card2--active:hover .Card2-shadow:nth-child(3) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1);
  transform: scale(1) translate(6%, 113%);
}
.Grid2-row:nth-child(1) .Card2:nth-child(1).Card2--active .Card2-shadow:nth-child(2),
.Grid2-row:nth-child(1) .Card2:nth-child(1) .Card2--active:hover .Card2-shadow:nth-child(2) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.1s;
  transform: scale(1) translate(6%, 223%);
}
.Grid2-row:nth-child(1) .Card2:nth-child(1).Card2--active .Card2-shadow:nth-child(1),
.Grid2-row:nth-child(1) .Card2:nth-child(1) .Card2--active:hover .Card2-shadow:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.2s;
  transform: scale(2.1) translate(81%, 80%);
}
.Grid2-row:nth-child(1) .Card2:nth-child(2).Card2--active .Card2-shadow:nth-child(3),
.Grid2-row:nth-child(1) .Card2:nth-child(2) .Card2--active:hover .Card2-shadow:nth-child(3) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1);
  transform: scale(1) translate(-108%, 113%);
}
.Grid2-row:nth-child(1) .Card2:nth-child(2).Card2--active .Card2-shadow:nth-child(2),
.Grid2-row:nth-child(1) .Card2:nth-child(2) .Card2--active:hover .Card2-shadow:nth-child(2) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.1s;
  transform: scale(1) translate(-108%, 223%);
}
.Grid2-row:nth-child(1) .Card2:nth-child(2).Card2--active .Card2-shadow:nth-child(1),
.Grid2-row:nth-child(1) .Card2:nth-child(2) .Card2--active:hover .Card2-shadow:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.2s;
  transform: scale(2.1) translate(26%, 80%);
}
.Grid2-row:nth-child(1) .Card2:nth-child(3).Card2--active .Card2-shadow:nth-child(3),
.Grid2-row:nth-child(1) .Card2:nth-child(3) .Card2--active:hover .Card2-shadow:nth-child(3) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1);
  transform: scale(1) translate(-222%, 113%);
}
.Grid2-row:nth-child(1) .Card2:nth-child(3).Card2--active .Card2-shadow:nth-child(2),
.Grid2-row:nth-child(1) .Card2:nth-child(3) .Card2--active:hover .Card2-shadow:nth-child(2) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.1s;
  transform: scale(1) translate(-222%, 223%);
}
.Grid2-row:nth-child(1) .Card2:nth-child(3).Card2--active .Card2-shadow:nth-child(1),
.Grid2-row:nth-child(1) .Card2:nth-child(3) .Card2--active:hover .Card2-shadow:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.2s;
  transform: scale(2.1) translate(-29%, 80%);
}
.Grid2-row:nth-child(2) .Card2:nth-child(1).Card2--active .Card2-shadow:nth-child(3),
.Grid2-row:nth-child(2) .Card2:nth-child(1) .Card2--active:hover .Card2-shadow:nth-child(3) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1);
  transform: scale(1) translate(6%, -55%);
}
.Grid2-row:nth-child(2) .Card2:nth-child(1).Card2--active .Card2-shadow:nth-child(2),
.Grid2-row:nth-child(2) .Card2:nth-child(1) .Card2--active:hover .Card2-shadow:nth-child(2) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.1s;
  transform: scale(1) translate(6%, 55%);
}
.Grid2-row:nth-child(2) .Card2:nth-child(1).Card2--active .Card2-shadow:nth-child(1),
.Grid2-row:nth-child(2) .Card2:nth-child(1) .Card2--active:hover .Card2-shadow:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.2s;
  transform: scale(2.1) translate(81%, 0%);
}
.Grid2-row:nth-child(2) .Card2:nth-child(2).Card2--active .Card2-shadow:nth-child(3),
.Grid2-row:nth-child(2) .Card2:nth-child(2) .Card2--active:hover .Card2-shadow:nth-child(3) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1);
  transform: scale(1) translate(-108%, -55%);
}
.Grid2-row:nth-child(2) .Card2:nth-child(2).Card2--active .Card2-shadow:nth-child(2),
.Grid2-row:nth-child(2) .Card2:nth-child(2) .Card2--active:hover .Card2-shadow:nth-child(2) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.1s;
  transform: scale(1) translate(-108%, 55%);
}
.Grid2-row:nth-child(2) .Card2:nth-child(2).Card2--active .Card2-shadow:nth-child(1),
.Grid2-row:nth-child(2) .Card2:nth-child(2) .Card2--active:hover .Card2-shadow:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.2s;
  transform: scale(2.1) translate(26%, 0%);
}
.Grid2-row:nth-child(2) .Card2:nth-child(3).Card2--active .Card2-shadow:nth-child(3),
.Grid2-row:nth-child(2) .Card2:nth-child(3) .Card2--active:hover .Card2-shadow:nth-child(3) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1);
  transform: scale(1) translate(-222%, -55%);
}
.Grid2-row:nth-child(2) .Card2:nth-child(3).Card2--active .Card2-shadow:nth-child(2),
.Grid2-row:nth-child(2) .Card2:nth-child(3) .Card2--active:hover .Card2-shadow:nth-child(2) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.1s;
  transform: scale(1) translate(-222%, 55%);
}
.Grid2-row:nth-child(2) .Card2:nth-child(3).Card2--active .Card2-shadow:nth-child(1),
.Grid2-row:nth-child(2) .Card2:nth-child(3) .Card2--active:hover .Card2-shadow:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.2s;
  transform: scale(2.1) translate(-29%, 0%);
}
.Grid2-row:nth-child(3) .Card2:nth-child(1).Card2--active .Card2-shadow:nth-child(3),
.Grid2-row:nth-child(3) .Card2:nth-child(1) .Card2--active:hover .Card2-shadow:nth-child(3) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1);
  transform: scale(1) translate(6%, -223%);
}
.Grid2-row:nth-child(3) .Card2:nth-child(1).Card2--active .Card2-shadow:nth-child(2),
.Grid2-row:nth-child(3) .Card2:nth-child(1) .Card2--active:hover .Card2-shadow:nth-child(2) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.1s;
  transform: scale(1) translate(6%, -113%);
}
.Grid2-row:nth-child(3) .Card2:nth-child(1).Card2--active .Card2-shadow:nth-child(1),
.Grid2-row:nth-child(3) .Card2:nth-child(1) .Card2--active:hover .Card2-shadow:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.2s;
  transform: scale(2.1) translate(81%, -80%);
}
.Grid2-row:nth-child(3) .Card2:nth-child(2).Card2--active .Card2-shadow:nth-child(3),
.Grid2-row:nth-child(3) .Card2:nth-child(2) .Card2--active:hover .Card2-shadow:nth-child(3) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1);
  transform: scale(1) translate(-108%, -223%);
}
.Grid2-row:nth-child(3) .Card2:nth-child(2).Card2--active .Card2-shadow:nth-child(2),
.Grid2-row:nth-child(3) .Card2:nth-child(2) .Card2--active:hover .Card2-shadow:nth-child(2) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.1s;
  transform: scale(1) translate(-108%, -113%);
}
.Grid2-row:nth-child(3) .Card2:nth-child(2).Card2--active .Card2-shadow:nth-child(1),
.Grid2-row:nth-child(3) .Card2:nth-child(2) .Card2--active:hover .Card2-shadow:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.2s;
  transform: scale(2.1) translate(26%, -80%);
}
.Grid2-row:nth-child(3) .Card2:nth-child(3).Card2--active .Card2-shadow:nth-child(3),
.Grid2-row:nth-child(3) .Card2:nth-child(3) .Card2--active:hover .Card2-shadow:nth-child(3) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1);
  transform: scale(1) translate(-222%, -223%);
}
.Grid2-row:nth-child(3) .Card2:nth-child(3).Card2--active .Card2-shadow:nth-child(2),
.Grid2-row:nth-child(3) .Card2:nth-child(3) .Card2--active:hover .Card2-shadow:nth-child(2) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.1s;
  transform: scale(1) translate(-222%, -113%);
}
.Grid2-row:nth-child(3) .Card2:nth-child(3).Card2--active .Card2-shadow:nth-child(1),
.Grid2-row:nth-child(3) .Card2:nth-child(3) .Card2--active:hover .Card2-shadow:nth-child(1) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.2s;
  transform: scale(2.1) translate(-29%, -80%);
}
.Gallery2 {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #f5f5f5;
  opacity: 0;
  transform: scale(1.2);
  transition: none;
  padding: 18rem 0;
}
.Gallery2-header {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  background-color: #eee;
  padding-bottom: 5rem;
}
.Gallery2-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 3rem;
  opacity: 0.5;
  cursor: pointer;
}
.Gallery2-close:hover {
  opacity: 0.8;
}
.Gallery2-images {
      display: flex;
    /* width: 100rem; */
    /* margin: 0 auto; */
    /* margin-bottom: 1rem; */
    /* flex-wrap: nowrap; */
    justify-content: center;
}
.Gallery2-images:nth-child(3) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.33s;
  opacity: 0;
  transform: translate(0, 3rem) scale(1.1);
}
.Gallery2-images:nth-child(4) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.44s;
  opacity: 0;
  transform: translate(0, 3rem) scale(1.1);
}
.Gallery2-images:nth-child(5) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.55s;
  opacity: 0;
  transform: translate(0, 3rem) scale(1.1);
}
.Gallery2-images:nth-child(6) {
  transition: all 0.2s cubic-bezier(0.7, 0, 0.78, 1) 0.66s;
  opacity: 0;
  transform: translate(0, 3rem) scale(1.1);
}
.Gallery2-left {
  flex: 1 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.Gallery2-image {
  display: block;
  width: 15rem;
  height: 9.5rem;
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  background: #fff;
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.Gallery2-image--primary {
  width: 31rem;
  height: 20rem;
}
.Gallery2--active {
  z-index: 100;
  background: #fff;
  transform: scale(1);
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.7, 0, 0.78, 1) 0.1s;
  overflow-y: scroll;
}
.Gallery2--active .Gallery2-close {
  display: block;
}
.Gallery2--active .Gallery2-images {
  opacity: 1;
  transform: none;
}
.galeri2-images {
    width: 500px;
    height: auto;
    padding: 15px;
}






















.btn-23,
.btn-23 *,
.btn-23 :after,
.btn-23 :before,
.btn-23:after,
.btn-23:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-23 {
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: button;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif,
    Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
}

.btn-23:disabled {
  cursor: default;
}

.btn-23:-moz-focusring {
  outline: auto;
}

.btn-23 svg {
  display: block;
  vertical-align: middle;
}

.btn-23 [hidden] {
  display: none;
}

.btn-23 {
  border-radius: 99rem;
  border-width: 2px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}

.sabit {
  position: sticky;
  top: 0px;
}

.btn-23 span {
  display: grid;
  inset: 0;
  place-items: center;
  position: absolute;
  transition: opacity 0.2s ease;
}

.btn-23 .marquee {
  --spacing: 5em;
  --start: 0em;
  --end: 5em;
  -webkit-animation: marquee 1s linear infinite;
  animation: marquee 1s linear infinite;
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
  opacity: 0;
  position: relative;
  text-shadow: #fff var(--spacing) 0, #fff calc(var(--spacing) * -1) 0,
    #fff calc(var(--spacing) * -2) 0;
}

.btn-23:hover .marquee {
  -webkit-animation-play-state: running;
  animation-play-state: running;
  opacity: 1;
}

.btn-23:hover .text {
  opacity: 0;
}

@-webkit-keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}

@keyframes marquee {
  0% {
    transform: translateX(var(--start));
  }

  to {
    transform: translateX(var(--end));
  }
}
.videor {
  padding: 15px;
}
.navbar2 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}








.cardp {
  overflow: hidden;
  float:left;
  margin: 10px 35px 10px 35px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  width: 20rem;
  height: auto;
  background-color: rgb(122, 48, 143);
  background-image: radial-gradient(
      circle at 0% 0%,
      rgb(37, 7, 44) 15%,
      rgba(0, 0, 0, 0) 75%
    ),
    radial-gradient(
      circle at 100% 100%,
      rgb(25, 2, 31, 0.9) 15%,
      rgba(0, 0, 0, 0) 150%
    ),
    linear-gradient(
      135deg,
      rgba(24, 8, 28, 0) 0%,
      rgb(122, 48, 143) 50%,
      rgba(24, 8, 28, 0) 100%
    );
  border-radius: 0.5rem;
}

.cardp::before {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  background-color: rgb(122, 48, 143);
  background-image: linear-gradient(
    0deg,
    rgba(118, 42, 180, 1) 0%,
    rgb(199, 95, 228) 75%
  );
  border-radius: 9999px;
  box-shadow: 0 1px 5px 3px rgb(199, 95, 228), 0 0 30px 5px rgb(199, 95, 228);
}

.cardp .titlep {
  font-size: 1rem;
  color: white;
  font-weight: 600;
}

.cardp .pricingp {
  font-size: 1.5rem;
  color: white;
  font-weight: 600;
}

.cardp .pricingp .pricing-timep,
.cardp .sub-titlep {
  font-size: 0.75rem;
  color: rgb(184, 132, 199);
  font-weight: 500;
}

.cardp .listp {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: white;
  font-weight: 500;
  list-style: none;
}

.cardp .listp .list-itemp .checkp {
  margin-right: 0.25rem;
  font-size: 1rem;
  color: rgb(199, 95, 228);
  font-weight: 900;
}

.cardp .buttonp {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  width: 100%;
  height: fit-content;
  background-color: rgb(122, 48, 143);
  font-size: 0.75rem;
  color: white;
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0px 0px 2px 1px rgb(122, 48, 143);
  transition: all 0.3s cubic-bezier(1, 0, 0, 1);
}

.cardp .buttonp .text-buttonp {
  position: relative;
  z-index: 10;
}

.cardp .buttonp::before,
.cardp .buttonp::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}
.cardp .buttonp::before {
  left: 0;
  background-image: radial-gradient(
    circle at 0% 45%,
    rgba(16, 5, 36, 1) 19%,
    rgba(16, 5, 36, 0.26) 46%,
    rgba(16, 5, 36, 0) 100%
  );
}
.cardp .buttonp::after {
  right: 0;
  background-image: radial-gradient(
    circle at 100% 45%,
    rgba(16, 5, 36, 1) 19%,
    rgba(16, 5, 36, 0.26) 46%,
    rgba(16, 5, 36, 0) 100%
  );
}

.cardp .buttonp:hover {
  box-shadow: 0px 0px 20px 0 rgb(122, 48, 143);
}

.cardp .buttonp:hover::before,
.cardp .buttonp:hover::after {
  width: 0;
  opacity: 0;
}




.about-bg2 {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-size: cover;
  margin: auto;
}



.arkaplanmenumobilblack {
  background-color: black;
}


.paddingsağsol {
  padding-left: 50px;
    padding-right: 50px;
}