@font-face {
  font-family: "Inter Tight";
  src: url("../font/InterTight-Regular.woff2") format("woff2"), url("../font/InterTight-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../font/InterTight-Medium.woff2") format("woff2"), url("../font/InterTight-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter Tight";
  src: url("../font/InterTight-SemiBold.woff2") format("woff2"), url("../font/InterTight-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../font/Inter-Regular.woff2") format("woff2"), url("../font/Inter-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../font/Inter-Medium.woff2") format("woff2"), url("../font/Inter-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../font/Inter-SemiBold.woff2") format("woff2"), url("../font/Inter-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("../font/Inter-ExtraBold.woff2") format("woff2"), url("../font/Inter-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
:root {
  --color-white: #fff;
  --color-text: #474D5A;
  --color-primary: #C04049;
  --color-accent: #5D84C7;
  --color-main-text:#1F2D49;
  --color-gradient: radial-gradient(76.84% 76.84% at 50% 50%, #FFFFFF 25.96%, #D9E8F0 100%);
  --color-grey:#475163;
  --color-back-light:#F7F9FA;
  --color-button:#EEF2F5;
  --Inter:"Inter", sans-serif;
  --InterTight:"Intel Tight", sans-serif;
}

*, *:before,
*:after {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

*, body, html {
  -webkit-text-size-adjust: none;
  -webkit-appearance: none;
}

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

button {
  border: none;
}

mark {
  -webkit-text-fill-color: initial;
  text-fill-color: transparent;
  background: none;
}

.img {
  display: block;
}

.img.contain img {
  object-fit: contain;
}

.img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

ul {
  list-style: none;
}

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

a:hover {
  text-decoration: none;
}

button {
  background: transparent;
}

h1 {
  margin: 0;
}

html {
  scroll-behavior: smooth;
}