* {
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
}
/*set up the body*/
body {
  display: flex;
  flex-direction: column;
  background-repeat: no-repeat;
  background-color: #0a0a0a;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 1000px;
}
body::-webkit-scrollbar {
  width: 0;
}
/*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-radius: 100px 0px 0px 8px;
  border: 1px solid rgba(255, 255, 255, 0.308);
  border-right: none;
}
.safari .primary-navigation {
  background-image: url(../bghome.png);
  background-size: cover;
  background-position: center;
}
.primary-navigation a {
  text-decoration: none;
  color: #afafaf;
}
.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);
  }
}
/*Contact Form*/
.container {
  max-width: 700px;
  margin: auto;
  width: 100%;
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 5px;
}
.container .title-form {
  font-size: 25px;
  font-weight: 500;
  position: relative;
}
.container .title-form::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 260px;
  background: linear-gradient(135deg, #a619e7, #fffb00);
}
.container form .user-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 12px 0;
}
form .user-details .input-box {
  margin-bottom: 15px;
  width: calc(100% / 2 - 20px);
}
.user-details-comment {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}
.user-details-comment input {
  height: 50px;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding-left: 15px;
  font-size: 16px;
  border-bottom-width: 2px;
  transition: all 0.3s ease;
}

.user-details-comment .input-box input:focus,
.user-details-comment .input-box input:valid {
  border-color: #212121;
}
.user-details .input-box .details {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}
.user-details .input-box input {
  height: 45px;
  width: 100%;
  outline: none;
  border-radius: 5px;
  border: 1px solid #ccc;
  padding-left: 15px;
  font-size: 16px;
  border-bottom-width: 2px;
  transition: all 0.3s ease;
}
.user-details .input-box input:focus,
.user-details .input-box input:valid {
  border-color: #212121;
}
form .plan-selector .plan-selector-title {
  font-size: 20px;
  font-weight: 500;
}
form .plan-selector .category {
  display: flex;
  width: 80%;
  margin: 14px 0;
  justify-content: space-evenly;
}
.choose-title {
  display: flex;
  justify-content: center;
}
.choose-title-text {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #212121;
  font-weight: 500;
}

form input[type="checkbox"] {
  display: none;
}
form .button {
  height: 45px;
  margin: 45px 0px;
}
form .button input {
  height: 100%;
  width: 100%;
  outline: none;
  color: #000;
  border: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 5px;
  background: linear-gradient(135deg, #a619e7, #fffb00);
}
form .button input:hover {
  background: linear-gradient(-135deg, #a619e7, #fffb00);
}
input {
  accent-color: #a619e7;
}
@media (max-width: 584px) {
  .primary-navigation a {
    text-decoration: none;
    color: #212121;
  }
  .container {
    max-width: 100%;
  }
  form .user-details .input-box {
    margin-bottom: 15px;
    width: 100%;
  }
  form .plan-selector .category {
    width: 100%;
  }
}
.question {
  margin-left: 10%;
}
.plan-title {
  font-weight: 300;
  margin: 0 0 20px;
}
.options {
  margin: 20px 0;
}
.options input {
  margin: 10px 0;
}

.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;
}
/*Asteraki*/
.text-asteraki {
  text-align: center;
  font-size: 17px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 20px;
}
/*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) {
  .primary-navigation a {
    text-decoration: none;
    color: #000;
  }
  .question {
    margin-left: 0%;
  }
  .teo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .nikolas {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .social {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  .team-names {
    font-size: 15px;
  }
  .container {
    flex-wrap: wrap;
  }
  .team {
    margin-right: 0px;
  }
  /*Form Team Pics*/ /*Responsive*/
  .teo-image {
    width: 50px;
    border-radius: 50px;
  }
  .nikolas-image {
    width: 50px;
    border-radius: 50px;
  }
  .phone {
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
  }
  .bx-phone {
    font-family: "Roboto";
    font-size: 13px;
  }
  .title h2 {
    text-align: center;
    margin-top: 100px;
    color: #ffffffb9;
    font-size: 20px;
    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)
    );
  }
  .offer-button {
    width: 250px;
  }
  .offer-pic {
    margin-top: 0px;
    margin-bottom: -200px;
  }
  .content {
    flex-direction: column;
  }
  .image {
    flex: none;
    width: 100%;
    margin-bottom: 50px;
  }
  .text {
    margin-bottom: 30px;
  }
  .footer-col {
    width: 50%;
    margin-bottom: 30px;
    text-align: center;
  }

  .footer-col h4::before {
    all: unset;
  }

  .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;
  }
}
@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);
}

/*all titles*/
.services-title h4,
.who-we-are-title h4,
.why-us-title h4 {
  color: #212427;
  font-family: fantasy, sans-serif;
  font-weight: 300;
  font-size: 28px;
  cursor: default;
  margin-bottom: -30px;
}

/*PACKS*/
.container-packs {
  display: flex;
  flex-direction: column;
  align-content: center;
  border: 1px solid #a619e7;
  padding: 20px;
  border-radius: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}
.container-packs:hover {
  border: 1px solid #fcf818e8;
}
h1 {
  font-size: 20px;
  letter-spacing: 1px;
  color: #fcf818e8;
  text-align: center;
}
.websites,
.videos {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}
.websites label,
.videos label {
  font-size: 25px;
  letter-spacing: 1px;
  font-family: "Ysabeau Infant";
}
select {
  background-color: #a619e7;
  border: 1px solid #9e14df;
  border-radius: 20px;
  width: 130px;
  height: 40px;
  text-align: center;
  font-size: 15px;
  letter-spacing: 1px;
  color: #212427;
  font-family: "Ysabeau Infant";
  font-weight: 800;
  color: #4f0074;
}
option {
  color: #212427;
  text-align: center;
  background-color: #9e14df;
  font-family: "Ysabeau Infant";
  padding: 20px;
  border-radius: 20px;
  border: 1px solid #4f0074;
}
