@import url(global.css);
@import url(fonts.css);

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

a:hover {
  text-decoration: underline;
}

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

.small-text-light {
  font-size: clamp(1rem, 5vw, 1rem);
  line-height: 24px;
  letter-spacing: 0;
  color: var(--white);
  text-align: left;
  font-weight: 100;
}

.small-text-dark {
  font-size: clamp(1rem, 5vw, 1rem);
  line-height: 24px;
  letter-spacing: 0;
  color: var(--ash);
  text-align: left;
  font-weight: 100;
}

header {
  width: 100vw;
  height: 40vh;
  background-image: url("../assets/images/header-image.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}

nav {
  width: 80%;
  background: var(--white);
  margin: 80px auto;
  height: 72px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-inline: 40px;
}

.hero {
  position: relative;
  height: 90vh;
  width: 100vw;
  background-image: url("../assets/images/hero-image-hand.svg");
}

.hero::after {
  display: block;
  content: "";
  z-index: -1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--deeper-blue);
}

.hero > .container {
  padding-block: 80px;
  margin: 0 auto;
  width: 90vw;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hero .container > .flex-equal {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  flex: 1;
}

.hero .container .flex-equal .flex-equal {
  flex: 1;
  height: 100%;
}

.hero .container .flex-equal .flex-bigger-left {
  flex: 1.7;
  /* height: 100%; */
  padding-bottom: 50px;
}

@media (max-width: 768px) {
  .hero .container .flex-equal .flex-bigger-left {
    display: none;
  }
}

.hero .container .flex-equal .flex-smaller-right {
  flex: 1.3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.hero-title {
  display: flex;
}

.hero-title h1 {
  color: white;
  font-weight: 100;
  font-size: clamp(2rem, 4vw, 4rem);
  font-family: var(--font-family);
}

.hero-title h1 span {
  color: var(--mid-blue);
}

.button {
  display: inline-block;
  height: 88px;
  width: 161px;
  padding-inline: 40px;
  padding-block: 32px;
  border: 1px solid white;
  font-size: 14px;
}

.button.button-dark {
  background-color: var(--deeper-blue);
  color: var(--white);
}

.button.button-white {
  color: var(--deeper-blue);
  background-color: var(--white);
}

.service {
  height: 800px;
  width: 100vw;
  background-color: var(--deep-blue);
  color: var(--white);
}

.service .container {
  margin: 0 auto;
  padding-block: 80px;
  width: 90vw;
  height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-upper {
  position: relative;
  height: 224px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
}

.service-upper .service-tag {
  font-size: 16px;
  height: 24px;
  text-transform: uppercase;
  font-family: var(--font-family);
  letter-spacing: 5px;
  position: relative;
}

.divider {
  display: inline-block;
  border: 1px solid white;
  width: 80px;
  height: 1px;
  position: absolute;
  top: 50%;
}

.service-title h2 {
  font-size: clamp(1.5rem, 5vw, 4rem);
  font-weight: 100;
  color: var(--sky-blue);
}

.service-title h3 {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: 100;
}

.service-title .service-image {
  display: inline-block;
  position: absolute;
  right: 0px;
  bottom: 0px;
}
/* .service-title .service-image img {
  position: absolute;
  top: 0;
  right: 0;
} */

@media (max-width: 768px) {
  .service-title .service-image {
    bottom: 80px;
    height: 220px;
    width: 220px;
  }
}

.service-footer {
  display: flex;
  flex-direction: row;
}

.service-footer-left {
  width: 60%;
}

.service-footer-right {
  width: 40%;
}

@media (max-width: 768px) {
  .service-footer {
    min-height: 300px;
    flex-wrap: wrap;
  }
  .service-footer-left {
    width: 100%;
  }

  .service-footer-right {
    width: 100%;
  }
}

.service-carousel {
  height: 80vh;
  position: relative;
}
.carousel-slide {
  position: relative;
  height: 100%;
  min-height: 0;
}
.carousel-slide > .service-upper {
  height: auto !important;
}
.carousel-slide > .service-lower {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin-top: 0 !important;
  padding-bottom: 32px;
}
.carousel-slide .service-footer {
  position: static;
}
.carousel-slide .service-footer-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: auto;
}
.carousel-slide .service-footer-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  max-width: 400px;
  text-align: right;
  width: auto;
}

.product {
  height: 1280px;
  width: 100vw;
}

.product .container {
  padding-block: 80px;
  width: 90%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product-tag {
  font-family: var(--font-family);
  font-size: 16px;
  margin-bottom: 40px;
}

.product-title h2 {
  font-size: 72px;
  font-family: var(--font-family);
  color: var(--mid-blue);
  line-height: 80px;
  font-weight: 100;
}

.product-title h3 {
  font-size: 48px;
  font-family: var(--font-family);
  color: var(--deeper-blue);
  line-height: 56px;
  font-weight: 100;
}

.product-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.product-footer-left {
  width: 66.66%;
}

.product-footer-right {
  width: 33.33%;
}

@media (max-width: 768px) {
  .product-footer {
    min-height: 300px;
  }
  .product-footer-left,
  .product-footer-right {
    width: 100%;
  }
}

.testimonial {
  width: 100%;
  min-height: 552px;
  background: #fafafa;
}

.testimonial .container {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding-block: 80px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-top-tag {
  color: var(--ash);
  font-size: 16px;
  margin-bottom: 20px;
}

.testimonial-top-title h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--mid-blue);
  font-weight: 400;
}

.testimonial-footer {
  display: flex;
  flex-direction: row;
  min-height: 268px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.testimonial-footer-left {
  width: 66.66%;
}

.testimonial-footer-left img {
  display: inline-block;
}

.testimonial-footer-right {
  height: 100%;
  width: 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-footer-right .upper h4 {
  font-size: 24px;
  font-weight: 400;
}

@media (max-width: 768px) {
  .testimonial-footer {
    min-height: 400px;
  }

  .testimonial-footer-left,
  .testimonial-footer-right {
    width: 100%;
  }
}

.faq {
  min-height: 90vh;
  width: 100%;
}

.faq .container {
  padding-block: 80px;
  margin: 0 auto;
  width: 90%;
  height: 100%;
}

.faq-top-tag {
  font-family: var(--font-family);
  font-size: 16px;
  color: var(--ash);
  font-weight: 500;
}

.faq-top-title h2 {
  font-family: var(--font-family);
  font-size: clamp(2rem, 4vw, 4rem);
  color: var(--mid-blue);
  font-weight: 100;
}

.faq-body {
  margin-top: 80px;
  min-height: 408px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.faq-body-column {
  width: 100%;
  min-height: 64px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
}

.faq-body-column .element {
  margin-right: 40px;
  width: 33.33%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100%;
  align-items: flex-start;
  border-bottom: 0.5px solid var(--ash);
  padding-bottom: 20px;
}

@media (max-width: 768px) {
  .faq-body-column {
    flex-wrap: wrap;
  }
  .faq-body-column .element {
    margin-right: 0;
    width: 100%;
  }
}

.faq-body-column .element p {
  height: 100%;
}

.faq-body-column .element p:nth-of-type(1) {
  padding-right: 20px;
  font-size: 20px;
  font-weight: 500;
}
.faq-body-column .element p:nth-of-type(2) {
  font-size: 14px;
  color: var(--ash);
  margin-top: 8px;
  font-weight: 400;
}

.pre-footer {
  width: 100%;
  min-height: 80vh;
  background-color: var(--sky-blue);
}

.pre-footer .container {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding-block: 80px;
}

.pre-footer-top-title h2 {
  color: var(--mid-blue);
  font-weight: 100;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 80px;
}

.pre-footer-top-title h3 {
  margin-top: 24px;
  font-weight: 100;
  font-size: 48px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 56px;
}

.pre-footer-body {
  margin-top: 80px;
}

.pre-footer-body img {
  max-width: 100%;
  height: auto;
  display: block;
}

footer {
  width: 100%;
  height: auto;
  background-color: var(--sky-blue);
}

footer .container {
  width: 90%;
  height: 100%;
  margin: 0 auto;
  padding-block-end: 80px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
}

.footer-column {
  width: 20%;
}

@media (max-width: 768px) {
  footer .container {
    flex-wrap: wrap;
  }
  .footer-column {
    width: 100%;
  }
}

.footer-column-title {
  margin-block: 24px;
  font-size: 16px;
  color: var(--mid-blue);
}

.footer-column-body ul {
  list-style: none;
}

.footer-column-body ul li {
  margin-bottom: 7px;
}

.nav-button:hover {
  cursor: pointer;
}
