@charset "utf-8";
/* CSS Document */

@font-face {
font-family: PoppinsExtraBold;
src: url(../fonts/Poppins-ExtraBold.ttf);
}

@font-face {
font-family: PoppinsBold;
src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
font-family: PoppinsLight;
src: url(../fonts/Poppins-Light.ttf);
}

@font-face {
font-family: PoppinsItalic;
src: url(../fonts/Poppins-BoldItalic.ttf);
}

@font-face {
font-family: PoppinsList;
src: url(../fonts/Poppins-Italic.ttf);
}

h1 {
  font-family: "PoppinsExtraBold";
}

h2, h3, h4, h5, h6, .bold {
  font-family: "PoppinsBold";
}

p {
  font-family: "PoppinsLight";
}

.italic {
  font-family: "PoppinsItalic";
}

.list {
  font-family: "PoppinsList";
}

.link:hover {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
	-webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}