@font-face {
  font-family: 'PT Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/pt-sans-v12-latin-regular.eot'); /* IE9 Compat Modes */
  src: local('PT Sans'), local('PTSans-Regular'),
       url('../fonts/pt-sans-v12-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('../fonts/pt-sans-v12-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
       url('../fonts/pt-sans-v12-latin-regular.woff') format('woff'), /* Modern Browsers */
       url('../fonts/pt-sans-v12-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
       url('../fonts/pt-sans-v12-latin-regular.svg#PTSans') format('svg'); /* Legacy iOS */
}

body {
	font-family: 'PT Sans', 'Sans';
}

.bg {
  background-image:  url("../../img/helps-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}


h1 {
  color: #fff33b;
}


h1 span {
  background-color: rgba(255, 0, 0, 0.1);
  display:inline-block;
  padding: .25em;
}

.gy {
  background-color: rgba(0, 0, 0, 0.3);
  padding: .4em;

}

.fadeit {
  
   transition: background-color .25s ease-in-out;
   -moz-transition: background-color .25s ease-in-out;
   -webkit-transition: background-color .25s ease-in-out;
}

.fadeit:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

h5 {
	font-weight: bold;
}

a:hover {
  text-decoration: none;
  font-weight: normal;
}

a {
   font-weight: normal;
}

.p1 {
  color: #f58c89;

}

.p2 {
 color: #89d0c7;

}

.p3 {
 color: #ec008c;

}

/*media queries */

@media (max-width: 575.98px) {

    h1 {
      font-size: 3em;
     
    }
}


@media (min-width: 576px) and (max-width: 767.98px) { 

    h1 {
      font-size: 4em;
     
    }
}


@media (min-width: 768px) and (max-width: 991.98px) { 

    h1 {
      font-size: 5em;
     
    }
}


@media (min-width: 992px) and (max-width: 1199.98px) {

    h1 {
      font-size: 8em;
     
    }
 }

@media (min-width: 1200px) {

    h1 {
      font-size: 8em;
     
    }
 }


