@font-face {
  font-family: "sofiaProSoft_Bold";
  src: url("assets/type/Sofia Pro Soft Bold.ttf");
}

@font-face {
  font-family: "sofiaProSoft";
  src: url("assets/type/Sofia Pro Soft Regular.ttf");
}

@font-face {
  font-family: "sofiaProSoft_Medium";
  src: url("assets/type/Sofia Pro Soft Medium.ttf");
}

* {
  box-sizing: border-box;
  margin: 0;
  font-family: "sofiaProSoft";
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100vw;
}

body header {
  position: fixed;
  transition: top .4s;
  z-index: 5;
  top: 0;
  left: 0;
  background-color: white;
  width: 100%;
  height: 80px;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
  display: flex;
  align-items: center;
  justify-content: center;
}

body header.hidden {
  top: -80px;
}

body header .logo {
  width: 200px;
  height: 50px;
  background-image: url(assets/logo/logo_full.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body .container {
  width: 1200px;
  display: flex;
  box-sizing: content-box;
  flex-direction: column;
}

@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body .container {
    width: 1100px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  body .container {
    width: 850px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .container {
    width: 700px;
  }
}

@media only screen and (min-width: 640px) and (max-width: 767px) {
  body .container {
    width: 550px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container {
    width: 90%;
  }
}

body .container .heading {
  font-size: 60px;
  line-height: 65px;
  margin-bottom: 8px;
  font-family: "sofiaProSoft_Bold";
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .heading {
    font-size: 40px;
    line-height: 45px;
  }
}

body .container .title {
  font-size: 32px;
  line-height: 32px;
  margin-bottom: 4px;
  font-family: "sofiaProSoft_Bold";
}

body .container .title .small {
  font-size: 26px;
  line-height: 30px;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .title {
    font-size: 20px;
    line-height: 26px;
  }
  body .container .title .small {
    font-size: 16px;
    line-height: 20px;
  }
}

body .container .copy {
  font-size: 18px;
  line-height: 22px;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .copy {
    font-size: 16px;
    line-height: 20px;
  }
}

body .container section {
  padding: 100px 0;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container section {
    padding: 50px 0;
  }
}

body .container section.intro {
  margin-top: 60px;
  position: relative;
  display: flex;
  flex-direction: column;
}

body .container section.intro .eyecatcher {
  height: 90px;
  width: 100%;
}

body .container section.intro .eyecatcher .heading {
  width: 100%;
  position: relative;
  color: white;
  top: -40px;
  height: 80px;
}

@media only screen and (min-width: 1500px) {
  body .container section.intro .eyecatcher .heading {
    font-size: 35px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body .container section.intro .eyecatcher .heading {
    font-size: 35px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  body .container section.intro .eyecatcher .heading {
    font-size: 35px;
    line-height: 40px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container section.intro .eyecatcher .heading {
    top: -10px;
    font-size: 30px;
    line-height: 35px;
  }
}

body .container section.intro .eyecatcher .content {
  background-image: url(assets/logo/logo_full_light.svg);
  width: 250px;
  position: relative;
  background-position: left center;
  top: -40px;
  height: 80px;
  background-size: contain;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container section.intro .eyecatcher .content {
    top: -20px;
    width: 200px;
  }
}

@media only screen and (min-width: 1500px) {
  body .container section.intro {
    min-height: 500px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container section.intro {
    padding-top: 440px;
    flex-direction: column;
  }
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container section.intro {
    padding-top: 340px;
  }
}

body .container section.intro .background {
  position: absolute;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 100px;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  z-index: -1;
  transform: translate(-50%);
}

body .container section.intro .background .flower {
  position: absolute;
  background-image: url(assets/logo/logo_icon_dark.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body .container section.intro .background .f1 {
  top: -100px;
  left: -100px;
  width: 300px;
  aspect-ratio: 1/1;
  transform: rotate(30deg);
  opacity: .07;
}

body .container section.intro .background .f2 {
  right: 55%;
  top: 50px;
  width: 80px;
  aspect-ratio: 1/1;
  transform: rotate(70deg);
  opacity: .07;
}

body .container section.intro .background .f3 {
  bottom: 50px;
  left: 10%;
  width: 100px;
  aspect-ratio: 1/1;
  transform: rotate(-30deg);
  opacity: .07;
}

body .container section.intro .background .f4 {
  bottom: -100px;
  right: 40%;
  width: 250px;
  aspect-ratio: 1/1;
  transform: rotate(30deg);
  opacity: .07;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container section.intro .background .f1 {
    top: 300px !important;
    left: -100px !important;
    width: 200px !important;
  }
  body .container section.intro .background .f2 {
    right: 10% !important;
    top: 340px !important;
  }
  body .container section.intro .background .f3 {
    left: 80% !important;
  }
  body .container section.intro .background .f4 {
    right: 20% !important;
    width: 140px !important;
  }
}

body .container section.intro:before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  width: 100vw;
  height: 110%;
  background-color: #FF8267;
  z-index: -1;
  transform: translateX(-50%);
}

body .container section.intro .first {
  display: flex;
  flex-direction: column;
}

body .container section.intro .copyContainer {
  position: relative;
  top: 10px;
  display: flex;
  flex-direction: column;
  width: 40%;
  gap: 50px;
}

body .container section.intro .copyContainer:before {
  content: "";
  position: absolute;
  z-index: -1;
  padding: 40px;
  left: -40px;
  top: -40px;
  background-color: #ffffff40;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container section.intro .copyContainer:before {
    display: none;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container section.intro .copyContainer {
    width: 100%;
    top: 0px;
  }
}

@media only screen and (min-width: 640px) and (max-width: 767px) {
  body .container section.intro .copyContainer {
    flex-direction: row !important;
    width: 100% !important;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container section.intro .copyContainer {
    width: 100%;
    justify-content: space-between;
  }
}

body .container section.intro .mask {
  mask-image: url(assets/heroMask.svg);
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: left;
  width: 55vw;
  height: 110%;
  position: absolute;
  top: 0;
  left: 50%;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container section.intro .mask {
    display: none;
  }
}

body .container section.intro .image {
  background-image: url(assets/ouderen.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 100%;
  height: 100%;
}

body .container section.intro .mobileimage-mask {
  position: absolute;
  overflow: hidden;
  top: 0px;
  left: calc(50%);
  width: 100vw;
  height: 400px;
  z-index: -1;
  transform: translateX(-50%) rotate(0deg);
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container section.intro .mobileImage {
    background: url(assets/ouderen.jpg);
    background-size: cover;
    position: relative;
    left: 30px;
    height: 100%;
    background-repeat: no-repeat;
    background-position-x: 30%;
    border-bottom-left-radius: 40px;
    border-top-left-radius: 40px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container section.intro .mobileImage {
    height: 300px;
  }
}

body .container .second {
  position: relative;
  top: 50px;
  border-radius: 20px;
  padding: 40px 50px;
  background-color: #fde4df;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 100px;
  overflow: hidden;
}

body .container .second .picture {
  position: absolute;
  height: 100%;
  width: calc(50% - 50px);
  top: 0;
  left: 0;
  flex: 1;
  background-image: url(assets/scanner.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .second .picture {
    margin-left: 0;
    top: 0;
    width: 100%;
    height: 220px;
  }
}

body .container .second .copyContainer {
  width: 50%;
  margin-left: 50%;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .second .copyContainer {
    padding-top: 25px;
    width: 100%;
    margin-left: 0;
    margin-top: 200px;
  }
}

body .container .costs {
  position: relative;
}

body .container .costs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #eeeeee;
  z-index: -1;
  transform: translateX(-50%);
}

body .container .costs .background {
  position: absolute;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 100px;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  z-index: -1;
  transform: translate(-50%);
}

body .container .costs .background .flower {
  position: absolute;
  background-image: url(assets/logo/logo_icon_dark.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body .container .costs .background .f1 {
  top: -100px;
  left: -100px;
  width: 300px;
  aspect-ratio: 1/1;
  transform: rotate(30deg);
  opacity: .07;
}

body .container .costs .background .f2 {
  right: 55%;
  top: 50px;
  width: 80px;
  aspect-ratio: 1/1;
  transform: rotate(70deg);
  opacity: .07;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .costs .background .f2 {
    right: 10%;
  }
}

body .container .costs .background .f3 {
  bottom: 50px;
  left: 15%;
  width: 100px;
  aspect-ratio: 1/1;
  transform: rotate(-30deg);
  opacity: .07;
}

body .container .costs .background .f4 {
  bottom: -100px;
  right: 40%;
  width: 250px;
  aspect-ratio: 1/1;
  transform: rotate(30deg);
  opacity: .07;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .costs .background .f4 {
    left: -10%;
    bottom: 20%;
    width: 175px;
  }
}

body .container .costs .background .f5 {
  bottom: 30px;
  right: 10%;
  width: 130px;
  aspect-ratio: 1/1;
  transform: rotate(300deg);
  opacity: .07;
}

body .container .costs .background .f6 {
  top: 0px;
  right: -5%;
  width: 200px;
  aspect-ratio: 1/1;
  transform: rotate(70deg);
  opacity: .07;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .costs .background .f6 {
    top: 50%;
  }
}

body .container .costs .cards {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px 20px;
  align-items: center;
}

body .container .costs .cards .card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 80%;
  background-color: white;
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .costs .cards .card {
    width: 100%;
  }
}

body .container .costs .cards .card .title {
  margin-bottom: 16px;
}

body .container .costs .cards .card .pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  background-color: #FF8267;
  bottom: 0;
  right: 0;
  padding: 20px;
  text-align: center;
  width: 300px;
  height: 100%;
  color: white;
  gap: 8px;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .costs .cards .card .pricing {
    height: 60px;
    width: 100%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container .costs .cards .card .pricing {
    justify-content: flex-end;
  }
}

body .container .costs .cards .card .pricing > div {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container .costs .cards .card .pricing > div {
    flex-wrap: wrap;
    gap: 4px;
    width: fitc;
  }
  body .container .costs .cards .card .pricing > div span {
    width: 100%;
  }
  body .container .costs .cards .card .pricing > div .label {
    justify-content: flex-start;
  }
}

body .container .costs .cards .card .pricing span {
  width: 50%;
  display: flex;
  align-items: flex-start;
}

body .container .costs .cards .card .pricing .label {
  justify-content: flex-end;
}

body .container .costs .cards .card .pricing .price {
  order: 1;
  font-size: 25px;
  font-weight: bold;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .costs .cards .card:not(.intro) {
    padding-bottom: 80px;
    flex-direction: row;
    justify-content: space-between;
  }
  body .container .costs .cards .card:not(.intro) .title, body .container .costs .cards .card:not(.intro) .copy {
    margin: 0;
    line-height: 16px;
  }
  body .container .costs .cards .card:not(.intro) .pricing {
    flex-direction: row;
  }
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container .costs .cards .card:not(.intro) {
    flex-direction: column;
    gap: 12px;
  }
}

body .container .costs .cards .card.intro {
  padding-right: 80px;
  margin-bottom: 50px;
}

body .container .costs .cards .card.intro .copy {
  margin-top: 20px;
}

body .container .costs .cards .card.intro .pricing {
  height: 60px;
  width: 200px;
  top: 0;
  border-bottom-left-radius: 20px;
}

body .container .costs .cards .card.intro .pricing .price {
  position: relative;
  top: 6px;
  text-wrap: nowrap;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .costs .cards .card.intro .pricing .price {
    width: 80%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .costs .cards .card.intro {
    padding-right: 20px;
  }
  body .container .costs .cards .card.intro .pricing {
    width: 160px;
  }
}

body .container .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 80px;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .header {
    margin-bottom: 40px;
  }
}

body .container .header .title {
  color: #FF8267;
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container .header .title {
    width: 90%;
  }
}

body .container .header .title .small {
  color: inherit;
}

body .container .diensten {
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body .container .diensten .cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px;
  filter: drop-shadow(0px 20px 40px rgba(0, 0, 0, 0.1));
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .diensten .cards {
    gap: 30px;
  }
}

body .container .diensten .cards .card {
  position: relative;
  align-items: center;
  padding: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: white;
  width: calc(50% - 30px);
  height: 275px;
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  body .container .diensten .cards .card {
    height: 360px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .container .diensten .cards .card {
    width: 70%;
    height: unset;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .diensten .cards .card {
    width: 100%;
    height: unset;
  }
}

body .container .diensten .cards .card .image {
  background-image: url(assets/logo/logo_icon.svg);
  position: absolute;
  z-index: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 220px;
  height: 220px;
  top: -100px;
  left: -20px;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .diensten .cards .card .image {
    width: 170px;
    height: 170px;
  }
}

body .container .diensten .cards .card .title {
  position: relative;
  top: -10px;
  height: 40%;
  display: flex;
  align-items: center;
  z-index: 1;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .diensten .cards .card .title {
    height: 25%;
  }
}

body .container .diensten .cards .card .copy {
  position: relative;
  height: 60%;
  display: flex;
  align-items: flex-start;
  z-index: 1;
  font-size: 18px;
  line-height: 22px;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .diensten .cards .card .copy {
    font-size: 14px;
    line-height: 18px;
    height: 75%;
  }
}

body .container .reviews {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body .container .reviews {
    gap: 40px;
    flex-direction: column-reverse;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  body .container .reviews {
    gap: 40px;
    flex-direction: column-reverse;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .container .reviews {
    gap: 40px;
    flex-direction: column-reverse;
  }
}

@media only screen and (min-width: 640px) and (max-width: 767px) {
  body .container .reviews {
    gap: 40px;
    flex-direction: column-reverse;
  }
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container .reviews {
    gap: 40px;
    flex-direction: column-reverse;
  }
}

body .container .reviews .background {
  position: absolute;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 100px;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  z-index: -1;
  transform: translate(-50%);
}

body .container .reviews .background .flower {
  position: absolute;
  background-image: url(assets/logo/logo_icon_dark.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

body .container .reviews .background .f1 {
  top: -100px;
  left: -100px;
  width: 300px;
  aspect-ratio: 1/1;
  transform: rotate(30deg);
  opacity: .07;
}

body .container .reviews .background .f2 {
  right: 55%;
  top: 50px;
  width: 80px;
  aspect-ratio: 1/1;
  transform: rotate(70deg);
  opacity: .07;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .reviews .background .f2 {
    right: 10%;
  }
}

body .container .reviews .background .f3 {
  bottom: 50px;
  left: 15%;
  width: 100px;
  aspect-ratio: 1/1;
  transform: rotate(-30deg);
  opacity: .07;
}

body .container .reviews .background .f4 {
  bottom: -100px;
  right: 40%;
  width: 250px;
  aspect-ratio: 1/1;
  transform: rotate(30deg);
  opacity: .07;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .reviews .background .f4 {
    left: -10%;
    bottom: 20%;
    width: 175px;
  }
}

body .container .reviews .background .f5 {
  bottom: 30px;
  right: 10%;
  width: 130px;
  aspect-ratio: 1/1;
  transform: rotate(300deg);
  opacity: .07;
}

body .container .reviews .background .f6 {
  top: 0px;
  right: -5%;
  width: 200px;
  aspect-ratio: 1/1;
  transform: rotate(70deg);
  opacity: .07;
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .reviews .background .f6 {
    top: 50%;
  }
}

body .container .reviews::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #BAE8F5;
  z-index: -1;
  transform: translateX(-50%);
}

body .container .reviews .upper, body .container .reviews .bottom {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-around;
}

body .container .reviews .upper .copy, body .container .reviews .bottom .copy {
  max-height: 150px;
  overflow: hidden;
}

body .container .reviews .bottom {
  position: relative;
  width: 100%;
  left: 0;
  align-items: inherit;
}

body .container .reviews .bottom .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
  order: -1;
  width: 100%;
}

@media only screen and (min-width: 1500px) {
  body .container .reviews .bottom .header .copy {
    width: 370px;
  }
}

@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body .container .reviews .bottom .header .copy {
    width: 370px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  body .container .reviews .bottom .header .copy {
    width: 350px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .container .reviews .bottom .header .copy {
    width: 350px;
  }
}

@media only screen and (min-width: 640px) and (max-width: 767px) {
  body .container .reviews .bottom .header .copy {
    width: 350px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container .reviews .bottom .header .copy {
    width: 350px;
  }
}

body .container .reviews .review {
  background: white;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 420px;
  padding: 20px;
  gap: 20px;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body .container .reviews .review {
    width: 420px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  body .container .reviews .review {
    width: 400px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .container .reviews .review {
    width: 80%;
    gap: 0;
  }
}

@media only screen and (min-width: 0px) and (max-width: 767px) {
  body .container .reviews .review {
    gap: 5px;
    width: 100%;
  }
}

body .container .reviews .review .info {
  height: 50px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

body .container .reviews .review .info .title {
  margin: 0;
}

body .container .reviews .review .info .name {
  overflow: hidden;
  text-overflow: ellipsis;
  text-wrap: nowrap;
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container .reviews .review .info .name {
    width: 100%;
  }
}

body .container .reviews .review .info .stars {
  display: flex;
  flex-direction: row;
  width: fit-content;
  gap: 5px;
  margin-left: 5px;
  position: relative;
  bottom: 4px;
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container .reviews .review .info .stars {
    margin: 0;
  }
}

body .container .reviews .review .info .stars .star {
  height: 30px;
  aspect-ratio: 1/1;
  background-image: url(assets/logo/logo_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: .4;
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container .reviews .review .info .stars .star {
    height: 20px;
  }
}

body .container .reviews .review .info .stars .star.active {
  opacity: 1;
}

body .container .contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 5%;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .contact {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
  }
}

body .container .contact .header {
  order: 0;
  height: 100%;
  width: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
}

@media only screen and (min-width: 1024px) and (max-width: 1279px) {
  body .container .contact .header .heading {
    font-size: 40px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .contact .header {
    text-align: center;
    width: 320px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .container .contact .header {
    margin-left: 20%;
    margin-right: 20%;
  }
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container .contact .header {
    width: 90%;
    max-width: 330px;
  }
}

body .container .contact .info {
  width: 35%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .contact .info {
    width: inherit;
  }
}

body .container .contact .info .upper {
  display: flex;
  flex-direction: row;
  height: 32px;
  align-items: center;
  gap: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .contact .info .upper {
    margin-bottom: 2px;
  }
}

body .container .contact .info .upper .title {
  margin: 0;
}

body .container .contact .info .shape {
  height: 100%;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

body .container .contact .info .mail, body .container .contact .info .phone {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

body .container .contact .info .mail, body .container .contact .info .copy {
  cursor: pointer;
}

body .container .contact .info .phone .shape {
  background-image: url(assets/phone.svg);
}

body .container .contact .info .mail .shape {
  background-image: url(assets/envelope.svg);
}

body .container .contact .info .stripe {
  position: relative;
  background-image: url(assets/stripe.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 15px;
  width: 100%;
  left: -1%;
}

body .container .contact .graphic {
  position: relative;
  width: 20%;
  aspect-ratio: 1/1;
}

@media only screen and (min-width: 0px) and (max-width: 1023px) {
  body .container .contact .graphic {
    width: 50%;
    max-width: 200px;
  }
}

body .container .contact .graphic .mask {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  mask-image: url(assets/logo/logo_icon.svg);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
}

body .container .contact .graphic .mask .image {
  width: 100%;
  height: 100%;
  background-image: url(assets/portrait.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

body .container .contact .graphic .shape {
  transform-origin: center;
  position: relative;
  top: 0%;
  left: 1%;
  width: 100%;
  height: 100%;
  background-image: url(assets/logo/logo_icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: rotate(60deg);
}

body .container .footer {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .container .footer {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 40px;
  }
}

@media only screen and (min-width: 640px) and (max-width: 767px) {
  body .container .footer {
    flex-direction: column;
    gap: 50px;
  }
}

@media only screen and (min-width: 0px) and (max-width: 639px) {
  body .container .footer {
    flex-direction: column;
    gap: 50px;
  }
}

body .container .footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  background-color: #020228;
  z-index: -1;
  transform: translateX(-50%);
}

body .container .footer .link {
  text-decoration: underline;
  cursor: pointer;
}

body .container .footer .copy, body .container .footer .copy span {
  color: white;
}

body .container .footer .segment {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

body .container .footer .logo {
  width: 300px;
  height: 100px;
  background-image: url(assets/logo/logo_full_light.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  body .container .footer .logo {
    width: 300px;
  }
}

@keyframes twirl {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
