@import url('https://fonts.googleapis.com/css2?family=Anybody:ital,wght@0,100..900;1,100..900&family=DynaPuff:wght@400..700&display=swap');

body {
	font-family: "Anybody", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #f9f9f9;
    color: #333446;
	font-size: 18px;
}

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

h1 {
	font-size: 50px;
	font-weight: 800;
}

h2 {
	font-size: 48px;
}

h3 {
	font-size: 40px;
}

h4 {
	font-size: 32px;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	padding: 0;
	font-family: "DynaPuff", system-ui;
}

p { margin: 0; padding: 0; }

/* HEADER */

header {
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	z-index: 10001;
}

header .wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
}

header .wrapper .logo {
	width: 200px;
}

header .wrapper .logo img {
	width: 100%;
}

header .wrapper nav {
	margin-left: auto;
}

header .wrapper nav ul {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

header .wrapper nav ul li {
	position: relative;
}

header .wrapper nav ul li a {
	text-decoration: none;
	font-weight: 600;
    color: #fff;
	transition: .2s;
}

.hero {
	height: 100vh;
	min-height: 650px;
	background-image: url(../img/bg-1.jpg);
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}

.hero .wrapper {
	height: 100vh;
	display: flex;
	justify-content: center;
	flex-direction: column;
	max-width: 550px;
}

.hero .wrapper h1 {
	color: #fff;
}

.hero .wrapper ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.hero .wrapper ul li {
	color: #fff;
}

.disconts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.disconts .item {
	display: flex;
	flex-wrap: wrap;
	padding: 15px 50px;
}

.disconts .item:first-child {
	background-color: #ffeded;
}

.disconts .item:last-child {
	background-color: #edffed;
}

.disconts .item .details p {
	margin: 15px 0;
}

.disconts .item .details a.btn-1 {
	background-color: #fff;
	border-radius: 35px;
	color: #000;
}


.pos-rel { position: relative !important; }
..pos-rel.pos-rel-3 { z-index: 3 !important; }
.pt50 { padding-top: 50px !important; }
.pt100 { padding-top: 100px !important; }
.pt150 { padding-top: 150px !important; }
.pb50 { padding-bottom: 50px !important; }
.pb100 { padding-bottom: 100px !important; }
.pb150 { padding-bottom: 150px !important; }
.mb15 { margin-bottom: 15px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb20 { margin-bottom: 20px !important; }
.mt20 { margin-top: 20px !important; }
.mt30 { margin-top: 30px !important; }
.mt50 { margin-top: 50px !important; }
.g-6 { --bs-gutter-x: 4rem; }
iframe { height: 750px; }

@media (min-width: 0px) and (max-width: 991px) {
	
	header .wrapper nav {
		display: none;
	}
	
	.m-mt20 { margin-top: 20px !important; }
	.m-mt30 { margin-top: 30px !important; }
	
}

@media (min-width: 1200px) {
	
}