:root {
  --primary: #c90606;
  --bg-color: #ff8c8c;
  --text-1: #3e3131;
  --text-3: #564c4c;
  --secondary: #332a2a;
  --error: #ff4242;
  --blue: #d6efff;
  --panel: #ebeff2;
  --gradient: linear-gradient(
    107.23deg,
    rgba(240, 211, 211, 0.1) 0%,
    rgba(213, 175, 175, 0.283642) 39.41%,
    rgba(215, 184, 184, 0.335768) 48.4%,
    rgba(224, 208, 208, 0.5) 68.55%
  );
  --card-shadow:
    0 100px 80px rgba(0, 0, 0, 0.07),
    0 41.778px 33.422px rgba(0, 0, 0, 0.05),
    0 22.336px 17.869px rgba(0, 0, 0, 0.04),
    0 12.522px 10.017px rgba(0, 0, 0, 0.04),
    0 6.65px 5.32px rgba(0, 0, 0, 0.03),
    0 2.767px 2.214px rgba(0, 0, 0, 0.02);
  --testimonial-shadow:
    0 30px 34px rgba(0, 0, 0, 0.16),
    0 12px 16px rgba(0, 0, 0, 0.1),
    0 3px 7px rgba(0, 0, 0, 0.08);
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("assets/fonts/roboto-400.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("assets/fonts/roboto-500.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("assets/fonts/roboto-700.ttf") format("truetype");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 1440px;
  background: #fff;
  color: var(--text-1);
  font-family: "Roboto", Arial, sans-serif;
}

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

p a {
  color: var(--error);
  text-decoration: underline;
}

img {
  display: block;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.page-frame {
  position: relative;
  width: 100%;
  min-width: 1440px;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.grid-image {
  background-color: #fffdfb;
  background-image:
    linear-gradient(#ffddd5 1px, transparent 1px),
    linear-gradient(90deg, #ffddd5 1px, transparent 1px);
  background-position: 16px 1px;
  background-size: 83px 83px;
}

.gradient-section {
  background: var(--gradient);
}

.hero,
.reasons,
.help,
.testimonials,
.choose,
.about,
.faq,
.cta,
.footer {
  position: relative;
  width: 100%;
  min-width: 1440px;
}

.hero {
  height: 979px;
}

.reasons {
  height: 802px;
}

.help {
  height: 1285px;
}

.testimonials {
  height: 1725px;
}

.choose {
  height: 1483px;
}

.about {
  height: 1291px;
}

.faq {
  height: 1089px;
}

.cta {
  height: 356px;
  background: var(--secondary);
}

.footer {
  height: 878px;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top-logo {
  position: absolute;
  left: 90px;
  top: 36px;
  width: 291px;
  height: 50px;
}

.top-nav {
  position: absolute;
  left: 636px;
  top: 46px;
  width: 651px;
  height: 31px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.top-nav a {
  font-size: 25px;
  font-weight: 400;
  line-height: 31px;
  color: var(--text-1);
}

.hero-image {
  position: absolute;
  left: 127px;
  top: 292px;
  width: 507px;
  height: 285px;
  object-fit: cover;
}

.hero-video {
  position: absolute;
  left: 127px;
  top: 292px;
  width: 507px;
  height: 285px;
  overflow: hidden;
  border-radius: 10px;
  animation: heroVideoIn 700ms ease-out 120ms both;
}

.hero-video .hero-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-copy {
  position: absolute;
  left: 738px;
  top: 221px;
  width: 639px;
}

.hero-copy h1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 570px;
  color: var(--primary);
  font-size: 45.1px;
  font-weight: 700;
  line-height: 1.08;
  animation: heroCopyIn 700ms ease-out 180ms both;
}

.hero-copy h1 span,
.hero-copy h2 span {
  display: block;
}

.hero-copy h2 {
  position: absolute;
  left: 0;
  top: 148px;
  width: 549px;
  color: var(--text-1);
  font-size: 35.6px;
  font-weight: 700;
  line-height: 1.17;
  animation: heroCopyIn 700ms ease-out 260ms both;
}

.hero-copy p {
  position: absolute;
  left: 0;
  top: 329px;
  width: 639px;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  animation: heroCopyIn 700ms ease-out 340ms both;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--error);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 14px rgba(201, 6, 6, 0.18);
  transition: background-color 180ms ease;
}

.hero-button:hover,
.hero-button:focus-visible,
.cta-button:hover,
.cta-button:focus-visible {
  background: #ff1414;
}

.hero-button {
  position: absolute;
  left: 125px;
  top: 535px;
  width: 326px;
  height: 57px;
  animation: heroCopyIn 700ms ease-out 420ms both;
}

@keyframes heroCopyIn {
  from {
    opacity: 0;
    transform: translateX(54px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes heroVideoIn {
  from {
    opacity: 0;
    transform: translateX(-54px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .hero-copy h1,
  .hero-copy h2,
  .hero-copy p,
  .hero-button {
    animation: none;
  }
}

.audit-dialog {
  width: 558px;
  max-width: calc(100vw - 40px);
  height: 601px;
  max-height: calc(100vh - 40px);
  margin: auto;
  border: 0;
  padding: 0;
  background: transparent;
  color: #ebeff2;
}

.audit-dialog::backdrop {
  background: rgba(255, 255, 255, 0.94);
}

.audit-form {
  position: relative;
  width: 558px;
  height: 601px;
  padding: 57px 0 0 68px;
  border-radius: 10px;
  background: var(--secondary);
}

.audit-close {
  position: absolute;
  right: 16px;
  top: 13px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.audit-close img {
  width: 42px;
  height: 42px;
  filter: invert(1);
}

.audit-field {
  display: block;
  width: 415px;
  height: 111px;
  margin-top: 41px;
}

.audit-field:first-of-type {
  margin-top: 0;
}

.audit-field span {
  display: block;
  color: #ebeff2;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 21px;
}

.audit-field input {
  width: 415px;
  height: 64px;
  border: 0;
  padding: 0 18px;
  background: #fff;
  color: var(--text-1);
  font: 400 20px/1.2 "Roboto", Arial, sans-serif;
  outline: none;
}

.audit-field input::placeholder {
  color: #a9a3a3;
}

.audit-field input:focus {
  box-shadow: 0 0 0 3px rgba(214, 239, 255, 0.62);
}

.audit-field.is-invalid input {
  box-shadow: inset 0 0 0 3px var(--error);
}

.audit-submit {
  width: 197px;
  height: 62px;
  margin-top: 28px;
  margin-left: 12px;
  border: 0;
  border-radius: 12px;
  background: var(--error);
  color: #fff;
  font-family: inherit;
  font-size: 25px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 14px rgba(201, 6, 6, 0.18);
}

.audit-message {
  width: 415px;
  min-height: 19px;
  margin-top: 9px;
  margin-left: 12px;
  color: #ebeff2;
  font-size: 16px;
  line-height: 1.2;
}

.audit-form[data-state="error"] .audit-message {
  color: #ffb7b7;
}

.audit-submit:hover,
.audit-submit:focus-visible {
  background: #ff1414;
}

.audit-thank-you {
  display: none;
}

.audit-form[data-state="submitted"] .audit-field,
.audit-form[data-state="submitted"] .audit-submit,
.audit-form[data-state="submitted"] .audit-message {
  display: none;
}

.audit-form[data-state="submitted"] .audit-thank-you {
  position: absolute;
  left: 52px;
  top: 202px;
  display: block;
  width: 430px;
  color: #fff;
}

.audit-thank-you h2,
.audit-thank-you p {
  margin: 0;
  font-size: 31.25px;
  font-weight: 700;
  line-height: 1.12;
}

.audit-thank-you p {
  margin-top: 32px;
}

.audit-submit-frame {
  display: none;
}

.section-title {
  position: absolute;
  color: var(--text-1);
  font-size: 45.1px;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
}

.red-title {
  color: var(--primary);
}

.reasons-title {
  left: 181px;
  top: 94px;
  width: 1078px;
}

.reason-card {
  position: absolute;
  left: 335px;
  width: 748px;
  height: 66px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 4px;
  background: var(--blue);
  box-shadow: var(--card-shadow);
}

.reason-card img {
  width: 45px;
  height: 45px;
  margin-left: 17px;
}

.reason-card p {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
}

.reason-1 {
  top: 212px;
}

.reason-2 {
  top: 319px;
}

.reason-3 {
  top: 437px;
}

.reason-4 {
  top: 555px;
}

.help-title {
  left: 228px;
  top: 118px;
  width: 984px;
}

.info-card {
  position: absolute;
  width: 883px;
  border-radius: 8px;
  background: var(--bg-color);
  box-shadow: var(--card-shadow);
}

.info-card h3 {
  color: var(--text-3);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

.info-card p {
  color: var(--text-1);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.help-card-1 {
  left: 255px;
  top: 274px;
  height: 222px;
}

.help-card-1 h3 {
  width: 784px;
  margin: 19px 0 0 69px;
  text-align: left;
  text-indent: -26px;
}

.help-card-1 p {
  width: 784px;
  margin: 30px 0 0 68px;
}

.help-card-2 {
  left: 255px;
  top: 538px;
  height: 269px;
}

.help-card-2 h3 {
  width: 766px;
  margin: 20px 0 0 79px;
  text-align: left;
  text-indent: -46px;
}

.help-card-2 p {
  width: 766px;
  margin: 19px 0 0 79px;
  line-height: 1.4;
}

.help-card-3 {
  left: 255px;
  top: 849px;
  height: 266px;
}

.help-card-3 h3 {
  width: 702px;
  margin: 12px 0 0 74px;
  text-align: left;
  text-indent: -39px;
}

.help-card-3 p {
  width: 758px;
  margin: 18px 0 0 73px;
}

.testimonials-title {
  left: 367px;
  top: 89px;
  width: 694px;
}

.testimonials-lede {
  position: absolute;
  left: 231px;
  top: 183px;
  width: 1058px;
  color: var(--text-1);
  font-size: 25px;
  line-height: 1.2;
  text-align: center;
}

.testimonial-window {
  position: absolute;
  left: 108px;
  top: 268px;
  width: 1214px;
  height: 1257px;
  overflow: visible;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.testimonial-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-card {
  position: absolute;
  border-radius: 10px;
  background: var(--panel);
  box-shadow: var(--testimonial-shadow);
}

.testimonial-card img {
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card p,
.testimonial-card strong,
.testimonial-card span {
  display: block;
  color: var(--text-1);
  font-size: 22.22px;
  line-height: 1.21;
}

.testimonial-card p + p {
  margin-top: 27px;
}

.testimonial-card footer {
  margin-top: 27px;
}

.testimonial-card strong,
.testimonial-card span {
  color: var(--text-3);
  font-weight: 700;
}

.card-vika {
  left: 57px;
  top: 46px;
  width: 505px;
  height: 1165px;
  padding: 136px 30px 0 42px;
}

.card-vika img {
  left: 49px;
  top: 20px;
}

.card-eamonn {
  left: 664px;
  top: 46px;
  width: 500px;
  height: 638px;
  padding: 139px 35px 0 23px;
}

.card-eamonn img {
  left: 23px;
  top: 20px;
}

.card-divyesh {
  left: 664px;
  top: 714px;
  width: 500px;
  height: 497px;
  padding: 138px 35px 0 23px;
}

.card-divyesh img {
  left: 23px;
  top: 20px;
}

.card-felipe {
  left: 57px;
  top: 46px;
  width: 505px;
  height: 600px;
  padding: 136px 38px 0 42px;
}

.card-felipe img {
  left: 49px;
  top: 20px;
}

.carousel-button {
  position: absolute;
  top: 1525px;
  width: 66px;
  height: 66px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}

.carousel-prev {
  left: 536px;
  background-image: url("assets/Nav button 1.png");
}

.carousel-next {
  left: 829px;
  background-image: url("assets/Nav button 2.png");
}

.choose-title {
  left: 226px;
  top: 127px;
  width: 983px;
}

.choose-card {
  width: 1048px;
}

.choose-card h3 {
  margin: 24px 0 0 70px;
  text-align: left;
}

.choose-card p {
  margin-left: 70px;
  margin-top: 19px;
}

.choose-card-1 {
  left: 197px;
  top: 263px;
  height: 212px;
}

.choose-card-1 p {
  width: 971px;
}

.choose-card-2 {
  left: 198px;
  top: 545px;
  height: 222px;
}

.choose-card-2 p {
  width: 955px;
}

.choose-card-3 {
  left: 194px;
  top: 837px;
  height: 187px;
}

.choose-card-3 p {
  width: 948px;
}

.choose-card-4 {
  left: 198px;
  top: 1094px;
  height: 231px;
}

.choose-card-4 p {
  width: 910px;
}

.about-title {
  left: 628px;
  top: 54px;
  width: 212px;
}

.about-copy {
  position: absolute;
  left: 175px;
  width: 1109px;
  color: var(--text-1);
  font-size: 25px;
  line-height: 1.2;
}

.about-copy-1 {
  top: 138px;
}

.about-video {
  position: absolute;
  left: 516px;
  top: 306px;
  width: 404px;
  height: 227px;
  overflow: hidden;
  border-radius: 10px;
}

.about-video .about-iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.about-copy-2 {
  top: 606px;
}

.about-copy-2 p + p {
  margin-top: 32px;
}

.faq-title {
  left: 436px;
  top: 71px;
  width: 610px;
}

.faq-list {
  position: absolute;
  left: 196px;
  top: 163px;
  width: 1048px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

.faq-item {
  width: 1048px;
  min-height: 79px;
  overflow: hidden;
  background: var(--bg-color);
  transition: min-height 220ms ease;
}

.faq-item button {
  width: 1048px;
  height: 79px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 0;
  padding: 0 21px;
  background: transparent;
  color: var(--text-1);
  cursor: pointer;
  font: inherit;
}

.faq-item button span {
  font-size: 25px;
  line-height: 1.2;
  text-align: left;
}

.faq-item button img {
  width: 33px;
  height: 33px;
  transition: transform 220ms ease;
}

.faq-item p {
  display: none;
  width: 920px;
  margin: 10px 0 34px 42px;
  color: var(--text-1);
  font-size: 25px;
  line-height: 1.25;
}

.faq-item.is-open {
  min-height: 318px;
}

.faq-item.is-open button img {
  transform: rotate(180deg);
}

.faq-item.is-open p {
  display: block;
}

.cta h2 {
  position: absolute;
  left: 196px;
  top: 52px;
  width: 1043px;
  color: #fff;
  font-size: 45.1px;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
}

.cta-button {
  position: absolute;
  left: 560px;
  top: 211px;
  width: 316px;
  height: 65px;
}

.footer-logo {
  position: absolute;
  left: 106px;
  top: 73px;
  width: 332px;
  height: 57px;
  object-fit: contain;
}

.footer-blurb {
  position: absolute;
  left: 111px;
  top: 143px;
  width: 382px;
  color: var(--text-1);
  font-size: 25px;
  line-height: 1.18;
}

.footer-browse,
.footer-services,
.footer-contact {
  position: absolute;
  display: flex;
  flex-direction: column;
}

.footer-browse {
  left: 513px;
  top: 77px;
  width: 160px;
}

.footer-services {
  left: 795px;
  top: 73px;
  width: 365px;
}

.footer-contact {
  left: 821px;
  top: 513px;
  width: 325px;
}

.footer h2 {
  color: var(--primary);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
}

.footer nav a {
  color: var(--text-1);
  font-size: 35.6px;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.footer-browse a {
  margin-left: 8px;
}

.footer-services a {
  margin-left: 37px;
}

.footer-services h2 {
  margin-left: 37px;
}

.footer-contact h2 {
  width: 173px;
  text-align: center;
}

.footer-contact a {
  margin-top: 12px;
  margin-left: 14px;
  color: var(--text-3);
  font-size: 25px;
  line-height: 1.2;
}

.socials {
  display: flex;
  gap: 39px;
  margin-left: 20px;
  margin-top: 6px;
}

.socials img {
  width: 42px;
  height: 42px;
}

.copyright {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 91px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-color);
}

.copyright small {
  color: var(--text-1);
  font-size: 20px;
}

@media (max-width: 1439px) {
  body {
    min-width: 0;
    overflow-x: auto;
  }
}
