@import "styles/normalize.css";

@import "styles/main.css";

/* Base Styles */

@font-face {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  src: url("assets/fonts/Lato-Regular.ttf") format(ttf);
}

@font-face {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  src: url("assets/fonts/Lato-Bold.ttf") format(ttf);
}

@font-face {
  font-family: "Work Sans", sans-serif;
  font-weight: 400;
  src: url("assets/fonts/WorkSans-Regular.ttf") format(ttf);
}

@font-face {
  font-family: "Work Sans", sans-serif;
  font-weight: 700;
  src: url("assets/fonts/WorkSans-Bold.ttf") format(ttf);
}

* {
  box-sizing: border-box;
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  transition: all 0.3s ease;
}

html {
  font-size: 1rem;
  font-family: "Lato", sans-serif;
  scroll-behavior: smooth;
}

@media (min-width: 2401px) {
  html {
    font-size: 13px;
  }
}

@media (min-width: 2201px) and (max-width: 2400px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1901px) and (max-width: 2200px) {
  html {
    font-size: 12px;
  }
}

@media (min-width: 1500px) and (max-width: 1900px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1500px) and (min-width: 1300px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 1299px) {
  html {
    font-size: 11px;
  }
}

*::-webkit-scrollbar,
html *::-webkit-scrollbar {
  height: 1rem;
  width: 1rem;
}

*::-webkit-scrollbar-track,
html *::-webkit-scrollbar-track {
  background: rgb(245, 241, 241);
}

*::-webkit-scrollbar-thumb,
html *::-webkit-scrollbar-thumb {
  background-color: rgb(69, 46, 36);
  border-radius: 1rem;
  border: 1px solid rgb(230, 230, 240);
}

body {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: "Lato";
}

.main {
  width: 100%;
  min-height: calc(100vh - 60px);
  position: relative;
  flex-grow: 2;
}

a,
button {
  text-decoration: none;
  cursor: pointer;
}

ul {
  list-style: none;
}

.img {
  width: 100%;
  max-width: 500px;
}
.img_icon {
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
}
.img_max {
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
}
.img_icon:hover {
  transform: scale(1.1);
}
.flex_box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.color_w {
  color: white;
}
.c_red {
  color: #dc3545;
}
.c_red:hover {
  color: #0ab315;
}
.dn {
  display: none;
}
.pb_2 {
  padding-bottom: 20px;
}
.max_w_100 {
  max-width: 100%;
}
.tc {
  text-align: center;
}
.w_100 {
  width: 100%;
}
