
html, body {
	overflow-x: hidden;
}
html{
    scroll-behavior: smooth;
}

body {	
    color: var(--pi-body-color);
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
	transition: .5s;
    font-family: var(--pi-body-fonts);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--pi-heading-color);
    font-family: var(--pi-title-fonts);
    line-height: 32px;	
    font-weight: 700;
    -webkit-transition: .5s;
    transition: .5s;
}
a{
     color: var(--pi-heading-color);
     -webkit-transition: all 0.3s ease-out 0s;
     transition: all 0.3s ease-out 0s;
	 text-decoration: none;
}
a:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
}
.uppercase {
    text-transform: uppercase;
}
.capitalize {
    text-transform: capitalize;
}
h1 {
    font-size: 96px;
}
h2 {
    font-size: 48px;
}
h3 {
    font-size: 36px;
}
h4 {
    font-size: 32px;
}
h5 {
    font-size: 24px;
}
h6 {
    font-size: 20px;
}
ul {
    margin: 0px;
    padding: 0px;
}
li{
    list-style: none;
}
input:focus, button:focus {
    border-color: transparent;
    outline-color: transparent;
    outline: 0;
}
textarea:focus{
	border-color:transparent;
	outline-color:transparent;
}
label {
    color: #616161;
    cursor: pointer;
    margin-bottom: 10px;
}
a,i, cite, em, var, address, dfn,ol,li,ul{
	font-style:normal;
	font-weight:400;
}
::-moz-placeholder {
    color: #666;
    font-size: 12px;
}
::-webkit-input-placeholder {
    color: #666;
    font-size: 12px;
}
:-ms-input-placeholder {
    color: #666;
    font-size: 12px;
}
::placeholder {
    color: #666;
    font-size: 12px;
}
.pt-100{
    padding-top: 100px;
} 
.pb-100{
    padding-bottom: 100px;
}
