@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;300;400;500&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
.contact-wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
}
.heading{
    padding: 30px 0px;
    font-size: 50px;
    color: #115ea6;
}
.contact-box{
    display: flex;
    width: 100%;
    min-height: 80vh;
    background-color: rgb(238, 238, 238);
    padding: 20px;
    box-shadow: 15px 15px 15px rgb(211, 208, 208);
    border-radius: 10px;
}
.left-contact{
    background-color: #115ea6;
    flex: 1;
    position: relative;
    overflow: hidden;
    color: white;
    padding: 50px;
    border-radius: 10px;
}
.left-contact h1{
    font-size: 35px;
    padding: 10px 0px;
}
.left-contact p{
    font-size: 20px;
    padding: 20px 0px;
}
.left-icon{
    padding: 20px 0px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.left-icon h3{
    z-index: 10;
   font-size: 20px;
    font-weight: 300;
}
.las{
    padding: 0px 10px;
    font-size: 30px;
}
.right-contact{
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width:1600px ) {
    .left-contact h1{
        font-size: 30px;
    }
    .left-contact p{
        font-size: 20px;
    }
    .left-icon h3{
        font-size: 20px;
    }
}
@media screen and (max-width:1200px ) {
   .contact-box{
       width: 90%;
   }
}
@media screen and (max-width:1100px ) {
    .left-contact{
        padding: 18px;
    }
    .left-contact h1{
        font-size: 18px;
    }
    .left-contact p{
        font-size: 15px;
    }
    .left-icon h3{
        font-size: 15px;
    }
    .las{
        font-size: 25px;
    }
    input,textarea{
        width: 300px;
    }
}
@media screen and (max-width:950px ) {
    .contact-box{
        flex-direction: column;
    } 
}
@media screen and (max-width:520px ) {
    .container-fluid Map{
        flex-direction:column;
        height: 200;
        width: 200;
    } 
}
@media screen and (max-width:420px ) {
    input,textarea{
        width: 250px;
    } 
}












