@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Montserrat:wght@300&display=swap');
.all-body {
    display: inline-flex;
    width: 100vw;
    height: 70%;
    margin-top: 0%;
}

#map {
    height: 70vh;
    width: 81.5vw;
    border-radius: 40px;
    float: right;
    position: absolute;
   
}

.inputs {
    float: left;
    width: 20vw;
    display: block;
    text-align: center;
    align-self: center;
    justify-self: center;
    height: 585px;

    /* width: 100vw; */
}

label {
    font-family: 'Montserrat', sans-serif;
    color: black;
    font-size: 18px;
}

.inputs input {
    border: 2px solid #17a2b8;
    border-radius: 20px 50px;
    text-align: center;
}

.inputs input:focus {
    border: 2px solid #17a2b8;
    text-align: center;
    outline: none;
    border: 1px solid green;
}

.inputs input:hover {
    border: green;
    outline: none;
    border: 2px solid green;
}

.querries {
    margin-top: 200px;
}


.map-area{
    width: 100vw;
    height: 75vh;
    margin-top: 30px;
    margin-bottom: 25px;
    border-radius: 40px;
}
  
  .slide-animation {
    animation: slideAnimation 0.5s forwards;
  }
  
  @keyframes slideAnimation {
    from {
      height: 300px; /* Initial height */
    }
    to {
      height: 180px; /* Target height */
    }
  }
  

  .reverse-slide-animation {
    animation: reverseSlideAnimation 0.5s forwards;
  }
  
  @keyframes slideAnimationMarginTop {
    from {
      margin-top: 300px; /* Initial height */
    }
    to {
      margin-top: 180px; /* Target height */
    }
  }
  
  .slide-animationMarginTop {
    animation: slideAnimationMarginTop 0.5s forwards;
  }
  

  .reverse-slide-animationMarginTop {
    animation: reverseSlideAnimationMarginTop 0.5s forwards;
  }
  
  @keyframes reverseSlideAnimation {
    from {
      height: 180px; /* Starting height */
    }
    to {
      height: 300px; /* Ending height */
    }
  }
  
  @keyframes reverseSlideAnimationMarginTop {
    from {
      margin-top: 180px; /* Starting height */
    }
    to {
      margin-top: 300px; /* Ending height */
    }
  }
  
#btn {
    margin-top: 30px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    background-color: #17a2b8;
    outline: #17a2b8;
    border: none;
    height: 35px;
}

#btn:hover {
    background-color: green;
}

.title {
    background-color: #17a2b8;
    font-family: 'Luckiest Guy', cursive;
    margin-bottom: 0%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100vw;
    height: 10vh;
    z-index: 9999999;
}

.title p {
    font-size: 40px;
    color: white;
    padding-left: 30px;
}

#msg {
    margin-top: 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: black;
}

.awesome-marker i {
    font-size: 18px;
    margin-top: 8px;
}

#menu-btn{
    display: none;
}


.search-box{
    font-family: 'Montserrat', sans-serif;
}

.search-box-mobile{display: none;}

.btun-small-screen{display: none;}

@media screen and (max-width:768px){

    .all-body {
        position:absolute;
        display: block;
        width: 100vw;
        height: 70%;
        margin-top: 0%;
    }


    #map {
        height: 700PX;
        width: 100%;
        float: right;
        padding-right: 18px;
        border: 1px solid black;
        border-radius: 30px 30px 0 0;
        position: absolute;
        margin-top: 300px;
        left: 0;
    }
    
    .inputs {
        float: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-self: center;
        justify-content: center;
        height: 300px;
        z-index: -9999999999;
        /* position:fixed; */
        transition: height 0.5s ease; /* Smooth transition for height change */
    }

    .querries {
        margin-top: 10px;
    }
    
    .buton-and-msg{
        width: 100%;
        display: block;
        text-align: center;
        align-self: center;
        justify-self: center;
    }

    .title p {
        font-size: 30px;
        color: white;
        padding-left: 10px;
        text-align: center;
        margin: 5px;
    }
    
    #menu-btn{
        margin: 15px;
        margin-top: 25px;
        display: flex;
    }
    
    .search-box{
        display: none;
    }
    .search-box-mobile{
       position: relative;
       z-index: 1000000;
       display: flex;
       margin-top: 100px;
       margin-right: 152px;
       float: right;
    }
    .btun-small-screen{display: flex;
    flex-direction: row;
    }
    .map-area{
      margin-top: 0px;
      margin-bottom: 0px;
      border-radius: 0;
    }
}