@charset "UTF-8";

/* TO DO - закинуть запасные woff */
@font-face {
	font-family: "Inter";
	src: url("../assets/fonts/Inter-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../assets/fonts/Inter-SemiBold.woff2") format("woff2");
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../assets/fonts/Inter-Medium.woff2") format("woff2");
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Inter";
	src: url("../assets/fonts/Inter-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Cairo";
	src: url("../assets/fonts/Cairo-Regular.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Rotonda";
	src: url("../assets/fonts/Rotonda-Bold.woff2") format("woff2");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

html {
	font-size: 62.5%;
}

body {
	font-family: "Inter", sans-serif;
	margin: 0;
	padding: 0;
}

body.no-scroll {
	overflow: hidden;
}

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

p,
h1,
h2,
h3,
h4,
ul {
	margin: 0;
	padding: 0;
}

sup {
	line-height: 0;
	vertical-align: baseline;
	position: relative;
	top: -0.4em;
	font-size: 0.75em;
}

span.bold {
	font-weight: 700;
}

.layout {
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}

.main {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	justify-content: center;
}

.underline {
  border-top: 1px solid var(--lavender);
  width: 400px;
  display: flex;
  justify-content: flex-start;
  position: relative;
  /* overflow: hidden;
  height: 6px; */
}

.underline__highlighter {
  border-radius: 0 0 10px 10px;
  background-color: var(--persian-green);
  height: 4px;
  width: 72px;
  position: absolute;
  left: 0;
  transition: transform 0.1s ease;
}

.button {
	text-decoration: none;
	font-size: 1.8rem;
	text-transform: uppercase;
	color: var(--water-blue);
	font-weight: 600;
	background-color: white;
	padding: 20px 40px;
	border-radius: 32px;
}

/*# sourceMappingURL=base.css.map */