@charset "UTF-8";
/* dm-serif-display-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "DM Serif Display";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/dm-serif-display-v17-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* public-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 400;
  src: url("../assets/fonts/public-sans-v21-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* public-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Public Sans";
  font-style: normal;
  font-weight: 700;
  src: url("../assets/fonts/public-sans-v21-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don’t have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01s !important;
    scroll-behavior: auto !important;
  }
}
.accent-text {
  color: var(--accent-color);
}

.btn {
  font-size: 15px;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  align-items: center;
  background: none;
  border: none;
  border-radius: 999px;
  box-shadow: 10px 10px 25px -10px rgba(54, 83, 107, 0.25);
  cursor: pointer;
  color: var(--btn-text-color);
  display: inline-flex;
  justify-content: center;
  padding: 1em 1.5em;
  text-decoration: none;
}
.btn--primary {
  background-color: var(--accent-color);
}
.btn--primary:hover {
  background-color: var(--accent-color-hover);
}
.btn--secondary {
  border: 1px solid var(--btn-text-color);
}
.btn--secondary:hover {
  background-color: var(--btn-text-color);
  color: #213648;
}
.btn--tertiary {
  border: 1px solid #36536b;
  color: #36536b;
  min-width: 168px;
  min-height: 48px;
}
.btn--tertiary:hover {
  background-color: #36536b;
  color: #ffffff;
}

.row {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.column {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.bg-dark {
  --header-text-color: var(--btn-text-color);
  --text-color: var(--btn-text-color);
  background-color: var(--bg-color-dark);
}
.bg-dark p {
  opacity: 0.7;
}

.large-text {
  font-size: 72px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  letter-spacing: -0.5px;
  line-height: 1;
}

.divider {
  background-color: var(--header-text-color);
  height: 1px;
  opacity: 0.25;
  width: 100%;
}

input,
textarea {
  font-size: 15px;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  align-items: center;
  border: none;
  color: var(--header-text-color);
  display: flex;
  min-height: 3rem;
  opacity: 0.5;
  padding: 0 30px;
}
input::placeholder,
textarea::placeholder {
  font-size: 15px;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--header-text-color);
  opacity: 1;
}

body {
  accent-color: var(--accent-color);
}

form#demo .form-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form#demo input {
  background: var(--btn-text-color);
  border-radius: 999px;
  box-shadow: 10px 10px 25px -10px rgba(54, 83, 107, 0.25);
}

form#contact-form {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}
form#contact-form .form-group {
  align-self: stretch;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: start;
}
form#contact-form .consent-row {
  flex-direction: row;
  gap: 1.5rem;
}
form#contact-form .consent-row label {
  color: var(--header-text-color);
}
form#contact-form input,
form#contact-form textarea {
  background: none;
  border-bottom: 1px solid rgba(54, 83, 107, 0.5);
}
form#contact-form input::placeholder,
form#contact-form textarea::placeholder {
  font-size: 15px;
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  line-height: 1.85;
}
form#contact-form textarea {
  height: calc(3lh + 1.4em); /* 3 line heights + vertical padding */
  resize: block;
}
form#contact-form input[type=checkbox] {
  width: 24px;
  height: 24px;
}
form#contact-form {
  /* Error state */
}
form#contact-form .error-message {
  padding-top: 0.25rem;
  color: #ff0000;
  display: none;
}
form#contact-form .form-group:has(input:user-invalid) input,
form#contact-form .form-group:has(input:user-invalid) textarea,
form#contact-form .form-group:has(textarea:user-invalid) input,
form#contact-form .form-group:has(textarea:user-invalid) textarea {
  border-color: #ff0000;
}
form#contact-form .form-group:has(input:user-invalid) .error-message,
form#contact-form .form-group:has(textarea:user-invalid) .error-message {
  display: block;
}
form#contact-form {
  /* Succes Message */
}
form#contact-form .success-message {
  background: var(--header-text-color);
  border-radius: 12px;
  bottom: 4rem;
  color: var(--bg-color);
  display: none;
  left: 0;
  margin: 0 auto;
  padding: 1.5rem;
  position: absolute;
  right: 0;
  width: fit-content;
  z-index: 2;
}
form#contact-form .success-message h3,
form#contact-form .success-message p {
  color: inherit;
}
form#contact-form .success-message p {
  margin-top: 1em;
  opacity: 0.8;
}
form#contact-form .success-message.visible {
  display: block;
}
form#contact-form .success-message .title {
  justify-content: flex-start;
  gap: 1rem;
}

@media (min-width: 48rem) {
  form#demo .form-group {
    align-items: stretch;
    flex-direction: row;
    gap: 0;
    width: 445px;
    position: relative;
  }
  form#demo .form-group button {
    position: absolute;
    right: 0;
  }
  form#demo input {
    flex: 1;
  }
}
:root {
  --primary-color: #1e3a8a;
  --accent-color: #ba4270;
  --accent-color-hover: #da6d97;
  --bg-color: #edf3f8;
  --bg-color-dark: #1b262f;
  --btn-text-color: #fbfcfe;
  --header-text-color: #36536b;
  --text-color: #6c8294;
  --border-color: #e0e0e0;
  --card-bg: #ffffff;
  --footer-bg: #111;
  --cta-bg: #1a1a1a;
  --container-max-width: 70rem;
  --container-width: 90%;
  --section-spacing: 5rem;
  --card-padding: 1.5rem 2rem;
}

body {
  font-family: "Public Sans", sans-serif;
  color: var(--text-color);
  background-color: var(--bg-color);
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page__background-image {
  position: absolute;
  top: -555px;
  right: -50%;
  z-index: -1;
}

.container {
  margin: 0 auto;
  max-width: var(--container-max-width);
  width: var(--container-width);
}

section {
  padding: var(--section-spacing) 0;
  text-align: center;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--header-text-color);
}

h1,
h2 {
  font-size: 32px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.25;
}

h3 {
  font-size: 18px;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  line-height: 1.39;
}

p {
  font-size: 15px;
  font-family: "Public Sans", sans-serif;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-color);
}

a {
  font-size: 15px;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-color);
}

.nav__item > a:hover {
  opacity: 1;
}

.nav__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  text-align: center;
}

.nav__item {
  position: relative;
}
.nav__item a {
  font-size: 18px;
  font-family: "Public Sans", sans-serif;
  font-weight: 700;
  line-height: 1.39;
  text-decoration: none;
  color: var(--btn-text-color);
  opacity: 0.7;
}
.nav__item a:hover {
  opacity: 1;
}

header {
  padding: 2.5rem 0 0;
}
header .nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1000;
}
header .nav-toggle .close {
  display: none;
}
header:has(.main-nav.visible) .close {
  display: block;
}
header:has(.main-nav.visible) .hamburger {
  display: none;
}
header .main-nav {
  display: none;
}
header .main-nav.visible {
  align-items: stretch;
  background-color: var(--bg-color-dark);
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: flex-start;
  padding: 9rem 2rem;
  position: absolute;
  right: 0;
  top: 0;
  width: 80%;
  z-index: 1000;
}

.hero .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero__image {
  transform: translateX(25px);
}
.hero__content {
  align-items: center;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.logo-container {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.our-clients .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}
.our-clients .logo svg * {
  fill: #ffffff;
}
.our-clients__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.our-clients__content h2 {
  margin-bottom: -0.5rem;
}

.features .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.features__top {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.features__top .features__feature {
  gap: 3rem;
}
.features__bottom {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.features__bottom .features__feature {
  gap: 2rem;
}
.features .features__feature {
  display: flex;
  flex-direction: column;
}
.features .feature__image {
  margin: 0 auto;
}
.features .feature__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cta .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

footer {
  text-align: center;
}
footer .container {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 2rem 0;
}
footer .logo svg * {
  fill: #fbfcfe;
}
footer .socials-list {
  align-items: center;
  display: flex;
  gap: 1.5rem;
}
footer .socials-list .socials-list__item:hover svg * {
  fill: var(--accent-color-hover);
}

.full-width-image img {
  width: 100%;
}

.pricing .container {
  gap: 3rem;
}
.pricing__container {
  justify-content: center;
  gap: 3rem;
}
.pricing .price__tier {
  gap: 1.5rem;
}
.pricing .price__tier h2 {
  font-size: 24px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.35;
}
.pricing .top {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pricing .price {
  font-size: 56px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  letter-spacing: -0.4px;
  line-height: 1;
  color: var(--header-text-color);
}
.pricing .tier__features {
  align-items: flex-start;
  gap: 0.5rem;
  text-align: start;
}
.pricing .tier__features li {
  align-items: center;
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1.5rem 6rem;
  justify-content: center;
}
.pricing .tier__features li p {
  grid-column: 2;
}
.pricing .tier__features li.included p {
  color: var(--header-text-color);
}
.pricing .tier__features li:not(.included) svg {
  display: none;
}

.about-hero .container {
  gap: 2.5rem;
}
.about-hero__content {
  gap: 3rem;
}
.about-hero__content__row {
  gap: 1rem;
}

.about-stats .container {
  border-bottom: 1px solid rgba(54, 83, 107, 0.25);
  border-top: 1px solid rgba(54, 83, 107, 0.25);
  gap: 2.5rem;
  padding: 1rem 0;
}

.about-values .container {
  gap: 3rem;
}
.about-values__item {
  gap: 1rem;
}

.contact .container {
  display: grid;
  gap: 4.5rem;
}
.contact__content {
  display: grid;
  gap: 2.5rem;
}
.contact__clients h3 {
  font-size: 24px;
  font-family: "DM Serif Display", sans-serif;
  font-weight: 400;
  letter-spacing: -0.25px;
  line-height: 1.35;
}
.contact__clients {
  gap: 2rem;
}

@media (min-width: 48rem) {
  h1 {
    font-size: 48px;
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    letter-spacing: -0.4px;
    line-height: 1.15;
  }
  header .navbar {
    display: flex;
    justify-content: flex-start;
    gap: 4rem;
  }
  header .nav-toggle {
    display: none;
  }
  header .main-nav {
    display: flex;
    flex: 1;
  }
  .nav__list {
    flex-direction: row;
    gap: 2.5rem;
  }
  .nav__item a {
    color: var(--header-text-color);
    text-decoration: none;
    opacity: 0.7;
  }
  .logo-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .features__bottom {
    align-items: stretch;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: space-between;
  }
  footer .container {
    flex-direction: row;
    gap: 4rem;
    justify-content: space-between;
  }
  footer .socials-list {
    margin-left: auto;
  }
  .about-hero .container {
    gap: 3rem;
  }
  .about-hero__content {
    display: grid;
    gap: 4rem;
  }
  .about-hero__content__row {
    align-items: flex-start;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr 2fr;
    text-align: start;
  }
  .about-stats .container {
    align-items: flex-start;
    border: none;
    flex-direction: row;
    gap: 0.5rem;
    justify-content: space-between;
    padding: 0;
    text-align: start;
  }
  .about-stats .container > * {
    border-bottom: 1px solid rgba(54, 83, 107, 0.25);
    border-top: 1px solid rgba(54, 83, 107, 0.25);
    flex: 1;
    padding: 1rem 0;
  }
  .about-values__item {
    align-items: flex-start;
    display: grid;
    gap: 0.5rem;
    grid-template-columns: 1fr 2fr;
    text-align: start;
  }
  .pricing__container {
    align-items: flex-start;
    flex-direction: row;
    gap: 0.5rem;
  }
}
@media (min-width: 64rem) {
  h1 {
    font-size: 72px;
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    letter-spacing: -0.5px;
    line-height: 1;
  }
  h2 {
    font-size: 48px;
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    letter-spacing: -0.4px;
    line-height: 1.15;
  }
  .page__background-image {
    top: -172px;
    left: auto;
    right: -140px;
  }
  .hero {
    padding-top: 92px;
  }
  .hero .container {
    align-items: flex-start;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .hero__image img {
    transform: translateY(-25px), scale(1.3);
  }
  .hero__content {
    align-items: flex-start;
    gap: 1.5rem;
    justify-content: center;
    max-width: 546px;
    text-align: left;
  }
  .hero__content p {
    margin-top: -0.5rem;
    padding-left: 30px;
  }
  .our-clients .container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .our-clients__content {
    align-items: flex-start;
    max-width: 445px;
    text-align: start;
  }
  .features__top .features__feature {
    flex-direction: row;
  }
  .features__top .features__feature:last-child {
    flex-direction: row-reverse;
  }
  .features__bottom {
    align-items: stretch;
    flex-direction: row;
    gap: 30px;
    justify-content: space-between;
  }
  .cta .container {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 100px;
  }
  .about-hero .container {
    flex-direction: column;
    gap: 3.5rem;
    text-align: start;
  }
  .about-hero .container h1 {
    max-width: 840px;
  }
  .about-hero__content__row {
    gap: 30px;
  }
  .about-stats .container {
    gap: 30px;
  }
  .about-values .container {
    max-width: 920px;
  }
  .about-values__item {
    gap: 30px;
  }
  .pricing .container {
    align-items: flex-start;
    gap: 4.5rem;
  }
  .pricing__container {
    gap: 30px;
  }
  .pricing .price__tier {
    align-items: flex-start;
    text-align: start;
  }
  .pricing .price__tier h2 {
    font-size: 32px;
    font-family: "DM Serif Display", sans-serif;
    font-weight: 400;
    letter-spacing: -0.25px;
    line-height: 1.25;
  }
  .contact__content {
    align-items: center;
    display: flex;
  }
}