nav {
  img {
    width: 30%;
  }
}

#head-img {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    /* box-shadow: 0 5px 15px 0px rgba(3, 1, 1, 0.6); */
    transform: translateY(0px);
  }

  50% {
    /* box-shadow: 0 25px 15px 0px rgba(255, 255, 255, 0.699); */
    transform: translateY(-20px);
  }
  100% {
    /* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
    transform: translateY(0px);
  }
}

@keyframes fadedown {
  0% {
    /* box-shadow: 0 5px 15px 0px rgba(3, 1, 1, 0.6); */
    opacity: 0;
    transform: translateY(-5em);
  }

  100% {
    /* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeup {
  0% {
    /* box-shadow: 0 5px 15px 0px rgba(3, 1, 1, 0.6); */
    opacity: 0;
    transform: translateY(5em);
  }

  100% {
    /* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
    opacity: 1;
    transform: translateY(0);
  }
}

header {
  padding: 0 2.5em;
  height: 95vh;
}

.header-title {
  font-size: 3.7em;
}

.header-subtitle {
  font-size: 2em;
}

.wrap {
  flex-wrap: wrap;
  gap: 1em;
}

#contact {
  padding: 7em 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.2em;
  width: 100%;
  justify-items: center;
  align-items: center;
  padding: 0;

  * {
    font-family: "Tanker";
    font-size: 1em;
  }

  input,
  textarea,
  button {
    font-family: "Chillax";
    padding: 2em;
    border-radius: var(--base-radius);
    border: 1px solid var(--primary);
  }
  input {
    width: 75%;
  }

  textarea {
    width: 72%;
  }

  button {
    width: 75.5%;
    background-color: var(--primary);
    color: white;
    font-weight: bolder;
  }
}

.social-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links li {
  border: 1px solid #dadada;
  text-align: center;
  padding: 0.7em;
  width: 35px;
  transition: all 0.5s ease-in-out;
  border-radius: var(--base-radius);
}

.social-links a svg {
  width: 30px;
  height: 30px;
  fill: black;
}

.white {
  fill: black;
}

.social-links li:hover svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.visible {
  display: none;
}

.social-links li:hover .visible {
  display: inline-block;
}

.social-links li:hover .unvisible {
  display: none;
}

.social-links li:nth-child(1):hover {
  background-color: #3a589b;
  scale: 1.3;
}

.social-links li:nth-child(2):hover {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  scale: 1.3;
}

.social-links li:nth-child(3):hover {
  background-color: #0a66c2;
  scale: 1.3;
}

footer {
  padding: 5em 0;
  p {
    font-size: 1.4em;
  }
}

#FAQS {
  width: 80%;
}

.card-info {
  width: 35%;
  height: 524px;
  background-color: white;
  border: 1px solid #dadada;
  padding: calc(1.5 * var(--inner-padding));
  border-radius: var(--base-radius);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: start;

  .card-img {
    padding: 0.8em;
    width: 100%;
    height: 20em;

    img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
  }
}

.card-pricing {
  width: 25%;
  height: 41em;
  border: 1px solid #dadada;
  background-color: white;
  padding: calc(2 * var(--inner-padding));
  border-radius: var(--base-radius);
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-align: start;

  ul {
    flex-direction: inherit;
    gap: calc(0.7 * var(--inner-padding));
    height: 100%;
  }
}

#contact-badge {
  margin: var(--inner-padding) 0;
  width: 60%;
}

#flag {
  width: 80%;
  background-color: black;
  color: white;
  border-radius: var(--base-radius);
  padding: calc(2.8 * var(--inner-padding)) calc(1.5 * var(--inner-padding));
}

.badge.simple {
  background-color: white;
  color: var(--primary);
  border: 1px solid #dadada;
}

.most-wanted {
  background-color: var(--primary);
  color: white;
  .badge {
    background-color: white;
    color: var(--primary);
  }
}

.scale-in-hor-center {
  -webkit-animation: scale-in-hor-center 0.5s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-in-hor-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

#title {
  width: 56%;
}
#subtitle {
  width: 60%;
  padding: 0;
}

.card-info:hover {
  border-bottom: 0.5em solid var(--primary);
  transform: translateY(-0.5em);
}

.card-pricing:hover {
  transform: translateY(-1em);
}
.footer-lock {
  padding: 0 9.5em;
}

@media (320px <= width < 780px) {
  h1 {
    font-size: 1em;
  }

  .box {
    flex-direction: column;
  }

  header {
    padding-top: 2em;
    padding-left: 0;
    padding-right: 0;
    .box {
      .col {
        width: 100%;
      }

      .col:nth-child(2) {
        display: none;
      }
    }

    #title,
    #subtitle {
      font-size: 1.8em;
      width: 100%;
    }
  }

  .card-info,
  .card-pricing {
    width: auto;
    height: 100%;
  }

  #flag {
    align-items: center;
    text-align: center !important;

    .col:nth-child(1) {
      text-align: center;
    }

    .box:nth-child(2) {
      flex-direction: row;
    }
  }

  .footer-lock {
    padding: 0 1em;
  }

  #FAQS {
    padding: 0;
  }

  details {
    max-height: 8em;
  }

  details[open] {
    max-height: -moz-available;
  }

  nav {
    h1 {
      display: none;
    }
    padding: calc(0.05 * var(--inner-padding)) 0;
    ul {
      padding: 0.5em;
      width: 100%;
    }
  }
}

/* ----------------------------------------------
 * Generated by Animista on 2025-12-28 14:17:30
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation scale-in-hor-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-in-hor-center {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}
@keyframes scale-in-hor-center {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    opacity: 1;
  }
}
