
@import url('https://fonts.googleapis.com/css2?family=Salsa&display=swap');
* {
  margin: 0%;
  padding: 0%;
  box-sizing: border-box;
}
body {
  height: 100%;
  width: 100%;
  color: rgb(0, 0, 0);
  font-family: "Salsa", cursive;
  font-size: 20px;
  background-color: rgba(154, 110, 195, 0.295);
}
header {
  /* border: 2px solid rgb(129, 213, 26); */
  position: relative;
  height: 5rem;
  width: 100%;
  display: flex;
  align-items: center;
  background: radial-gradient(rgba(122, 25, 212, 0.783), rgb(146, 76, 210));
}
.logo-title {
  /* border: 2px solid rgb(70, 150, 240); */
  display: inline-flex;
  align-items: center;
}
.logo {
  border: 2px solid black;
  height: 3.5rem;
  border-radius: 50%;
  margin: 5px;
}
#title {
  color: white;
  font-size: 35px;
}
.nav-ul {
  margin: auto;
}
.nav-ul li {
  /* border:2px solid rgb(47, 232, 216); */
  list-style-type: none;
  padding: 1rem;
  display: inline-block;
}
.nav > a {
  text-decoration: none;
  color: white;
  padding: 0.2rem;
}
.nav > a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}
#Services {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: white;
}
.register {
  background-color: white;
  border-radius: 2rem;
  margin: 10px;
}
.register > a {
  text-decoration: none;
  font-family: "Salsa", cursive;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-size: 0.8em;
}
.register > a:hover {
  opacity: 0.7;
}
.span-nav {
  display: flex;
  position: absolute;
  right: 0;
  margin: 2em;
}
.open-btn,
.close-btn {
  display: none;
  cursor: pointer;
  font-size: 5vw;
}
@media screen and (max-width: 1060px) {
  .nav-ul {
    display: none;
  }
  .open-btn {
    display: block;
  }
  .nav-ul.open {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 5rem;
    right: 0;
    text-align: center;
    background-color: rgba(148, 63, 228, 0.92);
  }
  .register {
    margin: auto;
  }
}
.services{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width:89vw;
  gap:15px;
  margin:auto;
  margin-bottom: 25px;
}

.heading{
  text-align: center;
  margin: 22px;
  font-size:1.5rem;
}
.service-first{
  /* border:2px solid red; */
  margin: 22px auto;
  height:20rem;
  width:20rem;
  background-color: rgba(152, 71, 227, 0.397);
  border:2px solid rgba(152, 71, 227, 0.201);
  border-radius: 20px;
  display:flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap:10px;
  padding:30px;
  cursor: pointer;
  /* transition: all 5s ease-in-out; */
}
.service-first:hover{
  transform: scale(1.05); 
  transition: all 0.75s ease-in;
}
.services-title{
  margin: 10px 0px;
  text-align: center;
  font-size: 40px;

}
footer{
  display:flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
  /* border:2px solid yellow; */
  width:100%;
  gap:20px;
  background-color: rgba(151, 71, 227, 0.721);
}
.first{
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap:18px;
  /* border:2px solid red; */
  padding:25px;
  flex-wrap: wrap;
  height:20rem;
  width:20rem;
}
#footer-links{
  color:#551AB8;
}
@media screen and (max-width:695px){
  .first{
    padding:0;
    margin:0;
    height:14rem;
  }
}
@media only screen and (min-width: 980px) and (max-width: 1340px) {
  footer{
    gap:0px;
    flex-wrap: nowrap;
  }
}