@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");

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

a {
  text-decoration: none;
  color: #100913;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  color: rgb(51, 51, 51);
  font-family: "Lato", sans-serif;
  font-size: 14px;
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 5;
  background-color: #ffffff;
}

i {
  color: black;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
  color: #100913;
}

.show {
  display: flex !important;
}

.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0.8),
    rgba(0, 0, 0, 0.15),
    rgba(0, 0, 0, 0)
  );
  margin: 20px 0px;
  margin-bottom: 35px;
}

.d-header {
  width: 460px;
}

.solid {
  background: #f3f3f6 !important;
}

.space-between {
  display: flex;
  justify-content: space-between;
}

.column {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.button-group button {
  font-size: 15px;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-style: 500;

  /* padding: 8px 25px !important; */
}

.btn {
  color: #fff;
  text-align: center;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  padding: 12px 25px;
  height: 48px;
  text-decoration: none;
}

.btn-primary {
  background-color: #c5a97f;
  color: #000000;
  text-align: center;
  text-decoration: none;
}

.btn-outline {
  color: black;
  background-color: #f2f2f2;
}

/* Logo */
.brand {
  /* parent row */
  display: flex;
  align-items: center; /* vertical-centers logo and text block */
}

.brand-info {
  line-height: 0.5;
  font-family: "Lato", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center; /* centers the two lines within the block */
}

.brand-info h5 {
  font-size: 18px;
  font-weight: bold;
  margin: 0;
}

.brand-info p {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.logo-container {
  height: 48px;
  width: 48px;
  border-radius: 12px;
  background-color: #000000;
  display: inline-block; /* flex isn't useful on an <img> */
  justify-content: center;
  text-align: center;
  padding: 5px 10px;
  margin-right: 9px;
}

.ls-body-padding {
  padding-left: 5rem;
  padding-right: 5rem;
}

.ls-header-container {
  background-position: 0 0;
  background-size: auto;
  padding-bottom: 70px;
  padding-top: 70px;
  width: 100%;
}

.ls-wrapper-container {
  width: 100%;
  max-width: 80rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.ls-pricing-container {
  width: 100%;
  max-width: 80rem;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}

.ls-header-container .ls-wrapper-container::before,
.ls-header-container .ls-wrapper-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 48px;
  /* Width of the decorative element */
  height: 100%;
  /* Height should be equal to the content container if you want it to span the full height */
  background: url("assets/texture/three_geometric_figure.png");
  /* Path to your decoration image */
  background-repeat: no-repeat;
  background-size: contain;
  /* Adjust size as needed */
  z-index: 2;
  /* Place it behind the content */
}

.ls-header-container .ls-wrapper-container::before {
  left: calc(-85px - 24px);
  top: 100px;
  /* Moves the decoration to the left outside the main content. Adjust the value as necessary */
}

.ls-header-container .ls-wrapper-container::after {
  right: calc(-85px - 24px);
  top: 100px;
  /* Moves the decoration to the right outside the main content. Adjust the value as necessary */
}

.ls-features-container {
  padding-top: 65px;
  padding-bottom: 75px;
  width: 100%;
  background-color: #fcfaf8;
  color: #000;
}

.ls-features-description {
  width: 60% !important;
}

.ls-header-container h1 {
  font-family: "Lato", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.4;
}

.ls-header-container p {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  line-height: 23px;
}

.ls-features-container .ls-wrapper-container::before,
.ls-features-container .ls-wrapper-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  /* Width of the decorative element */
  height: 100%;
  /* Height should be equal to the content container if you want it to span the full height */
  background: url("assets/texture/five_geometric_figure.png");
  /* Path to your decoration image */
  background-repeat: no-repeat;
  background-size: contain;
  /* Adjust size as needed */
  z-index: 2;
  /* Place it behind the content */
}

.ls-features-container .ls-wrapper-container::before {
  left: calc(-85px - 30px);
  top: 40px;
  /* Moves the decoration to the left outside the main content. Adjust the value as necessary */
}

.ls-features-container .ls-wrapper-container::after {
  right: calc(-85px - 30px);
  top: 40px;
  /* Moves the decoration to the right outside the main content. Adjust the value as necessary */
}

.ls-wrapper-container h2 {
  font-size: 42px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  margin-bottom: 8px;
}

.ls-wrapper-container p {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  line-height: 23px;
}

.btn-open-simulator {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 25px;
  color: #0a77ff;
  text-decoration: none;
}

/* Grid items*/

.grid-items {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  display: grid;
  margin: 0 auto;
}

.double-items-grid-variant {
  grid-template-columns: repeat(2, 1fr) !important;
}

.grid-item {
  background-color: #ffffff;
  border: 1px solid #d7dae0;
  border-radius: 20px;
  padding: 20px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}

.grid-item span {
  color: black;
  width: 48px;
  height: 48px;
  background-color: #d8be9a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.grid-item h4,
.grid-item p {
  font-family: "Lato", sans-serif;
  margin-bottom: 5px;
  font-weight: 600;
}

.grid-item h4 {
  font-size: 16px;
}

.grid-item p {
  font-size: 15px;
  color: #3e3a42;
  font-weight: 400;
  margin-bottom: 0;
}

.grid-item a {
  text-decoration: underline;
  font-family: "Lato", sans-serif;
  font-weight: 600;
}

/* Triple Grid */

.triple-grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
  gap: 20px;
  padding: 20px 0px;
}

.triple-grid-item {
  background: #fff;
  border: 1px solid #e5e6ec;
  border-radius: 25px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.triple-grid-item-padding {
  padding: 40px 35px;
}

.ls-simulator-features-container .triple-grid-item:nth-child(1) {
  grid-column: 1 / -1;
}

.ls-book-features-container .triple-grid-item:nth-child(3) {
  grid-column: 1 / -1;
}

.triple-grid-item h2 {
  font-family: "Lato", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000;
}

.triple-grid-item p {
  flex-grow: 1;
  font-size: 15px;
  font-family: "Lato", sans-serif;
  line-height: 1.4;
}

.header-web-image {
  height: 350px;
}

@media (max-width: 1115px) {
  .triple-grid-item h2 {
    font-family: "Lato", sans-serif;
    font-size: 18px;
  }
  .triple-grid-item p {
    font-size: 14px !important;
  }
}

/* Media query for mobile devices */

@media (max-width: 1500px) {
  .ls-wrapper-container {
    max-width: 60rem;
  }
  .ls-header-container h1 {
    font-size: 42px;
  }
  .ls-header-container p {
    font-size: 15px;
  }
  .ls-wrapper-container p {
    font-size: 15px;
  }
}

@media (max-width: 1200px) {
  .grid-items {
    grid-template-columns: repeat(2, 1fr);
  }
  .ls-header-container h1 {
    line-height: 1.2 !important;
    font-size: 34px;
  }
  .ls-features-container h2 {
    line-height: 1;
    font-size: 34px;
  }
  .ls-features-description {
    width: 80% !important;
  }
}

@media (max-width: 800px) {
  .ls-header-container {
    padding-top: 50px;
  }
  .ls-header-title {
    text-align: center;
  }
  .ls-features-container {
    padding-bottom: 25px !important;
  }
}

@media (max-width: 1115px) {
  .triple-grid-item-padding {
    padding: 20px 20px;
  }
}

@media (max-width: 900px) {
  .triple-grid-container {
    grid-template-columns: 1fr;
  }
  .brand-info h5 {
    font-size: 15px;
    height: 0.5 !important;
    font-weight: bold;
  }
  .brand-info p {
    font-size: 13px !important;
    height: 0.5 !important;
    font-weight: 400;
  }
  .d-header {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .ls-header-container p {
    font-size: 14px;
  }
  .triple-grid-item:nth-child(3) {
    grid-column: auto;
  }
  .triple-grid-item h2 {
    font-size: 16px;
    line-height: 20px !important;
  }
  .triple-grid-item p {
    font-size: 14px;
    line-height: 22px !important;
  }
  .triple-grid-item span {
    font-size: 18px;
    line-height: 20px !important;
  }
  .ls-body-padding {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .ls-features-container h2 {
    font-size: 24px;
  }
  .features-title {
    position: relative;
    display: inline-block;
    width: 100%;
  }
  .features-title::before {
    content: "";
    position: absolute;
    width: 48px;
    height: 100%;
    right: calc(-30px - 24px);
    background: url("../assets/texture/rhombus.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }
  .grid-items {
    grid-template-columns: repeat(1, 1fr);
  }
  .double-items-grid-variant {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .space-between {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    gap: 15px;
  }
  .button-group button {
    font-size: 14px;

    height: 48px;
  }
  .ls-body-padding {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 415px) {
  .ls-header-container h1 {
    font-size: 24px;
  }
  .header-web-image {
    height: 220px;
  }
}

@media (max-width: 389px) {
  .ls-body-padding {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 384px) {
  .header-web-image {
    height: auto;
    width: 100%;
  }
}
