:root {
  --text-color: rgb(0, 0, 0);
  --bg: rgb(255, 255, 255);
  --background: rgb(255, 255, 255);
}

h1 {
  font-size: 2.7em;
  margin-bottom: 0.3em;
  line-height: 1em;
}

h2 {
  font-size: 1em;
  font-weight: bold;
}


body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--text-color);
  font-size: 16px;
  align-items: center;
  
}

.container {
  width: 1000px;
  margin: 30px auto;
}

.header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg);
  color: var(--text-color-white);
  font-size: 1em;
  padding: 0em 1.2em;
  margin-top: 1.8em;
  margin-bottom: 5.2em;
}

.menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  background-color: var(--bg);
  color: var(--text-color);
  font-size: 0.75rem;
  gap: 2.1em;
}

.link {
  font-size: 0.75rem;
}

.logo {
  display: flex;
  background-color: var(--bg);
  color: var(--text-color);
  font-size: 1.5em;
  font-weight: bold;
  text-align: center;
}

.contact {
  display: flex;
  justify-content: flex-end;
  color: var(--text-color);
  font-size: 0.75rem;
  gap: 3em;
}

.box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-color);
  font-size: 1em;
  gap: 0.7em;
}

.icon-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-size: 1em;
  gap: 0.7em;
  margin-top: 0.5em;
}

a {
  color: var(--text-color);
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  
}

.pricetag {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem, 0;
}

.descript{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 0.2rem;
}

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: nowrap;
  margin-top: 1em;
  margin-bottom: 5.5em;
  margin-right: 1em;
}

.row-cent {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 6em;
  margin-bottom: 4em;
}

.text-cent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  margin-bottom: 4em;
}

.col-1,
.col-2,
.col-3,
.col-4 {
  flex-grow: 0;
  flex-shrink: 0;
  padding-left: 1em;
  padding-right: 1em;
  
}

.col-1 {
  flex-basis: 25%;
}

.col-2 {
  flex-basis: 50%;
}

.col-3 {
  flex-basis: 75%;
}

.col-4 {
  flex-basis: 100%;
}

.footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 1rem;
  font-size: 0.8rem;
}

.f-block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 0.8rem;
  
}

form {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.2em;
}

::placeholder {
  color: #ddd;
}

input {
  padding: 0.1em;
  border: 0;
  border-bottom: 1px solid #000;
  background-color: rgba(0, 0, 0, 0);
  outline: 0;
}
