/* Continuous one-page layout: fixed profile card + vertically scrolling content. */

html {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

body.scroll-layout {
  height: auto;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  background-attachment: fixed;
}

.scroll-layout .lm-animated-bg {
  position: fixed;
}

.scroll-layout .page {
  height: auto;
  min-height: 100vh;
  padding: 32px 100px;
  overflow: visible;
}

.scroll-layout .page-content {
  display: flex;
  align-items: flex-start;
  max-width: 1280px;
  min-height: calc(100vh - 64px);
  margin: 0 auto;
  overflow: visible;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.scroll-layout .content-area {
  position: relative;
  right: auto;
  flex: 1 1 auto;
  width: calc(100% - 358px);
  max-width: none;
  height: auto;
  margin-left: 28px;
  overflow: hidden;
  background-color: #222;
  border-radius: 30px;
  box-shadow: 0 0 100px -5px rgba(0, 0, 0, .25);
}

.scroll-layout .animated-sections {
  position: relative;
  height: auto;
  perspective: none;
  backface-visibility: visible;
}

.scroll-layout .animated-section {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  padding: 60px;
  overflow: visible;
  visibility: visible;
  opacity: 1;
  border-bottom: 1px solid rgba(255, 255, 255, .075);
  border-radius: 0;
  transform: none !important;
  animation: none !important;
  backface-visibility: visible;
  scroll-margin-top: 32px;
}

.scroll-layout .animated-section:last-child {
  border-bottom: 0;
}

.scroll-layout .skills-anchor {
  scroll-margin-top: 32px;
}

.scroll-layout .single-page-content {
  position: relative;
  height: auto;
  min-height: calc(100vh - 64px);
  overflow: visible;
}

.scroll-layout .lmpixels-arrows-nav,
.scroll-layout .ps__scrollbar-x-rail,
.scroll-layout .ps__scrollbar-y-rail {
  display: none !important;
}

.scroll-layout .header-info {
  width: 100%;
  margin: 17px 0 0;
  padding: 14px 0;
  text-align: left;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.scroll-layout .header-info ul li {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 7px;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.45;
}

.scroll-layout .header-info ul li:last-child {
  margin-bottom: 0;
}

.scroll-layout .header-info .title {
  margin-right: 0;
}

.scroll-layout .header-info .value,
.scroll-layout .header-info a {
  min-width: 0;
  overflow-wrap: anywhere;
}

.scroll-layout .skills-section {
  position: relative;
  isolation: isolate;
  margin: 0 -25px;
  padding: 42px 32px 30px;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 2% 8%, rgba(151, 104, 238, .12), transparent 22%),
    radial-gradient(circle at 98% 42%, rgba(73, 140, 255, .09), transparent 24%),
    radial-gradient(circle at 18% 92%, rgba(204, 99, 221, .07), transparent 20%),
    linear-gradient(135deg, rgba(250, 249, 255, .96), rgba(255, 255, 255, .72));
}

.scroll-layout .skills-section .block-title {
  margin-bottom: 12px;
}

.scroll-layout .skills-section .block-title h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 30px;
  line-height: 1.25;
}

.scroll-layout .skills-section .block-title h2 span {
  color: #765fe7;
  background: linear-gradient(90deg, #9a67eb 0%, #536df4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scroll-layout .capability-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
  margin: 0;
  padding: 18px 0 0;
  counter-reset: capability;
  background: linear-gradient(180deg, transparent, rgba(112, 91, 233, .14) 8%, rgba(112, 91, 233, .14) 92%, transparent) center / 1px calc(100% - 54px) no-repeat;
}

.scroll-layout .skills-section::before {
  position: absolute;
  z-index: 0;
  top: 94px;
  right: -110px;
  width: 260px;
  height: 260px;
  content: "";
  border: 1px solid rgba(119, 96, 231, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 42px rgba(119, 96, 231, .028), 0 0 0 84px rgba(119, 96, 231, .018);
  pointer-events: none;
}

.scroll-layout .skills-section::after {
  position: absolute;
  z-index: 0;
  bottom: 2%;
  left: 28px;
  width: 112px;
  height: 112px;
  content: "";
  opacity: .28;
  background-image: radial-gradient(circle, rgba(112, 91, 233, .48) 1.5px, transparent 2px);
  background-size: 14px 14px;
  pointer-events: none;
}

.scroll-layout .capability-grid > [class*="col-"] {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  counter-increment: capability;
  background: linear-gradient(90deg, transparent, rgba(118, 95, 231, .15) 12%, rgba(118, 95, 231, .15) 88%, transparent) bottom / 100% 1px no-repeat;
}

.scroll-layout .capability-grid > [class*="col-"]:nth-last-child(-n + 2) {
  background: none;
}

.scroll-layout .capability-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 220px;
  padding: 28px 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.scroll-layout .capability-grid > [class*="col-"]:nth-child(even) .capability-card {
  padding: 28px 0;
}

.scroll-layout .capability-heading {
  display: block;
  min-width: 0;
  margin-bottom: 7px;
  padding-right: 34px;
}

.scroll-layout .capability-card::after {
  position: absolute;
  top: 32px;
  right: 0;
  content: counter(capability, decimal-leading-zero);
  color: rgba(103, 88, 214, .28);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
}

.scroll-layout .capability-card h4 {
  margin: 0;
  font-size: 21px;
  line-height: 1.35;
}

.scroll-layout .capability-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.58;
}

@media only screen and (min-width: 1025px) {
  .scroll-layout .page-content {
    display: block;
    padding-left: 358px;
  }

  .scroll-layout .content-area {
    width: 100%;
    margin-left: 0;
  }

  .scroll-layout .header {
    position: fixed;
    top: 32px;
    left: max(100px, calc((100vw - 1280px) / 2));
    display: flex;
    float: none;
    flex: 0 0 330px;
    flex-direction: column;
    width: 330px;
    max-width: 330px;
    height: calc(100vh - 64px);
    height: calc(100dvh - 64px);
    min-height: 0;
    max-height: calc(100vh - 64px);
    max-height: calc(100dvh - 64px);
    padding: 35px 30px 24px;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: #444;
    border-radius: 30px;
    box-shadow: 0 0 100px -5px rgba(0, 0, 0, .25);
    scrollbar-color: #666 transparent;
    scrollbar-width: thin;
  }

  .scroll-layout .header-photo {
    width: 140px;
    margin-bottom: 18px;
  }

  .scroll-layout .header-titles h2 {
    font-size: 31px;
  }

  .scroll-layout .header-titles h4 {
    font-size: 16px;
  }

  .scroll-layout ul.main-menu {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
    margin: 17px 0 10px;
    padding: 0;
    list-style: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .scroll-layout ul.main-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 14px;
    color: #17141c;
    border-radius: 12px;
  }

  .scroll-layout ul.main-menu li.active a,
  .scroll-layout ul.main-menu a.active,
  .scroll-layout ul.main-menu a:hover {
    color: #fff;
    background-color: rgba(80, 80, 245, .85);
  }

  .scroll-layout ul.main-menu .menu-icon {
    display: block;
    flex: 0 0 25px;
    width: 25px;
    font-size: 20px;
    text-align: center;
  }

  .scroll-layout ul.main-menu .link-text {
    position: static;
    width: auto;
    margin: 0;
    padding: 0;
    visibility: visible;
    opacity: 1;
    color: inherit;
    background: transparent;
    box-shadow: none;
  }

  .scroll-layout ul.main-menu a:hover .link-text {
    right: auto;
  }

  .scroll-layout .social-links {
    margin: 10px 0;
  }

  .scroll-layout .header-buttons {
    margin-top: 10px;
  }

  .scroll-layout .header .copyrights {
    position: static;
    width: auto;
    margin-top: auto;
    padding: 12px 0 0;
  }
}

@media only screen and (max-width: 1280px) and (min-width: 1025px) {
  .scroll-layout .page {
    padding: 24px 30px;
  }

  .scroll-layout .header {
    top: 24px;
    left: 30px;
    height: calc(100vh - 48px);
    height: calc(100dvh - 48px);
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
  }

  .scroll-layout .animated-section {
    scroll-margin-top: 24px;
  }
}

@media only screen and (max-width: 1024px) {
  .scroll-layout .page {
    padding: 0;
  }

  .scroll-layout .page-content {
    display: block;
    padding-left: 0;
    min-height: 100vh;
    margin: 0;
  }

  .scroll-layout .header {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    height: 100vh;
    max-height: none;
  }

  .scroll-layout .content-area {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    overflow: hidden;
    border-radius: 0;
  }

  .scroll-layout .single-page-content {
    min-height: 100vh;
    border-radius: 0;
  }

  .scroll-layout .animated-section {
    padding: 50px 30px;
    overflow: visible !important;
    scroll-margin-top: 0;
  }

  .scroll-layout .menu-toggle {
    position: fixed;
  }
}

@media only screen and (max-width: 480px) {
  .scroll-layout .animated-section {
    padding: 45px 20px;
  }
}

@media only screen and (max-width: 1100px) {
  .scroll-layout .capability-grid {
    grid-template-columns: minmax(0, 1fr);
    background: none;
  }

  .scroll-layout .capability-grid > [class*="col-"]:not(:last-child) {
    background: linear-gradient(90deg, transparent, rgba(118, 95, 231, .15) 12%, rgba(118, 95, 231, .15) 88%, transparent) bottom / 100% 1px no-repeat;
  }

  .scroll-layout .capability-grid > [class*="col-"]:last-child {
    background: none;
  }

  .scroll-layout .capability-card,
  .scroll-layout .capability-grid > [class*="col-"]:nth-child(even) .capability-card {
    min-height: 0;
    padding: 24px 0;
  }
}

@media only screen and (max-width: 767px) {
  .scroll-layout .skills-section {
    margin: 0 -15px;
    padding: 32px 20px 24px;
    border-radius: 24px;
    background:
      radial-gradient(circle at 4% 12%, rgba(151, 104, 238, .09), transparent 24%),
      radial-gradient(circle at 96% 55%, rgba(73, 140, 255, .065), transparent 25%),
      linear-gradient(135deg, rgba(250, 249, 255, .96), rgba(255, 255, 255, .76));
  }

  .scroll-layout .skills-section .block-title h2 {
    font-size: 27px;
  }

  .scroll-layout .capability-card {
    min-height: 0;
    padding: 22px 0;
  }

  .scroll-layout .capability-grid > [class*="col-"]:nth-child(even) .capability-card {
    padding: 22px 0;
  }

  .scroll-layout .capability-heading {
    margin-bottom: 6px;
  }

  .scroll-layout .capability-card::after {
    top: 26px;
  }
}

@media only screen and (max-width: 480px) {
  .scroll-layout .capability-grid > [class*="col-"] {
    margin-bottom: 34px;
  }

  .scroll-layout .capability-card {
    min-height: 0;
    padding: 0;
  }

  .scroll-layout .capability-grid > [class*="col-"]:nth-child(even) .capability-card {
    padding: 0;
  }

  .scroll-layout .capability-heading {
    margin-bottom: 8px;
  }

  .scroll-layout .capability-card::after {
    display: none;
  }
}

/* Light portfolio theme inspired by the supplied CV reference. */
body.scroll-layout {
  color: #2c2832;
}

.scroll-layout h1,
.scroll-layout h2,
.scroll-layout h3,
.scroll-layout h4,
.scroll-layout h5,
.scroll-layout h6 {
  color: #17141c;
}

.scroll-layout a {
  color: #5e61e8;
}

.scroll-layout a:hover,
.scroll-layout a:focus {
  color: #8d5de8;
}

.scroll-layout .preloader,
.scroll-layout .content-area,
.scroll-layout .animated-section,
.scroll-layout .single-page-content {
  background-color: #fff;
}

.scroll-layout .content-area {
  border-radius: 15px;
  box-shadow: 0 24px 70px -28px rgba(42, 24, 83, .32);
}

.scroll-layout .animated-section {
  border-bottom-color: #ece9f2;
}

.scroll-layout .header {
  color: #282431;
  background: linear-gradient(155deg, #fbfaff 0%, #f2f0fb 100%);
  box-shadow: 0 24px 70px -28px rgba(42, 24, 83, .38);
}

.scroll-layout .header-content {
  width: 100%;
}

.scroll-layout .header-photo {
  padding: 5px;
  background: linear-gradient(135deg, #536df4 0%, #9a67eb 55%, #d67ac8 100%);
  border-radius: 50%;
}

.scroll-layout .header-photo img {
  display: block;
  width: 100%;
  border: 4px solid #f8f7fd;
}

.scroll-layout .header-photo::after {
  top: 7px;
  left: 7px;
  width: 100%;
  height: 100%;
  opacity: .16;
  background: linear-gradient(135deg, #536df4, #c66dd7);
}

.scroll-layout .header-titles h2 {
  margin: 5px 0 8px;
  color: #17141c;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.scroll-layout .header-titles h4 {
  display: inline-block;
  margin: 0;
  color: #765fe7;
  background: linear-gradient(90deg, #9a67eb 0%, #536df4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.035em;
}

.scroll-layout .header-info {
  margin-top: 22px;
  padding: 19px 0;
  border-top-color: #dfdbea;
  border-bottom-color: #dfdbea;
}

.scroll-layout .header-info ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scroll-layout .header-info ul li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}

.scroll-layout .contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  background: linear-gradient(135deg, #a877ef 0%, #566ef3 100%);
  border-radius: 14px;
  box-shadow: 0 8px 18px -10px rgba(91, 88, 226, .85);
}

.scroll-layout .contact-icon i {
  font-size: 20px;
  font-weight: 600;
}

.scroll-layout .contact-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.scroll-layout .contact-label {
  margin-bottom: 2px;
  color: #716b7a;
  font-size: 16px;
  font-weight: 500;
}

.scroll-layout .contact-value,
.scroll-layout a.contact-value {
  min-width: 0;
  color: #17141c;
  font-size: 16px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.scroll-layout a.contact-value:hover,
.scroll-layout a.contact-value:focus {
  color: #6465e8;
}

.scroll-layout ul.main-menu a {
  color: #17141c;
  border-radius: 8px;
}

.scroll-layout ul.main-menu li.active a,
.scroll-layout ul.main-menu a.active,
.scroll-layout ul.main-menu a:hover {
  color: #fff;
  background: linear-gradient(90deg, #9a67eb 0%, #536df4 100%);
}

.scroll-layout ul.main-menu a:focus-visible {
  outline: 3px solid rgba(95, 83, 225, .34);
  outline-offset: 2px;
}

.scroll-layout .social-links {
  width: 100%;
  padding-top: 4px;
  text-align: left;
}

.scroll-layout .social-links .social-title {
  margin: 0 0 13px;
  color: #17141c;
  font-size: 16px;
  font-weight: 600;
}

.scroll-layout .social-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

.scroll-layout .social-links ul li {
  display: block;
}

.scroll-layout .social-links ul li a.social-profile {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 7px 8px;
  color: #17141c;
  line-height: 1.25;
  text-align: left;
  opacity: 1;
  border-radius: 10px;
}

.scroll-layout .social-links ul li a.social-profile:hover,
.scroll-layout .social-links ul li a.social-profile:focus {
  color: #17141c;
  background-color: rgba(99, 92, 224, .09);
}

.scroll-layout .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: linear-gradient(135deg, #9a67eb, #536df4);
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.scroll-layout .social-hh .social-icon {
  background: linear-gradient(135deg, #ff4c5d, #e60012);
  font-size: 16px;
}

.scroll-layout .social-telegram .social-icon {
  background: linear-gradient(135deg, #4fc3f7, #168bd2);
}

.scroll-layout .social-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.scroll-layout .social-name {
  color: #726c7a;
  font-size: 16px;
  font-weight: 500;
}

.scroll-layout .social-handle {
  color: #17141c;
  font-size: 16px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.scroll-layout .header-buttons {
  width: 100%;
  margin-top: 28px;
}

.scroll-layout .header-cv-button {
  display: inline-flex;
  width: 100%;
  min-height: 78px;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  color: #fff;
  background: linear-gradient(135deg, #9a67eb 0%, #745fe9 45%, #536df4 100%);
  border: 2px solid transparent;
  border-radius: 16px;
  box-shadow: 0 18px 34px -17px rgba(55, 39, 133, .58), inset 0 1px 0 rgba(255, 255, 255, .24);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  transition: color .2s ease, transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.scroll-layout .header-cv-button:hover,
.scroll-layout .header-cv-button:focus {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  transform: translateY(-2px);
  box-shadow: 0 24px 40px -18px rgba(55, 39, 133, .72), inset 0 1px 0 rgba(255, 255, 255, .34);
}

.scroll-layout .header-cv-button:focus-visible {
  outline: 3px solid rgba(95, 83, 225, .30);
  outline-offset: 4px;
}

.scroll-layout .header-cv-button-icon {
  display: inline-flex;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, .14);
  border-radius: 12px;
  box-shadow: 0 12px 22px -12px rgba(74, 64, 210, .9);
  font-size: 24px;
  transition: transform .2s ease;
}

.scroll-layout .header-cv-button:hover .header-cv-button-icon,
.scroll-layout .header-cv-button:focus .header-cv-button-icon {
  transform: scale(1.04);
}

.scroll-layout .btn-primary,
.scroll-layout button,
.scroll-layout input[type="button"],
.scroll-layout input[type="submit"] {
  color: #fff;
  background: linear-gradient(90deg, #9a67eb 0%, #536df4 100%);
  border-color: transparent;
  border-radius: 15px;
}

.scroll-layout .btn-primary:hover,
.scroll-layout .btn-primary:focus,
.scroll-layout button:hover,
.scroll-layout button:focus,
.scroll-layout input[type="button"]:hover,
.scroll-layout input[type="button"]:focus,
.scroll-layout input[type="submit"]:hover,
.scroll-layout input[type="submit"]:focus {
  color: #fff;
  background: linear-gradient(90deg, #8b59dc 0%, #445de7 100%);
  border-color: transparent;
}

.scroll-layout .header .copyrights {
  color: #8b8592;
}

.scroll-layout .page-title h2 span,
.scroll-layout .block-title h3 span {
  color: #765fe7;
  background: linear-gradient(90deg, #9a67eb 0%, #536df4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.scroll-layout .page-title::after,
.scroll-layout .block-title::after {
  top: -3px;
  right: auto;
  left: -53px;
  width: 50px;
  height: 30px;
  opacity: .32;
  background-image: radial-gradient(circle, #765fe7 0 2px, transparent 2.4px);
  background-size: 10px 10px;
}

.scroll-layout .page-title,
.scroll-layout .block-title {
  padding-right: 42px;
}

.scroll-layout .info-block-w-icon i,
.scroll-layout .lm-info-block i,
.scroll-layout .project-general-info .fa {
  color: #6967e9;
}

.scroll-layout .info-block-w-icon .ci-text p,
.scroll-layout .timeline-second-style .right-part p,
.scroll-layout .capability-card p {
  color: #5f5968;
}

.scroll-layout .section-content > .row p {
  color: #222;
}

.scroll-layout .capability-card {
  background: transparent;
  border-color: transparent;
}

.scroll-layout .lm-info-block {
  background-color: #faf9fd;
  border-color: #e7e3ed;
}

.scroll-layout .timeline-second-style .divider {
  background-color: #dfdbe7;
}

.scroll-layout .timeline-second-style .divider::before {
  background-color: #8d6ee8;
}

.scroll-layout .timeline-second-style .divider::after {
  background-color: #fff;
  border-color: #6867e9;
}

.scroll-layout .timeline-second-style .item-period,
.scroll-layout .timeline-second-style .item-company,
.scroll-layout .certi-id,
.scroll-layout .certi-date,
.scroll-layout .portfolio-item-desc small {
  color: #77717f;
}

.scroll-layout .about-intro {
  font-size: 18px;
}

/* Closing call to action. */
.scroll-layout .content-area {
  overflow: visible;
}

@media only screen and (min-width: 1025px) {
  .scroll-layout .animated-section:first-child {
    border-radius: 15px 15px 0 0;
  }
}

.scroll-layout #portfolio {
  border-bottom: 0;
}

.scroll-layout .work-cta-section {
  padding: 0;
  overflow: visible;
  background: linear-gradient(135deg, #9a67eb 0%, #745fe9 45%, #536df4 100%);
  border-bottom: 0;
  border-radius: 0 0 15px 15px;
}

.scroll-layout .work-cta-card {
  position: relative;
  min-height: 340px;
  padding: 70px 60px;
  overflow: visible;
  color: #fff;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.scroll-layout .work-cta-card::before {
  position: absolute;
  top: 30px;
  right: 32px;
  width: 116px;
  height: 116px;
  content: "";
  opacity: .58;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .9) 2px, transparent 2.5px);
  background-size: 14px 14px;
}

.scroll-layout .work-cta-card::after {
  position: absolute;
  right: -72px;
  bottom: -118px;
  width: 310px;
  height: 310px;
  content: "";
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, .05), 0 0 0 72px rgba(255, 255, 255, .035);
}

.scroll-layout .work-cta-content {
  position: relative;
  z-index: 3;
  max-width: 710px;
}

.scroll-layout .work-cta-capybara {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: -12px;
  display: block;
  width: 220px;
  height: auto;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 115%, 0);
  transform-origin: 75% 100%;
  filter: drop-shadow(0 18px 20px rgba(38, 24, 95, .24));
  border-bottom-right-radius: 15px;
  transition: opacity .42s ease, transform .58s cubic-bezier(.22, .8, .32, 1);
  will-change: transform, opacity;
}

.scroll-layout .work-cta-section:hover .work-cta-capybara,
.scroll-layout .work-cta-section:focus-within .work-cta-capybara {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.scroll-layout .work-cta-card h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.8px;
}

.scroll-layout .work-cta-card p {
  max-width: 610px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .9);
  font-size: 18px;
  line-height: 1.65;
}

.scroll-layout .work-cta-button {
  display: flex;
  align-items: center;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
  gap: 13px;
  padding: 13px 25px 13px 13px;
  color: #645de8;
  background-color: #fff;
  border: 2px solid rgba(255, 255, 255, .88);
  border-radius: 15px;
  box-shadow: 0 18px 32px -16px rgba(32, 20, 87, .65), inset 0 1px 0 rgba(255, 255, 255, .9);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  transition: transform .2s ease, box-shadow .2s ease, color .2s ease;
}

.scroll-layout .work-cta-button:hover,
.scroll-layout .work-cta-button:focus {
  color: #5149d8;
  transform: translateY(-2px);
  box-shadow: 0 24px 38px -17px rgba(32, 20, 87, .72), inset 0 1px 0 rgba(255, 255, 255, .9);
}

.scroll-layout .work-cta-button-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #fff;
  background: linear-gradient(135deg, #9a67eb 0%, #536df4 100%);
  border-radius: 11px;
  box-shadow: 0 9px 18px -10px rgba(68, 55, 194, .8);
  font-size: 23px;
}

@media only screen and (max-width: 767px) {
  .scroll-layout .work-cta-section {
    padding: 0;
  }

  .scroll-layout .work-cta-card {
    min-height: 0;
    padding: 44px 34px 150px;
  }

  .scroll-layout .work-cta-card h2 {
    font-size: 34px;
  }

  .scroll-layout .work-cta-capybara {
    right: 0;
    bottom: -11px;
    width: 190px;
  }
}

@media only screen and (max-width: 480px) {
  .scroll-layout .work-cta-section {
    padding: 0;
  }

  .scroll-layout .work-cta-card {
    padding: 38px 26px 138px;
  }

  .scroll-layout .work-cta-card h2 {
    font-size: 28px;
    letter-spacing: -.4px;
  }

  .scroll-layout .work-cta-card p {
    font-size: 16px;
  }

  .scroll-layout .work-cta-button {
    width: 100%;
    justify-content: center;
    padding-right: 16px;
  }

  .scroll-layout .work-cta-capybara {
    right: 0;
    bottom: -10px;
    width: 168px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .scroll-layout .work-cta-capybara {
    transition-duration: .01ms;
  }
}

/* Education and experience: dates on the left, details on the right. */
.scroll-layout .resume-section .block-title {
  margin-bottom: 22px;
}

.scroll-layout .resume-section .block-title h2 {
  position: relative;
  z-index: 1;
  font-size: 27px;
  line-height: 1.3;
}

.scroll-layout .resume-section .timeline-second-style .timeline-item {
  padding-bottom: 42px;
}

.scroll-layout .resume-section .timeline-second-style .timeline-item:last-child {
  padding-bottom: 0;
}

.scroll-layout .resume-section .timeline-second-style .left-part {
  width: 32%;
  padding-right: 30px;
}

.scroll-layout .resume-section .timeline-second-style .divider {
  left: 32%;
}

.scroll-layout .resume-section .timeline-second-style .right-part {
  width: 68%;
  padding-right: 0;
  padding-left: 36px;
}

.scroll-layout .resume-section .timeline-second-style .item-period {
  margin-top: 2px;
  font-size: 16px;
  font-weight: 600;
}

.scroll-layout .resume-section .timeline-second-style .item-title {
  margin: 0 0 7px;
  font-size: 18px;
  line-height: 1.4;
}

.scroll-layout .resume-section .timeline-second-style .right-part .item-company {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.5;
}

.scroll-layout .resume-section .timeline-second-style .right-part p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
}

@media only screen and (max-width: 767px) {
  .scroll-layout .resume-section .timeline-second-style .left-part {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-left: 25px;
    text-align: left;
  }

  .scroll-layout .resume-section .timeline-second-style .divider {
    left: 0;
  }

  .scroll-layout .resume-section .timeline-second-style .right-part {
    display: block;
    width: 100%;
    padding-right: 0;
    padding-left: 25px;
  }
}

.scroll-layout .certificate-item {
  border-color: #e3dfea;
  background-color: #fff;
}

.scroll-layout .certificate-showcase {
  margin: 0;
  padding: 14px;
  overflow: hidden;
  background-color: #fff;
  border: 2px solid #e3dfea;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(47, 37, 68, 0.08);
}

.scroll-layout .certificate-showcase img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.scroll-layout .certi-logo {
  background-color: #f3f1f8;
}

.scroll-layout .portfolio-grid figure i,
.scroll-layout .portfolio-grid figure .category {
  color: #5d5fe5;
  background-color: #fff;
  box-shadow: 0 8px 24px -12px rgba(23, 20, 28, .4);
}

.scroll-layout .portfolio-grid figure .category {
  color: #292431;
}

.scroll-layout .behance-grid {
  margin-right: -10px;
  margin-left: -10px;
}

.scroll-layout .behance-grid figure {
  padding: 10px;
}

.scroll-layout .behance-grid .portfolio-item-img {
  aspect-ratio: 1279 / 1001;
  overflow: hidden;
  background-color: #f3f1f8;
  border: 1px solid #e7e3ed;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(47, 37, 68, 0.08);
}

.scroll-layout .behance-grid .portfolio-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scroll-layout .behance-grid figure .name {
  min-height: 0;
  padding: 22px 2px 7px;
  font-size: 17px;
  line-height: 1.35;
}

.scroll-layout .portfolio-title-link {
  position: static;
  display: inline;
  inset: auto;
  padding-bottom: 3px;
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(90deg, #9a67eb 0%, #536df4 100%);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0 2px;
  transition: color .2s ease, background-size .25s ease;
}

.scroll-layout .behance-grid figure:hover .portfolio-title-link,
.scroll-layout .behance-grid figure:focus-within .portfolio-title-link,
.scroll-layout .portfolio-title-link:hover,
.scroll-layout .portfolio-title-link:focus {
  color: #6465e8;
  background-size: 100% 2px;
}

.scroll-layout .behance-grid figure:focus-within .portfolio-item-img img {
  transform: scale(1.1);
}

.scroll-layout .portfolio-title-link:focus-visible {
  outline: 2px solid #6967e9;
  outline-offset: 4px;
  border-radius: 3px;
}

.scroll-layout .portfolio-behance-action {
  clear: both;
  padding-top: 36px;
  text-align: center;
}

.scroll-layout .portfolio-behance-action .btn {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.scroll-layout .portfolio-behance-action .btn i {
  font-size: 18px;
}

.scroll-layout .portfolio-filters li a {
  color: #6d6676;
}

.scroll-layout .portfolio-filters li.active a,
.scroll-layout .portfolio-filters li a:hover,
.scroll-layout .portfolio-filters li a:focus {
  color: #34303b;
}

.scroll-layout .form-control,
.scroll-layout .form-control:focus,
.scroll-layout .has-error .form-control,
.scroll-layout .has-error .form-control:focus,
.scroll-layout input[type="search"],
.scroll-layout input[type="password"],
.scroll-layout input[type="text"] {
  color: #211d27;
  background-color: #fff;
  border-color: #d8d3df;
}

.scroll-layout .form-group label {
  color: #746e7b;
}

.scroll-layout .lm-info-block h4,
.scroll-layout .lm-info-block h4 a {
  color: #221e28;
}

.scroll-layout .ajax-page-content {
  color: #2c2832;
  background-color: #fff;
}

.scroll-layout .ajax-page-nav > div.nav-item a {
  color: #5f5968;
  background-color: #f1eef7;
}

.scroll-layout .ajax-page-nav > div.nav-item a:hover {
  color: #fff;
  background-color: #6263e8;
}

.scroll-layout .project-description {
  background-color: #f7f5fb;
  border: 1px solid #e7e3ed;
  border-radius: 8px;
}

.scroll-layout .tags a,
.scroll-layout .share-buttons a {
  color: #403a49;
  background-color: #ebe8f2;
  border-color: #ebe8f2;
}

.scroll-layout .tags a:hover,
.scroll-layout .share-buttons a:hover {
  color: #fff;
  background-color: #6263e8;
  border-color: #6263e8;
}

.scroll-layout .menu-toggle {
  background-color: #fff;
  box-shadow: 0 8px 24px -12px rgba(23, 20, 28, .35);
}

.scroll-layout .menu-toggle span {
  background-color: #292431;
}

@media only screen and (min-width: 1025px) {
  .scroll-layout .page-content {
    padding-left: 378px;
  }

  .scroll-layout .header-hands {
    position: fixed;
    z-index: 1001;
    top: 326px;
    left: max(100px, calc((100vw - 1280px) / 2));
    width: 350px;
    height: 106px;
    pointer-events: none;
    transform: translateY(-50%);
  }

  .scroll-layout .header-hand {
    position: absolute;
    top: 0;
    width: 34px;
    height: 106px;
    overflow: hidden;
    filter: drop-shadow(0 5px 8px rgba(54, 31, 112, .14));
  }

  .scroll-layout .header-hand-left {
    left: -18px;
  }

  .scroll-layout .header-hand-right {
    right: -18px;
  }

  .scroll-layout .header-hand img {
    position: absolute;
    top: 0;
    display: block;
    width: 151px;
    max-width: none;
    height: auto;
  }

  .scroll-layout .header-hand-left img {
    left: 0;
  }

  .scroll-layout .header-hand-right img {
    right: 0;
  }

  .scroll-layout .header {
    width: 350px;
    max-width: 350px;
    padding: 30px 27px 22px;
    border-radius: 15px;
    scrollbar-color: #cbc5d8 transparent;
  }

  .scroll-layout .header-photo {
    width: 148px;
    margin-bottom: 16px;
  }

  .scroll-layout ul.main-menu {
    margin: 15px 0 12px;
  }

  .scroll-layout ul.main-menu a {
    padding: 8px 13px;
  }

  .scroll-layout .social-links {
    margin: 8px 0;
  }

  .scroll-layout .header-buttons {
    margin-top: 24px;
  }
}

@media only screen and (max-width: 1280px) and (min-width: 1025px) {
  .scroll-layout .header-hands {
    top: 318px;
    left: 30px;
  }
}

@media only screen and (max-width: 1024px) {
  .scroll-layout .header-hands {
    display: none;
  }

  .scroll-layout .header {
    background: linear-gradient(155deg, #fbfaff 0%, #f2f0fb 100%);
  }

  .scroll-layout .content-area {
    border-radius: 0;
  }

  .scroll-layout ul.main-menu a {
    color: #17141c;
  }

  .scroll-layout ul.main-menu a.active,
  .scroll-layout ul.main-menu a:hover {
    color: #fff;
  }
}
