@font-face {
  font-family: "Epilogue";
  src: url("../fonts/Epilogue-Medium.woff2") format("woff2"), url("../fonts/Epilogue-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("../fonts/Caveat-Bold.woff2") format("woff2"), url("../fonts/Caveat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Epilogue";
  src: url("../fonts/Epilogue-Regular.woff2") format("woff2"), url("../fonts/Epilogue-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Bold.woff2") format("woff2"), url("../fonts/Mulish-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-Regular.woff2") format("woff2"), url("../fonts/Mulish-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Epilogue";
  src: url("../fonts/Epilogue-SemiBold.woff2") format("woff2"), url("../fonts/Epilogue-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Mulish";
  src: url("../fonts/Mulish-SemiBold.woff2") format("woff2"), url("../fonts/Mulish-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --base-font: "Epilogue", sans-serif;
  --font-secondary: "Mulish", sans-serif;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  --text-color: #2d2d2d;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--base-font);
  font-weight: var(--fw-regular);
  color: var(--text-color);
}

body.open {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  display: inline-block;
}

p {
  margin: 0;
}

button {
  background-color: transparent;
  padding: 0;
  border: 0;
  cursor: pointer;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  display: flex;
  max-width: 1400px;
  padding: 0 100px;
  margin: 0 auto;
  background-color: var(--background-container);
}

.topbar .container {
  justify-content: space-between;
  padding: 0 50px;
}

.topbar__logo {
  font-weight: var(--fw-semi-bold);
  font-size: 20px;
  line-height: 150%;
  padding: 25px 0;
}

.navigation__item + .navigation__item {
  margin-left: 50px;
}

.navigation__button {
  font-size: 17px;
  line-height: 165%;
  padding: 26px 0;
}

.hero .container {
  align-items: center;
  gap: 28px;
  padding: 100px;
}

.hero__title {
  font-weight: var(--fw-semi-bold);
  font-size: 20px;
  line-height: 150%;
}

.title--h1 {
  font-size: 80px;
  line-height: 113%;
}

.hero__image {
  -o-object-fit: cover;
     object-fit: cover;
}

.brands .container {
  padding: 60px 101px;
}

.brands-list,
.skills-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.brands-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.skills .container {
  padding: 180px 140.15px;
}

.skills-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 249.9px;
}

.skills-list__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 130px;
  height: 130px;
}

.skills-list__title {
  font-weight: var(--fw-semi-bold);
  font-size: 27px;
  line-height: 156%;
  margin-top: 56px;
  margin-bottom: 19px;
}

.skills-list__description {
  font-size: 17px;
  line-height: 159%;
}

.works .container {
  padding: 20px 100px;
  flex-wrap: wrap;
}

.works__title {
  font-weight: var(--fw-semi-bold);
  font-size: 32px;
  line-height: 131%;
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.works-list {
  display: grid;
  grid-template: repeat(2, 1fr)/repeat(3, 1fr);
  -moz-column-gap: 12.5%;
       column-gap: 12.5%;
  row-gap: 60px;
  width: 100%;
}

.works-list__button {
  text-align: left;
}

.works-list__card-image > img {
  -o-object-fit: cover;
     object-fit: cover;
}

.works-list__title {
  font-weight: var(--fw-semi-bold);
  font-size: 20px;
  line-height: 150%;
  margin: 25px 0 10px 0;
}

.works-list__art-direction {
  font-size: 17px;
  line-height: 159%;
}

.modal-contacts {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.315);
  transition: all 250ms linear;
}

.modal-contacts.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-contacts_box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  padding: 35px;
  border-radius: 4%;
  transform: translate(-50%, -50%);
  background-color: aliceblue;
}

.contact-link {
  display: block;
  text-align: center;
  font-weight: var(--fw-bold);
}/*# sourceMappingURL=style.css.map */