* {
  padding: 0px;
  margin: 0px;
  border: none;
}

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

/* Links */

a, a:link, a:visited  {
  text-decoration: none;
  color: inherit;
}

a:hover  {
  text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

input[type='file'] {
  max-width: 100%;
}
:root {
  --black: #101010;
  --green: #07C5B9;
  --green70: #07C5B9B2;
  --yellow: #FFD63EB3;
  --background: #F1F4FB;
  --grey: #ddd;
  --grey10: #f5fafe;
  --grey20: rgba(143, 153, 161, 0.2); /* #8F99A1 */
  --grey30: #5D6C79;
  --grey40: #DFEAF3;
  --error-color: #D93558B2;
  --tooltip-color: rgba(230, 230, 230, 1);
  --fs-xxs: 13px;
  --fs-xs: 16px;
  --fs-m: 22px;
  --space2: 16px;
}
[hidden] {
  display: none;
}

body {
  font-family: "Albert Sans", "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--black);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

button {
  cursor: pointer;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: var(--grey30);
  display: flex;
  align-items: center;
  gap: 5px;
  svg {
    height: 1em;
  }
}
header {
  background: var(--background);
  padding: 18px clamp(20px, 4vw, 56px);
  display: flex;
  justify-content: space-between;
  nav {
    display: flex;
    gap: 24px;
    svg {
      width: 17px;
    }
  }
  a {
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: capitalize;
    cursor: pointer;
    font-weight: 500;
  }
}
main {
  flex: 1;
  width: 100%;
  display: flex;
}
iframe {
  width: 100%;
  border: none;
  flex-grow: 1;
}


