@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');



*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
    font-family: IBM Plex Sans;
}
body, html{
  overflow-x: hidden;
  touch-action: pan-y;
  scroll-behavior: smooth;
}

body{
  background-color: #fff;
}

/*NAV*/
.navbar {
    position: fixed;
    width: 100vw;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    backdrop-filter: blur(15px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
}

  .nav-left {
    
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: IBM Plex Sans;
  }
  
  .nav-left img {
    width: 40px;
    height: 40px;
    object-fit: cover;
  }
  .nav-left a{
    text-decoration: none;
    color: #111b34;
  }
  
  .name {
    font-weight: 600;
    font-size: 18px;
  }
  
  .nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #111b34;
    font-weight: 400;
    font-family: IBM Plex Sans;
    transition: 0.15s ease-in;
  }

  .nav-links a:hover{
    color: #0e74ff;
  }
  
  #cta {
    padding: 10px 16px;
    background: #0e74ff;
    color: white;
    border-radius: 20px;
      transition: 0.15s ease-in;
  }

  #cta:hover{
    background-color: #000000;
  }

.landing{
  height: 100vh;
  width: 100%;
  display: flex;
  background-color: #f8fafc;
}

  .half{
    height: 100%;
    width: 50%;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    padding-top: 100px;
  }
  .half2{
    height: 100%;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

.landing-img-container {
  position: relative;
  width: 75%;
  height: 75%;
  padding: 8px;
  border-radius: 50px;
  background: #ffffff;

  display: flex;
}
  
  .landing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 45px;
    box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 6px 18px rgba(0, 0, 0, 0.15);
  }

  .icon-bottom-left {
  position: absolute;
  bottom: -20px;
  left: -20px;
  z-index: 10;
  width: 100px;
  height: 100px;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  padding: 8px;
      box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.04),
    0 6px 18px rgba(0, 0, 0, 0.452);
}

  .hospital{
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .tag{
    width: 180px;
    height: 20px;
    color: #0e74ff;
    background-color: #ffffff;
    display: flex;
    align-items: column;
    justify-content: center;
    align-items: center;
    border: #0e74ff 1px solid;
    border-radius: 10px;
    font-size: small;
  }
  .tag:hover{
    background-color: #cbdef7;
  }

  .hero-title {
    font-size: 5rem;
    line-height: 1em;
    color: #111b34;
    font-weight: 700;
  }
  
  .word-wheel {
    display: inline-block;
    height: 1em;
    overflow: hidden;
    vertical-align: bottom;
  }
  
  .words {
    display: flex;
    flex-direction: column;
    animation: roll 3s infinite;
  }
  
  .words span {
    overflow: hidden;
    color: #0e74ff;
    height: 1em;
    line-height: 1em;
    display: block;
  }

  .half p {
    color: #888795;
    font-size: 1.2rem;
  }

  .button-container{
    width: 100%;
    height: 60px;
    display: flex;
    gap: 1rem;
  }

  .button-container a {
    text-decoration: none;
  }

  .V{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0e74ff;
    color: #fff;
    border: 0px;
    width: 190px;
    height: 45px;
    font-size: 1rem;
    border-radius: 60px;
    transition: 0.2s ease-in;
  }

  .V:hover{
    background-color: #000000;
    color: #ffffff;
    border: 1px solid #111b34;
  }

  .L{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #111b34;
    color: #111b34;
    width: 170px;
    height: 45px;
    font-size: 1rem;
    border-radius: 60px;
    transition: 0.1s ease-in;
  }

  .L:hover{
    background-color: #ffffff;
    border: 3px solid #0e74ff;
  }

/*responsive*/

@media (min-width: 1024px) {
  .hideOnDesktop {
      display: none;
  }
}

@media(max-width: 1024px){
  .hideOnMobile, #hideOnMobile{
      display: none;
  }
  body{
      background-color: #fff;
  }

  .landing{
      flex-direction: column;
      height: 200vh;
  }

  .half{
      height: 50%;
      width: 100%;
      padding-left: 8px;
      padding-top: 10px;
  }
  .half2{
      height: 25%;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
  }

  .landing-img-container{
      width: 60%;
  }
}

@media (max-width: 500px) {

  .landing{
    height: auto;
    padding-top: 70px;
    padding-bottom: 60px;
  }

  .icon-bottom-left{
    height: 70px;
    width: 70px;
  }
  .icon-bottom-left2{
    display: none;
  }

}

.filler{
    height: 100vh;
    width: 100%;
    background-color: #ffffff;
}





@keyframes roll {
  0%   { transform: translateY(0); }
  20%  { transform: translateY(0); }

  30%  { transform: translateY(-1em); }
  50%  { transform: translateY(-1em); }

  60%  { transform: translateY(-2em); }
  80%  { transform: translateY(-2em); }

  100% { transform: translateY(-3em); }
}
