  
  /************************************************* HOMEPAGE ***************************************************/
  /*Account Button*/


  .account-btn{
    margin: var(--size-300);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--size-200);
    border-radius: 16px;
    padding: var(--size-200);
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-450);
  }

  .account-btn{
    color: var(--clr-base-100);
    background-color: var(--secondary-color);
  }

  .account-btn svg{
    width: var(--size-600);
    fill: var(--primary-color);
    height: auto;
  }

  .account-svg-wrapper{
    background-color: var(--clr-base-100);
    height: auto;
    width: auto;
    border-radius: 50%; 
  }

  .account-btn:hover, 
  .account-btn:focus{
    background-color: var(--clr-base-100);
    color: var(--primary-color);
    cursor: pointer;
  }



  /* Navigation */
  
  .primary-header{
    position: sticky;
    top: 0px;
    z-index: 100;
    padding-top: var(--size-200);
    background-color: var(--clr-base-100);
  }

  .nav-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    align-items: center;
    font-size: var(--fs-nav);
  }

  .nav-list{
    background-color: var(--primary-color);
    width: 100vw;
  }

  .nav-list{
    padding: var(--size-200);
    font-size: var(--fs-nav);
    display: flex;
    justify-content: end;
    gap: clamp(var(--size-300), 5vw, var(--size-600));
    font-weight: var(--fw-semi-bold);
    list-style: none;
  }
  
  .nav-list a{
    padding: var(--size-200);
    color: var(--clr-base-100);
  }

  .nav-list a:hover,
  .nav-list a:focus{
    background-color: var(--secondary-color);
    border-radius: 8px;
    cursor: pointer;
  }

  .nav-list:last-child{
    padding-right: var(--size-600);
  }

  .nav-item-active{
    color: var(--clr-base-100);
    background-color: var(--secondary-color);
    text-decoration: none;
    border-radius: 8px;
  }

  .nav-upper{
    display: flex;
    width: 100vw;
    align-items: center;
    justify-content: space-between;
  }

  .nav-upper{
    padding-right: var(--size-800);
    padding-left: var(--size-800);
  }
  
  /*Carousel*/
  .swiper{

    --container-width: 100%;
    --container-height: 800px;

    position: relative;
    width: var(--container-width);
    height: var(--container-height);
    overflow: hidden;
    color: var(--clr-base-100)
  }

  .swiper-slide{
    font-size: var(--fs-200);
    background-color: var(--secondary-color);
    overflow: hidden;
  }

  .swiper-pagination{
    position: absolute;
    bottom: 2em !important;
  }

  .swiper-pagination-bullet{
    user-select: none;
    opacity: 1;
    background-color: var(--tertiary-accent-400);
    width: var(--size-300);
    height: var(--size-300);
    margin: 0.375rem;
  }

  .swiper-pagination-bullet-active{
    background-color: var(--primary-color);
  }

  .swiper-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgb(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 10px;
    font-size: 1.5rem;
    height: inherit;
    opacity: 0.3;
  }

  .swiper-btn-prev svg,
  .swiper-btn-next svg{
    width: var(--size-700);
    height: inherit;
  }

  .swiper-btn:hover,
  .swiper-btn:focus{
    opacity: 0.6;
  }

  .swiper-btn-prev{ 
    left: 2px;
    z-index: 10; 
  }
  .swiper-btn-next{ 
    right: 2px; 
    z-index: 10;
  }

  .slide-text{
    color: var(--clr-base-100);
    max-width: 15ch;
  }

  .slide-text-highlight{
    color: var(--primary-color);
  }


  /*Footer*/
  .footer-nav{
    height: 100px;
  }

  .footer-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: auto;
    height: inherit;
    background-color: var(--primary-color);
  }

  .footer-nav-list{
    padding: var(--size-200);
    font-size: var(--fs-nav);
    display: flex;
    justify-content: end;
    align-items: center;
    gap: clamp(var(--size-300), 5vw, var(--size-600));
    font-weight: var(--fw-semi-bold);
    list-style: none;
  }

  .footer-nav-list a{
    color: var(--clr-base-100);
  }

  .footer-nav-list li{
    opacity: 0.95;
  }

  .footer-nav-list li:last-of-type{
    padding-right: 32px;
  }

  .footer-nav-list a:hover,
  .footer-nav-list a:focus{
    color: var(--secondary-color);
    text-decoration: underline;
  }

  .footer-special{
    position: relative;
    left: 85%;
    bottom: 10%;
    display: flex;
    padding-right: var(--size-300);
    padding-bottom: var(--size-300);
    fill: var(--clr-base-100);
    align-items: center;
    opacity: 0.8;
  }

  .footer-special p{
    padding: 4px;
  }

  .footer-special svg{
    width: 16px;
    height: 16px;
  }

  /* Socials */
  .social-platform{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding-top: var(--size-500);  
  }

  .social-platform li{
    width: 64px;
    list-style: none;
  }

  .social-platform svg:hover,
  .social-platform svg:focus-within{
    fill: var(--secondary-color);
  }

  .social-platform svg{
    size: 32px;
    height: 32px;
    fill: var(--clr-base-100);
  }

  /*Content-Homepage(Specific)*/
  .circle-top{
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: var(--tertiary-accent-500);
    border-radius: 50%;
    opacity: 0.2;
    bottom: 77%;
    left: 74%;
  }

  .circle-bottom{
    position: absolute;
    width: 500px;
    height: 500px;
    background-color: var(--tertiary-accent-500);
    border-radius: 50%;
    opacity: 0.2;
    top: 78%;
    right: 74%;
  }

  .router-logo{
    width: 200px;
    height: auto;
    position: absolute;
    fill: var(--tertiary-accent-500);
    opacity: 0.2;
    top: 0%;
    right: 82%;
  }

  /*ids*/
  #slide-1-text-content{
    line-height: 1.25;
    font-size: var(--fs-900);
    font-weight: var(--fw-bold);
    z-index: 5;
    text-align: left;
    justify-content: space-evenly;
  }

  #slide-2-text-content{
    opacity: 1;
    position: relative;
    z-index: 5;
    top: 15%;
    left: 5%;
  }

  #slide-3-text-content{
    display: block;
    position: relative;
    grid-column: span 2;
  }

  #slide-3-text-content p:first-child{
    font-weight: var(--fw-bold);
    font-size: var(--fs-800);
    max-width: 16ch;
  }

  #slide-3-text-content p:last-of-type{
    font-size: var(--fs-400);
    font-weight: var(--fw-semi-bold);
  }

  #slide-3-text-content button{
    position: relative;
    left: 36rem;
    bottom: 0.5rem;
    font-size: var(--fs-500);
    font-weight: var(--fw-bold);
  }

  #slide-4-text-content{
    position: relative;
    z-index: 5;
    display: block;
  } 

  #slide-4-text-content p{
    align-self: center;
    padding-bottom: 4.2em;
    max-width: 20ch;
  }

  #slide-1-sm-rect{
    position: relative;
    top: 50px;
  }

  #slide-1-button{
    position: relative;
    top: 2.5rem;
    left: 8rem;
    font-size: var(--fs-500);
  }

  #slide-1-img{
    width: 525px;
    height: 525px;
    border-radius: 50%;
  }

  #home-slide-1{
    display: grid;
    grid-template-columns: 1fr 1fr;
    place-items: center;
    gap: 0.25rem;
    padding-left: var(--size-900);
  }

  #home-slide-2 {
    background: url('./assets/JPEG/pexels-mikoto-3367850.jpg');
    background-size: cover;
    background-position: center;
  }

  #home-slide-2{
    font-size: var(--fs-400);
  }

  #home-slide-3{
    padding: var(--size-200);
    display: grid;
    justify-content: space-around;
    gap: 0.5rem;
    grid-template-columns: 1fr 1fr 1fr;
    place-items: center;

    /* Background*/
    background: url('./assets/JPEG/pexels-cottonbro-5999682.jpg');
    background-size: cover;
    background-position: center 45%;
  }

  #home-slide-4{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    place-items: center; 
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  }

  #home-slide-4-img{
    position: relative;
    bottom: 6rem;
    width: 35vw;
    height: 55vh;
    border-radius: 32px;
  }

  #slide-2-btn{
    position: relative;
    top: 120px;
    left: 120px;
    padding: 0.4em;
    font-size: var(--fs-500);
    font-weight: var(--fw-bold);
  }

  #home-static-content-1{
    width: 90vw;
    height: 800px;
    background: url("./assets/JPEG/woman-using-phone-car.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }

  #home-static-content-1 div:first-of-type{
    position: relative;
    left: 4rem;
  }

  #home-static-content-1 p{
    padding-left: var(--size-1000);
    padding-top: var(--size-300);
    max-width: 18ch;
  }

  /* shapes */
  .sm-rect-white{
    width: 500px;
    height: 8px;
    background-color: var(--clr-base-100);
  }

  .sm-rect-vertical{
    width: 8px;
    height: 80%;
    background-color: var(--primary-color);
    align-self: center;
  }
  /*text*/
  .text-highlight{
    font-size: var(--fs-900);
    font-weight: var(--fw-semi-bold)
  }

  .text-content{
    font-size: var(--fs-500);
  }

  /*Utiliy Classes*/
  .vanished{
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip-path: rect(0px 0px 0px 0px round 0%);
    white-space: nowrap;
    border: 0;
  }

  /*Temporary To change width of container */
  .container{
    /*padding can change*/
    --max-width: 1920px;
    --container-padding: 0.2rem;

    width: min(var(--max-width), 100% - (var(--container-padding) * 2));
    margin-inline: auto;
    overflow: hidden;
  }

  @media (max-width: 700px) {
    .inverted-button{
      width: 8.5rem !important;
      height: 3rem !important;
    }

    .swiper{
      height: 350px;
    }

    .swiper-btn{
      width: 35px;
    }

    .swiper-pagination{
      bottom: 0.5em !important;
    }

    .swiper-pagination-bullet{
      width: var(--size-200);
      height: var(--size-200);
    }

    .text-highlight{
      min-width: 16ch;
      font-size: clamp(var(--fs-400), 8vw, var(--fs-600));
    }

    .text-content{
      font-size: clamp(var(--size-400), 2vw, var(--fs-500));
    }
    
    #home-slide-1{
      padding-left: var(--size-600);
    }

    #home-slide-1 span{
      min-width: 16ch;
      font-size: clamp(var(--fs-400), 10vw, var(--fs-600));
     }

    .sm-rect-white{
      bottom: 0;
      width: 200px;
      height: 2px;
     }

     #slide-1-sm-rect{
      top: 0;
     }

     #slide-1-button{
       font-size: var(--fs-300);

       top: 0.75em;
       left: 2em; 
     }

     #slide-1-img{
       position: relative;
       right: 3.5em;
       width: clamp(50px, 150px, 250px);
       height: clamp(50px, 150px, 250px);
     }

     #slide-2-text-content{
      left: 2.5em;
     }

     #slide-2-btn{
       left: 0;
      font-size: var(--fs-200);
     }

  }
