/*Mobile*/
@layer default {
  .wrapper {
    padding-block: 1rem;
  }

  .section-coming-soon {
    overflow: hidden;
  }

  .section-coming-soon .y-stroke {
    position: absolute;
    top: -80%;
    left: -10%;
    width: 30%;
  }

  .section-coming-soon .y-stroke img {
    transform: scaleX(-1);
  }

  .section-coming-soon .wave-stroke {
    position: absolute;
    top: -7%;
    right: -4%;
    width: 20%;
  }

  .section-coming-soon .wave-stroke img {
    transform: rotate(90deg);
  }

  .coming-soon {
    display: grid;
    gap: 1.2rem;
    grid-template-columns: 1fr;
  }

  .coming-soon .img-box img {
    width: clamp(120px, 20vw, 180px);
    height: auto;
  }

  .coming-soon .lockup h1 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 2.4rem;
    gap: 0.6rem;
    align-items: center;
    font-size: clamp(var(--fs-2), 15vw, var(--fs-6));
  }

  .coming-soon .lockup h1 .cir {
    position: relative;
    width: max-content;
  }

  .coming-soon .lockup h1 .cir img {
    position: absolute;
    width: 100%;
    top: 56%;
    left: 48%;
    transform: translate(-50%, -50%);
    z-index: -1;
  }

  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  form .form-top {
    display: flex;
    align-items: center;
    width: 100%;
  }

  input {
    all: unset;
    border: 2px solid var(--primary-color);
    width: 100%;
    border-radius: var(--border-radius-1);
    padding: var(--button-padding);
  }

  input::placeholder {
    color: rgb(0, 0, 0);
    opacity: 0.8;
  }

  .mc4wp-alert {
    position: absolute;
    left: 50%;
    top: 0%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    user-select: none;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .mc4wp-alert.active {
    top: 10%;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mc4wp-alert.mc4wp-error {
    background-color: red;
    color: white;
    border: 1px solid red;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
  }

  .mc4wp-alert.mc4wp-success {
    background-color: var(--primary-color);
    color: white;
    border: 1px solid var(--primary-color);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
  }

  .footer-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: relative;
    overflow: clip;
  }

  .footer-cnt .b-stroke {
    position: absolute;
    bottom: -10%;
    left: -4%;
    width: 5%;
    transform: rotate(50deg);
  }

  .footer-cnt .btm {
    display: flex;
    justify-content: center;
    background-color: white;
    text-align: center;
    width: 100%;
  }

  .footer-cnt .btm .btm-cnt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    width: 100%;
    padding-block: 0.4rem;
  }

  .footer-cnt .btm .btm-cnt .s-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    position: relative;
  }

  .footer-cnt .btm .btm-cnt .s-box .arr-color {
    position: absolute;
    left: 75%;
    bottom: 105%;
    width: 40%;
  }

  .footer-cnt .btm .btm-cnt p {
    font-size: clamp(0.6rem, 2vw, var(--fs-1));
  }

  .footer-cnt .btm .btm-cnt .social {
    display: flex;
    justify-content: end;
    gap: 0.8rem;
    transform: translateY(0px);
  }

  .footer-cnt .btm .btm-cnt .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 100px;
    position: relative;
    color: var(--primary-color);
    transition: all 0.3s;
    cursor: pointer;
    transform: translateY(0px);
    text-decoration: none;
  }

  .footer-cnt .btm .btm-cnt .social .icon-insta {
    background: radial-gradient(
      circle at 30% 107%,
      #fdf497 0%,
      #fdf497 5%,
      #fd5949 45%,
      #d6249f 60%,
      #285aeb 90%
    );
  }

  .footer-cnt .btm .btm-cnt .social .icon-fb {
    background-color: #1877f2;
  }

  .footer-cnt .btm .btm-cnt .social .icon-linkedIn {
    background-color: #0077b5;
  }

  .footer-cnt .btm .btm-cnt .social a::before {
    content: "";
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: solid 3px var(--primary-color);
    position: absolute;
    z-index: 0;
    transition: all 0.4s;
  }

  .footer-cnt .btm .btm-cnt .social a i {
    font-size: 1.5rem;
    z-index: 100;
  }
}

/*Tablets*/
@media (min-width: 768px) {
  .coming-soon {
    gap: 2rem;
  }
  .coming-soon .lockup h1 {
    flex-direction: row;
  }

  .form-top {
    flex-direction: row;
    justify-content: center;
  }

  input {
    width: 300px;
  }
}

/*desktop*/
@media (min-width: 1028px) {
  h1 {
    font-size: clamp(var(--fs-6), 10vw, var(--fs-9));
  }

  .lockup p {
    font-size: var(--fs-1);
  }

  .coming-soon {
    text-align: center;
    padding-top: 4.8rem;
  }

  .coming-soon .img-box {
    display: flex;
    justify-content: center;
    position: relative;
  }

  .coming-soon .img-box .hero-logo {
    width: clamp(140px, 10vw, 200px);
  }

  input {
    width: 320px;
    text-align: left;
  }

  .buttons {
    justify-content: center;
  }

  .footer-cnt .btm .btm-cnt .s-box .arr-color {
    position: absolute;
    left: 80%;
    width: 40%;
  }
}

/*Large Screens*/
@media (min-width: 1440px) {
  .wrapper {
    max-width: 1200px;
  }

  .coming-soon .lockup h1 {
    font-size: clamp(var(--fs-2), 15vw, var(--fs-8));
  }
}

@layer transition {
  @media (width > 1028px) {
    .footer-cnt .btm .btm-cnt .social a:hover {
      transform: translateY(-5px);
      color: white;
    }

    .footer-cnt .btm .btm-cnt .social a:hover::before {
      width: 0px;
      height: 0px;
      opacity: 0;
    }
  }

  .footer-cnt .btm .btm-cnt .social a:active {
    transform: translateY(5px);
    color: white;
  }

  @media (width < 1028px) {
    .footer-cnt .btm .btm-cnt .social a:active::before {
      width: 0px;
      height: 0px;
      opacity: 0;
    }
  }
}
