@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", system-ui, sans-serif;
  background: rgba(5, 82, 199, 0.16);
  color: #111827;
  line-height: 1.5;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

.container {
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
}

.container-header {
  width: min(1195px, 100% - 48px);
  margin-inline: auto;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  padding: 10px 29px;
  font-weight: 500;
  font-size: 13px;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.btn i {
  padding-left: 7px;
}
.btn--primary {
  background: #153039;
  color: #fff;
  box-shadow: 0 16px 30px rgba(21, 48, 57, 0.25);
}
.btn--primary:hover {
  background: rgb(14.1346153846, 32.3076923077, 38.3653846154);
  box-shadow: 0 22px 40px rgba(21, 48, 57, 0.32);
}
.btn--outline {
  background: #fff;
  border-color: #e5e7eb;
  color: #111827;
}
.btn--outline:hover {
  border-color: #153039;
  color: #153039;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}
.btn--ghost {
  background: transparent;
  border-color: transparent;
  color: #111827;
  padding-inline: 16px;
  border: 1px solid black;
}
.btn--ghost:hover {
  background: #f3f4f6;
  border-color: #f3f4f6;
}
.btn--sm {
  padding: 8px 19px;
  font-size: 13px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(5, 82, 199, 0.16);
  color: #153039;
  font-size: 12px;
  font-weight: 500;
}

.section-title {
  margin: 2px 0 6px;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.section-subtitle {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
  max-width: 560px;
}

.section-heading {
  margin-bottom: 40px;
}
.section-heading--center {
  text-align: center;
}
.section-heading--center .section-subtitle {
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.75);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  padding-block: 40px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}
.logo__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo__name {
  font-size: 15px;
  font-weight: 600;
}
.logo__tagline {
  font-size: 11px;
  color: #6b7280;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 65px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
}
.nav__item a {
  position: relative;
  padding-block: 5px;
  color: #6b7280;
  transition: color 0.2s ease;
  font-size: 16px;
}
.nav__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: #153039;
  transition: width 0.2s ease;
}
.nav__item:hover a {
  color: #111827;
}
.nav__item:hover a::after {
  width: 16px;
}
.nav__item--active a {
  color: #111827;
  font-weight: 500;
}
.nav__item--active a::after {
  width: 16px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  position: relative;
}
.avatar-icon span {
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgb(29.2384615385, 66.8307692308, 79.3615384615), rgb(80.9307692308, 163.3846153846, 190.8692307692));
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-20px) translateX(10px) rotate(1deg);
  }
  50% {
    transform: translateY(-10px) translateX(-10px) rotate(-1deg);
  }
  75% {
    transform: translateY(-25px) translateX(5px) rotate(0.5deg);
  }
}
@keyframes floatRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
}
.qods {
  animation: float 6s ease-in-out infinite;
  font-size: 0;
  display: inline-block;
}
.qods img {
  width: 45px;
}
.qods::before {
  animation: floatRotate 8s ease-in-out infinite;
}

.qods--dynamic {
  animation: float 5s ease-in-out infinite;
  font-size: 0;
  display: inline-block;
  animation-name: float-dynamic;
}
.qods--dynamic img {
  width: 45px;
}
@keyframes float-dynamic {
  0%, 100% {
    transform: translateY(0px) translateX(0px) scale(1);
  }
  33% {
    transform: translateY(-30px) translateX(15px) scale(1.02);
  }
  66% {
    transform: translateY(-15px) translateX(-15px) scale(0.98);
  }
}

@keyframes breathe {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 1.35;
  }
}
.qods--breathe {
  font-size: 0;
  display: inline-block;
}
.qods--breathe img {
  width: 45px;
  animation: breathe 4s ease-in-out infinite;
}

.hero {
  padding-block: 56px 61px;
  background: radial-gradient(circle at top right, rgba(5, 82, 199, 0.16), #ffffff 60%);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  align-items: center;
}
.hero__eyebrow {
  font-size: 23px;
  letter-spacing: -0.6px;
  color: #6b7280;
  margin-bottom: 5px;
  margin-top: 33px;
}
.hero__name {
  color: #153039;
  font-size: 21px;
}
.hero__title {
  margin: 0;
  letter-spacing: 0.3px;
  font-size: 27px;
  line-height: 1.4;
}
.hero__title--accent {
  color: #2f9abd;
}
.hero__subtitle {
  letter-spacing: 0.3px;
  margin-top: 18px;
  margin-bottom: 38px;
  font-size: 14px;
  color: #6b7280;
  max-width: 615px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  font-size: 14px;
}
.hero__stat-label {
  display: block;
  margin-bottom: 2px;
  color: #6b7280;
}
.hero__stat-value {
  font-weight: 600;
  font-size: 18px;
}
.hero__visual {
  display: flex;
  justify-content: center;
}

.hero-avatar {
  position: relative;
  width: 220px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.hero-avatar__circle--outer {
  position: absolute;
  inset: 10px;
  border-radius: inherit;
  border: 2px solid rgba(21, 48, 57, 0.23);
}
.hero-avatar__circle--inner {
  position: absolute;
  inset: 32px;
  border-radius: inherit;
  background: #f9fafb;
}
.hero-avatar__image {
  position: relative;
  width: 70%;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #153039;
}
.hero-avatar__orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: hero-orbit 18s linear infinite;
  transform-origin: center center;
}
.hero-avatar__social {
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.1);
  transform-origin: center center;
}
.hero-avatar__social img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  animation: hero-orbit-reverse 18s linear infinite;
}
.hero-avatar__social--1 {
  --angle: 0deg;
}
.hero-avatar__social--2 {
  --angle: 90deg;
}
.hero-avatar__social--3 {
  --angle: 180deg;
}
.hero-avatar__social--4 {
  --angle: 270deg;
}
.hero-avatar__social--1, .hero-avatar__social--2, .hero-avatar__social--3, .hero-avatar__social--4 {
  --radius: 85px;
  transform: rotate(var(--angle)) translate(var(--radius)) rotate(calc(-1 * var(--angle)));
}
.hero-avatar__social--3, .hero-avatar__social--4 {
  --radius: 115px;
}

@keyframes hero-orbit {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes hero-orbit-reverse {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
.why {
  padding-block: 15px;
}
.why__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.25fr);
  gap: 48px;
}
.why__content {
  padding-top: 30px;
  padding-left: 20px;
}
.why__visual {
  display: flex;
  justify-content: center;
  padding-left: 30px;
}
.why__features {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.feature {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 14px 18px;
  background: #f9fafb;
  border-radius: 18px;
  border: 1px solid #f3f4f6;
}
.feature__icon {
  width: 30px;
  height: 30px;
  border-radius: 16px;
  border: 2px solid rgb(162.9230769231, 206.5384615385, 221.0769230769);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.feature__icon i {
  font-size: 17px;
  color: #153039;
}
.feature__title {
  margin: 0 0 2px;
  font-size: 13px;
}
.feature__text {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}

.mockup-stack {
  position: relative;
  width: 280px;
  height: 320px;
}
.mockup-stack__item {
  position: absolute;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}
.mockup-stack__item--top {
  top: 0;
  right: 0;
  transform: rotate(-6deg);
}
.mockup-stack__item--middle {
  top: 50px;
  left: -10%;
  transform: rotate(4deg);
}
.mockup-stack__item--bottom {
  top: 120px;
  right: -6%;
}

.portfolio {
  padding-block: 15px;
  background: #f9fafb;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.portfolio__dots {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.project-card {
  background: #fff;
  border-radius: 24px;
  border: 3px solid rgba(15, 23, 42, 0.08);
  padding: 32px;
  padding: 19px 19px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.project-card__thumb {
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
}
.project-card__thumb img {
  width: 100%;
  height: auto;
  display: block;
  height: 235px;
  object-fit: cover;
  object-position: top;
}
.project-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-card__eyebrow {
  font-size: 11px;
  color: #153039;
  font-weight: 500;
}
.project-card__title {
  margin: 0;
  font-size: 16px;
}
.project-card__text {
  margin: 0;
  font-size: 13px;
  color: #6b7280;
}
.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.project-card__footer {
  margin-top: 8px;
}

.tag {
  font-size: 11px;
  padding: 4px 11px;
  border-radius: 999px;
  background: #f3f4f6;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #d1d5db;
}
.dot--active {
  width: 20px;
  background: #153039;
}

.process {
  padding-block: 54px;
  background: #fff;
}
.process__timeline {
  position: relative;
  margin-top: 40px;
  padding-inline: 8px;
}
.process__timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: #e5e7eb;
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 5px;
  align-items: center;
}
.process-step__card {
  background: rgba(5, 82, 199, 0.16);
  border: 3px solid rgba(21, 48, 57, 0.35);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
  margin-right: 50px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  padding: 24px 26px;
}
.process-step__card__icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 14px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #153039;
  background: rgba(21, 48, 57, 0.08);
}
.process-step__card__title {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.1;
  color: #0f172a;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.process-step__card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #64748b;
  max-width: 520px;
  margin-inline: auto;
}
.process-step__title {
  margin: 0 0 5px;
  font-size: 16px;
}
.process-step__text {
  margin: 0;
  font-size: 14px;
  color: #6b7280;
}
.process-step__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #153039;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  margin-left: -18px;
  z-index: 1;
}
.process-step--left .process-step__card {
  grid-column: 1/2;
}
.process-step--left .process-step__badge {
  grid-column: 2/3;
}
.process-step--right .process-step__badge {
  grid-column: 1/2;
  position: absolute;
  right: -17px;
}
.process-step--right .process-step__card {
  grid-column: 2/3;
  margin-right: 0;
  margin-left: 50px;
}

.testimonials {
  padding-block: 20px;
  background: #f9fafb;
}
.testimonials__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 35px;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 24px;
  border: 3px solid rgba(15, 23, 42, 0.08);
  padding: 32px;
  box-shadow: none;
  border: 1px solid rgba(15, 23, 42, 0.08);
  padding: 26px 29px 27px;
}
.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
}
.testimonial-card__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(5, 82, 199, 0.16);
  color: #153039;
  font-weight: 600;
}
.testimonial-card__name {
  margin: 0;
  font-size: 15px;
}
.testimonial-card__role {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}
.testimonial-card__rating {
  font-size: 13px;
  color: rgb(62.1923076923, 142.1538461538, 168.8076923077);
  margin-bottom: 11px;
}
.testimonial-card__text {
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 11px;
}
.testimonial-card__date {
  font-size: 12px;
  color: #9ca3af;
  margin: 0;
}

.contact {
  padding-block: 54px;
}
.contact__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 45px;
  align-items: flex-start;
}
.contact__details {
  margin-top: 29px;
  display: grid;
  gap: 18px;
  font-size: 14px;
}
.contact__item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact__item img {
  width: 36px;
  height: 36px;
  padding: 8px;
  background: #153039;
  border-radius: 50%;
}
.contact__item .text {
  display: flex;
  flex-direction: column;
}
.contact__label {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 2px;
}
.contact__value {
  font-weight: 500;
}
.contact__value:hover {
  text-decoration: underline;
}
.contact__form-wrapper {
  background: #fff;
  border-radius: 24px;
  border: 3px solid rgba(15, 23, 42, 0.08);
  padding: 32px;
  padding: 27px 29px;
}

.contact-form {
  display: grid;
  gap: 16px;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form__group label {
  font-size: 13px;
  color: #6b7280;
}
.contact-form__group input,
.contact-form__group textarea {
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form__group input:focus,
.contact-form__group textarea:focus {
  border-color: #153039;
  box-shadow: 0 0 0 1px rgba(21, 48, 57, 0.18);
}
.contact-form__group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form__actions {
  margin-top: 6px;
  display: flex;
  justify-content: flex-end;
}
.contact-form .contact-form__hint {
  margin: 10px 0 0;
  font-size: 13px;
  color: #6b7280;
}
.contact-form .contact-form__hint.is-ok {
  color: #16a34a;
  font-weight: 500;
}

.site-footer {
  border-top: 1px solid #e5e7eb;
  background: #fff;
}
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px;
  font-size: 13px;
}
.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}
.site-footer__copy {
  margin: 0;
  color: #6b7280;
}
.site-footer__nav, .site-footer__meta {
  display: flex;
  gap: 18px;
}
.site-footer__nav a, .site-footer__meta a {
  color: #6b7280;
  transition: color 0.2s ease;
}
.site-footer__nav a:hover, .site-footer__meta a:hover {
  color: #111827;
}

/* CAROUSEL */
.portfolio__carousel {
  position: relative;
}

.portfolio__viewport {
  overflow: hidden;
  width: 100%;
}

.portfolio__track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}

.portfolio__carousel {
  --gap: 24px;
  --per-page: 3;
}

.project-card {
  flex: 0 0 calc((100% - 48px) / var(--per-page));
  box-sizing: border-box;
}

@media (max-width: 991px) {
  .project-card {
    flex: 0 0 100%;
  }
}
.portfolio__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.portfolio__arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.portfolio__arrow--prev {
  left: -10px;
}

.portfolio__arrow--next {
  right: -10px;
}

/* Masquer si désactivé */
.portfolio__arrow.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.flag {
  width: 30px;
}

@media (max-width: 991px) {
  .nav {
    display: none;
  }
  .hero__inner,
  .why__inner,
  .contact__inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero__visual {
    order: -1;
  }
  .portfolio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-step {
    grid-template-columns: minmax(0, 1fr);
  }
  .process-step--left .process-step__card,
  .process-step--left .process-step__badge, .process-step--right .process-step__card,
  .process-step--right .process-step__badge {
    grid-column: 1/-1;
  }
  .process-step--left .process-step__badge, .process-step--right .process-step__badge {
    margin-block: 13px;
  }
  .process-step__card {
    order: 2;
  }
  .process-step__badge {
    order: 1;
  }
  .portfolio__track .project-card {
    flex: 0 0 100%;
  }
}
@media (max-width: 991px) {
  .portfolio__arrow {
    width: 38px;
    height: 38px;
  }
  .site-header__inner {
    padding-block: 10px;
  }
  .hero {
    padding-block: 45px 48px;
  }
  .testimonials__header {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .process-step__badge {
    margin-left: 0;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }
  .process-step__card {
    margin: 0 !important;
  }
}
@media (max-width: 991px) {
  .container,
  .container-header {
    width: min(100% - 32px, 100%);
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 40px;
  }
  .hero__subtitle {
    font-size: 15px;
  }
  .hero-avatar__social--1, .hero-avatar__social--2, .hero-avatar__social--3, .hero-avatar__social--4 {
    --radius: 175px;
  }
  .hero-avatar__social--3, .hero-avatar__social--4 {
    --radius: 215px;
  }
  .btn {
    padding-top: 13px;
    padding-bottom: 13px;
  }
  .why {
    padding-block: 95px;
  }
  .section-title {
    font-size: 35px;
  }
  .section-subtitle {
    font-size: 17px;
  }
  .feature__title {
    font-size: 14px;
  }
  .feature__text {
    font-size: 13px;
  }
  .feature__icon {
    width: 30px;
    height: 30px;
  }
  .feature__icon i {
    font-size: 18px;
  }
  .process-step {
    margin-bottom: 28px;
  }
  .testimonials {
    padding-block: 45px;
  }
  .testimonial-card__text {
    font-size: 13px;
  }
  .contact__item img {
    width: 40px;
    height: 40px;
    padding: 10px;
  }
  .portfolio__arrow--prev {
    left: -18px;
  }
  .portfolio__arrow--next {
    right: -18px;
  }
  .hero-avatar {
    width: 415px;
  }
}
@media (min-width: 992px) {
  .hero__inner {
    gap: 51px;
  }
  .hero__title {
    font-size: 35px;
  }
  .hero__subtitle {
    font-size: 16px;
  }
  .hero-avatar {
    width: 300px;
  }
  .hero-avatar__social--1, .hero-avatar__social--2, .hero-avatar__social--3, .hero-avatar__social--4 {
    --radius: 120px;
  }
  .hero-avatar__social--3, .hero-avatar__social--4 {
    --radius: 155px;
  }
  .btn {
    padding-top: 14px;
    padding-bottom: 14px;
  }
  .why {
    padding-block: 125px;
  }
  .section-title {
    font-size: 38px;
  }
  .section-subtitle {
    font-size: 18px;
  }
  .feature__title {
    font-size: 15px;
  }
  .feature__text {
    font-size: 14px;
  }
  .feature__icon {
    width: 36px;
    height: 36px;
  }
  .feature__icon i {
    font-size: 20px;
  }
  .process-step {
    margin-bottom: 32px;
  }
  .testimonials {
    padding-block: 54px;
  }
  .testimonial-card__text {
    font-size: 14px;
  }
  .contact__item img {
    width: 48px;
    height: 48px;
    padding: 12px;
  }
  .portfolio__arrow--prev {
    left: -22px;
  }
  .portfolio__arrow--next {
    right: -22px;
  }
}
@media (min-width: 1600px) {
  .hero-avatar {
    width: 500px;
  }
  .hero-avatar__social--1, .hero-avatar__social--2, .hero-avatar__social--3, .hero-avatar__social--4 {
    --radius: 220px;
  }
  .hero-avatar__social--3, .hero-avatar__social--4 {
    --radius: 255px;
  }
}/*# sourceMappingURL=styles.css.map */