:root {
  --color-orange: #ff7a2f;
  --color-orange-hover: #FF8E4E;
  --color-blue: #3676d7;
  --color-dark: #17325A;
  --color-dark70: rgba(23, 49, 89, 0.7);
  --color-dark60: rgba(23, 49, 89, 0.6);
  --color-dark15: rgba(23, 49, 89, 0.15);
  --color-light-blue200: rgb(235, 241, 251);
  --color-light-blue100: rgb(241, 246, 255);
  --color-simple-red: #ff7f85;
  --color-simple-blue: #3498db;
  --color-simple-green: #6fed72;
  --color-simple-orange: #ffbc74;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

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

select,
button,
textarea,
input {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  outline: none;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  background: white;
  color: var(--color-dark);
  min-width: 1230px;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

body {
  padding-top: var(--header-height);
}

.wrap {
  width: 1230px;
  margin: 0 auto;
}

.orange-button {
  display: block;
  padding: 11px 24px;
  text-align: center;
  border: 1px solid var(--color-orange);
  border-radius: 200px;
  box-shadow: 0px 3px 4px 1px rgba(255, 255, 255, 0.16) inset, 0px 2px 0px 0px rgba(255, 255, 255, 0.45) inset, 0px 0px 0px 1.5px rgba(255, 255, 255, 0.2) inset;
  background: var(--color-orange);
  color: white;
  cursor: pointer;
  transition: 0.25s;
}
.orange-button:hover {
  filter: brightness(1.15);
}

.sloped {
  font-family: "Recoleta";
  color: white;
  position: relative;
  display: inline-block;
  padding: 0 16px;
}
.sloped span {
  letter-spacing: 0px;
  position: relative;
  z-index: 1;
}
.sloped::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-orange);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transform: skew(8deg);
}

header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}
header nav {
  display: flex;
  gap: 30px;
}
header nav a {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-dark60);
  transition: 0.25s;
}
header nav a.active, header nav a:hover {
  color: var(--color-dark);
}
header .buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
header .orange-button.login {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}
header .burger-button {
  display: none;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
header .burger-button img {
  display: block;
  width: 28px;
  height: 28px;
}
header .mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: white;
  z-index: 10;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  padding: 30px;
  transition: transform 0.3s;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  transform: translateX(100%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
header .mobile-menu.opened {
  transform: translateX(0%);
}
header .mobile-menu .mobile-nav {
  display: block;
  flex-grow: 1;
}
header .mobile-menu .mobile-nav a {
  display: block;
  padding: 20px 0px;
  font-size: 18px;
  border-bottom: 1px solid rgba(23, 50, 90, 0.15);
}
header .mobile-menu .orange-button {
  padding: 16px;
  font-size: 18px;
}
header .mobile-menu .orange-button.login {
  margin-top: 10px;
}
@media screen and (max-width: 720px) {
  header .wrap {
    height: var(--header-height);
    padding: 18px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 20;
  }
  header .mobile-menu {
    display: flex;
  }
  header .logo {
    height: 20px;
  }
  header .desktop-nav,
  header .buttons .login {
    display: none;
  }
  header .buttons {
    flex-grow: 1;
    justify-content: flex-end;
    padding-right: 20px;
  }
  header .buttons .signup {
    padding: 9px 18px;
    font-size: 14px;
    line-height: 100%;
  }
  header .burger-button {
    display: block;
  }
}

@media screen and (min-width: 720px) {
  header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 100;
    box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  }
}
section.start {
  background-color: var(--color-light-blue200);
  position: relative;
  overflow: hidden;
}
section.start::after, section.start::before {
  content: "";
  height: 100%;
  top: 0px;
  bottom: 0px;
  background-repeat: no-repeat;
  position: absolute;
  user-select: none;
  pointer-events: none;
}
section.start::before {
  width: 423px;
  background-image: url("../img/header-bg-left.svg");
  background-position: left center;
  left: 0px;
}
section.start::after {
  width: 500px;
  background-image: url("../img/header-bg-right.svg");
  background-position: right center;
  right: 0px;
}
section.start .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}
section.start .left {
  width: 660px;
  margin: 120px 0;
}
section.start .left h1 {
  font-weight: 700;
  font-size: 64px;
  line-height: 80px;
  letter-spacing: -2px;
  text-transform: capitalize;
  color: var(--color-dark);
  margin: 0;
}
section.start .left .description {
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  color: var(--color-dark70);
  margin: 0;
  margin-top: 16px;
  margin-bottom: 32px;
}
section.start .left .bottom {
  display: inline-block;
}
section.start .left .buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}
section.start .left .buttons .orange-button {
  width: 268px;
  padding: 18px 50px;
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
}
section.start .left .additions {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
section.start .left .additions .item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
section.start .left .additions .item img {
  display: block;
  margin-right: 8px;
}
section.start .left .additions .item p {
  margin: 0;
  font-weight: 500;
  line-height: 26px;
  font-size: 16px;
  color: var(--color-dark70);
}
section.start .left .additions .divider {
  width: 1px;
  height: 18px;
  background-color: rgba(23, 50, 90, 0.15);
  margin: 0 18px;
}
section.start .right {
  width: 540px;
  height: 676px;
  bottom: 0px;
  right: 0px;
  position: absolute;
  background-image: url("../img/start.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
section.start .right .slicks {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0px;
  bottom: 0px;
}
section.start .right .slicks .item {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(30px);
  padding: 20px;
  color: var(--color-dark);
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 375px;
  margin: auto;
  transition: 0.5s;
  position: absolute;
  translate: -50%;
  left: 50%;
  bottom: 20px;
}
section.start .right .slicks .item.prev {
  transform: translateX(-50%);
  scale: 0.8;
  opacity: 0;
  z-index: 1;
}
section.start .right .slicks .item.current {
  transform: translateX(0%);
  scale: 1;
  opacity: 1;
  z-index: 2;
}
section.start .right .slicks .item.next {
  transform: translateX(50%);
  scale: 0.8;
  opacity: 0;
  z-index: 1;
}
section.start .right .slicks .item .product {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
section.start .right .slicks .item .product img {
  display: block;
  max-width: 70px;
  max-height: 100px;
  flex-shrink: 0;
  margin-right: 12px;
  user-select: none;
  -webkit-user-drag: none;
}
section.start .right .slicks .item .product .info {
  flex-grow: 1;
}
section.start .right .slicks .item .product .info .name {
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  margin-bottom: 2px;
}
section.start .right .slicks .item .product .info .count {
  font-size: 15px;
  font-weight: 600;
  opacity: 0.5;
}
section.start .right .slicks .item .vendor {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  padding-top: 10px;
  font-size: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
section.start .right .slicks .item .vendor.first {
  border-top: none;
}
section.start .right .slicks .item .vendor .name {
  font-weight: 700;
  line-height: 100%;
  width: 105px;
}
section.start .right .slicks .item .vendor .availability {
  flex-grow: 1;
  font-weight: 700;
}
section.start .right .slicks .item .vendor .availability.instock {
  color: var(--color-blue);
}
section.start .right .slicks .item .vendor .availability.outstock {
  color: var(--color-dark);
  opacity: 0.25;
}
section.start .right .slicks .item .vendor .availability.warehouse {
  color: var(--color-orange);
}
section.start .right .slicks .item .vendor .price {
  font-weight: 700;
  opacity: 0.5;
  text-align: right;
  color: var(--color-dark);
  transition: 0.3s;
}
section.start .right .slicks .item .vendor .price.best {
  color: #2ecc71;
  opacity: 1;
}

section.backed {
  text-align: center;
  margin: 46px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
}
section.backed img {
  display: block;
  margin-left: 12px;
  height: 36px;
}

section.patients {
  padding: 60px 0px;
  padding-top: 20px;
}
section.patients .wrap {
  width: 760px;
}
section.patients h1 {
  margin: 0;
  font-weight: 700;
  font-size: 54px;
  line-height: 70px;
  letter-spacing: -1px;
  text-align: center;
  text-transform: capitalize;
}
section.patients .wave {
  display: inline-block;
  color: var(--color-orange);
  position: relative;
  line-height: 42px;
  font-family: Recoleta;
}
section.patients .wave::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 15px;
  background-image: url("../img/wave.svg");
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}
section.patients .description {
  margin-top: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: var(--color-dark70);
}

section.cards .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
section.cards .card {
  width: 600px;
  box-sizing: border-box;
  border-radius: 20px;
  border: 1px solid #e4eaf4;
  background: rgb(255, 255, 255);
  box-shadow: 0px 5px 1.5px -4px rgba(61, 89, 132, 0.09), 0px 6px 4px -4px rgba(61, 89, 132, 0.05), 0px 6px 13px 0px rgba(61, 89, 132, 0.03), 0px 2.15px 0.5px -2px rgba(61, 89, 132, 0.25);
  overflow: hidden;
}
section.cards .card img {
  width: 100%;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
section.cards .card .text {
  padding: 24px 32px;
}
section.cards .card .text .title {
  font-size: 28px;
  font-weight: 700;
  line-height: 42px;
  color: var(--color-dark);
  margin-bottom: 12px;
  letter-spacing: -1px;
}
section.cards .card .text .description {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-dark70);
}

section.hours {
  margin-bottom: 120px;
}
section.hours .wrap.first {
  text-align: center;
}
section.hours .big {
  font-family: Inter;
  font-weight: 600;
  font-size: 260px;
  line-height: 75%;
  letter-spacing: -12px;
  text-align: center;
  max-width: 100%;
  background: linear-gradient(180deg, rgb(235, 241, 251), rgba(235, 241, 251, 0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}
section.hours h1 {
  width: 900px;
  margin: 0 auto;
  font-weight: 700;
  font-size: 54px;
  line-height: 66px;
  letter-spacing: -1px;
  text-align: center;
  text-transform: capitalize;
  margin-top: -94px;
  z-index: 1;
}
section.hours h1 span {
  color: var(--color-orange);
}
section.hours .description {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 32px;
  color: var(--color-dark70);
}
section.hours .book {
  width: 340px;
  padding: 20px;
  margin: 0 auto;
  /* Button/Button large */
  font-size: 20px;
  font-weight: 700;
  line-height: 32px;
  text-align: center;
}
section.hours .wrap.second {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
section.hours .wrap.second .item {
  width: 600px;
  height: 420px;
  border: 1px solid var(--color-light-blue100);
  background-color: rgba(241, 246, 255, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 32px;
  border-radius: 24px;
}
section.hours .wrap.second .item.with {
  background-color: var(--color-light-blue100);
}
section.hours .wrap.second .item.with .bottom {
  color: var(--color-dark);
}
section.hours .wrap.second .item .title {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  color: var(--color-dark);
}
section.hours .wrap.second .item .center-image {
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
section.hours .wrap.second .item .bottom {
  color: rgb(128, 128, 128);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
section.hours .wrap.second .item .bottom img {
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}
section.hours .wrap.second .item .bottom span {
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
}

section.software {
  background-color: var(--color-blue);
  color: white;
  padding: 130px 0px;
  position: relative;
  overflow: hidden;
}
section.software::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 170px;
  height: 160px;
  background-image: url("../img/software-corner-left.svg");
  background-repeat: no-repeat;
  background-position: left top;
}
section.software::after {
  content: "";
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 1156px;
  height: 344px;
  user-select: none;
  pointer-events: none;
  background-image: url("../img/software-bottom.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
}
section.software .about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
section.software .about .text {
  width: 620px;
}
section.software .about .text h1 {
  margin: 0;
  font-size: 54px;
  line-height: 66px;
  letter-spacing: -2px;
  text-transform: capitalize;
  color: white;
}
section.software .about .text h1 .sloped {
  color: var(--color-blue);
}
section.software .about .text h1 .sloped::before {
  background-color: white;
}
section.software .about .text .description {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  margin: 20px 0;
}
section.software .about .text .orange-button {
  width: 300px;
  padding: 18px;
  font-size: 18px;
  font-weight: 700;
}
section.software .about .image {
  display: block;
  position: relative;
  width: 540px;
}
section.software .about .image::after {
  content: "";
  position: absolute;
  top: -32px;
  right: -34px;
  width: 40px;
  height: 40px;
  background-image: url("../img/software-corner-right.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
section.software .about .image img {
  display: block;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.2);
}
section.software .cards {
  margin-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
section.software .cards .item {
  width: 390px;
  padding: 20px 24px;
  border-radius: 24px;
  position: relative;
  backdrop-filter: blur(35px);
  background: rgba(255, 255, 255, 0.06);
  z-index: 1;
}
section.software .cards .item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(110.94deg, rgba(255, 255, 255, 0.6) 2.13%, rgba(255, 255, 255, 0.18) 11.85%, rgba(255, 255, 255, 0.18) 87.1%, rgba(255, 255, 255, 0.6) 97.87%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: exclude;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
section.software .cards .item .icon {
  width: 60px;
  height: 60px;
  background-color: white;
  border-radius: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.software .cards .item .icon img {
  display: block;
  width: 30px;
}
section.software .cards .item .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: -0.5px;
  text-transform: capitalize;
  margin: 12px 0;
}
section.software .cards .item .description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
}

section.users {
  padding: 100px 0;
}
section.users h1 {
  font-weight: 700;
  font-size: 54px;
  line-height: 66px;
  letter-spacing: -2px;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: 60px;
}
section.users .reviews .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
section.users .reviews .item {
  width: 390px;
  height: 330px;
  padding: 6px;
  background-color: var(--color-light-blue100);
  border: 1px solid rgb(228, 234, 244);
  border-radius: 20px;
}
section.users .reviews .item .info {
  border-radius: 16px;
  background-color: white;
  padding: 20px;
  height: 268px;
  border: 1px solid var(--color-light-blue200);
  box-shadow: 0px 5px 1.5px -4px rgba(61, 89, 132, 0.09), 0px 6px 4px -4px rgba(61, 89, 132, 0.05), 0px 6px 13px 0px rgba(61, 89, 132, 0.15), 0px 2.15px 0.5px -2px rgba(61, 89, 132, 0.25);
}
section.users .reviews .item .info .stars {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3px;
  margin-bottom: 16px;
}
section.users .reviews .item .info .stars img {
  display: block;
}
section.users .reviews .item .info .text {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  text-align: left;
  color: var(--color-dark);
  opacity: 0.8;
}
section.users .reviews .item .creator {
  color: var(--color-dark);
  margin: 0 12px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  line-height: 24px;
}
section.users .reviews .item .creator .name {
  font-weight: 600;
  margin-right: 20px;
}
section.users .reviews .item .creator .job {
  font-weight: 500;
  opacity: 0.6;
}

section.vendors {
  padding: 80px 0;
}
section.vendors h1 {
  margin: 0;
  font-weight: 700;
  font-size: 54px;
  line-height: 64px;
  letter-spacing: -1px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 24px;
}
section.vendors .scroll-container {
  width: 100%;
  overflow: hidden;
  background: white;
  position: relative;
}
section.vendors .scroll-container::before, section.vendors .scroll-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}
section.vendors .scroll-container::before {
  left: 0;
  background: linear-gradient(to right, white, transparent);
}
section.vendors .scroll-container::after {
  right: 0;
  background: linear-gradient(to left, white, transparent);
}
section.vendors .scroll-container .content {
  display: flex;
  animation: vendors-scroll 100s linear infinite;
  width: fit-content;
  padding: 0px 50px;
}
section.vendors .scroll-container .content img {
  display: block;
  width: 250px;
  user-select: none;
  pointer-events: none;
}

@keyframes vendors-scroll {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(calc(-100% + 100vw));
  }
  100% {
    transform: translateX(0);
  }
}
section.demo .wrap {
  border-radius: 50px;
  background-color: var(--color-blue);
  background-image: url("../img/demo-bg.png");
  background-blend-mode: screen;
  background-size: cover;
  background-position: top center;
  color: white;
  padding: 70px;
  position: relative;
}
section.demo .wrap .center {
  width: 740px;
  margin: auto;
}
section.demo .wrap::before {
  content: "";
  width: 207px;
  height: 279px;
  position: absolute;
  left: 55px;
  bottom: 0px;
  background-image: url("../img/demo-corner-left.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
}
section.demo .wrap::after {
  content: "";
  width: 207px;
  height: 279px;
  position: absolute;
  right: 55px;
  bottom: 0px;
  background-image: url("../img/demo-corner-right.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
}
section.demo h1 {
  font-weight: 700;
  font-size: 54px;
  line-height: 64px;
  letter-spacing: -1px;
  text-align: center;
  text-transform: capitalize;
  margin: 0;
}
section.demo .description {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  margin-bottom: 40px;
}
section.demo .shedule {
  width: 340px;
  padding: 20px;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  margin: auto;
  display: block;
}
section.demo .additions {
  margin-top: 24px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
section.demo .additions .item {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.demo .additions .item img {
  display: block;
  margin-right: 8px;
}
section.demo .additions .item span {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
}
section.demo .additions .divider {
  width: 1px;
  height: 18px;
  background-color: rgba(255, 255, 255, 0.7);
  margin: 0px 18px;
}

section.footer {
  background-color: var(--color-light-blue100);
}
section.footer .wrap.faq {
  padding: 60px 0;
}
section.footer .wrap.faq h1 {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 64px;
  letter-spacing: -1px;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 40px;
}
section.footer .wrap.faq .accordion {
  width: 700px;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  margin: 0 auto;
  margin-top: 40px;
  box-shadow: 0px 5px 8px rgba(61, 89, 132, 0.1);
}
section.footer .wrap.faq .accordion .item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
section.footer .wrap.faq .accordion .item:last-child {
  border-bottom: none;
}
section.footer .wrap.faq .accordion .item .header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 0.3s ease;
}
section.footer .wrap.faq .accordion .item .header:hover .title {
  color: var(--color-orange);
}
section.footer .wrap.faq .accordion .item .header .title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}
section.footer .wrap.faq .accordion .item .header .arrow {
  width: 24px;
  transition: 0.3s;
}
section.footer .wrap.faq .accordion .item .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  font-size: 16px;
  padding: 0px 20px;
  line-height: 26px;
  font-weight: 500;
}
section.footer .wrap.faq .accordion .item .content .text {
  margin: 0;
  margin-bottom: 20px;
  color: var(--color-dark60);
}
section.footer .wrap.faq .accordion .item .content .text b {
  color: var(--color-dark70);
  font-weight: 700;
}
section.footer .wrap.faq .accordion .item .content .text a {
  display: inline-block;
  color: var(--color-blue);
}
section.footer .wrap.faq .accordion .item .content .text ul {
  margin: 0;
}
section.footer .wrap.faq .accordion .item.active .header .arrow {
  transform: rotate(180deg);
}
section.footer .wrap.faq .accordion .item.active .content {
  max-height: 500px;
}
section.footer .subscribe {
  color: white;
  text-align: center;
}
section.footer .subscribe .wrap {
  background-color: var(--color-blue);
  padding: 80px 260px;
  border-radius: 40px;
  position: relative;
}
section.footer .subscribe .wrap::before {
  content: "";
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: 20px;
  left: 32px;
  bottom: 20px;
  width: 50%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  background-image: url("../img/subscribe-bg-left.svg");
}
section.footer .subscribe .wrap::after {
  content: "";
  pointer-events: none;
  user-select: none;
  position: absolute;
  top: 20px;
  right: 32px;
  bottom: 20px;
  width: 50%;
  background-repeat: no-repeat;
  background-position: right center;
  background-image: url("../img/subscribe-bg-right.svg");
}
section.footer .subscribe h1 {
  margin: 0;
  font-weight: 700;
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -1px;
  text-transform: capitalize;
}
section.footer .subscribe h1 .sloped {
  color: var(--color-dark);
}
section.footer .subscribe h1 .sloped::before {
  background-color: white;
}
section.footer .subscribe .description {
  font-weight: 500;
  line-height: 26px;
  margin-top: 16px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.6);
}
section.footer .subscribe .buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
section.footer .subscribe .buttons .orange-button {
  padding: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  width: 240px;
}
section.footer .wrap.company {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  border-bottom: 1px solid rgba(23, 50, 90, 0.15);
}
section.footer .wrap.company .about {
  width: 425px;
}
section.footer .wrap.company .about .logo {
  width: 150px;
  display: block;
  margin-bottom: 24px;
}
section.footer .wrap.company .about .description {
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-dark);
  opacity: 0.6;
}
section.footer .wrap.company .resources {
  width: 430px;
}
section.footer .wrap.company .resources .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: var(--color-dark);
}
section.footer .wrap.company .resources .description {
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: var(--color-dark);
  opacity: 0.6;
  margin-top: 4px;
  margin-bottom: 24px;
}
section.footer .wrap.company .resources .field {
  width: 100%;
  background-color: white;
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
section.footer .wrap.company .resources .field input {
  margin: 15px 24px;
  border: none;
  background-color: white;
  color: var(--color-dark);
  font-weight: 500;
  font-size: 16px;
  flex-grow: 1;
  min-width: 50px;
  width: 100%;
}
section.footer .wrap.company .resources .field input::placeholder {
  font-weight: 400;
  color: rgba(23, 50, 90, 0.5);
}
section.footer .wrap.company .resources .field .send {
  margin: 4px;
  padding: 11px 24px;
  font-size: 16px;
  flex-shrink: 0;
}
section.footer .wrap.resources {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(23, 50, 90, 0.15);
  padding-top: 60px;
}
section.footer .wrap.resources .socials {
  width: 400px;
  padding: 28px;
  border-radius: 20px;
  /* Shadow */
  box-shadow: 0px 5px 1.5px -4px rgba(61, 89, 132, 0.09), 0px 6px 4px -4px rgba(61, 89, 132, 0.05), 0px 6px 13px 0px rgba(61, 89, 132, 0.03), 0px 2.15px 0.5px -2px rgba(61, 89, 132, 0.25);
  /* White/White 100% */
  background: rgb(255, 255, 255);
}
section.footer .wrap.resources .socials .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: var(--color-dark);
}
section.footer .wrap.resources .socials .description {
  margin-top: 14px;
  margin-bottom: 32px;
  font-family: Plus Jakarta Sans;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-dark);
  opacity: 0.6;
}
section.footer .wrap.resources .socials .buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
}
section.footer .wrap.resources .socials .buttons a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(23, 50, 90, 0.1);
  border-radius: 14px;
  background-color: white;
  transition: all 0.25s;
}
section.footer .wrap.resources .socials .buttons a img {
  display: block;
  transition: 0.25s;
}
section.footer .wrap.resources .socials .buttons a:hover {
  background-color: var(--color-orange);
  border: 1px solid transparent;
}
section.footer .wrap.resources .socials .buttons a:hover img {
  filter: contrast(10);
}
section.footer .wrap.resources .links {
  width: 620px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
section.footer .wrap.resources .links .group {
  width: 140px;
}
section.footer .wrap.resources .links .group .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: var(--color-dark);
  margin-bottom: 16px;
}
section.footer .wrap.resources .links .group a {
  display: block;
  font-weight: 400;
  font-size: 18px;
  line-height: 40px;
  color: var(--color-dark);
  opacity: 0.6;
  letter-spacing: -0.5px;
  transition: all 0.25s;
}
section.footer .wrap.resources .links .group a:hover {
  opacity: 1;
}
section.footer .wrap.copyright {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 32px 0;
  color: var(--color-dark);
}
section.footer .wrap.copyright .rights {
  opacity: 0.6;
}
section.footer .wrap.copyright .links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
section.footer .wrap.copyright .links a {
  opacity: 0.6;
  transition: 0.25s;
}
section.footer .wrap.copyright .links a:hover {
  opacity: 1;
}

.feedback-popup {
  position: fixed;
  z-index: 1000;
  top: 50%;
  left: 50%;
  width: 440px;
  transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(30px);
  padding: 30px;
  border-radius: 12px;
  color: var(--color-dark);
  box-shadow: 0px 20px 80px rgba(61, 89, 132, 0.75);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.feedback-popup.show {
  visibility: visible;
  transform: translate(-50%, -50%);
  opacity: 1;
  scale: 1;
}
.feedback-popup label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}
.feedback-popup input,
.feedback-popup textarea {
  display: block;
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0px 0px 5px rgba(61, 89, 132, 0.15);
  margin-bottom: 10px;
  resize: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
}
.feedback-popup input::placeholder,
.feedback-popup textarea::placeholder {
  color: var(--color-dark);
  opacity: 0.4;
}
.feedback-popup .buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}
.feedback-popup .orange-button {
  display: block;
  flex-grow: 1;
  width: 100%;
}
.feedback-popup .orange-button.close {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}
.feedback-popup .checkmark {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  background-color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}
.feedback-popup .checkmark.show {
  opacity: 1;
  visibility: visible;
}
.feedback-popup .checkmark .center {
  text-align: center;
}
.feedback-popup .checkmark .center img {
  display: block;
  margin: auto;
}
.feedback-popup .checkmark .center .big {
  font-size: 28px;
  font-weight: 700;
}
.feedback-popup .checkmark .center .small {
  font-size: 16px;
  font-weight: 500;
  opacity: 0.6;
  margin-top: 5px;
}

section.about {
  color: var(--color-dark);
  padding-top: 80px;
  padding-bottom: 100px;
}
section.about .wrap {
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0px 8px 30px 0px rgba(61, 89, 132, 0.25);
  background-color: white;
}
section.about .wrap.second {
  margin-top: 50px;
}
section.about .box {
  overflow: hidden;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
section.about h1 {
  font-weight: 800;
  font-size: 42px;
  line-height: 64px;
  letter-spacing: -1px;
  text-align: center;
  color: white;
  margin: 0px;
  margin-bottom: 10px;
}
section.about h1 .sloped {
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
  color: white;
}
section.about h1 .sloped.blue::before {
  background-color: var(--color-blue);
}
section.about h1 .sloped.orange::before {
  background-color: var(--color-orange);
}
section.about img {
  max-width: 500px;
  min-width: 500px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
  z-index: 1;
  border: 8px solid rgba(0, 0, 0, 0.15);
}
section.about img.left {
  margin-right: 30px;
}
section.about img.right {
  margin-left: 30px;
}
section.about .text {
  flex-grow: 1;
}
section.about .text .description {
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
section.about .text .description p {
  margin: 0px;
}

@media screen and (max-width: 720px) {
  :root {
    --header-height: 60px;
  }
  html,
  body {
    max-width: 100vw;
    width: 100vw;
    min-width: initial;
    overflow-x: hidden;
  }
  .wrap {
    width: initial;
  }
  header .wrap {
    height: var(--header-height);
    padding: 18px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    z-index: 20;
  }
  header .mobile-menu {
    display: flex;
  }
  header .logo {
    height: 20px;
  }
  header .desktop-nav,
  header .buttons .login {
    display: none;
  }
  header .buttons {
    flex-grow: 1;
    justify-content: flex-end;
    padding-right: 20px;
  }
  header .buttons .signup {
    padding: 9px 18px;
    font-size: 14px;
    line-height: 100%;
  }
  header .burger-button {
    display: block;
  }
  section.start .wrap {
    display: block;
    padding: 0px 16px;
  }
  section.start .wrap .left {
    width: 100%;
    margin: 0;
    padding-top: 60px;
    padding-bottom: 42px;
  }
  section.start .wrap .left h1 {
    font-size: 46px;
    line-height: 54px;
    letter-spacing: -1px;
  }
  section.start .wrap .left .description {
    font-size: 16px;
    line-height: 26px;
    margin-top: 12px;
    margin-bottom: 24px;
  }
  section.start .wrap .left .bottom {
    width: 100%;
  }
  section.start .wrap .left .bottom .buttons {
    gap: 10px;
  }
  section.start .wrap .left .bottom .buttons .orange-button {
    width: 100%;
    font-size: 16px;
    padding: 14px 8px;
    line-height: 24px;
  }
  section.start .wrap .left .bottom .additions {
    margin-top: 12px;
    justify-content: center;
  }
  section.start .wrap .left .bottom .additions .item p {
    font-size: 14px;
    line-height: 24px;
  }
  section.start .wrap .right {
    position: relative;
    width: 100%;
    height: 600px;
    background-size: contain;
    background-position: top;
  }
  section.start .wrap .right .slicks {
    left: 0;
    right: 0;
  }
  section.start .wrap .right .slicks .item {
    width: 100%;
    box-shadow: 0px 5px 12px rgba(0, 0, 0, 0.1);
    padding: 15px;
  }
  section.start .wrap .right .slicks .item .product {
    padding: 8px;
  }
  section.start .wrap .right .slicks .item .product .name {
    font-size: 18px;
  }
  section.start .wrap .right .slicks .item .vendor .name {
    width: 95px;
  }
  section.patients {
    padding: 40px 16px;
    padding-top: 0px;
  }
  section.patients .wrap {
    width: 100%;
  }
  section.patients h1 {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: -1.5px;
  }
  section.patients h1 .sloped {
    padding: 0 8px;
  }
  section.patients .description {
    font-size: 16px;
    line-height: 26px;
    margin-top: 16px;
  }
  section.patients .wave {
    line-height: 26px;
  }
  section.cards {
    padding: 0 16px;
  }
  section.cards .wrap {
    gap: 20px;
  }
  section.cards .card {
    width: 100%;
    border-radius: 12px;
  }
  section.cards .card .text {
    padding: 16px;
    padding-top: 10px;
  }
  section.cards .card .text .title {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 6px;
  }
  section.cards .card .text .description {
    font-size: 14px;
    line-height: 24px;
  }
  section.hours {
    padding: 70px 16px;
    margin-bottom: 0px;
    padding-top: 0px;
  }
  section.hours .big {
    letter-spacing: -4px;
    font-size: 20vw;
    line-height: 100%;
  }
  section.hours h1 {
    width: 100%;
    margin-top: -32px;
    font-size: 34px;
    line-height: 42px;
  }
  section.hours .description {
    margin-top: 16px;
    margin-bottom: 32px;
    font-size: 16px;
    line-height: 26px;
  }
  section.hours .book {
    padding: 16px;
    font-size: 16px;
    line-height: 26px;
    width: 100%;
    margin: 0;
  }
  section.hours .wrap.second {
    display: none;
  }
  section.software {
    padding: 70px 16px;
  }
  section.software::before, section.software::after {
    display: none;
  }
  section.software .about {
    display: block;
  }
  section.software .about::after {
    display: none;
  }
  section.software .about .text {
    width: 100%;
  }
  section.software .about .text h1 {
    font-size: 34px;
    line-height: 42px;
    letter-spacing: -1px;
  }
  section.software .about .text .description {
    font-size: 16px;
    line-height: 26px;
    margin-top: 16px;
  }
  section.software .about .text .orange-button {
    width: 100%;
    font-size: 16px;
    padding: 16px;
  }
  section.software .about .image {
    width: 100%;
    margin-top: 40px;
  }
  section.software .about .image::after {
    top: -15px;
    right: -15px;
    width: 18px;
    height: 18px;
  }
  section.software .cards {
    flex-wrap: wrap;
    margin-top: 24px;
    gap: 12px;
  }
  section.software .cards .item {
    width: 100%;
    border-radius: 16px;
    padding: 14px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  section.software .cards .item::before {
    border-radius: 16px;
  }
  section.software .cards .item .icon {
    min-width: 34px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: inline-flex;
    vertical-align: middle;
    margin-right: 12px;
  }
  section.software .cards .item .icon img {
    width: 20px;
    height: 20px;
  }
  section.software .cards .item .text {
    flex-grow: 1;
  }
  section.software .cards .item .title {
    display: inline-block;
    vertical-align: middle;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
    margin-top: 0;
  }
  section.software .cards .item .description {
    font-size: 14px;
    line-height: 24px;
  }
  section.users {
    padding: 60px 16px;
  }
  section.users h1 {
    font-size: 34px;
    line-height: 44px;
    letter-spacing: -1px;
    margin-bottom: 40px;
  }
  section.users .reviews {
    flex-wrap: wrap;
    gap: 20px;
  }
  section.users .reviews .wrapper {
    gap: 0px;
  }
  section.users .reviews .swiper-pagination {
    position: initial;
    margin-top: 14px;
  }
  section.users .reviews .swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--color-dark15);
    opacity: 1;
    margin: 0 4px !important;
    transition: 0.3s;
  }
  section.users .reviews .swiper-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 100px;
    background: var(--color-dark);
  }
  section.users .reviews .item {
    width: 100%;
    height: auto;
    margin: 0;
  }
  section.users .reviews .item .info {
    padding: 18px;
    height: 220px;
  }
  section.users .reviews .item .info .text {
    font-size: 13px;
    line-height: 24px;
  }
  section.users .reviews .item .info .stars {
    margin-bottom: 12px;
  }
  section.users .reviews .item .creator {
    margin-top: 12px;
    margin-bottom: 4px;
    font-size: 12px;
    line-height: 24px;
  }
  section.vendors {
    padding: 70px 16px;
  }
  section.vendors h1 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 16px;
  }
  section.vendors .scroll-container::before, section.vendors .scroll-container::after {
    width: 40px;
  }
  section.vendors .scroll-container .content {
    padding: 0 30px;
  }
  section.vendors .scroll-container .content img {
    width: 200px;
  }
  section.footer {
    padding: 0 16px;
  }
  section.footer .wrap.faq {
    padding: 50px 0;
  }
  section.footer .wrap.faq h1 {
    font-size: 34px;
    line-height: 42px;
    margin-bottom: 16px;
  }
  section.footer .wrap.faq .accordion {
    width: 100%;
  }
  section.footer .wrap.faq .accordion .item .header .title {
    font-size: 16px;
  }
  section.footer .wrap.faq .accordion .item .content {
    font-size: 14px;
    line-height: 22px;
  }
  section.footer .subscribe .wrap {
    padding: 30px 20px;
    border-radius: 16px;
  }
  section.footer .subscribe .wrap::before, section.footer .subscribe .wrap::after {
    display: none;
  }
  section.footer .subscribe h1 {
    font-size: 26px;
    line-height: 36px;
  }
  section.footer .subscribe .description {
    font-size: 14px;
    line-height: 24px;
    margin-top: 12px;
    margin-bottom: 28px;
  }
  section.footer .subscribe .buttons {
    gap: 10px;
  }
  section.footer .subscribe .buttons .orange-button {
    width: 50%;
    flex-grow: 1;
    font-size: 14px;
    line-height: 24px;
    padding: 10px 16px;
  }
  section.footer .wrap.company {
    flex-wrap: wrap;
    padding-bottom: 32px;
  }
  section.footer .wrap.company .about {
    width: 100%;
  }
  section.footer .wrap.company .about .description {
    font-size: 14px;
    line-height: 24px;
  }
  section.footer .wrap.company .resources {
    width: 100%;
    margin-top: 28px;
  }
  section.footer .wrap.company .resources .field input {
    margin: 10px 16px;
    margin-right: 0px;
    font-size: 14px;
    line-height: 24px;
  }
  section.footer .wrap.company .resources .field .send {
    padding: 10px 16px;
  }
  section.footer .wrap.resources {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    padding-bottom: 24px;
    padding-top: 32px;
  }
  section.footer .wrap.resources .socials {
    margin-bottom: 24px;
    width: 100%;
  }
  section.footer .wrap.resources .links {
    width: 100%;
    flex-wrap: wrap;
    gap: 24px;
  }
  section.footer .wrap.resources .links .group {
    width: 45%;
  }
  section.footer .wrap.resources .links .group a {
    font-size: 16px;
    line-height: 34px;
  }
  section.footer .wrap.copyright {
    display: block;
    text-align: center;
    padding: 24px;
  }
  section.footer .wrap.copyright .links {
    margin-top: 8px;
    justify-content: center;
  }
  section.about {
    padding: 40px 8px;
  }
  section.about .wrap {
    margin: 20px 0px;
    border-radius: 16px;
    padding: 16px;
  }
  section.about .wrap.second .box {
    flex-direction: column;
  }
  section.about .wrap .box {
    flex-direction: column-reverse;
  }
  section.about .wrap .box h1 {
    font-size: 36px;
  }
  section.about .wrap .box .description {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 24px;
  }
  section.about .wrap .box img {
    margin: 0 !important;
    max-width: 100%;
    min-width: 100%;
    width: 100%;
    border-radius: 16px;
  }
  .feedback-popup {
    width: 100%;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    backdrop-filter: blur(15px);
    transform: translate(100%, 0);
    border-radius: 0;
    box-shadow: none;
    border: none;
    overflow: auto;
    z-index: 10;
  }
  .feedback-popup form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    min-height: 100%;
  }
  .feedback-popup.show {
    visibility: visible;
    transform: translate(0%, 0);
    opacity: 1;
  }
  .feedback-popup textarea {
    flex-grow: 1;
    min-height: 120px;
  }
  .feedback-popup .buttons .orange-button {
    padding: 12px;
  }
}
@media screen and (min-width: 720px) and (max-width: 1230px) {
  body {
    overflow-x: hidden;
    min-width: 1000px;
    max-width: 100vw;
  }
  html,
  body {
    min-width: 1000px;
  }
  .wrap {
    width: 1000px;
    overflow-x: hidden;
  }
  section.start .wrap {
    overflow-x: initial;
  }
  section.start .left {
    width: 560px;
  }
  section.start .left h1 {
    font-size: 54px;
    line-height: 74px;
  }
  section.start .left .buttons {
    gap: 12px;
  }
  section.start .left .buttons .orange-button {
    width: 240px;
    padding: 16px;
    font-size: 18px;
    line-height: 28px;
  }
  section.start .right {
    right: 10px;
    width: 430px;
    height: 550px;
  }
  section.cards .wrap {
    gap: 20px;
  }
  section.cards .card {
    width: calc(50% - 10px);
  }
  section.cards .card .text .title {
    font-size: 22px;
  }
  section.cards .card .text .description {
    font-size: 13px;
  }
  section.hours .wrap.second .item {
    width: initial;
    flex: 1;
  }
  section.hours .big {
    font-size: 220px;
  }
  section.software .about .text {
    width: 500px;
  }
  section.software .about .text h1 {
    font-size: 44px;
  }
  section.software .about .image {
    width: 420px;
  }
  section.software .cards {
    gap: 15px;
    margin-top: 50px;
  }
  section.software .cards .item {
    padding: 20px;
  }
  section.software .cards .item .title {
    font-size: 22px;
  }
  section.software .cards .item .description {
    font-size: 12px;
  }
  section.users .wrap {
    overflow: hidden;
  }
  section.users .reviews {
    gap: 15px;
  }
  section.users .reviews .item {
    width: 400px;
    height: 335px;
    flex-grow: 1;
  }
  section.users .reviews .item .info {
    padding: 16px;
  }
  section.users .reviews .item .info .text {
    font-size: 14px;
  }
  section.users .reviews .item .creator {
    align-items: flex-end;
    margin-top: 16px;
    display: block;
  }
  section.users .reviews .item .creator .name {
    font-size: 13px;
    line-height: 100%;
  }
  section.users .reviews .item .creator .job {
    font-size: 12px;
    line-height: 100%;
    margin-top: 4px;
  }
  section.footer .wrap.copyright {
    padding: 30px;
  }
  section.footer .subscribe .wrap {
    padding: 80px 200px;
  }
  section.footer .subscribe .description {
    padding: 0px 80px;
  }
  section.footer .wrap.resources .links {
    width: 520px;
  }
  section.footer .wrap.resources .links .group .title {
    margin-bottom: 10px;
  }
  section.footer .wrap.resources .links .group a {
    font-size: 16px;
    line-height: 36px;
  }
}

/*# sourceMappingURL=style.css.map */
