@import url("https://fonts.googleapis.com/css?family=Rubik&display=swap");

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
  font-family: "Rubik", sans-serif;
}

html {
  box-sizing: border-box;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-size: 1.6rem;
  color: white;
  background-color: #0b0c1b;
}

.header {
  /* background: linear-gradient(
    to bottom,
    white 50%, */
  /* Dark color - replace with the color picked from the top of your image */
  /* #4a69bd 75%, */
  /* Medium shade - replace with the color picked from the middle of your image */
  /* #284867 85%, */
  /* Lighter color - replace with the color picked from the bottom of your image */
  /* #000000 100% */
  /* ); */
  /* background: linear-gradient(to bottom, #161420 95%, black 100%); */
  /* height: 100vh; */
}

.flexbox-header {
  display: flex;
  justify-content: space-between;
  margin-left: 8rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.flexbox-logo {
  display: flex;
  align-items: flex-end;
}

.logo {
  margin-right: 1rem;
  height: 5rem;
  width: auto;
}

.logo-text {
  font-size: 3rem;
  color: white;
}

.flexbox-logo a,
.flexbox-logo a:active .flexbox-logo a:visited {
  text-decoration: none;
}

.mobile-menu {
  display: none;
}

.flexbox-header-nav {
  display: flex;
  justify-content: space-between;
  justify-content: flex-end;
  gap: 2rem;
  margin-right: 8rem;
  margin-left: 8rem;
  padding-top: 1rem;
}

.flexbox-nav {
  display: flex;
  justify-content: flex-start;
  gap: 3rem;
  margin-right: 8rem;
  margin-left: 8rem;
  padding-top: 1rem;
}

.flexbox-nav a {
  display: flex; /* Use flexbox for the anchor element */
  align-items: center; /* Align items vertically */
}

.flexbox-nav nav {
  font-size: 2rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 1.8rem;
}

nav a:hover {
  color: rgba(255, 255, 255, 0.276);
}

.nav-icon {
  color: #aaaaaa;
  width: 3rem;
  height: auto;
  margin-right: 0.8rem;
}

a:hover svg {
  fill: #003bdf;
}

.flexbox-hero {
  background-color: #0b0c1b;
  /* Other background properties can be added as needed */
  /* background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.05) 10%,
    rgba(11, 12, 27, 1) 100%
  ); */
  /* rgb(11, 12, 27) */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  justify-items: center;
  align-items: center;
  margin: auto;
  gap: 6rem;
  height: 85vh;
  margin-top: 2rem;
  position: relative;
}

.header-background-image {
  background-image: url("img/header-image.jpg");
  background-size: cover; /* Optional: Adjust how the background image is sized */
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  @supports (background-image: url("img/header-image.webp")) {
    background-image: url("img/header-image.webp");
  }
}

.flexbox-hero-content {
  display: flex;
  flex-direction: column;
  gap: 8rem;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  /* margin-top: -25rem; */
  position: relative;
  z-index: 1; /* Ensure content appears above the background image */
}

.flexbox-hero-content h1 {
  font-size: 5rem;
}

.flexbox {
  display: flex;
}

.flexbox--column {
  flex-direction: column;
}

.flexbox--space-between {
  justify-content: space-between;
}

.flexbox--center-all {
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.flexbox--center {
  justify-content: center;
  align-items: center;
}

.flexbox--width {
  margin: auto;
  width: 70%;
}

.flexbox--gap-sm {
  gap: 2rem;
}

.flexbox--gap-med {
  gap: 6rem;
}

.flexbox--end {
  justify-content: flex-end;
}

.flexbox--border-bottom {
  border-bottom: 1px solid #212235;
  padding-bottom: 1rem;
}

.text--right {
  text-align: right;
}

.title-subtext {
  color: #cecece;
  line-height: 2.5rem;
  text-align: center;
  width: 60%;
}

h1 {
  font-size: 6rem;
}

@media only screen and (max-width: 1600px) {
  h1 {
    font-size: 5rem;
  }
}

@media only screen and (max-width: 1500px) {
  h1 {
    font-size: 4rem;
  }
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.6rem;
}

.button--get-started {
  display: inline-block;
  padding: 2rem 1.3rem;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  color: white;
  font-size: 1.6rem;
  line-height: 1.6rem;
  background-color: #003bdf;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  width: 20rem;
}

.button--get-started-nav {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  color: white;
  font-size: 1.6rem;
  line-height: 1.6rem;
  background-color: #003bdf;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button--get-started-nav:hover,
.button--login-nav:hover,
.button--get-started:hover,
.button--features:hover,
.choose-plan:hover,
.button--learnmore:hover {
  background-color: #003bdf46;
}

.button--get-started-nav:active,
.button--login-nav:active,
.button--get-started:active,
.button--features:active,
.choose-plan:active,
.button--learnmore:active {
  transform: scale(0.92);
}

.button--features {
  display: inline-block;
  padding: 2rem 1.3rem;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  color: white !important;
  font-size: 1.6rem;
  line-height: 1.6rem;
  background-color: #003bdf;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  width: 20rem;
}

.button--learnmore {
  display: flex;
  padding: 1.5rem 1rem;
  border-radius: 4px;
  text-decoration: none;
  color: white !important;
  font-size: 1.6rem;
  line-height: 1.6rem;
  background-color: #003bdf;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  width: 20rem;
  margin-top: 3rem;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.button--login-nav {
  display: inline-block;
  padding: 0.9rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
  color: white;
  font-size: 1.6rem;
  line-height: 1.6rem;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
    background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1px solid #003bdf;
}

.flexbox-latestoffer {
  display: flex;
  align-items: center;
  margin: auto;
  gap: 2rem;
  width: 95%;
  padding-top: 6rem;
  color: #003bdf;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 4rem;
}

.flexbox-discount {
  display: flex;
  gap: 4rem;
  padding-bottom: 6rem;
  flex-direction: column;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  text-align: center;
}

.flexbox-discount h1 {
  font-size: 4rem;
}

.inline-flex {
  display: inline-flex;
  align-items: center;
}

.inline-flex ion-icon {
  margin-right: 2rem;
}

.inline-flex-features {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 2rem;
}

.inline-flex-features ion-icon {
  font-size: 3rem;
}

.flexbox-discount h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.flexbox-discount p {
  font-style: italic;
}

.offer-main {
  background-color: #141526;
  z-index: 10; /* Ensure content appears above the background image */
}

td a {
  color: black;
}

.price-tag-svg {
  color: #003bdf;
  font-size: 4rem;
  margin-bottom: 2rem;
}

.pricing-checkmark {
  color: green;
  font-size: 2.2rem;
  margin-right: 5px;
}

.flexbox-pricing-header {
  display: flex;
  line-height: 2.2rem;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  text-align: center;
}

.flexbox-pricing-header h1 {
  margin-bottom: 5rem;
  font-size: 4rem;
}

.flexbox-pricing-header p:last-of-type {
  padding-bottom: 4rem;
}

.flexbox-heading {
  display: flex;
  width: 70%;
  margin: auto;
  margin-top: 8rem;
}

.flexbox-home-products-svg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-products-svg {
  fill: white;
  width: 10rem;
  height: auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
}

.home-products-svg-2 {
  width: 16rem;
  height: auto;
}

.home-products-svg-3 {
  width: 13rem;
  height: auto;
}

.pricing-table {
  display: flex;
  justify-content: center;
  margin: 2rem;
}

.pricing-plan {
  border: 1px solid #212235;
  margin: 10px;
  padding: 20px;
  border-radius: 20px;
  background-color: #1a1b2e;
  width: 30%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

.pricing-plan h2 {
  color: white;
  text-align: center;
}

.description {
  text-align: center;
  color: white;
  font-size: 1.8rem;
  margin-bottom: 4rem;
}

.price {
  font-size: 1.5em;
  text-align: center;
  color: white;
  margin-bottom: 20px;
}

.price-2 {
  margin-top: 6rem;
}

.choose-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  margin: 10px 0;
  background-color: #003bdf;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.6rem;
  text-decoration: none;
  transition: box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

ul {
  list-style: none;
  padding: 0;
}

ul li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.plan-learn-more a {
  text-decoration: none;
  color: white;
  text-align: right;
  display: block;
  margin-top: 2rem;
  transition: color 0.2s ease;
}

.plan-learn-more a:hover {
  color: rgba(255, 255, 255, 0.276);
}

.section-features {
  background-color: #141526;
  padding-bottom: 8rem;
}

.flexbox-features-header {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding-bottom: 6rem;
  line-height: 2.2rem;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
}

.flexbox-features-header h1 {
  font-size: 4rem;
  margin-bottom: 2rem;
  text-align: center;
}

.flexbox-features-header p {
  text-align: center; /* Center the text horizontally */
  width: 70%;
  font-size: 1.8rem;
}

.container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 columns */
  grid-gap: 4rem;
  width: 80%;
  margin: auto;
}

.card {
  background: #1a1b2e;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.card img {
  border-radius: 50%;
  width: 50px; /* Adjust as needed */
  height: 50px; /* Adjust as needed */
  background-color: #00b4d8; /* Placeholder for icon background */
  margin-bottom: 15px;
}

.card h3 {
  font-size: 1.2em;
  margin: 10px 0;
}

.card p {
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-align: center;
  line-height: 2.2rem;
}

.card a {
  text-decoration: none;
  color: #00b4d8; /* Link color */
  border: none;
  padding: 10px 20px;
  text-align: center;
  display: inline-block;
  font-size: 0.9em;
  border-radius: 5px;
  transition: background-color 0.3s ease-in-out;
}

.card a:hover {
  background-color: #0096c7; /* Hover effect for links */
}

.info-hover {
  position: relative;
  display: inline-block;
  margin-left: 1rem;
}

.info-text {
  visibility: hidden;
  width: 20rem;
  background-color: #0b0c1b;
  color: #fff;
  border-radius: 20px;
  padding: 1rem;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px; /* Use half of the width value */
  border: 1px solid #212235;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  font-size: 1.4rem;
}

.info-hover:hover .info-text {
  visibility: visible;
}

.features-svg {
  font-size: 6rem;
  color: #003bdf;
}

.footer {
  background-color: black;
  padding-bottom: 4rem;
}

.footer-container {
  width: 80%;
  margin: 0 auto;
}

.footer-menu-group {
  padding-top: 6rem;
  display: flex;
  justify-content: space-between;
}

.footer-menu-title {
  font-weight: bold;
}

.footer-logo {
  height: 2.5rem;
  width: auto;
  margin-right: 0.8rem;
}

#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* No borders */
  outline: none; /* Remove outline */
  background-color: #003bdf; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  width: 50px; /* Set a specific width */
  height: 50px; /* Set the same value for height */
  border-radius: 100%; /* Rounded corners */
  font-size: 18px; /* Increase font size */
  transition: box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

#myBtn:hover {
  background-color: #003bdf46; /* Add a dark-grey background on hover */
}

.page-title-bg {
  margin-top: 2rem;
  background-color: #141526;
}

.page-title {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 70%;
  margin: auto;
  text-align: center;
}

.page-title h1 {
  margin-top: 5rem;
  font-size: 5rem;
}

.page-title p {
  line-height: 2.2rem;
  margin-top: 3rem;
  font-size: 1.8rem;
}

.page-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: auto;
}

.page-section h2 {
  margin-top: 7rem;
  text-align: center;
  font-size: 3rem;
}

.page-overview-bg {
  background-color: #141526;
}

.page-overview {
  display: flex;
  margin: auto;
  width: 80%;
  padding-top: 8rem;
  padding-bottom: 8rem;
  gap: 4rem;
}

.page-overview img {
  height: auto;
  width: 30rem;
  background-color: #003bdf10;
  border-radius: 20px;
}

.page-overview h1 {
  font-size: 3.7rem;
}

.page-overview-child {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.page-overview-child p {
  line-height: 2.2rem;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px; /* Space between the grid items */
  width: 80%;
  margin: auto;
  padding-bottom: 8rem;
}

.grid-item {
  background-color: #0b0c1b; /* Background color for the items */
  padding: 20px; /* Padding inside the items */
  border: 1px solid #212235;
  border-radius: 20px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  line-height: 2.2rem;
}

.btn--pricing {
  display: flex;
  width: 70%;
  justify-content: center;
  margin: auto;
  gap: 8rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.box-outline {
  border: 1px solid #212235;
  margin: auto;
  padding: 20px;
  border-radius: 20px;
  background-color: #1a1b2e;
  width: 95%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 4rem 5rem;
  margin-top: 6rem;
}

.flexbox-about {
  display: flex;
  margin: auto;
  width: 95%;
  gap: 5rem;
  padding-bottom: 6rem;
}

.box-outline p {
  margin-bottom: 3rem;
  line-height: 2.2rem;
  font-size: 1.8rem;
}

.box-outline-2 {
  border: 1px solid #212235;
  padding: 20px;
  border-radius: 20px;
  background-color: #1a1b2e;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 6rem 6rem;
  margin-top: 4rem;
}

.box-outline-2 h2 {
  margin-bottom: 2rem;
}

.box-outline-2 p {
  margin-bottom: 2rem;
}

.btn--pricing a {
  width: 18rem;
  font-size: 1.4rem;
}

.flexbox-contact {
  display: flex;
  gap: 5rem;
}

.contact-svg {
  font-size: 3rem;
}

.flexbox-address {
  display: flex;
  flex-direction: column;
}

.grid-domain {
  display: grid;
  grid-template-columns: 70% 1fr 1fr; /* Three columns with equal width */
  grid-template-rows: auto auto auto; /* Two rows */
  gap: 4rem; /* Space between grid items */
  width: 70%;
  margin: auto;
}

.grid-domain-item-1 {
  grid-row: 1 / span 2;
}

.grid-domain-item-4 {
  grid-column: 2; /* Place in the second column */
  grid-row: 2; /* Place in the second row */
}

.grid-domain-item-5 {
  grid-column: 3; /* Place in the second column */
  grid-row: 2; /* Place in the second row */
}
.grid-domain-item-6 {
  grid-column: 1 / -1; /* Place in the second column */
  grid-row: 3; /* Place in the second row */
  text-align: center;
  margin-bottom: 8rem;
}

.flexbox-domain-search {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
}

.search-bar ion-icon {
  position: absolute;
  left: 3px; /* Adjust as needed */
  top: 7px;
  font-size: 4rem; /* Adjust size as needed */
  color: black;
}

.search-bar input {
  padding-left: 40px; /* Make room for the icon */
  width: 100%;
  /* Add additional styling as needed */
}

#domainname {
  width: 80rem;
  height: 5.4rem;
  padding: 0 20px 0 44px;
  border-radius: 2px;
  font-size: 2.5rem;
  background-color: canvas;
  display: block;
  border: 1px solid #ffffff;
}

#submit-button {
  display: block;
  width: 20rem;
  text-align: center;
  padding: 10px;
  margin: 10px 0;
  background-color: #003bdf;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.6rem;
  text-decoration: none;
  transition: box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

.grid-domain-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* Three columns with equal width */
  grid-template-rows: auto auto; /* Two rows */
  gap: 4rem; /* Space between grid items */
  width: 90%;
  margin: auto;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

.contact-left {
  width: 100%;
  position: relative;
}

.contact-left:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -2.5rem; /* half of your gap */
  top: 0;
  bottom: 0;
  border-right: 1px solid #333336; /* your desired border style */
}

.contact-left h2 {
  margin-bottom: 4rem;
}

form {
  display: flex;
  flex-direction: column;
}

fieldset {
  border: none;
  font-size: 1.8rem;
}

fieldset > div {
  margin-bottom: 4rem;
}

#fs-frm-inputs input,
#fs-frm-inputs textarea {
  padding: 2rem;
  font-size: 1.8rem; /* Example padding value */
}

#full-name,
#email-address,
#message {
  width: 100%;
  border-radius: 2px;
  border: none;
}

#full-name,
#email-address {
  height: 4rem;
}

#message {
  height: 25rem;
}

.btn-form-submit {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  margin: 10px 0;
  background-color: #003bdf;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.6rem;
  transition: box-shadow 0.2s ease, background-color 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
}

ol {
  margin-bottom: 3rem;
}

.footer-menu-group ul li a {
  color: white;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-menu-group ul li a:hover {
  color: rgba(255, 255, 255, 0.276);
}

.blog h2 {
  margin-bottom: 1rem;
}

.blog ul {
  margin-bottom: 4rem;
}

.flexbox-hero-why {
  background-color: #0b0c1b;
  display: grid;
  grid-template-columns: 40% 1fr;
  grid-template-rows: 1fr;
  justify-items: center;
  margin: auto;
  gap: none;
  margin-left: 8rem;
  margin-top: 6rem;
  margin-right: 1rem;
  gap: 6rem;
  margin-bottom: 6rem;
}

.h1-why {
  align-self: center;
}

.litespeed-logo {
  width: 16rem;
  height: auto;
  margin-right: 10rem;
}

.ourtech-logo {
  font-size: 9rem;
  color: #003bdf;
  margin-right: 10rem;
}

video {
  opacity: 0.25;
  border-radius: 20px;
}

.flexbox-ourtech-heading {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 6rem;
  color: #003bdf;
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 2rem;
  margin-left: 4rem;
}

.flexbox-ourtech {
  display: flex;
  gap: 2rem;
  margin: auto;
  margin-left: 8rem;
  margin-right: 8rem;
  border-bottom: 1px solid #212235;
  align-items: center;
  flex-direction: column;
}

.ourtech-grid {
  display: grid;
  grid-template-columns: 15rem 1fr;
  grid-template-rows: repeat(8, 1fr);
  margin-left: 16rem;
  margin-right: 16rem;
  align-items: center;
  justify-items: center;
  padding-bottom: 6rem;
}

.ourtech-grid p,
.ourtech-grid ion-icon,
.ourtech-grid img {
  padding-top: 6rem;
}

.ourtech-grid p {
  font-size: 1.9rem;
  line-height: 2.6rem;
}

.ourtech-grid p:not(:first-child) {
  border-top: 1px solid white !important;
}

.our-performance-section {
  margin-left: 16rem;
  margin-right: 16rem;
  font-size: 1.9rem;
}

.our-performance-section p {
  margin-bottom: 3rem;
  line-height: 2.6rem;
}

.our-performance-section ul {
  list-style: circle inside none;
}

.our-performance-section li {
  display: list-item;
}

.our-performance-section a,
.our-performance-section a:visited {
  color: #003bdf;
  text-decoration: none;
  transition: color 0.2s ease;
}

.our-performance-section a:hover {
  color: rgba(255, 255, 255, 0.276);
}

.grid-our-performance-section {
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: center;
  gap: 6rem;
}

.grid-our-performance-section img {
  width: 100%;
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.grid-our-performance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 12rem;
  row-gap: 12rem;
  column-gap: 6rem;
}

.grid-our-performance img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.grid-our-performance h2 {
  margin-bottom: 3rem;
}

.grid-our-performance p {
  line-height: 3rem;
}

.pricing-plan-why {
  width: 25%;
}

.container-why {
  margin-left: 16rem;
  margin-right: 16rem;
  width: 80%;
  margin-bottom: 8rem;
}

.flexbox--gap-sm-why {
  gap: 6rem;
}

.wpperformancetest-values-img {
  width: 35rem !important;
  height: auto;
  margin-left: 50%;
}

.highlight-text {
  color: white;
}

.margin-right-sm {
  margin-right: 4rem;
}

.margin-right-med {
  margin-right: 8rem;
}

.margin-right-large {
  margin-right: 16rem;
}

.margin-left-sm {
  margin-left: 4rem;
}

.margin-left-med {
  margin-left: 8rem;
}

.margin-left-large {
  margin-left: 16rem;
}

.margin-top-sm {
  margin-top: 2rem;
}

.margin-top-med {
  margin-top: 4rem;
}

.margin-top-large {
  margin-top: 8rem;
}

.margin-bottom-sm {
  margin-bottom: 2rem;
}

.margin-bottom-med {
  margin-bottom: 4rem;
}

.margin-bottom-large {
  margin-bottom: 8rem;
}

.padding-top-sm {
  padding-top: 1rem;
}

.padding-bottom-med {
  padding-bottom: 6rem;
}

.padding-bottom-large {
  padding-bottom: 8rem;
}

@media only screen and (max-width: 1600px) {
  h1 {
    font-size: 5rem;
  }
  #domainname {
    width: 60rem;
  }
}

@media only screen and (max-width: 1500px) {
  h1 {
    font-size: 4rem;
  }
  .pricing-plan {
    width: 32%;
  }
}

@media only screen and (max-width: 1200px) {
  .flexbox-hero {
    gap: 2rem;
  }
  .flexbox-hero-why {
    margin-left: 4rem;
  }
  .flexbox-ourtech-heading {
    margin-left: 4rem;
  }
  .ourtech-grid {
    margin-left: 12rem;
    margin-right: 12rem;
  }
  .ourtech-grid p,
  .ourtech-grid ion-icon,
  .ourtech-grid img {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .our-performance-section {
    margin-left: 12rem;
    margin-right: 12rem;
  }
  .flexbox-discount {
    margin-left: 10%;
    margin-right: 10%;
  }
  .container {
    width: 90%;
  }
  .flexbox-features-header p {
    width: 90%;
  }
}

@media only screen and (max-width: 1100px) {
  html {
    font-size: 57.5%;
  }
  .ourtech-grid {
    margin-left: 10rem;
    margin-right: 10rem;
  }
  .our-performance-section {
    margin-left: 10rem;
    margin-right: 10rem;
  }
}

@media only screen and (max-width: 1024px) {
  .flexbox-latestoffer,
  .flexbox-latestoffer {
    margin-bottom: 3rem;
  }
  html {
    font-size: 57.5%;
  }
  .container {
    grid-template-columns: 1fr 1fr;
  }
  .page-title {
    width: 80%;
  }
  .pricing-plan {
    width: 30%;
  }
  .page-section {
    width: 90%;
  }
  #domainname {
    width: 50rem;
  }
  .grid-domain-features {
    grid-template-columns: 1fr 1fr;
  }
  .flexbox-contact {
    flex-direction: column;
  }
  .contact-left:not(:last-child)::after {
    border-right: none;
  }
  .btn-form-submit {
    width: 30%;
    margin-bottom: 4rem;
  }
  .button--get-started {
    margin: auto;
  }
  .container-why {
    margin: auto;
    margin-bottom: 6rem;
  }
  .flexbox-discount,
  .flexbox-features-header {
    margin-left: 5%;
    margin-right: 5%;
  }
}

@media only screen and (max-width: 900px) {
  .pricing-table {
    flex-direction: column;
    align-items: center;
  }
  .pricing-plan {
    width: 95%;
  }
  .footer-menu-group {
    flex-direction: column;
  }
  .footer-menu-group ul {
    margin-top: 4rem;
  }
  .grid-domain-features {
    width: 80%;
  }
  .ourtech-grid {
    margin-left: 8rem;
    margin-right: 8rem;
  }
  .our-performance-section {
    margin-left: 8rem;
    margin-right: 8rem;
  }
}

@media only screen and (max-width: 865px) {
  nav {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .menu-toggle-checkbox {
    display: none; /* Hide the checkbox */
  }
  .menu-toggle-label {
    cursor: pointer; /* Change cursor to pointer */
  }
  .menu-toggle-label:hover {
    opacity: 0.8; /* Reduce opacity on hover */
  }
  .menu-icon {
    color: white;
    fill: white;
    z-index: 20;
    width: 4rem;
    height: auto;
    margin-left: 3rem;
    margin-right: 0.5rem;
  }
  .mobile-menu-text {
    font-size: 2rem;
  }
  .flexbox-mobile-menu {
    display: inline-flex;
    align-items: center;
  }
  .overlay {
    display: none; /* Initially hide the overlay */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(
      0,
      0,
      0,
      0.8
    ); /* Semi-transparent black background */
    z-index: 30; /* Higher z-index to ensure it appears on top */
    overflow-y: auto; /* Allow vertical scrolling */
  }
  .menu-toggle-checkbox:checked + .menu-toggle-label + .overlay {
    display: block; /* Show the overlay when the checkbox is checked */
  }
  .close-button {
    position: absolute;
    top: 10rem;
    left: 1rem;
    cursor: pointer;
    color: white;
    display: flex; /* Align icon and text horizontally */
    align-items: center; /* Center vertically */
    font-size: 3rem;
  }
  .close-button .close-icon {
    width: 6rem;
    height: auto;
    margin-right: 0.5rem; /* Add some spacing between icon and text */
  }
  /* Hover effect for the close button */
  .close-button:hover .close-icon {
    opacity: 0.8;
  }
  .menu-items {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    position: absolute;
    top: 15rem;
    left: 1rem;
  }
  .menu-items li {
    margin-bottom: 2rem;
    font-size: 3rem;
  }
  .menu-items li a {
    display: block;
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  .menu-items li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .title-subtext {
    width: 90%;
  }
}

@media only screen and (max-width: 800px) {
  h1 {
    line-height: 3.5rem;
  }
  .page-overview {
    flex-direction: column;
  }
  #domainname {
    width: 40rem;
  }
  .flexbox-about {
    flex-direction: column;
  }
  .grid-container {
    grid-template-columns: 1fr;
  }
  .flexbox--gap-sm-why {
    gap: 4rem;
  }
  .flexbox-discount {
    margin-left: 2%;
    margin-right: 2%;
  }
  .box-outline {
    padding: 2rem 3rem;
  }
}

@media only screen and (max-width: 700px) {
  h1 {
    font-size: 3.5rem;
  }
  .flexbox-hero-content h1 {
    font-size: 4rem;
  }
  .grid-domain {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 1rem;
    justify-items: center;
  }
  #domainname {
    width: 60rem;
  }
  .grid-domain-item-1 {
    grid-row: 1;
    grid-column: 1 / -1;
  }
  .grid-domain-item-2,
  .grid-domain-item-3 {
    grid-row: 2;
  }
  .grid-domain-item-4,
  .grid-domain-item-5 {
    grid-row: 3;
  }
  .grid-domain-item-6 {
    grid-row: 4;
  }
  .grid-domain-item-4 {
    grid-column: 1;
  }
  .grid-domain-item-5 {
    grid-column: 2;
  }
  .grid-domain-features {
    grid-template-columns: 1fr;
  }
  .flexbox-hero-why {
    gap: 3rem;
  }
  .flexbox--gap-sm-why {
    gap: 2rem;
  }
  .ourtech-grid {
    margin-left: 6rem;
    margin-right: 6rem;
  }
  .flexbox-ourtech-heading {
    margin-left: 2rem;
  }
  .our-performance-section {
    margin-left: 6rem;
    margin-right: 6rem;
  }
  .grid-our-performance-section {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .grid-our-performance-section img {
    width: 30rem;
    height: auto;
    padding-bottom: 0;
  }
  .grid-our-performance {
    grid-template-columns: 1fr;
    row-gap: 4rem;
  }
  .grid-our-performance--item {
    grid-row: 3;
  }
}

@media only screen and (max-width: 620px) {
  .flexbox-latestoffer {
    width: 95%;
  }
  .flexbox-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0;
  }
  .flexbox-nav {
    justify-content: center;
    align-items: center;
  }
  .flexbox-logo {
    margin-bottom: 2rem;
  }
  .pricing-plan {
    width: 95%;
  }
  h1 {
    font-size: 3rem;
  }
  #domainname {
    width: 45rem;
  }
  .ourtech-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .litespeed-logo {
    margin-right: 0;
    width: 30rem;
  }
  .ourtech-grid p,
  .ourtech-grid ion-icon,
  .ourtech-grid img {
    padding-top: 0;
    padding-bottom: 0;
  }
  .ourtech-grid p:not(:first-child) {
    border-top: 0px !important;
  }
  .ourtech-logo {
    margin-right: 0;
    font-size: 15rem;
    margin-top: 6rem;
    margin-bottom: 3rem;
  }
  .flexbox-nav {
    margin: auto;
  }
  .ourtech-grid {
    margin-left: 2rem;
    margin-right: 2rem;
  }
  .our-performance-section {
    margin-left: 2rem;
    margin-right: 2rem;
  }
}

@media only screen and (max-width: 540px) {
  .container {
    grid-template-columns: 1fr;
  }
  .flexbox-hero-content h1 {
    font-size: 3rem;
  }
  h1 {
    font-size: 2.5rem;
  }
  #domainname {
    width: 35rem;
  }
}

@media only screen and (max-height: 600px) {
  .header {
    height: 150vh;
  }
}

@media only screen and (max-width: 600px) and (max-height: 500px) {
  .header {
    height: 150vh;
  }
}

@media only screen and (max-width: 500px) and (max-height: 500px) {
  .header {
    height: 170vh;
  }
}

@media screen and (max-width: 500px) {
  .displaynone {
    display: none;
  }
}

@media only screen and (max-height: 530px) {
  .header {
    height: 180vh;
  }
  .flexbox h1 {
    margin-top: 6rem;
  }
}

@media only screen and (max-height: 450px) {
  .header {
    height: 200vh;
  }
}

@media only screen and (max-height: 400px) {
  .header {
    height: 230vh;
  }
}

@media only screen and (min-width: 2000px) {
  html {
    font-size: 70%;
  }
}

@media only screen and (min-width: 2500px) {
  .pricing-plan {
    width: 17%;
  }
}
