/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */


$heading-font: 'Teko', sans-serif;
$body-font: "Poppins", sans-serif;


//font-family: "Font Awesome 6 Free";
$fa: "Font Awesome 6 Pro";

body {
    font-family: $body-font;
    font-size: 16px;
    font-weight: 400;
    line-height: 30px;
    color: $text-color;
    background-color: $white;
	padding: 0;
	margin: 0;
	overflow-x: hidden;
}



ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

button {
    border: none;
    background-color: transparent;
	padding: 0;
}

input:focus{
	color: $text-color;
	outline: none;
}

input{
	color: $text-color;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: $heading-font;
    margin: 0px;
	padding: 0;
    color: $header-color;
	text-transform: uppercase;
	@include transition;
}

h1 {
	font-size: 40px;
	font-weight: 600;
	line-height: 80%;
}

h2 {
	font-size: 32px;
	line-height: 89%;
	font-weight: 500;

	@include breakpoint(max-xl){
		font-size: 70px;
		line-height: 100%;
	}

	@include breakpoint(max-md){
		font-size: 65px;
		line-height: 100%;
	}

	@include breakpoint(max-sm){
		font-size: 60px;
	}
}
h3 {
	font-size: 28px;
	font-weight: 400;

	@include breakpoint(max-sm){
		font-size: 34px;
	}
}

h4 {
	font-size: 24px;
	font-weight: 600;
}

h5 {
	font-size: 20px;
	font-weight: 800;
}

h6 {
	font-size: 16px;
	font-weight: 600;
	line-height: 145%;
}

a {
    text-decoration: none;
    outline: none !important;
    cursor: pointer;
    color: $header-color;
	@include transition;
}

p {
    margin: 0px;
	@include transition;
}

span {
	margin: 0px;
	@include transition;
}

