@import url('https://fonts.googleapis.com/css2?family=Tulpen+One&display=swap');

@font-face {
    font-family: montserrat;
    src: url('../assets/font/montserrat/Montserrat-VariableFont_wght.ttf');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: montserrat, sans-serif;
}

nav .navbar-brand {
    font-family: inspiration, sans-serif;
}

.banner {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../assets/images/contact.webp');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
}

.banner .heading {
    height: 40vh;
    width: 100%;
    font-size: 60px;
    letter-spacing: 15px;
}

.root {
    display: flex;
    justify-content: center;
}

.address {
    width: 50%;
}

#enquiry_form {
    width: 50%;
}

.common_padding {
    padding: 3% 5%;
}

form .container>div {
    display: flex;
    justify-content: center;
}

form .topic {
    width: 30%;
}

form .input {
    width: 70%;
}

form .input input,
form .input textarea {
    width: 100%;
}

.title {
    font-family: 'Tulpen One', cursive;
}




@media screen and (max-width: 767px) {
    .root {
        flex-direction: column;
    }

    .address {
        width: 100%;
    }

    #enquiry_form {
        width: 100%;
    }
}