@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --fontFamily: "Inter", system-ui;
  --regular: 450;
  --medium: 550;
  --semiBold: 650;
  --bold: 700;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-style: normal;
  font-optical-sizing: auto;
}

html {
  scroll-behavior: smooth;
}
.container {
  max-width: 1320px;
  padding: 0px 20px;
  margin: 0 auto;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

img {
  width: 100%;
}

p {
  font-size: 14px;
  font-weight: var(--regular);
  line-height: 22px;
  color: var(--color10);
}

/* ============== start flex ============== */
.flex {
  display: flex;
}
.hidden {
  display: none;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-row {
  flex-direction: row;
}
.flex-column {
  flex-direction: column;
}
.items-center {
  align-items: center;
}
.items-end {
  align-items: end;
}
.items-start {
  align-items: start;
}
.justify-start {
  justify-content: start;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: end;
}
.justify-around {
  justify-content: space-around;
}
.justify-between {
  justify-content: space-between;
}

/* ============== start flex ============== */

/* ============== start grid ============== */
.grid {
  display: grid;
}

.grid-col-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-col-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-col-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-col-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-col-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-col-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-col-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-col-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-col-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-col-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-col-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-col-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.col-span-1 {
  grid-column: span 1 / span 1;
}

.col-span-2 {
  grid-column: span 2 / span 2;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.col-span-4 {
  grid-column: span 4 / span 4;
}

.col-span-5 {
  grid-column: span 5 / span 5;
}

.col-span-6 {
  grid-column: span 6 / span 6;
}

.col-span-7 {
  grid-column: span 7 / span 7;
}

.col-span-8 {
  grid-column: span 8 / span 8;
}

.col-span-9 {
  grid-column: span 9 / span 9;
}

.col-span-10 {
  grid-column: span 10 / span 10;
}

.col-span-11 {
  grid-column: span 11 / span 11;
}

.col-span-12 {
  grid-column: span 12 / span 12;
}

/* ============== start grid ============== */

@media (min-width: 48rem) {
  /* ============== start flex ============== */
  .md\:flex {
    display: flex;
  }
  .md\:hidden {
    display: none;
  }
  .md\:flex-grow-1 {
    flex-grow: 1;
  }
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:flex-column {
    flex-direction: column;
  }
  .md\:items-center {
    align-items: center;
  }
  .md\:items-end {
    align-items: end;
  }
  .md\:items-start {
    align-items: start;
  }
  .md\:justify-start {
    justify-content: start;
  }
  .md\:justify-center {
    justify-content: center;
  }
  .md\:justify-end {
    justify-content: end;
  }
  .md\:justify-around {
    justify-content: space-around;
  }
  .md\:justify-between {
    justify-content: space-between;
  }

  /* ============== end flex ============== */

  /* ============== start grid ============== */
  .md\:grid {
    display: grid;
  }

  .md\:grid-col-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .md\:grid-col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-col-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .md\:grid-col-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .md\:grid-col-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .md\:grid-col-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .md\:grid-col-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .md\:grid-col-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .md\:grid-col-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .md\:grid-col-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .md\:grid-col-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .md\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .md\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .md\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .md\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .md\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .md\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .md\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .md\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .md\:col-span-9 {
    grid-column: span 9 / span 9;
  }

  .md\:col-span-10 {
    grid-column: span 10 / span 10;
  }

  .md\:col-span-11 {
    grid-column: span 11 / span 11;
  }

  .md\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  /* ============== start grid ============== */
}

@media (min-width: 64rem) {
  /* ============== start flex ============== */
  .lg\:flex {
    display: flex;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:flex-grow-1 {
    flex-grow: 1;
  }
  .lg\:flex-row {
    flex-direction: row;
  }
  .lg\:flex-column {
    flex-direction: column;
  }
  .lg\:items-center {
    align-items: center;
  }
  .lg\:items-end {
    align-items: end;
  }
  .lg\:items-start {
    align-items: start;
  }
  .lg\:justify-start {
    justify-content: start;
  }
  .lg\:justify-center {
    justify-content: center;
  }
  .lg\:justify-end {
    justify-content: end;
  }
  .lg\:justify-around {
    justify-content: space-around;
  }
  .lg\:justify-between {
    justify-content: space-between;
  }

  /* ============== end flex ============== */

  /* ============== start grid ============== */
  .lg\:grid {
    display: grid;
  }

  .lg\:grid-col-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .lg\:grid-col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-col-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-col-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-col-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:grid-col-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .lg\:grid-col-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .lg\:grid-col-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .lg\:grid-col-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .lg\:grid-col-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .lg\:grid-col-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .lg\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .lg\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .lg\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .lg\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .lg\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .lg\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .lg\:col-span-9 {
    grid-column: span 9 / span 9;
  }

  .lg\:col-span-10 {
    grid-column: span 10 / span 10;
  }

  .lg\:col-span-11 {
    grid-column: span 11 / span 11;
  }

  .lg\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  /* ============== start grid ============== */
}

@media (min-width: 80rem) {
  /* ============== start flex ============== */
  .xl\:flex {
    display: flex;
  }
  .xl\:hidden {
    display: none;
  }
  .xl\:flex-grow-1 {
    flex-grow: 1;
  }
  .xl\:flex-row {
    flex-direction: row;
  }
  .xl\:flex-column {
    flex-direction: column;
  }
  .xl\:items-center {
    align-items: center;
  }
  .xl\:items-end {
    align-items: end;
  }
  .xl\:items-start {
    align-items: start;
  }
  .xl\:justify-start {
    justify-content: start;
  }
  .xl\:justify-center {
    justify-content: center;
  }
  .xl\:justify-end {
    justify-content: end;
  }
  .xl\:justify-around {
    justify-content: space-around;
  }
  .xl\:justify-between {
    justify-content: space-between;
  }

  /* ============== end flex ============== */

  /* ============== start grid ============== */
  .xl\:grid {
    display: grid;
  }

  .xl\:grid-col-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .xl\:grid-col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xl\:grid-col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-col-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:grid-col-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .xl\:grid-col-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .xl\:grid-col-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .xl\:grid-col-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .xl\:grid-col-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .xl\:grid-col-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .xl\:grid-col-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .xl\:grid-col-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .xl\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .xl\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .xl\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .xl\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .xl\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .xl\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .xl\:col-span-9 {
    grid-column: span 9 / span 9;
  }

  .xl\:col-span-10 {
    grid-column: span 10 / span 10;
  }

  .xl\:col-span-11 {
    grid-column: span 11 / span 11;
  }

  .xl\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  /* ============== start grid ============== */
}

@media (min-width: 96rem) {
  /* ============== start flex ============== */
  .xxl\:flex {
    display: flex;
  }
  .xxl\:hidden {
    display: none;
  }
  .xxl\:flex-grow-1 {
    flex-grow: 1;
  }
  .xxl\:flex-row {
    flex-direction: row;
  }
  .xxl\:flex-column {
    flex-direction: column;
  }
  .xxl\:items-center {
    align-items: center;
  }
  .xxl\:items-end {
    align-items: end;
  }
  .xxl\:items-start {
    align-items: start;
  }
  .xxl\:justify-start {
    justify-content: start;
  }
  .xxl\:justify-center {
    justify-content: center;
  }
  .xxl\:justify-end {
    justify-content: end;
  }
  .xxl\:justify-around {
    justify-content: space-around;
  }
  .xxl\:justify-between {
    justify-content: space-between;
  }

  /* ============== end flex ============== */

  /* ============== start grid ============== */
  .xxl\:grid {
    display: grid;
  }

  .xxl\:grid-col-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .xxl\:grid-col-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .xxl\:grid-col-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xxl\:grid-col-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xxl\:grid-col-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .xxl\:grid-col-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .xxl\:grid-col-7 {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }

  .xxl\:grid-col-8 {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .xxl\:grid-col-9 {
    grid-template-columns: repeat(9, minmax(0, 1fr));
  }

  .xxl\:grid-col-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
  }

  .xxl\:grid-col-11 {
    grid-template-columns: repeat(11, minmax(0, 1fr));
  }

  .xxl\:grid-col-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  .xxl\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .xxl\:col-span-2 {
    grid-column: span 2 / span 2;
  }

  .xxl\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .xxl\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .xxl\:col-span-5 {
    grid-column: span 5 / span 5;
  }

  .xxl\:col-span-6 {
    grid-column: span 6 / span 6;
  }

  .xxl\:col-span-7 {
    grid-column: span 7 / span 7;
  }

  .xxl\:col-span-8 {
    grid-column: span 8 / span 8;
  }

  .xxl\:col-span-9 {
    grid-column: span 9 / span 9;
  }

  .xxl\:col-span-10 {
    grid-column: span 10 / span 10;
  }

  .xxl\:col-span-11 {
    grid-column: span 11 / span 11;
  }

  .xxl\:col-span-12 {
    grid-column: span 12 / span 12;
  }

  /* ============== start grid ============== */
}
