@import url("https://fonts.googleapis.com/css2?family=Roboto&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Ovo";
}

.header {
  min-height: 10vh;
  width: 100%;
  background-position: center;
  background-size: cover;
  position:relative;
}
nav{
  display: flex;
  padding: 1% 5%;
  justify-content: space-between;
  background-color: #111;
  
}
.nav-links{
  flex: 1;
  text-align: center;
}
.nav-links ul li{
  list-style: none;
  display: inline-block;
  padding: 12px 20px;
  position:relative;
}
.nav-links ul li a{
  color: white;
  text-decoration: none;
  font-size: 18px;
  letter-spacing:2.5px;
}
.nav-links ul li::after{
  content: '';
  width: 0%;
  height: 2px;
  background: #00daf3;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after{
  width: 100%;
}
nav .fa-solid{
  display: none;
}

.wrapper {
  max-width: 75%;
  margin: auto;
  margin-bottom: 25%;
}

.wrapper > p,
.wrapper > h1 {
  margin: 5rem 0;
  text-align: center;
  text-transform: capitalize;
}

.wrapper > h1 {
  letter-spacing: 3px;
}

.accordion {
  background-color: white;
  color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  font-size: 1.2rem;
  width: 100%;
  padding: 2rem 2.5rem;
  border: none;
  outline: none;
  transition: 0.4s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.accordion i {
  font-size: 1.6rem;
}

.active,
.accordion:hover {
  background-color: #fff7f0;
}
.pannel {
  padding: 0 2rem 2.5rem 2rem;
  background-color: white;
  overflow: hidden;
  background-color: #fff7f0;
  display: none;
}
.pannel p {
  color: rgba(0, 0, 0, 0.7);
  font-size: 1.2rem;
  line-height: 1.4;
}

.faq {
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 10px 0;
}
.faq.active {
  border: none;
}
html{
  height: 100%;
  overflow-x: hidden;
}
body{
  position: relative;
  margin: 0;
  min-height: 100%;
  padding-bottom: 5rem;
  
}
/*- FOOTER-*/

footer{
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  /* background: linear-gradient(to top, #A64153, #04C4D9); */
  background: black;
  padding: 50px 0 30px;
  font-size: 14px;
  
}
.socialIcons{
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.socialIcons a{
  text-decoration: none;
  padding: 10px;
  background-color: white;
  margin: 10px;
  border-radius: 50%;
  transition: all 0.5s ease;
}
.socialIcons a i{
  font-size: 20px;
  color: black;
}
.socialIcons a:hover{
  background-color: #111;
  transform: translateY(-10px);
  transition: 0.5s;
}
.socialIcons a:hover i{
  color: white;
  transition: 0.5s;
}
.footerNav{
  margin: 30px 0;
  transition: all .5s ease;
  
}
.footerNav ul{
  display: flex;
  justify-content: center;
}
.footerNav ul li a{
  color: white;
  margin: 20px;
  text-decoration: none;
  font-size: 1.5em;
  opacity: 0.5;
  transition: .5s;
  font-family: "Ovo", serif;
  
}
.footerNav ul li a:hover{
  opacity: 1;
}
.footerText{
  background: black;
  text-align: center;
  padding: 20px;
}
.footerText p{
  color: white;
  font-family: "Ovo", serif;
}
.designer{
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin: 0 5px;
  font-family: "Ovo", serif;
}
.footerText p a{
  color: #0099aa;
  font-family: "Ovo", serif;
  text-decoration: none;
  letter-spacing: 1px;
  opacity: 0.8;
  margin: 0 5px;
  transition: .5s ease;
}
.footerText p a:hover{
  color: #00daf3;
  transition: .5s ease;
}
