* {
  padding: 0;
  margin: 0;
  font-family: "Montserrat", sans-serif;
}
.flexColCenter {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
/* body{
   
    margin: 0 auto;
} */
.toplink {
  height: 3rem;
  width: 100%;
  background-color: #0771e4;
  display: flex;
  align-items: center;
}
.page-links {
  /* width: 100vw; */
  height: 100%;
  padding: 2rem 10rem;
}
.page-links a {
  text-decoration: none;
  color: white;
  margin-right: 3rem;
}
.page-links {
  display: flex;
  align-items: center;
}

.page-links a {
  text-decoration: none;
  color: #fff;
  position: relative;
  /* margin: 0 20px;  */
  transition: color 0.3s ease;
}

.page-links a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: width 0.3s ease;
}
.page-links a:hover::before {
  width: 100%;
}

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5rem;
  margin-top: 1rem;
}

#navbar #logo img {
  width: 10rem;
}

#menu {
  display: flex;
  align-items: center;
}

#menu a {
  text-decoration: none;
  color: #000;
  position: relative;
  margin: 0 20px;
  transition: color 0.3s ease;
}

#menu a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transition: width 0.3s ease;
}
#menu a:hover::before {
  width: 100%;
}
/* #call {
    background-color: #0771e4;
    padding: .5rem;
    color: #fff;
    border-radius: 10px;
    border:2px #0771e4 solid;
} */
#call {
  background-color: #0771e4;
  padding: 0.5rem 1.5rem;
  color: #fff;
  border-radius: 10px;
  border: 2px #0771e4 solid;
  transition: 0.25s;
  cursor: pointer;
}

#hero {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 2rem 10rem;
  margin-bottom: 15rem;
}

#hero .hero-content {
  padding: 2rem 1rem;
  text-align: center;
}

#hero .hero-heading h1 {
  font-size: 3rem;
}

#hero .hero-sub {
  font-size: 1rem;
  padding: 1rem 5rem;
}
#hero .hero-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
#hero .hero-image {
  background-color: #000;
  padding: 2rem 0;
  width: 100%;
  height: 100%;
}

#theme-wrapper {
    overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  width: 100%;
  position: relative;
}

#theme-wrapper .theme-head{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-bottom: 3rem;
   
}
#theme-wrapper .theme{
    top: 2rem;
    overflow-y: scroll;
    overflow-x: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
     background-color: #243dff;
    height: 80vh;
    gap: 5rem;
}
#theme-wrapper .theme::before{
    z-index: -1;
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 20vh;
    background-color: #243dff;
    border-radius: 50% 50% 0 0/ 100% 100% 0 0;
    transform: scaleX(1.2);
}
#theme-wrapper .theme .thcard{
    position: sticky;
    top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #243dff;
    width: 100%;
    height:22rem;
    padding: 5rem;
    margin: 5rem;
    flex-shrink: 0;
}
#theme-wrapper .theme .thcard:last-child{
    margin-bottom:12rem ;
}

#theme-wrapper .theme .thcard .thleft{
   width: 50%;
   height: 100%;
   background-color: green;
   padding: 3rem;
}
#theme-wrapper .theme .thcard .thright{
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background-color: yellow;
    padding: 3rem;
}
#sphere {
    width: 100%;
    z-index: -1;
   
  }
  #sphere::before {
    z-index: -1;
    content: "";
    position: absolute;
    bottom: 0;
    top: 0;
    width: 100%;
    height: 40vh;
    background-color: #243dff;
    border-radius: 50% 50% 0 0/ 100% 100% 0 0;
    transform: scaleX(1.2);
  }







#features {
  padding: 2rem 10rem;
  position: relative;
}
#features .f-heading {
  padding: 2rem 0;
}
#features .f-grid {
  display: grid;
  width: 100%;
  background-color: white;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
#features .f-grid .feature {
  height: 20rem;
  background-color: red;
  width: 100%;
  border-radius: 20px;
}
#features .f-grid .feature:nth-of-type(1) {
  grid-column: 1/6;
}
#features .f-grid .feature:nth-of-type(2) {
  grid-column: 6/9;
}
#features .f-grid .feature:nth-of-type(3) {
  grid-column: 1/5;
}
#features .f-grid .feature:nth-of-type(4) {
  grid-column: 5/9;
}

#starter {
  padding: 2rem 10rem;
  height: 40vh;
  background-color: #0771e4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#starter .sleft {
  width: 100%;
  height: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
#starter .sleft .form-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 1rem 3rem;
}
#starter .sleft .sheading {
  color: white;
  font-size: 1.6rem;
  display: flex;
}
#starter .sleft form {
  height: 60%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  row-gap: 2rem;
  padding-top: 1.5rem;
  /* background-color: aquamarine; */
}
#starter .sleft form input {
  width: 80%;
  height: 2rem;
  border-radius: 25px;
  border: none;
  padding: 0.5rem 1rem 0.5rem 2rem;
}

#starter .sleft form .formBtn {
  padding: 1rem;
  border-radius: 20px;
  border: none;
  background-color: #243dff;
  color: white;
  font-size: 1rem;
  padding: 0.75rem 3rem;
}

#starter .sright {
  width: 100%;
  background-color: red;
  height: 100%;
}
#starter .sright .card {
  background-color: aqua;
  border-radius: 15px;
  height: 80%;
  width: 80%;
}




