@font-face {
	font-family: 'icomoon';
	src:  url('fonts/icomoon.eot?b2om2p');
	src:  url('fonts/icomoon.eot?b2om2p#iefix') format('embedded-opentype'),
	url('fonts/icomoon.ttf?b2om2p') format('truetype'),
	url('fonts/icomoon.woff?b2om2p') format('woff'),
	url('fonts/icomoon.svg?b2om2p#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;

    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.5;

    color: #13212f;
    background: #fff;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


/* =========================================================
   MEDIA
========================================================= */

img,
svg,
video,
canvas {
    display: block;
    max-width: 100%;
    height: auto;
}


/* =========================================================
   TYPO
========================================================= */

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
blockquote,
figure {
    margin: 0;
    padding: 0;
}

h1 strong,
h2 strong,
h3 strong,
h4 strong,
h5 strong,
h6 strong {
  font-weight: 900;
}

ul,
ol {
    padding-left: 1.4em;
}

a {
    color: inherit;
    text-decoration: none;
}

strong {
    font-weight: 700;
}


/* =========================================================
   FORMS
========================================================= */

form {
    margin: 0;
}

input,
textarea,
button,
select {
    font: inherit;
}

textarea {
    resize: vertical;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}


/* =========================================================
   TABLES
========================================================= */

table {
    width: 100%;
    border-collapse: collapse;
}


/* =========================================================
   HELPERS
========================================================= */

.container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
}

.hidden {
    display: none !important;
}

.visually-hidden {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.text-center {
    text-align: center;
}

.clear {
    clear: both;
}


/* =========================================================
   FLEX HELPERS
========================================================= */

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =========================================================
   GRID HELPERS
========================================================= */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


/* =========================================================
   ICONS
========================================================= */

.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    font-family: 'icomoon';
    font-style: normal;
    font-weight: normal;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:900px) {

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

}