:root {
  --color-soft-blue: #5368df;
  --color-soft-red: #fa5757;
  --color-grayish-blue: #9194a1;
  --color-very-dark-blue: #252b46;
  --color-off-white: #f7f7f7;
  --default-padding: 2rem;
  --default-radius: 0.4rem;
  --desktop-width: 900px;
  --tablet-width: 600px;
  --timing-animation: 0.2s;
}

/* Start Css Reset */
* {
  margin: 0;
  padding: 0;
  font: inherit;
}

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

a {
  color: inherit;
  display: inline-block;
  text-decoration: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

/* End Css Reset */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 4rem;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  font-family: "Rubik", sans-serif;
  line-height: 1.3;
}

.button {
  background-color: var(--color-soft-blue);
  border-radius: var(--default-radius);
  padding: 1.2rem 2.4rem;
  color: var(--color-off-white);
  font-weight: 500;
  font-size: 1.2rem;
  box-shadow: 0 0.4rem 0.8rem 0.2rem rgba(40, 30, 30, 0.1);
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #0056b3;
}
.button-secondary {
  background-color: var(--color-off-white);
  color: var(--color-very-dark-blue);
}
.button-secondary:hover {
  background-color: #e0e0e0;
}
.button--disabled {
  background-color: var(--color-grayish-blue);
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.button--disabled:hover {
  background-color: var(--color-grayish-blue);
}

/* container */
.container {
  display: flex;
  flex-direction: column;
  max-width: var(--desktop-width);
  margin: 0 auto;
  padding: 0 var(--default-padding);
  gap: calc(var(--default-padding) * 4);
}
@media (max-width: 600px) {
  .container {
    gap: calc(var(--default-padding) * 2);
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--color-soft-blue);
  color: white;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 2;
}
@media (min-width: 600px) and (max-width: 900px) {
  .scroll-to-top {
    display: none;
  }
}
@media (max-width: 600px) {
  .scroll-to-top {
    width: 35px;
    height: 35px;
    right: 10px;
  }
}
.scroll-to-top:hover {
  background-color: #0056b3;
}

.arrow {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid white;
  animation: bounce 0.6s infinite alternate;
}
@media (min-width: 600px) and (max-width: 900px) {
  .arrow {
    display: none;
  }
}
@media (max-width: 600px) {
  .arrow {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 12px solid white;
  }
}

#top {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  visibility: hidden;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-5px);
  }
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--default-padding);
}
@media (max-width: 600px) {
  .header {
    font-size: 1.4rem;
  }
}

.logo-content {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
}
.logo-content__logo {
  width: 4rem;
  max-width: 100%;
}

.links {
  display: flex;
  align-items: center;
  gap: var(--default-padding);
  font-weight: 500;
}
@media (max-width: 600px) {
  .links {
    gap: calc(var(--default-padding) / 2);
  }
}
.links__link {
  color: var(--color-very-dark-blue);
  transition: color var(--timing-animation) ease-in-out;
}
.links__link:hover {
  color: #0056b3;
}

.section {
  display: flex;
  align-items: center;
  gap: calc(var(--default-padding) * 2);
}
@media (max-width: 600px) {
  .section {
    flex-direction: column;
    gap: var(--default-padding);
  }
}
.section--one-column {
  flex-direction: column;
  gap: calc(var(--default-padding) / 2);
}
.section__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: calc(var(--default-padding) / 2);
}
.section:nth-of-type(1) .section__title {
  font-size: 4.2rem;
  font-weight: 700;
}
.section__title {
  font-size: 2.4rem;
  font-weight: 700;
}
.section__description {
  font-size: 1.4rem;
  color: var(--color-grayish-blue);
}
.section--one-column .section__description {
  max-width: 50rem;
  text-align: center;
}
.section__buttons {
  display: flex;
  gap: var(--default-padding);
  margin-top: var(--default-padding);
}
@media (max-width: 600px) {
  .section__button:not(.card__button) {
    flex: 1;
    text-align: center;
  }
}
.section__imageContent {
  display: flex;
  flex: 1;
}
@media (max-width: 600px) {
  .section__imageContent {
    order: -1;
  }
}
.section__image {
  max-width: 100%;
}

.cards {
  display: flex;
  gap: var(--default-padding);
  width: 100%;
  margin-top: calc(var(--default-padding) * 2);
  justify-content: space-between;
}
@media (max-width: 600px) {
  .cards {
    flex-wrap: wrap;
  }
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  box-shadow: 0 0.4rem 0.8rem 0.2rem rgba(0, 0, 0, 0.1);
  border-radius: var(--default-radius);
  width: 25rem;
  height: 26rem;
  padding: calc(var(--default-padding) * 2) var(--default-padding) var(--default-padding);
}
@media (max-width: 600px) {
  .card {
    width: 100%;
  }
}
.card__image {
  width: 6rem;
  max-width: 100%;
  margin-bottom: calc(var(--default-padding) / 2);
}
.card__title {
  font-size: 1.8rem;
  font-weight: 600;
}
.card__button {
  position: relative;
  align-self: stretch;
  text-align: center;
  margin-top: auto;
}
.card__button::before {
  content: "";
  position: absolute;
  background: url("../images/bg-dots.svg") repeat-x;
  background-size: contain;
  height: 0.3rem;
  left: 0;
  right: 0;
  top: calc(var(--default-padding) * -1.4);
  left: calc(var(--default-padding) * -1);
  right: calc(var(--default-padding) * -1);
}

.faq {
  max-width: 50rem;
  margin-top: calc(var(--default-padding) * 1.5);
  border-top: 1px solid var(--color-grayish-blue);
  border-bottom: 1px solid var(--color-grayish-blue);
}
.faq__row {
  position: relative;
  padding: var(--default-padding) 0;
}
.faq__row:not(:last-of-type) {
  border-bottom: 1px solid var(--color-grayish-blue);
}
.faq__arrow {
  position: absolute;
  width: 1.2rem;
  max-width: 100%;
  right: 0;
  top: calc(var(--default-padding) + 0.6rem);
  transition: transform var(--timing-animation) ease-in-out;
}
.faq__input {
  display: none;
}
.faq__input:checked ~ .faq__answer {
  opacity: 1;
  max-height: 30rem;
  padding-top: var(--default-padding);
}
.faq__input:checked ~ .faq__arrow {
  transform: rotate(180deg);
}
.faq__question {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  cursor: pointer;
}
.faq__answer {
  font-size: 1.4rem;
  font-weight: 400;
  opacity: 0;
  transition: all var(--timing-animation) ease-in-out;
  max-height: 0.1rem;
  overflow: hidden;
}

.footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: var(--default-padding);
  font-size: 1.4rem;
}
@media (max-width: 600px) {
  .footer {
    flex-direction: column;
    gap: calc(var(--default-padding) / 2);
  }
}
.footer::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background-color: var(--color-very-dark-blue);
  z-index: -1;
}
.footer__left {
  margin-right: auto;
}
@media (max-width: 600px) {
  .footer__left {
    margin-right: 0;
  }
}/*# sourceMappingURL=style.css.map */