::-webkit-scrollbar {
    display: none;
}
body{
  overflow-x: hidden;
}

.title{
    margin-top: 5%;
    text-align: justify;
}

.title h1 {
    font-size: clamp(3rem, 15vmin, 8rem);
    font-family: sans-serif;
    color: hsl(210 30% 24%);
    text-align: center;
    margin-top: 2%;
  }

  .title p{
    margin: 5% 10%;
  }
  
  .underlined {
  /*   background: red; */
    position: relative;
  }
  
  .underline-mask:after {
    content: '';
    position: absolute;
    top: 95%;
    width: 150%;
    aspect-ratio: 3 / 1;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 50%;
    border: 6px solid hsl(280 80% 50%);
    /* Use a conic gradient mask to hide and show the bits you want */
    --spread: 140deg;
    --start: 290deg;
    mask: conic-gradient(from var(--start), white 0 var(--spread), transparent var(--spread));
  }
  
  
  .underline-overflow {
    display: inline-block;
    /* A little extra padding and overflow hidden   */
    overflow: hidden;
    padding-bottom: clamp(1rem, 2vmin, 2rem);
  }
  .underline-overflow:after {
    content: '';
    position: absolute;
    top: 100%;
    height: 150%;
    aspect-ratio: 2.5 / 1;
    left: 50%;
    transform: translate(-50%, -10%);
    border-radius: 50%;
    border: 6px solid hsl(10 80% 50%);
  }
  
  .underline-clip:after {
    content: '';
    position: absolute;
    top: 95%;
    width: 150%;
    aspect-ratio: 3 / 1;
    left: 50%;
    transform: translate(-50%, 0);
    border-radius: 50%;
    border: 6px solid hsl(130 80% 50%);
    /* Use a clip-path to hide and show the bits you want */
    clip-path: polygon(0 0, 50% 50%, 100% 0);
  }

  .everything{
    margin: 0 10%;
    text-align: justify;
  }
  .visa-img{
    width: 60%;
    border-radius: 20px;
  }
  .img1{
    position: relative;
    z-index: 5;
    margin-left: 5%;
    margin-top: 15%;
  }
  .img2{
    margin-top: -5%;
    margin-left: 35%;
  }
  .kind{
    margin-top: 2%;
  }
  @media only screen and (min-width: 1300px) {
    .img1{
      position: relative;
      z-index: 5;
      margin-left: 5%;
      margin-top: 2%;
    }
}
@media only screen and (max-width: 1100px) {
  .img1{
    position: relative;
    z-index: 5;
    margin-left: 0%;
    margin-top: 25%;
  }
  .img2{
    margin-top: -5%;
    margin-left: 25%;
  }
  .visa-img{
    width: 75%;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 800px) {
  .visa-img{
    width: 50%;
    border-radius: 20px;
  }
  .img1{
    position: relative;
    z-index: 5;
    margin-left: 5%;
    margin-top: 0%;
  }
  .img2{
    margin-top: -5%;
    margin-left: 40%;
  }
  .title{
    margin-top: 8%;
  }
  .title h1{
    font-size: clamp(3rem, 11vmin, 8rem);
    margin-bottom: 3%;
  }
  .title p{
    margin: 5% 5%;
  }
  .everything {
    margin: 0 5%;
    text-align: justify;
}
}