@media (min-width: 1200px) {
.top-new {
    margin-top: 129px;
}
section#about {
    padding-top: 150px;
}
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {

.top-new {
    margin-top: 129px;
}
section#about {
    padding-top: 150px;
}
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {

.top-new {
    margin-top: 0px;
}
section#about {
    padding-top: 0px;
}
}
/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
.top-new {
    margin-top: 0px;
}
section#about {
    padding-top: 0px;
}
}

/* small Mobile :320px. */

@media only screen and (max-width: 479px) {
.top-new {
    margin-top: 0px;
}
section#about {
    padding-top: 0px;
}
}