* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: "Roboto", sans-serif;
}
/*set up the body*/
body {
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background: url(../bghome.png);
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden;
}
/*primary header*/
.section-logo {
  margin: 2rem;
}
.logo {
  width: 170px;
}
nav {
  position: fixed;
  right: 0;
  z-index: 1001;
}

nav ul li a:hover {
  text-shadow: 0 0 20px #fff, 0 0 40px #fff, 0 0 60px #fff;
}
.primary-header {
  position: relative;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-toggle {
  display: none;
}
.primary-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.308);
  border-radius: 100px 0px 0px 8px;
}
.safari .primary-navigation {
  background-image: url(../bghome.png);
  background-size: cover;
  background-position: center;
}
.primary-navigation a {
  text-decoration: none;
  color: #ffffff;
}
.primary-navigation a > [aria-hidden="true"] {
  font-weight: 700;
  margin-inline-end: 0.7em;
}
@supports (backdrop-filter: blur(1rem)) {
  .primary-navigation {
    background: hsl(0, 0%, 100% / 0.1);
    backdrop-filter: blur(1rem);
  }
}
p {
  color: #9c9c9c;
}
#accordion {
  margin: 100px auto;
  width: 600px;
}
#accordion li {
  width: 100%;
  margin-bottom: 10px;
  background: #212121;
  padding: 20px;
  border-radius: 40px;
  border: #ffffff solid 1px;
}
#accordion li label {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  color: #bbbbbb;
}
#accordion li label span {
  transform: rotate(90deg);
  font-size: 22px;
  color: #bbbbbb;
}
#accordion label + input[type="checkbox"] {
  display: none;
}
#accordion .content {
  padding: 0 10px;
  line-height: 26px;
  max-height: 0;
  overflow-y: scroll;
  transition: max-height 0.5s;
}
#accordion .content::-webkit-scrollbar {
  width: 0;
}
#accordion label + input[type="checkbox"]:checked + .content {
  max-height: 400px;
}
.title-li {
  padding: 20px;
  font-size: 22px;
  font-weight: 500;
  text-align: left;
  color: #bbbbbb;
}
.title-li-2,
.title-li-3,
.title-li-4 {
  margin-top: 100px;
  padding: 20px;
  font-size: 22px;
  color: #212121;
  font-weight: 500;
  text-align: left;
  color: #bbbbbb;
}
.Loopex-text {
  text-align: center;
}

.loopex {
  background: linear-gradient(135deg, #a619e7, #fffb00);
  width: 100px;
  border-radius: 50px;
}
.footer-text-ending {
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  color: #fff;
  font-family: "Roboto";
  margin-bottom: 20px;
}
.footer-text-ending span {
  font-weight: 500;
}
/*Footer Section*/
footer {
  display: flex;
  flex-wrap: wrap;
  margin-top: 180px;
  background-color: #21242700;
  padding: 60px 10%;
  border-top: 1px solid #ffffffc2;
}
.footer-col {
  width: 25%;
}
.footer-col h4 {
  position: relative;
  margin-top: 15px;
  margin-bottom: 30px;
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  text-transform: capitalize;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  background-color: #fff;
  height: 1px;
  width: 60px;
}
ul li:not(:last-child) {
  margin-bottom: 20px;
}
ul li a {
  display: block;
  font-size: 16px;
  color: #ffffffa1;
  transition: 0.4s;
}
.footer-questions a:hover {
  color: #fff;
  padding-left: 3px;
}
.links a {
  border: 1px solid white;
  font-size: 18px;
  display: inline-block;
  height: 44px;
  width: 44px;
  color: white;
  background-color: #212427;
  margin: 0 8px 8px 0;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  transition: 0.5s;
}
.links a:hover {
  border-color: #212427;
  color: #212427;
  background-color: #fff;
  box-shadow: 0px 0px 30px 5px #fff;
}
@media (min-width: 35em) {
  .primary-navigation {
    --gap: 3rem;
    padding-block: 1.5em;
    padding-inline: clamp(3rem, 10vw, 10rem);
  }
}
@media (max-width: 50em) {
  #accordion {
    margin: 100px auto;
    width: 400px;
  }
  #accordion li {
    width: 80%;
    margin: 0px auto 10px;
    background: #212121;
    padding: 10px;
    border-radius: 4px;
  }
  .title h2 {
    text-align: center;
    margin-top: 100px;
    color: #ffffffb9;
    font-size: 30px;
    font-family: "Roboto";
  }
  .logos {
    color: #212427;
    box-shadow: 0 0 20px #ffffff3a;

    background: linear-gradient(
      to bottom,
      rgb(255, 251, 0, 0.45),
      rgb(158, 20, 223, 0.45)
    );
  }
  .text {
    margin-bottom: 30px;
  }
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-col h4::before {
    all: unset;
  }
  .footer-col h4 {
    position: relative;
    margin-top: 15px;
    margin-bottom: 30px;
    font-weight: 400;
    font-size: 22px;
    color: #ffffff;
    text-transform: capitalize;
  }
  ul li a {
    display: block;
    font-size: 16px;
    color: #cccccc;
    transition: 0.4s;
  }

  .primary-navigation {
    --gap: 2.8em;

    position: fixed;
    z-index: 1000;
    inset: 0 0 0 45%;

    flex-direction: column;
    padding: min(30vh, 10rem) 2em;

    transform: translateX(100%);
    transition: transform 350ms ease-out;
    background: hsl(0, 0%, 100% / 0.75);
  }
  .primary-navigation[data-visible="true"] {
    transform: translateX(0%);
  }
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    z-index: 9999;
    background-color: transparent;
    background: url("../icons/white.svg");
    width: 2rem;
    border: 0;
    background-repeat: no-repeat;
    aspect-ratio: 1;
    top: 2rem;
    right: 2rem;
  }

  .mobile-nav-toggle[aria-expanded="true"] {
    background-image: url(../icons/white-x.svg);
  }
}
@media (min-width: 882px) and (max-width: 928px) {
  .primary-navigation a > span[aria-hidden] {
    display: none;
  }
  #accordion {
    margin: 100px auto;
    width: 500px;
  }
  #accordion li {
    width: 100%;
    margin: 0px auto 10px;
    background: #f2f3f4;
    padding: 10px;
    border-radius: 4px;
  }
}
@media (min-width: 35em) and (max-width: 55em) {
  .primary-navigation a > span[aria-hidden] {
    display: none;
  }
  .footer-col {
    width: 100%;
  }
}

/*general*/
.flex {
  display: flex;
  gap: var(--gap, 1rem);
}
