*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Roboto, Arial, sans-serif;
}
html,body{
    width: 100%;
    height: 100%;
}
#form{
    width: 100%;
    height: 50vh;
    /* background-color: red; */
}
/*--------- Contact Details ------ */
.form-part{
    height: 90vh;
    width: 100%;
    background-color: #ffa37b;
    display: flex;
}
.form{
    width: 60%;
    align-items: center;
    display: flex;
    justify-content: center;
}
.form-details{
    width: 90%;
    background-color:white;
    height: 90%;
}
.form-details h1{
    text-align: center;
    margin-top: 5vh;
    font-family: Roboto, Arial, sans-serif;
    color:black;
}
.form-details .name{
    width: 100%;
    padding: 2vh 4vw;
    margin-bottom: 2vh;

}
.input {
    display: flex;
    gap: 2vw;
}
.name  h4{
    font-weight: 600;
    margin-bottom: 1.5vh;
}
.first{
    width: 50%;
}
.last{
    width: 50%;
}
#text{
    width: 100%;
    height: 15vh;
    padding: 2vw;
}
.name input{
    width: 100%;
    border-radius: 5px;
    border: 1px solid black;
    padding: 2vh 3vw;
}
#contact-main{
    /* background-color: black; */
    width: 40%;
    height: 100%;
    padding: 0vh 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
   
    /* margin-top: -40px; */
}
.details{
    background-color: white;
    width: 100%;
    padding: 1vh 2vw;
    height: 90%;
}
.box{
    display: flex;
    align-items: center;
    gap: 2vw;
    margin-top: 5vh;
    background-color:#ffa37b;
    color: white;
    padding: 2vh 4vw;
    border-radius: 15px;
    /* justify-content: center; */
}

.box-icon i{
    font-size: 2vw;
}
.details .box .box-contant >h2{
    /* margin-bottom: -2vh; */
    /* color: white; */
    font-size: 2vw;
    font-weight: 500;
}
.details .box .box-contant >p{
    line-height: 1.5;
    color: white;
}

#btn{
    border: none;
    border-radius: 15px;
    color: white;
    background-color: black;
}
.map{
    width: 100%;
    height:80vh;
      display:flex;
    align-items: center;
    justify-content: center;
}
iframe{
    width: 90%;
    height: 60vh;
}

/* For screens smaller than 600px wide */
@media (max-width: 600px) {

    .form-part{
        flex-direction: column;
    }
    .form{
        width: 100%;
    }
    .details{
        display: none;
    }
  }
  