* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
	font-family:'Inter', sans-serif;
    color: #000;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6{
    font-family:'Poppins', sans-serif;
}

img {
    width: 100%;
    display: block;
}

img:is([sizes=auto i], [sizes^="auto," i]) {
    contain-intrinsic-size: none;
}

a {
    text-decoration: none;
}

.container {
    width: 1400px;
    max-width: 100%;
    margin: auto;
    padding: 0 15px;
}