/* Normal desktop :1200px. */
@media (min-width: 1200px) and (max-width: 1500px) {


}


/* Normal desktop :992px. */
@media (max-width: 1200px) {
  .content h2 {
	font-size: 34px;
}
}
 
/* Tablet desktop :768px. */
@media  (max-width: 991px) {

}
 
/* small mobile :320px. */
@media (max-width: 767px) {
.content h2 {
	font-size: 25px;
}
.del-count ul li span {
	font-size: 45px;
}
.del-count ul {
	width: 100%;
    display: initial;
}
.del-count ul li {
	width: 50%;
	float: left;
	margin-bottom: 30px;
}
.del-count ul li::before {
	right: 0px;
	top: 16%;
}
.del-count ul li:nth-child(2):before{
display: none;
}
.form input {
	width: 100%;
}
}
 
/* Large Mobile :480px. */
@media only screen and (min-width: 480px) and (max-width: 767px) {
.container {width:450px}
.del-count ul {
	display: flex;
}
.del-count ul li::before {
	right: -23px;
	top: 23%;
}
.del-count ul li::before {
	right: -6px;
	top: 23%;
}
.del-count ul li:nth-child(2):before{
display: block;
}
}
