*, a {
	outline: none !important;
}


.main-navigation .sub-menu {
	background-color: #6528f7;
}

.ast-builder-layout-element .ast-site-identity {
	background: #ffffff;
	border-radius: 50%;
	height: 100px;
	width: 100px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-top: 13px;
	
}

.site-logo-img {
	margin-left: 11px;
}

.top-hero-section {
	margin-top: 50px !important;
}

@media (max-width: 921px) {
  .ast-builder-layout-element .ast-site-identity {
    transform: scale(0.75);
    transform-origin: center;
  }
}

.mobile-menu-toggle-icon .ast-mobile-svg {
  width: 40px !important;
  height: 40px !important;
}

#ast-desktop-header a svg {
  fill: rgba(242, 245, 247, 0.76) !important;
  stroke: rgba(242, 245, 247, 0.76) !important;
}

#ast-desktop-header a svg:hover {
  fill: #FFFFFF !important;
  stroke: #FFFFFF !important;
}

#ast-desktop-header a[aria-label="Resume"] svg,
#ast-desktop-header a[aria-label="Contact"] svg {
  fill: transparent !important;
  stroke: rgba(242, 245, 247, 0.76) !important;
}

#ast-desktop-header a[aria-label="Resume"] svg:hover,
#ast-desktop-header a[aria-label="Contact"] svg:hover {
  fill: transparent !important;
  stroke: #FFFFFF !important;
}

.wp-block-group h3 {
	margin-top: 0px; 
}

@media (max-width: 770px) {
	.swiper-button-prev{
		margin-left: 25px;
    top: 45px;
	}
	.swiper-button-next{
		margin-right: 25px;
    top: 45px;
	}
}


/* Checklist */
.check-groups {
  display: grid;
  gap: 14px;
}

.check-group {
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(245, 246, 248, 0.72);
  padding: 12px;
}

.check-group__title {
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: rgba(0, 0, 0, 0.68);
  margin-bottom: 10px;
}

/* Checkbox row */
.check {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  padding: 8px 8px;
  border-radius: 14px;
  cursor: pointer;
}

.check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check__box {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-top: 2px;
}

.check__text {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.72);
}

.check input:checked + .check__box {
  background: linear-gradient(135deg, rgba(109,94,252,0.95), rgba(6,182,212,0.85));
  border-color: rgba(0, 0, 0, 0.10);
}

.check input:checked + .check__box::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 6px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-left: 0;
  border-top: 0;
  transform: rotate(45deg);
}

