:root {
  --P1-color-bg: #efe6e4;
  --P2-color-bg: #e2c4ba;
  --S1-color-bg: #cc8b86;
  --S2-color-bg: #8d7370;
  --color-text: #533738;
}

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

body {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  background-color: var(--P1-color-bg);
  color: var(--color-text);
}

img{
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  font-size: 16px;
  line-height: 20px;
  color: var(--color-text);
}

p {
  font-size: 18px;
  line-height: 30px;
}

h2 {
  font-size: 40px;
  line-height: 50px;
  text-transform: uppercase;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

/* header */

.logo {
  text-transform: uppercase;
}

/* headline */

.headline {
  background-image: url("../img/main-bg.jpg");
}

.headline h3 {
  font-size: 50px;
  line-height: 62px;
}

.headline a {
  padding: 25px 66px;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  background-color: var(--S1-color-bg);
}

/* about */

.about dl {
  background-color: var(--S2-color-bg);
}

.about dt {
  font-size: 50px;
  line-height: 62px;
  color: #FFFFFF;
}

.about dd {
  font-weight: 500;
  font-size: 30px;
  line-height: 37px;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* our-work */

.our-work dl {
  background-color: var(--S2-color-bg);
}

.our-work dt {
  font-weight: 500;
  font-size: 30px;
  line-height: 37px;
  text-align: center;
  color: #FFFFFF;
}

.our-work dd {
  font-size: 18px;
  line-height: 30px;
  color: #FFFFFF;
}

.our-work a {
  font-weight: 500;
  font-size: 30px;
  line-height: 37px;
}

/* team */

.team {
  background-color: var(--P2-color-bg)
}

/* how-we-work */

.how-we-work {
  background-color: var(--P2-color-bg);
}

/* reviews */

/* footer */



