.has-fade {
  visibility: hidden;
}

@keyframes fade-in {
  from {
    visibility: hidden;
    opacity: 0;
  }
  1% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: visible;
    opacity: 1;
  }
}
.fade-in {
  animation: fade-in 200ms ease-in-out forwards;
}

@keyframes fade-out {
  from {
    visibility: visible;
    opacity: 1;
  }
  99% {
    visibility: visible;
    opacity: 0;
  }
  to {
    visibility: hidden;
    opacity: 0;
  }
}
.fade-out {
  animation: fade-out 200ms ease-in-out forwards;
}

html {
  font-size: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Public Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 300;
  color: hsl(233, 26%, 24%);
  line-height: 1.3;
  overflow-x: hidden;
}
@media (min-width: 64em) {
  body {
    font-size: 1.125rem;
  }
}
body.noscroll {
  overflow: hidden;
}

h1,
h2,
h3 {
  font-weight: 300;
  line-height: 1.15;
  color: hsl(233, 26%, 24%);
  margin-top: 0px;
}

h1 {
  font-size: 2.31rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 64em) {
  h1 {
    font-size: 3.25rem;
  }
}

h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5625rem;
}
@media (min-width: 64em) {
  h2 {
    font-size: 2.25rem;
    margin-bottom: 2.25rem;
  }
}

p {
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

.container {
  max-width: 69.375rem;
  margin: 0 auto;
}
.container--pall {
  padding-top: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1.975rem;
  padding-left: 1.5rem;
}
@media (min-width: 64em) {
  .container--pall {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}
.container--py {
  padding-top: 4.375rem;
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--py {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.container--px {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.container--pt {
  padding-top: 4.375rem;
}
@media (min-width: 64em) {
  .container--pt {
    padding-top: 6rem;
  }
}
.container--pr {
  padding-right: 1.5rem;
}
.container--pb {
  padding-bottom: 4.375rem;
}
@media (min-width: 64em) {
  .container--pb {
    padding-bottom: 6rem;
  }
}
.container--pl {
  padding-left: 1.5rem;
}

.flex {
  display: flex;
}
.flex-jc-sb {
  justify-content: space-between;
}
.flex-jc-c {
  justify-content: center;
}
.flex-ai-c {
  align-items: center;
}

button,
.button {
  position: relative;
  display: inline-block;
  padding: 0.475rem 1.275rem;
  background-image: linear-gradient(to right, rgb(1, 124, 220), rgb(1, 124, 220));
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  color: hsl(0, 0%, 100%);
  font-weight: 400;
  font-size: 0.875rem;
  transition: opacity 300ms ease-in-out;
  overflow: hidden;
}
button::before,
.button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.25);
  opacity: 0;
  transition: opacity 150ms ease-in-out;
}
button:hover::before,
.button:hover::before {
  opacity: 1;
}

@media (max-width: 63.9375em) {
  .hide-for-mobile {
    display: none;
  }
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background-color: hsl(220, 16%, 96%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(5, 22, 92, 0.12);
  border: 0;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 220ms ease-in-out, transform 220ms ease-in-out;
  z-index: 11000;
}
.back-to-top svg {
  display: block;
}
.back-to-top:hover {
  transform: translateY(8px);
}

.back-to-top--visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 64em) {
  .hide-for-desktop {
    display: none;
  }
}

.header {
  overflow: visible;
}
.header__nav {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: hsl(233, 26%, 24%);
  z-index: 9999;
}
.header.open .header__toggle > span:first-child {
  transform: rotate(45deg);
}
.header.open .header__toggle > span:nth-child(2) {
  opacity: 0;
}
.header.open .header__toggle > span:last-child {
  transform: rotate(-45deg);
}
.header .overlay {
  opacity: 0;
  position: fixed;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-image: linear-gradient(hsl(233, 26%, 24%), transparent);
  z-index: 9000;
}
.header nav {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.header nav .container {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.header__logo img {
  width: 10.575rem;
  height: 1.65rem;
}
.header__toggle > span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: hsl(0, 0%, 100%);
  transition: all 300ms ease-in-out;
  transform-origin: 3px 1px;
}
.header__toggle > span:not(:last-child) {
  margin-bottom: 5px;
}
.header__menu {
  position: absolute;
  width: calc(100% - 3rem);
  left: 50%;
  transform: translateX(-50%);
  background: hsl(0, 0%, 100%);
  margin-top: 5rem;
  padding: 1.725rem;
  border-radius: 5px;
  z-index: 10001;
}
.header__menu a {
  display: block;
  padding: 0.625rem;
  color: hsl(233, 26%, 24%);
  text-align: center;
}
.header__links a {
  position: relative;
  font-size: 0.9rem;
  color: hsl(233, 8%, 62%);
  transition: color 300ms ease-in-out;
}
.header__links a:not(:last-child) {
  margin-right: 32px;
}
.header__links a::before {
  content: "";
  display: block;
  position: absolute;
  height: 5px;
  left: 0;
  right: 0;
  bottom: -23px;
  background: linear-gradient(to right, rgb(1, 124, 220), rgb(182, 223, 255));
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}
.header__links a:hover {
  color: hsl(0, 0%, 100%);
}
.header__links a:hover::before {
  opacity: 1;
}

.hero {
  background-color: hsl(0, 0%, 98%);
  padding-top: 2rem;
}
@media (min-width: 64em) {
  .hero .container {
    display: flex;
    align-items: center;
  }
}
.hero__image {
  position: relative;
  min-height: 19.5rem;
  overflow: hidden;
}
@media (min-width: 40em) {
  .hero__image {
    min-height: 25rem;
  }
}
@media (min-width: 64em) {
  .hero__image {
    flex: 3;
    order: 2;
    height: 41rem;
  }
}
.hero__image img {
  position: absolute;
  width: 90%;
  height: 80%;
  object-fit: scale-down;
  object-position: center;
}
.hero__bg-mobile {
  display: block;
}
@media (min-width: 64em) {
  .hero__bg-mobile {
    display: none;
  }
}
.hero__bg-desktop {
  display: none;
}
@media (min-width: 64em) {
  .hero__bg-desktop {
    display: block;
  }
}
.hero__mockups {
  position: absolute;
  width: 93%;
  height: 100%;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  object-fit: contain;
}
@media (min-width: 40em) {
  .hero__mockups {
    width: 52%;
  }
}
@media (min-width: 64em) {
  .hero__mockups {
    width: 94%;
    height: auto;
    bottom: auto;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    left: 50%;
  }
}
.hero__text {
  text-align: center;
}
@media (min-width: 64em) {
  .hero__text {
    flex: 2;
    order: 1;
    text-align: left;
  }
}

.about {
  background: hsl(0, 0%, 100%);
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.about__header {
  max-width: 980px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.about__title {
  margin: 0 0 1.5rem;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.1;
  color: hsl(233, 26%, 24%);
}
.about__title span {
  color: rgb(1, 124, 220);
}
.about__intro {
  max-width: 860px;
  margin: 0 auto;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(233, 26%, 24%);
}
.about__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 64em) {
  .about__content {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
    gap: 4rem;
  }
}
.about__image {
  width: 100%;
}
.about__image video,
.about__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(5, 22, 92, 0.12);
}
.about__text {
  width: 100%;
}
.about__items {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.about__item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (max-width: 39.9375em) {
  .about__item {
    grid-template-columns: 60px 1fr;
    gap: 1rem;
  }
}
.about__icon {
  width: 72px;
  height: 72px;
  border-radius: 0.35rem;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about__icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}
@media (max-width: 39.9375em) {
  .about__icon {
    width: 60px;
    height: 60px;
  }
  .about__icon img {
    width: 28px;
    height: 28px;
  }
}
.about__info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.about__item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: hsl(233, 26%, 24%);
  margin: 0;
}
.about__desc {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: hsl(233, 26%, 24%);
}

.feature {
  background-color: hsl(220, 16%, 96%);
  padding-top: 4rem;
  text-align: center;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
  text-justify: inter-word;
}
@media (min-width: 64em) {
  .feature {
    text-align: left;
  }
}
.feature p, .feature__description {
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
.feature p::after, .feature__description::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
}
.feature__intro {
  margin-bottom: 1.75rem;
}
.feature__intro span {
  color: rgb(1, 124, 220);
}
@media (min-width: 64em) {
  .feature__intro {
    width: 60%;
  }
}
@media (min-width: 40em) {
  .feature__grid {
    display: flex;
    flex-wrap: wrap;
  }
}
.feature__item {
  padding: 0.9375rem;
}
@media (min-width: 40em) {
  .feature__item {
    flex: 0 0 50%;
  }
}
@media (min-width: 64em) {
  .feature__item {
    flex: 1;
  }
}
.feature__icon {
  margin-bottom: 1.875rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 64em) {
  .feature__icon {
    justify-content: center;
    margin-bottom: 2.75rem;
  }
}
.feature__title {
  display: grid;
  font-size: 1.25rem;
  justify-content: center;
  font-weight: 40;
  line-height: 1.15;
  color: hsl(233, 26%, 24%);
  margin-bottom: 1rem;
}
@media (min-width: 64em) {
  .feature__title {
    display: grid;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    justify-content: center;
  }
}
.feature__description {
  font-size: 0.875rem;
  line-height: 1.5;
}

.sectors {
  background-color: hsl(0, 0%, 100%);
  padding: 4.375rem 0;
}
@media (min-width: 64em) {
  .sectors {
    padding: 1.5rem 0;
  }
}
.sectors__content {
  max-width: 69.375rem;
  margin: 0 auto;
}
.sectors__header {
  text-align: center;
  margin-bottom: 2.75rem;
}
@media (min-width: 64em) {
  .sectors__header {
    margin-bottom: 3rem;
  }
}
.sectors__header h2 {
  font-size: 1.875rem;
  color: hsl(233, 26%, 24%);
  margin-bottom: 1rem;
}
@media (min-width: 64em) {
  .sectors__header h2 {
    font-size: 2.25rem;
  }
}
.sectors__header h2 span {
  color: rgb(1, 124, 220);
}
.sectors__header p {
  color: hsl(233, 8%, 62%);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto;
}
.sectors__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 40em) {
  .sectors__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64em) {
  .sectors__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}
.sectors__item {
  display: grid;
  grid-template-rows: 4.25rem 9.5rem;
  width: 100%;
  border: 0;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
  appearance: none;
  background: #ffffff;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(5, 22, 92, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.sectors__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(5, 22, 92, 0.1);
}
.sectors__item:focus-visible {
  outline: 2px solid rgb(1, 124, 220);
  outline-offset: 3px;
}
@media (max-width: 39.9375em) {
  .sectors__item {
    grid-template-rows: 4rem 6.75rem;
  }
}
.sectors__top {
  background: hsl(233, 26%, 24%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
}
.sectors__top-title {
  color: hsl(0, 0%, 100%);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}
@media (max-width: 39.9375em) {
  .sectors__top-title {
    font-size: 1.05rem;
  }
}
.sectors__body {
  position: relative;
  background: #f7f7f8;
  padding: 1.1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.sectors__name {
  margin: 0;
  color: hsl(233, 26%, 24%);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  transition: opacity 220ms ease, transform 220ms ease;
}
@media (min-width: 64em) {
  .sectors__name {
    font-size: 1.2rem;
  }
}
.sectors__desc {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  margin: 0;
  color: hsl(233, 26%, 24%);
  font-size: 0.875rem;
  line-height: 1.45;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 39.9375em) {
  .sectors__desc {
    font-size: 0.9rem;
    -webkit-line-clamp: 3;
  }
}
.sectors__item:hover .sectors__top-title, .sectors__item.is-active .sectors__top-title {
  opacity: 1;
  transform: translateY(0);
}
.sectors__item:hover .sectors__name, .sectors__item.is-active .sectors__name {
  opacity: 0;
  transform: translateY(-8px);
}
.sectors__item:hover .sectors__desc, .sectors__item.is-active .sectors__desc {
  opacity: 1;
  transform: translateY(0);
}

.contact {
  background-color: hsl(0, 0%, 98%);
  padding: 4.375rem 0;
}
@media (min-width: 64em) {
  .contact {
    padding: 3rem 0;
  }
}
.contact__content {
  max-width: 69.375rem;
  margin: 0 auto;
}
.contact__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 64em) {
  .contact__header {
    margin-bottom: 3rem;
  }
}
.contact__header h2 {
  margin: 0 0 1rem;
  font-size: 1.875rem;
  color: hsl(233, 26%, 24%);
}
@media (min-width: 64em) {
  .contact__header h2 {
    font-size: 2.25rem;
  }
}
.contact__header h2 span {
  color: #1376d7;
}
.contact__header p {
  max-width: 42rem;
  margin: 0 auto;
  color: hsl(233, 26%, 24%);
  font-size: 0.875rem;
  line-height: 1.6;
}
.contact__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 64em) {
  .contact__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.5rem;
  }
}
.contact__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  min-height: 100%;
}
.contact__visual img {
  display: block;
  width: 100%;
  max-width: 31rem;
  height: auto;
  object-fit: contain;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.contact__card {
  background: hsl(0, 0%, 100%);
  border: 1px solid #e7e7e7;
  box-shadow: 0 10px 24px rgba(5, 22, 92, 0.08);
  padding: 1.5rem;
}
@media (min-width: 40em) {
  .contact__card {
    padding: 2rem;
  }
}
@media (min-width: 64em) {
  .contact__card {
    padding: 2.125rem 2.25rem 1.875rem;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 40em) {
  .contact__row {
    grid-template-columns: 1fr 1fr;
  }
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0rem;
}
.contact__field label {
  font-size: 0.875rem;
  font-weight: 400;
  color: #111111;
  line-height: 1.3;
}
.contact__field label span {
  color: #111111;
}
.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  border: 1px solid #d7d7d7;
  background: hsl(0, 0%, 100%);
  color: hsl(233, 26%, 24%);
  border-radius: 0;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.contact__field input::placeholder,
.contact__field select::placeholder,
.contact__field textarea::placeholder {
  color: #c4c6ca;
}
.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  border-color: #1376d7;
  box-shadow: 0 0 0 3px rgba(19, 118, 215, 0.1);
}
.contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23828a99' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.8rem;
  cursor: pointer;
}
.contact__field textarea {
  resize: vertical;
  min-height: 8.25rem;
}
.contact__button {
  margin-top: 0.15rem;
  width: 100%;
  border: 0;
  background: rgb(1, 124, 220);
  color: hsl(0, 0%, 100%);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  padding: 0.7rem 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.contact__button:hover {
  transform: translateY(-1px);
}
.contact__button:active {
  transform: translateY(0);
}
.contact__button-icon {
  font-size: 1rem;
  line-height: 1;
}
.contact__note {
  margin: 0.35rem 0 0;
  text-align: center;
  color: hsl(233, 8%, 62%);
  font-size: 0.875rem;
  line-height: 1.5;
}
.contact__form-message {
  min-height: 1.5rem;
  margin: 0.5rem 0 0;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.4;
  opacity: 0;
  transition: opacity 200ms ease;
}
.contact__form-message.is-visible {
  opacity: 1;
}
.contact__form-message.is-success {
  color: hsl(233, 26%, 24%);
}
.contact__form-message.is-error {
  color: #c71e1e;
}
.contact__whatsapp {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.5;
  color: hsl(233, 8%, 62%);
}
.contact__whatsapp a {
  color: #25d366;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 200ms ease;
}
.contact__whatsapp a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.articles {
  background-color: hsl(0, 0%, 98%);
}

.article__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.875rem;
}
@media (min-width: 40em) {
  .article__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64em) {
  .article__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.article__item {
  border-radius: 0.3125rem;
  overflow: hidden;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.15);
  transition: all 150ms ease-in-out;
}
.article__item:hover {
  transform: scale(1.05);
}
.article__image {
  height: 12.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.article__text {
  padding: 1.875rem 1.875rem 2.5rem 1.875rem;
  color: hsl(233, 8%, 62%);
}
@media (min-width: 40em) {
  .article__text {
    padding: 1.875rem 1.5625rem;
  }
}
.article__author {
  font-size: 0.625rem;
  margin-bottom: 0.75rem;
}
.article__title {
  font-size: 1.0625rem;
  line-height: 1.2;
  color: hsl(233, 26%, 24%);
  margin-bottom: 0.5rem;
}
.article__description {
  font-size: 0.8125rem;
}

.blog-page {
  background-color: hsl(0, 0%, 100%);
  padding: 4.375rem 1.5rem;
}
@media (min-width: 64em) {
  .blog-page {
    padding: 6rem 1.5rem;
  }
}
.blog-page__header {
  text-align: center;
  margin-bottom: 3.75rem;
}
.blog-page__header h1 {
  color: hsl(233, 26%, 24%);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 64em) {
  .blog-page__header h1 {
    font-size: 2.75rem;
  }
}
.blog-page__header p {
  color: hsl(233, 8%, 62%);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}
.blog-page__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 40em) {
  .blog-page__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}
@media (min-width: 64em) {
  .blog-page__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.blog-page__card {
  display: flex;
  flex-direction: column;
  background-color: hsl(0, 0%, 100%);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(5, 22, 92, 0.1);
  transition: all 300ms ease-in-out;
  text-decoration: none;
}
.blog-page__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(5, 22, 92, 0.15);
}
.blog-page__card-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
}
.blog-page__card-content {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-page__card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.blog-page__author {
  color: hsl(233, 26%, 24%);
  font-weight: 400;
}
.blog-page__date {
  color: hsl(233, 8%, 62%);
}
.blog-page__card-title {
  color: hsl(233, 26%, 24%);
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}
@media (min-width: 64em) {
  .blog-page__card-title {
    font-size: 1.5rem;
  }
}
.blog-page__card-description {
  color: hsl(233, 8%, 62%);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.blog-page__card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: hsl(233, 8%, 62%);
  font-size: 0.875rem;
}
.blog-page__card-footer svg {
  color: hsl(1, 124%, 220%);
}
.blog-page__read-time {
  font-weight: 300;
}

.article-detail {
  background-color: hsl(0, 0%, 100%);
  padding: 3rem 1.5rem;
}
@media (min-width: 64em) {
  .article-detail {
    padding: 4rem 1.5rem;
  }
}
.article-detail__header {
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.article-detail__back {
  display: inline-block;
  color: hsl(1, 124%, 220%);
  text-decoration: none;
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  transition: color 300ms ease-in-out;
}
.article-detail__back:hover {
  color: hsl(233, 26%, 24%);
}
.article-detail__title {
  color: hsl(233, 26%, 24%);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 64em) {
  .article-detail__title {
    font-size: 2.5rem;
  }
}
.article-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  color: hsl(233, 8%, 62%);
  font-size: 0.875rem;
}
.article-detail__author {
  font-weight: 400;
}
.article-detail__separator {
  color: hsl(233, 8%, 62%);
}
.article-detail__image {
  width: 100%;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  margin-bottom: 3rem;
}
@media (min-width: 64em) {
  .article-detail__image {
    height: 400px;
    margin-bottom: 4rem;
  }
}
.article-detail__content {
  max-width: 800px;
  margin: 0 auto 3rem;
  color: hsl(233, 8%, 62%);
  line-height: 1.8;
}
.article-detail__content h2 {
  color: hsl(233, 26%, 24%);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 64em) {
  .article-detail__content h2 {
    font-size: 1.75rem;
  }
}
.article-detail__content p {
  margin-bottom: 1.5rem;
  text-align: justify;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}
@media (min-width: 64em) {
  .article-detail__content p {
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
  }
}
.article-detail__content strong {
  color: hsl(233, 26%, 24%);
  font-weight: 400;
}
.article-detail__navigation {
  max-width: 800px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (min-width: 40em) {
  .article-detail__navigation {
    gap: 3rem;
  }
}
.article-detail__nav-prev, .article-detail__nav-next {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  border: 2px solid hsl(220, 16%, 96%);
  border-radius: 8px;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}
.article-detail__nav-prev:hover, .article-detail__nav-next:hover {
  border-color: hsl(1, 124%, 220%);
  background-color: hsl(0, 0%, 98%);
}
.article-detail__nav-prev span, .article-detail__nav-next span {
  color: hsl(233, 8%, 62%);
  font-size: 0.875rem;
}
.article-detail__nav-prev strong, .article-detail__nav-next strong {
  color: hsl(233, 26%, 24%);
  font-weight: 400;
  font-size: 1rem;
}
.article-detail__nav-next {
  text-align: right;
}
.article-detail__nav-next span,
.article-detail__nav-next strong {
  text-align: right;
}
.article-detail__comments {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 3rem;
  border-top: 2px solid hsl(220, 16%, 96%);
}
.article-detail__comments h2 {
  color: hsl(233, 26%, 24%);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.comment-form {
  margin-bottom: 3rem;
  background-color: hsl(0, 0%, 98%);
  padding: 2rem;
  border-radius: 8px;
}
.comment-form__group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.comment-form__group label {
  color: hsl(233, 26%, 24%);
  font-size: 0.9375rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.comment-form__group input,
.comment-form__group textarea {
  padding: 0.75rem;
  border: 1px solid hsl(220, 16%, 96%);
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.9375rem;
  color: hsl(233, 26%, 24%);
  transition: border-color 300ms ease-in-out;
}
.comment-form__group input:focus,
.comment-form__group textarea:focus {
  outline: none;
  border-color: hsl(1, 124%, 220%);
  box-shadow: 0 0 0 3px rgba(1, 124, 220, 0.1);
}
.comment-form__group input::placeholder,
.comment-form__group textarea::placeholder {
  color: hsl(233, 8%, 62%);
}
.comment-form__group textarea {
  resize: vertical;
  min-height: 120px;
}
.comment-form button {
  background-image: linear-gradient(to right, hsl(1, 124%, 220%), hsl(1, 124%, 220%));
  color: hsl(0, 0%, 100%);
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 400;
  transition: opacity 300ms ease-in-out;
}
.comment-form button:hover {
  opacity: 0.9;
}

.comments-list h3 {
  color: hsl(233, 26%, 24%);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2rem;
}

.comment {
  padding: 2rem;
  background-color: hsl(0, 0%, 98%);
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.comment__header {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.comment__author {
  color: hsl(233, 26%, 24%);
  font-weight: 400;
}
.comment__date {
  color: hsl(233, 8%, 62%);
  font-size: 0.875rem;
}
.comment__text {
  color: hsl(233, 8%, 62%);
  line-height: 1.6;
}

.hidden-maintenance {
  display: none !important;
}

.policy {
  background-color: hsl(0, 0%, 98%);
  padding: 4rem 1.5rem;
}
@media (min-width: 64em) {
  .policy {
    padding: 4rem 1.5rem;
  }
}
.policy__content {
  max-width: 69.375rem;
  margin: 0 auto;
  color: hsl(233, 8%, 62%);
  line-height: 1.6;
}
.policy__content h1 {
  color: hsl(233, 26%, 24%);
  font-size: 2.25rem;
  margin-bottom: 2rem;
  margin-top: 0;
}
@media (min-width: 64em) {
  .policy__content h1 {
    font-size: 2.75rem;
    margin-bottom: 2.5rem;
  }
}
.policy__content h2 {
  color: hsl(233, 26%, 24%);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 400;
}
@media (min-width: 64em) {
  .policy__content h2 {
    font-size: 1.75rem;
    margin-top: 1.5rem;
  }
}
.policy__content p {
  margin-bottom: 0.5rem;
}
.policy__content p::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 0;
}
@media (min-width: 64em) {
  .policy__content p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
  }
}
.policy__content br {
  display: block;
  content: "";
  margin: 0.5rem 0;
}

.footer {
  background-color: hsl(233, 26%, 24%);
  color: hsl(0, 0%, 100%);
  padding: 2rem;
  text-align: center;
}
.footer .container {
  max-width: 69.375rem;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 64em) {
  .footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 3fr;
    grid-template-rows: 1fr auto;
    grid-template-areas: "logo links1 links2 cta" "social links1 links2 copyright";
    gap: 1rem;
    justify-items: start;
  }
}
.footer a {
  color: hsl(0, 0%, 100%);
}
.footer__logo {
  display: inline-block;
}
@media (max-width: 63.9375em) {
  .footer__logo {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__logo {
    grid-area: logo;
  }
}
.footer__logo img {
  width: 139px;
  height: 32px;
  display: block;
}
@media (max-width: 63.9375em) {
  .footer__social {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__social {
    grid-area: social;
    align-self: end;
  }
}
.footer__social a {
  display: inline-block;
  height: 1.25rem;
}
.footer__social a svg path {
  transition: fill 150ms ease-in-out;
}
.footer__social a:hover svg path {
  fill: rgb(1, 124, 220);
}
.footer__social a:not(:last-child) {
  margin-right: 1rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.875rem;
}
@media (min-width: 64em) {
  .footer__links {
    justify-content: space-between;
    align-items: start;
    font-size: 0.875rem;
  }
}
@media (min-width: 64em) {
  .footer__links.col1 {
    grid-area: links1;
  }
}
@media (max-width: 63.9375em) {
  .footer__links.col2 {
    margin-bottom: 1.875rem;
  }
}
@media (min-width: 64em) {
  .footer__links.col2 {
    grid-area: links2;
  }
}
.footer__links a {
  line-height: 2.25;
  transition: color 150ms ease-in-out;
}
.footer__links a:hover {
  color: rgb(1, 124, 220);
}
@media (min-width: 64em) {
  .footer__cta {
    grid-area: cta;
    text-align: right;
    justify-self: end;
  }
}
@media (max-width: 63.9375em) {
  .footer__cta a.button {
    margin-bottom: 1.875rem;
  }
}
.footer__contact-info {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.8;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 64em) {
  .footer__contact-info {
    align-items: flex-start;
  }
}
.footer__contact-info p {
  margin: 0.2rem 0;
  color: hsl(0, 0%, 100%);
  align-items: center;
  gap: 0.75rem;
  font-size: small;
}
.footer__contact-info p svg {
  width: 20px;
  height: 20px;
  color: hsl(0, 0%, 100%);
  stroke: hsl(0, 0%, 100%);
  flex-shrink: 0;
}
.footer__contact-info p strong {
  font-weight: 400;
  color: hsl(0, 0%, 100%);
}
.footer__contact-info a {
  color: hsl(0, 0%, 100%);
  transition: color 150ms ease-in-out;
}
.footer__contact-info a:hover {
  color: rgb(1, 124, 220);
}
.footer__copyright {
  font-size: 0.8125rem;
  color: hsl(233, 8%, 62%);
  padding-top: 1rem;
}
@media (min-width: 64em) {
  .footer__copyright {
    grid-area: copyright;
    align-self: end;
    justify-self: end;
  }
}
.footer .attribution {
  margin-top: 4rem;
  font-size: 0.575rem;
}/*# sourceMappingURL=style.css.map */