:root {
  --text-primary: #373131;
  --button-primray: #f1511b;
  --main-blue: #1d91e8;
}

html {
  scroll-behavior: smooth;
}
body {
  color: var(--text-primary);
  scroll-behavior: smooth;
}
.main-btn-layout {
  padding: 8px 16px;
  background-color: var(--button-primray);
  color: white;
  font-size: 23px;
  font-weight: 600;
  border-radius: 25px;
  transition: 0.25s;
}
.general-image-container {
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.general-image-backdrop {
  position: absolute;
}
.general-image-backdrop-2 {
  width: 150%;
  margin-left: -150px;
  margin-top: -75px;
}
.general-image-sub-container-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.general-image-sub-container-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.general-image-sub-card {
  width: 230px;
  z-index: 2;
  padding: 12px;
  border-radius: 20px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
.general-image-sub-card img {
  height: 75px;
}
.general-image-sub-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}
.general-image-sub-card .subtitle {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}
.general-image-sub-card p {
  font-size: 15px;
  margin: 0;
  line-height: 1.2;
}

.main-btn-layout:hover {
  color: var(--text-primary);
}
.first-section-h1 {
  font-weight: 700;
  font-size: 55px;
  border-radius: 25px;
}
.first-section-h5 {
  font-size: 20px;
  font-weight: 500;
}
.pricebtnnav {
  text-transform: uppercase;
}
.first-section-img {
  width: 100%;
}
.second-section {
  background-color: rgb(244, 244, 244);
}
.second-section h1 {
  font-size: 40px;
  font-weight: 700;
}
.second-section-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}
.second-section-grid-child {
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
  padding: 10px 10px;
  padding-bottom: 3px;
  color: inherit;
  text-decoration: none;
  background-color: white;
  border: 4px solid white;
}
.second-section-grid-child:hover {
  color: inherit;
  text-decoration: none;
  border: 4px solid var(--main-blue);
}
.second-section-grid-image {
  height: 100px;
}
.second-section-grid-h3 {
  font-size: 25px;
  font-weight: 700;
}
.second-section-grid-p {
  font-size: 18px;
}
.second-section-grid-learn-more {
  color: inherit;
  font-size: 12px;
  margin-bottom: 0px;
}
.second-section-grid-learn-more:hover {
  text-decoration: solid 1px var(--text-primary);
}
.main-title-heading {
  font-size: 50px;
  font-weight: 700;
  color: black;
  margin: 0;
  padding: 0;
}
.main-subtitle {
  font-size: 20px;
}
.third-section-h1 {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
}
.third-section-p {
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 60px;
}
.fourth-section {
  background-color: var(--text-primary);
  color: white;
}
.fourth-section-h1 {
  font-weight: 700;
  font-size: 40px;
  margin: 0;
}
.fourth-section-p {
  font-weight: 600;
  font-size: 22px;
  margin: 0;
}
.fifth-section {
  background-color: #cae8ff;
}
.fifth-section h1 {
  font-weight: 700;
  font-size: 40px;
  margin: 0;
}
.fifth-section p {
  font-weight: 600;
  font-size: 22px;
  margin: 0;
  line-height: 1.2;
}
.fifth-section-btn {
  font-size: 30px;
  color: white;
  font-weight: 600;
  padding: 15px 30px;
  background-color: var(--text-primary);
  border-radius: 35px;
}
.fifth-section-btn:hover {
  opacity: 0.75;
}
.sixth-section h1 {
  font-weight: 700;
  font-size: 43px;
}
.sixth-section-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.sixth-section-grid-container a {
  color: inherit;
  text-decoration: none;
}
.sixth-section-grid-card {
  border: 4px solid #f1f2f2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px;
  background-color: white;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
}
.sixth-section-grid-card:hover {
  border: 4px solid #fbbc09;
}
.sixth-section-grid-card img {
  height: 50px;
  width: auto;
}
.sixth-section-grid-card h2 {
  font-weight: 700;
  font-size: 30px;
}
.sixth-section-grid-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}
.sixth-section-grid-card .learn-more {
  font-size: 12px;
  color: var(--button-primray);
}
.sixth-section-grid-card a:hover {
  color: var(--button-primray);
  text-decoration: none;
}

@media only screen and (max-width: 992px) {
  .second-section-grid-container {
    grid-template-columns: 1fr 1fr;
  }
  .general-image-sub-card {
    width: 200px;
  }
}
@media only screen and (max-width: 768px) {
  .main-btn-layout {
    font-size: 19px;
    padding: 6px 12px;
  }
  .general-image-sub-card {
    padding: 12px 10px;
    width: 160px;
  }
  .sixth-section-grid-card h2 {
    font-size: 22px;
  }
  .sixth-section-grid-container {
    grid-template-columns: 1fr;
  }
  .sixth-section h1 {
    text-align: center;
    font-size: 25px;
  }
  .fourth-section-p,
  .fifth-section p {
    font-size: 18px;
    text-align: center;
  }
  .fifth-section h1,
  .fourth-section-h1 {
    text-align: center;
    font-size: 25px;
  }
  .third-section-h1 {
    text-align: center;
    font-size: 25px;
  }
  .main-subtitle {
    font-size: 18px;
    text-align: center;
  }
  .main-title-heading {
    font-size: 30px;
  }
  .second-section-grid-h3 {
    font-size: 20px;
  }
  .second-section-grid-container {
    grid-template-columns: 1fr;
  }
  .first-section-h1 {
    text-align: center;
    font-size: 30px;
  }
  .first-section-h5 {
    text-align: center;
    font-size: 18px;
  }
  .second-section h1 {
    text-align: center;
    font-size: 30px;
  }
}

.tw-footer-container .gap-2 {
  gap: 5px;
}
