/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

/* Reset and Base Styles */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}

html {
  font-size: 62.5%;
  /* font-family: "Montserrat", sans-serif; */
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  scroll-padding: 6rem;
}

body {
  animation: bodyAnimate 0.6s ease-in forwards;
}

body {
  font-family: "Poppins", sans-serif;
}

@keyframes bodyAnimate {
  from {
    opacity: 0%;
  }
  to {
    opacity: 100%;
  }
}

:root {
  --primary-color: #9156ee;
  --secondary-color: #a158eb;
  --special-color: rgb(235, 105, 242);
}

#backToTop {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
}

#backToTop i {
  font-size: 2.4rem;
  background-color: #212529dd;
  color: white;
  padding: 0.8rem 1rem;
  box-shadow: 0 0 15px #21252983;
  border-radius: 1rem;
  transition: 0.3s ease-in-out;
}

#backToTop i:hover {
  background-color: rgba(0, 0, 0, 0.922);
  transform: translateY(-1px);
}

#backToTop:focus {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.745);
  border-radius: 1rem;
}

@media screen and (max-width: 992px) {
  #backToTop {
    display: none;
    position: fixed;
    bottom: 2%;
    right: 2%;
    z-index: 99;
  }

  #backToTop i {
    font-size: 2rem;
    background-color: #212529dd;
    color: white;
    padding: 0.6rem 0.8rem;
    box-shadow: 0 0 10px #21252983;
    border-radius: 1rem;
    transition: 0.3s ease-in-out;
  }
}

/* ---------------------------------------------------------------------
Navbar Bootstrap 5 
--------------------------------------------------------------------- */

header {
  position: sticky;
  top: 0;
  z-index: 500;
}

.navbar-brand img {
  width: 4rem;
  height: 4rem;
  transform: translateY(-6px);
  border-radius: 5rem;
}

.navbar-brand {
  /* width: 4rem;
  height: 100%; */
  /* background-color: white; */
  padding-top: 0.5rem !important;
}

/* ---------------------------------------------------------------
 Hero Main Section 
--------------------------------------------------------------- */

/* -----------------------------------------------------------------------------------
SERVICE SECTION 
----------------------------------------------------------------------------------- */

#service {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.service-wrapper {
  font-family: "Poppins", sans-serif;
  background-color: aliceblue;
  width: 100%;
  margin: 1.2rem auto;
  background: linear-gradient(to top, white, rgba(27, 18, 205, 0.718));
}

.service-main {
  width: 100%;
  margin: auto;
  border-radius: 1rem;
  border-top-left-radius: 0rem;
  border-top-right-radius: 0rem;
  padding: 2rem 6rem;
  background-color: var(--background-primary);
  color: black;
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
}

.service-main-container {
  width: 100%;
  margin: 0 auto;
}

.service-main-container hr {
  width: 20rem;
  margin: auto;
  height: 0.3rem !important;
  background: linear-gradient(to right, gold, goldenrod, red);
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.601);
  opacity: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.service-main-container h3 {
  margin-top: 2rem;
}

.service-main-container > h3,
h4,
.title {
  font-family: "Poppins", sans-serif;
  font-weight: 600 !important;
  letter-spacing: 1px;
}

.service-main-container > h3,
.service-main-container > p {
  text-align: center;
}

.service-main-container .service-subhead {
  font-size: 1.8rem;
  padding: 0rem 10rem;
  font-weight: 500;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4rem;
}

.service {
  margin: 1rem;
  overflow: hidden;
  padding: 3.5rem 1.5rem;
  position: relative;
  text-align: center;
  background-color: #ffff6b0a;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.489);
  border: 0.5px solid transparent;
  border-image: linear-gradient(gold, red);
  border-image-slice: 1;
  border-radius: 0.2rem;
  /* flex: 1 1 33rem; */
  flex: 1 1 33rem;
  border: none;
  border-radius: 1rem;
}

.service:hover {
  background-color: rgba(0, 0, 0, 0.297);
  transform: translateY(-0.3rem);
  cursor: default;
}

.service::before {
  content: "";
  border-width: 2rem;
  border-style: solid;
  border-color: #222f3e #222f3e rgba(1, 1, 1, 0.4) rgba(0, 0, 0, 0.4);
  position: absolute;
  right: -4rem;
  top: -4rem;
  transition: right 0.3s ease-out, top 0.3s ease-out;
}

.service:hover:before {
  right: 0;
  top: 0;
}

.service > i {
  display: block;
  color: #ff5722;
  font-size: 4rem;
  margin-bottom: 0.9rem;
  transition: color 0.3s ease-out;
}

.service > .title {
  font-weight: 900;
  font-size: 1.8rem;
  line-height: 2rem;
  margin-top: 1.8rem;
  margin-bottom: 1.8rem;
  text-transform: capitalize;
  transition: color 0.3s ease-out;
}

.service > .description {
  font-size: 1.6rem;
  line-height: 2.45rem;
  margin: 0;
  transition: color 0.3s ease-out;
}

.service:hover > i,
.service:hover > .title,
.service:hover > .description {
  color: white;
}

.service-premium {
  transition: background 0.5s ease-in-out;
}

.service-premium > i {
  color: goldenrod;
  text-shadow: 0 0 2px grey;
}

.service-premium:hover {
  background: linear-gradient(
    to bottom,
    rgba(196, 143, 9, 0.933),
    rgba(215, 173, 65, 0.933)
  );
}

.learn {
  margin-top: 2rem;
  background-color: rgba(0, 0, 0, 0.44);
  padding: 0.75rem;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.397);
}

.learn {
  font-size: 1.6rem;
  font-weight: 100;
  color: white;
  font-weight: 500;
  border-radius: 1rem;
}

.service > a {
  text-decoration: none;
}

.learn:hover {
  color: black;
  background-color: aliceblue;
  transition: background-color 0.2s ease-in-out;
}

.learn:hover > a {
  color: black;
}

.service {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-main-container .fa-key {
  margin-right: 1.2rem;
  padding: 0rem;
  font-size: 2.6rem;
  transform: translateY(-12%);
}

.hero-text-span {
  line-height: 3.5rem;
}

.service > .description,
.title {
  text-align: center;
}

.fa-key {
  animation: keyAnimate 3.8s ease-in-out alternate infinite;
  color: goldenrod;
}

@keyframes keyAnimate {
  0% {
    transform: rotateX(900deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}

/* ----------------------------------------------------------------------------
Service extra card color modifications!
---------------------------------------------------------------------------- */

/* services background  */

.service:nth-child(1) {
  background: none;
  background: linear-gradient(
    to bottom,
    rgba(22, 167, 22, 0.967),
    rgba(137, 192, 26, 0.966)
  );
  color: white;
}

.service:nth-child(2) {
  background: none;
  background: linear-gradient(to top, rgba(255, 140, 0, 0.964), #ff5622f3);
  color: white;
}

.service:nth-child(3) {
  background: none;
  background: linear-gradient(to bottom, #c31b7df5, rgba(220, 69, 162, 0.945));
  color: white;
}

.service:nth-child(4) {
  background: none;
  background: linear-gradient(
    to bottom,
    rgba(69, 120, 215, 0.985),
    rgba(3, 200, 200, 0.973)
  );
  color: white;
}

.service-premium {
  background: none;
  background: linear-gradient(
    to top,
    rgba(255, 176, 4, 0.977),
    rgba(255, 176, 4, 0.977),
    rgb(225, 147, 2),
    rgba(210, 120, 3, 0.963),
    rgb(225, 147, 2),
    rgba(255, 176, 4, 0.977),
    rgba(255, 176, 4, 0.977)
  );
  color: white;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in;
}

.service > i {
  /* color: rgba(0, 0, 0, 0.648); */
  background-color: rgba(0, 0, 0, 0.473);
  color: white;
  width: fit-content;
  margin: auto;
  border-radius: 50rem;
  padding: 0.65rem;
}

.service:hover > i {
  background-color: rgba(0, 0, 0, 0.87);
  color: white;
  width: fit-content;
  margin: auto;
  border-radius: 50rem;
  padding: 0.65rem;
}

.service:hover {
  background: none;
  background-color: white;
  color: black;
  box-shadow: none;
}

.service:hover > .title,
.service:hover > .description {
  color: black;
}

/* ----------------------------------------------------------------------------
Service FINAL card color modifications!
---------------------------------------------------------------------------- */

/* services FINAL background  */

.service:nth-child(1) {
  background: none;
  background: linear-gradient(
    to top,
    rgba(22, 167, 22, 0.927),
    rgba(137, 192, 26, 0.893)
  );
  color: white;
}

.service:nth-child(2) {
  background: none;
  background: linear-gradient(
    to bottom,
    rgba(255, 140, 0, 0.858),
    hsla(14, 100%, 57%, 0.944)
  );
  color: white;
}

.service:nth-child(3) {
  background: none;
  background: linear-gradient(
    to top,
    hsla(325, 76%, 44%, 0.849),
    rgba(220, 69, 162, 0.945)
  );
  color: white;
}

.service:nth-child(4) {
  background: none;
  background: linear-gradient(
    to top,
    rgba(69, 120, 215, 0.927),
    rgba(3, 200, 200, 0.855)
  );
  color: white;
}

.service-premium {
  background: none;
  background: linear-gradient(
    to top,
    rgba(255, 176, 4, 0.951),
    rgba(255, 176, 4, 0.94),
    rgba(225, 147, 2, 0.955),
    rgba(210, 120, 3, 0.963),
    rgba(225, 147, 2, 0.958),
    rgba(255, 176, 4, 0.951),
    rgba(255, 176, 4, 0.949)
  );
  color: white;
  transition: background-color 0.3s ease-in-out, transform 0.3s ease-in;
}

.service {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.793);
}

.service > i {
  /* color: rgba(0, 0, 0, 0.648); */
  background-color: rgba(0, 0, 0, 0.473);
  color: white;
  width: fit-content;
  margin: auto;
  border-radius: 50rem;
  padding: 0.65rem;
}

.service:hover > i {
  background-color: rgba(0, 0, 0, 0.87);
  color: white;
  width: fit-content;
  margin: auto;
  border-radius: 50rem;
  padding: 0.65rem;
}

.service:hover {
  background: none;
  background-color: white;
  color: black;
  box-shadow: none;
}

.service:hover > .title,
.service:hover > .description {
  color: black;
}

/* -------------------------------------------------------------------------
About us section (why choose us?) 
------------------------------------------------------------------------- */
#about {
  margin-top: 4rem;
  min-height: 100vh;
  /* background-color: rgb(253, 251, 236); */
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  background-color: white;
  margin: 6rem 0rem;
}

/* #09b9aa */
.about-main {
  background: linear-gradient(
    20deg,
    transparent 0%,
    transparent,
    transparent 34.5%,
    goldenrod 34.5%,
    gold 40%,
    steelblue 40%,
    rgb(59, 174, 216),
    skyblue 57%,
    transparent 57%,
    transparent,
    transparent 100%
  );
}

#about li {
  list-style: none;
}

.about-main-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
  /* padding: 6rem 0rem; */
  padding: 1rem 0rem;
}

.about-main-right img {
  height: 100%;
  width: 100%;
}

.about-main-left {
  flex: 2 1 35rem;
}

.about-main-right {
  flex: 1 1 35rem;
  height: 60rem;
}

.about-main-left {
  background-color: rgb(253, 251, 236);
  color: black;
  padding: 4rem;
  border-radius: 2rem;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.19);
}

#about .about-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 3.5rem 0rem;
}

.about-list .about-list-img {
  padding: 1.8rem;
  border-radius: 5rem;
  margin-right: 0rem;
  transform: translateX(-30%);
}

.about-main-left h3 {
  text-transform: uppercase;
  color: rgb(234, 137, 3);
  font-weight: 600;
}

.about-main-left h2 {
  text-transform: capitalize;
}

.about-main-left p {
  font-size: 1.8rem;
  line-height: 1.35;
  margin: 2rem 0rem;
}

.about-main-left h4 {
  line-height: 1.35;
}

.about-main-left p span {
  color: rgb(234, 137, 3);
}

.about-list-img.img1 {
  background: linear-gradient(
    to top,
    rgba(22, 167, 22, 0.967),
    rgba(137, 192, 26, 0.966)
  );
  box-shadow: 0 0 6px rgba(22, 167, 22, 0.353);
}

.about-list-img.img2 {
  background: linear-gradient(to bottom, rgba(255, 140, 0, 0.964), #ff5622f3);
  box-shadow: 0 0 6px hsla(14, 100%, 57%, 0.353);
}

.about-list-img.img3 {
  background: linear-gradient(to top, #c31b7df5, rgba(220, 69, 162, 0.945));
  box-shadow: 0 0 6px hsla(325, 76%, 44%, 0.353);
}

.about-list li {
  background-color: rgba(0, 0, 0, 0.729);
  color: white;
  border-radius: 2rem;
  padding: 0.5rem 0.8rem 0.5rem 0.8rem;
  width: fit-content;
  margin-bottom: 1rem;
}

.about-list li.l1 {
  background: linear-gradient(
    to top,
    rgba(12, 142, 12, 0.967),
    rgba(137, 192, 26, 0.966)
  );

  box-shadow: 0 0 6px rgba(22, 167, 22, 0.353);
}

.about-list li.l2 {
  background: linear-gradient(to bottom, rgba(255, 140, 0, 0.964), #ff5622f3);
  box-shadow: 0 0 6px hsla(14, 100%, 57%, 0.353);
}

.about-list li.l3 {
  background: linear-gradient(to top, #c31b7df5, rgba(220, 69, 162, 0.945));
  box-shadow: 0 0 6px hsla(325, 76%, 44%, 0.353);
}

.about-main-left {
  background-color: white;
}

.about-main-left {
  transition: step-start;
}

.about-main-left:hover {
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.893),
    rgb(49, 49, 49),
    rgb(49, 49, 49)
  );
  color: white;
  cursor: pointer;
}

/* --------------------------------------------------------------------
Pricing Section 
-------------------------------------------------------------------- */

:root {
  --accent-color: var(--background-primary);
  --heading-font-family: "Poppins", sans-serif;
  --body-font-family: "Poppins", sans-serif;
}

.price-wrapper {
  font-family: "Poppins", sans-serif;
  width: 100%;
  margin: 0rem auto;
  font-size: 2rem;
}

.price-main-wrapper {
  min-width: 100%;
  margin: auto;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Poppins", sans-serif;
}

.price-main {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin: auto;
  margin: 1rem;
  margin-top: 0rem;
  margin-bottom: 1rem;
  /* padding: 2rem 1rem 2rem 1rem; */
  padding: 2rem 0rem 2rem 0rem;
}

.price-column {
  background-color: white;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.362);
  padding: 2rem;
  flex-grow: 1;
  flex-basis: 0;
  /* max-width: 39.5rem; */
  max-width: 45rem;
  border-radius: 0.8rem;
  transform: scale(0.98);
  transform: scale(1);
  /* margin: 0rem 1.5rem; */
  margin: 0rem 0.8rem;
  transition: 0.5s ease-in-out;
}

.price-column.popular {
  background: linear-gradient(
    45deg,
    #09b9aa 0%,
    cornflowerblue 25%,
    skyblue 50%,
    steelblue 75%,
    #09b9aa 100%
  );

  color: white;
  box-shadow: 0 0px 30px rgba(52, 31, 97, 0.592);
  margin-top: -3rem;
  padding-top: 5rem;
  margin-bottom: -3rem;
  padding-bottom: 5rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.price-column.premium-price {
  /* background: linear-gradient(
    315deg,
    transparent 0%,
    transparent 30%,
    transparent 70%,
    rgba(255, 217, 0, 0.612) 70%,
    transparent,
    rgba(255, 217, 0, 0.612) 80%,
    transparent 80%,
    transparent 100%
  ); */

  /* background: linear-gradient(
    45deg,
    transparent 0%,
    transparent 90%,
    rgb(255, 228, 76) 90%,
    rgb(255, 243, 174),
    transparent,
    transparent 100%
  ); */

  /* background: linear-gradient(
    45deg,
    white 0%,
    white 90%,
    rgb(234, 199, 0) 90%,
    gold 93%,
    white 93%,
    white 100%
  ); */

  /* background: linear-gradient(
    45deg,
    white 0%,
    white 90%,
    goldenrod 90%,
    gold 93%,
    white 93%,
    white 100%
  ); */

  /* background: linear-gradient(
    45deg,
    white 0%,
    white 90%,
    rgb(234, 199, 0) 90%,
    gold 93%,
    gold 93%,
    white 100%
  ); */

  /* background: linear-gradient(
    45deg,
    white 0%,
    white 90%,
    rgb(229, 176, 42) 90%,
    gold 93%,
    gold 93%,
    white 100%
  ); */

  /* background: linear-gradient(
    45deg,
    white 0%,
    white 90%,
    goldenrod 90%,
    gold 93%,
    white 93%,
    white 100%
  ); */

  background: linear-gradient(
    45deg,
    white 0%,
    white 93%,
    goldenrod 93%,
    gold 96%,
    white 96%,
    white 100%
  );

  /* background: linear-gradient(45deg, white 0%, white 90%, gold 90%, white 100%); */
}

.premium-price .premium-price-top {
  display: none;
}

.price-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
}

.price {
  font-size: 4rem;
  display: flex;
}

.dollar-sign {
  font-size: 2.2rem;
  margin-top: 0.3rem;
  margin-right: 0.2rem;
}

.per-month {
  font-size: 1.55rem;
  align-self: flex-end;
  margin-bottom: 1.3rem;
  margin-left: 0.1rem;
  text-transform: uppercase;
}

.plan-name {
  text-transform: uppercase;
  font-size: 1.6rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.divider {
  height: 0.1rem;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.237);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.popular .divider {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  box-shadow: 0 1px 1px rgba(255, 255, 255, 0.237);
}

.feature {
  display: flex;
  align-items: center;
  margin: 0.8rem;
  font-size: 1.45rem;
  color: white;
  border-radius: 1rem;
  padding: 0.5rem;
  transition: 0.1s background-color ease-in-out;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.59);
  background-color: rgba(33, 37, 41, 0.916);
  color: white;
}

.feature:hover {
  background-color: white;
  color: black;
  cursor: pointer;
  transform: translateY(-2%);
}

.feature img {
  height: 1.1em;
  width: 1.1em;
  margin-right: 0.5rem;
}

.inactive img {
  background-color: rgba(220, 20, 60, 0.638);
}

.feature.inactive {
  opacity: 45%;
  text-decoration-line: line-through;
  background-color: rgba(0, 0, 0, 0.084);
  background-color: transparent;
  color: black;
  box-shadow: none;
  cursor: default;
}

.popular .feature.inactive {
  background-color: rgba(0, 0, 0, 0.084);
  background-color: transparent;
  color: white;
}

.popular .feature.inactive img {
  background-color: rgba(220, 20, 60, 0.638);
}

.most-popular {
  position: absolute;
  top: 0.5%;
  left: 1%;
  right: 1%;
  text-align: center;
  border-radius: 0.5rem;
  /* background-color: #002033f7; */
  padding: 0.4rem;
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  z-index: 5;
}

.basic-price {
  margin-top: 1rem;
}

.premium-price {
  color: #212529;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, rgb(255, 255, 255), rgb(255, 255, 255)),
    url("https://images.unsplash.com/photo-1545873509-33e944ca7655?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=873&q=80");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pre-feature {
  background: linear-gradient(to right, rgba(0, 0, 0, 0.871), transparent),
    url("https://images.unsplash.com/photo-1545873509-33e944ca7655?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=873&q=80");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.pre-feature:hover {
  background: none;
  background-color: white;
  color: black;
}

.popular .feature {
  text-shadow: 0 0 0.5px black;
  margin-bottom: 0.92rem;
}

.premium-price-top {
  position: absolute;
  top: 0.5%;
  left: 1%;
  right: 1%;
  text-align: center;
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.8);
  background-color: rgb(177, 128, 6);
  text-shadow: 0.5px 0.5px 0.5px black;
  color: white;
  padding: 0.2rem;
  font-size: 1.5rem;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}

.premium-price .price-header {
  margin-top: 1rem;
}

.cta {
  font-size: 1.6rem;
  border: none;
  color: white;
  width: 100%;
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  border-radius: 0.4rem;
  font-weight: bold;
  transition: 100ms;
  transform: scale(1);
  /* margin-top: 2rem; */
  background-color: rgba(33, 37, 41, 0.916);
  color: white;
  transition: 0.3s;
}

.price-column.popular .cta {
  background-color: white;
  color: var(--accent-color);
}

.cta:hover,
.cta:focus {
  transform: scale(1.1);
}

@media screen and (max-width: 1020px) {
  .price-main-wrapper,
  .price-main,
  .price-column {
    width: 100%;
    margin: none;
  }

  .price-column {
    min-width: 10rem;
  }
}

@media screen and (max-width: 992px) {
  .price-main-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .price-main {
    padding-top: 1rem;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    min-height: 300vh;
    gap: 5rem;
  }

  .price-column {
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 60rem;
    width: 95%;
  }

  .price-header .price {
    font-size: 5rem;
  }

  .price-img {
    height: 15rem;
    width: 30rem;
  }

  .feature {
    width: 100%;
    margin: 0.7rem auto;
  }
}

.pricing-heading h2 i {
  background: linear-gradient(to bottom, transparent, gold, goldenrod);
  border-radius: 5rem;
  box-shadow: 0 0 5px rgba(255, 217, 0, 0.651);
}

.pricing-heading h3 {
  padding: 1rem 2rem;
}

.pricing-heading hr {
  width: 20rem;
  margin: auto;
  height: 0.3rem !important;
  background: linear-gradient(to right, gold, goldenrod, red);
  margin-top: 1.5rem;
  margin-bottom: 5rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.601);
  opacity: 100%;
}

#pricing {
  padding-top: 2rem;
}

#pricing .divider {
  margin-top: 4rem;
  margin-bottom: 2rem;
}

#pricing .cta {
  /* margin-top: 3rem; */
  /* margin-top: 5.9rem; */
  margin-top: 7.9rem;
}

#pricing .popular .cta {
  margin-top: 4.7rem;
}

#pricing .premium-price .cta {
  margin-top: 2rem;
}

.price-main {
  margin: auto;
}

.popular .feature.inactive {
  color: white;
  opacity: 70%;
}

#pricing .popular button {
  margin-top: 4rem;
}

#pricing .feature {
  max-width: 36rem;
  margin: 1rem auto;
}

#pricing .popular .feature {
  max-width: 36rem;
  margin: 1rem auto;
}

.cta {
  border-radius: 5rem;
}

.price-column button {
  /* width: 95%;
  margin-left: 1rem; */
  width: 100%;
}

.cta:hover {
  background-color: black;
}

.popular .cta:hover {
  background-color: rgb(255, 255, 246);
}

.cta:focus {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.578);
}

.popular .cta:focus {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.578);
}

@media screen and (max-width: 992px) {
  .price-main {
    /* min-height: 265vh; */
    min-height: 480vh;
  }
}

@media screen and (max-width: 500px) {
  .price-main {
    min-height: 480vh;
  }
}

@media screen and (max-width: 450px) {
  .price-main {
    min-height: 360vh;
  }
}

@media screen and (max-width: 430px) {
  .price-main {
    min-height: 380vh;
  }
}

@media screen and (max-width: 415px) {
  .price-main {
    min-height: 415vh;
  }
}

@media screen and (max-width: 415px) {
  .price-main {
    min-height: 415vh;
  }
}

@media screen and (max-width: 395px) {
  .price-main {
    min-height: 525vh;
  }
}

@media screen and (max-width: 365px) {
  .price-main {
    min-height: 550vh;
  }
}

@media screen and (max-width: 325px) {
  .price-main {
    min-height: 575vh;
  }
}

@media screen and (max-width: 300px) {
  .price-main {
    min-height: 640vh;
  }
}

/* @media screen and (max-width: 385px) {
  .price-main {
    min-height: 530vh;
  }
} */

/* Pricing new updated feature list modifications! */
.inner-inactive {
  text-decoration: line-through;
  /* color: rgb(252, 149, 149); */
  /* color: rgb(255, 132, 132); */
  /* color: rgb(255, 146, 146); */
  color: rgb(252, 167, 181);
}

.inner-active {
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.699);
  color: white;
  opacity: 100%;
  padding: 0.2rem 0.4rem;
  border-radius: 0.5rem;
  text-shadow: 1px 1px 1px black;
}

.inner-active:hover {
  color: rgb(67, 251, 67);
  cursor: hover;
}

.inner-popular {
  color: rgb(62, 249, 62);
}

.inner-premium {
  color: rgb(247, 251, 23);
}

.price-column .divider {
  display: none;
}

.feature-wrapper {
  margin-top: 3.5rem;
}

.feature:hover > .inner-popular {
  color: rgb(28, 128, 5);
  font-weight: 600;
}

.feature:hover > .inner-premium {
  color: goldenrod;
  font-weight: 600;
}

/* --------------------------------------------------------------------------------
Testimonials (client reviews) section!
-------------------------------------------------------------------------------- */
/* --------------------------------------------
Testimonials Section 
-------------------------------------------- */

:root {
  --testi-card-clr: white;
  --testi-body-clr: rgb(105, 0, 140);
  --testi-primary-clr: white;
  --testi-secondary-clr: rgb(255, 208, 0);
  --testi-heading-clr: black;
  --testi-text-clr: #28292b;
}

.testi-main {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.testi-wrapper {
  font-family: "Poppins", sans-serif;
  background-color: aliceblue;
  width: 95%;
  margin: 1.2rem auto;
  background: linear-gradient(to bottom, white, rgba(27, 18, 205, 0.718));
}

.testi-main {
  width: 98%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  margin-top: 1.5rem;
  background-image: linear-gradient(
    315deg,
    hsl(174deg 89% 41%) 0%,
    hsl(176deg 83% 40%) 4%,
    hsl(179deg 78% 40%) 9%,
    hsl(182deg 75% 40%) 13%,
    hsl(185deg 72% 41%) 17%,
    hsl(189deg 70% 41%) 22%,
    hsl(193deg 67% 42%) 26%,
    hsl(197deg 66% 43%) 30%,
    hsl(200deg 64% 43%) 35%,
    transparent 35%,
    transparent 39%,
    hsl(200deg 64% 43%) 39%,
    hsl(200deg 64% 43%) 43%,
    hsl(200deg 64% 43%) 48%,
    hsl(200deg 64% 43%) 52%,
    hsl(200deg 64% 43%) 57%,
    hsl(200deg 64% 43%) 61%,
    hsl(200deg 64% 43%) 65%,
    hsl(198deg 67% 44%) 70%,
    hsl(195deg 70% 46%) 74%,
    hsl(194deg 74% 47%) 78%,
    hsl(192deg 77% 48%) 83%,
    hsl(191deg 81% 50%) 87%,
    hsl(190deg 86% 51%) 91%,
    hsl(189deg 93% 51%) 96%,
    hsl(188deg 100% 50%) 100%
  );
}

.testi-main-container {
  width: 100%;
  padding: 0rem 6.5%;
  background: url("./backStars.png");
  background-size: contain;
}

.testi-header {
  max-width: 70rem;
  text-align: center;
  margin: 3rem auto 4rem;
}

.testi-header h2 {
  position: relative;
  font-size: 3.6rem;
  color: var(--testi-primary-clr);
}

.testi-container {
  position: relative;
}

.testi-container .testi-card {
  padding: 2rem;
}

.testi-container .testi-card:hover {
  cursor: grab;
}

.testi-container .testi-card-body {
  /* background-color: var(--testi-card-clr); */
  /* box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.234); */
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.377);
  padding: 2rem;
  /* border: 3.5px solid transparent; */
  /* border-image: linear-gradient(gold, red); */
  /* border-image: linear-gradient(transparent, rgba(255, 0, 0, 0.608)); */
  /* border-image-slice: 1; */
  /* border: 0.4rem solid lightslategray; */
  text-shadow: 0px 0px 0.5px rgba(0, 0, 0, 0.56);
  border-radius: 1rem;
}

.testi-card-body .quote {
  display: flex;
  align-items: center;
}

.testi-card-body .quote i {
  font-size: 3.5rem;
  color: var(--testi-heading-clr);
  margin-right: 2rem;
}

.testi-card-body .quote h3 {
  color: var(--testi-heading-clr);
  font-size: 2.8rem;
}

.testi-card-body p {
  margin: 1rem 0rem 1.5rem;
  font-size: 1.7rem;
  line-height: 1.5;
  color: var(--testi-text-clr);
}

.testi-card-body .ratings {
  margin-top: 2rem;
}

.testi-card-body .ratings i {
  font-size: 1.7rem;
  color: var(--testi-secondary-clr);
  cursor: pointer;
}

.testi-card .profile {
  display: flex;
  align-items: center;
  margin-top: 2.5rem;
}

.profile .profile-img {
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 1.5rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.414);
}

.profile .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.profile .profile-desc {
  display: flex;
  flex-direction: column;
}

.profile-desc span:nth-child(1) {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--testi-secondary-clr);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.593);
}

.profile-desc span:nth-child(2) {
  font-size: 1.5rem;
  color: whitesmoke;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.593);
}

.owl-nav {
  position: absolute;
  right: 20px;
  bottom: 10px;
}

.owl-nav button {
  border-radius: 50% !important;
}

.owl-nav .owl-prev i,
.owl-nav .owl-next i {
  padding: 1rem !important;
  border-radius: 50% !important;
  font-size: 1.8rem !important;
  background-color: var(--testi-secondary-clr) !important;
  color: var(--testi-primary-clr) !important;
  text-shadow: 0 0 30px black !important;
  cursor: pointer;
  transition: 0.4s !important;
}

.owl-nav .owl-prev i:hover,
.owl-nav .owl-next i:hover {
  background-color: var(--testi-primary-clr) !important;
  color: var(--testi-secondary-clr) !important;
}

.owl-dots {
  margin-top: 1.5rem !important;
}

.owl-dots .owl-dot span {
  background-color: var(--testi-primary-clr) !important;
  padding: 0.6rem !important;
}

.owl-dot.active span {
  background-color: var(--testi-secondary-clr) !important;
}

.testi-container {
  margin-bottom: 2rem;
}

.testi-wrapper {
  background: none;
  width: 100%;
}

.testi-wrapper {
  width: 100%;
  margin-top: 0rem;
  background: none;
}

.testi-main-container {
  padding: 0;
  padding: 0rem 8rem;
}

@media (max-width: 876px) {
  .testi-main-container {
    padding: 0;
    padding: 0rem 2rem;
  }
}

.testi-main {
  width: 100%;
}

#testi {
  min-height: 95vh;
}

.testi-main-container {
  min-height: 95vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testi-header {
  margin-top: 5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.593);
}

.testi-card-body {
  background: none;
  background-color: white;
}

/* -------------------------------------------------------
 new final TESTIMONIALS modifications 
------------------------------------------------------- */

#testi {
  margin-top: 8rem;
}

.testi-main {
  box-shadow: -1px -1px 10px rgba(0, 0, 0, 0.286);
}

.testi-main-container {
  margin-top: 5rem;
}

.testi-header {
  margin-bottom: 5rem;
}

.testi-wrapper hr {
  margin-bottom: 2rem;
}

.testi-main {
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}

@media screen and (max-width: 992px) {
  .testi-main {
    /* border-radius: 10rem; */
    /* border-radius: 15rem; */
    border-top-right-radius: 1rem;
    border-top-left-radius: 1rem;
  }
}

/* ---------------------------------------------
FAQ Section - Frequently Asked Questions
--------------------------------------------- */

.faq-wrapper {
  font-family: "Poppins", sans-serif;
  background-color: white;
  width: 100%;
  margin: 1.2rem auto;
  /* background: linear-gradient(white, rgba(27, 18, 205, 0.718)); */
  background: linear-gradient(to top, white, rgba(27, 18, 205, 0.718));
}

.faq-main {
  width: 100%;
  margin: auto;
  border-radius: 1rem;
  padding: 2rem 6rem;
  color: black;
  min-height: 100vh;
}

.faq-main-container {
  width: 100%;
  margin: auto auto;
  font-family: "Poppins", sans-serif;
}

.faq-wrapper {
  width: 100%;
  margin-top: 0rem;
  background: none;
}

.faq-heading {
  width: fit-content;
  margin: auto;
  text-align: center;
  padding: 4rem 4rem 0rem 4rem;
  border-radius: 0.5rem;
  margin-bottom: 0;
}

.faq-heading h2 {
  color: rgba(31, 31, 31, 0.968);
  font-weight: 600;
  padding: 1.5rem 2.5rem 0rem 2.5rem;
  border-radius: 0.5rem;
  font-size: 3rem;
}

.faq-heading hr {
  width: 15rem;
  margin: auto;
  height: 0.3rem !important;
  background: linear-gradient(to right, gold, goldenrod, red);
  margin-top: 3rem;
  margin-bottom: 0.5rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.601);
  opacity: 100%;
}

.accordion {
  max-width: 210rem;
  margin: 4rem auto 6rem auto;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 2rem;
}

.accordion .item-faq {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.311);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  background-color: rgb(255, 253, 251);
  color: black;
  transition: background-color 0.3s ease-in-out;
}

.accordion .item-faq:hover {
  background-color: whitesmoke;
  color: black;
}

.accordion .item-faq:hover {
  cursor: pointer;
}

.accordion .item-faq h2 {
  font-size: 1.8rem;
}

.accordion .item-faq .number {
  font-size: 2.4rem;
  margin-bottom: 0rem;
  /* color: goldenrod; */
  color: #09b9aa;
  transform: rotateZ(90deg);
}

.accordion .icon-ion {
  width: 2.4rem;
  height: 2.4rem;
  color: goldenrod;
  /* color: #09b9aa; */
}

.active-bg {
  background-color: white !important;
  color: black !important;
}

.active-bg-icon {
  text-shadow: 0 0 10px rgba(218, 165, 32, 0.441);
  animation: activeIconAnimate 1s ease-in-out forwards;
}

@keyframes activeIconAnimate {
  from {
    transform: rotateZ(90deg);
  }
  to {
    transform: rotateZ(360deg);
  }
}

.hidden-box {
  grid-column: 2/3;
  display: none;
}

.hidden-box p {
  line-height: 1.2;
  margin-bottom: 1.8rem;
  font-size: 1.65rem;
  letter-spacing: 0.3px;
  word-spacing: 0.2rem;
}

.hidden-box ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hidden-box ul li {
  margin-left: 1.4rem;
  line-height: 0.5;
  font-size: 1.65rem;
  letter-spacing: 0.3px;
  word-spacing: 0.2rem;
  list-style: circle;
}

.active .hidden-box {
  display: block;
}

.faq-wrapper .active {
  position: relative;
}

.faq-wrapper .active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  /* border-top: 4px solid goldenrod; */
  border-top: 4px solid #09b9aa;
  animation: borderline 1s linear forwards;
}

@keyframes borderline {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

/* ----------------------------------------------
Contact Section - Modern Desgin! 
---------------------------------------------- */
#contact,
.contact-wrapper,
.contact-wrapper > * {
  font-family: "Poppins", sans-serif;
}

.contact-wrapper {
  min-height: 100vh;

  /* background: linear-gradient(
    to right,
    #6e44b8 0%,
    #6e44b8 5%,
    rgb(178, 105, 242) 5%,
    var(--primary-color) 10%,
    #6e44b8 20%,
    #6e44b8 25%,
    var(--primary-color) 25%,
    rgb(178, 105, 242) 30%,
    30%,
    white 30%,
    white 100%
  ); */

  background: linear-gradient(
    to right,
    #0bc4b2 0%,
    #0bc4b2 5%,
    #2785b4 5%,
    #04baa8 10%,
    #2785b4 20%,
    #2785b4 25%,
    #04baa8 25%,
    #2785b4 30%,
    white 30%,
    white 100%
  );

  border-radius: 6rem;
  border-bottom-left-radius: 0rem;
  border-bottom-right-radius: 0rem;
}

.contact-main {
  position: relative;
  width: 100%;
  padding: 3rem 9rem;
}

.contact-main .contact-main-title {
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-main .contact-main-title h2 {
  font-size: 3.6rem;
  color: black;
  font-weight: 500;
}

.form {
  grid-area: form;
  text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.138);
}

.info {
  grid-area: info;
}

.map {
  grid-area: map;
}

.contact {
  padding: 4rem;
  background-color: white;
  box-shadow: 0 5px 35px rgba(0, 0, 0, 0.15);
  border-radius: 1rem;
}

.box {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 5fr 4fr;

  grid-template-areas:
    "form info"
    "form map";

  grid-gap: 2rem;
  margin-top: 2rem;
}

.contact h3 {
  color: #0e3959;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.formBox {
  position: relative;
  width: 100%;
}

.formBox .row50 {
  display: flex;
  gap: 2rem;
}

.inputBox {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  width: 50%;
}

.inputBox input,
.inputBox textarea {
  border-radius: 0.5rem;
}

.formBox .row100 .inputBox {
  width: 100%;
}

.inputBox span {
  /* color: var(--primary-color); */
  color: rgb(7, 91, 160);
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
  font-size: 1.8rem;
}

.inputBox input {
  padding: 1rem;
  font-size: 1.6rem;
  outline: none;
  border: 1px solid #333;
}

.inputBox textarea {
  padding: 1rem;
  font-size: 1.6rem;
  outline: none;
  border: 1px solid #333;
  resize: none;
  min-height: 22rem;
  margin-bottom: 1rem;
}

.inputBox input[type="submit"] {
  background: linear-gradient(to bottom, #ff5a28ca, #ff5c2bf6);
  color: white;
  border: none;
  font-size: 1.6em;
  max-width: 12rem;
  font-weight: 500;
  cursor: pointer;
  padding: 1.4rem 1.5rem;
  transition: 0.5s ease-in-out;
}

.inputBox input[type="submit"]:hover {
  background: linear-gradient(to bottom, #ff5a28e4, #ff5d2bff);
}

.inputBox input[type="submit"]:focus {
  border: 2px solid rgba(128, 128, 128, 0.485);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.538);
}

.inputBox ::placeholder {
  color: #999;
}

/* info */
.info {
  /* background: linear-gradient(
    to top left,
    #0bc4b2 0%,
    #0bc4b2 15%,
    #2785b4 35%,
    #04baa8 25%,
    #2785b4 50%,
    #2785b4 75%,
    #04baa8 85%,
    #0bc4b2 100%
  ); */

  /* background: linear-gradient(
    to top left,
    #09b9aa 0%,
    rgb(24, 129, 167) 25%,
    steelblue 50%,
    rgb(24, 129, 167) 75%,
    #09b9aa 100%
  ); */

  /* background: linear-gradient(
    to top left,
    #09b9aa 0%,
    #09b9aa,
    rgb(24, 129, 167) 25%,
    steelblue 50%,
    rgb(24, 129, 167) 75%,
    #09b9aa,
    #09b9aa 100%
  ); */

  background: linear-gradient(
    to top left,
    #09b9aa 0%,
    #09b9aa,
    rgb(24, 129, 167) 25%,
    rgb(24, 129, 167) 50%,
    rgb(24, 129, 167) 75%,
    #09b9aa,
    #09b9aa 100%
  );

  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.452);
}

.info .infoBox {
  margin-top: 2rem;
  margin-top: auto;
}

.info h3 {
  color: #fff;
  font-size: 2rem;
}

.info .infoBox div {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.info .infoBox div span {
  min-width: 4rem;
  height: 4rem;
  color: black;
  background: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  border-radius: 50%;
  margin-right: 1.5rem;
}

.info .infoBox div p {
  color: whitesmoke;
  font-size: 1.6rem;
}

.info .infoBox div a {
  color: whitesmoke;
  background: none;
  text-decoration: none;
  font-size: 1.6rem;
}

.info .infoBox div a:hover {
  /* color: white; */
  color: gold;
}

.info-p {
  margin-bottom: none;
  margin-top: 2rem;
  font-size: 1.6rem;
}

.map {
  padding: 0;
}

.map iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {
  .box {
    grid-template-columns: 1fr;
    grid-template-rows: 2fr 1fr 1fr;

    grid-template-areas:
      "form"
      "info"
      "map";

    grid-gap: 2rem;
    margin-top: 2rem;
  }

  .contact {
    padding: 2rem;
  }

  .formBox .row50 {
    flex-direction: column;
  }

  .inputBox {
    width: 100%;
  }

  .contact-wrapper {
    background: none;
    /* background-color: var(--primary-color); */
    /* background: linear-gradient(
      to right,
      #0bc4b2,
      #2785b4,
      #2785b4,
      #2785b4,
      #04baa8
    ); */

    background: linear-gradient(
      to top right,
      #0bc4b2,
      #2785b4,
      #2785b4,
      #2785b4,
      #04baa8
    );
  }

  .contact-main .contact-main-title h2 {
    color: whitesmoke;
  }

  .contact-main {
    padding: 4rem;
  }
}

@media (max-width: 576px) {
  .contact-main {
    padding: 3rem;
  }
}

/* ---------------------------------------------------
Footer Section 
-----------------------------------------------------*/
.footer-logo img {
  height: 2.8rem;
  border-radius: 2rem;
  display: inline;
  margin-bottom: 0.8rem;
}

.footer-logo h2 {
  display: inline;
}

footer {
  padding: 8rem 13% 7rem;
  font-family: "Poppins", sans-serif;
}

.footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, auto));
  gap: 3.5rem;
  background: #212529;
}

.footer-content h2 {
  font-size: 2rem;
  color: white;
}

.footer-content h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.footer-content li {
  margin-bottom: 1.6rem;
  line-height: 0.5;
  font-size: 1.6rem;
}

.footer-content li a {
  display: block;
  color: #d6d6d6;
  font-size: 1.55rem;
  font-weight: 400;
  transition: all 0.4s ease;
  text-decoration: none;
}

.footer-content li a:hover {
  text-decoration: underline;
}

.footer-content p {
  color: #d6d6d6;
  font-size: 1.6rem;
  line-height: 3rem;
  margin: 2rem 0;
}

.footer-location span,
.footer-location-p {
  display: inline;
}

.footer-location span {
  color: whitesmoke;
  font-size: 1.4rem;
  margin-right: 0.2rem;
}

.footer-location h4 {
  margin-bottom: 2rem;
}

.footer-links h4 {
  margin-bottom: 2rem;
}

footer .icons a {
  display: inline-block;
  font-size: 2.2rem;
  color: #d6d6d6;
  margin-right: 1.7rem;
  transition: all 0.4s ease;
}

footer .icons a:hover {
  color: #fff;
  transform: translateY(-0.5rem);
}

footer form {
  display: flex;
  flex-wrap: wrap;
  padding-right: 2rem;
}

footer form input {
  flex: 4 1 1rem;
  padding: 0.5rem 1.5rem;
  font-size: 1.4rem;
}

footer form .btn {
  flex: 1 1 1rem;
}

footer .quick-connect-placeholder::placeholder {
  font-size: 1.4rem;
  padding: 0.2rem;
}

footer .quick-connect .btn {
  font-size: 1.4rem;
  /* background: linear-gradient(to right, rgb(22, 194, 22), rgb(6, 162, 6)); */
  background: linear-gradient(to bottom, rgb(22, 194, 22), rgb(6, 162, 6));
}

footer .quick-connect .btn:hover {
  /* background: linear-gradient(to bottom, #ff5a28e5, #ff5d2b); */
  background: linear-gradient(to bottom, rgb(18, 192, 18), rgb(5, 150, 5));
}

footer .quick-connect .btn:focus {
  border: 2px solid rgba(128, 128, 128, 0.485);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.538);
}

@media (max-width: 1690px) {
  footer {
    padding: 5rem 5% 4rem;
  }
}

@media (max-width: 1120px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, auto));
    gap: 2rem;
  }
}

@media (max-width: 700px) {
  .footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, auto));
    gap: 2.5rem;
  }

  footer form {
    flex-direction: column;
  }

  footer form input {
    width: 100%;
  }

  footer form .btn {
    width: 100%;
  }
}

/* ---------------------------------------------------------------------------------
final modifications and responsiveness for full website!
--------------------------------------------------------------------------------- */
#about h2 {
  font-size: 3rem;
}

#pricing h2 {
  font-size: 3rem;
}

#pricing .pricing-heading h3 {
  font-size: 1.6rem !important;
}

#testi .testi-header h2 {
  font-size: 3.4rem;
  font-weight: 600;
}

#contact .contact-main-title h2 {
  font-size: 3rem;
  font-weight: 600;
}

.about-main-left {
  border-radius: 1rem;
}

.faq-heading {
  padding-left: 0rem;
  padding-right: 0rem;
}

.faq-heading h2 {
  padding-left: 0rem;
  padding-right: 0rem;
}

/* Service mobile reponsive font and more.. */

@media screen and (max-width: 992px) {
  .main-hero h1 {
    font-size: 2.4rem;
  }

  .main-hero p {
    font-size: 1.6rem;
  }

  .main-hero p span {
    font-size: 1.8rem;
  }

  .main-hero button {
    padding: 0.8rem 1rem;
    font-size: 1.6rem;
  }

  p.service-subhead {
    padding: 0rem 0.5rem !important;
    font-size: 1.6rem !important;
  }

  .faq-main {
    padding: 2rem 2rem;
  }

  #contact .info {
    /* background: none; */

    /* background: linear-gradient(
      to top left,
      #6e44b8 0%,
      #6e44b8 15%,
      rgb(178, 105, 242) 35%,
      var(--primary-color) 25%,
      #6e44b8 50%,
      #6e44b8 75%,
      var(--primary-color) 85%,
      #6e44b8 100%
    ); */

    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.452);
  }

  .contact-wrapper {
    border-radius: 0rem;
  }

  .testi-main {
    border-radius: 0rem;
  }
}

/* Overflow content issue in mobile screens  */
@media screen and (max-width: 800px) {
  html,
  body {
    overflow-x: hidden;
  }
}

/* 
new changes made in GitHub mobile app 
*/
@media screen and (max-width: 992px) {
  #service {
    margin-top: -4.8rem;
  }
}

@media screen and (max-width: 450px) {
  .main-bg-wave {
    min-height: 10vh;
    background: url("./heroWave14.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  #service {
    margin-top: 2rem;
  }
}

/* Navbar Stick top CSS for JavaScript code */
.sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* Adjust z-index as needed */
}

/* CONTACT US ( Content Cutting of at right FIX! ) */
@media (max-width: 992px) {
  .box {
    display: flex;
    flex-direction: column;
  }

  .map iframe {
    min-height: 40rem;
  }
}

/* ---------------------------------------------------------------------
ABSOLUTE FINAL STYLINGS AND CHANGES FOR - PRICING SECTION 
--------------------------------------------------------------------- */

.testi-container .testi-card-body {
  min-height: 27rem;
}

@media (max-width: 1400px) {
  .testi-container .testi-card-body {
    min-height: 29rem;
  }
}

@media (max-width: 1250px) {
  .testi-container .testi-card-body {
    min-height: 30rem;
  }
}

@media (max-width: 1150px) {
  .testi-container .testi-card-body {
    min-height: 32rem;
  }
}

@media (max-width: 992px) {
  .testi-container .testi-card-body {
    min-height: fit-content;
  }
}

/* ----------------------------------------------------------------------------
NEW Landing page changes for whole website 
---------------------------------------------------------------------------- */

/* ---------------------------------------------------------------
 NEW Hero Main Section 
--------------------------------------------------------------- */

main {
  background: url("./homePageNew/HomePageWithBg6.jpg");
  background-position: center 70%;
  background-repeat: no-repeat;
  background-size: cover;
  max-height: fit-content;
  min-height: 100vh;
}

.main-hero-wrapper {
  background: url("./backStars.png");
  background-size: contain;
  background-position: right;
}

/* .main-bg-wave {
  min-height: 45vh;
  background: url("./heroWave14.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
} */

.main-hero {
  /* max-height: 93.5vh; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5rem 0;
  /* background: linear-gradient(
    to right,
    rgb(0, 207, 179, 0.2),
    rgb(2, 206, 228, 0.2),
    rgba(100, 148, 237, 0.195)
  ); */
}

@keyframes heroBackAnimate {
  0%,
  100% {
    padding: 10rem;
  }
  50% {
    padding: 0rem;
  }
}

.main-hero-left p span {
  /* color: gold; */
  color: rgb(226, 144, 3);
  font-weight: 800;
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.541); */
  font-weight: bolder;
  font-size: 2rem;
  padding: 0.5rem;
  padding-left: 0rem;
  border-radius: 1rem;
}

.main-hero-left p {
  line-height: 1.5;
}

.main-hero-left,
.main-hero-right {
  padding: 5rem;
}

.main-hero-left {
  flex: 1 1 20rem;
}

.main-hero-right {
  flex: 1 1 20rem;
}

.main-hero-left {
  background-color: rgba(0, 0, 0, 0.542);
  border-radius: 8rem;
  border-top-left-radius: 0rem;
  border-bottom-left-radius: 0rem;
  padding: 2.5rem;
  padding-left: 8rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.503);
  margin-top: 6rem;
  background-color: rgba(255, 255, 255, 0.907);
}

.main-hero-left-p-one {
  /* padding-right: 28rem; */
  /* padding-right: 8rem; */
}

.main-hero-left h1 {
  position: relative;
  width: fit-content;
  padding: 1rem 2rem;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  margin-top: 2rem;
  color: #ff5722;
  border-radius: 5rem;
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.347); */
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.515);
  background: linear-gradient(to right, whitesmoke, aliceblue);
}

.main-hero-left h1,
.main-hero-left h1 span {
  color: black;
}

.main-hero-left h1::before {
  content: "☁️";
  position: absolute;
  top: -30%;
  left: -5%;
  width: 1%;
}

.main-hero-left h1::after {
  content: "☁️";
  position: absolute;
  bottom: -12%;
  right: 3%;
  width: 1%;
}

.main-hero-left h3 {
  /* color: white; */
  color: black;
  font-size: 1.2rem;
  font-weight: 600;
  /* text-decoration: 2px solid rgba(255, 255, 255, 0.588) underline; */
}

.main-hero-left p {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: white;
  color: black;
  font-weight: 700;
  /* text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.545); */
}

.main-hero-left button {
  padding: 10px 20px;
  font-size: 1.6rem;
  font-weight: bold;
  color: white;
  text-align: center;
  border: none;
  border-radius: 20px;
  outline: none;
  cursor: pointer;
  font-weight: 600;
  margin: 1rem 0.5rem 0.5rem 0rem;
  background-image: linear-gradient(to right, #09b9aa, rgb(21, 121, 187));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

.main-hero-left button:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3); /* Larger shadow on hover for a 'lifted' effect */
  transform: translateY(-2px); /* Slightly raise the button on hover */
}

.main-hero-left button:active {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Smaller shadow for 'pressed' effect */
  transform: translateY(
    1px
  ); /* Offset the raise effect to look like it's being pressed */
}

.hero-btn-know {
  background: none;
  background-image: linear-gradient(
    to right,
    #fbffff,
    rgb(233, 245, 255)
  ) !important;
  color: black !important;
}

/* circling button animation around reach now */
@keyframes circling-light {
  0% {
    transform: rotate(0deg) translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    /* transform: rotate(100deg) translate(-50%, -50%); */
    transform: rotate(45deg) translate(-100%, -100%);
    opacity: 1;
  }
}

.hero-btn-reach,
.hero-btn-know {
  position: relative; /* Needed to position the pseudo-elements */
  overflow: hidden; /* Ensure the light beam doesn't go outside the button bounds */
}

.hero-btn-reach:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800%; /* Width should be large enough to cover the button when rotating */
  height: 400%; /* Height should be large enough to cover the button when rotating */
  background-color: transparent;
  border-radius: 50%;
  /* border: 5rem solid #04e4e42e;  */
  /* border: 2.5rem solid #00dbe75e; */
  border: 6rem solid #00dbe75e;
  box-sizing: border-box;
  animation: circling-light 0.75s linear;
  transform-origin: 0 75%; /* Pivot from the left side, center vertically */
  opacity: 0; /* Start invisible and fade in */
  transition: opacity 0.3s ease-in-out;
}

.hero-btn-reach:hover::before {
  opacity: 0; /* Visible when hovered */
}

.hero-btn-know:hover::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800%; /* Width should be large enough to cover the button when rotating */
  height: 400%; /* Height should be large enough to cover the button when rotating */
  background-color: transparent;
  border-radius: 50%;
  /* border: 5rem solid #04e4e42e;  */
  /* border: 2.5rem solid #00dbe75e; */
  /* border: 6rem solid #00e7d05e; */
  /* border: 6rem solid #ff803750; */
  border: 6rem solid #00e7d05e;
  box-sizing: border-box;
  animation: circling-light 0.75s linear;
  transform-origin: 0 75%; /* Pivot from the left side, center vertically */
  opacity: 0; /* Start invisible and fade in */
  transition: opacity 0.3s ease-in-out;
}

.hero-btn-know:hover::before {
  opacity: 0; /* Visible when hovered */
}

/* navbar absolute sylings */
#navbar {
  /* background: transparent !important;
  background-image: linear-gradient(
    to right,
    #09b9aa,
    rgb(21, 121, 187)
  ) !important; */
  /* background: transparent !important; */
}

/* #navbar ul {
  font-weight: 600;
} */

/* takes effect on scroll using javascript  */
/* .navbar-scrolled {
  background-image: linear-gradient(to top, rgb(9, 67, 114), steelblue);
} */

/* .navbar-scrolled {
  background-image: linear-gradient(
    to bottom,
    rgba(11, 142, 149, 0.962),
    rgb(9, 144, 151),
    #067278
  );
} */

/* when navbar is dark or black or colorful / transparent */
/* .navbar ul li a {
  font-weight: 400;
  color: rgb(235, 234, 234) !important;
}

.navbar ul li a:hover {
  font-weight: 400;
  color: rgb(255, 255, 255) !important;
} */

/* when navbar is dark or black or colorful / transparent STYLING - 2 */
/* .navbar ul li a {
  font-weight: 400;
  color: rgb(206, 206, 206) !important;
}

.navbar ul li a:hover {
  font-weight: 400;
  color: rgb(233, 233, 233) !important;
} */

/* when navbar is dark or black or colorful / transparent STYLING - 3 */
/* .navbar ul li a {
  font-weight: 400;
  color: rgb(206, 206, 206) !important;
}

.navbar ul li a:hover {
  font-weight: 400;
  color: rgb(233, 233, 233) !important;
}  */

/* when navbar is white / light */
/* .navbar ul li a {
  font-weight: 400;
  color: rgb(56, 56, 56) !important;
}

.navbar ul li a:hover {
  font-weight: 400;
  color: black !important;
} */

.navbar {
  /* background: linear-gradient(
    to right,
    #292929,
    #292929,
    #191919,
    #191919,
    #191919,
    rgb(0, 108, 107),
    skyblue,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #292929,
    #292929,
    #191919,
    #191919,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #292929,
    #292929,
    #191919,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #292929,
    #191919,
    #191919,
    skyblue,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #292929,
    #292929,
    #191919,
    #191919,
    #191919,
    rgb(0, 131, 138),
    skyblue,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #292929,
    #292929,
    #191919,
    #191919,
    #191919,
    rgb(0, 158, 166),
    rgb(105, 186, 219),
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #292929,
    #292929,
    #191919,
    #191919,
    #191919,
    rgb(11, 138, 170),
    rgb(105, 186, 219),
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #292929,
    #292929,
    #292929,
    #191919,
    #191919,
    #191919,
    rgb(11, 138, 170),
    rgb(105, 186, 219),
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    white,
    white,
    white,
    whitesmoke,
    aliceblue,
    rgb(7, 166, 206),
    rgb(105, 186, 219),
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    white,
    white,
    white,
    whitesmoke,
    aliceblue,
    aliceblue,
    rgb(105, 186, 219),
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #09b9aa,
    #09b9aa,
    #09b9aa,
    #09a4b9,
    skyblue,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    white,
    white,
    white,
    whitesmoke,
    aliceblue,
    aliceblue,
    #09b9aa,
    #09b9aa,
    #09b9aa,
    #09a4b9,
    skyblue,
    transparent,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    white,
    white,
    white,
    whitesmoke,
    aliceblue,
    aliceblue,
    #09b9aa,
    skyblue,
    transparent,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    white,
    white,
    white,
    aliceblue,
    aliceblue,
    aliceblue,
    #32e3d5,
    #75e6dd,
    skyblue,
    skyblue,
    transparent,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    white,
    white,
    white,
    aliceblue,
    aliceblue,
    aliceblue,
    #32e3d5,
    #75e6dd,
    skyblue,
    skyblue,
    transparent,
    transparent,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    white,
    white,
    white,
    aliceblue,
    aliceblue,
    aliceblue,
    #32e3d5,
    #75e6dd,
    skyblue,
    aliceblue,
    skyblue,
    transparent,
    transparent,
    transparent,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    white,
    white,
    white,
    aliceblue,
    aliceblue,
    aliceblue,
    #32e3d5,
    #75e6dd,
    aliceblue,
    skyblue,
    transparent,
    transparent,
    transparent,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    white,
    white,
    white,
    aliceblue,
    aliceblue,
    aliceblue,
    #32e3d5,
    aliceblue,
    skyblue,
    transparent,
    transparent,
    transparent,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    white,
    white,
    white,
    aliceblue,
    aliceblue,
    aliceblue,
    #32e3d5,
    #75e6dd,
    aliceblue,
    skyblue,
    transparent,
    transparent,
    transparent,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #292929,
    #292929,
    #292929,
    #191919,
    #191919,
    #191919,
    #00665e,
    #007a70,
    #191919,
    rgb(32, 119, 154),
    transparent,
    transparent,
    transparent,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #292929,
    #292929,
    #292929,
    #191919,
    #191919,
    #191919,
    #00564f,
    #007a70,
    #191919,
    rgb(26, 117, 153),
    transparent,
    transparent,
    transparent,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #292929,
    #292929,
    #292929,
    #191919,
    #191919,
    #191919,
    #00564f,
    #007a70,
    rgb(26, 117, 153),
    transparent,
    transparent,
    transparent,
    transparent,
    transparent
  ); */

  /* background: linear-gradient(
    to right,
    #292929,
    #292929,
    #292929,
    #191919,
    #191919,
    #191919,
    #00564f,
    #007a70,
    #007a70,
    rgb(50, 154, 195),
    transparent,
    transparent,
    transparent,
    transparent
  ); */

  background: linear-gradient(
    to right,
    rgb(1, 85, 90),
    rgb(2, 138, 159),
    rgb(75, 115, 189),
    transparent,
    transparent
  );

  /* background: linear-gradient(
    to right,
    rgb(3, 84, 88),
    rgb(4, 127, 146),
    rgb(64, 100, 167),
    transparent,
    transparent
  ); */
}

.navbar-scrolled {
  /* background-image: linear-gradient(
    to left,
    cornflowerblue,
    rgb(9, 171, 196),
    #069ba3
  ); */

  /* background-image: linear-gradient(
    to left,
    rgb(82, 129, 216),
    rgb(2, 152, 175),
    #028990
  ); */

  /* looks good 1 */
  /* background-image: linear-gradient(
    to left,
    rgb(70, 117, 204),
    rgb(2, 141, 162),
    #01747a
  ); */

  /* looks good 2 with contrast on logo */
  /* background-image: linear-gradient(
    to left,
    rgb(70, 117, 204),
    rgb(2, 141, 162),
    #015a5f
  ); */

  /* looks good 3 with contrast on logo and all links */
  /* background-image: linear-gradient(
    to left,
    rgb(57, 99, 178),
    rgb(1, 126, 145),
    #015a5f
  ); */

  /* looks good 4 with a little even more contrast */
  /* background-image: linear-gradient(
    to left,
    rgb(61, 99, 170),
    rgb(6, 116, 133),
    #014d51
  ); */

  /* background-image: linear-gradient(
    to left,
    rgb(75, 115, 189),
    rgb(3, 132, 152),
    rgb(0, 104, 109)
  ); */

  /* background-image: linear-gradient(
    to left,
    rgb(75, 115, 189),
    rgb(2, 138, 159),
    rgb(0, 104, 109)
  ); */

  background-image: linear-gradient(to right, #191919, #292929);

  /* background: linear-gradient(to bottom, #292929 0%, #191919 100%); */
}

.nav-link {
  color: rgb(221, 221, 221) !important;
  font-weight: 500;
  /* color: rgb(223, 222, 222) !important; */
  /* color: rgb(233, 233, 233) !important; */
  /* font-weight: 300; */
  /* font-weight: 500; */
  /* font-weight: 600; */
}

.nav-link:hover {
  color: rgb(233, 232, 232) !important;
  /* color: rgb(237, 237, 237) !important; */
  /* color: rgb(255, 255, 255) !important; */
}

.navbar-scrolled .navbar-brand {
  color: #fff !important;
}

.navbar-scrolled .nav-link {
  color: rgb(156, 154, 154) !important;
  font-weight: 500;
  /* color: rgb(226, 226, 226) !important; */
  /* color: rgb(233, 233, 233) !important; */
  /* font-weight: 300; */
  /* font-weight: 500; */
  /* font-weight: 600; */
}

.navbar-scrolled .nav-link:hover {
  color: rgb(188, 188, 188) !important;
  /* color: rgb(248, 248, 248) !important; */
  /* color: rgb(255, 255, 255) !important; */
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

/* NEW Button styling according to new design and color scheme for contact and footer */

#contact .contact-send a {
  cursor: pointer;
}

#contact .contact-send {
  background-image: linear-gradient(to right, #09b9aa, rgb(21, 121, 187));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

#contact .contact-send:hover {
  background-image: linear-gradient(to right, #07aea0, rgb(13, 110, 174));
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s;
}

#contact .contact-send:focus {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.716);
}

.footer-submit {
  padding: 0.5rem 1rem;
  color: white;
  font-size: 1.5rem;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
  background: linear-gradient(
    to right,
    cornflowerblue,
    cornflowerblue,
    #09b9aa
  );
  cursor: pointer;
}

.footer-submit:hover {
  background: linear-gradient(
    to right,
    rgb(89, 134, 219),
    rgb(87, 133, 219),
    #07afa1
  );
}

/* .footer-wrapper {
  background: none !important;
  background-image: linear-gradient(
    240deg,
    rgb(13, 69, 114),
    rgb(32, 99, 154),
    steelblue,
    cornflowerblue,
    cornflowerblue,
    steelblue,
    rgb(32, 99, 154),
    rgb(13, 69, 114)
  ) !important;
}

.footer {
  background: url("./backStars.png");
  background-size: cover;
} */

.footer-wrapper {
  background: none !important;
  /* background-image: linear-gradient(
    145deg,
    #212529,
    #212529,
    #212529,
    #212529,
    #07443f,
    #026960,
    #028278
  ) !important; */

  /* background-image: linear-gradient(
    to bottom,
    #212529,
    #212529,
    #212529,
    #212529,
    #07443f,
    #026960,
    #028278
  ) !important; */

  background-image: linear-gradient(
    to bottom right,
    #212529,
    #212529,
    #212529,
    #212529,
    #07443f,
    #03534c,
    #036058
  ) !important;
}

.footer {
  background: url("./backStars.png");
  background-size: cover;
  background-repeat: repeat;
}

/* .footer {
  background: url("./world-map-png.png");
  background-size: contain;
} */

/* Main hero mobile responsive FINAL */

@media screen and (max-width: 1320px) {
  .main-hero-left {
    flex: 2 1 10rem;
  }
}

@media screen and (max-width: 1140px) {
  .main-hero-left {
    flex: 3 1 10rem;
  }
}

@media screen and (max-width: 992px) {
  .main-hero {
    display: flex;
    flex-direction: column;
    padding: 0rem;
    margin: 0rem;
    max-height: none;
  }

  .main-hero-left {
    border-radius: 0rem;
    padding: 0rem;
    padding: 4.5rem;
    /* background-color: #212529f2; */
    /* background-color: rgba(255, 255, 255, 0.925); */
    /* background-color: rgba(255, 255, 255, 0.873); */
    /* background-color: rgba(255, 255, 255, 0.822); */
    background-color: rgba(255, 255, 255, 0.851);
    border-bottom-left-radius: 0rem;
    border-bottom-right-radius: 0rem;
    box-shadow: none;
  }

  main {
    background-size: cover;
    background-position: left;
  }

  .main-hero-left {
    flex: 1 1 10rem;
  }

  .main-hero-right {
    flex: 1 1 10rem;
    display: none;
  }

  main {
    max-height: none;
    margin-bottom: 3rem;
  }

  .main-hero-right {
    max-height: none;
    min-height: 80vh;
    width: 100%;
    padding: 0rem;
    margin: 0rem;
    padding: 0.5rem;
    /* z-index: 1; */
    margin-top: -3rem;
  }

  .hero-img2,
  .hero-img3,
  .hero-img4,
  .hero-img5 {
    display: none;
  }

  .main-hero-wrapper {
    background: none;
  }

  .main-hero-right {
    display: none;
  }

  .navbar {
    background-image: linear-gradient(
      to left,
      rgb(75, 115, 189),
      rgb(2, 138, 159),
      rgb(0, 104, 109)
    );
  }

  .navbar-scrolled {
    background-image: linear-gradient(to right, #191919, #292929);
    /* background: linear-gradient(to bottom, #292929 0%, #191919 100%); */
  }

  .footer-submit {
    border-radius: 0rem;
    border: 2px solid lightslategray;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
  }
}

/* ---------------------------------------------------------------------------
ABSOLUTE FINAL Modifications and touch ups! 
--------------------------------------------------------------------------- */

@media (max-width: 992px) {
  .about-main-right {
    max-height: 45rem;
  }
}

@media (max-width: 550px) {
  .main-hero-left h3 {
    margin-left: 2.8rem;
  }

  .price-header .price {
    font-size: 3.4rem;
  }

  .dollar-sign {
    font-size: 1.6rem;
    margin-top: 0.3rem;
    margin-right: 0.2rem;
  }

  .price-column.premium-price {
    background: linear-gradient(
      45deg,
      white 0%,
      white 95%,
      goldenrod 95%,
      gold 98%,
      white 98%,
      white 100%
    );
  }
}
