/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1199px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 991px) {
	.header.sect .logo {
		margin-bottom: 15px;
	}
	.header.sect .name {
		margin-top: 10px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 767px) {
	input[type="text"],
	textarea,
	input[type="number"],
	select.form-select {
		padding-top: 13px;
		padding-bottom: 13px;
	}
	.header.sect {
		text-align: center;
	}
	.main.sect h2 {
		font-size: 20px;
	}
	.main.sect .group {
		padding: 15px;
	}
	.admin.sect {
		padding-top: 30px;
		padding-bottom: 50px;
	}
}

@media only screen and (max-width : 575px) {		

}

@media only screen and (max-width : 374px) {			

}

/*==========  Mobile First Method  ==========*/

@media only screen and (min-width : 576px) {  

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}
/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {	 

}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	.container {
		max-width: 1140px;
	}
}