@media only screen and (max-width:768px){
	.raktar-img {
		height:64.38px !important;
	}
}

:root{
  --hero-bg: #0c0a23;
  --blob-1: #4b4cf0;
  --blob-2: #9b98d4;
  --blob-3: #3a2a7a;
  --text: #e9e9f4;
  --muted: #b7b7cd;
  --card-border-1: #8ea1ff;
  --card-border-2: #b79bff;
  --card-border-3: #6ae1ff;
  --card-border-4: #9b98d4;
  --cta-bg: #6b6ef6;
  --cta-bg-hover: #8a8cff;
  --cta-text: #ffffff;
}

.hero-section{
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 56px 16px 6px 16px;
  overflow: hidden;
  color: var(--text);
}

.hero-section-megoldasaink {
	  padding: 0px 16px 6px 16px;
}

.hero-section::before,
.hero-section::after{
  content: "";
  position: absolute;
  animation: hero-drift-1 22s ease-in-out infinite;
}
.hero-section::after{
  animation: hero-drift-2 28s ease-in-out infinite;
}

@keyframes hero-drift-1{
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(2rem,-1rem,0) scale(1.05); }
  100% { transform: translate3d(0,0,0) scale(1); }
}
@keyframes hero-drift-2{
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-2rem,1rem,0) scale(1.08); }
  100% { transform: translate3d(0,0,0) scale(1); }
}

.hero-section__content{
  position: relative;
  z-index: 1;
  width: min(980px, 90vw);
  display: grid;
  gap: 18px;
  text-align: center;
}

.hero-title{
  margin: 0;
  font-size: clamp(22px, 2.2vw + 14px, 28px);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}
.hero-subtitle{
  margin: 0;
  font-size: clamp(22px, 2.5vw + 10px, 36px);
  font-weight: 600;
}
.hero-text{
  margin: 0 auto 8px;
  max-width: 900px;
  color: var(--muted);
  line-height: 1.6;
}
.hero-mark{
  background: transparent;
  color: #fff;
}

.video-card {
  position: relative;
  width: 100%;
  border-radius: 32px;
  padding: 0;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(135deg, #7b61ff, #8a8cff) border-box;
  border: 4px solid transparent;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  will-change: transform, box-shadow, filter;
}

.video-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 34px;
  padding: 2px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(139, 69, 255, 0.3) 50%,
    rgba(110, 255, 255, 0.3) 70%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  z-index: -1;
  animation: holographic-flow 3s linear infinite paused;
}

.video-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 28px;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
  z-index: 1;
}

.video-card-main:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(2deg) scale(1.02);
  box-shadow:
    0 25px 50px rgba(123, 97, 255, 0.25),
    0 15px 35px rgba(139, 152, 255, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.3);
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(135deg, #8b45ff, #6ae1ff, #b79bff) border-box;
  filter: brightness(1.1);
}

.video-card-main:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.video-card-main:hover::after {
  opacity: 1;
}

@keyframes holographic-flow {
  0% {
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(139, 69, 255, 0.4) 50%,
      rgba(110, 255, 255, 0.4) 70%,
      transparent 100%
    );
  }
  33% {
    background: linear-gradient(
      45deg,
      transparent 20%,
      rgba(110, 255, 255, 0.4) 40%,
      rgba(183, 155, 255, 0.4) 60%,
      transparent 90%
    );
  }
  66% {
    background: linear-gradient(
      45deg,
      transparent 10%,
      rgba(183, 155, 255, 0.4) 30%,
      rgba(139, 69, 255, 0.4) 80%,
      transparent 100%
    );
  }
  100% {
    background: linear-gradient(
      45deg,
      transparent 30%,
      rgba(139, 69, 255, 0.4) 50%,
      rgba(110, 255, 255, 0.4) 70%,
      transparent 100%
    );
  }
}

.video-card__ratio{
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  position: relative;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.video-card-main:hover .video-card__ratio {
  border-radius: 24px;
  transform: scale(1.01);
}

.video-card__ratio iframe,
.video-card__ratio > div {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.video-card-main:hover .video-card__ratio iframe,
.video-card-main:hover .video-card__ratio > div {
  transform: scale(1.02);
}

.video-card__ratio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 255, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 2;
}

.video-card:hover .video-card__ratio::before {
  opacity: 1;
}

.hero-cta{
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: .7rem 1.6rem;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: .5px;
  color: var(--cta-text);
  text-decoration: none;
  background: var(--cta-bg);
  border-radius: 14px;
  transition: background .25s ease, transform .25s ease;
}

@media (max-width: 768px) {
  .video-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow:
      0 15px 30px rgba(123, 97, 255, 0.2),
      0 8px 20px rgba(139, 152, 255, 0.1);
  }

  .video-card:hover .video-card__ratio {
    transform: scale(1.005);
  }

  .video-card:hover .video-card__ratio iframe,
  .video-card:hover .video-card__ratio > div {
    transform: scale(1.01);
  }
}

@media (prefers-reduced-motion: reduce){
  .hero-section::before,
  .hero-section::after,
  .video-card::before {
    animation: none;
  }

  .video-card,
  .video-card__ratio,
  .video-card__ratio iframe,
  .video-card__ratio > div,
  .hero-cta {
    transition: none;
  }

  .video-card:hover {
    transform: none;
    box-shadow: 0 4px 12px rgba(123, 97, 255, 0.3);
  }
}

@media (hover: none) and (pointer: coarse) {
  .video-card:hover {
    transform: scale(1.01);
    box-shadow: 0 8px 25px rgba(123, 97, 255, 0.2);
  }

  .video-card::before {
    animation-play-state: running;
    opacity: 0.7;
  }
}

.megoldasaink-container{
	align-items: center;
    background-blend-mode: normal;
    background-image: url(https://datamagic.hu/wp-content/uploads/2025/08/hero.png);
    background-position: 50% 10%;
    background-repeat: no-repeat;
    background-size: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 600px;
    text-align: center;
    text-shadow: rgba(0, 0, 0, 1) 1px 1px 10px;
    padding: 2rem 20px;
	    margin-bottom: 5rem;
}

.hero-section-megoldasaink{
	    min-height: unset;
    padding: unset;
}

.text-center {
	text-align: center;
}

.justify-center {
	justify-content: center;
}

.modulok {
	margin-top: unset;
	margin-bottom:2rem;
}

.gb-element-bad00522 {
	margin-top: unset;
}

@media (max-width: 768px) {
  .text-center-mobile {
    text-align: center;
  }

  .justify-center-mobile {
    justify-content: center;
  }

	.flex-center-mobile {
		justify-content: center;
    display: flex;
    flex-direction: column;
	}

	.flex-center-row-mobile{
		justify-content: center;
    display: flex;
	}

	.mb-mobile-1{
		margin-bottom: 1rem;
	}

	.bovebben-rolunk{
		margin-bottom:1rem;
	}

	.gb-element-1a425d1b{
		padding:2rem;
		margin-bottom:1rem;
		margin-top:1rem;
	}


	.modulok-box{
    flex-direction: column;
    justify-content: space-evenly;
}

}

@media (min-width: 768px) {
	.sticky-left{
    position: sticky;
    top: 30%;
    left: 50%;
    transform: translate(0%, 0%);
    z-index: 999;
	}
}

.gb-element-1a425d1b{
	margin-top: 3rem;
	margin-bottom:3rem;
}

.gb-element-3ae7ce5e{
	margin-top: 1em;
	margin-bottom:1em;
}

.videos-wrapper {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 16px;
	padding: 8px;
}

.single-video-card {
  width: 50%;
  text-align: center;
}

.video-label {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
  text-shadow: rgba(0,0,0,0.8) 1px 1px 6px;
}

@media (max-width: 768px) {
  .videos-wrapper {
    flex-direction: column;
    gap: 24px;
  }

  .single-video-card {
    width: 100%;
  }

  .video-label {
    font-size: 1.1rem;
  }
}

navigation.main-navigation ul.main-nav {
    flex-wrap: nowrap !important;
    display: flex;
    flex-direction: row;
}

navigation.main-navigation ul.main-nav > li {
    flex-shrink: 0;
    white-space: nowrap;
}

navigation.main-navigation ul.main-nav > li > a {
    padding: 0.5em 0.8em;
    white-space: nowrap;
}

.inside-header.grid-container{
	max-width: none !important;
}

.interactive-contact {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
  position: relative;
}

.contact-box-inner {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: 0.38rem 1.2rem;
  border: 1px solid var(--contrast-3);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: .3s ease;
}


.contact-icon .phone-svg {
  width: 1.7rem;
  height: 1.7rem;
  color: var(--contrast-3);
  transition: .25s ease;
}



.contact-box-inner:hover .phone-svg {
  color: var(--base-3);
}

.contact-fixed-number {
  color: var(--contrast-3);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: .25s ease;
}

.contact-popup {
  position: absolute;
  left: 50%;
	color:white !important;
  top: calc(100% + 12px);
  transform: translateX(-50%) translateY(-12px);
  background: var(--contrast-3);
  padding: .65rem 1rem;
  border-radius: 12px;
  opacity: 0;
  pointer-events: none;
  transition: all .25s ease;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(0,0,0,.25);
  animation: traySlideOut .25s ease forwards;
  z-index: 99999;
}

.contact-popup a {
	color:white;
}

.contact-popup.open {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  animation: traySlideIn .25s ease forwards;
}

@keyframes traySlideIn {
  from { opacity: 0; transform: translateX(-50%) translateY(15px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
@keyframes traySlideOut {
  from { opacity: 1; }
  to   { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

.contact-icon{
	height:30px;
}

@media (max-width:1495px) {
  .contact-fixed-number {
    display: none;
  }

	.contact-box-inner{
		  border: 0px solid var(--contrast-3);
		background: none;
	}

  .contact-box-inner {
    padding: .55rem .75rem;
    border-radius: 12px;
  }
}

@media (max-width:1024px) {
  .contact-fixed-number { display: none !important; }

  .contact-box-inner {
    padding: .55rem .7rem;
    border-radius: 50px;
    min-width: 50px;
    justify-content: center;
  }

  .desktop-only { display: none !important; }
}

@media (max-width:768px) {

  .interactive-contact {
    position: fixed;
    right: 24px;
    bottom: 82px;
    z-index: 99999;
  }

  .contact-box-inner {
    background: var(--contrast-3);
    border: none;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    padding: 0;
    box-shadow: 0 8px 22px rgba(0,0,0,.35),
                0 0 20px rgba(140,140,255,.6);
    animation: bubblePulse 2.2s infinite ease-in-out;
  }

  @keyframes bubblePulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.07); }
  }

  .contact-icon .phone-svg {
    color: #fff !important;
  }

  .contact-popup {
        top: -50px;
        left: -70px;
    transform: translateX(-50%);
  }
}


/* ===== MODERN FEATURE CARD GRID ===== */
.gb-element-7cc1dd2f > div {
    position: relative;
    padding: 2.2rem 1.8rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.03);
    transition: all .45s cubic-bezier(.2, .8, .2, 1);
    backdrop-filter: blur(8px);
    transform-style: preserve-3d;
    cursor: default;
    overflow: hidden;
}

.gb-element-7cc1dd2f{
	max-width: 1465px
}

/* kártya beúszás */
.gb-element-7cc1dd2f > div {
    opacity: 0;
    transform: translateY(20px);
    animation: featureFade .8s ease forwards;
}
.gb-element-7cc1dd2f > div:nth-child(1) {animation-delay: .05s;}
.gb-element-7cc1dd2f > div:nth-child(2) {animation-delay: .15s;}
.gb-element-7cc1dd2f > div:nth-child(3) {animation-delay: .25s;}
.gb-element-7cc1dd2f > div:nth-child(4) {animation-delay: .35s;}
.gb-element-7cc1dd2f > div:nth-child(5) {animation-delay: .45s;}
.gb-element-7cc1dd2f > div:nth-child(6) {animation-delay: .55s;}

@keyframes featureFade {
    to { opacity:1; transform: translateY(0); }
}

.gb-element-7cc1dd2f > div:hover {
    border-color: rgba(130,130,255,0.65);
    background: rgba(255,255,255,0.07);
    transform: translateY(-8px) scale(1.015);
    box-shadow: 0 18px 40px rgba(0,0,0,.35);
}

.gb-element-7cc1dd2f img {
    transition: .45s ease;
    filter: drop-shadow(0 0 0 rgba(140,140,255,0));
}

.gb-element-7cc1dd2f > div:hover img {
    transform: translateY(-4px);
    filter: drop-shadow(0 0 10px rgba(120,120,255,0.6))
            drop-shadow(0 0 25px rgba(120,120,255,0.25));
}

/* cím */
.gb-element-7cc1dd2f h4 {
    transition: .35s ease;
}
.gb-element-7cc1dd2f > div:hover h4 {
    color: #ffffff !important;
    letter-spacing: .5px;
}

/* szöveg */
.gb-element-7cc1dd2f p {
    color: #c8c8d6;
    line-height: 1.55;
    transition: .3s ease;
}
.gb-element-7cc1dd2f > div:hover p {
    color: #eeeeff;
}

.gb-element-7cc1dd2f > div::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at 30% 20%,
        rgba(120,140,255,0.25),
        transparent 70%
    );
    opacity: 0;
    transition: .5s ease;
}

.gb-element-7cc1dd2f > div:hover::before {
    opacity: 1;
}

.gb-element-7cc1dd2f > div::after {
    content:"";
    position:absolute;
    inset:-2px;
    border-radius: inherit;
    background: linear-gradient(135deg,
      rgba(130,120,255,.4),
      rgba(120,250,255,.4),
      rgba(180,140,255,.4),
      rgba(130,120,255,.4)
    );
    opacity:0;
    transition:.6s ease;
    z-index:-1;
    animation: borderFlow 3s linear infinite;
    background-size: 300% 300%;
}

.gb-element-7cc1dd2f > div:hover::after {
    opacity:.55;
}

@keyframes borderFlow{
 0%{background-position:0% 50%;}
 50%{background-position:100% 50%;}
 100%{background-position:0% 50%;}
}

@media (max-width:767px){
    .gb-element-7cc1dd2f > div {
        padding: 1.8rem 1.4rem;
        transform:none !important;
    }
    .gb-element-7cc1dd2f > div:hover {
        transform:none !important;
        box-shadow:none;
    }
}

.gb-element-7cc1dd2f > div {
    will-change: transform;
    transform-origin: center center;
}

.gb-element-7cc1dd2f > div > * {
    transform: translateZ(30px);
	  flex-direction: column;
    align-items: center;
		margin-left:inherit;
}

.gb-element-7cc1dd2f > div,
.gb-element-7cc1dd2f > div:hover {
    padding: 2.2rem 1.8rem !important;
    border-width: 1px !important;
}

.gb-element-7cc1dd2f > div::after {
    pointer-events: none;
}

.gb-element-7cc1dd2f > div {
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.gb-element-7cc1dd2f > div {
    display: flex;
    flex-direction: column;
}

.animate-on-scroll {
    opacity: 1;
    transform: translateY(40px);
    transition: all 0.4s ease-out;
}

.animate-on-scroll.enter {
    opacity: 1;
    transform: translateY(0);
}


@keyframes dmUltraEnter {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(8px);
    }

    40% {
        opacity: 1;
        transform: translateY(0px) scale(1.02);
        filter: blur(2px);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0px);
    }
}

.dm-pro-content {
    max-width: 980px;
    margin: 0 auto;
    padding: 0rem 1.6rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .dm-pro-content {
        padding: 3rem 2rem;
    }
}

.dm-pro-content::before {
    content: "";
    position: absolute;
    top: -25px;
    left: 50%;
    width: 150px;
    height: 3px;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.22);
    border-radius: 999px;
}

.dm-pro-content h2,
.dm-pro-content h3 {
    color: #fff;
    font-weight: 800;
    line-height: 1.25;
    margin-top: 2.8rem;
    margin-bottom: 1rem;
    text-shadow: rgba(0,0,0,0.4) 1px 2px 4px;
    font-size: clamp(24px, 2vw + 14px, 32px);
}

.dm-pro-content h2::after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background: rgba(255,255,255,0.28);
    border-radius: 4px;
    margin-top: .4rem;
}

.dm-pro-content p {
    color: #e5e5f2;
    line-height: 1.75;
    font-size: 1.12rem;
    margin-bottom: 1.1rem;
    transition: color .3s ease;
}

.dm-pro-content p:hover {
    color: #fff;
}


@media (max-width: 768px) {
    .dm-pro-content p {
        line-height: 1.7;
        font-size: 1.08rem;
    }
}

.dm-pro-content ul {
    list-style: none;
    margin: 1.4rem 0 1.8rem 0;
    padding: 0;
}

.dm-pro-content ul li {
    color: #eaeaf9;
    margin-bottom: .75rem;
    padding-left: 28px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    transition: .3s ease;
}

.dm-pro-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7b61ff, #6ae1ff);
    opacity: .85;
    box-shadow: 0 0 8px rgba(122, 97, 255, 0.4);
    transition: .3s ease;
}

.dm-pro-content ul li:hover {
    transform: translateX(4px);
    color: #fff;
}

.dm-pro-content ul li:hover::before {
    transform: scale(1.2);
    opacity: 1;
}

.dm-pro-content section,
.dm-pro-content .wp-block-group,
.dm-pro-content > div:not(.no-card) {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 22px;
    backdrop-filter: blur(10px);
    margin-bottom: 2.2rem;
    transition: all .50s cubic-bezier(.23,1,.32,1);
}

@media (max-width: 768px) {
    .dm-pro-content section,
    .dm-pro-content .wp-block-group,
    .dm-pro-content > div:not(.no-card) {
        padding: 2rem 1.5rem;
    }
}

.dm-pro-content section:hover,
.dm-pro-content .wp-block-group:hover,
.dm-pro-content > div:not(.no-card):hover {
    transform: translateY(-6px);
    box-shadow:
        0 20px 35px rgba(0,0,0,0.25),
        0 0 18px rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.13);
}


.dm-pro-content .animate-on-scroll {
    opacity: 0;
    transform: translateY(40px) scale(.96);
    filter: blur(6px);
    transition:
        opacity .6s cubic-bezier(.23,1,.32,1),
        transform .6s cubic-bezier(.23,1,.32,1),
        filter .6s cubic-bezier(.23,1,.32,1);
}

.dm-pro-content .animate-on-scroll.enter {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.dm-ref-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .dm-ref-section {
        padding: 3rem 1.5rem;
    }
}

.dm-ref-section h2.gb-text-2959d9f3 {
    font-size: 0.95rem;
    color: var(--contrast-3);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0 0 1rem 0;
    text-align: left;
    opacity: .8;
}



.dm-ref-section .gb-element-9261c424,
.dm-ref-section .gb-element-2a0a425e,
.dm-ref-section .gb-element-8e92dfa2 {
    padding-top: 2rem !important;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 3rem;
	 	padding-bottom: 2rem !important;
		border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
		padding-left:2rem;
		padding-right:2rem;
}

.dm-ref-section .gb-element-36fb7d57,
.dm-ref-section .gb-element-d4193d51,
.dm-ref-section .gb-element-37f94b52 {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3rem;
    align-items: center;
		margin-bottom:0px;
}

@media(max-width: 768px) {
    .dm-ref-section .gb-element-36fb7d57,
    .dm-ref-section .gb-element-d4193d51,
    .dm-ref-section .gb-element-37f94b52 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


.dm-ref-section img.gb-media-07f47bd5,
.dm-ref-section img.gb-media-435a62a5,
.dm-ref-section img.gb-media-1bd3e845 {
    border-radius: 20px;
    aspect-ratio: 16/11;
    object-fit: cover;
    box-shadow:
        0 15px 40px rgba(0,0,0,0.25),
        0 0 20px rgba(120,120,255,0.2);
    transition: transform .5s cubic-bezier(.23,1,.32,1),
                box-shadow .5s cubic-bezier(.23,1,.32,1);
}

.dm-ref-section img:hover {
    transform: scale(1.03);
    box-shadow:
        0 25px 45px rgba(0,0,0,0.35),
        0 0 25px rgba(140,140,255,0.35);
}



.dm-ref-section .gb-element-bde53f6c a {
    padding: .9rem 2.2rem;
    border-radius: 14px;
    font-size: 1rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 22px rgba(0,0,0,.28);
    transition: .35s cubic-bezier(.23,1,.32,1);
}

.dm-ref-section .gb-element-bde53f6c a:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 32px rgba(0,0,0,.35);
}


.gb-accordion__toggle {
	    align-items: center;
    background-color: rgba(137, 120, 250, 0.57);
    background-image: radial-gradient(rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom-style: solid;
    border-bottom-width: 0rem;
    color: var(--base-3);
    column-gap: 1em;
    display: flex;
    font-size: 25px;
    justify-content: space-between;
    margin-bottom: 2rem;
    text-align: left;
    border-radius: 1rem;
    padding: 1rem 2rem;
}

.gb-accordion__toggle-icon svg {
	width: 1em;
    height: 1em;
}

.dm-ops-cta-box {
    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem;
    max-width: 56rem;
    text-align: center;
    position: relative;
    z-index: 20;
}

.dm-ops-cta-arrow-container{
	    margin-left: auto;
    margin-right: auto;
    margin-top: 4rem;
    max-width: 56rem;
    text-align: center;
    position: relative;
    z-index: 20;
}
