* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Rubik', sans-serif;
}

body {
    margin: 0px auto;
    width: 100vw;
    max-width: 1920px;
    background-color: lightgray;
    overflow: hidden;
    overflow-y: visible;
    height: 100vh;
    min-height: 640px;
}


/*Header Styling  Begins*/

header {
    width: 100%;
    height: 225px;
    position: relative;
    z-index: 1000;
    background-image: url("../images/pattern-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    overflow-y: visible;
}


/* Header Styling End */


/* Title Styling  */

.title {
    padding: 25px 0px;
}

.title p {
    color: white;
    font-size: 20px;
}


/* Title Styleing Ends here */


/* Search-Bar Styling */

.searchBar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    margin-bottom: 20px;
}


/* Search-Bar Styling Ends */


/* Input Styling */

input {
    height: 45px;
    width: 85%;
    border: 0px;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    padding-left: 20px;
    outline: none;
    font-size: 18px;
}


/* Input Styling End */


/* Styling of Button */

button {
    height: 45px;
    width: 25%;
    border: 0px;
    background-color: black;
    color: white;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    outline: none;
    cursor: pointer;
}


/* Styling of Button End */


/* info_section Styling */

.info_section {
    width: 80%;
    background-color: white;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-content: center;
    justify-content: space-between;
    padding: 10px 0px;
    border-radius: 10px;
}


/* info_section Styling End */

.info_wrapper {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.info_wrapper h2 {
    margin-bottom: 10px;
    font-size: 10px;
    color: gray;
}

main {
    width: 100%;
}

#map {
    min-height: 430px;
}

::placeholder {
    font-size: small;
}


/* Responsiveness */

@media only screen and (min-width:576px) {
    .searchBar {
        width: 50%;
    }
    .info_section {
        width: 50%;
    }
}

::placeholder {
    font-size: small;
}

@media only screen and (min-width:768px) {
    .searchBar {
        width: 30%;
    }
    .info_section {
        width: 30%;
    }
}

::placeholder {
    font-size: small;
}

@media only screen and (min-width:992px) {
    header {
        background-size: 100% auto;
    }
    .searchBar {
        width: 40%;
    }
    input {
        width: 90%;
    }
    button {
        width: 10%;
    }
    .info_section {
        height: 120px;
        padding-top: 25px;
        padding-bottom: 25px;
        width: 80%;
        flex-direction: row;
        justify-content: space-evenly;
        border-radius: 10px;
    }
    .info_wrapper {
        height: 86px;
    }
     ::placeholder {
        font-size: small;
    }
    .info_section div {
        width: 25%;
        padding-right: 20px;
        padding-left: 20px;
        border-right: 1px solid lightgray;
        text-align: center;
    }
    .isp {
        border: none;
    }
}

button {
    height: 45px;
    width: 25%;
    border: 0px;
    background-color: black;
    color: white;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
    outline: none;
    cursor: pointer;
}