/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
 
@import url('https://fonts.googleapis.com/css2?family=Funnel+Display:wght@300..800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Anek+Latin:wght@100..800&display=swap');


$heading-font: 'Funnel Display', sans-serif;
$heading-font-2: 'Anek Latin', sans-serif; 
$body-font: 'DM Sans', sans-serif;

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

body {
    font-family: $body-font;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    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: $white;
	outline: none;
}

input{
	color: $white;
}

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

h1 {
	font-size: 88px;
	font-weight: 800;
	line-height: 97%;

	@include breakpoint(max-xl4){
		font-size: 78px;
	}

	@include breakpoint(max-xxxl){
		font-size: 70px;
	}

	@include breakpoint(max-xxl){
		font-size: 60px;
		line-height: 110%;
	}

	@include breakpoint(max-xl){
		font-size: 55px;
	}

	@include breakpoint(max-lg){
		font-size: 60px;
	}

	@include breakpoint(max-md){
		font-size: 55px;
	}

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

	@include breakpoint(max-xxs){
		font-size: 36px;
	}
}

h2 {
	font-size: 46px;
	font-weight: 700;
	line-height: 129%;

	@include breakpoint(max-xxl){
		font-size: 45px;
	}

	@include breakpoint(max-xl){
		font-size: 45px;
	}

	@include breakpoint(max-lg){
		font-size: 40px;
	}

	@include breakpoint(max-md){
		font-size: 38px;
	}

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

h3 {
	font-size: 28px;
	font-weight: 600;
	line-height: 145%;

	@include breakpoint(max-xl){
		font-size: 20px;
	}
}

h4 {
	font-size: 24px;
	font-weight: 500;
	line-height: 150%;

	@include breakpoint(max-xl){
		font-size: 20px;
	}
}

h5 {
	font-size: 18px;
	font-weight: 500;
	line-height: 167%;
}

h6 {
	font-size: 14px;
	font-weight: 600;
}

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

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

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

