@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: 'Poppins';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
}

body {
    background: #021526;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    padding-top: 60px;
}

.quot-container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    height: 100vh;
    width: 100%;
    padding: 1% 10%;
}

.lefthero {
    width: 50%;
    /* height: 90vh; */
}

.lefthero img {
    height: 400px;
    width: 400px;
}

.quotatio-container {
    width: 50%;
    display: flex;
    flex-direction: column;
    /* justify-content: space-around; */
    align-items: center;
    /* height: 90vh; */
    height: 450px;
    backdrop-filter: blur(10px);
    padding: 24px 24px;
    border-radius: 24px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 10%, #1b252e 20%, #384d5e 40%, #384d5e 60%, #1b252e 80%, rgba(255, 255, 255, 0) 90%);
    box-shadow: inset 2px 2px 0px #2c4557, inset -2px -2px 0px #b0ffff;
}

.quotatio-container .qtitle {
    color: #fff;
    font-size: 1.8rem;
}
.quotatio-container form{
    width: 80%;
    padding: 1%;
}
.quotatio-container form label{
    color: #fff;
    
}
.quotatio-container form input , .quotatio-container form select {
    width: 100%;
    height: 2rem;
    border-radius: 5px;
    padding: 4px;
}
.qsub{ 
    color: #fff;
    backdrop-filter: blur(20px);
    box-shadow: inset 2px 2px 0px #2c4557, inset -2px -2px 0px #be0085;
    cursor: pointer;
    background: transparent;
    border-radius: 24px;
    padding: 6px;
}

@media (max-width: 991px) {
    .quot-container {
        height: 90vh;
        padding: 1% 5% ;
    }
    .lefthero {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .lefthero img {
        height: 300px;
        width: 300px;
    }
    .quotatio-container{
        backdrop-filter: none;
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 599px) {
   
    .quot-container {
        height: 100%;
        flex-direction: column;
        padding: 1% 5% ;
    }
    .lefthero {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .lefthero img {
        height: 200px;
        width: 200px;
    }
    .quotatio-container{
        width: 100%;
        height: 100%;
    }
    
}