/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {


}


/* Normal desktop :992px. */
@media (min-width: 992px) and (max-width: 1200px) {


}

 
/* Tablet desktop :768px. */
@media (min-width: 768px) and (max-width: 991px) {


}

 
/* small mobile :320px. */
@media (max-width: 767px) {

 
}
 
/* Large Mobile :480px. */
@media only screen and (min-width: 375px) and (max-width: 667px) {
	.frmbg {
    background-color: #f5f5f5;
    border-radius: 7px;
    position: relative;
    padding: 30px 15px;
    margin: 0px !important;
}
	.box2{
    margin-left: 0px !important; 
    margin-top: 0px !important; 
}
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
.container {width:450px}
 
}
